text
stringlengths
2
104M
meta
dict
# Noise Channel ![apu_locator_noise](/BreakingNESWiki/imgstore/apu/apu_locator_noise.jpg) ![NOISE](/BreakingNESWiki/imgstore/apu/NOISE.jpg) ## Frequency Reg ![noise_freq_in_tran](/BreakingNESWiki/imgstore/apu/noise_freq_in_tran.jpg) ![NOISE_FreqReg](/BreakingNESWiki/imgstore/apu/NOISE_FreqReg.jpg) ![RegisterBitRes](/BreakingNESWiki/imgstore/apu/RegisterBitRes.jpg) A variation of the register with an additional reset (immediately on the latch) is used. ## Decoder ![noise_decoder_tran](/BreakingNESWiki/imgstore/apu/noise_decoder_tran.jpg) ![NOISE_Decoder](/BreakingNESWiki/imgstore/apu/NOISE_Decoder.jpg) The first stage of the decoder (4-to-16 demultiplexer): ``` 00000000 11111111 11111111 00000000 00001111 00001111 11110000 11110000 00110011 00110011 11001100 11001100 01010101 01010101 10101010 10101010 ``` The second stage of the decoder: ``` 11101111 11111111 10001011 11110111 00111100 11001111 11111110 11110011 01100111 00011111 11110010 00000011 11111111 11000111 11011110 11100001 11011001 01111111 11000001 00010000 11011010 00000111 ``` The bit mask is topological. 1 means there is a transistor, 0 means no transistor. |![NOISE_Decoder1](/BreakingNESWiki/imgstore/apu/NOISE_Decoder1.jpg)|![NOISE_Decoder2](/BreakingNESWiki/imgstore/apu/NOISE_Decoder2.jpg)| |---|---| |Decoder In|Decoder Out| |---|---| |0|0x002| |1|0x00a| |2|0x0aa| |3|0x2bb| |4|0x139| |5|0x173| |6|0x063| |7|0x067| |8|0x1a9| |9|0x106| |10|0x227| |11|0x062| |12|0x642| |13|0x20f| |14|0x300| |15|0x140| ## Frequency LFSR ![noise_freq_lfsr_tran](/BreakingNESWiki/imgstore/apu/noise_freq_lfsr_tran.jpg) ![noise_freq_control_tran](/BreakingNESWiki/imgstore/apu/noise_freq_control_tran.jpg) ![NOISE_FreqLFSR](/BreakingNESWiki/imgstore/apu/NOISE_FreqLFSR.jpg) ![FreqLFSRBit](/BreakingNESWiki/imgstore/apu/FreqLFSRBit.jpg) ## Random LFSR ![noise_random_lfsr_tran](/BreakingNESWiki/imgstore/apu/noise_random_lfsr_tran.jpg) ![noise_feedback_tran](/BreakingNESWiki/imgstore/apu/noise_feedback_tran.jpg) ![NOISE_RandomLFSR](/BreakingNESWiki/imgstore/apu/NOISE_RandomLFSR.jpg) ![RandomLFSRBit](/BreakingNESWiki/imgstore/apu/RandomLFSRBit.jpg) The shift register design for Random LFSR is different in that the value is stored in a register (static memory), because significant time can pass between shifts of the value and therefore you can not use shift registers on a dynamic memory (DLatch). ## Envelope ![noise_envelope_rate_counter_tran](/BreakingNESWiki/imgstore/apu/noise_envelope_rate_counter_tran.jpg) ![noise_envelope_control_tran](/BreakingNESWiki/imgstore/apu/noise_envelope_control_tran.jpg) ![noise_envelope_counter_tran](/BreakingNESWiki/imgstore/apu/noise_envelope_counter_tran.jpg) The circuit is identical to the Envelope of square channels. On the transistor circuit the labels of the intermediate signals may be different, but don't pay attention to this, the context should be clear. ![EnvelopeUnit](/BreakingNESWiki/imgstore/apu/EnvelopeUnit.jpg) |EnvelopeUnit Signal|Noise Channel| |---|---| |WR_Reg|W400C| |WR_LC|W400F| |LC|RND/LC| ## Output ![noise_output_tran](/BreakingNESWiki/imgstore/apu/noise_output_tran.jpg)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Sound Generators The APU contains the following audio channels (official designations): - Sound A: Rectangular pulse tone generator (Square 0) - Sound B: Rectangular pulse tone generator (Square 1) - Sound C: Triangular tone generator - Sound D: Noise generator - Sound E: Channel for sample playback using delta modulation (direct playback of PCM samples is also available) All circuits for generating sound are, for the most part, various counters controlled by simple control circuits. ![SoundGenerators](/BreakingNESWiki/imgstore/apu/SoundGenerators.jpg) (In addition to the audio generators themselves, the diagram also shows the OAM DMA, as it interacts closely with the DPCM DMA). ## Timing The sound generators are clocked by the following signals: - PHI1/2: CPU Core clock frequency - ACLK: Audio CLK. Two times slower PHI, with a special non-overlapping phase pattern - LFO1/2: Low frequency oscillation signals (on the order of hundreds of Hertz) The developers decided to use PHI1 for the triangle channel instead of ACLK to smooth out the "stepped" signal. ## Sweep Sweep is a time-constant increase or decrease in signal frequency (period). It affects pitch (tonality). The word `Sweep` does not translate into other languages. In APU it is used only in square channels. ![wave_sweep](/BreakingNESWiki/imgstore/apu/wave_sweep.png) ## Envelope Envelope is the constant fading of the signal amplitude (as applied to APU audio generators). Envelope is a special case of ADSR, and specifically is a Decay component. In APU it is used in square channels and noise generator. ![wave_envelope](/BreakingNESWiki/imgstore/apu/wave_envelope.png) ## Duty Duty is a change in the duty cycle of a square wave signal. In APU it is used only in square channels. ![wave_duty](/BreakingNESWiki/imgstore/apu/wave_duty.png)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# 6502 Core Binding ![apu_locator_core](/BreakingNESWiki/imgstore/apu/apu_locator_core.jpg) This section describes the features of the core and the surrounding auxiliary logic designed to integrate with the rest of the components. The 6502 core and surrounding logic includes the following entities: - Master clock signal and clock divider - Binding the terminals of the 6502 core to the rest of the APU - 6502 core ## Signals |Signal|From|Where to|Description| |---|---|---|---| |CLK|CLK Pad|Divider|Input CLK| |/M2|Divider|M2 Pad|Intermediate signal for M2 terminal ( inverse polarity)| |DBG|DBG Pad|Test|1: Activation of test mode. In 2A03 the debug registers become available. In 2A07 it is converted to RDY2 signal (DBG=1 -> RDY2=0), essentially acting as a debugging WAIT| |NotDBG_RES|Test|M2 Pad|Intermediate signal for controlling the M2 terminal under reset and test mode conditions| |RES|/RES Pad|All|Global reset signal. Spreads to almost all corners of the APU| |R/W|CPU Core|DMABuffer, Reg Select, OAM DMA, DPCM DMA|6502 core terminal. When applied to DMA it is used to detect CPU read cycle, to set RDY terminal appropriately| |/NMI|/NMI Pad|CPU Core|From the /NMI terminal, the signal goes almost immediately to the core (not counting the intermediate inverters)| |INT|SoftCLK|IRQ Combine|Combined DPCM and/or Timer interrupt from SoftCLK (which acts also as a Daisy Chain)| |/IRQ|/IRQ Pad|IRQ Combine|The external interrupt signal is combined with the INT signal from SoftCLK| |/IRQ_INT|IRQ Combine|CPU Core|Combined interrupt signal for the core| |PHI0|Divider|CPU Core|Base clock signal for the core| |PHI1|CPU Core|SoftCLK, Triangle|The first half of the core cycle| |PHI2|CPU Core|SoftCLK|The second half of the core cycle| |RW|DMABuffer|R/W Pad|The external R/W terminal is controlled by the DMABuffer circuit| |WR|DMABuffer|External DataBus Pads|1: Write mode for external data bus terminals| |RD|DMABuffer|External DataBus Pads|1: Read mode for external data bus terminals| |RDY|OAM DMA|CPU Core|Readiness signal for the core. The core readiness is controlled by the OAM DMA circuit| |RDY2|Test|CPU Core|An additional test signal for core readiness. In 2A03 it is always 1. In 2A07 it can be controlled externally using the DBG Pad| |SPR/PPU|OAM DMA|DMABuffer|DMABuffer mode (1: Write to register $2004, 0: Read the next byte for OAM DMA from memory)| |/DBGRD|Reg Select|DMABuffer|0: The APU register is read and the test mode is enabled (DBG=1)| |CPU_A\[15:0\]|CPU Core|Reg Predecode, Address Mux|The 6502 core address bus. Participates in selecting the APU registers address space and for address multiplexing| |A\[15:0\]|Address Mux|External Address Pads|Output value from the address multiplexer for AB terminals. Also involved in selecting a specific APU register| |D\[7:0\]|Internal DataBus|External DataBus Pads|Internal data bus, to which the 6502 core is also connected| As you can see the signals associated with the core are very tightly twisted. Yes, this part in APU is the most complicated, in sound generators everything is much simpler and more straightforward. ## Divider The divider is a Johnson counter. ![div](/BreakingNESWiki/imgstore/apu/div.jpg) (The diagram is placed "on its side" for convenience). General purpose schematic: ![div_logisim](/BreakingNESWiki/imgstore/apu/div_logisim.jpg) Schematic for 2A03: ![DIV_2A03](/BreakingNESWiki/imgstore/apu/DIV_2A03.jpg) The shift register bit of the divider: ![DIV_SRBit](/BreakingNESWiki/imgstore/apu/DIV_SRBit.jpg) ## Connecting the 6502 and APU This section discusses the connections between the 6502 core terminals and the APU. ### /NMI and /IRQ Auxiliary logic for NMI and IRQ processing: |Circuit|Description| |---|---| |![apu_core_irqnmi_logic1](/BreakingNESWiki/imgstore/apu/apu_core_irqnmi_logic1.jpg)|Just intermediate inverters| |![apu_core_irqnmi_logic2](/BreakingNESWiki/imgstore/apu/apu_core_irqnmi_logic2.jpg)|/IRQ_INT: Combination of external and internal interrupt.| /NMI terminal: ![apu_core_nmi](/BreakingNESWiki/imgstore/apu/apu_core_nmi.jpg) /IRQ terminal: ![apu_core_irq](/BreakingNESWiki/imgstore/apu/apu_core_irq.jpg) ### RDY ![apu_core_rdy](/BreakingNESWiki/imgstore/apu/apu_core_rdy.jpg) Next to the RDY input there is another transistor, which in the NTSC APU is always open (RDY2=1). The PAL APU uses the /DBG signal (inversion of the signal from the external DBG terminal) instead of the constant RDY2 signal. ### /RES ![apu_core_res](/BreakingNESWiki/imgstore/apu/apu_core_res.jpg) There is an inverter on the /RES terminal input to invert the internal `RES` signal. ### PHI0, PHI1, PHI2 Generation of internal PHI signals: ![apu_core_phi_internal](/BreakingNESWiki/imgstore/apu/apu_core_phi_internal.jpg) Generation of external PHI signals: |PHI1|PHI2| |---|---| |![apu_core_phi1_ext](/BreakingNESWiki/imgstore/apu/apu_core_phi1_ext.jpg)|![apu_core_phi2_ext](/BreakingNESWiki/imgstore/apu/apu_core_phi2_ext.jpg)| Nothing unusual. ### SO ![apu_core_so](/BreakingNESWiki/imgstore/apu/apu_core_so.jpg) The SO terminal is always connected to `1`. Technically this is fine, because the SO input has a falling edge detector. ### R/W ![apu_core_rw](/BreakingNESWiki/imgstore/apu/apu_core_rw.jpg) Nothing unusual. The `RW` signal does not come directly from the terminal `R/W` of the 6502 core, but is obtained in the buffer circuit for sprite DMA (see below). ### SYNC The SYNC terminal is not connected to anything (floating): ![apu_core_sync](/BreakingNESWiki/imgstore/apu/apu_core_sync.jpg) ### D0-D7 The 6502 core terminals connect directly to the internal data bus D0-D7. Signal `RD` schematic: ![rd_tran](/BreakingNESWiki/imgstore/apu/rd_tran.jpg) Buffer for sprite DMA: ![sprbuf_tran](/BreakingNESWiki/imgstore/apu/sprbuf_tran.jpg) Not very appropriate, but I have to say it here, because in addition to storing data for the sprite DMA this circuit also produces the `WR` signal for the external data bus pads, as well as the `RW` signal. :warning: It just so happens that the 6502 core signal `R/W` is very similar in name to the `RW` signal which goes to the external R/W pad. Don't get confused :smiley: ![RWDecode](/BreakingNESWiki/imgstore/apu/RWDecode.jpg) ### A0-A15 The outputs of the 6502 core address bus are associated with the internal CPU_A0-15 signals. For CPU_A14 there is additionally an inverter that is used in the APU register address predecoding circuitry. ## Embedded 6502 Core The 6502 core looks like a downsized copy of the original MOS processor. After detailed study of 2A03 circuit following results were obtained: - No differences were found in the instruction decoder - Flag D works as expected, it can be set or reset by CLD/SED instructions; it is used in the regular way during interrupt processing (saved on stack) and after execution of PHP/PLP, RTI instructions. - Random logic, responsible for generating the two control signals `/DAA` (decimal addition adjust) and `/DSA` (decimal subtraction adjust) works unchanged. The difference lies in the fact that the control signals `/DAA` and `/DSA`, which enable decimal correction, are disconnected from the circuit, by cutting 5 pieces of polysilicon (see picture). Polysilicon marked as purple, missing pieces marked as cyan. |Original circuit of the 6502|Missing poly in the APU| |---|---| |![bcd_tran_orig](/BreakingNESWiki/imgstore/apu/bcd_tran_orig.png)|![bcd_tran_apu_missing](/BreakingNESWiki/imgstore/apu/bcd_tran_apu_missing.png)| As result decimal carry circuit and decimal-correction adders do not work. Therefore, the embedded processor of APU always considers add/sub operands as binary numbers, even if the D flag is set. The research process: http://youtu.be/Gmi1DgysGR0 The key parts of the analysis (decoder, random logic, flags and ALU) are shown in the following image: ![2a03_6502_diff_sm](/BreakingNESWiki/imgstore/apu/2a03_6502_diff_sm.jpg) To understand more about the differences in the operation of the BCD circuit, it is recommended to study the design of the [6502 ALU](/BreakingNESWiki_DeepL/6502/alu.md).
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Register Operations ![apu_locator_regs](/BreakingNESWiki/imgstore/apu/apu_locator_regs.jpg) |Signal|From|Where to|Description| |---|---|---|---| |R/W|CPU Core|DMABuffer, Reg Select, OAM DMA, DPCM DMA|6502 core terminal. When applied to DMA it is used to detect CPU read cycle, to set RDY terminal appropriately| |/DBGRD|Reg Select|DMABuffer|0: The APU register is read and the test mode is enabled (DBG=1)| |CPU_A\[15:0\]|CPU Core|Reg Predecode, Address Mux|The 6502 core address bus. Participates in selecting the APU registers address space and for address multiplexing| |A\[15:0\]|Address Mux|External Address Pads|Output value from the address multiplexer for AB terminals. Also involved in selecting a specific APU register| |/REGRD|Reg Predecode|Reg Select|0: The APU register is being read from the 6502 core side| |/REGWR|Reg Predecode|Reg Select|0: Writing to the APU register on the 6502 core side| |/R4015|Reg Select|SoftCLK, DMABuffer, Length, DPCM|0: Read register $4015. Note that this operation is additionally tracked in the DMABuffer.| |/R4016|Reg Select|IOPorts|0: Read register $4016| |/R4017|Reg Select|IOPorts|0: Read register $4017| |/R4018|Reg Select|Test|0: Read debug register $4018 (2A03 only)| |/R4019|Reg Select|Test|0: Read debug register $4019 (2A03 only)| |/R401A|Reg Select|Test|0: Read debug register $401A (2A03 only)| |W4000|Reg Select|Square0|1: Write register $4000| |W4001|Reg Select|Square0|1: Write register $4001| |W4002|Reg Select|Square0|1: Write register $4002| |W4003|Reg Select|Square0|1: Write register $4003| |W4004|Reg Select|Square1|1: Write register $4004| |W4005|Reg Select|Square1|1: Write register $4005| |W4006|Reg Select|Square1|1: Write register $4006| |W4007|Reg Select|Square1|1: Write register $4007| |W4008|Reg Select|Triangle|1: Write register $4008| |W400A|Reg Select|Triangle|1: Write register $400A| |W400B|Reg Select|Triangle|1: Write register $400B| |W400C|Reg Select|Noise|1: Write register $400C| |W400E|Reg Select|Noise|1: Write register $400E| |W400F|Reg Select|Noise|1: Write register $400F| |W4010|Reg Select|DPCM|1: Write register $4010| |W4011|Reg Select|DPCM|1: Write register $4011| |W4012|Reg Select|DPCM|1: Write register $4012| |W4013|Reg Select|DPCM|1: Write register $4013| |W4014|Reg Select|OAM DMA|1: Write register $4014| |W4015|Reg Select|Length, DPCM|1: Write register $4015| |W4016|Reg Select|IOPorts|1: Write register $4016| |W4017|Reg Select|SoftCLK|1: Write register $4017| |W401A|Reg Select|Test, Triangle|1: Write debug register $401A (2A03 only)| |SQA\[3:0\]|Square0|AUX A|Output digital value of the Square0 sound generator| |SQB\[3:0\]|Square1|AUX A|Output digital value of the Square1 sound generator| |TRI\[3:0\]|Triangle|AUX B|Output digital value of the Triangle sound generator| |RND\[3:0\]|Noise|AUX B|Output digital value of the Noise sound generator| |DMC\[6:0\]|DPCM|AUX B|Output digital value of the DPCM sound generator| |LOCK|Lock FF|Square0, Square1, Triangle, Noise, DPCM|To lock the volume of the audio generators so that you can read the value using the debug registers| Pre-decoder, to select the address space of the APU registers: ![pdsel_tran](/BreakingNESWiki/imgstore/apu/pdsel_tran.jpg) - PDSELR: Intermediate signal to form the 12-nor element to produce the `/REGRD` signal - PDSELW: Intermediate signal to form the 12-nor element to produce the `/REGWR` signal R/W decoder for register operations: ![reg_rw_decoder_tran](/BreakingNESWiki/imgstore/apu/reg_rw_decoder_tran.jpg) ![RegPredecode](/BreakingNESWiki/imgstore/apu/RegPredecode.jpg) Selecting a register operation: ![reg_select](/BreakingNESWiki/imgstore/apu/reg_select_tran.jpg) :warning: The APU registers address space is selected by the value of the CPU address bus (`CPU_Ax`). But the choice of register is made by the value of the address, which is formed at the address multiplexer of DMA-controller (signals A0-A4). Bitmask: ``` 101010110100 110010110100 101100110100 001100110101 110011001100 010100101011 001100101011 010101001011 010010101011 001011001011 010011001011 001011010011 001101001011 001010101011 001010110011 010011001101 001100110011 010010101101 010100110011 010101010011 001101010011 110101001100 010100101101 101101001100 001100101101 001101001101 001010101101 010101001101 001011001101 ``` The bit mask is topological. 1 means there is a transistor, 0 means no transistor. ![RegSel](/BreakingNESWiki/imgstore/apu/RegSel.jpg) ## Debug Interface :warning: The debug hookup is only available in 2A03. The PAL version of the APU (2A07) does not contain any debugging mechanisms (except RDY2). Auxiliary circuits for internal `DBG` signal: |Amplifying inverter|Intermediate inverter|/DBGRD Signal| |---|---|---| |![dbg_buf1](/BreakingNESWiki/imgstore/apu/dbg_buf1.jpg)|![dbg_not1](/BreakingNESWiki/imgstore/apu/dbg_not1.jpg)|![nDBGRD](/BreakingNESWiki/imgstore/apu/nDBGRD.jpg)| Transistor circuits for reading debugging values of sound generators: |Channel|Circuit|Register operation|Value|Where| |---|---|---|---|---| |Square 0|![square0_debug_tran](/BreakingNESWiki/imgstore/apu/square0_debug_tran.jpg)|/R4018|SQA\[3:0\]|D\[3:0\]| |Square 1|![square1_debug_tran](/BreakingNESWiki/imgstore/apu/square1_debug_tran.jpg)|/R4018|SQB\[3:0\]|D\[7:4\]| |Triangle|![tri_debug_tran](/BreakingNESWiki/imgstore/apu/tri_debug_tran.jpg)|/R4019|TRI\[3:0\]|D\[3:0\]| |Noise|![noise_debug_tran](/BreakingNESWiki/imgstore/apu/noise_debug_tran.jpg)|/R4019|RND\[3:0\]|D\[7:4\]| |DPCM|![dpcm_debug_tran](/BreakingNESWiki/imgstore/apu/dpcm_debug_tran.jpg)|/R401A|DMC\[6:0\]|D\[6:0\]| Register operations with debug values are available only when DBG = 1. Circuit for reading the debug value: ![DbgReadoutBit](/BreakingNESWiki/imgstore/apu/DbgReadoutBit.jpg) LOCK circuit: |![lock_tran](/BreakingNESWiki/imgstore/apu/lock_tran.jpg)|![lock](/BreakingNESWiki/imgstore/apu/lock.jpg)| |---|---| The `LOCK` signal is used to suspend or disconnect the audio generators from the output so that the current volume values are latched and can be read using the debug registers.
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Length Counters ![apu_locator_length](/BreakingNESWiki/imgstore/apu/apu_locator_length.jpg) ![length_sm](/BreakingNESWiki/imgstore/apu/length_sm.jpg) ![LengthCounters](/BreakingNESWiki/imgstore/apu/LengthCounters.jpg) The schematics of all four counters are identical, the only difference is in the signals (see below). For this reason, only the Square0 counter is shown in the drawings. ## Signals |Signal|From where|Where to|Description| |---|---|---|---| |/LFO2|SoftCLK|Length Counters|Low frequency oscillation signal| |SQA_LC|Square 0|Length Counters|Input carry for Square0 LC| |SQB_LC|Square 1|Length Counters|Input carry for Square1 LC| |TRI_LC|Triangle|Length Counters|Input carry for Triangle LC| |RND_LC|Noise|Length Counters|Input carry for Noise LC| |NOSQA|Length Counters|Square 0|Square0 LC does not count / disabled| |NOSQB|Length Counters|Square 1|Square1 LC does not count / disabled| |NOTRI|Length Counters|Triangle|Triangle LC does not count / disabled| |NORND|Length Counters|Noise|Noise LC does not count / disabled| |Counter|Input carry signal|End of count signal|Load counter signal| |---|---|---|---| |Square0|SQA_LC|NOSQA|W4003| |Square1|SQB_LC|NOSQB|W4007| |Triangle|TRI_LC|NOTRI|W400B| |Noise|RND_LC|NORND|W400F| ## Length Decoder ![length_decoder_tran](/BreakingNESWiki/imgstore/apu/length_decoder_tran.jpg) ![Length_Decoder](/BreakingNESWiki/imgstore/apu/Length_Decoder.jpg) |Decoder In|Decoder Out| |---|---| |0|0x9| |1|0xfd| |2|0x13| |3|0x1| |4|0x27| |5|0x3| |6|0x4f| |7|0x5| |8|0x9f| |9|0x7| |10|0x3b| |11|0x9| |12|0xd| |13|0xb| |14|0x19| |15|0xd| |16|0xb| |17|0xf| |18|0x17| |19|0x11| |20|0x2f| |21|0x13| |22|0x5f| |23|0x15| |24|0xbf| |25|0x17| |26|0x47| |27|0x19| |28|0xf| |29|0x1b| |30|0x1f| |31|0x1d| The first stage of the decoder (5-to-32 demultiplexer): ``` 1010101010 1001101010 1010011010 1001011010 1010100110 1001100110 1010010110 1001010110 1010101001 1001101001 1010011001 1001011001 1010100101 1001100101 1010010101 1001010101 0110101010 0101101010 0110011010 0101011010 0110100110 0101100110 0110010110 0101010110 0110101001 0101101001 0110011001 0101011001 0110100101 0101100101 0110010101 0101010101 ``` The bit mask is topological. 1 means there is a transistor, 0 means no transistor. ![Length_Decoder1](/BreakingNESWiki/imgstore/apu/Length_Decoder1.jpg) The second stage of the decoder: ``` 01000111 00100111 01100111 00010111 01010111 00110111 01110111 00001111 01001111 00101111 01101111 00011111 01011111 00111111 01111111 01000000 00000111 00001111 00011101 00000010 00000101 00001011 00010111 00101111 01100111 01001111 00100011 00000110 00001101 00011011 00110111 01101111 ``` The bit mask is topological. 1 means there is a transistor, 0 means no transistor. ![Length_Decoder2](/BreakingNESWiki/imgstore/apu/Length_Decoder2.jpg) ## Length Counter Control ![length_counter_control_tran](/BreakingNESWiki/imgstore/apu/length_counter_control_tran.jpg) ![Length_Control](/BreakingNESWiki/imgstore/apu/Length_Control.jpg) ## Length Counter The usual down counter. ![length_counter_tran](/BreakingNESWiki/imgstore/apu/length_counter_tran.jpg) ![Length_Counter](/BreakingNESWiki/imgstore/apu/Length_Counter.jpg)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# DAC ![apu_locator_dac](/BreakingNESWiki/imgstore/apu/apu_locator_dac.jpg) The DAC does not use separate pins for "analog" VDD/GND, but uses common VDD/GND. The DAC power supply is wired in a star topology. @ttlworks made a good description of the DAC: ![APU_2_dacs](/BreakingNESWiki/imgstore/apu/ttlworks/APU_2_dacs.png) Source: http://forum.6502.org/viewtopic.php?p=94693#p94693 ## AUX A/B Terminals Inside the microcircuit the pads for the terminals are not loaded in any way and are just pads. Outside on the board there are usually small pull-down resistors to GND (usually 100 ohms on each AUX output). ## Square 0/1 ![dac_square_tran](/BreakingNESWiki/imgstore/apu/dac_square_tran.jpg) Maximum amplitude measurements of DAC AUX A: - RP2A03G chip - External resistance 75 Ohm (unusual, but does not affect the essence of what is happening much) - The dac_square.nes demo was used (https://github.com/bbbradsmith/nes-audio-tests) - SQA = 0xf, SQB = 0xf ![dac_auxa_max](/BreakingNESWiki/imgstore/apu/waves/dac_auxa_max.jpg) Results: - Maximum AUX A voltage: 272 mV - You can see that the lower level also has a small voltage relative to ground (the moment is controversial, because the probe can introduce its own distortions) Credits: @HardWrMan ## Triangle/Noise/DPCM ![dac_other_tran](/BreakingNESWiki/imgstore/apu/dac_other_tran.jpg) TBD.
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Test Pattern ![apu_locator_test](/BreakingNESWiki/imgstore/apu/apu_locator_test.jpg) ## 2A03G The test pattern for the 2A03G does not stand out as interesting: ![testarea_2A03G](/BreakingNESWiki/imgstore/apu/testarea_2A03G.jpg) ## 2A07A The test pattern for the 2A07A does not stand out in any interesting way: ![testarea_2A07A](/BreakingNESWiki/imgstore/apu/pal/testarea_2A07A.jpg)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# APU Pinout The study of any IC begins with the pinout. |Our wiki|Official designations| |---|---| |![apu_pads](/BreakingNESWiki/imgstore/apu/apu_pads.jpg)|![apu_pinout_orig](/BreakingNESWiki/imgstore/apu/apu_pinout_orig.png)| |Name|Number|Direction|Description| |---|---|---|---| |AUX A|1|APU =>|DAC output of square channels| |AUX B|2|APU =>|DAC output for the remaining channels (triangle, noise, and DPCM)| |/RES|3|APU =>|Reset signal| |A0-A15|4-19|APU =>|Address bus| |GND|20| |Ground| |D0-D7|28-21|APU <=>|Data bus| |CLK|29|=> APU|Master clock| |DBG|30|=> APU|Debug mode (DBG=1: Enable debug registers, DBG=0: Disable debug registers)| |M2|31|APU =>|Modified PHI2 6502 core output| |/IRQ|32|=> APU|Maskable interrupt signal| |/NMI|33|=> APU|Non-maskable interrupt signal| |R/W|34|APU =>|Data bus direction (R/W=1: read, R/W=0: write)| |/IN1|35|APU =>|Read I/O port associated with register $4017| |/IN0|36|APU =>|Read I/O port associated with register $4016| |OUT2|37|APU =>|Write to the I/O port associated with register bit $4016\[2\]| |OUT1|38|APU =>|Write to the I/O port associated with register bit $4016\[1\]| |OUT0|39|APU =>|Write to the I/O port associated with register bit $4016\[0\]| |VCC|40| |Power +5V| ## AUX A/B Considered in the [DAC](dac.md) section. ## /RES ![pad_res](/BreakingNESWiki/imgstore/apu/pad_res.jpg) From the external `/RES` signal you get the internal reset signal `RES`. ## A0-A15 ![pad_a](/BreakingNESWiki/imgstore/apu/pad_a.jpg) The value from the internal address bus is directly output to pins A0-A15 (without buffering). During reset (`RES` = 1) - pins A0-A15 are disabled (`z`). ## D0-D7 ![pad_d](/BreakingNESWiki/imgstore/apu/pad_d.jpg) - `RD` and `WR` are two complementary signals - When `RD` equals 1 pins D0-D7 act as input - When `WR` is 1 pins D0-D7 act as output The internal and external data buses are connected directly (without buffering). ## CLK ![pad_clk](/BreakingNESWiki/imgstore/apu/pad_clk.jpg) ## M2 ![pad_m2](/BreakingNESWiki/imgstore/apu/pad_m2.jpg) Circuit for obtaining the `NotDBG_RES` signal: ![notdbg_res_tran](/BreakingNESWiki/imgstore/apu/notdbg_res_tran.jpg) For some reason the circuit contains a disabled "comb" of transistors, which is a chain of inverters of the internal `RES` signal. In debug mode (when DBG=1) - the external signal M2 is not touched during reset. In regular mode (for Retail consoles) - during reset the external signal M2 is in `z` state (Open-drain). The M2 duty cycle is made so that the top level of M2 becomes active 1.5 CLK (3 half cycles) before the top level of the PHI2 core. Thus external devices start their bus activity before the built-in 6502 core. When set to read mode, external devices can "advance" the data for the processor. When write mode is set, external devices can "preemptively" free the bus for the processor. ## DBG ![pad_dbg](/BreakingNESWiki/imgstore/apu/pad_dbg.jpg) ## /IRQ ![pad_irq](/BreakingNESWiki/imgstore/apu/pad_irq.jpg) The logic design of this contact is a bit redundant. The value of the /IRQ input terminal generates the value of the internal signal /IRQ (with the same name). ## /NMI ![pad_nmi](/BreakingNESWiki/imgstore/apu/pad_nmi.jpg) The /NMI contact design is not different from the /IRQ terminal design. ## R/W ![pad_rw](/BreakingNESWiki/imgstore/apu/pad_rw.jpg) The output value of the R/W contact is derived from the internal `RW` signal, and during reset R/W is disabled (when /RES contact = 0 and internal RES line = 1), that is, it has a Z (high-impedance) value. A small tri-state logic controls the disconnection of the R/W pin. Some of the push/pull inverters used to delay the R/W line are disabled. Apparently the designers adjusted the propagation delay to trigger the signal. This same delay line also slows down the internal R/W signal a bit. ## Input/Output Ports |/INx|OUTx| |---|---| |![pad_in](/BreakingNESWiki/imgstore/apu/pad_in.jpg)|![pad_out](/BreakingNESWiki/imgstore/apu/pad_out.jpg)| The design is not different from the D0-D7 terminals design, except that the analog of the `RD` signal is the internal reset signal (`RES`) and the analog of the `WR` signal is always connected to VCC (equal to 1, i.e. the pin always works as output). During reset (RES = 1) the In/Out terminals are disconnected. During reset the terminal circuit operates similarly to the D0-D7 terminal circuit, with RD = WR = 1, and this signal value disconnects the terminal (`z`). - The output value for pins `OUT0-2` is derived from the internal signals `OUT0-2` (with the same name). - The output value for pins `/IN0-1` is the internal signals `/R4016` and `/R4017` from the register selector. Circuit for producing OUTx signals: ![out_tran](/BreakingNESWiki/imgstore/apu/out_tran.jpg) ![OUT_Ports](/BreakingNESWiki/imgstore/apu/OUT_Ports.jpg) ![IORegBit](/BreakingNESWiki/imgstore/apu/IORegBit.jpg) ## Pads Schematics Truly unidirectional terminals: ![Pads1](/BreakingNESWiki/imgstore/apu/Pads1.jpg) Terminals using BIDIR circuit: ![Pads2](/BreakingNESWiki/imgstore/apu/Pads2.jpg) As mentioned above, only the data bus uses all the features of the bidirectional terminal. The other pads based on the BIDIR circuit are redundant. BIDIR pad schematic: ![BIDIR_Pad](/BreakingNESWiki/imgstore/apu/BIDIR_Pad.jpg)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# APU Overview :warning: At this moment our Wiki is massively renaming /ACLK=ACLK1 and ACLK=/ACLK2 signals to comply with Visual2A03, so there is no misunderstanding. Please be understanding if you find the old signal designations somewhere (/ACLK and ACLK). This will all be renamed in time. **APU** is the unofficial name for the specialized NES CPU. The official name is just CPU, but we will stick to the unofficial term. The chip was developed by [Ricoh](../Ricoh.md), chip names are RP2A03 for NTSC and RP2A07 for PAL. ![APU](/BreakingNESWiki/imgstore/apu/APU.jpg) The APU includes: - MOS 6502 processor core, with disabled decimal correction (BCD) circuit - Input clock frequency divider - Software Timer (commonly known as `Frame counter`) - Sound generators: 2 square channels, 1 triangle, 1 noise generator, Delta PCM - DMA for sampling DPCM samples - DACs to convert digital outputs of synthesized sound to analog levels - DMA to send sprites (hardwired to external PPU register $2004) and dedicated DMA controller - I/O ports (which are usually used to receive data from controllers in NES) - Debug registers (not available on Retail consoles) The DAC makes the APU a semi-analog circuit. Also to be taken into account is the fact that the 6502 core which is part of the APU is controlled by a DMA controller and therefore is a "common" device sharing the bus with other devices which use DMA. ![apu_blocks](/BreakingNESWiki/imgstore/apu/apu_blocks.jpg) ## Note on Transistor Circuits The transistor circuits for each component are chopped up into component parts so that they don't take up too much space. To keep you from getting lost, each section includes a special "locator" at the beginning that marks the approximate location of the component being studied. An example of a locator: ![apu_locator_dma](/BreakingNESWiki/imgstore/apu/apu_locator_dma.jpg) ## Note on Logic Circuits The logic circuits are mostly made in the Logisim program. The following element is used to denote DLatch: |DLatch (transistor circuit)|DLatch (logic equivalent)| |---|---| |![dlatch_tran](/BreakingNESWiki/imgstore/dlatch_tran.jpg)|![dlatch_logic](/BreakingNESWiki/imgstore/dlatch_logic.jpg)| For convenience, the logical variant of DLatch has two outputs (`out` and `/out`), since the current value of DLatch (out) is often used as an input of a NOR operation.
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# APU Cycles Cycles in circuit engineering are a "favorite" topic. While combinatorial circuits are a regular "cascade" of gates, some sequential circuits can be twisted as loops. Cycles are especially hard to debug, simulate, and generally understand. This section is about cycles (or as we call them, "uroboros"). No categories, everything. The cycles are numbered for the convenience of discussion. This section is recommended for thoughtful study after you have done all the basic APU chapters. ## Cycle 1 ![0001](/BreakingNESWiki/imgstore/apu/cycles/0001.png) ## Cycle 2 ![0002](/BreakingNESWiki/imgstore/apu/cycles/0002.png) ## Cycle 3 ![0003](/BreakingNESWiki/imgstore/apu/cycles/0003.png) ## Cycle 4 ![0004](/BreakingNESWiki/imgstore/apu/cycles/0004.png) ## Cycle 5 ![0005](/BreakingNESWiki/imgstore/apu/cycles/0005.png) ## Cycle 6 ![0006](/BreakingNESWiki/imgstore/apu/cycles/0006.png) ## Cycle 7 ![0007](/BreakingNESWiki/imgstore/apu/cycles/0007.png) ## Cycle 8 ![0008](/BreakingNESWiki/imgstore/apu/cycles/0008.png) ## Cycle 9 ![0009](/BreakingNESWiki/imgstore/apu/cycles/0009.png) ## Cycle 10 ![0010](/BreakingNESWiki/imgstore/apu/cycles/0010.png) ## Cycle 11 ![0011](/BreakingNESWiki/imgstore/apu/cycles/0011.png) ## Cycle 12 ![0012](/BreakingNESWiki/imgstore/apu/cycles/0012.png) ## Cycle 13 ![0013](/BreakingNESWiki/imgstore/apu/cycles/0013.png)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Topology Восстановленные маски исследуемых микросхем. НЕ пригодны для производства чипов, т.к. местам сделаны неаккуратно. Хотя кто знает, может эти неаккуратности не повлияют на работу итогового чипа, сделанного по восстановленным маскам. Так или иначе, используя дополнительные усилия или нейросети можно сделать с этими масками что вам требуется. --- Reconstructed masks of the studied chips. They are NOT suitable for chip production because they are sloppy in places. Although who knows, maybe these sloppinesses will not affect the functioning of the final chip made by the restored masks. Anyway, using extra effort or neural networks, you can do with these masks what you need. PSD Sources: - 2A03G: https://drive.google.com/drive/folders/10FeSOP4EUiLFMSUXYdi00ia0c3cAPzQL?usp=sharing - 2C02G: https://drive.google.com/drive/folders/1aaNk9dVwvTbCpsACfet-5hX65iNZr6AO?usp=sharing - 6502: https://drive.google.com/drive/u/1/folders/17EJCpvw_i7w55upLx1uWYqEYnycqkMSk
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <lib desc="file#2C0x_PPU.circ" name="7"/> <main name="PPUPlayer_NTSC"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="PPUPlayer_NTSC"> <a name="circuit" val="PPUPlayer_NTSC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <wire from="(950,160)" to="(950,360)"/> <wire from="(1240,140)" to="(1240,550)"/> <wire from="(400,400)" to="(400,410)"/> <wire from="(460,540)" to="(460,550)"/> <wire from="(1090,850)" to="(1090,880)"/> <wire from="(830,600)" to="(1250,600)"/> <wire from="(910,670)" to="(1010,670)"/> <wire from="(860,460)" to="(860,490)"/> <wire from="(320,460)" to="(490,460)"/> <wire from="(1020,170)" to="(1020,260)"/> <wire from="(90,40)" to="(90,640)"/> <wire from="(830,620)" to="(850,620)"/> <wire from="(400,410)" to="(490,410)"/> <wire from="(860,490)" to="(880,490)"/> <wire from="(830,340)" to="(1040,340)"/> <wire from="(430,220)" to="(430,320)"/> <wire from="(1600,110)" to="(1670,110)"/> <wire from="(1370,290)" to="(1380,290)"/> <wire from="(1040,190)" to="(1060,190)"/> <wire from="(1420,180)" to="(1430,180)"/> <wire from="(940,200)" to="(940,370)"/> <wire from="(890,460)" to="(1170,460)"/> <wire from="(830,190)" to="(980,190)"/> <wire from="(930,500)" to="(1210,500)"/> <wire from="(1210,500)" to="(1350,500)"/> <wire from="(830,280)" to="(920,280)"/> <wire from="(1620,140)" to="(1620,450)"/> <wire from="(1210,500)" to="(1210,730)"/> <wire from="(410,350)" to="(490,350)"/> <wire from="(1340,640)" to="(1370,640)"/> <wire from="(1030,180)" to="(1030,300)"/> <wire from="(840,550)" to="(910,550)"/> <wire from="(400,720)" to="(980,720)"/> <wire from="(1260,570)" to="(1430,570)"/> <wire from="(1130,380)" to="(1130,400)"/> <wire from="(1140,390)" to="(1140,410)"/> <wire from="(90,640)" to="(400,640)"/> <wire from="(350,620)" to="(470,620)"/> <wire from="(830,240)" to="(930,240)"/> <wire from="(910,640)" to="(910,670)"/> <wire from="(410,140)" to="(410,160)"/> <wire from="(910,80)" to="(910,110)"/> <wire from="(1250,530)" to="(1250,600)"/> <wire from="(400,640)" to="(400,720)"/> <wire from="(1040,190)" to="(1040,340)"/> <wire from="(910,440)" to="(1150,440)"/> <wire from="(1140,390)" to="(1190,390)"/> <wire from="(1370,340)" to="(1380,340)"/> <wire from="(1370,260)" to="(1380,260)"/> <wire from="(1420,230)" to="(1430,230)"/> <wire from="(830,380)" to="(1050,380)"/> <wire from="(830,580)" to="(1240,580)"/> <wire from="(830,150)" to="(990,150)"/> <wire from="(930,240)" to="(930,400)"/> <wire from="(830,500)" to="(860,500)"/> <wire from="(460,190)" to="(460,230)"/> <wire from="(830,310)" to="(1090,310)"/> <wire from="(1090,280)" to="(1120,280)"/> <wire from="(1340,610)" to="(1370,610)"/> <wire from="(1240,550)" to="(1460,550)"/> <wire from="(1150,400)" to="(1150,440)"/> <wire from="(1160,410)" to="(1160,450)"/> <wire from="(1170,420)" to="(1170,460)"/> <wire from="(1020,870)" to="(1030,870)"/> <wire from="(1180,430)" to="(1180,470)"/> <wire from="(1050,200)" to="(1050,380)"/> <wire from="(1360,690)" to="(1360,730)"/> <wire from="(1130,650)" to="(1130,760)"/> <wire from="(1370,350)" to="(1370,370)"/> <wire from="(1060,210)" to="(1060,420)"/> <wire from="(410,180)" to="(470,180)"/> <wire from="(840,540)" to="(840,550)"/> <wire from="(1260,230)" to="(1260,570)"/> <wire from="(410,190)" to="(460,190)"/> <wire from="(850,540)" to="(910,540)"/> <wire from="(1430,570)" to="(1430,600)"/> <wire from="(1310,300)" to="(1350,300)"/> <wire from="(920,280)" to="(920,410)"/> <wire from="(1070,850)" to="(1070,880)"/> <wire from="(350,610)" to="(350,620)"/> <wire from="(970,270)" to="(1070,270)"/> <wire from="(390,410)" to="(390,430)"/> <wire from="(830,420)" to="(1060,420)"/> <wire from="(1020,170)" to="(1060,170)"/> <wire from="(1430,450)" to="(1620,450)"/> <wire from="(380,390)" to="(490,390)"/> <wire from="(450,550)" to="(450,580)"/> <wire from="(1150,670)" to="(1150,810)"/> <wire from="(830,200)" to="(940,200)"/> <wire from="(410,200)" to="(450,200)"/> <wire from="(1370,310)" to="(1380,310)"/> <wire from="(1370,230)" to="(1380,230)"/> <wire from="(410,210)" to="(440,210)"/> <wire from="(360,240)" to="(390,240)"/> <wire from="(410,220)" to="(430,220)"/> <wire from="(470,200)" to="(490,200)"/> <wire from="(1260,110)" to="(1260,230)"/> <wire from="(70,40)" to="(90,40)"/> <wire from="(1220,130)" to="(1310,130)"/> <wire from="(910,320)" to="(910,440)"/> <wire from="(70,680)" to="(850,680)"/> <wire from="(1340,660)" to="(1370,660)"/> <wire from="(1430,510)" to="(1460,510)"/> <wire from="(1070,880)" to="(1090,880)"/> <wire from="(1170,420)" to="(1190,420)"/> <wire from="(830,350)" to="(1100,350)"/> <wire from="(1600,160)" to="(1640,160)"/> <wire from="(860,530)" to="(910,530)"/> <wire from="(470,700)" to="(850,700)"/> <wire from="(830,160)" to="(950,160)"/> <wire from="(1260,110)" to="(1430,110)"/> <wire from="(1090,280)" to="(1090,310)"/> <wire from="(900,360)" to="(900,450)"/> <wire from="(1350,360)" to="(1350,500)"/> <wire from="(850,520)" to="(850,540)"/> <wire from="(1140,230)" to="(1260,230)"/> <wire from="(1070,260)" to="(1070,270)"/> <wire from="(1080,270)" to="(1080,280)"/> <wire from="(1070,260)" to="(1120,260)"/> <wire from="(400,640)" to="(490,640)"/> <wire from="(1370,280)" to="(1380,280)"/> <wire from="(830,390)" to="(1110,390)"/> <wire from="(460,550)" to="(490,550)"/> <wire from="(460,230)" to="(490,230)"/> <wire from="(1210,350)" to="(1280,350)"/> <wire from="(910,80)" to="(1130,80)"/> <wire from="(1280,30)" to="(1670,30)"/> <wire from="(380,400)" to="(400,400)"/> <wire from="(440,540)" to="(460,540)"/> <wire from="(920,410)" to="(1140,410)"/> <wire from="(1100,290)" to="(1100,350)"/> <wire from="(440,550)" to="(450,550)"/> <wire from="(890,400)" to="(890,460)"/> <wire from="(1670,110)" to="(1670,600)"/> <wire from="(380,410)" to="(390,410)"/> <wire from="(1120,810)" to="(1150,810)"/> <wire from="(1340,630)" to="(1370,630)"/> <wire from="(1400,210)" to="(1430,210)"/> <wire from="(1050,200)" to="(1060,200)"/> <wire from="(450,200)" to="(450,260)"/> <wire from="(830,540)" to="(840,540)"/> <wire from="(1110,650)" to="(1130,650)"/> <wire from="(940,370)" to="(1190,370)"/> <wire from="(1150,400)" to="(1190,400)"/> <wire from="(1110,300)" to="(1110,390)"/> <wire from="(1000,150)" to="(1060,150)"/> <wire from="(830,430)" to="(1120,430)"/> <wire from="(880,440)" to="(880,470)"/> <wire from="(860,500)" to="(860,530)"/> <wire from="(1280,30)" to="(1280,350)"/> <wire from="(830,480)" to="(870,480)"/> <wire from="(870,520)" to="(910,520)"/> <wire from="(470,620)" to="(470,700)"/> <wire from="(450,490)" to="(450,520)"/> <wire from="(880,470)" to="(1180,470)"/> <wire from="(390,430)" to="(490,430)"/> <wire from="(450,260)" to="(490,260)"/> <wire from="(450,580)" to="(490,580)"/> <wire from="(1310,300)" to="(1310,670)"/> <wire from="(1250,160)" to="(1250,530)"/> <wire from="(1370,330)" to="(1380,330)"/> <wire from="(1370,250)" to="(1380,250)"/> <wire from="(1310,670)" to="(1320,670)"/> <wire from="(1640,160)" to="(1640,730)"/> <wire from="(1410,370)" to="(1420,370)"/> <wire from="(460,520)" to="(490,520)"/> <wire from="(1120,310)" to="(1120,430)"/> <wire from="(470,620)" to="(490,620)"/> <wire from="(980,640)" to="(1010,640)"/> <wire from="(1390,580)" to="(1460,580)"/> <wire from="(440,520)" to="(450,520)"/> <wire from="(900,450)" to="(1160,450)"/> <wire from="(1340,680)" to="(1370,680)"/> <wire from="(1340,600)" to="(1370,600)"/> <wire from="(1310,130)" to="(1310,300)"/> <wire from="(1100,290)" to="(1120,290)"/> <wire from="(960,760)" to="(960,810)"/> <wire from="(1360,730)" to="(1640,730)"/> <wire from="(1210,730)" to="(1320,730)"/> <wire from="(830,440)" to="(880,440)"/> <wire from="(440,290)" to="(490,290)"/> <wire from="(1670,30)" to="(1670,110)"/> <wire from="(990,150)" to="(990,240)"/> <wire from="(880,490)" to="(880,510)"/> <wire from="(830,180)" to="(1000,180)"/> <wire from="(320,420)" to="(360,420)"/> <wire from="(950,360)" to="(1190,360)"/> <wire from="(1080,130)" to="(1130,130)"/> <wire from="(1360,690)" to="(1370,690)"/> <wire from="(1370,300)" to="(1380,300)"/> <wire from="(1370,220)" to="(1380,220)"/> <wire from="(1180,430)" to="(1190,430)"/> <wire from="(870,480)" to="(870,520)"/> <wire from="(1030,180)" to="(1060,180)"/> <wire from="(830,460)" to="(860,460)"/> <wire from="(880,510)" to="(910,510)"/> <wire from="(850,620)" to="(850,680)"/> <wire from="(980,190)" to="(980,250)"/> <wire from="(1340,650)" to="(1370,650)"/> <wire from="(1370,370)" to="(1390,370)"/> <wire from="(1250,530)" to="(1460,530)"/> <wire from="(830,220)" to="(1010,220)"/> <wire from="(430,320)" to="(490,320)"/> <wire from="(1030,850)" to="(1030,870)"/> <wire from="(960,280)" to="(1080,280)"/> <wire from="(1080,270)" to="(1120,270)"/> <wire from="(830,400)" to="(890,400)"/> <wire from="(460,520)" to="(460,530)"/> <wire from="(1240,140)" to="(1430,140)"/> <wire from="(1130,380)" to="(1190,380)"/> <wire from="(830,140)" to="(1060,140)"/> <wire from="(440,210)" to="(440,290)"/> <wire from="(960,760)" to="(1130,760)"/> <wire from="(1250,160)" to="(1430,160)"/> <wire from="(830,520)" to="(850,520)"/> <wire from="(1370,350)" to="(1380,350)"/> <wire from="(1370,270)" to="(1380,270)"/> <wire from="(960,810)" to="(980,810)"/> <wire from="(970,230)" to="(970,270)"/> <wire from="(1120,100)" to="(1130,100)"/> <wire from="(1430,450)" to="(1430,510)"/> <wire from="(440,530)" to="(460,530)"/> <wire from="(830,270)" to="(960,270)"/> <wire from="(830,360)" to="(900,360)"/> <wire from="(410,170)" to="(490,170)"/> <wire from="(1340,620)" to="(1370,620)"/> <wire from="(980,250)" to="(1120,250)"/> <wire from="(360,120)" to="(490,120)"/> <wire from="(830,110)" to="(910,110)"/> <wire from="(1010,160)" to="(1060,160)"/> <wire from="(960,270)" to="(960,280)"/> <wire from="(1110,670)" to="(1150,670)"/> <wire from="(1240,550)" to="(1240,580)"/> <wire from="(830,260)" to="(1020,260)"/> <wire from="(1000,150)" to="(1000,180)"/> <wire from="(470,180)" to="(470,200)"/> <wire from="(1420,230)" to="(1420,370)"/> <wire from="(450,490)" to="(490,490)"/> <wire from="(980,640)" to="(980,720)"/> <wire from="(1370,320)" to="(1380,320)"/> <wire from="(1370,240)" to="(1380,240)"/> <wire from="(1110,300)" to="(1120,300)"/> <wire from="(1590,600)" to="(1670,600)"/> <wire from="(410,560)" to="(420,560)"/> <wire from="(990,240)" to="(1120,240)"/> <wire from="(1010,160)" to="(1010,220)"/> <wire from="(1160,410)" to="(1190,410)"/> <wire from="(830,300)" to="(1030,300)"/> <wire from="(1600,140)" to="(1620,140)"/> <wire from="(930,400)" to="(1130,400)"/> <wire from="(410,140)" to="(490,140)"/> <wire from="(1340,670)" to="(1370,670)"/> <wire from="(1340,590)" to="(1370,590)"/> <wire from="(1430,600)" to="(1460,600)"/> <wire from="(830,230)" to="(970,230)"/> <wire from="(870,700)" to="(880,700)"/> <wire from="(830,320)" to="(910,320)"/> <wire from="(830,560)" to="(910,560)"/> <wire from="(830,640)" to="(910,640)"/> <wire from="(410,230)" to="(410,350)"/> <comp lib="6" loc="(1165,343)" name="Text"> <a name="text" val="PPU Data In"/> </comp> <comp lib="7" loc="(830,90)" name="2C02_NTSC"/> <comp lib="0" loc="(390,240)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(320,420)" name="Pin"> <a name="width" val="3"/> <a name="tristate" val="false"/> <a name="label" val="RS"/> </comp> <comp lib="0" loc="(1420,180)" name="Constant"/> <comp lib="0" loc="(360,420)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1320,670)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1460,510)" name="SRAM"/> <comp lib="0" loc="(350,610)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(360,240)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB"/> </comp> <comp lib="0" loc="(420,560)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(1010,640)" name="VideoDumper"/> <comp lib="0" loc="(1210,350)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1400,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(70,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="1" loc="(870,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(930,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1070,880)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="5" loc="(880,700)" name="LED"/> <comp lib="0" loc="(1120,100)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(360,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp loc="(1130,80)" name="LS373"/> <comp lib="6" loc="(1103,225)" name="Text"> <a name="text" val="PPU Data Out"/> </comp> <comp lib="0" loc="(1350,300)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1140,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1020,870)" name="Constant"/> <comp loc="(1430,110)" name="NROM_Cartridge"/> <comp lib="0" loc="(410,560)" name="Constant"> <a name="width" val="4"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(70,40)" name="Clock"> <a name="label" val="CLK"/> </comp> <comp lib="1" loc="(1410,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(320,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(1350,360)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1320,730)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="4" loc="(1120,810)" name="RAM"> <a name="addrWidth" val="24"/> <a name="dataWidth" val="32"/> <a name="bus" val="asynch"/> </comp> <comp lib="0" loc="(1390,580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="6" loc="(1053,123)" name="Text"> <a name="text" val="PA0-7"/> </comp> <comp lib="0" loc="(1080,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> </circuit> <circuit name="PPUPlayer_RGB_PPU"> <a name="circuit" val="PPUPlayer_RGB_PPU"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <wire from="(950,160)" to="(950,360)"/> <wire from="(1240,140)" to="(1240,550)"/> <wire from="(440,520)" to="(490,520)"/> <wire from="(400,400)" to="(400,410)"/> <wire from="(1090,850)" to="(1090,880)"/> <wire from="(830,600)" to="(1250,600)"/> <wire from="(860,460)" to="(860,490)"/> <wire from="(320,460)" to="(490,460)"/> <wire from="(1020,170)" to="(1020,260)"/> <wire from="(90,40)" to="(90,640)"/> <wire from="(830,620)" to="(850,620)"/> <wire from="(400,410)" to="(490,410)"/> <wire from="(860,490)" to="(880,490)"/> <wire from="(830,340)" to="(1040,340)"/> <wire from="(430,220)" to="(430,320)"/> <wire from="(1600,110)" to="(1670,110)"/> <wire from="(1370,290)" to="(1380,290)"/> <wire from="(1040,190)" to="(1060,190)"/> <wire from="(1420,180)" to="(1430,180)"/> <wire from="(940,200)" to="(940,370)"/> <wire from="(890,460)" to="(1170,460)"/> <wire from="(830,190)" to="(980,190)"/> <wire from="(930,500)" to="(1210,500)"/> <wire from="(1210,500)" to="(1350,500)"/> <wire from="(830,280)" to="(920,280)"/> <wire from="(1620,140)" to="(1620,450)"/> <wire from="(960,640)" to="(960,700)"/> <wire from="(1210,500)" to="(1210,730)"/> <wire from="(410,350)" to="(490,350)"/> <wire from="(1340,640)" to="(1370,640)"/> <wire from="(1030,180)" to="(1030,300)"/> <wire from="(840,550)" to="(910,550)"/> <wire from="(400,720)" to="(980,720)"/> <wire from="(1260,570)" to="(1430,570)"/> <wire from="(1130,380)" to="(1130,400)"/> <wire from="(1140,390)" to="(1140,410)"/> <wire from="(90,640)" to="(400,640)"/> <wire from="(350,620)" to="(470,620)"/> <wire from="(830,240)" to="(930,240)"/> <wire from="(410,140)" to="(410,160)"/> <wire from="(910,80)" to="(910,110)"/> <wire from="(1250,530)" to="(1250,600)"/> <wire from="(400,640)" to="(400,720)"/> <wire from="(1040,190)" to="(1040,340)"/> <wire from="(910,440)" to="(1150,440)"/> <wire from="(1140,390)" to="(1190,390)"/> <wire from="(1370,340)" to="(1380,340)"/> <wire from="(1370,260)" to="(1380,260)"/> <wire from="(1420,230)" to="(1430,230)"/> <wire from="(830,380)" to="(1050,380)"/> <wire from="(920,660)" to="(1010,660)"/> <wire from="(830,580)" to="(1240,580)"/> <wire from="(830,150)" to="(990,150)"/> <wire from="(930,240)" to="(930,400)"/> <wire from="(830,500)" to="(860,500)"/> <wire from="(460,190)" to="(460,230)"/> <wire from="(830,310)" to="(1090,310)"/> <wire from="(1090,280)" to="(1120,280)"/> <wire from="(1340,610)" to="(1370,610)"/> <wire from="(1240,550)" to="(1460,550)"/> <wire from="(1150,400)" to="(1150,440)"/> <wire from="(1160,410)" to="(1160,450)"/> <wire from="(1170,420)" to="(1170,460)"/> <wire from="(1020,870)" to="(1030,870)"/> <wire from="(1180,430)" to="(1180,470)"/> <wire from="(1050,200)" to="(1050,380)"/> <wire from="(1360,690)" to="(1360,730)"/> <wire from="(1130,650)" to="(1130,760)"/> <wire from="(1370,350)" to="(1370,370)"/> <wire from="(1060,210)" to="(1060,420)"/> <wire from="(410,180)" to="(470,180)"/> <wire from="(430,490)" to="(430,750)"/> <wire from="(840,540)" to="(840,550)"/> <wire from="(1260,230)" to="(1260,570)"/> <wire from="(410,190)" to="(460,190)"/> <wire from="(850,540)" to="(910,540)"/> <wire from="(1430,570)" to="(1430,600)"/> <wire from="(1310,300)" to="(1350,300)"/> <wire from="(920,280)" to="(920,410)"/> <wire from="(1070,850)" to="(1070,880)"/> <wire from="(350,610)" to="(350,620)"/> <wire from="(970,270)" to="(1070,270)"/> <wire from="(390,410)" to="(390,430)"/> <wire from="(830,420)" to="(1060,420)"/> <wire from="(1020,170)" to="(1060,170)"/> <wire from="(1430,450)" to="(1620,450)"/> <wire from="(380,390)" to="(490,390)"/> <wire from="(830,200)" to="(940,200)"/> <wire from="(410,200)" to="(450,200)"/> <wire from="(1370,310)" to="(1380,310)"/> <wire from="(1370,230)" to="(1380,230)"/> <wire from="(410,210)" to="(440,210)"/> <wire from="(360,240)" to="(390,240)"/> <wire from="(410,220)" to="(430,220)"/> <wire from="(470,200)" to="(490,200)"/> <wire from="(1260,110)" to="(1260,230)"/> <wire from="(70,40)" to="(90,40)"/> <wire from="(1220,130)" to="(1310,130)"/> <wire from="(910,320)" to="(910,440)"/> <wire from="(70,680)" to="(850,680)"/> <wire from="(1340,660)" to="(1370,660)"/> <wire from="(1430,510)" to="(1460,510)"/> <wire from="(1070,880)" to="(1090,880)"/> <wire from="(1170,420)" to="(1190,420)"/> <wire from="(830,350)" to="(1100,350)"/> <wire from="(1600,160)" to="(1640,160)"/> <wire from="(430,490)" to="(490,490)"/> <wire from="(860,530)" to="(910,530)"/> <wire from="(470,700)" to="(850,700)"/> <wire from="(830,160)" to="(950,160)"/> <wire from="(1260,110)" to="(1430,110)"/> <wire from="(1090,280)" to="(1090,310)"/> <wire from="(900,360)" to="(900,450)"/> <wire from="(1350,360)" to="(1350,500)"/> <wire from="(850,520)" to="(850,540)"/> <wire from="(1140,230)" to="(1260,230)"/> <wire from="(1070,260)" to="(1070,270)"/> <wire from="(1080,270)" to="(1080,280)"/> <wire from="(1070,260)" to="(1120,260)"/> <wire from="(400,640)" to="(490,640)"/> <wire from="(1370,280)" to="(1380,280)"/> <wire from="(830,390)" to="(1110,390)"/> <wire from="(460,230)" to="(490,230)"/> <wire from="(1210,350)" to="(1280,350)"/> <wire from="(910,80)" to="(1130,80)"/> <wire from="(1280,30)" to="(1670,30)"/> <wire from="(380,400)" to="(400,400)"/> <wire from="(920,410)" to="(1140,410)"/> <wire from="(1100,290)" to="(1100,350)"/> <wire from="(890,400)" to="(890,460)"/> <wire from="(1670,110)" to="(1670,600)"/> <wire from="(380,410)" to="(390,410)"/> <wire from="(1120,810)" to="(1150,810)"/> <wire from="(1340,630)" to="(1370,630)"/> <wire from="(440,520)" to="(440,760)"/> <wire from="(1400,210)" to="(1430,210)"/> <wire from="(1050,200)" to="(1060,200)"/> <wire from="(450,200)" to="(450,260)"/> <wire from="(830,540)" to="(840,540)"/> <wire from="(1110,650)" to="(1130,650)"/> <wire from="(940,370)" to="(1190,370)"/> <wire from="(1150,400)" to="(1190,400)"/> <wire from="(1110,680)" to="(1150,680)"/> <wire from="(1110,300)" to="(1110,390)"/> <wire from="(1000,150)" to="(1060,150)"/> <wire from="(830,430)" to="(1120,430)"/> <wire from="(880,440)" to="(880,470)"/> <wire from="(860,500)" to="(860,530)"/> <wire from="(1280,30)" to="(1280,350)"/> <wire from="(830,480)" to="(870,480)"/> <wire from="(870,520)" to="(910,520)"/> <wire from="(470,620)" to="(470,700)"/> <wire from="(880,470)" to="(1180,470)"/> <wire from="(390,430)" to="(490,430)"/> <wire from="(450,260)" to="(490,260)"/> <wire from="(1310,300)" to="(1310,670)"/> <wire from="(1250,160)" to="(1250,530)"/> <wire from="(1370,330)" to="(1380,330)"/> <wire from="(1370,250)" to="(1380,250)"/> <wire from="(1310,670)" to="(1320,670)"/> <wire from="(1640,160)" to="(1640,730)"/> <wire from="(1410,370)" to="(1420,370)"/> <wire from="(1120,310)" to="(1120,430)"/> <wire from="(470,620)" to="(490,620)"/> <wire from="(980,640)" to="(1010,640)"/> <wire from="(1390,580)" to="(1460,580)"/> <wire from="(900,450)" to="(1160,450)"/> <wire from="(1340,680)" to="(1370,680)"/> <wire from="(1340,600)" to="(1370,600)"/> <wire from="(1310,130)" to="(1310,300)"/> <wire from="(1100,290)" to="(1120,290)"/> <wire from="(960,760)" to="(960,810)"/> <wire from="(1360,730)" to="(1640,730)"/> <wire from="(930,670)" to="(1010,670)"/> <wire from="(1210,730)" to="(1320,730)"/> <wire from="(830,440)" to="(880,440)"/> <wire from="(440,290)" to="(490,290)"/> <wire from="(1670,30)" to="(1670,110)"/> <wire from="(430,750)" to="(920,750)"/> <wire from="(440,760)" to="(930,760)"/> <wire from="(450,770)" to="(940,770)"/> <wire from="(990,150)" to="(990,240)"/> <wire from="(880,490)" to="(880,510)"/> <wire from="(830,180)" to="(1000,180)"/> <wire from="(450,550)" to="(450,770)"/> <wire from="(320,420)" to="(360,420)"/> <wire from="(950,360)" to="(1190,360)"/> <wire from="(1080,130)" to="(1130,130)"/> <wire from="(450,550)" to="(490,550)"/> <wire from="(1360,690)" to="(1370,690)"/> <wire from="(1370,300)" to="(1380,300)"/> <wire from="(1370,220)" to="(1380,220)"/> <wire from="(1180,430)" to="(1190,430)"/> <wire from="(870,480)" to="(870,520)"/> <wire from="(1030,180)" to="(1060,180)"/> <wire from="(830,460)" to="(860,460)"/> <wire from="(880,510)" to="(910,510)"/> <wire from="(850,620)" to="(850,680)"/> <wire from="(980,190)" to="(980,250)"/> <wire from="(1340,650)" to="(1370,650)"/> <wire from="(1370,370)" to="(1390,370)"/> <wire from="(1250,530)" to="(1460,530)"/> <wire from="(830,220)" to="(1010,220)"/> <wire from="(960,700)" to="(1010,700)"/> <wire from="(430,320)" to="(490,320)"/> <wire from="(1030,850)" to="(1030,870)"/> <wire from="(960,280)" to="(1080,280)"/> <wire from="(1080,270)" to="(1120,270)"/> <wire from="(830,400)" to="(890,400)"/> <wire from="(1240,140)" to="(1430,140)"/> <wire from="(1130,380)" to="(1190,380)"/> <wire from="(830,140)" to="(1060,140)"/> <wire from="(440,210)" to="(440,290)"/> <wire from="(960,760)" to="(1130,760)"/> <wire from="(1250,160)" to="(1430,160)"/> <wire from="(830,520)" to="(850,520)"/> <wire from="(1370,350)" to="(1380,350)"/> <wire from="(1370,270)" to="(1380,270)"/> <wire from="(960,810)" to="(980,810)"/> <wire from="(970,230)" to="(970,270)"/> <wire from="(1120,100)" to="(1130,100)"/> <wire from="(1430,450)" to="(1430,510)"/> <wire from="(830,270)" to="(960,270)"/> <wire from="(830,360)" to="(900,360)"/> <wire from="(410,170)" to="(490,170)"/> <wire from="(1340,620)" to="(1370,620)"/> <wire from="(980,250)" to="(1120,250)"/> <wire from="(360,120)" to="(490,120)"/> <wire from="(830,110)" to="(910,110)"/> <wire from="(1010,160)" to="(1060,160)"/> <wire from="(960,270)" to="(960,280)"/> <wire from="(1240,550)" to="(1240,580)"/> <wire from="(830,260)" to="(1020,260)"/> <wire from="(1000,150)" to="(1000,180)"/> <wire from="(470,180)" to="(470,200)"/> <wire from="(1150,680)" to="(1150,810)"/> <wire from="(920,660)" to="(920,750)"/> <wire from="(930,670)" to="(930,760)"/> <wire from="(940,680)" to="(940,770)"/> <wire from="(1420,230)" to="(1420,370)"/> <wire from="(980,640)" to="(980,720)"/> <wire from="(1370,320)" to="(1380,320)"/> <wire from="(1370,240)" to="(1380,240)"/> <wire from="(1110,300)" to="(1120,300)"/> <wire from="(1590,600)" to="(1670,600)"/> <wire from="(990,240)" to="(1120,240)"/> <wire from="(830,640)" to="(960,640)"/> <wire from="(1010,160)" to="(1010,220)"/> <wire from="(1160,410)" to="(1190,410)"/> <wire from="(830,300)" to="(1030,300)"/> <wire from="(1600,140)" to="(1620,140)"/> <wire from="(940,680)" to="(1010,680)"/> <wire from="(930,400)" to="(1130,400)"/> <wire from="(410,140)" to="(490,140)"/> <wire from="(1340,670)" to="(1370,670)"/> <wire from="(1340,590)" to="(1370,590)"/> <wire from="(1430,600)" to="(1460,600)"/> <wire from="(830,230)" to="(970,230)"/> <wire from="(870,700)" to="(880,700)"/> <wire from="(830,320)" to="(910,320)"/> <wire from="(830,560)" to="(910,560)"/> <wire from="(410,230)" to="(410,350)"/> <comp lib="0" loc="(360,420)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="1" loc="(870,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1420,180)" name="Constant"/> <comp lib="7" loc="(830,90)" name="2C04-0003_RGB"/> <comp lib="0" loc="(1350,360)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(350,610)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(930,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(1020,870)" name="Constant"/> <comp lib="0" loc="(1210,350)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1320,730)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp loc="(1130,80)" name="LS373"/> <comp lib="5" loc="(880,700)" name="LED"/> <comp lib="0" loc="(360,240)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB"/> </comp> <comp lib="0" loc="(1070,880)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(1140,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(360,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(1400,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="1" loc="(1410,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1350,300)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1390,580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="6" loc="(897,634)" name="Text"> <a name="text" val="/SYNC actually"/> </comp> <comp lib="6" loc="(1103,225)" name="Text"> <a name="text" val="PPU Data Out"/> </comp> <comp lib="6" loc="(1165,343)" name="Text"> <a name="text" val="PPU Data In"/> </comp> <comp lib="4" loc="(1120,810)" name="RAM"> <a name="addrWidth" val="24"/> <a name="dataWidth" val="32"/> <a name="bus" val="asynch"/> </comp> <comp lib="0" loc="(1320,670)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1010,640)" name="VideoDumper_RGB"/> <comp loc="(1460,510)" name="SRAM"/> <comp lib="0" loc="(70,40)" name="Clock"> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(1080,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(1053,123)" name="Text"> <a name="text" val="PA0-7"/> </comp> <comp lib="0" loc="(320,420)" name="Pin"> <a name="width" val="3"/> <a name="tristate" val="false"/> <a name="label" val="RS"/> </comp> <comp lib="0" loc="(70,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(390,240)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1430,110)" name="NROM_Cartridge"/> <comp lib="0" loc="(1120,100)" name="Constant"> <a name="value" val="0x0"/> </comp> </circuit> <circuit name="SRAM"> <a name="circuit" val="SRAM"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="115" stroke="#000000" stroke-width="2" width="130" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="75">/CS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="94">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">/OE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="144">Addr</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="164">Data_In</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="146" y="163">Data_Out</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="113" y="49">SRAM</text> <circ-port height="8" pin="130,70" width="8" x="46" y="66"/> <circ-port height="8" pin="130,100" width="8" x="46" y="86"/> <circ-port height="8" pin="130,130" width="8" x="46" y="106"/> <circ-port height="8" pin="130,220" width="8" x="46" y="136"/> <circ-port height="8" pin="130,300" width="8" x="46" y="156"/> <circ-port height="10" pin="430,140" width="10" x="175" y="155"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(170,70)" to="(220,70)"/> <wire from="(130,300)" to="(180,300)"/> <wire from="(180,160)" to="(180,300)"/> <wire from="(320,180)" to="(320,190)"/> <wire from="(300,180)" to="(300,190)"/> <wire from="(280,180)" to="(280,200)"/> <wire from="(190,130)" to="(190,210)"/> <wire from="(160,140)" to="(160,220)"/> <wire from="(340,180)" to="(340,210)"/> <wire from="(390,140)" to="(430,140)"/> <wire from="(170,100)" to="(200,100)"/> <wire from="(130,220)" to="(160,220)"/> <wire from="(160,140)" to="(250,140)"/> <wire from="(200,100)" to="(200,200)"/> <wire from="(300,190)" to="(320,190)"/> <wire from="(220,70)" to="(220,240)"/> <wire from="(190,210)" to="(340,210)"/> <wire from="(130,130)" to="(150,130)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,70)" to="(150,70)"/> <wire from="(170,130)" to="(190,130)"/> <wire from="(220,240)" to="(300,240)"/> <wire from="(200,200)" to="(280,200)"/> <wire from="(300,190)" to="(300,240)"/> <wire from="(180,160)" to="(250,160)"/> <comp lib="0" loc="(130,220)" name="Pin"> <a name="width" val="11"/> <a name="tristate" val="false"/> <a name="label" val="Addr"/> </comp> <comp lib="0" loc="(430,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="Data_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/OE"/> </comp> <comp lib="1" loc="(170,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(170,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WE"/> </comp> <comp lib="4" loc="(390,140)" name="RAM"> <a name="addrWidth" val="11"/> <a name="bus" val="separate"/> </comp> <comp lib="1" loc="(170,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="Data_In"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CS"/> </comp> </circuit> <circuit name="LS373"> <a name="circuit" val="LS373"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="75" stroke="#000000" stroke-width="2" width="90" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="74">LE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="94">/OE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="123">val_in</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="113" y="123">val_out</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="49">LS373</text> <circ-port height="8" pin="140,60" width="8" x="46" y="66"/> <circ-port height="8" pin="140,100" width="8" x="46" y="86"/> <circ-port height="8" pin="140,170" width="8" x="46" y="116"/> <circ-port height="10" pin="410,120" width="10" x="135" y="115"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(140,100)" to="(170,100)"/> <wire from="(240,130)" to="(270,130)"/> <wire from="(190,120)" to="(280,120)"/> <wire from="(240,60)" to="(240,130)"/> <wire from="(270,150)" to="(290,150)"/> <wire from="(210,70)" to="(360,70)"/> <wire from="(140,170)" to="(190,170)"/> <wire from="(360,70)" to="(360,110)"/> <wire from="(290,140)" to="(290,150)"/> <wire from="(190,100)" to="(210,100)"/> <wire from="(270,130)" to="(270,150)"/> <wire from="(190,120)" to="(190,170)"/> <wire from="(270,130)" to="(280,130)"/> <wire from="(310,120)" to="(350,120)"/> <wire from="(370,120)" to="(410,120)"/> <wire from="(210,70)" to="(210,100)"/> <wire from="(140,60)" to="(240,60)"/> <comp lib="4" loc="(310,120)" name="Register"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(190,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,120)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(410,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="val_out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/OE"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LE"/> </comp> </circuit> <circuit name="NROM_Cartridge"> <a name="circuit" val="NROM_Cartridge"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="145" stroke="#000000" stroke-width="2" width="170" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="74">PPUData_In</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="174" y="74">PPUData_Out</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="104">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="124">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="175">PPUAddr</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="194">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="105">/VRAM_CS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="179" y="124">VRAM_A10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="134" y="43">Bomberman (U).nes CHR-ROM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="145">Mirror V</text> <circ-port height="8" pin="160,50" width="8" x="46" y="66"/> <circ-port height="8" pin="160,90" width="8" x="46" y="96"/> <circ-port height="8" pin="160,120" width="8" x="46" y="116"/> <circ-port height="8" pin="160,380" width="8" x="46" y="166"/> <circ-port height="8" pin="160,420" width="8" x="46" y="186"/> <circ-port height="10" pin="610,50" width="10" x="215" y="65"/> <circ-port height="10" pin="610,90" width="10" x="215" y="95"/> <circ-port height="10" pin="610,130" width="10" x="215" y="115"/> <circ-port height="8" pin="160,480" width="8" x="46" y="136"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(250,390)" to="(310,390)"/> <wire from="(220,90)" to="(220,220)"/> <wire from="(270,160)" to="(270,230)"/> <wire from="(530,90)" to="(530,420)"/> <wire from="(160,90)" to="(220,90)"/> <wire from="(160,380)" to="(220,380)"/> <wire from="(270,160)" to="(320,160)"/> <wire from="(380,340)" to="(430,340)"/> <wire from="(160,420)" to="(530,420)"/> <wire from="(490,50)" to="(610,50)"/> <wire from="(460,350)" to="(580,350)"/> <wire from="(380,340)" to="(380,350)"/> <wire from="(350,340)" to="(350,360)"/> <wire from="(580,130)" to="(580,350)"/> <wire from="(250,370)" to="(250,390)"/> <wire from="(310,300)" to="(310,390)"/> <wire from="(370,200)" to="(370,290)"/> <wire from="(250,340)" to="(350,340)"/> <wire from="(460,160)" to="(490,160)"/> <wire from="(220,220)" to="(310,220)"/> <wire from="(440,370)" to="(440,480)"/> <wire from="(490,50)" to="(490,160)"/> <wire from="(580,130)" to="(610,130)"/> <wire from="(160,480)" to="(440,480)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,50)" to="(180,50)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(310,280)" to="(320,280)"/> <wire from="(360,290)" to="(370,290)"/> <wire from="(240,330)" to="(250,330)"/> <wire from="(240,340)" to="(250,340)"/> <wire from="(240,290)" to="(250,290)"/> <wire from="(240,280)" to="(250,280)"/> <wire from="(240,270)" to="(250,270)"/> <wire from="(240,260)" to="(250,260)"/> <wire from="(240,240)" to="(250,240)"/> <wire from="(240,250)" to="(250,250)"/> <wire from="(240,300)" to="(250,300)"/> <wire from="(240,320)" to="(250,320)"/> <wire from="(240,310)" to="(250,310)"/> <wire from="(240,350)" to="(250,350)"/> <wire from="(240,360)" to="(250,360)"/> <wire from="(240,370)" to="(250,370)"/> <wire from="(350,360)" to="(430,360)"/> <wire from="(530,90)" to="(610,90)"/> <wire from="(310,220)" to="(310,280)"/> <wire from="(250,350)" to="(380,350)"/> <comp lib="0" loc="(160,50)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="PPUData_In"/> </comp> <comp lib="0" loc="(160,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WR"/> </comp> <comp lib="0" loc="(160,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA13"/> </comp> <comp lib="0" loc="(160,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V_Mirroring"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RD"/> </comp> <comp lib="6" loc="(444,216)" name="Text"> <a name="text" val="CHR-ROM (0x2000 bytes)"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="width" val="14"/> <a name="tristate" val="false"/> <a name="label" val="PPUAddr"/> </comp> <comp lib="0" loc="(220,380)" name="Splitter"> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="6" loc="(195,124)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="4" loc="(460,160)" name="ROM"> <a name="addrWidth" val="13"/> <a name="contents">addr/data: 13 8 3 f 1f 1f 1c 24 26 66 4*0 1f 3f 3f 7f e0 c0 80 fc 80 c0 0 20 0 20 60 0 f0 fc fe fe 60 70 18 7 f 1f 3f 7f 7f 7f 1f 7 0 1e 3f 7f fc 7c 0 0 e0 f0 f8 f8 fc fc f8 c0 c2 67 2f 37 7f 7f ff ff 7 7 f f 7f 7e fc f0 f8 f8 f0 70 fd fe b4 f8 f8 f9 fb ff 37 36 5c 0 0 1 3 1f 1f 3f ff ff fc 70 70 38 8 24 e3 f0 f8 70 70 38 ff ff ff 1f 4*0 4*1f 6*0 1 7 f f e 12 6*0 f 1f 0 0 f0 e0 c0 fe 40 60 0 0 0 10 30 0 f8 fe 13 33 30 18 4 f 1f 1f 1f 3f 3f 1f 7 8 17 17 0 10 7e 3e 0 0 c0 e0 ff ff fe fe fc e0 40 a0 3f 3f 3f 5*1f 37 27 23 3 1 0 0 0 f0 f0 f0 5*f8 cc 4*ff 70 0 8 ff ff ff fe f0 c0 80 0 5*f0 c0 80 0 fc fc f8 78 78 78 7e 7e 10 60 80 0 78 78 7e 7e 0 3 f 1f 1f 1c 24 26 5*0 1f 3f 3f 0 e0 c0 80 fc 80 c0 0 0 0 20 60 0 f0 fc fe 66 60 30 18 f 1f 3f 3f 7f 7f 3f 1f 0 16 2f 2f 20 fc 7c 0 0 e0 e0 f0 fe fc fc f8 c0 60 20 30 7*3f 1f 2f 2f 2f f 7 3 0 0 f0 90 0 8 c 1c fc f8 10 4*f0 e0 c0 e0 f f 7 7 7 f f 3 1 3 1 4 7 f f 3 f8 f0 e0 f0 b0 80 e0 e0 f8 f0 e0 70 b0 80 e0 e0 3 3f 7f 19 9 9 28 5c 0 30 70 7f ff ff f7 f3 f8 e0 e0 fc 26 30 80 10 0 18 10 0 f8 f8 fe ff 3e 1e 3f 38 30 30 0 3a e7 f f 1f 1f 1f f 7 78 1e 80 fe 7e 7e 7f 7f ff fe fc c6 8e ee ff ff 3c 3f 1f f 7 3f 21 20 3 0 0 e 7 3f 3f 3f ff ff ff fe fe fe fc 70 ff 7f 3f e c0 c0 e0 e0 f 9f cf ff 7f 3f 1e e 0 80 c8 fe 7f 3f 1e e 20 c0 80 80 4*0 e0 9*0 3 f 1f 1f 1c 24 6*0 1f 3f 0 4 e6 e0 ff ff 8f 83 e 4*1f 3 ff ff 26 26 60 78 18 f 7f ff 3f 3f 7f 7f 1f 0 7e ff 1 21 fe 7a 6 fe fc fc ff ff fe fe fe de 5c 6c ff cf 87 7 7 f 1f 1f ff ff fe fc f8 b0 60 0 f8 f8 f0 b8 f8 f9 fb ff 28 30 18 40 0 1 3 f 1f 4*ff fe c0 80 10 ec e3 e0 e0 e0 c0 80 ff ff ff 3f 4*0 4*f 4*0 13 33 30 18 4 f 1f 1f 1f 3f 3f 1f 7 9 13 17 0 10 7e 30 e0 f0 f0 e0 ff ff fe ff fe fc f8 e0 1f 1f f f f 1f 1f 1f 17 17 3 5*0 f0 f0 f8 f8 b8 f8 f8 f8 d0 90 18 8 40 0 0 0 3f ff ff ff f6 c6 84 0 30 f0 f0 f1 f6 c6 84 0 f0 e0 80 13*0 1f 1f 3f 3f 1f f f 1f 1f 1f 3f 3e 7c 78 f0 e0 f0 f0 f8 f8 b8 f8 f8 f0 b0 90 18 8 40 0 0 0 e0 5*f0 f8 f0 c0 e0 fc fe ff 7f 3 0 1f 1f 1f 3f 3e 3c 38 18 0 0 10 38 3e 3c 38 18 0 3 7 7 a b c 4*0 7 f f f 3 0 e0 fc 20 20 10 3c 4*0 f0 fc fe fc f8 7 7 7 1f 1f 3e 21 1 7 f 1b 18 10 30 21 1 e0 e0 e0 f0 f0 e0 c0 e0 a8 fc f8 0 0 0 c0 e0 7 f e 14 16 18 0 3f 0 0 f 1f 1f 1f 7 3c c0 f8 40 40 20 78 0 c0 0 0 e0 f8 fc f8 f0 c0 3f e f 1f 3f 7c 70 38 fc ed c0 0 0 60 70 38 f0 f8 e4 fc fc 7c 0 0 7e 1e 4 c c c 0 0 7 f e 14 16 18 0 f 0 0 f 1f 1f 1f 7 d 1f 1f 1f 1c c 7 7 7 1e 1c 1e f 7 0 7 7 e0 60 f0 70 e0 e0 f0 80 60 90 0 80 0 e0 f0 80 7 1f 3f 12 13 8 1f 31 0 10 3f 7f 7f 3f 3 f c0 f0 40 0 30 18 c0 f8 0 0 e0 f8 fc f8 b0 38 31 39 1f 1f f 5f 7e 3c 1f 7 0 e f 53 7c 3c f8 f8 f0 e0 e0 c0 0 0 f8 f8 f0 0 0 80 0 0 0 e0 fc 27 27 11 3e 4 7 7 3 f7 ff ff fe fc 3f 7f 3f f 1f 3f 7f 4f 3e 7f ff e2 50 38 70 40 f8 f9 f9 b7 ff ff e0 0 e8 71 1 4b 3 3 0 0 7 7 f 3f 3f 3f 26 4 5 3 1 30 30 30 26 4 f0 f0 f0 e0 c0 0 0 0 fe fc e0 5*0 7 7 f 1f 3f f 1c 18 5 3 1 10 30 c 1c 18 4*e0 c0 80 0 0 c0 e0 f0 78 18 8 0 0 7 f 1f f 3f f 1c 18 7 f 3e 7c 30 c 1c 18 e0 e0 e0 40 c0 80 0 0 60 60 60 80 4*0 7f ff ff fb f f f 1f 73 f3 f0 f4 f0 f0 70 60 3f 7e 7c 7c 3c 3c fc fc 4*0 3c 3c fc fc 60 70 18 8 f 1f 3f 7f 7f 7f 1f 7 b 1b 3b 7b fc 7c 0 20 f0 f8 fc fe fc fc f8 e0 d0 d8 dc de b f 1f 1e 3c 3c 3c 7c c4 e0 e0 40 0 3c 3c 7c 1f 3f d 7 f e 1c 3c 1d 3c 3a 38 30 0 1c 3c 8*0 22 5*55 77 22 0 7 1f ff 7 1f f 6 8*0 3f 5*ff fb 76 0 0 cf 7 7f 0 0 0 20 f8 ff c3 fd fe f0 40 0 0 3c fc fe e0 0 0 40 e0 40 40 41 41 4f 47 40 e0 40 3f 3e 3e 30 38 6*0 e0 c0 0 0 0 f8 f8 f8 18 38 43 46 44 5*40 3c 39 3b 3f 4*0 80 c0 40 5*0 78 38 b8 f8 4*0 31 30 38 7c 7f ff ff fb 3f 3f f 77 77 f7 f7 f7 10 7e 3e 0 1e fe ff ff ff fe fe fe fa fa f3 e7 ff ff e3 c3 87 48 3c fc f0 f8 fc 7c 78 38 3c fc 0 ff c3 83 83 4*ff 0 c3 81 81 c3 ff 0 1f 1f f 7 1 11*0 f0 fb ff ff fe 3e c 4 0 b 1f 1f 1e 3e c 4 1f 1f f f 7 11*0 fb 4*ff 0 0 0 3 4*f 4*0 18 3c 7e 6e df df df 0 18 3c 7e 76 fb fb fb 0 18 18 4*3c 1c 0 10 10 5*20 0 6*8 0 0 7*8 0 8 8 5*4 0 10 10 5*38 3c 7e 77 fb 9f 5f 8e 20 0 18 3c e e 4 0 0 5c 2e 8f 3f 7b 77 7e 3c 0 0 4 6 1e 3c 18 0 13 4f 3f bf 3f 7a f8 f8 0 0 1 a 17 f 2f 1f 0 8 5 f 2f 1d 1c 3c 4*0 5 7 f 7 4*0 2 b 7 f 6*0 1 3 5*0 8 4 4 0 60 f0 f8 7c 3e 7e 7f 2 2 2 5 71 7f 7f 7f 3f 5f 7f 3e e a 51 20 7*0 4 6*0 e 1f 2 2 0 1 13 3f 7f 7f 3f 7f 7f fe ec ca 51 20 0 40 60 70 73 27 f 1f 0 40 63 77 7c 38 f8 e4 4*0 3 7 f 1f 0 0 3 7 c 18 f8 e4 7f 7f 3f 3f 1f 1f f 7 3 44 28 10 8 4 3 4 3 7 f 1f 3f 77 77 f5 3 7 f 1f 27 7b 78 fb c0 e0 f0 f8 fc ee ee af c0 e0 f0 f8 e4 de 1e df f1 ff 78 0 0 18 1c e ff ff 7f f f 7 3 0 8f ff 1e 0 c 3e 7e 7c ff ff fe f0 f0 c0 80 11*0 18 24 24 18 0 0 0 2 41 41 61 33 6 3c 3c 7e 4*ff 7e 3c 3 7 f 1f 3f 7f 7f ff 3 7 f 1f 3f 63 41 c1 c0 e0 f0 f8 fc fe fe ff c0 80 0 0 8c fe fe f3 ff ff ff 78 4*0 c1 e3 ff 47 f f f 7 ff ff ff 1e 0 20 20 40 f1 f9 ff e2 f0 f0 f0 e0 16 1f 3f 7f 3d 1d 3f 1f 16 1f 0 0 5 d 3f 1f 80 80 c0 e0 f0 f0 f0 f8 80 80 0 0 0 a0 a0 e0 3c fa b1 72 f2 db df 5f 0 4 4e 8c c 7f ff ff 0 0 0 1 1 1 6 1e 6*0 1 1 8*0 ff 7f 3f 1f f 7 3 1 0 7c d6 92 ba ee fe 38 ff 83 29 6d 45 11 1 c7 0 15 3f 62 5f ff 9f 7d 8 8 2 1f 22 2 2 9*0 8*8 2f 1e 2f 2f 2f 15 d e 10 1e 10 50 10 8 13*0 fe 4*0 1c 3e 7f ff ff fe 7c 38 1c 2a 77 ee dd aa 74 28 0 8*ff fe fe 0 ef ef ef 0 8*ff fe fe fe 0 ef ef ef 0 7f 7*ff 0 7f 5f 5*7f 68 4e e0 e0 e0 f0 f8 fc b8 9e 80 c0 e0 f0 f8 7c 3f 5c 39 3b bb f9 fc fe 0 23 57 4f 57 27 c3 21 c0 4*f0 e0 c0 0 0 30 70 70 f0 e0 c0 0 fe fc 61 f ff fe f0 e0 13 f 1e f0 fc f8 f0 e0 6e 40 5*e0 c0 be 90 80 c0 c0 80 0 0 1 1 3 3 7 7f 7f 3f 1 1 3 3 7 7f 7d 3d 6 7 3f 3c 19 7b 7f 3f 6 4 30 23 6 64 60 0 3f 7f 7f 1f 3f 3f 7 6 0 60 60 0 20 30 4 6 3 7 4*f 7 3 0 1 1 5*0 f8 f8 f8 a0 e1 ff ff ff fe ff ff 40 1 3 3 3 f f f 1f 1f 1f f 7 1 1 6*0 e0 f8 f8 f8 ff fe f0 c0 e0 fe ff 7f 3 2 0 0 1 f f 1f 39 33 37 7f 1 d 8 0 36 2c 8 60 7f 3f 3f 3f 1f f f 1 60 0 20 30 0 8 d 1 0 0 3 3 47 67 77 77 1 1 3 43 67 77 7b 78 4*0 88 98 f8 f0 0 0 80 84 cc dc bc 3c 7e 7f ff 1f 7 30 1c c 33 7 7 e3 38 3f 1c c 7e 38 f6 ed df 38 70 60 98 c7 c8 92 30 f8 70 60 0 0 0 3 3 47 67 77 0 1 1 3 43 67 77 7b 5*0 88 98 f8 0 0 0 80 84 cc dc bc 77 7e 7f ff 1f 7 70 f0 78 33 7 7 e3 38 7f f0 f0 7e 38 f6 ed df 38 3c 3c 98 c7 c8 92 30 f8 3c 3 7 a 1a 1c 1e b 8 0 10 7f 7f 7f 1f f f 1c 3f 3f 3d 3f 1f 0 0 3 33 39 3a 38 18 4*0 4 4c 4e 4e 46 6f 10 38 3c 74 76 76 7e 7d 0 1f 3f 3f 4f 5f 7f 7f 0 0 11 a 34 2a 51 20 7f 67 a3 b0 d8 de dc c8 7f 67 63 70 38 3e 7c b8 7f 7f 7f 1f 47 70 70 39 51 a 4 ea 79 7f 70 39 e8 e8 e0 c0 10 70 e0 c0 58 38 10 30 f0 f0 e0 c0 0 0 0 20 66 66 66 62 0 8 1c 3c 7a 7a 7a 7e 0 0 1f 3f 7f 4f 5f 7f 0 0 0 11 a 34 2a 51 77 7f 3f b7 b3 db da d8 7f 7d 3f 37 33 3b 3a 78 4*7f 1f 7 70 f0 20 51 a 4 ea 39 7f f0 cc e8 e8 e0 c0 18 7c 3e bc 58 38 10 30 f8 fc 3e 3 f 1f 3f 3b 3f 7f 7f 0 0 0 6 e c 0 0 80 f0 f8 fc fe fe ff fe 6*0 f 18 4*7f ff f 3 5*0 f8 3e 3b 18 fe fb ff ff f6 e0 c0 0 10 14 10 10 38 78 f8 30 0 3 f 1f 3f 3b 3f 7f 4*0 6 e c 0 0 c0 f0 f8 fc fe fe ff 7*0 f 5*7f ff f 3 5*0 f8 7e f3 fe fe fb ff ff f6 e0 c0 18 10 14 10 10 38 7c de 0 4*1 0 0 8 0 d 1e 1e 1e 1f f 7 78 f0 f8 e4 c0 ca ca c0 78 f0 0 1a 3f 35 35 3f f 1f 9f ff ff 7f 74 20 0 0 80 e0 e0 70 73 21 e4 ff fe fc 9c 1e 0 0 1a 7 c 18 78 fe fc f0 0 1 3 3 7 3 1 0 0 1 2 0 38 7c 7e 3f 0 5f 7f 7f 3f 3f 14 0 3f 40 60 60 20 30 13 1 c0 e0 f0 30 38 3c 3c fc c0 e0 30 4*d0 0 7 f 1f 22 20 25 25 1f 7 f 2 1d 1f 1a 1a 2 fe fe 7e 3a 2 1 41 41 38 7c fc fc fc fe be be 1f 3f 7e 5c 40 80 82 82 1c 3e 3f 3f 3f 7f 7d 7d 82 80 a0 44 43 40 21 1e 7d 7f 5f 3b 3c 3f 1e 0 1c 3f 3e 3c 40 80 82 82 1c 3e 3f 1f 3f 7f 7d 7d 0 0 80 80 92 9d c7 ef 0 0 0 60 62 65 3f 1f 0 23 33 3f 3f 7f 7f 7f 70 3c 3c 18 0 0 2 7 fe f8 a0 0 0 0 80 80 cf 7a 5a 10 0 0 c0 80 7e 7f 7d 3f 1e 8f 8f 19 85 84 86 c6 e7 73 73 e1 e0 e 73 f3 f9 f9 f8 70 80 4e 77 f3 fb f9 fa 78 e 66 e2 f6 ff ff 1f 98 11 39 7d 39 0 0 e0 e7 0 0 0 4 f f 1f 7 0 0 7 7 16 10 0 38 f3 e7 ee ec cd cf cf df cf 1f 17 10 33 30 30 20 27 3f 3f 78 3c 1f 1f 73 38 30 40 c7 7 66 e0 6c 9f 3e 7c fc f8 f8 c0 40 60 c0 80 4 9e ff f0 f8 7f 7e 78 1 7 1f 3c 7c 24 1 7 fe ff 7f 3f 7f fc f8 a0 fe fc f0 80 0 cf 7a a fe fc 0 0 0 7e 7f 7f 3f 1f 8f 8f 18 85 86 83 c3 e1 70 70 e0 9f 3e 7c f8 f8 3c 18 f8 60 c0 80 0 98 fc fe ff 7f 7f 78 1 7 13 f1 3 24 0 7 fe ff 7f ff 3 0 0 1c 1d 1b c3 e3 e1 3 f 23 62 64 3c 1c 1e e0 cd 1d 4f ee ff 3f 3f 1f 3d 6d 4f ee f3 20 3 3f 3f 0 0 70 b8 fc fc 7 7 1f 3f f 47 3 0 7 f 1f 3f 3e 7c 78 78 0 0 3 7 f f 1f 1f 3f 5c 39 3b bf ff fe fe 0 23 57 4f 57 2f df 21 c0 c0 4*80 6*0 80 80 0 0 fe fc 61 f 7f 3f 1f 1e 23 f 1e f0 1c 3f 1f 1e f0 78 e4 c8 cc be be 3e 0 80 18 30 34 fe fe fe 0 1 0 4*7 1f 0 0 1 4 6 6 7 7 0 0 f 3f 3f f 0 0 f 3f 7f f8 f8 7f 3f f 78 7c 7e 7f 3f 3f 1b 9 1f 1f 1f b 1 1 0 0 c 0 0 0 7 7f 7c 0 3 1f 3f 3f 78 0 3 ff 1 e1 71 79 3d 3d 1f 3 8*0 3f 3f 1f 1b 36 30 7f 3f 23 27 1f 7 f 1f 7f 3f f8 f8 f8 b8 18 d8 d8 b8 e0 80 80 40 e0 e0 e0 c0 1 2 4 4 8 8 10 10 3 7 f 1f 3f 7f ff 1f 0 f 13 d d 13 c 20 1f 10 c 12 12 2c 3f 3f 0 24 0 24 0 4 0 0 37 36 36 36 16 16 12 2 f 41 0 88 0 44 0 0 10 7e ff ff f6 76 3a 1a 38 7c fe fe 3b 3 3 3 0 0 38 4 4*0 3 33 7b 7f ff fb 3 3 0 0 0 38 40 0 0 0 dc c0 5*e0 c0 fc a0 80 80 4*0 3f 5f 3f 3f bb f8 fe fe 7 27 57 4f 57 27 c1 21 1f f f 1f 1f 1e 38 30 1d f f 1f 1f 1e 38 30 0 20 60 60 70 f0 f8 f8 0 0 38 10 4c 18 86 24 f8 fc fc 7e 7e 3e 1f 7 0 42 a 40 10 2 8 2 0 c0 70 b8 f4 f2 f5 7b 0 0 80 40 8 c a 84 0 df 10 ff df ff ff f9 0 0 cf 20 20 20 26 2e 1f 1f 3e fc f8 f0 c0 0 e0 e0 c0 5*0 f8 fc fe ff ff df df 0 2f 23 21 20 20 0 0 0 c1 f1 79 7d 3d 3f 1f 3 c1 b1 59 6d 35 3b 1f 3 2 6 e e 1e 1e 3e 3e 0 2 0 8 2 0 28 0 4*3e 1e 1e e 2 4 10 2 10 4 0 a 0 c1 f1 79 7d 3d 3f 1f 3 c1 b1 59 6d 35 3b 1f 3 7c 0 0 ff c3 7f 1f 3 0 f 1f ff fc 63 1f 3 ff ff 7c 0 0 7c ff ff 0 0 fe c6 c6 fe 0 0 ff ff 0 4 c 18 30 0 0 0 6 6 c 18 70 60 ff ff 0 4 4 4 8 8 0 0 6 6 4 4 8 8 8 10 10 0 0 10 10 8 8 10 4*30 10 8 7f 3f 3f 3e 1f f 3 0 0 0 1 3 1 0 0 0 3 f ff 5*7f 3 e f8 13*0 22 65 4*25 77 72 8*0 62 95 15 25 45 85 f7 f2 8*0 a2 a5 a5 a5 f5 f5 27 22 8*0 f2 85 85 e5 15 15 f7 e2 8*0 62 95 55 65 b5 95 97 62 8*0 20 5*50 70 20 24*0 66 e6 66 66 66 67 f3 9*0 5e 59 59 59 5e d8 98 6*0 7c 38 6*0 4 8 0 38 4c c6 c6 c6 64 38 9*0 18 38 4*18 7e 9*0 7c c6 e 3c 78 e0 fe 9*0 7e c 18 3c 6 c6 7c 9*0 1c 3c 6c cc fe c c 9*0 fc c0 fc 6 6 c6 7c 9*0 3c 60 c0 fc c6 c6 7c 9*0 fe c6 c 18 30 30 30 9*0 7c c6 c6 7c c6 c6 7c 9*0 7c c6 c6 7e 6 c 78 9*0 38 6c c6 c6 fe c6 c6 9*0 fc c6 c6 fc c6 c6 fc 9*0 3c 66 c0 c0 c0 66 3c 9*0 f8 cc c6 c6 c6 cc f8 9*0 fe c0 c0 fc c0 c0 fe 9*0 fe c0 c0 fc c0 c0 c0 9*0 3e 60 c0 ce c6 66 3e 9*0 c6 c6 c6 fe c6 c6 c6 9*0 7e 5*18 7e 9*0 1e 6 6 6 c6 c6 7c 9*0 c6 cc d8 f0 f8 dc ce 9*0 6*60 7e 9*0 c6 ee fe fe d6 c6 c6 9*0 c6 e6 f6 fe de ce c6 9*0 7c 5*c6 7c 9*0 fc c6 c6 c6 fc c0 c0 9*0 7c c6 c6 c6 de cc 7a 9*0 fc c6 c6 ce f8 dc ce 9*0 78 cc c0 7c 6 c6 7c 9*0 7e 6*18 9*0 6*c6 7c 9*0 c6 c6 c6 ee 7c 38 10 9*0 c6 c6 d6 fe fe ee c6 9*0 c6 ee 7c 38 7c ee c6 9*0 66 66 66 3c 18 18 18 9*0 fe e 1c 38 70 e0 fe 25*0 8*ff 16*0 24*ff 0 0 0 7e 7e 13*0 44 28 10 28 44 9*0 8*ff 8*7f 18 3c 3c 3c 18 18 0 18 8*0 ff 4*7f ff e3 c1 ff 4*80 0 1c 3e 80 80 80 c1 e3 ff ff ff 7f 7f 7f 3e 1c 0 0 ff 38 5*7c 38 0 8 5*4 8 0 3 6 c c 8 8 4 3 3 5 b b f f 7 3 1 2 4 8 10 20 40 80 1 3 7 f 1f 3f 7f ff 5*0 7 38 c0 5*0 7 3f ff 5*0 e0 1c 3 5*0 e0 fc ff 80 40 20 10 8 4 2 1 80 c0 e0 f0 f8 fc fe ff 4 e e e 6e 64 60 60 8*ff 7 f 1f 1f 7f ff ff 7f 7 8 10 0 60 80 80 40 3 7 1f 3f 3f 3f 79 f7 3 4 18 20 20 20 46 88 c0 e0 f0 f4 fe bf df ff c0 20 10 14 a 41 21 1 90 b8 f8 fa ff ff ff fe 90 a8 48 a 5 1 1 2 3b 1d e f 7 0 0 0 24 12 9 8 7 0 0 0 ff bf 1c c0 f3 ff 7e 1c 0 40 e3 3f c 81 62 1c bf 7f 3d 83 c7 ff ff 3c 40 80 c2 7c 38 0 c3 3c fc fe ff fe fe f8 60 0 4 2 1 0 6 98 60 0 c0 20 4*10 20 c0 c0 e0 4*f0 e0 c0 4*0 3f 7f e0 c0 6*0 1c 3e 88 9c 88 5*80 7f 7f 7f 3e 1c 0 0 0 8*fe 8*ff 8 14 24 c4 3 40 a1 26 0 8 18 38 fc bf 5e d9 4*ff 4*7f 8*81 8*ff 8*1 7f 80 80 98 9c 8c 80 80 0 7f 7f 67 67 7f 7f 7f ff 1 1 ff 10 10 10 ff 0 7*ff 8*80 8*7f 1 1 1 ff 10 10 10 10*ff 8*0 7*ff fe 1 1 19 1d d 1 1 0 ff ff e7 e7 ff ff ff 8*1 8*ff 3f 7f 7f 5*ff 3f 60 40 c0 4*80 6*ff 7e 3c 5*80 81 42 3c 9*ff 7*0 6*ff fe 7c 5*0 1 82 7c 6*ff fe 7c 5*0 1 83 ff f8 fc fe fe 4*ff f8 4 2 2 4*1 6*ff 7e 3c 5*1 81 42 3c 0 8 8 8 10 10 10 0 8*ff 0 7f 7f 78 73 73 73 7f 7f 80 a0 87 8f 8e 8e 86 0 ff ff 3f 9f 9f 9f 1f fe 1 5 c1 e1 71 71 f1 7e 7e 7f 7e 7e 7f 7f ff 81 81 80 81 81 a0 80 ff 7f 7f ff 7f 7f ff ff ff f1 c1 c1 81 c1 c5 1 ff 7f 80 a0 5*80 7f 7*ff fe 1 5 5*1 fe 7*ff 5*80 a0 80 7f 7*ff 7f 5*1 5 1 fe 7*ff fe 4*0 fc fe 7 3 6*0 38 7c 11 39 11 5*1 fe fe fe 7c 38 0 0 0 ef 5*28 ef 0 20 5*e7 ef 0 fe 5*82 fe 0 2 5*7e fe 0 80 80 80 98 9c 8c 80 4*7f 67 67 7f 7f 7f ff ff 83 5*f3 ff 80 fc 5*8c ff ff f0 5*f6 ff 0 f 5*9 ff ff 6*0 ff 0 8*ff 1 57 2f 57 2f 57 ff 1 ff a9 d1 a9 d1 a9 6*f3 ff 3f 6*8c ff 3f 6*f6 ff ff 6*9 ff ff 6*0 10*ff 2f 57 2f 57 2f 57 ff fc d1 a9 d1 a9 d1 a9 ff fc 8*3c 8*23 8*fb 8*4 bc 5c bc 5c bc 5c bc 5c 44 a4 44 a4 44 a4 44 a4 1f 20 40 40 80 80 80 81 1f 3f 7f 7f ff ff ff fe ff 80 80 c0 ff ff fe fe ff 7f 7f 3f 0 0 1 1 ff 7f 7f ff ff 7 3 3 ff 80 80 0 0 f8 fc fc ff 4*0 81 c3 6*ff 7e 3c 0 f8 fc fe fe e3 c1 81 81 f8 4 2 2 1d 3f 7f 7f 83 5*ff 7f 1f fc 5*80 60 1f 4*fc fe fe ff ff 4*3 1 1 0 ff 4*1 3 3 7 ff 4*fe fc fc f8 9*ff 7*0 ff 81 c1 e3 4*ff fe 7f 3f 1d 1 1 1 3 fe 5*ff fb b5 ce 5*80 84 ca b1 5*ff df ad 73 5*1 21 53 8d 8*77 4*0 77 ff ff ff 7*0 9*ff 4*77 4*0 ff ff ff 5*77 1 1 1 19 1d d 1 fe ff ff ff e7 e7 ff ff fe 20 78 7f 5*fe 0 21 21 5*41 4 9a fa 5*fd 0 7*80 7e 38 21 0 1 0 1 0 21 21 6*1 fa 8a 84 13*80 2 4 0 10 0 40 80 0 1 1 6 8 18 20 20 c0 b b 3b b fb b b a 4 4 c4 f4 f4 4 4 5 90 10 1f 10 1f 10 10 90 70 f0 f0 ff ff f0 f0 70 3f 78 e7 cf 58 58 50 90 c0 87 18 b0 e7 e7 ef ef b0 fc e2 c1 c1 83 8f 7e 6f 43 5d 3f 3f 7f 7f ff fe 3 f 91 70 60 20 31 3 ff f1 6e cf df ff ff 3f 3f 1d 39 7b f3 86 fe fd fb fb f7 f7 f 7f 6*ff 80 80 ff ff 4*80 ff ff 80 fe 4*ff 3 3 ff fe 4*3 ff ff 3 0 5*ff 0 0 0 ff 4*0 ff ff 3c 5*fc 4 4 23 f3 b b b 7 6*ff 80 ff ff ff 4*80 ff 80 80 80 4*ff 3 ff ff ff 4*3 ff 3 3 3 5*ff 0 ff ff 5*0 ff 0 0 fc fc fe fe fe 2 fe fe 7 7 3 3 3 ff 3 3 ff 8*80 8*ff 8*3 7*ff 6*2 4 4 8*ff 80 80 aa d5 aa 5*ff d5 aa d5 80 80 ff 3 3 ab 57 ab ff ff fe ff ff 57 ab 57 3 3 fe 0 55 aa 55 ff ff ff 0 ff aa 55 aa 0 0 ff 0 4 54 ac 5c fc fc fc 3c ff af 57 ab b b f3 23 4*3f 0 0 0 9*ff 7e 7c 7c 78 0 0 0 9*ff 1f f f 7 0 0 0 9*ff fe fc fc f8 0 0 0 9*ff 4*0 ff ff 10*0 8*18 8*0 7 1f 3f ff 7f 7f 10*ff e1 f9 fd ff fe fe 10*ff f0 6*10 ff 0 7*e0 1f 6*10 ff 0 7*f 92 92 92 fe fe 0 0 0 48 48 6c 0 0 0 fe 0 a a 3a a fb b b b 5 5 c5 f5 f4 4 4 4 90 90 9f 90 9f 90 90 90 70 70 70 7f 7f 70 70 70 8*1 8*0 8*80 8*0 8 88 91 d1 53 53 73 3f 5*ff fe be ce 0 0 7 f c 1b 1b 1b 4*0 3 4 4 4 0 0 e0 f0 f0 f8 f8 f8 0 0 60 30 30 98 98 98 5*1b f f 7 5*4 3 0 0 5*f8 f0 f0 e0 5*98 30 30 60 f1 11 11 1f 10 10 10 ff f 6*ef e0 1f 10 10 f0 10 10 10 ff e0 6*ef f 7f bf df ef 4*f0 80 40 20 10 4*f 4*f0 4*ff 4*f 1f 3f 7f 5*ff 4*f 1 3 7 f 4*ff 4*f f7 fb fd fe 8*ff 6*0 18 18 8*0 1f 3f 7f 7f 7f ff ff ff 1f 20 40 40 40 80 82 82 ff ff ff 7f 7f 7f 3f 1e 82 80 a0 44 43 40 21 1e f8 fc fe fe fe ff ff ff f8 4 2 2 2 1 41 41 ff ff ff fe fe fe fc 78 41 1 5 22 c2 2 84 78 7f 8*80 7*7f de 61 61 61 71 5e 7f 61 61 4*df ff c1 df 80 80 c0 f0 bf 8f 81 7e 7f 7f ff 3f 4f 71 7f ff 61 61 c1 c1 81 81 83 fe df df bf bf 4*7f 0 0 3 f 1f 3f 7f 7f 0 0 3 c 10 20 40 40 0 0 c0 f0 f8 fc fe fe 0 0 c0 30 8 4 2 2 8*ff 8*80 8*ff 8*1 7f 7f 7f 3f 3f 1f f 7 40 40 40 20 30 1c f 7 fe fe fe fc fc f8 f0 f0 2 2 2 4 c 38 f0 f0 6*f 7 f 5*8 c 5 a 6*f0 e0 f0 10 4*50 30 a0 50 81 c1 a3 a3 9d 81 81 81 0 41 22 22 1c 0 0 0 e3 f7 4*c1 f7 e3 e3 14 4*3e 14 e3 0 0 7 f c 1b 1b 1b ff ff f8 f0 f0 e0 e0 e0 0 0 e0 f0 f0 f8 f8 f8 ff ff 7f 3f 3f 9f 9f 9f 5*1b f f 7 5*e0 f3 f0 6*f8 f0 f0 e0 5*9f 3f 3f 7f e0 7*ff 0 70 1f 10 70 7f 7f 7f 7 7*ff 0 3 f8 0 3 fb fb fb 5*ff fe ff ef 7c 7b 76 75 75 77 17 67 ff df ef af af 6f ef e7 3b fb 7b fb fb f3 f8 f3 1f 1f 3f 3f 70 63 e7 e5 f f 1f 1f 3f 3c 78 7a f0 f0 f8 f8 c c4 e4 a6 f8 f8 fc fc fe 3e 1e 5f e9 e9 e9 ef e2 e3 f0 ff 76 76 76 70 7d 7c 7f 7f 96 96 96 f6 46 c6 e fe 6f 6f 6f f bf 3f ff ff 6*0 7e 3c 3c 7e 7e ff ff ff 42 0 3c 42 99 a1 a1 99 42 3c 8*0 f 1f 1f 3f 3f 7f 7f 7f f0 e0 e0 c0 c0 80 80 80 f0 f8 f8 fc fc fe fe fe f 7 7 3 3 1 1 1 7f 7f 4*3f 1f 1f 80 80 c0 c0 e0 f8 fe ff fe ff ff ff fc fc fe fe ff 7f 1f 7 3 3 1 81 7f 7f 7f 4*3f 1f 80 80 80 c0 c0 e0 e0 f0 fe fe 5*ff fe 1 1 1 3 3 7 7 f 1f f f 7 4*0 8*ff fe fc fc f8 4*0 8*ff 4*7e 4*7f 8*81 7*ff fe 1 1 1 3 3 7 7 f 4*fe 4*ff 8*1 8*7f 8*81 4*ff fc fe fe 7e ff 6*3 5*ff 4*0 8*ff 8*7f 8*80 7*ff fe 1 1 1 3 7 3 1 1 7e 7e 6*7f 8*81 4*3f 4*0 8*ff 7e 7c 7c 78 4*0 8*ff fe fe ff ff 4*7f 8*81 7f 7f 4*3f 1f 1f 80 80 c0 c0 e0 f8 fe ff 3f bf ff ff fc fc fe fe ff 7f 1f 7 3 3 1 81 7f 7f 7e 7e 4*7f 8*81 4*7e 4*7f 9*81 c3 c3 e7 e7 ff ff ff 7e 3c 3c 18 18 0 0 0 f 43 5b 53 31 19 f 7 f2 fe fe ff ff ef f7 f8 c1 c3 c6 84 fc fc e 2 bf be bd 7b 7b 7 f3 fd 10 20 22 ba e6 e1 c0 c0 ff ff ff 67 59 9e bf bf 20 a6 54 26 20 c6 54 26 20 e6 54 26 21 6 54 26 20 85 1 44 20 86 54 48 20 9a 1 49 20 a5 c9 46 20 ba c9 4a 20 a6 a d0 d1 d8 d8 de d1 d0 da de d1 20 c6 a d2 d3 db db db d9 db dc db df 20 e6 a d4 d5 d4 d9 db e2 d4 da db e0 21 6 a d6 d7 d6 d7 e1 26 d6 dd e1 e1 21 26 14 d0 e8 d1 d0 d1 de d1 d8 d0 d1 26 de d1 de d1 d0 d1 d0 d1 26 21 46 14 db 42 42 db 42 db 42 db db 42 26 db 42 db 42 db 42 db 42 26 21 66 46 db 21 6c e df db db db 26 db df db df db db e4 e5 26 21 86 14 db db db de 43 db e0 db db db 26 db e3 db e0 db db e6 e3 26 21 a6 14 4*db 42 db db db d4 d9 26 db d9 db db d4 d9 d4 d9 e7 21 c5 16 5f 8*95 97 98 78 95 96 95 95 97 98 97 98 95 7a 21 ed e cf 1 9 8 5 24 17 12 17 1d e 17 d 18 22 4b d 1 24 19 15 a 22 e 1b 24 10 a 16 e 22 8b d 2 24 19 15 a 22 e 1b 24 10 a 16 e 22 ec 4 1d 18 19 28 22 f6 1 0 23 c9 56 55 23 e2 4 99 aa aa aa 23 ea 4 99 aa aa aa 0 15*ff </a> </comp> <comp lib="1" loc="(360,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(460,350)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(610,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/VRAM_CS"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(377,73)" name="Text"> <a name="text" val="Simple NROM cartridge (without PRG)"/> </comp> <comp lib="6" loc="(253,472)" name="Text"> <a name="text" val="1: V-Mirroring, 0: H-Mirroring"/> </comp> <comp lib="0" loc="(610,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="PPUData_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(197,55)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="0" loc="(610,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="VRAM_A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(270,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> </circuit> <circuit name="VideoDumper"> <a name="circuit" val="VideoDumper"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="70" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="65">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="94">VIDEO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="41">VideoDumper</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="74">ADDR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="127" y="94">DATA</text> <circ-port height="8" pin="160,100" width="8" x="46" y="56"/> <circ-port height="8" pin="140,170" width="8" x="46" y="86"/> <circ-port height="10" pin="890,110" width="10" x="145" y="65"/> <circ-port height="10" pin="890,250" width="10" x="145" y="85"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(680,880)" to="(680,890)"/> <wire from="(320,100)" to="(320,240)"/> <wire from="(120,400)" to="(120,410)"/> <wire from="(400,640)" to="(400,650)"/> <wire from="(290,530)" to="(290,550)"/> <wire from="(380,540)" to="(380,560)"/> <wire from="(390,260)" to="(390,340)"/> <wire from="(470,270)" to="(470,300)"/> <wire from="(570,770)" to="(570,790)"/> <wire from="(660,780)" to="(660,800)"/> <wire from="(130,390)" to="(160,390)"/> <wire from="(410,630)" to="(440,630)"/> <wire from="(690,870)" to="(720,870)"/> <wire from="(440,600)" to="(450,600)"/> <wire from="(380,660)" to="(390,660)"/> <wire from="(460,700)" to="(470,700)"/> <wire from="(490,730)" to="(500,730)"/> <wire from="(200,400)" to="(200,450)"/> <wire from="(290,530)" to="(300,530)"/> <wire from="(260,460)" to="(270,460)"/> <wire from="(160,360)" to="(170,360)"/> <wire from="(180,460)" to="(190,460)"/> <wire from="(240,560)" to="(250,560)"/> <wire from="(210,490)" to="(220,490)"/> <wire from="(480,640)" to="(480,690)"/> <wire from="(390,190)" to="(390,240)"/> <wire from="(100,420)" to="(110,420)"/> <wire from="(90,330)" to="(100,330)"/> <wire from="(120,360)" to="(130,360)"/> <wire from="(760,880)" to="(760,930)"/> <wire from="(770,970)" to="(780,970)"/> <wire from="(820,940)" to="(830,940)"/> <wire from="(630,110)" to="(630,160)"/> <wire from="(660,900)" to="(670,900)"/> <wire from="(740,940)" to="(750,940)"/> <wire from="(720,840)" to="(730,840)"/> <wire from="(520,800)" to="(530,800)"/> <wire from="(540,700)" to="(550,700)"/> <wire from="(830,250)" to="(830,940)"/> <wire from="(570,770)" to="(580,770)"/> <wire from="(610,820)" to="(610,830)"/> <wire from="(200,250)" to="(250,250)"/> <wire from="(200,210)" to="(250,210)"/> <wire from="(330,580)" to="(330,590)"/> <wire from="(310,480)" to="(310,500)"/> <wire from="(390,240)" to="(390,260)"/> <wire from="(430,240)" to="(430,260)"/> <wire from="(430,320)" to="(430,340)"/> <wire from="(500,710)" to="(500,730)"/> <wire from="(220,470)" to="(220,490)"/> <wire from="(780,950)" to="(780,970)"/> <wire from="(540,180)" to="(540,260)"/> <wire from="(590,720)" to="(590,740)"/> <wire from="(340,570)" to="(370,570)"/> <wire from="(620,810)" to="(650,810)"/> <wire from="(470,270)" to="(490,270)"/> <wire from="(200,280)" to="(220,280)"/> <wire from="(200,240)" to="(220,240)"/> <wire from="(200,200)" to="(220,200)"/> <wire from="(390,640)" to="(400,640)"/> <wire from="(420,670)" to="(430,670)"/> <wire from="(450,740)" to="(460,740)"/> <wire from="(500,710)" to="(510,710)"/> <wire from="(470,640)" to="(480,640)"/> <wire from="(310,600)" to="(320,600)"/> <wire from="(560,160)" to="(630,160)"/> <wire from="(370,540)" to="(380,540)"/> <wire from="(140,430)" to="(150,430)"/> <wire from="(170,500)" to="(180,500)"/> <wire from="(410,580)" to="(410,630)"/> <wire from="(220,470)" to="(230,470)"/> <wire from="(190,400)" to="(200,400)"/> <wire from="(630,110)" to="(890,110)"/> <wire from="(110,400)" to="(120,400)"/> <wire from="(80,370)" to="(90,370)"/> <wire from="(690,820)" to="(690,870)"/> <wire from="(780,950)" to="(790,950)"/> <wire from="(650,780)" to="(660,780)"/> <wire from="(670,880)" to="(680,880)"/> <wire from="(730,980)" to="(740,980)"/> <wire from="(700,910)" to="(710,910)"/> <wire from="(750,880)" to="(760,880)"/> <wire from="(320,240)" to="(390,240)"/> <wire from="(590,840)" to="(600,840)"/> <wire from="(540,760)" to="(540,770)"/> <wire from="(260,520)" to="(260,530)"/> <wire from="(430,650)" to="(430,670)"/> <wire from="(150,410)" to="(150,430)"/> <wire from="(240,420)" to="(240,440)"/> <wire from="(800,900)" to="(800,920)"/> <wire from="(140,170)" to="(180,170)"/> <wire from="(520,660)" to="(520,680)"/> <wire from="(390,260)" to="(430,260)"/> <wire from="(390,340)" to="(430,340)"/> <wire from="(710,890)" to="(710,910)"/> <wire from="(270,510)" to="(300,510)"/> <wire from="(550,750)" to="(580,750)"/> <wire from="(450,220)" to="(470,220)"/> <wire from="(450,300)" to="(470,300)"/> <wire from="(430,650)" to="(440,650)"/> <wire from="(380,680)" to="(390,680)"/> <wire from="(400,580)" to="(410,580)"/> <wire from="(300,480)" to="(310,480)"/> <wire from="(320,580)" to="(330,580)"/> <wire from="(350,610)" to="(360,610)"/> <wire from="(150,410)" to="(160,410)"/> <wire from="(240,540)" to="(250,540)"/> <wire from="(100,440)" to="(110,440)"/> <wire from="(340,520)" to="(340,570)"/> <wire from="(410,170)" to="(540,170)"/> <wire from="(620,760)" to="(620,810)"/> <wire from="(660,920)" to="(670,920)"/> <wire from="(680,820)" to="(690,820)"/> <wire from="(710,890)" to="(720,890)"/> <wire from="(520,780)" to="(530,780)"/> <wire from="(630,850)" to="(640,850)"/> <wire from="(580,720)" to="(590,720)"/> <wire from="(600,820)" to="(610,820)"/> <wire from="(750,940)" to="(750,950)"/> <wire from="(830,250)" to="(890,250)"/> <wire from="(190,460)" to="(190,470)"/> <wire from="(100,330)" to="(100,340)"/> <wire from="(200,270)" to="(250,270)"/> <wire from="(200,230)" to="(250,230)"/> <wire from="(200,190)" to="(250,190)"/> <wire from="(470,700)" to="(470,710)"/> <wire from="(360,590)" to="(360,610)"/> <wire from="(450,600)" to="(450,620)"/> <wire from="(170,360)" to="(170,380)"/> <wire from="(470,220)" to="(470,250)"/> <wire from="(130,360)" to="(130,390)"/> <wire from="(640,830)" to="(640,850)"/> <wire from="(730,840)" to="(730,860)"/> <wire from="(200,450)" to="(230,450)"/> <wire from="(160,100)" to="(320,100)"/> <wire from="(480,690)" to="(510,690)"/> <wire from="(760,930)" to="(790,930)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(200,260)" to="(220,260)"/> <wire from="(200,220)" to="(220,220)"/> <wire from="(450,720)" to="(460,720)"/> <wire from="(250,520)" to="(260,520)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(280,550)" to="(290,550)"/> <wire from="(360,590)" to="(370,590)"/> <wire from="(330,520)" to="(340,520)"/> <wire from="(170,480)" to="(180,480)"/> <wire from="(230,420)" to="(240,420)"/> <wire from="(270,460)" to="(270,510)"/> <wire from="(80,350)" to="(90,350)"/> <wire from="(200,180)" to="(270,180)"/> <wire from="(790,900)" to="(800,900)"/> <wire from="(550,700)" to="(550,750)"/> <wire from="(640,830)" to="(650,830)"/> <wire from="(730,960)" to="(740,960)"/> <wire from="(510,660)" to="(520,660)"/> <wire from="(530,760)" to="(540,760)"/> <wire from="(560,790)" to="(570,790)"/> <wire from="(590,860)" to="(600,860)"/> <wire from="(610,760)" to="(620,760)"/> <comp lib="0" loc="(740,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(170,500)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fde9521"/> </comp> <comp lib="0" loc="(250,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(220,260)" name="Tunnel"> <a name="label" val="L2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(450,720)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fdb22d1"/> </comp> <comp lib="0" loc="(310,600)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3ff00000"/> </comp> <comp lib="2" loc="(260,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="width" val="11"/> <a name="tristate" val="false"/> <a name="label" val="VIDEO_IN"/> </comp> <comp lib="0" loc="(180,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(540,700)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,440)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x4002f638"/> </comp> <comp lib="2" loc="(210,490)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(160,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(890,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="24"/> <a name="tristate" val="false"/> <a name="label" val="ADDR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,560)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fda618d"/> </comp> <comp lib="0" loc="(240,540)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x40125e35"/> </comp> <comp lib="0" loc="(250,230)" name="Tunnel"> <a name="label" val="L5"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(580,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L3"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(120,360)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(530,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(490,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(250,210)" name="Tunnel"> <a name="label" val="L7"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(650,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(590,840)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f90c49c"/> </comp> <comp lib="0" loc="(730,960)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f47ef9e"/> </comp> <comp lib="0" loc="(250,190)" name="Tunnel"> <a name="label" val="L9"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(220,280)" name="Tunnel"> <a name="label" val="L0"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(390,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(300,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L7"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(250,270)" name="Tunnel"> <a name="label" val="L1"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="6" loc="(46,315)" name="Text"> <a name="text" val="White Level"/> </comp> <comp lib="0" loc="(160,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L9"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(350,610)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(630,850)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(520,800)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f7844d0"/> </comp> <comp lib="0" loc="(670,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(380,680)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fa66f82"/> </comp> <comp lib="2" loc="(610,760)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,370)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x400f3b64"/> </comp> <comp lib="6" loc="(533,83)" name="Text"> <a name="text" val="The invention of the org to make the ADDR tick EVERY half cycle."/> </comp> <comp lib="2" loc="(820,940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(770,970)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(590,860)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f57fe6d"/> </comp> <comp lib="0" loc="(600,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(180,170)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="right"/> <a name="bit0" val="10"/> <a name="bit1" val="9"/> <a name="bit2" val="8"/> <a name="bit3" val="7"/> <a name="bit4" val="6"/> <a name="bit6" val="4"/> <a name="bit7" val="3"/> <a name="bit8" val="2"/> <a name="bit9" val="1"/> <a name="bit10" val="0"/> </comp> <comp lib="0" loc="(460,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(110,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(440,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L5"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(280,550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(470,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(750,880)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(450,220)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> </comp> <comp lib="4" loc="(410,170)" name="Counter"> <a name="width" val="23"/> <a name="max" val="0x7fffff"/> </comp> <comp lib="0" loc="(220,220)" name="Tunnel"> <a name="label" val="L6"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(400,580)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,420)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x402f8d50"/> </comp> <comp lib="0" loc="(310,620)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fb30a3d"/> </comp> <comp lib="0" loc="(170,480)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x40152f1b"/> </comp> <comp lib="0" loc="(660,900)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f800000"/> </comp> <comp lib="0" loc="(520,780)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fa66666"/> </comp> <comp lib="0" loc="(370,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L6"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(890,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="label" val="DATA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(230,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L8"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(450,740)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fa379b7"/> </comp> <comp lib="0" loc="(220,240)" name="Tunnel"> <a name="label" val="L4"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(80,350)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x40400000"/> </comp> <comp lib="2" loc="(680,820)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(320,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(660,920)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f3ef9db"/> </comp> <comp lib="2" loc="(560,790)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(510,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L4"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(380,660)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3fdf1aa0"/> </comp> <comp lib="2" loc="(700,910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,260)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,400)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(140,430)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,670)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(220,200)" name="Tunnel"> <a name="label" val="L8"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(270,180)" name="Tunnel"> <a name="label" val="TINT"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(790,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L0"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(730,980)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3f1526fa"/> </comp> <comp lib="0" loc="(250,250)" name="Tunnel"> <a name="label" val="L3"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="2" loc="(330,520)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(560,160)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="24"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="0"/> <a name="bit16" val="0"/> <a name="bit17" val="0"/> <a name="bit18" val="0"/> <a name="bit19" val="0"/> <a name="bit20" val="0"/> <a name="bit21" val="0"/> <a name="bit22" val="0"/> <a name="bit23" val="0"/> </comp> <comp lib="0" loc="(720,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="L1"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="4" loc="(450,300)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> <a name="trigger" val="falling"/> </comp> </circuit> <circuit name="VideoDumper_RGB"> <a name="circuit" val="VideoDumper_RGB"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="80" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="41">VideoDumper_RGB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="65">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="84">R</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="94">G</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="105">B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="124">/SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="74">ADDR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="104">DATA</text> <circ-port height="8" pin="160,110" width="8" x="46" y="56"/> <circ-port height="8" pin="170,410" width="8" x="46" y="76"/> <circ-port height="8" pin="170,470" width="8" x="46" y="86"/> <circ-port height="8" pin="170,530" width="8" x="46" y="96"/> <circ-port height="8" pin="170,580" width="8" x="46" y="116"/> <circ-port height="10" pin="890,120" width="10" x="145" y="65"/> <circ-port height="10" pin="890,260" width="10" x="145" y="95"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(640,270)" to="(640,410)"/> <wire from="(830,260)" to="(890,260)"/> <wire from="(320,110)" to="(320,250)"/> <wire from="(390,250)" to="(390,270)"/> <wire from="(430,250)" to="(430,270)"/> <wire from="(430,330)" to="(430,350)"/> <wire from="(670,300)" to="(670,580)"/> <wire from="(390,270)" to="(390,350)"/> <wire from="(540,190)" to="(540,270)"/> <wire from="(240,530)" to="(660,530)"/> <wire from="(250,580)" to="(670,580)"/> <wire from="(470,230)" to="(470,260)"/> <wire from="(470,280)" to="(470,310)"/> <wire from="(170,410)" to="(210,410)"/> <wire from="(170,470)" to="(210,470)"/> <wire from="(170,530)" to="(210,530)"/> <wire from="(170,580)" to="(210,580)"/> <wire from="(390,270)" to="(430,270)"/> <wire from="(390,350)" to="(430,350)"/> <wire from="(640,270)" to="(810,270)"/> <wire from="(660,290)" to="(810,290)"/> <wire from="(160,110)" to="(320,110)"/> <wire from="(240,470)" to="(650,470)"/> <wire from="(450,230)" to="(470,230)"/> <wire from="(450,310)" to="(470,310)"/> <wire from="(650,280)" to="(810,280)"/> <wire from="(470,260)" to="(490,260)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(560,170)" to="(630,170)"/> <wire from="(390,200)" to="(390,250)"/> <wire from="(240,410)" to="(640,410)"/> <wire from="(630,120)" to="(890,120)"/> <wire from="(650,280)" to="(650,470)"/> <wire from="(410,180)" to="(540,180)"/> <wire from="(660,290)" to="(660,530)"/> <wire from="(630,120)" to="(630,170)"/> <wire from="(320,250)" to="(390,250)"/> <wire from="(670,300)" to="(810,300)"/> <comp lib="0" loc="(830,260)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="32"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="2"/> <a name="bit17" val="2"/> <a name="bit18" val="2"/> <a name="bit19" val="2"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="3"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> <a name="bit27" val="3"/> <a name="bit28" val="3"/> <a name="bit29" val="3"/> <a name="bit30" val="3"/> <a name="bit31" val="3"/> </comp> <comp lib="4" loc="(450,310)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> <a name="trigger" val="falling"/> </comp> <comp lib="0" loc="(890,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="24"/> <a name="tristate" val="false"/> <a name="label" val="ADDR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(210,410)" name="RGB_Decoder"/> <comp lib="4" loc="(450,230)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> </comp> <comp loc="(210,530)" name="RGB_Decoder"/> <comp lib="0" loc="(160,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(560,170)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="24"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="0"/> <a name="bit16" val="0"/> <a name="bit17" val="0"/> <a name="bit18" val="0"/> <a name="bit19" val="0"/> <a name="bit20" val="0"/> <a name="bit21" val="0"/> <a name="bit22" val="0"/> <a name="bit23" val="0"/> </comp> <comp lib="6" loc="(524,93)" name="Text"> <a name="text" val="The invention of the org to make the ADDR tick EVERY half cycle."/> </comp> <comp loc="(210,470)" name="RGB_Decoder"/> <comp lib="4" loc="(410,180)" name="Counter"> <a name="width" val="23"/> <a name="max" val="0x7fffff"/> </comp> <comp lib="0" loc="(890,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="label" val="DATA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,470)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="GREEN"/> </comp> <comp lib="0" loc="(170,530)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="BLUE"/> </comp> <comp lib="0" loc="(250,580)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="8"/> </comp> <comp lib="0" loc="(170,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SYNC"/> </comp> <comp lib="0" loc="(170,410)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="RED"/> </comp> <comp lib="1" loc="(540,270)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="RGB_Decoder"> <a name="circuit" val="RGB_Decoder"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="30" stroke="#000000" stroke-width="2" width="30" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="48">RGB Dec</text> <circ-port height="8" pin="190,100" width="8" x="46" y="66"/> <circ-port height="10" pin="590,190" width="10" x="75" y="65"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(230,100)" to="(230,170)"/> <wire from="(470,200)" to="(520,200)"/> <wire from="(440,150)" to="(440,160)"/> <wire from="(440,170)" to="(440,180)"/> <wire from="(440,190)" to="(440,200)"/> <wire from="(440,160)" to="(440,170)"/> <wire from="(440,180)" to="(440,190)"/> <wire from="(320,170)" to="(320,190)"/> <wire from="(190,100)" to="(230,100)"/> <wire from="(320,50)" to="(320,80)"/> <wire from="(230,170)" to="(270,170)"/> <wire from="(320,50)" to="(360,50)"/> <wire from="(340,120)" to="(380,120)"/> <wire from="(560,190)" to="(590,190)"/> <wire from="(390,50)" to="(390,90)"/> <wire from="(440,130)" to="(450,130)"/> <wire from="(440,160)" to="(450,160)"/> <wire from="(440,190)" to="(450,190)"/> <wire from="(430,200)" to="(440,200)"/> <wire from="(410,110)" to="(420,110)"/> <wire from="(440,180)" to="(450,180)"/> <wire from="(440,150)" to="(450,150)"/> <wire from="(440,140)" to="(450,140)"/> <wire from="(440,120)" to="(450,120)"/> <wire from="(440,170)" to="(450,170)"/> <wire from="(510,180)" to="(520,180)"/> <wire from="(290,130)" to="(300,130)"/> <wire from="(290,160)" to="(300,160)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(290,140)" to="(300,140)"/> <wire from="(290,120)" to="(300,120)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(290,90)" to="(300,90)"/> <wire from="(310,190)" to="(320,190)"/> <wire from="(370,100)" to="(380,100)"/> <wire from="(380,50)" to="(390,50)"/> <comp lib="0" loc="(510,180)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x23"/> </comp> <comp lib="0" loc="(370,100)" name="Constant"> <a name="width" val="3"/> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(410,110)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="3"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(590,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,100)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="val"/> </comp> <comp lib="0" loc="(310,190)" name="Constant"/> <comp lib="0" loc="(270,170)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(470,200)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(340,120)" name="Priority Encoder"/> <comp lib="3" loc="(560,190)" name="Multiplier"/> <comp lib="1" loc="(380,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(420,110)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(430,200)" name="Constant"> <a name="value" val="0x0"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"> <tool name="Divider"> <a name="width" val="32"/> </tool> </lib> <lib desc="#Memory" name="4"> <tool name="Shift Register"> <a name="length" val="1"/> </tool> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <lib desc="file#2A03_APU_ForAPUPlayer.circ" name="7"/> <lib desc="jar#IEEE754.jar#com.cheese.IEEE754.IEEE754" name="8"/> <main name="APUPlayer"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="APUPlayer"> <a name="circuit" val="APUPlayer"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <wire from="(840,340)" to="(960,340)"/> <wire from="(1080,1080)" to="(1080,1100)"/> <wire from="(1380,610)" to="(1380,690)"/> <wire from="(700,440)" to="(700,570)"/> <wire from="(660,400)" to="(660,530)"/> <wire from="(260,980)" to="(310,980)"/> <wire from="(250,170)" to="(300,170)"/> <wire from="(1020,1220)" to="(1210,1220)"/> <wire from="(1180,200)" to="(1300,200)"/> <wire from="(280,920)" to="(280,950)"/> <wire from="(1180,60)" to="(1180,70)"/> <wire from="(200,800)" to="(200,1080)"/> <wire from="(1100,940)" to="(1100,950)"/> <wire from="(260,990)" to="(300,990)"/> <wire from="(1250,1010)" to="(1300,1010)"/> <wire from="(800,910)" to="(820,910)"/> <wire from="(1020,850)" to="(1230,850)"/> <wire from="(660,50)" to="(660,160)"/> <wire from="(260,1000)" to="(290,1000)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(290,1200)" to="(310,1200)"/> <wire from="(100,900)" to="(100,940)"/> <wire from="(540,320)" to="(570,320)"/> <wire from="(260,1020)" to="(270,1020)"/> <wire from="(610,190)" to="(610,380)"/> <wire from="(600,70)" to="(1050,70)"/> <wire from="(1050,250)" to="(1050,290)"/> <wire from="(630,330)" to="(710,330)"/> <wire from="(1400,230)" to="(1420,230)"/> <wire from="(550,1030)" to="(550,1080)"/> <wire from="(1440,130)" to="(1440,150)"/> <wire from="(670,880)" to="(720,880)"/> <wire from="(1080,890)" to="(1080,910)"/> <wire from="(1050,1020)" to="(1050,1040)"/> <wire from="(550,1080)" to="(600,1080)"/> <wire from="(580,470)" to="(630,470)"/> <wire from="(120,1210)" to="(120,1220)"/> <wire from="(850,250)" to="(910,250)"/> <wire from="(1250,1060)" to="(1250,1090)"/> <wire from="(680,900)" to="(720,900)"/> <wire from="(1200,400)" to="(1200,470)"/> <wire from="(170,50)" to="(660,50)"/> <wire from="(680,970)" to="(680,1000)"/> <wire from="(1320,170)" to="(1320,180)"/> <wire from="(1070,1120)" to="(1120,1120)"/> <wire from="(1300,150)" to="(1300,200)"/> <wire from="(90,960)" to="(120,960)"/> <wire from="(540,460)" to="(560,460)"/> <wire from="(1200,490)" to="(1210,490)"/> <wire from="(550,950)" to="(570,950)"/> <wire from="(580,1140)" to="(600,1140)"/> <wire from="(1020,1050)" to="(1020,1220)"/> <wire from="(1100,230)" to="(1110,230)"/> <wire from="(690,920)" to="(720,920)"/> <wire from="(1480,170)" to="(1480,230)"/> <wire from="(570,1120)" to="(600,1120)"/> <wire from="(650,170)" to="(650,270)"/> <wire from="(200,800)" to="(410,800)"/> <wire from="(1090,1160)" to="(1120,1160)"/> <wire from="(260,1030)" to="(260,1080)"/> <wire from="(960,510)" to="(960,690)"/> <wire from="(1480,440)" to="(1500,440)"/> <wire from="(670,920)" to="(680,920)"/> <wire from="(710,1120)" to="(720,1120)"/> <wire from="(1210,1130)" to="(1230,1130)"/> <wire from="(590,1000)" to="(600,1000)"/> <wire from="(710,1130)" to="(710,1140)"/> <wire from="(1000,1020)" to="(1050,1020)"/> <wire from="(590,1170)" to="(590,1180)"/> <wire from="(920,220)" to="(920,230)"/> <wire from="(260,1080)" to="(310,1080)"/> <wire from="(1260,970)" to="(1300,970)"/> <wire from="(600,220)" to="(700,220)"/> <wire from="(100,1160)" to="(100,1180)"/> <wire from="(1230,850)" to="(1230,860)"/> <wire from="(110,1010)" to="(110,1040)"/> <wire from="(600,220)" to="(600,240)"/> <wire from="(580,1000)" to="(580,1020)"/> <wire from="(1250,950)" to="(1300,950)"/> <wire from="(1070,930)" to="(1120,930)"/> <wire from="(250,530)" to="(660,530)"/> <wire from="(1000,1050)" to="(1020,1050)"/> <wire from="(630,470)" to="(630,640)"/> <wire from="(1250,1150)" to="(1260,1150)"/> <wire from="(280,1120)" to="(310,1120)"/> <wire from="(260,950)" to="(280,950)"/> <wire from="(290,1140)" to="(310,1140)"/> <wire from="(170,690)" to="(960,690)"/> <wire from="(210,300)" to="(210,660)"/> <wire from="(1000,1040)" to="(1030,1040)"/> <wire from="(690,1140)" to="(690,1240)"/> <wire from="(510,1120)" to="(510,1240)"/> <wire from="(430,490)" to="(430,800)"/> <wire from="(420,1120)" to="(430,1120)"/> <wire from="(420,960)" to="(430,960)"/> <wire from="(1250,1130)" to="(1280,1130)"/> <wire from="(540,190)" to="(610,190)"/> <wire from="(290,190)" to="(300,190)"/> <wire from="(1090,970)" to="(1120,970)"/> <wire from="(1150,70)" to="(1180,70)"/> <wire from="(300,1000)" to="(310,1000)"/> <wire from="(530,1110)" to="(530,1170)"/> <wire from="(1360,610)" to="(1380,610)"/> <wire from="(970,1030)" to="(980,1030)"/> <wire from="(850,1070)" to="(860,1070)"/> <wire from="(700,440)" to="(710,440)"/> <wire from="(1250,1140)" to="(1270,1140)"/> <wire from="(690,920)" to="(690,930)"/> <wire from="(1200,470)" to="(1200,490)"/> <wire from="(1080,1080)" to="(1120,1080)"/> <wire from="(420,1130)" to="(420,1140)"/> <wire from="(1080,1150)" to="(1080,1180)"/> <wire from="(90,880)" to="(140,880)"/> <wire from="(90,1200)" to="(140,1200)"/> <wire from="(1430,250)" to="(1430,340)"/> <wire from="(300,1170)" to="(300,1180)"/> <wire from="(290,1000)" to="(290,1020)"/> <wire from="(660,180)" to="(700,180)"/> <wire from="(680,1000)" to="(720,1000)"/> <wire from="(410,960)" to="(410,980)"/> <wire from="(130,420)" to="(300,420)"/> <wire from="(660,180)" to="(660,400)"/> <wire from="(100,900)" to="(140,900)"/> <wire from="(840,1070)" to="(840,1090)"/> <wire from="(1250,1000)" to="(1250,1010)"/> <wire from="(100,1060)" to="(140,1060)"/> <wire from="(1440,150)" to="(1490,150)"/> <wire from="(1180,130)" to="(1180,140)"/> <wire from="(1510,140)" to="(1510,150)"/> <wire from="(1480,430)" to="(1480,440)"/> <wire from="(570,1120)" to="(570,1140)"/> <wire from="(540,350)" to="(710,350)"/> <wire from="(1070,1060)" to="(1120,1060)"/> <wire from="(110,920)" to="(140,920)"/> <wire from="(110,1240)" to="(140,1240)"/> <wire from="(400,1140)" to="(400,1240)"/> <wire from="(1070,1100)" to="(1080,1100)"/> <wire from="(1150,610)" to="(1220,610)"/> <wire from="(570,1220)" to="(600,1220)"/> <wire from="(10,990)" to="(30,990)"/> <wire from="(540,140)" to="(630,140)"/> <wire from="(120,940)" to="(140,940)"/> <wire from="(1090,1100)" to="(1120,1100)"/> <wire from="(130,960)" to="(140,960)"/> <wire from="(490,780)" to="(760,780)"/> <wire from="(60,1210)" to="(70,1210)"/> <wire from="(240,1110)" to="(240,1170)"/> <wire from="(850,240)" to="(860,240)"/> <wire from="(790,980)" to="(800,980)"/> <wire from="(1050,1040)" to="(1200,1040)"/> <wire from="(220,1120)" to="(220,1240)"/> <wire from="(1250,1160)" to="(1250,1200)"/> <wire from="(1280,1140)" to="(1300,1140)"/> <wire from="(1250,1110)" to="(1270,1110)"/> <wire from="(510,1240)" to="(690,1240)"/> <wire from="(1250,490)" to="(1250,510)"/> <wire from="(840,880)" to="(840,890)"/> <wire from="(1080,890)" to="(1120,890)"/> <wire from="(1030,940)" to="(1030,1030)"/> <wire from="(1080,960)" to="(1080,990)"/> <wire from="(280,1120)" to="(280,1140)"/> <wire from="(10,780)" to="(10,990)"/> <wire from="(970,330)" to="(970,610)"/> <wire from="(580,940)" to="(580,960)"/> <wire from="(60,990)" to="(60,1210)"/> <wire from="(1250,890)" to="(1300,890)"/> <wire from="(1070,870)" to="(1120,870)"/> <wire from="(200,240)" to="(300,240)"/> <wire from="(490,490)" to="(490,780)"/> <wire from="(690,360)" to="(710,360)"/> <wire from="(280,1220)" to="(310,1220)"/> <wire from="(1070,910)" to="(1080,910)"/> <wire from="(960,340)" to="(1180,340)"/> <wire from="(1090,910)" to="(1120,910)"/> <wire from="(160,130)" to="(300,130)"/> <wire from="(1560,130)" to="(1560,150)"/> <wire from="(220,1240)" to="(400,1240)"/> <wire from="(1080,1180)" to="(1120,1180)"/> <wire from="(190,680)" to="(950,680)"/> <wire from="(90,980)" to="(140,980)"/> <wire from="(90,1140)" to="(140,1140)"/> <wire from="(550,970)" to="(590,970)"/> <wire from="(290,940)" to="(290,960)"/> <wire from="(1180,340)" to="(1430,340)"/> <wire from="(1150,70)" to="(1150,140)"/> <wire from="(170,50)" to="(170,140)"/> <wire from="(390,880)" to="(390,910)"/> <wire from="(90,990)" to="(130,990)"/> <wire from="(1280,1130)" to="(1280,1140)"/> <wire from="(100,1160)" to="(140,1160)"/> <wire from="(680,240)" to="(680,320)"/> <wire from="(1090,1100)" to="(1090,1110)"/> <wire from="(110,920)" to="(110,950)"/> <wire from="(100,1230)" to="(100,1260)"/> <wire from="(840,360)" to="(950,360)"/> <wire from="(110,1180)" to="(140,1180)"/> <wire from="(900,220)" to="(920,220)"/> <wire from="(90,1000)" to="(120,1000)"/> <wire from="(510,1110)" to="(530,1110)"/> <wire from="(580,1020)" to="(600,1020)"/> <wire from="(570,1170)" to="(590,1170)"/> <wire from="(570,1160)" to="(600,1160)"/> <wire from="(90,1010)" to="(110,1010)"/> <wire from="(1200,990)" to="(1230,990)"/> <wire from="(1150,140)" to="(1180,140)"/> <wire from="(510,1100)" to="(640,1100)"/> <wire from="(90,1020)" to="(100,1020)"/> <wire from="(90,1180)" to="(100,1180)"/> <wire from="(850,440)" to="(850,620)"/> <wire from="(550,880)" to="(550,930)"/> <wire from="(1170,690)" to="(1380,690)"/> <wire from="(1270,470)" to="(1480,470)"/> <wire from="(570,1180)" to="(580,1180)"/> <wire from="(1310,650)" to="(1310,670)"/> <wire from="(590,390)" to="(710,390)"/> <wire from="(430,800)" to="(490,800)"/> <wire from="(660,400)" to="(710,400)"/> <wire from="(540,280)" to="(590,280)"/> <wire from="(1260,1080)" to="(1260,1100)"/> <wire from="(1080,990)" to="(1120,990)"/> <wire from="(1200,470)" to="(1240,470)"/> <wire from="(1030,1040)" to="(1030,1130)"/> <wire from="(1520,150)" to="(1560,150)"/> <wire from="(160,700)" to="(970,700)"/> <wire from="(1280,170)" to="(1280,240)"/> <wire from="(570,1190)" to="(570,1220)"/> <wire from="(1090,910)" to="(1090,920)"/> <wire from="(260,970)" to="(300,970)"/> <wire from="(1250,990)" to="(1300,990)"/> <wire from="(390,940)" to="(430,940)"/> <wire from="(560,1020)" to="(560,1060)"/> <wire from="(840,1090)" to="(860,1090)"/> <wire from="(930,220)" to="(950,220)"/> <wire from="(540,470)" to="(560,470)"/> <wire from="(390,950)" to="(420,950)"/> <wire from="(280,1160)" to="(310,1160)"/> <wire from="(590,280)" to="(590,390)"/> <wire from="(290,1020)" to="(310,1020)"/> <wire from="(280,1170)" to="(300,1170)"/> <wire from="(390,960)" to="(410,960)"/> <wire from="(410,980)" to="(430,980)"/> <wire from="(220,1110)" to="(240,1110)"/> <wire from="(390,970)" to="(400,970)"/> <wire from="(280,1180)" to="(290,1180)"/> <wire from="(90,1030)" to="(90,1080)"/> <wire from="(260,880)" to="(260,930)"/> <wire from="(800,1060)" to="(810,1060)"/> <wire from="(510,1090)" to="(520,1090)"/> <wire from="(570,1150)" to="(580,1150)"/> <wire from="(1320,150)" to="(1320,170)"/> <wire from="(1440,430)" to="(1440,450)"/> <wire from="(670,1020)" to="(720,1020)"/> <wire from="(900,210)" to="(900,220)"/> <wire from="(110,1180)" to="(110,1190)"/> <wire from="(10,780)" to="(320,780)"/> <wire from="(540,240)" to="(600,240)"/> <wire from="(90,1080)" to="(140,1080)"/> <wire from="(130,460)" to="(300,460)"/> <wire from="(1250,880)" to="(1250,890)"/> <wire from="(100,1260)" to="(140,1260)"/> <wire from="(280,1190)" to="(280,1220)"/> <wire from="(1250,1120)" to="(1300,1120)"/> <wire from="(690,960)" to="(690,980)"/> <wire from="(1170,640)" to="(1170,690)"/> <wire from="(1510,140)" to="(1520,140)"/> <wire from="(1200,990)" to="(1200,1040)"/> <wire from="(1050,70)" to="(1050,180)"/> <wire from="(840,900)" to="(860,900)"/> <wire from="(520,980)" to="(520,1090)"/> <wire from="(1400,230)" to="(1400,290)"/> <wire from="(390,930)" to="(410,930)"/> <wire from="(270,1020)" to="(270,1060)"/> <wire from="(90,950)" to="(110,950)"/> <wire from="(390,980)" to="(390,1020)"/> <wire from="(1270,1160)" to="(1300,1160)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(280,1150)" to="(290,1150)"/> <wire from="(130,1000)" to="(140,1000)"/> <wire from="(220,1090)" to="(230,1090)"/> <wire from="(840,910)" to="(850,910)"/> <wire from="(850,920)" to="(860,920)"/> <wire from="(550,940)" to="(560,940)"/> <wire from="(800,910)" to="(800,960)"/> <wire from="(590,990)" to="(590,1000)"/> <wire from="(580,1140)" to="(580,1150)"/> <wire from="(650,170)" to="(700,170)"/> <wire from="(230,20)" to="(860,20)"/> <wire from="(120,1000)" to="(120,1020)"/> <wire from="(840,920)" to="(840,940)"/> <wire from="(570,320)" to="(680,320)"/> <wire from="(560,480)" to="(560,500)"/> <wire from="(1500,140)" to="(1500,150)"/> <wire from="(1180,200)" to="(1180,340)"/> <wire from="(390,880)" to="(430,880)"/> <wire from="(840,1030)" to="(860,1030)"/> <wire from="(1160,120)" to="(1160,170)"/> <wire from="(400,900)" to="(430,900)"/> <wire from="(210,300)" to="(300,300)"/> <wire from="(410,920)" to="(430,920)"/> <wire from="(1180,140)" to="(1180,200)"/> <wire from="(230,980)" to="(230,1090)"/> <wire from="(830,1010)" to="(860,1010)"/> <wire from="(260,940)" to="(270,940)"/> <wire from="(1370,110)" to="(1400,110)"/> <wire from="(590,960)" to="(590,970)"/> <wire from="(1090,1140)" to="(1090,1160)"/> <wire from="(850,1060)" to="(850,1070)"/> <wire from="(1210,1130)" to="(1210,1220)"/> <wire from="(1260,1080)" to="(1300,1080)"/> <wire from="(420,950)" to="(420,960)"/> <wire from="(1260,1150)" to="(1260,1180)"/> <wire from="(290,180)" to="(290,190)"/> <wire from="(290,1140)" to="(290,1150)"/> <wire from="(300,990)" to="(300,1000)"/> <wire from="(660,160)" to="(700,160)"/> <wire from="(1400,40)" to="(1400,110)"/> <wire from="(360,950)" to="(360,1100)"/> <wire from="(130,400)" to="(300,400)"/> <wire from="(670,880)" to="(670,910)"/> <wire from="(1440,450)" to="(1490,450)"/> <wire from="(1520,130)" to="(1520,140)"/> <wire from="(1510,440)" to="(1510,450)"/> <wire from="(1250,1060)" to="(1300,1060)"/> <wire from="(1070,1200)" to="(1120,1200)"/> <wire from="(600,70)" to="(600,220)"/> <wire from="(570,40)" to="(1170,40)"/> <wire from="(1300,670)" to="(1310,670)"/> <wire from="(100,90)" to="(130,90)"/> <wire from="(170,140)" to="(170,690)"/> <wire from="(530,1170)" to="(550,1170)"/> <wire from="(1250,1100)" to="(1260,1100)"/> <wire from="(320,490)" to="(320,780)"/> <wire from="(570,1040)" to="(600,1040)"/> <wire from="(1270,1100)" to="(1300,1100)"/> <wire from="(160,130)" to="(160,700)"/> <wire from="(1310,670)" to="(1330,670)"/> <wire from="(790,960)" to="(800,960)"/> <wire from="(930,400)" to="(1200,400)"/> <wire from="(1090,950)" to="(1090,970)"/> <wire from="(1270,650)" to="(1270,670)"/> <wire from="(1250,950)" to="(1250,970)"/> <wire from="(510,490)" to="(510,760)"/> <wire from="(300,960)" to="(300,970)"/> <wire from="(400,900)" to="(400,920)"/> <wire from="(130,370)" to="(300,370)"/> <wire from="(1050,180)" to="(1110,180)"/> <wire from="(120,940)" to="(120,960)"/> <wire from="(830,1010)" to="(830,1030)"/> <wire from="(1250,870)" to="(1300,870)"/> <wire from="(1070,1010)" to="(1120,1010)"/> <wire from="(560,900)" to="(560,940)"/> <wire from="(400,1000)" to="(430,1000)"/> <wire from="(670,960)" to="(690,960)"/> <wire from="(280,1040)" to="(310,1040)"/> <wire from="(1150,170)" to="(1160,170)"/> <wire from="(670,950)" to="(700,950)"/> <wire from="(240,1170)" to="(260,1170)"/> <wire from="(200,240)" to="(200,670)"/> <wire from="(50,980)" to="(70,980)"/> <wire from="(830,1110)" to="(860,1110)"/> <wire from="(50,990)" to="(60,990)"/> <wire from="(1320,170)" to="(1340,170)"/> <wire from="(670,970)" to="(680,970)"/> <wire from="(1150,640)" to="(1170,640)"/> <wire from="(520,980)" to="(530,980)"/> <wire from="(930,400)" to="(930,670)"/> <wire from="(970,760)" to="(970,1030)"/> <wire from="(1560,430)" to="(1560,450)"/> <wire from="(1280,150)" to="(1280,170)"/> <wire from="(1260,1180)" to="(1300,1180)"/> <wire from="(90,1280)" to="(140,1280)"/> <wire from="(1070,1060)" to="(1070,1090)"/> <wire from="(960,510)" to="(1250,510)"/> <wire from="(570,40)" to="(570,320)"/> <wire from="(110,1220)" to="(110,1240)"/> <wire from="(90,970)" to="(130,970)"/> <wire from="(1160,170)" to="(1280,170)"/> <wire from="(1270,1100)" to="(1270,1110)"/> <wire from="(800,980)" to="(800,1060)"/> <wire from="(840,940)" to="(860,940)"/> <wire from="(670,980)" to="(670,1020)"/> <wire from="(670,930)" to="(690,930)"/> <wire from="(700,960)" to="(720,960)"/> <wire from="(550,960)" to="(580,960)"/> <wire from="(100,170)" to="(250,170)"/> <wire from="(270,900)" to="(270,940)"/> <wire from="(630,640)" to="(1040,640)"/> <wire from="(120,1020)" to="(140,1020)"/> <wire from="(230,20)" to="(230,320)"/> <wire from="(90,880)" to="(90,930)"/> <wire from="(360,950)" to="(370,950)"/> <wire from="(210,660)" to="(860,660)"/> <wire from="(230,980)" to="(240,980)"/> <wire from="(790,970)" to="(860,970)"/> <wire from="(220,1100)" to="(360,1100)"/> <wire from="(1480,140)" to="(1500,140)"/> <wire from="(1030,1130)" to="(1050,1130)"/> <wire from="(510,760)" to="(970,760)"/> <wire from="(710,1140)" to="(720,1140)"/> <wire from="(590,1180)" to="(600,1180)"/> <wire from="(1330,650)" to="(1330,670)"/> <wire from="(1150,240)" to="(1190,240)"/> <wire from="(1070,870)" to="(1070,900)"/> <wire from="(1520,450)" to="(1560,450)"/> <wire from="(570,1010)" to="(570,1040)"/> <wire from="(130,90)" to="(130,120)"/> <wire from="(580,1180)" to="(580,1200)"/> <wire from="(840,430)" to="(860,430)"/> <wire from="(830,1060)" to="(850,1060)"/> <wire from="(960,340)" to="(960,510)"/> <wire from="(200,670)" to="(930,670)"/> <wire from="(1280,240)" to="(1290,240)"/> <wire from="(260,960)" to="(290,960)"/> <wire from="(1070,1150)" to="(1080,1150)"/> <wire from="(1160,120)" to="(1170,120)"/> <wire from="(280,350)" to="(300,350)"/> <wire from="(100,1020)" to="(100,1060)"/> <wire from="(1200,40)" to="(1400,40)"/> <wire from="(860,430)" to="(860,660)"/> <wire from="(830,1050)" to="(860,1050)"/> <wire from="(410,490)" to="(410,800)"/> <wire from="(420,1140)" to="(430,1140)"/> <wire from="(1070,1130)" to="(1100,1130)"/> <wire from="(300,1180)" to="(310,1180)"/> <wire from="(1450,230)" to="(1480,230)"/> <wire from="(760,780)" to="(760,970)"/> <wire from="(840,440)" to="(850,440)"/> <wire from="(830,1070)" to="(840,1070)"/> <wire from="(1030,940)" to="(1050,940)"/> <wire from="(1070,1140)" to="(1090,1140)"/> <wire from="(1340,150)" to="(1340,170)"/> <wire from="(700,950)" to="(700,960)"/> <wire from="(930,220)" to="(930,230)"/> <wire from="(550,880)" to="(600,880)"/> <wire from="(560,900)" to="(600,900)"/> <wire from="(290,1180)" to="(290,1200)"/> <wire from="(190,270)" to="(300,270)"/> <wire from="(560,1060)" to="(600,1060)"/> <wire from="(830,1080)" to="(830,1110)"/> <wire from="(970,610)" to="(970,700)"/> <wire from="(130,120)" to="(300,120)"/> <wire from="(130,440)" to="(300,440)"/> <wire from="(1050,250)" to="(1110,250)"/> <wire from="(610,380)" to="(710,380)"/> <wire from="(400,970)" to="(400,1000)"/> <wire from="(280,1010)" to="(280,1040)"/> <wire from="(1480,130)" to="(1480,140)"/> <wire from="(640,950)" to="(640,1100)"/> <wire from="(90,1140)" to="(90,1170)"/> <wire from="(1510,440)" to="(1520,440)"/> <wire from="(840,880)" to="(860,880)"/> <wire from="(1230,480)" to="(1240,480)"/> <wire from="(1260,670)" to="(1270,670)"/> <wire from="(580,940)" to="(600,940)"/> <wire from="(1250,980)" to="(1260,980)"/> <wire from="(680,240)" to="(700,240)"/> <wire from="(1070,960)" to="(1080,960)"/> <wire from="(700,570)" to="(730,570)"/> <wire from="(570,920)" to="(600,920)"/> <wire from="(250,170)" to="(250,530)"/> <wire from="(1000,1030)" to="(1030,1030)"/> <wire from="(1020,850)" to="(1020,1010)"/> <wire from="(1200,110)" to="(1230,110)"/> <wire from="(390,920)" to="(400,920)"/> <wire from="(290,180)" to="(300,180)"/> <wire from="(1050,290)" to="(1400,290)"/> <wire from="(1070,940)" to="(1100,940)"/> <wire from="(970,610)" to="(1040,610)"/> <wire from="(630,140)" to="(630,330)"/> <wire from="(90,940)" to="(100,940)"/> <wire from="(1070,1160)" to="(1070,1200)"/> <wire from="(830,1040)" to="(840,1040)"/> <wire from="(1070,950)" to="(1090,950)"/> <wire from="(1070,1110)" to="(1090,1110)"/> <wire from="(760,970)" to="(770,970)"/> <wire from="(1100,1140)" to="(1120,1140)"/> <wire from="(590,960)" to="(600,960)"/> <wire from="(1310,240)" to="(1420,240)"/> <wire from="(800,620)" to="(850,620)"/> <wire from="(950,210)" to="(950,220)"/> <wire from="(850,910)" to="(850,920)"/> <wire from="(130,990)" to="(130,1000)"/> <wire from="(1050,180)" to="(1050,250)"/> <wire from="(260,880)" to="(310,880)"/> <wire from="(950,360)" to="(950,680)"/> <wire from="(190,270)" to="(190,680)"/> <wire from="(540,270)" to="(650,270)"/> <wire from="(1500,440)" to="(1500,450)"/> <wire from="(270,900)" to="(310,900)"/> <wire from="(270,1060)" to="(310,1060)"/> <wire from="(680,900)" to="(680,920)"/> <wire from="(390,1020)" to="(430,1020)"/> <wire from="(90,1210)" to="(120,1210)"/> <wire from="(1000,1010)" to="(1020,1010)"/> <wire from="(1100,160)" to="(1110,160)"/> <wire from="(280,920)" to="(310,920)"/> <wire from="(290,940)" to="(310,940)"/> <wire from="(90,1220)" to="(110,1220)"/> <wire from="(300,960)" to="(310,960)"/> <wire from="(90,1230)" to="(100,1230)"/> <wire from="(1070,970)" to="(1070,1010)"/> <wire from="(230,320)" to="(300,320)"/> <wire from="(1070,920)" to="(1090,920)"/> <wire from="(1100,950)" to="(1120,950)"/> <wire from="(670,940)" to="(720,940)"/> <wire from="(550,980)" to="(600,980)"/> <wire from="(840,1030)" to="(840,1040)"/> <wire from="(1270,1140)" to="(1270,1160)"/> <wire from="(130,960)" to="(130,970)"/> <wire from="(410,920)" to="(410,930)"/> <wire from="(550,990)" to="(590,990)"/> <wire from="(860,20)" to="(860,240)"/> <wire from="(570,920)" to="(570,950)"/> <wire from="(1260,970)" to="(1260,980)"/> <wire from="(1100,1130)" to="(1100,1140)"/> <wire from="(1520,430)" to="(1520,440)"/> <wire from="(1250,1200)" to="(1300,1200)"/> <wire from="(490,800)" to="(490,1080)"/> <wire from="(110,1040)" to="(140,1040)"/> <wire from="(550,1010)" to="(570,1010)"/> <wire from="(580,1200)" to="(600,1200)"/> <wire from="(690,980)" to="(720,980)"/> <wire from="(90,1240)" to="(90,1280)"/> <wire from="(840,400)" to="(930,400)"/> <wire from="(550,1000)" to="(580,1000)"/> <wire from="(90,1190)" to="(110,1190)"/> <wire from="(120,1220)" to="(140,1220)"/> <wire from="(840,330)" to="(970,330)"/> <wire from="(170,140)" to="(300,140)"/> <wire from="(1190,130)" to="(1190,240)"/> <wire from="(640,950)" to="(650,950)"/> <wire from="(550,1020)" to="(560,1020)"/> <comp lib="5" loc="(600,960)" name="LED"/> <comp lib="5" loc="(140,1200)" name="LED"/> <comp lib="0" loc="(530,980)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(600,940)" name="LED"/> <comp lib="5" loc="(140,920)" name="LED"/> <comp lib="5" loc="(310,1180)" name="LED"/> <comp lib="0" loc="(70,1210)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(1520,430)" name="Hex Digit Display"/> <comp lib="5" loc="(310,1220)" name="LED"> <a name="label" val="HALT SQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(600,1060)" name="LED"/> <comp lib="5" loc="(130,460)" name="LED"> <a name="facing" val="east"/> <a name="label" val="RND"/> <a name="labelloc" val="west"/> </comp> <comp lib="0" loc="(1050,1130)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(310,1040)" name="LED"/> <comp lib="0" loc="(1230,860)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="5" loc="(730,570)" name="Button"> <a name="facing" val="west"/> <a name="label" val="Next RegOp"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(30,990)" name="Splitter"> <a name="incoming" val="19"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> </comp> <comp lib="5" loc="(600,880)" name="LED"/> <comp lib="5" loc="(1520,130)" name="Hex Digit Display"/> <comp lib="5" loc="(140,1020)" name="LED"/> <comp lib="5" loc="(860,1030)" name="LED"/> <comp lib="5" loc="(430,980)" name="LED"/> <comp lib="5" loc="(130,440)" name="LED"> <a name="facing" val="east"/> <a name="label" val="SQA"/> <a name="labelloc" val="west"/> </comp> <comp lib="5" loc="(1300,1100)" name="LED"/> <comp lib="5" loc="(950,210)" name="Hex Digit Display"/> <comp lib="5" loc="(600,1220)" name="LED"> <a name="label" val="HALT SQB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,1170)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(860,970)" name="LED"> <a name="label" val="RMODE"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(770,970)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> <a name="bit6" val="2"/> <a name="bit7" val="2"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> </comp> <comp lib="5" loc="(1120,1180)" name="LED"/> <comp lib="5" loc="(720,1120)" name="LED"> <a name="label" val="SQB_DUTY"/> <a name="labelloc" val="north"/> </comp> <comp lib="5" loc="(140,940)" name="LED"/> <comp lib="5" loc="(600,1140)" name="LED"/> <comp lib="5" loc="(1120,1160)" name="LED"/> <comp lib="0" loc="(1480,470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="4"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="3"/> <a name="bit13" val="3"/> <a name="bit14" val="3"/> <a name="bit15" val="3"/> </comp> <comp lib="5" loc="(1300,1180)" name="LED"/> <comp lib="5" loc="(1120,990)" name="LED"/> <comp lib="5" loc="(1120,1120)" name="LED"/> <comp lib="6" loc="(728,861)" name="Text"> <a name="text" val="SW_B"/> </comp> <comp lib="5" loc="(1120,1080)" name="LED"/> <comp lib="5" loc="(140,1080)" name="LED"/> <comp lib="5" loc="(430,1000)" name="LED"/> <comp lib="6" loc="(930,143)" name="Text"> <a name="text" val="Last READ ROM BYTE"/> </comp> <comp lib="6" loc="(318,861)" name="Text"> <a name="text" val="SQA_F"/> </comp> <comp lib="5" loc="(310,880)" name="LED"/> <comp loc="(710,330)" name="Fake6502"> <a name="label" val="core"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="5" loc="(310,1060)" name="LED"/> <comp lib="4" loc="(1200,40)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="transp_latch"/> </comp> <comp lib="5" loc="(1300,1080)" name="LED"/> <comp lib="5" loc="(600,1160)" name="LED"/> <comp lib="0" loc="(1210,490)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="0"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(100,90)" name="Clock"> <a name="label" val="XTAL"/> </comp> <comp lib="5" loc="(600,920)" name="LED"/> <comp lib="0" loc="(690,360)" name="Constant"/> <comp lib="5" loc="(720,900)" name="LED"/> <comp lib="5" loc="(1120,1200)" name="LED"/> <comp lib="5" loc="(430,1020)" name="LED"/> <comp lib="5" loc="(1300,870)" name="LED"> <a name="label" val="LOOP"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(860,900)" name="LED"/> <comp lib="5" loc="(600,1120)" name="LED"> <a name="label" val="SQB_ENV"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(140,1260)" name="LED"/> <comp lib="5" loc="(720,920)" name="LED"/> <comp lib="4" loc="(1370,110)" name="RAM"/> <comp lib="5" loc="(860,1070)" name="LED"/> <comp lib="5" loc="(430,1140)" name="LED"/> <comp lib="5" loc="(140,1160)" name="LED"/> <comp lib="0" loc="(280,190)" name="Constant"/> <comp lib="6" loc="(148,861)" name="Text"> <a name="text" val="TRI_F"/> </comp> <comp lib="6" loc="(152,1126)" name="Text"> <a name="text" val="TRI_LIN"/> </comp> <comp lib="0" loc="(690,1140)" name="Splitter"/> <comp lib="5" loc="(140,1060)" name="LED"/> <comp lib="0" loc="(1320,180)" name="Ground"/> <comp lib="5" loc="(140,1280)" name="LED"> <a name="label" val="TRI_RELOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(550,1170)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(1120,1140)" name="LED"/> <comp lib="0" loc="(1230,1130)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="4" loc="(1450,230)" name="Register"> <a name="width" val="16"/> <a name="trigger" val="high"/> <a name="label" val="transp_latch"/> </comp> <comp lib="5" loc="(1120,870)" name="LED"> <a name="label" val="SAMPLE_LEN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1050,940)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(980,1030)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="30"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="1"/> <a name="bit3" val="1"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="2"/> <a name="bit7" val="2"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="3"/> <a name="bit15" val="3"/> <a name="bit16" val="3"/> <a name="bit17" val="3"/> <a name="bit18" val="3"/> <a name="bit19" val="3"/> <a name="bit20" val="3"/> <a name="bit21" val="3"/> <a name="bit22" val="4"/> <a name="bit23" val="4"/> <a name="bit24" val="4"/> <a name="bit25" val="4"/> <a name="bit26" val="4"/> <a name="bit27" val="4"/> <a name="bit28" val="4"/> <a name="bit29" val="4"/> </comp> <comp lib="5" loc="(860,1110)" name="LED"> <a name="label" val="HALT NOISE"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(430,900)" name="LED"/> <comp lib="0" loc="(650,950)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(720,940)" name="LED"/> <comp lib="5" loc="(140,900)" name="LED"/> <comp lib="5" loc="(1120,930)" name="LED"/> <comp lib="5" loc="(1480,130)" name="Hex Digit Display"/> <comp lib="5" loc="(900,210)" name="Hex Digit Display"/> <comp lib="5" loc="(130,420)" name="LED"> <a name="facing" val="east"/> <a name="label" val="SQB"/> <a name="labelloc" val="west"/> </comp> <comp lib="5" loc="(860,940)" name="LED"/> <comp lib="4" loc="(1200,110)" name="Counter"/> <comp lib="0" loc="(1230,990)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> </comp> <comp lib="4" loc="(1360,610)" name="RAM"> <a name="addrWidth" val="24"/> <a name="dataWidth" val="32"/> <a name="bus" val="asynch"/> </comp> <comp lib="5" loc="(720,1020)" name="LED"/> <comp lib="5" loc="(600,1180)" name="LED"/> <comp lib="5" loc="(430,920)" name="LED"/> <comp lib="1" loc="(1310,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="5" loc="(720,880)" name="LED"/> <comp lib="0" loc="(200,1080)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="27"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="2"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="2"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> </comp> <comp lib="6" loc="(1506,362)" name="Text"> <a name="text" val="Last APU Register"/> </comp> <comp loc="(1040,610)" name="AUXDumper"> <a name="label" val="dumper"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1300,670)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="5" loc="(1300,1160)" name="LED"/> <comp lib="5" loc="(600,1200)" name="LED"> <a name="label" val="ENVDIS"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(310,980)" name="LED"/> <comp lib="5" loc="(1120,910)" name="LED"/> <comp lib="5" loc="(1480,430)" name="Hex Digit Display"/> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(560,500)" name="Constant"> <a name="facing" val="north"/> <a name="value" val="0x0"/> </comp> <comp lib="5" loc="(600,1020)" name="LED"/> <comp lib="7" loc="(300,120)" name="2A03_APU"> <a name="label" val="apu"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="5" loc="(140,1220)" name="LED"/> <comp lib="0" loc="(1100,230)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x4014"/> </comp> <comp lib="5" loc="(430,1120)" name="LED"> <a name="label" val="SQA_DUTY"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1302,62)" name="Text"> <a name="text" val="OAM"/> </comp> <comp lib="5" loc="(310,1000)" name="LED"/> <comp lib="0" loc="(800,620)" name="Probe"> <a name="radix" val="16"/> <a name="labelfont" val="SansSerif plain 40"/> </comp> <comp lib="5" loc="(310,1020)" name="LED"/> <comp lib="5" loc="(310,1080)" name="LED"/> <comp lib="5" loc="(1120,890)" name="LED"/> <comp lib="5" loc="(430,880)" name="LED"/> <comp lib="5" loc="(140,960)" name="LED"/> <comp lib="5" loc="(860,1010)" name="LED"> <a name="label" val="N_ENV"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,350)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="5" loc="(860,1050)" name="LED"/> <comp lib="5" loc="(720,980)" name="LED"/> <comp lib="5" loc="(1300,1010)" name="LED"/> <comp lib="5" loc="(430,940)" name="LED"/> <comp lib="5" loc="(310,960)" name="LED"/> <comp lib="5" loc="(1440,430)" name="Hex Digit Display"/> <comp lib="5" loc="(140,880)" name="LED"/> <comp lib="5" loc="(1120,970)" name="LED"/> <comp lib="5" loc="(310,940)" name="LED"/> <comp lib="4" loc="(1270,470)" name="Register"> <a name="width" val="16"/> <a name="trigger" val="high"/> <a name="label" val="transp_latch"/> </comp> <comp lib="5" loc="(1560,430)" name="Hex Digit Display"/> <comp lib="5" loc="(1300,970)" name="LED"/> <comp lib="6" loc="(442,866)" name="Text"> <a name="text" val="SW_A"/> </comp> <comp lib="5" loc="(600,1000)" name="LED"/> <comp lib="5" loc="(600,1040)" name="LED"/> <comp lib="0" loc="(490,1080)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="27"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="2"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="2"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> </comp> <comp lib="0" loc="(240,980)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(130,370)" name="LED"> <a name="facing" val="east"/> <a name="label" val="DMC"/> <a name="labelloc" val="west"/> </comp> <comp lib="5" loc="(140,980)" name="LED"/> <comp lib="3" loc="(1150,240)" name="Comparator"> <a name="width" val="16"/> </comp> <comp lib="5" loc="(720,1000)" name="LED"/> <comp lib="6" loc="(775,501)" name="Text"> <a name="text" val="Load regdump here"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1260,670)" name="Constant"/> <comp lib="0" loc="(580,470)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="24"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="1"/> <a name="bit20" val="1"/> <a name="bit21" val="1"/> <a name="bit22" val="1"/> <a name="bit23" val="2"/> </comp> <comp lib="5" loc="(1300,1060)" name="LED"> <a name="label" val="SAMPLE_BUF"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(910,250)" name="Splitter"> <a name="facing" val="north"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> </comp> <comp lib="5" loc="(140,1000)" name="LED"/> <comp lib="0" loc="(70,980)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(860,920)" name="LED"/> <comp lib="5" loc="(430,960)" name="LED"/> <comp lib="5" loc="(860,880)" name="LED"> <a name="label" val="NFREQ"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(1120,1060)" name="LED"> <a name="label" val="SAMPLE_ADR"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(1120,950)" name="LED"/> <comp lib="0" loc="(1480,170)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="4"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="3"/> <a name="bit13" val="3"/> <a name="bit14" val="3"/> <a name="bit15" val="3"/> </comp> <comp lib="5" loc="(600,900)" name="LED"/> <comp lib="5" loc="(1300,950)" name="LED"> <a name="label" val="DMC_FREQ"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(600,980)" name="LED"/> <comp lib="5" loc="(310,1200)" name="LED"> <a name="label" val="ENVDIS"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(310,920)" name="LED"/> <comp lib="5" loc="(1300,1140)" name="LED"/> <comp lib="5" loc="(310,1120)" name="LED"> <a name="label" val="SQA_ENV"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(1560,130)" name="Hex Digit Display"/> <comp loc="(700,160)" name="NES MEMORY"> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,1060)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(140,1140)" name="LED"/> <comp lib="5" loc="(1300,1200)" name="LED"/> <comp lib="5" loc="(140,1040)" name="LED"/> <comp lib="6" loc="(608,860)" name="Text"> <a name="text" val="SQB_F"/> </comp> <comp lib="5" loc="(1300,890)" name="LED"> <a name="label" val="ENIRQ"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(310,1160)" name="LED"/> <comp lib="5" loc="(1120,1010)" name="LED"/> <comp lib="5" loc="(310,900)" name="LED"/> <comp lib="5" loc="(720,1140)" name="LED"/> <comp lib="6" loc="(1501,60)" name="Text"> <a name="text" val="SPRDMA ADDRESS"/> </comp> <comp lib="0" loc="(820,910)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> </comp> <comp lib="5" loc="(720,960)" name="LED"/> <comp lib="5" loc="(1440,130)" name="Hex Digit Display"/> <comp lib="5" loc="(130,400)" name="LED"> <a name="facing" val="east"/> <a name="label" val="TRI"/> <a name="labelloc" val="west"/> </comp> <comp lib="5" loc="(600,1080)" name="LED"/> <comp lib="5" loc="(1120,1100)" name="LED"/> <comp lib="5" loc="(860,1090)" name="LED"> <a name="label" val="ENVDIS"/> <a name="labelloc" val="east"/> </comp> <comp lib="5" loc="(140,1240)" name="LED"/> <comp lib="5" loc="(1300,990)" name="LED"/> <comp lib="0" loc="(1100,160)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x2004"/> </comp> <comp lib="5" loc="(1300,1120)" name="LED"/> <comp lib="5" loc="(310,1140)" name="LED"/> <comp lib="5" loc="(140,1180)" name="LED"/> <comp lib="0" loc="(400,1140)" name="Splitter"/> <comp lib="3" loc="(1150,170)" name="Comparator"> <a name="width" val="16"/> </comp> <comp lib="0" loc="(370,950)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(1356,561)" name="Text"> <a name="text" val="Taram-param-pam. Pam! Peep, peep, peep. Pipipipip, pip, pibibip"/> <a name="font" val="SansSerif bolditalic 12"/> </comp> <comp lib="6" loc="(560,405)" name="Text"> <a name="text" val="N.C."/> </comp> </circuit> <circuit name="AUXDumper"> <a name="circuit" val="AUXDumper"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="131" stroke="#000000" stroke-width="2" width="111" x="50" y="50"/> <text font-family="SansSerif" font-size="18" font-weight="bold" text-anchor="middle" x="107" y="44">AUX Dumper</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="95">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="124">AUX A/B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="137" y="93">addr</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="132" y="123">data32</text> <circ-port height="8" pin="90,60" width="8" x="46" y="86"/> <circ-port height="8" pin="130,150" width="8" x="46" y="116"/> <circ-port height="10" pin="830,70" width="10" x="155" y="85"/> <circ-port height="10" pin="830,220" width="10" x="155" y="115"/> <circ-anchor facing="east" height="6" width="6" x="47" y="87"/> </appear> <wire from="(520,420)" to="(520,430)"/> <wire from="(390,210)" to="(440,210)"/> <wire from="(640,220)" to="(830,220)"/> <wire from="(580,430)" to="(640,430)"/> <wire from="(550,440)" to="(550,510)"/> <wire from="(260,60)" to="(260,200)"/> <wire from="(440,230)" to="(440,310)"/> <wire from="(550,150)" to="(550,180)"/> <wire from="(300,380)" to="(400,380)"/> <wire from="(260,200)" to="(360,200)"/> <wire from="(520,240)" to="(520,270)"/> <wire from="(450,390)" to="(450,420)"/> <wire from="(550,180)" to="(660,180)"/> <wire from="(440,230)" to="(480,230)"/> <wire from="(440,310)" to="(480,310)"/> <wire from="(460,150)" to="(550,150)"/> <wire from="(660,180)" to="(660,480)"/> <wire from="(500,190)" to="(520,190)"/> <wire from="(500,270)" to="(520,270)"/> <wire from="(500,430)" to="(520,430)"/> <wire from="(300,480)" to="(450,480)"/> <wire from="(880,480)" to="(910,480)"/> <wire from="(160,480)" to="(240,480)"/> <wire from="(440,160)" to="(440,210)"/> <wire from="(130,150)" to="(140,150)"/> <wire from="(130,600)" to="(910,600)"/> <wire from="(910,480)" to="(910,600)"/> <wire from="(460,140)" to="(590,140)"/> <wire from="(130,220)" to="(130,600)"/> <wire from="(660,480)" to="(840,480)"/> <wire from="(190,380)" to="(240,380)"/> <wire from="(520,420)" to="(560,420)"/> <wire from="(440,210)" to="(440,230)"/> <wire from="(480,210)" to="(480,230)"/> <wire from="(480,290)" to="(480,310)"/> <wire from="(160,140)" to="(160,480)"/> <wire from="(90,60)" to="(260,60)"/> <wire from="(390,400)" to="(390,430)"/> <wire from="(590,150)" to="(590,230)"/> <wire from="(520,190)" to="(520,220)"/> <wire from="(640,220)" to="(640,430)"/> <wire from="(680,70)" to="(830,70)"/> <wire from="(160,130)" to="(190,130)"/> <wire from="(420,390)" to="(450,390)"/> <wire from="(450,440)" to="(480,440)"/> <wire from="(450,420)" to="(480,420)"/> <wire from="(130,220)" to="(350,220)"/> <wire from="(520,220)" to="(540,220)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(450,440)" to="(450,480)"/> <wire from="(390,400)" to="(400,400)"/> <wire from="(610,130)" to="(680,130)"/> <wire from="(380,430)" to="(390,430)"/> <wire from="(680,70)" to="(680,130)"/> <wire from="(190,130)" to="(190,380)"/> <wire from="(550,440)" to="(560,440)"/> <wire from="(540,510)" to="(550,510)"/> <comp lib="6" loc="(466,552)" name="Text"> <a name="text" val="float-&gt;uint32_t Convert: https://gregstoll.com/~gregstoll/floattohex/"/> </comp> <comp lib="0" loc="(140,150)" name="Splitter"> <a name="incoming" val="24"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="1"/> <a name="bit20" val="1"/> <a name="bit21" val="1"/> <a name="bit22" val="1"/> <a name="bit23" val="1"/> </comp> <comp lib="6" loc="(565,401)" name="Text"> <a name="text" val=" : 2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="8" loc="(580,430)" name="Divider"/> <comp lib="0" loc="(830,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="24"/> <a name="label" val="Addr"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(407,363)" name="Text"> <a name="text" val="* 0.4"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(240,380)" name="AUX_A"/> <comp lib="4" loc="(500,270)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> <a name="trigger" val="falling"/> </comp> <comp lib="1" loc="(590,230)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(880,480)" name="S-R Flip-Flop"/> <comp lib="1" loc="(390,210)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(380,430)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x3ecccccd"/> </comp> <comp lib="6" loc="(489,403)" name="Text"> <a name="text" val="a + b"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(540,510)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x40000000"/> </comp> <comp lib="0" loc="(610,130)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="24"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="0"/> <a name="bit16" val="0"/> <a name="bit17" val="0"/> <a name="bit18" val="0"/> <a name="bit19" val="0"/> <a name="bit20" val="0"/> <a name="bit21" val="0"/> <a name="bit22" val="0"/> <a name="bit23" val="0"/> </comp> <comp lib="8" loc="(500,430)" name="Adder"/> <comp lib="0" loc="(130,150)" name="Pin"> <a name="width" val="24"/> <a name="tristate" val="false"/> <a name="label" val="AUX"/> </comp> <comp lib="6" loc="(574,53)" name="Text"> <a name="text" val="The invention of the org to make the ADDR tick EVERY half cycle."/> </comp> <comp lib="8" loc="(420,390)" name="Multiplier"/> <comp lib="4" loc="(500,190)" name="Counter"> <a name="width" val="1"/> <a name="max" val="0x1"/> </comp> <comp lib="4" loc="(460,140)" name="Counter"> <a name="width" val="23"/> <a name="max" val="0x7fffff"/> <a name="ongoal" val="stay"/> </comp> <comp lib="0" loc="(830,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="label" val="Data"/> <a name="labelloc" val="east"/> </comp> <comp loc="(240,480)" name="AUX_B"/> <comp lib="6" loc="(800,285)" name="Text"> <a name="text" val="normalized samples in range [0.0f; 1.0f]"/> <a name="font" val="SansSerif bold 12"/> </comp> </circuit> <circuit name="AUX_A"> <a name="circuit" val="AUX_A"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="56" stroke="#000000" stroke-width="2" width="60" x="50" y="55"/> <text font-family="SansSerif" font-size="16" font-weight="bold" text-anchor="middle" x="77" y="46">AUX_A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="84">d</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="83">a</text> <circ-port height="8" pin="170,130" width="8" x="46" y="76"/> <circ-port height="10" pin="380,130" width="10" x="105" y="75"/> <circ-anchor facing="east" height="6" width="6" x="47" y="77"/> </appear> <wire from="(170,130)" to="(200,130)"/> <wire from="(240,190)" to="(250,190)"/> <wire from="(250,170)" to="(250,190)"/> <wire from="(340,130)" to="(380,130)"/> <comp lib="6" loc="(124,159)" name="Text"> <a name="text" val="0...255"/> </comp> <comp lib="0" loc="(170,130)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="d"/> </comp> <comp lib="0" loc="(240,190)" name="Constant"/> <comp lib="0" loc="(380,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="tristate" val="false"/> <a name="label" val="a"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(340,130)" name="ROM"> <a name="dataWidth" val="32"/> <a name="contents">addr/data: 8 32 3ab77b8e 3d12a8ec 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3d12a8ec 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3f780eaa 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3f780eaa 3f800000 </a> </comp> </circuit> <circuit name="AUX_B"> <a name="circuit" val="AUX_B"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="55" stroke="#000000" stroke-width="2" width="60" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="83">a</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="84">d</text> <text font-family="SansSerif" font-size="16" font-weight="bold" text-anchor="middle" x="77" y="46">AUX_B</text> <circ-port height="8" pin="130,140" width="8" x="46" y="76"/> <circ-port height="10" pin="380,130" width="10" x="105" y="75"/> <circ-anchor facing="east" height="6" width="6" x="47" y="77"/> </appear> <wire from="(170,130)" to="(200,130)"/> <wire from="(240,190)" to="(250,190)"/> <wire from="(250,170)" to="(250,190)"/> <wire from="(340,130)" to="(380,130)"/> <wire from="(130,140)" to="(150,140)"/> <comp lib="0" loc="(240,190)" name="Constant"/> <comp lib="4" loc="(340,130)" name="ROM"> <a name="addrWidth" val="15"/> <a name="dataWidth" val="32"/> <a name="contents">addr/data: 15 32 39f0dbd4 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3c40856f 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3bc0c48a 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3c9034de 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3c40856f 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3c9034de 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f7d3908 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f7e2680 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f7d3908 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f7f137d 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f7e2680 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f800000 </a> </comp> <comp lib="6" loc="(89,177)" name="Text"> <a name="text" val="0...32767"/> </comp> <comp lib="0" loc="(380,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="tristate" val="false"/> <a name="label" val="a"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,140)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(130,140)" name="Pin"> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="d"/> </comp> </circuit> <circuit name="Fake6502"> <a name="circuit" val="Fake6502"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="150" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text font-family="SansSerif" font-size="12" font-weight="bold" text-anchor="middle" x="118" y="42">Fake 6502</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="123">/NMI</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="160" y="103">R/W</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="145">/RES</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="84">PHI2</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="74">PHI0</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="73">PHI1</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="104">SO</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="94">RDY</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="78" y="174">DATA In</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="133">/IRQ</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="150" y="174">DATA Out</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="158" y="114">SYNC</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="150" y="144">ADDR Out</text> <circ-port height="8" pin="140,90" width="8" x="46" y="66"/> <circ-port height="8" pin="140,430" width="8" x="46" y="86"/> <circ-port height="8" pin="140,150" width="8" x="46" y="96"/> <circ-port height="8" pin="140,230" width="8" x="46" y="116"/> <circ-port height="8" pin="140,260" width="8" x="46" y="126"/> <circ-port height="8" pin="140,290" width="8" x="46" y="136"/> <circ-port height="8" pin="140,370" width="8" x="46" y="166"/> <circ-port height="10" pin="840,90" width="10" x="175" y="65"/> <circ-port height="10" pin="840,120" width="10" x="175" y="75"/> <circ-port height="10" pin="840,150" width="10" x="175" y="95"/> <circ-port height="10" pin="840,180" width="10" x="175" y="105"/> <circ-port height="10" pin="840,240" width="10" x="175" y="135"/> <circ-port height="10" pin="830,380" width="10" x="175" y="165"/> <circ-port height="10" pin="830,460" width="10" x="175" y="175"/> <circ-port height="8" pin="140,470" width="8" x="46" y="176"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(790,90)" to="(840,90)"/> <wire from="(660,210)" to="(710,210)"/> <wire from="(660,260)" to="(710,260)"/> <wire from="(440,320)" to="(490,320)"/> <wire from="(440,330)" to="(490,330)"/> <wire from="(690,320)" to="(690,390)"/> <wire from="(700,90)" to="(760,90)"/> <wire from="(330,270)" to="(330,280)"/> <wire from="(700,90)" to="(700,120)"/> <wire from="(140,430)" to="(440,430)"/> <wire from="(730,460)" to="(830,460)"/> <wire from="(440,230)" to="(440,320)"/> <wire from="(470,90)" to="(700,90)"/> <wire from="(710,240)" to="(710,260)"/> <wire from="(440,330)" to="(440,430)"/> <wire from="(210,230)" to="(210,390)"/> <wire from="(210,390)" to="(690,390)"/> <wire from="(660,320)" to="(690,320)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,220)" to="(490,220)"/> <wire from="(660,280)" to="(750,280)"/> <wire from="(750,280)" to="(750,380)"/> <wire from="(660,220)" to="(730,220)"/> <wire from="(320,280)" to="(330,280)"/> <wire from="(710,150)" to="(840,150)"/> <wire from="(710,240)" to="(840,240)"/> <wire from="(140,90)" to="(470,90)"/> <wire from="(140,470)" to="(470,470)"/> <wire from="(710,150)" to="(710,210)"/> <wire from="(210,230)" to="(280,230)"/> <wire from="(830,180)" to="(840,180)"/> <wire from="(750,380)" to="(830,380)"/> <wire from="(730,220)" to="(730,460)"/> <wire from="(470,220)" to="(470,470)"/> <wire from="(700,120)" to="(840,120)"/> <wire from="(470,90)" to="(470,210)"/> <comp lib="0" loc="(840,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(163,375)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SO"/> </comp> <comp loc="(490,210)" name="RegDumpProcessor"> <a name="label" val="redump"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(420,230)" name="ROM"> <a name="addrWidth" val="24"/> <a name="dataWidth" val="32"/> <a name="contents">addr/data: 24 32 101 1000 8 801 103 c10 a 3411 a c012 a 3f13 b f15 7 1f15 63cb 8214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 af 1000 8 801 6703 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 af 1000 8 801 6778 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 ab06 af 1000 8 801 67bd 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d ea 8 8 809 10f 7804 8 805 14 ab06 af 1000 8 801 67c1 214 4f9 116 6 16 1b6 116 6 16 2f9 800c b 80d 103 8 8 809 106 7104 8 805 14 ab06 af 1000 8 801 67b2 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 ab06 af 1000 8 801 6815 214 4f9 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 ab06 af 1000 b 801 6811 214 4f8 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 b3 1000 8 801 67f0 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 ae06 af 1000 8 801 67ed 214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 6706 af 1000 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 650f 214 4fb 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 6706 af 1000 8 801 6703 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 6706 af 1000 8 801 677f 214 4f9 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 6706 af 1000 8 801 67bb 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 6706 af 1000 8 801 67bb 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 106 7104 8 805 14 6706 b3 1000 8 801 67bd 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 6706 b3 1000 8 801 680e 214 4f8 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 b3 1000 8 801 6811 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7304 8 805 14 6806 af 1000 8 801 67f0 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 af 1000 8 801 67ed 214 4fc 116 6 16 1b3 116 6 16 3a3 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 250 7300 8 801 15 903 8 ab02 121 c10 a 3411 e c012 a 3f13 b f15 7 1f15 6319 214 4fc 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 6701 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 6776 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 bd 7300 8 801 6772 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 18 ab06 b9 7300 8 801 6751 214 4f8 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 102 7104 8 805 14 ab06 b9 7300 8 801 675d 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a ea 7504 8 805 14 ab06 b9 7300 8 801 6775 214 4fa 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 8 801 6778 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 b9 7300 8 801 6753 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 ae06 b9 7300 8 801 6797 214 4f9 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 132 7300 8 801 15 903 8 6702 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6347 214 4f9 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 159 7604 8 805 15 907 8 2e06 b9 7300 8 801 667f 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 bd 7300 8 801 6769 214 4fa 116 6 16 1b6 116 6 16 2fd 800c 8 80d 10a 8 8 809 15d 7804 8 805 15 907 8 1d06 b9 7300 8 801 673c 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 1d06 b9 7300 8 801 67ae 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 7804 8 805 14 1d06 b9 7300 8 801 67c6 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e5 7804 8 805 14 1d06 b9 7300 8 801 6814 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6811 214 4fb 116 6 16 1b3 116 a 16 2f9 800c 8 80d ba 8 8 809 105 7804 8 805 14 1e06 b9 7300 8 801 67f4 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 2006 b9 7300 8 801 67f0 214 4f9 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 2306 132 7300 8 801 15 903 8 ab02 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 64fe 214 4f9 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 2006 b9 7300 8 801 66df 214 4f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 1e06 b9 7300 8 801 675a 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 6790 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 67ab 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 119 7804 8 805 14 1706 b9 7300 8 801 678d 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 67e8 214 4fa 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 67e2 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 67b8 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 2006 bd 7300 8 801 67ed 214 4f8 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a9 7404 8 805 15 907 8 4006 158 7300 8 801 15 903 8 4002 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6422 214 4fb 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a 115 7604 8 805 14 4006 113 7300 8 801 15 903 8 2e02 6653 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 4006 b9 7300 8 801 676f 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 4006 113 7300 8 801 15 903 8 1d02 673d 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d f3 8 8 809 10f 7804 8 805 14 4006 b9 7300 8 801 67b1 214 4fc 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 4006 b9 7300 8 801 67a0 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 67d0 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6809 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 4106 bd 7300 8 801 67e4 214 4f7 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 bd 7300 8 801 67e4 214 4fb 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 170 7404 8 805 15 907 8 6706 b9 7300 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 64cd 214 4fb 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 b9 7300 8 801 66fd 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 b9 7300 8 801 6778 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 6706 b9 7300 8 801 6776 214 4fa 116 6 16 1b6 116 6 16 2f9 810c b 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 6755 214 4f9 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 bd 7300 8 801 6781 214 4f9 116 6 16 1b6 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 bd 7300 8 801 6781 214 4f7 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 7804 8 805 14 6706 b9 7300 8 801 6781 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 675d 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 109 7804 8 805 14 6a06 b9 7300 8 801 67a5 214 4fc 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20c ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 167 7300 8 801 15 903 8 4002 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 63aa 214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f6 7300 8 801 66a9 214 4fa 116 6 16 1b6 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 bd 7300 8 801 670c 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 6793 214 4fa 116 6 16 1b6 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 6406 bd 7300 8 801 67a8 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 136 7104 8 805 18 6106 b9 7300 8 801 6778 214 4f8 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 11e 7504 b 805 14 6406 b9 7300 8 801 67d8 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 6606 b9 7300 8 801 67d7 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12f 7304 8 805 14 6806 b9 7300 8 801 67cc 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7204 8 805 14 6a06 b9 7300 8 801 67e1 214 4fc 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 170 7404 8 805 15 907 8 e006 23f 3400 8 801 15 a03 8 3a02 10b a10 a 3411 a c012 e 3f13 b f15 7 1f15 6386 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 e006 e6 3600 8 801 14 3a02 66ba 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 e006 e6 3900 8 801 14 3a02 6732 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 e006 e6 3800 8 801 14 3a02 6775 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d e6 8 8 809 10f 7804 8 805 14 e006 107 3800 c 801 14 3a02 6759 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 e006 dd 3800 8 801 14 3a02 6794 214 4fa 116 6 16 1b6 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 e006 da 3800 8 801 14 3a02 67e4 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 7804 8 805 14 e006 da 3800 8 801 14 3a02 67df 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e106 fd 3800 8 801 14 3b02 679c 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e306 101 3800 8 801 14 3d02 679b 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 e606 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6595 214 4f7 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 e306 fd 3800 8 801 14 3d02 6690 214 4f8 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 e106 fd 3800 8 801 14 3b02 6709 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 18 3902 6728 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 dd06 10d 3800 8 801 14 3702 6747 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 da06 10a 3800 8 801 14 3402 6747 214 4f7 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 dd06 10a 3800 8 801 14 3702 6783 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6780 214 655 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 141 7704 8 805 14 e106 136 3700 8 801 14 3b02 65d0 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 e306 101 3700 8 801 14 3d02 6797 214 4fa 116 6 16 1b7 116 6 16 39f 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 e606 fd 3700 8 801 14 4002 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 6559 214 4ff 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 19 90b 8 d0a fd 7704 8 805 14 e306 fd 3700 8 801 18 3d02 6682 214 4fc 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 18 e106 fd 3700 8 801 14 3b02 66ff 214 65c 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10e 7704 8 805 14 df06 10a 3700 8 801 14 3902 6586 214 4ff 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10e 7704 8 805 14 dd06 10a 3700 8 801 14 3702 66e6 214 4fb 116 6 16 1b7 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 530a 132 7104 8 805 14 da06 12e 3100 8 801 14 3402 669e 214 4fb 116 6 16 1b6 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a 116 7504 8 805 14 dd06 11a 3500 8 801 14 3702 66cb 214 4fd 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a 116 7404 8 805 14 df06 11a 3400 8 801 14 3902 66cd 214 500 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 930a 127 7304 8 805 14 e106 123 3300 8 801 14 3b02 66b2 214 4fb 116 6 16 1b7 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 e306 10d 3200 8 801 14 3d02 672b 214 4fb 116 6 16 1b6 116 6 16 3a2 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 173 7404 8 805 15 907 8 ab06 173 3400 8 801 15 903 8 fc02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 638e 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 136 7604 8 805 14 ab06 e6 3600 8 801 14 fc02 666c 214 4f8 116 6 16 1b6 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 e6 3900 8 801 14 fc02 6733 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 e6 3800 8 801 14 fc02 677b 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 107 3800 8 801 14 fc02 6750 214 4f8 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 ab06 dd 3800 8 801 14 fc02 6795 214 4f7 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 ab06 da 3800 8 801 14 fc02 67e4 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 14 ab06 da 3800 8 801 14 fc02 67e4 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 ac06 fd 3800 8 801 14 fd02 679f 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 105 7804 8 805 18 ae06 fd 3800 8 801 14 ff02 679b 214 4f8 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 b106 101 3800 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 6596 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 ae06 fd 3800 8 801 14 ff02 668e 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 ac06 101 3800 8 801 14 fd02 6705 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6730 214 4fa 116 6 16 1b3 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 a806 10a 3800 8 801 14 f902 6748 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 112 7804 8 805 14 a506 10a 3800 8 801 14 f602 6738 214 4f8 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 112 7804 8 805 14 a806 10e 3800 8 801 14 f902 6783 214 4f7 116 6 16 1b6 116 6 16 2f9 800c 8 80d b7 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6781 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 ac06 136 3700 8 801 14 fd02 672d 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 679f 214 4f8 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7704 8 805 14 b106 101 3700 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6593 214 4fc 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7704 8 805 17 ae06 fd 3700 8 801 14 ff02 6688 214 4fc 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 66fa 214 4fb 116 6 16 1b6 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 672b 214 4fd 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7704 8 805 14 a806 10e 3700 8 801 14 f902 673e 214 4fa 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 112 7704 8 805 18 a506 10a 3700 8 801 14 f602 6730 214 4fb 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7704 8 805 14 a806 10a 3700 8 801 14 f902 6743 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 677c 214 4fb 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 11f 7704 8 805 14 ac06 11b 3700 8 801 14 fd02 6762 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 6797 214 4f9 116 6 16 1b6 116 6 16 3a3 810c c 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 b106 105 3700 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 654e 214 4f8 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a fd 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 6694 214 4f9 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 670b 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 129 7604 b 805 14 aa06 129 3600 8 801 14 fb02 66b1 214 4f7 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 10a 7604 8 805 14 a806 10a 3600 8 801 14 f902 66f1 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 a506 10a 3600 8 801 14 f602 66f1 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 a806 10e 3600 8 801 14 f902 66ee 214 4f7 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a 10e 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 66f0 214 4f7 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 117 7604 8 805 14 ac06 117 3600 8 801 14 fd02 66d9 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7604 8 805 14 ae06 fd 3600 8 801 14 ff02 674e 214 4fa 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 101 7604 8 805 14 b106 101 3600 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6475 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7604 8 805 14 ae06 101 3600 8 801 14 ff02 688d 214 2f5 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7604 8 805 14 ac06 fd 3600 8 801 14 fd02 68bd 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 692f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7604 8 805 14 a806 10a 3600 8 801 14 f902 694b 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d fd 8 8 809 136 7104 8 805 14 a506 132 3100 8 801 14 f602 68f3 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7504 8 805 14 a806 116 3500 8 801 14 f902 696b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 aa06 116 3400 8 801 14 fb02 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 12b 7304 8 805 14 ac06 127 3300 8 801 14 fd02 694d 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 7204 8 805 17 ae06 109 3200 8 801 14 ff02 6986 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 1d0 1000 8 801 ce c10 a 3411 a c012 a 3f13 b f15 7 1f15 6653 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 7604 8 805 14 ab06 fb 1000 8 801 68c0 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 ab06 af 1000 8 801 697d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 ab06 af 1000 8 801 69c5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d e6 8 8 809 113 7804 8 805 14 ab06 af 1000 8 801 69cb 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 106 7104 8 805 14 ab06 af 1000 8 801 69b3 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ee 7504 8 805 14 ab06 af 1000 8 801 6a1c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d ba 8 8 809 ee 7404 8 805 14 ab06 af 1000 8 801 6a19 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 ae06 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 6706 af 1000 8 801 129 c10 a 3411 a c012 a 3f13 b f15 7 1f15 671b 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 7604 8 805 14 6706 af 1000 8 801 690b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 6706 af 1000 8 801 6980 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 6706 af 1000 8 801 69c5 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 6706 af 1000 8 801 69c2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 106 7104 8 805 14 6706 af 1000 8 801 69c8 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 ee 7504 8 805 14 6706 af 1000 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 af 1000 8 801 6a19 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 6806 b2 1000 8 801 69f8 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 b3 1000 8 801 69f2 214 2f5 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 147 7300 8 801 19 903 8 ab02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 662a 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 6905 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 b9 7300 8 801 6980 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 ab06 b9 7300 8 801 695c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a fe 7104 8 805 14 ab06 ca 7300 8 801 6955 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a e6 7504 8 805 14 ab06 bd 7300 8 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 7404 8 805 18 ab06 b9 7300 8 801 697a 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 10d 7304 8 805 14 ac06 b9 7300 8 801 695c 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 115 7204 8 805 14 ae06 b9 7300 8 801 699b 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 147 7300 8 801 15 903 8 6702 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6540 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 155 7604 8 805 15 907 8 2e06 bd 7300 8 801 6886 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 b9 7300 8 801 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 159 7804 8 805 15 907 8 1d06 bd 7300 8 801 6946 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 1d06 bd 7300 8 801 69b2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 1d06 ca 7300 8 801 69c2 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 bd 7300 8 801 6a16 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 18 1d06 b9 7300 8 801 6a19 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 1e06 b9 7300 8 801 69f8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 2006 b9 7300 8 801 69f8 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 2306 14b 7300 8 801 15 903 8 ab02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ed 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 2006 bd 7300 8 801 68e9 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 1e06 bc 7300 8 801 695e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 1c06 bd 7300 8 801 6994 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 1a06 bd 7300 8 801 69b0 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 11d 7804 8 805 14 1706 c6 7300 8 801 6989 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 69e9 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 69e9 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 69c2 214 2f2 116 6 16 1b3 116 a 16 2f9 800c 8 80d bb 8 8 809 105 7704 8 805 14 2006 b9 7300 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a9 7404 8 805 15 907 8 4006 16d 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6617 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 123 7604 8 805 14 4006 128 7300 8 801 15 903 8 2e02 6839 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 4006 c4 7300 8 801 696e 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 c 805 14 4006 124 7300 8 801 15 903 8 1d02 6933 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 4006 b9 7300 8 801 69b6 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 4006 b9 7300 8 801 69a7 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f3 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 69da 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6a10 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7304 8 805 14 4106 b9 7300 8 801 69ef 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 b9 7300 8 801 69ec 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 6706 b9 7300 8 801 128 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d8 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 7604 8 805 14 6706 b9 7300 8 801 6902 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 7904 8 805 14 6706 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 7804 8 805 14 6706 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 6959 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 c0 7300 8 801 6983 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 b9 7300 8 801 698c 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 bd 7300 8 801 6964 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7804 8 805 14 6a06 bd 7300 8 801 69a7 214 2f1 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 17c 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659d 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f2 7300 8 801 68b1 214 2f3 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 8 801 691d 214 2f3 116 6 16 1b3 116 6 16 32c 800c 8 80d 10e 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 696b 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 112 7804 8 805 14 6406 b9 7300 8 801 69b3 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d fd 8 8 809 136 7104 8 805 14 6106 c6 7300 8 801 697a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 7504 8 805 14 6406 bd 7300 8 801 69a3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 11e 7404 8 805 14 6606 bd 7300 8 801 69e0 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 12b 7304 8 805 14 6806 bc 7300 8 801 69d1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 b9 7300 8 801 69e9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 c90a 170 7404 8 805 15 807 8 f006 20a 3400 8 801 15 903 8 1d02 104 810 a 3411 a f012 a 3e13 b f15 7 1f15 65d4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 80b 8 d50a e6 7604 8 805 14 f006 e6 3600 8 801 14 1d02 68cb 214 2f1 116 6 16 1b7 116 6 16 340 800c 8 80d 134 ff08 8 809 15 80b 8 e20a ea 7904 8 805 14 f006 e6 3900 8 801 14 1d02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 f00a e6 7804 8 805 14 f006 e6 3800 8 801 14 1d02 6940 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 80b 8 fe0a 107 7804 8 805 14 f006 107 3800 8 801 14 1d02 68fe 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a da 7804 8 805 14 f006 da 3800 8 801 18 1d02 6957 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 695b 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a de 7804 8 805 14 f006 da 3800 8 801 14 1d02 6957 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 6913 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 104 8 8 809 109 7804 8 805 14 f306 fd 3800 8 801 14 2002 6955 214 2f1 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 f606 fd 3800 8 801 14 2302 c6 810 a 3411 a f012 a 3e13 b f15 7 1f15 66b2 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 80b 8 d50a fd 7804 8 805 14 f306 fd 3800 8 801 14 2002 689e 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 80b 8 e20a 101 7804 8 805 14 f106 fd 3800 8 801 14 1e02 68cd 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 f00a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68f8 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 19 80b 8 fe0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 68f8 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a 10a 7804 8 805 14 ea06 10a 3800 8 801 14 1702 68fb 214 2f2 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 1d0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 68fb 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10a 7804 8 805 14 ef06 10e 3800 8 801 14 1c02 68f7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 136 7704 8 805 14 f106 136 3700 8 801 14 1e02 68a1 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 104 8 8 809 109 7704 8 805 14 f306 fd 3700 8 801 14 2002 6955 214 2f1 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d8 ff08 8 809 15 90b 8 400a fd 7704 8 805 14 f606 101 3700 8 801 14 2302 c6 d10 a 3411 a e012 a 3f13 b f15 7 1f15 66fb 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 c 809 15 90b 8 530a fd 7704 8 805 14 f306 fd 3700 8 801 14 2002 6893 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 670a fd 7704 8 805 14 f106 101 3700 8 801 14 1e02 68c6 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 7d0a 10a 7704 8 805 14 ef06 10e 3700 8 801 14 1c02 68ea 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a 10e 7704 8 805 14 ed06 10a 3700 8 801 14 1a02 68f3 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 ab0a 12e 7104 8 805 14 ea06 132 3100 8 801 14 1702 68a7 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 c50a 116 7504 8 805 14 ed06 11a 3500 8 801 14 1a02 68d5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 11a 7404 8 805 14 ef06 116 3400 8 801 14 1c02 68d8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a 123 7304 8 805 14 f106 123 3300 c 801 14 1e02 68bc 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 111 7204 8 805 14 f306 10d 3200 8 801 14 2002 6932 214 2f2 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 790e 225 ff08 8 809 15 90b 8 930a 170 7404 8 805 15 807 8 fe06 174 3400 8 801 15 903 8 4002 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 65b1 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 12d 7604 8 805 14 fe06 12d 3600 8 801 14 4002 683b 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a e6 7904 8 805 14 fe06 e6 3900 8 801 14 4002 68fe 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a e6 7804 8 805 14 fe06 e6 3800 8 801 14 4002 6940 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a 10b 7804 8 805 14 fe06 107 3800 8 801 14 4002 68fb 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 a0b 8 1a0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6958 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6955 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6959 214 2f0 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4102 6913 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 109 7804 8 805 14 ff06 fd 3800 8 801 14 4302 6952 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 209 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 ff06 101 3800 8 801 14 4602 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 66c1 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7804 8 805 14 ff06 101 3800 8 801 14 4302 6892 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4102 690a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10e 7804 8 805 14 f806 10a 3800 8 801 14 3a02 67d5 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 687d 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 e20a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 68ef 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 136 7704 8 805 14 ff06 13a 3700 8 801 14 4102 6897 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 109 7704 8 805 14 ff06 101 3700 8 801 14 4302 6949 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 155 8 8 809 109 7704 8 805 14 ff06 fd 3700 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6810 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 10c 7704 8 805 14 ff06 fd 3700 8 801 14 4302 694d 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 ff06 fd 3700 8 801 14 4102 699e 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7704 8 805 14 fd06 10e 3700 8 801 14 3f02 697d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7704 8 805 14 fb06 10e 3700 8 801 14 3d02 6983 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a 10a 7704 8 805 14 f806 10e 3700 8 801 14 3a02 6874 214 2f6 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c e 132 ff08 8 809 15 80b 8 d50a 10a 7704 8 805 14 fb06 10e 3700 8 801 14 3d02 6872 214 2f4 116 6 16 1b3 116 6 16 301 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10e 7704 8 805 14 fd06 10a 3700 8 801 14 3f02 68ea 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 11b 7704 8 805 14 ff06 117 3700 8 801 14 4102 68d2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 109 7704 8 805 14 ff06 fd 3700 c 801 14 4302 6941 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 19 90b 8 400a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4602 ca 910 a 3411 a c012 a 3f13 b f15 7 1f15 66eb 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 101 7704 8 805 14 ff06 101 3700 8 801 14 4302 688f 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 90b 8 670a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4102 690a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 129 7604 8 805 14 fd06 129 3600 8 801 14 3f02 68b3 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 693a 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10e 7604 8 805 14 f806 10a 3600 8 801 14 3a02 67d2 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 687d 214 2f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 117 7604 8 805 14 ff06 117 3600 8 801 14 4102 68d7 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 109 7604 8 805 14 ff06 101 3600 8 801 14 4302 694c 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 20c ff08 8 809 15 90b 8 930a 101 7604 8 805 14 ff06 fd 3600 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66c9 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 105 7604 8 805 14 ff06 fd 3600 8 801 14 4302 688a 214 2f2 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 101 7604 8 805 14 ff06 fd 3600 8 801 14 4102 68c3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 10a 7604 8 805 14 fd06 10a 3600 8 801 18 3f02 68ec 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 137 ff08 8 809 15 90b 8 fc0a 10a 7604 8 805 14 fb06 10e 3600 8 801 14 3d02 68ed 214 2f3 116 6 16 1b6 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a 132 7104 8 805 14 f806 12e 3100 8 801 14 3a02 68a8 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a 116 7504 8 805 14 fb06 116 3500 8 801 14 3d02 68db 214 2f6 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 5c0a 116 7404 8 805 14 fd06 11a 3400 8 801 14 3f02 68d5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a 127 7304 8 805 14 ff06 123 3300 8 801 14 4102 68c0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 119 7204 8 805 14 ff06 109 3200 8 801 14 4302 6932 214 2f6 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f c 30e 209 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 ab06 158 1000 8 801 18 4602 157 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6552 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 f5 1000 8 801 14 4302 68b2 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 f5 1000 8 801 14 4102 6927 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 ab06 10a 1000 8 801 14 3f02 6957 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 7804 8 805 14 ab06 102 1000 8 801 14 3d02 695a 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 ab06 102 1000 8 801 14 3a02 694e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 ab06 102 1000 8 801 14 3d02 69b4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 ab06 106 1000 8 801 14 3f02 69b1 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 113 1000 8 801 14 4102 697e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 ae06 f5 1000 8 801 14 4302 6999 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 6706 f5 1000 8 801 14 4602 126 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66c9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 6706 f5 1000 8 801 14 4302 68af 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 6706 f5 1000 8 801 14 4102 692a 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10d 8 8 809 ee 7804 8 805 14 6706 102 1000 8 801 14 3f02 6960 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 6706 106 1000 8 801 14 3d02 6956 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 7104 8 805 14 6706 106 1000 8 801 14 3a02 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 6706 106 1000 8 801 14 3d02 6975 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 106 1000 8 801 14 3f02 69b1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7304 8 805 14 6806 10f 1000 8 801 14 4102 6981 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 f5 1000 8 801 14 4302 699c 214 2f3 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f c 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 265 7300 8 801 15 903 8 ab02 121 c10 e 3411 a c012 a 3f13 b f15 7 1f15 650f 214 2f2 116 6 16 1b3 116 6 16 35c 810c c 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 690b 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 bd 7300 8 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 18 ab06 b9 7300 8 801 695c 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 102 7104 8 805 14 ab06 c6 7300 8 801 6953 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a ea 7504 8 805 14 ab06 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 b9 7300 8 801 695c 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 ae06 b9 7300 8 801 699e 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 147 7300 8 801 15 903 8 6702 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 159 7604 8 805 15 907 8 2e06 b9 7300 8 801 6889 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 bd 7300 8 801 696d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 15d 7804 8 805 15 907 8 1d06 b9 7300 8 801 6944 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 1d06 b9 7300 8 801 69b6 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 e6 7804 8 805 14 1d06 c6 7300 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 105 7804 8 805 14 1e06 b9 7300 8 801 69fb 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 2006 b9 7300 8 801 69f7 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 2306 147 7300 8 801 15 903 8 ab02 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ed 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 2006 b9 7300 8 801 68e7 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 1e06 b9 7300 8 801 695f 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 6998 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 69b3 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 107 8 8 809 119 7804 8 805 14 1706 c6 7300 8 801 698c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 69ec 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 69ef 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 69bf 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 2006 bd 7300 8 801 69f7 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a8 7404 8 805 15 907 8 4006 16d 7300 8 801 15 903 8 4002 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6612 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b c 7d0a 115 7604 8 805 14 4006 128 7300 8 801 15 903 8 2e02 6846 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e9 7904 8 805 14 4006 c0 7300 8 801 6971 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 4006 124 7300 8 801 15 903 8 1d02 6930 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 4006 b9 7300 8 801 69b9 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 4006 b9 7300 8 801 69ad 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 69d7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6a0d 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 7304 8 805 14 4106 bd 7300 8 801 69ec 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 bd 7300 8 801 69ec 214 2f5 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 170 7404 8 805 15 907 8 6706 b9 7300 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 66cf 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 b9 7300 8 801 6908 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 b9 7300 8 801 6980 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 6706 b9 7300 8 801 697c 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 695f 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 c4 7300 8 801 697f 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 bd 7300 8 801 698c 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 7804 8 805 14 6706 b9 7300 8 801 6983 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 6965 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 104 8 8 809 109 7804 8 805 14 6a06 b9 7300 8 801 69aa 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 17c 7300 8 801 15 903 8 4002 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659d 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 135 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f2 7300 c 801 68b0 214 2f2 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 c 801 6916 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 699b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 6406 bd 7300 8 801 69af 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 136 7104 8 805 18 6106 c6 7300 8 801 6971 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 122 7504 8 805 14 6406 b9 7300 8 801 6992 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 6606 b9 7300 8 801 69dd 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12f 7304 8 805 14 6806 b9 7300 8 801 69d1 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 b9 7300 8 801 69ef 214 2f2 116 6 16 1b3 116 6 16 35d 800c c 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 170 7404 8 805 15 907 8 e006 23e 3400 8 801 15 a03 8 3a02 10b a10 a 3411 a c012 a 3f13 f f15 7 1f15 658e 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 e006 e6 3600 8 801 14 3a02 68c2 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 e006 e6 3900 8 801 14 3a02 693a 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 e006 e6 3800 8 801 14 3a02 697f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 e006 10b 3800 8 801 14 3a02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 e006 de 3800 8 801 14 3a02 699c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 e006 da 3800 8 801 14 3a02 69e8 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 7804 8 805 14 e006 da 3800 8 801 14 3a02 69e5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e106 fd 3800 8 801 14 3b02 69a6 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e306 101 3800 8 801 14 3d02 699f 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 e606 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67a0 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 e306 fd 3800 8 801 14 3d02 6895 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 e106 fd 3800 8 801 14 3b02 690d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6937 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 112 7804 8 805 14 dd06 10e 3800 8 801 14 3702 6951 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 116 7804 8 805 14 da06 10a 3800 8 801 14 3402 693a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 dd06 10a 3800 8 801 14 3702 6952 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6988 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 e106 13a 3700 8 801 14 3b02 6930 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 e306 101 3700 8 801 14 3d02 699f 214 2f2 116 6 16 1b7 116 6 16 39f 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 e606 fd 3700 8 801 14 4002 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 675f 214 2f7 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 19 90b 8 d0a fd 7704 8 805 14 e306 fd 3700 8 801 18 3d02 688d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 18 e106 fd 3700 8 801 14 3b02 6906 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a 10a 7704 8 805 14 df06 10e 3700 8 801 14 3902 68ed 214 2f6 116 6 16 1b3 116 6 16 300 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10d 7704 8 805 14 dd06 10a 3700 8 801 14 3702 68ee 214 2f3 116 6 16 1b7 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 530a 132 7104 8 805 14 da06 12e 3100 8 801 14 3402 68a6 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a 116 7504 8 805 14 dd06 11a 3500 8 801 14 3702 68d5 214 2f7 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a 116 7404 8 805 14 df06 11a 3400 8 801 14 3902 68d2 214 2f7 116 6 16 1b3 116 6 16 300 810c 8 80d 134 ff08 8 809 15 90b 8 930a 127 7304 8 805 14 e106 123 3300 8 801 14 3b02 68bb 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 e306 10d 3200 8 801 14 3d02 6933 214 2f5 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 174 3400 8 801 15 903 8 fc02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 657a 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 136 7604 8 805 14 ab06 e6 3600 8 801 14 fc02 6874 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 e6 3900 8 801 14 fc02 693d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 e6 3800 8 801 14 fc02 697c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 107 3800 8 801 14 fc02 695c 214 2f0 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 ab06 de 3800 8 801 14 fc02 699a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 ab06 da 3800 8 801 14 fc02 69e8 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 ab06 da 3800 8 801 14 fc02 69eb 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 ac06 fd 3800 8 801 14 fd02 69a4 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 105 7804 8 805 14 ae06 101 3800 8 801 14 ff02 69a3 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 b106 101 3800 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 679d 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 ae06 fd 3800 8 801 14 ff02 6898 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 ac06 101 3800 8 801 14 fd02 6907 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6937 214 2f1 116 a 16 1b3 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 a806 10a 3800 8 801 14 f902 694f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 112 7804 8 805 14 a506 10a 3800 8 801 14 f602 693f 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 112 7804 8 805 14 a806 10e 3800 8 801 14 f902 6988 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 698b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 ac06 136 3700 8 801 14 fd02 6931 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 69aa 214 2f1 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7704 8 805 14 b106 101 3700 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6797 214 2f7 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7704 8 805 18 ae06 fd 3700 8 801 14 ff02 688a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 6908 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 692f 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7704 8 805 14 a806 10e 3700 8 801 14 f902 6944 214 2f4 116 6 16 1b3 116 9 16 2fd 800c 8 80d 103 8 8 809 112 7704 8 805 18 a506 10a 3700 8 801 14 f602 6938 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 116 7704 8 805 14 a806 10a 3700 8 801 14 f902 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d ba 8 8 809 112 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 6984 214 2f4 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 11f 7704 8 805 14 ac06 11b 3700 8 801 14 fd02 6968 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 109 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 699e 214 2f2 116 6 16 1b7 116 6 16 3a2 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 b106 105 3700 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 6752 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a fd 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 689b 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 6916 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 129 7604 b 805 14 aa06 129 3600 8 801 14 fb02 68b6 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 134 ff08 c 809 15 90b 8 400a 10a 7604 8 805 14 a806 10a 3600 8 801 14 f902 68f8 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 a506 10a 3600 8 801 14 f602 68f8 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 a806 10a 3600 c 801 14 f902 68fb 214 2f0 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a 10e 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 68f2 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 117 7604 8 805 14 ac06 117 3600 8 801 14 fd02 68dd 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7604 8 805 14 ae06 fd 3600 8 801 14 ff02 6955 214 2f3 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 101 7604 8 805 14 b106 101 3600 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6680 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7604 8 805 14 ae06 101 3600 8 801 14 ff02 6889 214 2f7 116 6 16 1b3 116 6 16 342 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7604 8 805 14 ac06 101 3600 8 801 14 fd02 68bd 214 2f5 116 6 16 1b3 116 9 16 2fd 800c 8 80d 10a 8 8 809 112 7604 8 805 18 aa06 10a 3600 8 801 14 fb02 692f 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7604 8 805 14 a806 10a 3600 8 801 14 f902 694a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 101 8 8 809 136 7104 8 805 14 a506 132 3100 8 801 14 f602 68f0 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d 103 8 8 809 11e 7504 8 805 14 a806 11a 3500 8 801 14 f902 691d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 aa06 116 3400 8 801 14 fb02 696b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 12b 7304 8 805 14 ac06 123 3300 8 801 14 fd02 6954 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 111 7204 8 805 14 ae06 10d 3200 8 801 14 ff02 6980 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 1d0 1000 8 801 ce c10 a 3411 a c012 a 3f13 b f15 7 1f15 6657 214 2f3 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 ff 1000 8 801 68bc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 b3 1000 8 801 697f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 b3 1000 8 801 69c5 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 b2 1000 8 801 69bc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 ab06 af 1000 8 801 69b3 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7504 8 805 14 ab06 af 1000 8 801 6a19 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7404 8 805 14 ab06 af 1000 8 801 6a19 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7304 8 805 14 ac06 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7204 8 805 14 ae06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 6706 af 1000 8 801 129 c10 a 3411 a c012 a 3f13 b f15 7 1f15 671a 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 7604 c 805 14 6706 af 1000 8 801 6907 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 18 6706 af 1000 8 801 6980 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 6706 af 1000 8 801 69c5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 113 7804 8 805 14 6706 af 1000 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 6706 af 1000 8 801 69b6 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 ee 7504 8 805 14 6706 af 1000 8 801 69e0 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 7404 8 805 14 6706 af 1000 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7304 8 805 14 6806 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 178 7404 8 805 15 907 8 ab06 147 7300 8 801 15 903 8 ab02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 662d 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 7604 8 805 14 ab06 b9 7300 8 801 6902 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e9 7804 8 805 14 ab06 b9 7300 8 801 697d 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 ab06 b9 7300 8 801 695c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a fe 7104 8 805 14 ab06 c6 7300 8 801 6956 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a e6 7504 8 805 14 ab06 b9 7300 8 801 6980 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 c 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 bd 7300 8 801 6958 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 111 7204 8 805 14 ae06 bd 7300 8 801 699b 214 2f1 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 19a 7404 8 805 15 907 8 4006 14b 7300 8 801 15 903 8 6702 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6528 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 155 7604 8 805 15 907 8 2e06 b9 7300 8 801 688a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 b9 7300 8 801 696e 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 159 7804 8 805 15 907 8 1d06 b9 7300 8 801 694a 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 1d06 b9 7300 8 801 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 1d06 c6 7300 8 801 69c2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 b9 7300 c 801 6a1b 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 1e06 bd 7300 8 801 69f5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 2006 b9 7300 8 801 69f8 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 2306 147 7300 8 801 15 903 8 ab02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ea 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 2006 b9 7300 8 801 68ed 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7804 8 805 14 1e06 b9 7300 8 801 695f 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 699b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 69b3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 119 7804 8 805 14 1706 ca 7300 8 801 6988 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 1a06 bd 7300 8 801 69e9 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 18 1c06 b9 7300 8 801 69e9 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 142 7704 8 805 14 1e06 b9 7300 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 2006 b9 7300 8 801 69f8 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 1a5 7404 8 805 15 907 8 4006 171 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6615 214 2f3 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 11f 7604 8 805 14 4006 12b 7300 8 801 15 903 8 2e02 683c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 4006 c0 7300 8 801 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 4006 127 7300 8 801 15 903 8 1d02 6932 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 7804 8 805 14 4006 bd 7300 8 801 69b3 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 4006 b9 7300 8 801 69aa 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 f1 7504 8 805 14 4006 b9 7300 8 801 69d7 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7404 8 805 14 4006 b9 7300 8 801 6a10 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 115 7304 8 805 14 4106 b9 7300 8 801 69ec 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7204 8 805 14 4306 b9 7300 8 801 69ec 214 2f3 116 6 16 1b7 116 6 16 3a2 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 6706 b9 7300 8 801 128 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 bd 7300 8 801 6907 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 bd 7300 8 801 697d 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 7804 8 805 14 6706 b9 7300 8 801 697a 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10b 7804 8 805 14 6706 b9 7300 8 801 695c 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a de 7804 8 805 14 6706 c0 7300 8 801 6983 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 8 801 6965 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7804 8 805 14 6a06 b9 7300 8 801 69ac 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 178 7300 8 801 15 903 8 4002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659c 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 6a06 f2 7300 8 801 68ae 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 6920 214 2f5 116 6 16 1b3 116 6 16 336 800c 8 80d 10a 8 8 809 116 7804 8 805 14 6606 b9 7300 8 801 695c 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 6406 b9 7300 8 801 69b3 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d fd 8 8 809 136 7104 8 805 14 6106 c6 7300 8 801 6977 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 106 8 8 809 11e 7504 8 805 14 6406 b9 7300 8 801 6998 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 11e 7404 8 805 14 6606 b9 7300 8 801 69e0 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 12b 7304 8 805 14 6806 b9 7300 8 801 69d4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 bd 7300 8 801 69ec 214 2f1 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 790e 132 ff08 8 809 15 80b 8 c90a 174 7404 8 805 15 807 8 f006 206 3400 c 801 15 903 8 1d02 104 810 a 3411 a f012 a 3e13 b f15 7 1f15 65cb 214 2f4 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a e6 7604 8 805 14 f006 e6 3600 8 801 14 1d02 68c2 214 2f0 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a e6 7904 8 805 14 f006 ea 3900 8 801 14 1d02 68f4 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a e6 7804 8 805 14 f006 e6 3800 8 801 14 1d02 693a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 10f 7804 8 805 14 f006 10b 3800 8 801 14 1d02 693c 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 6838 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 68da 214 2f0 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 6910 214 2f3 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 690d 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 105 7804 8 805 14 f306 101 3800 8 801 14 2002 6951 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a fd 7804 8 805 14 f606 fd 3800 8 801 14 2302 c9 810 a 3411 a f012 a 3e13 b f15 7 1f15 66f7 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a fd 7804 8 805 14 f306 fd 3800 8 801 14 2002 6895 214 2f1 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 68c8 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13d ff08 8 809 15 90b 8 7d0a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68f5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 112 7804 8 805 14 ed06 10e 3800 8 801 14 1a02 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1a8 ff08 8 809 15 90b 8 930a 10a 7804 8 805 14 ea06 10a 3800 8 801 14 1702 6808 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 6886 214 2f0 116 6 16 1b3 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68b0 214 2f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 136 7704 8 805 14 f106 136 3700 8 801 14 1e02 68a1 214 2f0 116 6 16 1b3 116 6 16 2fc 800c 8 80d 104 8 8 809 105 7704 8 805 14 f306 101 3700 8 801 14 2002 6957 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1f3 ff08 8 809 15 80b 8 c90a fd 7704 8 805 14 f606 fd 3700 8 801 14 2302 c9 d10 a 3411 a e012 a 3f13 b f15 7 1f15 66dd 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7704 8 805 14 f306 fd 3700 8 801 14 2002 688d 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 c 809 15 80b 8 e20a fd 7704 8 805 14 f106 fd 3700 8 801 14 1e02 68c0 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 10a 7704 8 805 14 ef06 10d 3700 8 801 14 1c02 68ea 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d 10a 8 8 809 112 7704 8 805 14 ed06 10e 3700 8 801 14 1a02 692f 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 12e 7104 8 805 14 ea06 131 3100 8 801 14 1702 6781 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 116 7504 8 805 14 ed06 11a 3500 8 801 14 1a02 685d 214 2f5 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 90b 8 670a 119 7404 8 805 14 ef06 116 3400 8 801 14 1c02 688a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 127 7304 8 805 14 f106 123 3300 8 801 14 1e02 68ba 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 111 7204 8 805 14 f306 109 3200 8 801 14 2002 6933 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 174 7404 8 805 15 807 8 fe06 174 3400 8 801 15 903 8 4002 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 65f2 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 12c 7604 8 805 14 fe06 128 3600 8 801 14 4002 683e 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 13a ff08 8 809 19 90b 8 670a e6 7904 8 805 14 fe06 e6 3900 8 801 14 4002 68f5 214 2f3 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a e6 7804 8 805 14 fe06 e6 3800 8 801 14 4002 6937 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 10f 7804 8 805 14 fe06 107 3800 8 801 14 4002 6940 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 c 809 15 90b 8 930a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6802 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 68e3 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6916 214 2f3 116 6 16 1b3 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a fd 7804 8 805 14 ff06 101 3800 8 801 14 4102 68c8 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 109 7804 8 805 14 ff06 101 3800 8 801 14 4302 694c 214 2f0 116 6 16 1b7 116 6 16 39f 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4602 ca 910 a 3411 a c012 a 3f13 b f15 7 1f15 6676 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4302 688f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a fd 7804 8 805 14 ff06 101 3800 8 801 14 4102 690a 214 2f1 116 6 16 1b6 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 67d5 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 687d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 f806 10a 3800 8 801 14 3a02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 be0a 10a 7804 8 805 14 fb06 10e 3800 8 801 14 3d02 68ef 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1e4 ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 67cf 214 2f1 116 a 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 136 7704 8 805 14 ff06 136 3700 8 801 14 4102 6823 214 2f3 116 6 16 1b3 116 6 16 336 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4302 68d1 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 105 7704 8 805 14 ff06 fd 3700 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66f2 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 101 7704 8 805 14 ff06 101 3700 8 801 14 4302 688a 214 2f4 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4102 68bd 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 10e 7704 8 805 14 fd06 10a 3700 8 801 14 3f02 68ea 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 7704 8 805 14 fb06 10a 3700 8 801 18 3d02 692c 214 2f4 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10d 7704 8 805 14 f806 10a 3700 8 801 14 3a02 67cd 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 c 809 15 80b 8 d50a 10a 7704 8 805 14 fb06 10a 3700 8 801 14 3d02 6878 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 13e ff08 8 809 15 80b 8 e20a 10a 7704 8 805 14 fd06 10e 3700 8 801 14 3f02 68a5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 117 7704 8 805 14 ff06 11b 3700 8 801 14 4102 68cc 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 10d 7704 8 805 14 ff06 fd 3700 8 801 14 4302 6944 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dc ff08 8 809 15 90b 8 400a 101 7704 8 805 14 ff06 101 3700 8 801 14 4602 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 66ec 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4302 6895 214 2f3 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 7704 8 805 14 ff06 fd 3700 8 801 14 4102 68c5 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 129 7604 8 805 14 fd06 12d 3600 8 801 14 3f02 68b3 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 6937 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10a 7604 8 805 14 f806 10a 3600 8 801 14 3a02 67d2 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 fb06 10e 3600 8 801 14 3d02 687c 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 13a ff08 8 809 15 90b 8 670a 10e 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68a7 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 c 809 15 90b 8 7d0a 117 7604 8 805 14 ff06 117 3600 8 801 14 4102 68da 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 109 7604 8 805 14 ff06 fd 3600 8 801 14 4302 694c 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a 105 7604 8 805 14 ff06 fd 3600 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66c5 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 101 7604 8 805 14 ff06 101 3600 8 801 14 4302 688c 214 2f6 116 6 16 1b3 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 c50a fd 7604 8 805 14 ff06 101 3600 8 801 14 4102 68c0 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 10e 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 116 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 6935 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 23c ff08 8 809 15 90b 8 930a 132 7104 8 805 14 f806 12e 3100 8 801 14 3a02 6722 214 2f4 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 11a 7504 8 805 14 fb06 116 3500 8 801 14 3d02 6863 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 19 90b 8 c50a 116 7404 8 805 14 fd06 116 3400 8 801 14 3f02 6898 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 123 7304 8 805 14 ff06 127 3300 8 801 14 4102 6875 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d 104 8 8 809 115 7204 8 805 14 ff06 10d 3200 8 801 14 4302 6932 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 208 ff08 8 809 15 90b 8 670a 197 7104 8 805 19 807 8 fe06 197 3100 8 801 15 903 8 4002 111 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6533 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a c7 7104 8 805 14 fe06 cb 3100 8 801 14 4002 68fc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a c7 7104 8 805 14 fe06 cb 3100 8 801 14 4002 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 cf 7104 8 805 14 fe06 cb 3100 8 801 14 4002 69b7 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d e6 8 8 809 cf 7104 8 805 14 fe06 cb 3100 8 801 14 4002 69db 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 69bd 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 6a0e 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 6a0e 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 f2 7104 8 805 14 ff06 ea 3100 8 801 14 4102 69c9 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 f6 7104 8 805 14 ff06 ea 3100 8 801 14 4302 69c3 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a ee 7104 8 805 14 ff06 ee 3100 8 801 14 4602 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6762 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 7104 8 805 14 ff06 ea 3100 8 801 14 4302 68b5 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ee 7104 8 805 14 ff06 ea 3100 8 801 14 4102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 7104 8 805 14 fd06 f7 3100 8 801 14 3f02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 7104 8 805 14 fb06 f7 3100 8 801 14 3d02 696f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 c 809 10c 7104 8 805 14 f806 104 3100 8 801 14 3a02 6957 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ff 7104 8 805 14 fb06 f7 3100 8 801 14 3d02 69ae 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ff 7104 8 805 14 fd06 f7 3100 8 801 14 3f02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 10c 7104 8 805 14 ff06 104 3100 8 801 14 4102 6992 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f6 7104 8 805 14 ff06 ee 3100 8 801 14 4302 69bf 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6510 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c4 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693f 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 137 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6956 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 18 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 6912 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 109 3804 8 805 14 6a06 fd 3800 8 801 14 e302 694e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65ee 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691e 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 130 3200 8 801 14 df02 693f 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6924 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6939 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6950 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694e 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 e9 3500 8 801 14 fc02 69cf 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 114 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c 30e 132 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 697d 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 125 3104 8 805 14 6d06 121 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66b7 214 2f3 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 10d 3504 8 805 14 6a06 109 3500 8 801 14 e302 687e 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 10d 3404 8 805 14 6806 109 3400 8 801 14 e102 68f4 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a 116 3204 8 805 14 6106 116 3200 8 801 14 da02 68d9 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 131 3200 8 801 14 df02 68ab 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13d 3200 8 801 14 e102 6893 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 652b 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68bb 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 112 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 102 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 101 3800 8 801 14 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699c 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 e c012 a 3f13 b f15 7 1f15 673e 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6894 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13d ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 6909 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 3804 8 805 14 6606 10a 3800 8 801 14 df02 6933 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ea 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6957 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 112 3804 8 805 14 6106 10a 3800 b 801 14 da02 6938 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6406 10e 3800 8 801 14 dd02 6983 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6606 10e 3800 8 801 14 df02 6987 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 3704 8 805 18 6806 136 3700 8 801 14 e102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3704 8 805 14 6a06 fd 3700 8 801 14 e302 699f 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 135 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 121 3100 8 801 14 e602 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f9 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 18 df02 691a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6406 11a 3200 8 801 14 dd02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693f 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 6606 12d 3200 8 801 14 df02 693f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6924 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f3 116 6 16 1b3 116 6 16 3a3 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6600 214 2f2 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 3604 8 805 14 7d06 ea 3600 8 801 14 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 3904 8 805 14 7d06 ea 3900 8 801 14 fc02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 7d06 e9 3800 8 801 14 fc02 6938 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 3804 8 805 18 7d06 107 3800 8 801 14 fc02 68fa 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a da 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690f 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65ee 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 6875 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 109 3404 8 805 14 7e06 10d 3400 8 801 14 fd02 68ed 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 11e 3304 b 805 14 7c06 116 3300 8 801 14 fb02 691b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 122 3204 8 805 14 7a06 116 3200 8 801 14 f902 6933 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 122 3204 8 805 14 7706 116 3200 8 801 14 f602 6921 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 7a06 12d 3200 8 801 14 f902 693f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 135 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 6942 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 142 3204 8 805 14 7e06 13a 3200 8 801 14 fd02 6927 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 128 3204 8 805 14 8006 120 3200 c 801 14 ff02 6956 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663e 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68be 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f1 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 6978 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6954 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 107 8 8 809 106 3104 8 805 14 7d06 fe 3100 8 801 14 fc02 6954 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ee 3504 8 805 14 7d06 e6 3500 8 801 14 fc02 69cf 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ee 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 7e06 10d 3300 8 801 14 fd02 6986 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 698a 214 2f1 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6639 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a e6 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e9 3904 8 805 14 6706 e6 3900 8 801 14 e002 6936 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 106 8 8 809 106 3104 8 805 14 6706 fe 3100 8 801 14 e002 6954 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 3504 8 805 14 6706 e6 3500 8 801 14 e002 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 6706 e6 3400 8 801 18 e002 69cb 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 3304 8 805 14 6806 10d 3300 8 801 14 e102 6987 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 6a06 10d 3200 8 801 14 e302 6987 214 2f4 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65bb 214 2f5 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 10e 3204 8 805 14 6706 10e 3200 8 801 14 e002 6873 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697e 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6978 214 2f3 116 6 16 1b7 116 6 16 2f9 810c c 80d 134 ff08 8 809 15 90b 8 400a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 ca 3200 8 801 14 e002 697e 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 f6 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6975 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6648 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ea 3200 8 801 18 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 68e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6956 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 ff 3204 8 805 14 6106 fa 3200 8 801 14 da02 6963 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 110 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 b 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f2 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6768 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6957 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d e6 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6978 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6960 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ab 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c3 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674d 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6972 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ae 214 2f3 116 6 16 1b3 116 9 16 2f9 800c 8 80d ba 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 18 e302 69c2 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6510 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c7 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 6939 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 c 809 15 90b 8 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6954 214 2f3 116 6 16 1b6 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 690f 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 105 3804 8 805 18 6a06 fd 3800 8 801 14 e302 694e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f6 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 124 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65f1 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6939 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 691d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693c 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12b 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 10a 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 6951 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69c9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 18 7d06 e6 3400 8 801 14 fc02 69cf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3304 8 805 14 7e06 109 3300 8 801 14 fd02 6987 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 6977 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6951 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 c 809 105 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 18 6d06 121 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ba 214 2f2 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 c 805 14 6a06 109 3500 8 801 14 e302 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 18 6806 109 3400 8 801 14 e102 68f6 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d6 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68df 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 530a 116 3204 8 805 14 6106 116 3200 8 801 14 da02 68d9 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 b 801 14 df02 68ab 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6893 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68bb 214 2f1 116 a 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68f4 214 2f5 116 6 16 1b3 116 6 16 32b 800c 8 80d 10a 8 8 809 f1 3804 8 805 14 6706 e6 3800 8 801 14 e002 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 6706 107 3800 8 801 14 e002 6951 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d fd 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69a5 214 2f2 116 6 16 1b3 116 a 16 2f9 800c 8 80d f4 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 101 3800 8 801 14 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699c 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 c90a 100 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6897 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 138 ff08 8 809 15 80b 8 e20a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 68c4 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 f00a 10a 3804 8 805 14 6606 10a 3800 8 801 14 df02 68f7 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 fe0a 10a 3804 8 805 14 6406 10a 3800 8 801 14 dd02 68f7 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 d0a 10a 3804 8 805 14 6106 10e 3800 8 801 14 da02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a 10a 3804 8 805 14 6406 10e 3800 8 801 14 dd02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10a 3804 8 805 14 6606 10e 3800 8 801 14 df02 68f7 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 13a 3704 8 805 14 6806 136 3700 8 801 14 e102 6897 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 109 3704 8 805 14 6a06 fd 3700 8 801 14 e302 6951 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 226 ff08 8 809 15 80b 8 c90a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6606 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6882 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 138 ff08 8 809 15 80b 8 e20a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68af 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 80b 8 f00a 116 3304 8 805 14 6606 11a 3300 8 801 14 df02 68db 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 80b 8 fe0a 116 3204 8 805 14 6406 11a 3200 8 801 14 dd02 68db 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a 116 3204 8 805 14 6106 11a 3200 8 801 14 da02 68d8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a 131 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68ac 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 131 3204 8 805 14 6606 12d 3200 8 801 14 df02 68a9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 13e 3204 8 805 14 6806 13a 3200 8 801 14 e102 6897 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 690c 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1db ff08 8 809 15 90b 8 400a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659a 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 12c ff08 8 809 15 90b 8 530a e6 3604 8 805 14 7d06 ea 3600 8 801 14 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 670a e6 3904 8 805 14 7d06 ea 3900 8 801 14 fc02 68f3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 3804 8 805 14 7d06 ea 3800 8 801 14 fc02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a 107 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 68fa 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 ab0a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 c50a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a dd 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690c 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 90b 8 930a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6606 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 687e 214 2f2 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 109 3404 8 805 18 7e06 109 3400 8 801 14 fd02 68b1 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 11a 3304 8 805 14 7c06 116 3300 8 801 14 fb02 68d9 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a 11a 3204 8 805 14 7a06 116 3200 8 801 14 f902 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a 11a 3204 8 805 14 7706 116 3200 8 801 14 f602 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a 12d 3204 8 805 14 7a06 12d 3200 8 801 14 f902 68ac 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 a0b 8 5c0a 12d 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 68ae 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 800a 13a 3204 8 805 14 7e06 13e 3200 8 801 14 fd02 6893 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 128 3204 8 805 14 8006 124 3200 8 801 14 ff02 6908 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 209 ff08 8 809 15 80b 8 c90a 178 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6569 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 e20a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a ea 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6939 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a fe 3104 8 805 14 7d06 102 3100 8 801 14 fc02 67e5 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a e6 3504 8 805 14 7d06 e6 3500 8 801 18 fc02 68c0 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 e20a e6 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 6935 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 109 3304 8 805 14 7e06 10d 3300 8 801 14 fd02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 151 8 8 809 180 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ae 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 f2 3604 8 805 14 6706 e6 3600 8 801 14 e002 6981 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 f2 3904 8 805 14 6706 e6 3900 8 801 14 e002 69cf 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 69cc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6990 214 2f3 116 6 16 1b3 116 6 16 360 800c 8 80d 15 80f 8 790e 132 ff08 8 809 15 80b 8 c90a fe 3104 8 805 14 6706 101 3100 8 801 14 e002 6890 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a e6 3504 8 805 14 6706 ea 3500 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 e20a e6 3404 8 805 14 6706 ea 3400 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 109 3304 c 805 14 6806 109 3300 8 801 14 e102 68ee 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 114 3204 8 805 14 6a06 109 3200 8 801 14 e302 6936 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6552 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 10d 3204 8 805 14 6706 10d 3200 8 801 14 e002 6873 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 cf 3204 8 805 14 6706 c7 3200 8 801 14 e002 69bd 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6851 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6903 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 670a c7 3204 8 805 18 6706 c7 3200 8 801 14 e002 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 692d 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f6 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6972 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 20c ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6690 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a ea 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68c1 214 2f2 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 c50a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 68e4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a f7 3204 8 805 14 6606 fb 3200 8 801 14 df02 6917 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a f7 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6917 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a f7 3204 8 805 18 6106 f7 3200 8 801 14 da02 6918 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a fb 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6918 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a fa 3204 8 805 14 6606 f7 3200 8 801 14 df02 6918 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 c 809 15 a0b 8 800a 104 3204 8 805 14 6806 104 3200 8 801 14 e102 6903 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6978 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 19 80f 8 30e 209 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6690 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 695a 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ae 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69a8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d ba 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c9 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674d 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 18 6806 ea 3200 8 801 14 e102 692d 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6960 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69b1 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d b7 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6513 214 2f1 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b c 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6954 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 100 3800 8 801 14 e102 690b 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 3804 8 805 14 6a06 100 3800 8 801 14 e302 6951 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693f 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 142 3204 8 805 18 6806 13a 3200 8 801 14 e102 6921 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 7d06 ea 3400 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3304 8 805 14 7e06 109 3300 8 801 14 fd02 6987 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 177 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f3 116 6 16 1b3 116 9 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68c0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 6977 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 694e 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 3804 8 805 18 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 69a2 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66b7 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 8 805 14 6a06 10d 3500 8 801 14 e302 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 14 6806 10d 3400 8 801 14 e102 68f7 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d6 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68df 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 119 3204 8 805 14 6106 116 3200 8 801 14 da02 68db 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68ac 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 8 801 14 df02 68b1 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6890 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 170 3400 8 801 19 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68be 214 2f0 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 6706 107 3800 8 801 14 e002 6951 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 102 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 fd 3800 8 801 18 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699f 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6742 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6891 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 19 90b 8 930a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 6906 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 3804 8 805 14 6606 10a 3800 8 801 14 df02 6930 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6951 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 112 3804 8 805 14 6106 10a 3800 8 801 14 da02 6939 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6986 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6606 10e 3800 8 801 14 df02 6983 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 3704 8 805 14 6806 13a 3700 8 801 14 e102 692d 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3704 8 805 14 6a06 101 3700 8 801 14 e302 699f 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 121 3100 8 801 14 e602 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f6 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f0 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6406 11a 3200 8 801 14 dd02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 6909 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 135 3204 8 805 18 6606 12d 3200 8 801 14 df02 6939 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6927 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 6957 214 2f1 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6603 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 3604 8 805 14 7d06 e6 3600 8 801 18 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 693f 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 7d06 ea 3800 8 801 14 fc02 6938 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 7d06 10a 3800 8 801 14 fc02 68f6 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 3804 8 805 18 7d06 da 3800 8 801 14 fc02 6951 214 2f0 116 a 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6957 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690f 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b3 116 6 16 3a6 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 6878 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 109 3404 8 805 14 7e06 10d 3400 8 801 14 fd02 68ed 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 11e 3304 8 805 14 7c06 11a 3300 8 801 14 fb02 6918 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 122 3204 8 805 14 7a06 116 3200 8 801 14 f902 6936 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 122 3204 8 805 14 7706 116 3200 8 801 14 f602 6921 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 138 3204 8 805 14 7a06 12d 3200 8 801 14 f902 693f 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 6942 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 142 3204 8 805 14 7e06 13a 3200 8 801 14 fd02 6929 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 128 3204 8 805 14 8006 120 3200 8 801 14 ff02 6957 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 177 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 f f15 7 1f15 6641 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c0 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6951 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 b 809 106 3104 8 805 14 7d06 fe 3100 8 801 14 fc02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 3504 8 805 14 7d06 e6 3500 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ee 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 6983 214 2f2 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 177 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e9 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 6978 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 106 3104 8 805 14 6706 fe 3100 8 801 14 e002 6954 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 ee 3504 8 805 14 6706 e6 3500 8 801 14 e002 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 6706 e6 3400 8 801 14 e002 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 6806 10d 3300 8 801 14 e102 698a 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 6a06 10d 3200 8 801 14 e302 6984 214 2f5 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65b5 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 109 3204 8 805 14 6706 109 3200 8 801 14 e002 687f 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697a 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c7 3204 8 805 14 6706 c7 3200 8 801 18 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6978 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 6933 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 104 8 8 809 f5 3204 8 805 14 6a06 ea 3200 8 801 14 e302 697b 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6648 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b8 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ea 3200 8 801 18 e102 68e4 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d 10a 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 695a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 ff 3204 8 805 14 6106 fb 3200 8 801 14 da02 6966 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ff 3204 8 805 18 6406 f7 3200 8 801 14 dd02 695d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 110 3204 8 805 14 6806 104 3200 8 801 14 e102 6990 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 f5 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ea 3200 8 801 18 e602 104 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6783 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6956 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6972 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d ba 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 67a7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 18 6a06 ea 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ed 3200 8 801 14 e102 6930 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6975 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ba 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ed 3400 8 801 15 903 8 e002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 656c 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c4 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6953 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 da 3800 b 801 14 e002 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 690b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 694e 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6636 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68ee 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693f 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 142 3204 8 805 14 6806 13d 3200 8 801 14 e102 6924 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6696 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10d 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694d 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69cf 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 7d06 ea 3400 8 801 14 fc02 69c9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 114 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 669c 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 11f 3604 8 805 14 6706 123 3600 8 801 14 e002 684b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 e6 3900 c 801 14 e002 6935 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 697a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6954 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 3804 8 805 14 6706 de 3800 8 801 14 e002 6996 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6714 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 8 805 14 6a06 10d 3500 8 801 14 e302 687e 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 14 6806 10c 3400 8 801 14 e102 68f6 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d9 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68d9 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 11a 3204 8 805 14 6106 116 3200 8 801 14 da02 68df 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 137 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 8 801 14 df02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6890 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 6908 214 2f2 116 6 16 1b7 116 6 16 3a2 800c 8 80d 15 80f 8 30e 209 ff08 8 809 19 90b 8 670a 170 3404 8 805 15 907 8 7d06 170 3400 8 801 15 a03 8 3a02 ca a10 a 3411 a c012 a 3f13 b f15 7 1f15 6583 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 11f 3600 8 801 14 3a02 688c 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 3a02 68f8 214 2f3 116 6 16 1b3 116 6 16 336 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 7d06 ea 3800 8 801 14 3a02 693f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 18 7d06 107 3800 8 801 14 3a02 695b 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f9 8 8 809 e6 3804 8 805 14 7d06 da 3800 8 801 14 3a02 69a3 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 e2 3804 8 805 14 7d06 da 3800 8 801 14 3a02 699d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 7d06 da 3800 8 801 14 3a02 69e8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 7e06 101 3800 8 801 14 3b02 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 8006 fd 3800 8 801 14 3d02 69a0 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a fd 3804 8 805 14 8306 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67a0 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a fd 3804 8 805 14 8006 fd 3800 8 801 14 3d02 6895 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a fd 3804 8 805 14 7e06 101 3800 8 801 14 3b02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 10e 3804 8 805 14 7c06 10a 3800 8 801 14 3902 68ee 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 3804 8 805 14 7a06 10a 3800 8 801 14 3702 6934 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 19 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10a 3804 8 805 14 7706 10a 3800 8 801 14 3402 67d5 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 10a 3804 8 805 14 7a06 10d 3800 8 801 14 3702 687c 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10a 3804 8 805 14 7c06 10e 3800 8 801 14 3902 68a9 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 13a 3704 8 805 14 7e06 136 3700 8 801 14 3b02 689b 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 c 809 105 3704 8 805 14 8006 fd 3700 8 801 14 3d02 694c 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a fd 3704 8 805 14 8306 101 3700 8 801 14 4002 121 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669d 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a fd 3704 8 805 14 8006 101 3700 8 801 14 3d02 6891 214 2f3 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a 101 3704 8 805 14 7e06 fd 3700 8 801 14 3b02 68c1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 10e 3704 8 805 14 7c06 10a 3700 8 801 14 3902 68ef 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 3704 8 805 14 7a06 10a 3700 8 801 14 3702 6937 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1a8 ff08 8 809 15 90b 8 930a 10a 3704 8 805 14 7706 10e 3700 8 801 14 3402 6801 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 10a 3704 8 805 14 7a06 10e 3700 8 801 14 3702 687f 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 10e 3704 8 805 14 7c06 10a 3700 8 801 14 3902 68af 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b c e00a 117 3704 8 805 14 7e06 117 3700 8 801 14 3b02 68dd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 105 3704 8 805 14 8006 fd 3700 8 801 14 3d02 6955 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1f3 ff08 8 809 15 80b 8 c90a fd 3704 8 805 14 8306 101 3700 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6682 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a fd 3704 8 805 18 8006 fd 3700 8 801 14 3d02 6894 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 3704 8 805 14 7e06 fd 3700 8 801 14 3b02 68c5 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 129 3604 8 805 14 7c06 129 3600 8 801 14 3902 68b0 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6937 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10e 3604 8 805 14 7706 10a 3600 8 801 14 3402 67ce 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10e 3604 8 805 14 7a06 10a 3600 8 801 14 3702 687c 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 19 90b 8 670a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68aa 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 117 3604 8 805 14 7e06 117 3600 8 801 14 3b02 68d7 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 105 3604 8 805 14 8006 fd 3600 8 801 14 3d02 694f 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 101 3604 8 805 14 8306 fd 3600 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669a 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 101 3604 8 805 14 8006 fd 3600 8 801 14 3d02 6894 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 670a fd 3604 8 805 14 7e06 fd 3600 8 801 14 3b02 68c5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68ee 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6937 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a 10e 3604 8 805 14 7706 10a 3600 8 801 14 3402 67a4 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 10e 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6880 214 2f0 116 6 16 1b7 116 6 16 33b 800c 8 80d 137 ff08 8 809 15 90b 8 c50a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68b6 214 2f0 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 136 3504 8 805 14 7e06 136 3500 8 801 14 3b02 6856 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 105 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6955 214 2f3 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8306 fd 3500 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 661f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a fd 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6892 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 7e06 fd 3500 8 801 14 3b02 690d 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10a 3504 8 805 14 7c06 10e 3500 8 801 14 3902 67d1 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 10a 3504 8 805 14 7a06 10d 3500 8 801 14 3702 687c 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 10e 3504 8 805 14 7706 10a 3500 8 801 14 3402 68ee 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 be0a 10a 3504 8 805 14 7a06 10a 3500 8 801 14 3702 68ef 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1e0 ff08 8 809 15 80b 8 c90a 10a 3504 8 805 14 7c06 10e 3500 8 801 14 3902 67cb 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 117 3504 8 805 14 7e06 11b 3500 8 801 14 3b02 685e 214 2f2 116 6 16 1b3 116 6 16 335 800c 8 80d 13a ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8006 101 3500 8 801 14 3d02 68d0 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8306 fd 3500 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669e 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a fd 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6895 214 2f1 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a fd 3504 8 805 14 7e06 fd 3500 8 801 14 3b02 68c4 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 129 3404 8 805 14 7c06 12d 3400 8 801 14 3902 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 3404 8 805 14 7a06 10e 3400 8 801 14 3702 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a 10a 3404 8 805 14 7706 10a 3400 8 801 14 3402 67d2 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 3404 8 805 14 7a06 10a 3400 8 801 14 3702 687d 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10a 3404 8 805 14 7c06 10a 3400 8 801 14 3902 68aa 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 117 3404 8 805 14 7e06 11b 3400 8 801 14 3b02 68d6 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 105 3404 c 805 14 8006 fd 3400 8 801 14 3d02 694f 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a fd 3404 8 805 14 8306 fd 3400 8 801 14 4002 124 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669a 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a fd 3404 8 805 14 8006 fd 3400 8 801 14 3d02 6895 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 3404 8 805 14 7e06 101 3400 8 801 14 3b02 68c1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 10a 3404 8 805 14 7c06 10e 3400 8 801 14 3902 68ee 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 116 3404 8 805 14 7a06 10a 3400 8 801 14 3702 6937 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 10a 3404 8 805 14 7706 12e 3100 8 801 14 3402 67b1 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10a 3404 8 805 14 7a06 116 3500 8 801 14 3702 6871 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a 10a 3404 8 805 14 7c06 119 3400 8 801 14 3902 689a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 139 3304 8 805 14 7e06 123 3300 8 801 14 3b02 68ac 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 109 3304 8 805 14 8006 109 3200 8 801 14 3d02 6943 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f c 790e 208 ff08 8 809 15 90b 8 930a fd 3304 8 805 14 8306 20a b500 8 801 15 903 8 ab02 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6559 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a fd 3304 8 805 14 8006 e6 b600 8 801 14 ab02 68b3 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 134 ff08 8 809 15 90b 8 c50a fd 3304 8 805 14 7e06 ea b600 8 801 14 ab02 68e2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 10e 3304 8 805 14 7c06 e6 ba00 8 801 14 ab02 691c 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 104 8 8 809 116 3304 8 805 14 7a06 e6 bb00 8 801 14 ab02 695b 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 238 ff08 8 809 15 90b 8 930a 12e 3104 8 805 14 7706 ea bc00 8 801 14 ab02 6771 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 116 3504 8 805 14 7a06 ea bb00 8 801 14 ab02 6897 214 2f3 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 11a 3404 8 805 14 7c06 e6 ba00 8 801 14 ab02 68ca 214 2f3 116 6 16 1b3 116 6 16 342 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 127 3304 8 805 14 7e06 109 b900 8 801 14 ac02 6898 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 111 3204 8 805 14 8006 109 b800 8 801 14 ae02 693d 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 203 ff08 8 809 15 90b 8 670a 19f 3204 8 805 15 907 8 7d06 109 b700 8 801 14 b102 104 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 7d06 109 b700 8 801 14 ae02 68bd 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a c7 3204 8 805 14 7d06 109 b700 8 801 14 ac02 6933 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 cf 3204 8 805 14 7d06 116 b700 8 801 14 aa02 696c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d ea 8 8 809 cf 3204 8 805 14 7d06 116 b700 8 801 14 a802 698d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 dc 3204 8 805 14 7d06 132 b100 8 801 14 a502 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 cf 3204 8 805 14 7d06 11a b500 8 801 14 a802 69bd 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 cf 3204 8 805 14 7d06 119 b400 8 801 14 aa02 69ba 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 18 7e06 123 b300 8 801 14 ac02 698a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f6 3204 8 805 14 8006 109 b200 8 801 14 ae02 69a8 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 228 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65e5 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f7 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 18 ab02 69cb 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 10a b100 8 801 14 ab02 69b4 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b3 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 17f b500 8 801 15 903 8 6702 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 672c 214 2f3 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a b9 b404 8 805 f2 b600 8 801 14 6702 68fc 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 f1 b600 8 801 14 6702 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 f2 ba00 8 801 14 6702 6978 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 f2 bb00 8 801 14 6702 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 106 b100 8 801 14 6702 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b c 670a b9 b404 8 805 ee b500 8 801 14 6702 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 6702 6975 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 6802 6956 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 108 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 6996 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 65bd 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6964 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 107 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 698b 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d5 214 2f4 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c5 b404 8 805 114 b200 8 801 14 ae02 69db 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 6706 178 b500 8 801 15 903 8 4002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ba 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 4002 68c1 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 4002 696c 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 4002 69b1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 4002 69cf 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 106 b100 8 801 14 4002 6996 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b500 8 801 14 4002 6a0b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b400 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b300 8 801 14 4102 69e7 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 18 4302 69e0 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 66c5 214 2f4 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a bc b404 8 805 127 b600 8 801 14 ab02 68b5 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 ab02 6963 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d 10e 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69a5 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 18 ab02 69c0 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 103 8 8 809 d2 b404 8 805 ee bc00 8 801 18 ab02 699f 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69fa 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69d9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12f ff08 8 809 15 80b 8 fe0a 147 b404 8 805 19 907 8 4006 121 b100 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f3 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a f2 b404 8 805 111 b500 8 801 14 ae02 68a6 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 111 b400 8 801 14 ac02 6954 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 11e b300 8 801 14 aa02 6945 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 122 b200 8 801 14 a802 6944 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 139 b200 8 801 14 a502 6920 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 139 b200 8 801 14 a802 692d 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a bd b404 8 805 135 b200 8 801 14 aa02 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a bd b404 8 805 142 b200 8 801 14 ac02 6921 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 107 8 8 809 c1 b404 8 805 128 b200 8 801 14 ae02 6981 214 2f2 116 6 16 1b3 116 6 16 3a3 800c c 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 14a b404 8 805 15 907 8 ab06 170 b500 8 801 15 903 8 1d02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65af 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 f2 b600 8 801 14 1d02 68bd 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f1 b600 8 801 14 1d02 6926 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 1d02 69b0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f1 bb00 8 801 14 1d02 69cf 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 c1 b404 8 805 f2 bc00 8 801 14 1d02 69bd 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 1d02 6a08 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 1d02 6a08 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b900 8 801 14 1e02 69e4 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b800 8 801 14 2002 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a c6 b404 8 805 115 b700 8 801 14 2302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 67d1 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 114 b700 8 801 14 2002 68d5 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 1e02 6950 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 1c02 6981 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d e6 8 8 809 c1 b404 8 805 122 b700 8 801 14 1a02 69a5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 c5 b404 8 805 136 b100 8 801 14 1702 6975 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 11e b500 8 801 14 1a02 69d5 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 11e b400 8 801 14 1c02 69db 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 12b b300 8 801 14 1e02 69c9 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 2002 69e7 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 1d06 174 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f1 b600 8 801 14 ab02 6963 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c7 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 106 b100 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 69fd 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d9 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d9 214 2f3 116 6 16 1bb 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12c ff08 8 809 19 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 4002 c6 c10 a 3411 a b012 e 3e13 b f15 7 1f15 671a 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 18 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 4002 6900 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 4002 6975 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 4002 6977 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 4002 6978 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 106 b100 8 801 14 4002 6951 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f1 b500 8 801 14 4002 6971 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 4002 6974 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 4102 694e 214 2f1 116 a 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 115 b200 8 801 14 4302 6996 214 2f4 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65be 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 109 b100 8 801 14 ab02 6992 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a08 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69e1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 4006 178 b500 8 801 15 903 8 6702 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 127 b600 b 801 14 6702 68c0 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 6702 696f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 6702 69b4 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69d2 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 6702 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c4 b404 8 805 ee b400 8 801 14 6702 6a08 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 6802 69e1 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 69e7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c6 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12b b600 8 801 14 ab02 68b2 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6964 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69a3 214 2f2 116 6 16 1b7 116 a 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 6a00 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69d9 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d5 214 2f4 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f c 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 6706 125 b100 8 801 14 b102 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66d4 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f6 b404 8 805 111 b500 8 801 14 ae02 68a3 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 111 b400 8 801 14 ac02 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a bd b404 8 805 11e b300 8 801 14 aa02 6945 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 11e b200 8 801 14 a802 6942 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 135 b200 8 801 14 a502 6923 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 135 b200 8 801 14 a802 6930 214 2f2 116 6 16 1b7 116 6 16 2f9 810c c 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b200 8 801 14 aa02 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 146 b200 8 801 14 ac02 691d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 12c b200 8 801 14 ae02 6981 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20c ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 a03 8 3a02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65a9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a f2 b404 8 805 ee b600 8 801 14 3a02 68c1 214 2f5 116 6 16 1b3 116 6 16 342 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 3a02 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69cf 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 101 8 8 809 c1 b404 8 805 ee bc00 8 801 14 3a02 69c0 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 6a0b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 6a05 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 3b02 69e1 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 3d02 69e4 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a c6 b404 8 805 111 b700 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67d6 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 111 b700 8 801 14 3d02 68d7 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 3b02 694e 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 3902 6988 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d e6 8 8 809 c5 b404 8 805 11e b700 8 801 14 3702 69a9 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 c1 b404 8 805 136 b100 8 801 14 3402 6973 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 11e b500 8 801 14 3702 69dc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 3902 69d8 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 12f b300 8 801 14 3b02 69cd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e5 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 a07 8 3a06 178 b500 8 801 15 a03 8 3a02 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 66d0 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 3a02 696f 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 c4 b404 8 805 ee ba00 8 801 14 3a02 69b5 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69d3 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 106 b100 8 801 14 3a02 69b8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee b500 8 801 14 3a02 6a0c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 3a02 6a09 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 3b02 69e5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e8 214 2f5 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 e002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 672d 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a bd b404 8 805 ee b600 8 801 14 e002 6900 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 ee b600 8 801 14 e002 6979 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 e002 6976 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6979 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 10a b100 8 801 14 e002 694e 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 e002 6978 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 134 ff08 c 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 e102 6955 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 699a 214 2f2 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 19 90b 8 670a 147 b404 8 805 15 a07 8 3a06 174 b500 8 801 15 a03 8 3a02 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 65c6 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68f3 214 2f6 116 6 16 1b3 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 3a02 6968 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 3a02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69c9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 d2 b404 8 805 106 b100 8 801 14 3a02 6990 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 3a02 6a02 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b400 8 801 14 3a02 6a03 214 2f5 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 3b02 69de 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 3d02 69de 214 2f2 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 e006 178 b500 8 801 15 903 8 e002 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c0 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 e002 68fa 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 e002 696f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 e002 69b4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f1 bb00 8 801 14 e002 69d1 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 e002 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 e002 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 e002 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 e102 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 a07 8 3a06 19e b500 8 801 15 903 8 9302 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66a2 214 2f7 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 161 b600 8 801 15 903 8 7d02 6873 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 f5 b600 8 801 18 7d02 6957 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 15d ba00 8 801 19 903 8 6702 692d 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 c 805 ee bb00 8 801 14 6702 69c4 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 ee bc00 8 801 14 6702 69a3 214 2f2 116 a 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69c4 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f8 ba00 8 801 14 6702 69f4 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 6802 69df 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 6a02 69d5 214 2f5 116 6 16 1b7 116 6 16 3a7 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 e006 1a9 b500 8 801 15 903 8 7d02 ca c10 a 3411 a b012 a 3e13 b f15 7 1f15 6645 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 c 809 15 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 7d02 68fd 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 7d02 6978 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 7d02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 7d02 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 106 b100 8 801 14 7d02 6951 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 7d02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 7d02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 7e02 6951 214 2f0 116 a 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 115 b200 8 801 14 8002 6996 214 2f4 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 16d b404 8 805 15 907 8 9306 174 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6588 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 128 b404 8 805 15 907 8 7d06 e6 b600 8 801 14 ab02 6873 214 2f2 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a c0 b404 8 805 ee b600 8 801 14 ab02 6929 214 2f2 116 6 16 1b3 116 a 16 328 800c 8 80d 10e 8 8 809 130 b404 8 805 15 907 8 6706 e6 ba00 8 801 18 ab02 68fc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69d2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f9 8 8 809 c1 b404 8 805 ee bc00 8 801 18 ab02 69c2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c9 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c8 b404 8 805 f2 ba00 8 801 14 ab02 69ff 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69e7 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69e1 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 c90a 178 b404 8 805 15 907 8 7d06 10d b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6711 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f c e 12c ff08 8 809 15 80b 8 d50a b9 b404 8 805 111 b700 8 801 14 ae02 68df 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 80b 8 e20a b9 b404 8 805 115 b700 8 801 14 ac02 690b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 80b 8 f00a b9 b404 8 805 121 b700 8 801 14 aa02 6941 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 fe0a b9 b404 8 805 122 b700 8 801 14 a802 694b 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a c6 b404 8 805 122 b700 8 801 14 a502 6933 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 135 b700 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a bd b404 8 805 135 b700 8 801 14 aa02 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 142 b700 8 801 14 ac02 6921 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 6981 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 80b 8 c90a 147 b404 8 805 15 907 8 ab06 120 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 6639 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a b9 b404 8 805 12c b700 8 801 14 ae02 68b5 214 2f6 116 6 16 1b7 116 6 16 346 800c 8 80d 134 ff08 8 809 15 80b 8 e20a bc b404 8 805 12c b700 8 801 14 ac02 68e8 214 2f6 116 6 16 1b7 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 f00a bd b404 8 805 135 b700 8 801 14 aa02 6925 214 2f3 116 6 16 1bb 116 6 16 2fd 800c 8 80d 137 ff08 8 809 15 80b 8 fe0a bd b404 8 805 135 b700 8 801 14 a802 6922 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 138 ff08 8 809 15 90b 8 d0a b9 b404 c 805 135 b700 8 801 14 a502 6928 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 139 b700 8 801 14 a802 6925 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 139 b700 8 801 14 aa02 691e 214 2f4 116 6 16 1b7 116 6 16 301 800c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 145 b700 8 801 14 ac02 6915 214 2f4 116 6 16 1b7 116 6 16 301 800c 8 80d 108 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6975 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1dc ff08 8 809 15 90b 8 400a bd b404 8 805 12b b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6714 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 530a b9 b404 8 805 12c b700 8 801 14 ae02 68c3 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 12c b700 8 801 14 ac02 68f7 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b700 8 801 14 aa02 692a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a bd b404 8 805 135 b700 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 ab0a bd b404 8 805 135 b700 8 801 14 a502 692d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 c50a b9 b404 8 805 135 b700 8 801 14 a802 692f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 135 b700 8 801 14 aa02 6930 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 142 b700 8 801 14 ac02 6921 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 6980 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 19 90b 8 930a b9 b404 8 805 128 b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a bd b404 8 805 128 b700 8 801 14 ae02 68c4 214 2f1 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a bd b404 8 805 128 b700 8 801 14 ac02 68fa 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 e00a bd b404 8 805 135 b700 8 801 14 aa02 692d 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 135 b700 8 801 14 a802 692d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 1a0a b9 b404 8 805 135 b700 8 801 14 a502 692d 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a b9 b404 8 805 135 b700 8 801 14 a802 6933 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d 134 ff08 8 809 15 a0b 8 5c0a b9 b404 8 805 139 b700 8 801 14 aa02 6929 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a b9 b404 8 805 146 b700 8 801 14 ac02 6920 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6981 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 20d ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ea 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 80b 8 d50a b9 b404 8 805 128 b700 8 801 14 ae02 68c1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 19 80b 8 e20a b9 b404 8 805 128 b700 8 801 14 ac02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13d ff08 8 809 15 80b 8 f00a b9 b404 8 805 135 b700 8 801 14 aa02 6927 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696f 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a b9 b404 8 805 138 b700 8 801 14 a502 6809 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 e20a b9 b404 8 805 139 b700 8 801 14 aa02 6923 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a b9 b404 8 805 146 b700 8 801 14 ac02 6918 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6978 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 151 8 8 809 c5 b404 8 805 128 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 683e 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d 103 8 8 809 c5 b404 8 805 12c b700 8 801 14 ae02 6972 214 2f7 116 6 16 1b7 116 6 16 2ff 800c 8 80d b7 8 8 809 c4 b404 8 805 128 b700 8 801 14 ac02 69c7 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 c 805 135 b700 8 801 14 aa02 69b5 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 139 b700 8 801 14 a802 69b5 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 132 ff08 8 809 19 80b 8 c90a b9 b404 8 805 139 b700 8 801 14 a502 68a3 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a bd b404 8 805 138 b700 8 801 14 a802 68a6 214 2f7 116 6 16 1b6 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 e20a bd b404 8 805 135 b700 8 801 14 aa02 691c 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 80b 8 f00a bd b404 8 805 142 b700 8 801 14 ac02 6913 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 10e 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6973 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1e1 ff08 8 809 15 90b 8 400a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6712 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a bd b404 8 805 128 b700 8 801 14 ae02 68be 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 670a bd b404 8 805 128 b700 8 801 14 ac02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a bd b404 8 805 135 b700 8 801 14 aa02 6927 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696f 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 13a b100 8 801 14 a502 6809 214 2f2 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a b9 b404 8 805 122 b500 8 801 14 a802 68c9 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 670a b9 b404 8 805 122 b400 8 801 14 aa02 693b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12f b300 8 801 14 ac02 692f 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 698d 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 20b ff08 8 809 15 90b 8 930a b9 b404 8 805 178 b500 8 801 15 903 8 ab02 c9 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6699 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12f ff08 8 809 15 90b 8 ab0a b9 b404 8 805 ee b600 8 801 14 ab02 6900 214 2f4 116 6 16 1b3 116 6 16 349 800c 8 80d 138 ff08 8 809 15 90b 8 c50a b9 b404 8 805 ee b600 8 801 14 ab02 692a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 ee ba00 8 801 14 ab02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 ee bb00 8 801 14 ab02 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 134 ff08 8 809 15 a0b 8 1a0a b9 b404 8 805 ee bc00 8 801 14 ab02 6975 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a b9 b404 8 805 f2 bb00 8 801 14 ab02 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a b9 b404 8 805 f2 ba00 8 801 14 ab02 6975 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a b9 b404 8 805 115 b900 8 801 14 ac02 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 6993 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a b9 b404 8 805 111 b700 8 801 14 b102 c9 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6708 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 111 b700 8 801 14 ae02 68d6 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b700 8 801 14 ac02 6950 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 11e b700 8 801 14 aa02 6984 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 11e b700 8 801 14 a802 699f 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 13a b100 8 801 14 a502 6962 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b500 8 801 14 a802 69d5 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 aa02 69d5 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 c 805 12b b300 8 801 14 ac02 69c9 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66cc 214 2f3 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f9 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 18 ab02 69b0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69ce 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 c1 b404 8 805 10a b100 8 801 14 ab02 699f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee b500 8 801 14 ab02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 ab02 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 6702 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 672c 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a b9 b404 8 805 f2 b600 8 801 14 6702 68fc 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 f1 b600 8 801 14 6702 6974 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 f2 ba00 8 801 14 6702 696f 214 2f1 116 a 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a bd b404 8 805 ee bb00 8 801 14 6702 6975 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 106 b100 8 801 14 6702 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 ee b500 8 801 14 6702 6972 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 6702 6978 214 2f3 116 6 16 1b3 116 a 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 6802 6954 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 6996 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 c 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 65a8 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6967 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10e 8 8 809 c4 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f3 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f2 116 a 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 698b 214 2f2 116 6 16 1b7 116 6 16 2ff 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d5 214 2f4 116 6 16 1b7 116 6 16 300 800c 8 80d ba 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d8 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 6706 178 b500 8 801 15 903 8 4002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66c1 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 4002 68bb 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 4002 696f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 4002 69b1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 4002 69cf 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 106 b100 8 801 14 4002 6996 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b500 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee b400 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b300 8 801 14 4102 69e4 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 4302 69e1 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 66c6 214 2f3 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 ab02 68bc 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 ab02 695d 214 2f5 116 6 16 1b7 116 6 16 300 800c 8 80d 10e 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69a8 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c0 214 2f5 116 6 16 1b7 116 6 16 300 800c 8 80d 107 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69a2 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 c 801 14 ab02 69c0 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69fd 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c4 b404 8 805 111 b900 8 801 14 ac02 69d9 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 4006 121 b100 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d2 214 2f3 116 6 16 1b3 116 6 16 35d 810c c 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f2 b404 8 805 115 b500 8 801 14 ae02 68a2 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 111 b400 8 801 18 ac02 694d 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 122 b300 8 801 14 aa02 6944 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 122 b200 8 801 14 a802 6948 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 135 b200 8 801 14 a502 691b 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a bd b404 8 805 135 b200 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a b9 b404 8 805 135 b200 8 801 14 aa02 692d 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 142 b200 8 801 14 ac02 6921 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 c1 b404 8 805 128 b200 8 801 14 ae02 6981 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 19a b500 8 801 15 903 8 4002 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 6581 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 161 b600 8 801 15 903 8 2e02 6845 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f9 b600 8 801 14 2e02 691d 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 163 ba00 8 801 15 903 8 1d02 6939 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 1d02 69cf 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d fe 8 8 809 c5 b404 8 805 ee bc00 8 801 14 1d02 69bd 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c5 b404 8 805 ee bb00 8 801 14 1d02 69bd 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 ee ba00 8 801 14 1d02 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b900 8 801 14 1e02 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b800 8 801 14 2002 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a c6 b404 8 805 115 b700 8 801 14 2302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 67d1 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 111 b700 8 801 14 2002 68d6 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 111 b700 8 801 14 1e02 694b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c4 b404 8 805 11e b700 8 801 14 1c02 6981 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 11e b700 8 801 14 1a02 699f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 c1 b404 8 805 125 b700 8 801 14 1702 6984 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ba 8 8 809 c1 b404 8 805 135 b700 8 801 14 1a02 69c3 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 135 b700 8 801 14 1c02 69bf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 142 b700 8 801 14 1e02 69b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 12c b700 8 801 14 2002 69cc 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 171 b404 8 805 15 907 8 4006 1a5 b500 8 801 15 903 8 ab02 c9 f10 a 3411 a b012 a 3e13 b f15 7 1f15 666b 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 12c b404 8 805 15 907 8 2e06 e6 b600 8 801 14 ab02 6869 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a c0 b404 8 805 f2 b600 8 801 14 ab02 695a 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 136 b404 8 805 15 907 8 1d06 ea ba00 8 801 14 ab02 691e 214 2f7 116 6 16 1b7 116 6 16 300 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 103 8 8 809 c5 b404 8 805 106 b100 8 801 14 ab02 6997 214 2f7 116 6 16 1b7 116 6 16 300 800c 8 80d f0 8 8 809 c5 b404 8 805 ee b500 8 801 14 ab02 69c4 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 4002 c6 c10 e 3411 a b012 a 3e13 b f15 7 1f15 671d 214 2f5 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 4002 68fd 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 c 809 15 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 4002 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 4002 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 4002 6975 214 2f3 116 6 16 1b6 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c0 b404 8 805 106 b100 8 801 14 4002 6957 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 4002 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 4002 6975 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 4102 694e 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c5 b404 8 805 111 b200 8 801 14 4302 6996 214 2f4 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 178 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6579 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b6 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69d2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 6992 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a05 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69e4 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e1 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 4006 178 b500 8 801 15 903 8 6702 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12b b600 8 801 14 6702 68bd 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 6702 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 6702 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69cf 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 6702 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 6802 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c6 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12a b600 8 801 14 ab02 68b2 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 17 ab02 6960 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c7 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 ee bc00 8 801 14 ab02 69a3 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c1 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69fd 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69de 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d9 214 2f2 116 6 16 1b7 116 6 16 3a6 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 6706 125 b100 8 801 14 b102 c6 c10 a 3411 a b012 a 3e13 b f15 a 1f15 66d5 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f6 b404 8 805 111 b500 8 801 14 ae02 68a0 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 111 b400 8 801 14 ac02 6951 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 2e0a b9 b404 8 805 11e b300 8 801 14 aa02 6942 214 2f2 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 11e b200 8 801 14 a802 694b 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 135 b200 8 801 14 a502 6920 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 135 b200 8 801 18 a802 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b200 8 801 14 aa02 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 146 b200 8 801 14 ac02 691d 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 c1 b404 8 805 12c b200 8 801 14 ae02 697b 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 a03 8 3a02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65af 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 ee b600 8 801 14 3a02 68be 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 3a02 692a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b4 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 c1 b404 8 805 ee bc00 8 801 14 3a02 69c0 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 c1 b404 8 805 ee bb00 8 801 17 3a02 69bc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 3a02 6a05 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 3b02 69e4 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 3d02 69e1 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a c6 b404 8 805 111 b700 8 801 14 4002 ca a10 a 3411 a c012 a 3f13 b f15 7 1f15 67cf 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 115 b700 8 801 14 3d02 68d9 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 3b02 694b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c5 b404 8 805 11e b700 8 801 14 3902 6985 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 11e b700 8 801 14 3702 69a3 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 136 b100 8 801 14 3402 6976 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 11e b500 8 801 14 3702 69dc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 3902 69d8 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 c5 b404 8 805 12b b300 8 801 14 3b02 69cd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e8 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 a07 8 3a06 178 b500 8 801 15 a03 8 3a02 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 66cd 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68fa 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 3a02 6970 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b8 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69d0 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 106 b100 8 801 14 3a02 69a5 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 b500 8 801 14 3a02 69d2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 3a02 6a06 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b300 8 801 14 3b02 69e8 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e5 214 2f3 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 e002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6730 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a bc b404 8 805 ee b600 8 801 14 e002 6904 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 137 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 e002 6979 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6979 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 10a b100 8 801 14 e002 6951 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a bd b404 8 805 ee b500 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 e002 6979 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 e102 6955 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 699a 214 2f2 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 147 b404 8 805 15 a07 8 3a06 174 b500 8 801 15 903 8 ab02 c6 e10 a 3411 e c012 a 3f13 b f15 7 1f15 65ab 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68f0 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b c 930a b9 b404 8 805 ee b600 8 801 14 ab02 6969 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69b1 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 b 801 14 ab02 69cb 214 2f5 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 d2 b404 8 805 106 b100 8 801 14 ab02 698d 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a02 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d ba 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69ff 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e1 214 2f6 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69e0 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 e006 19e b500 8 801 15 903 8 9302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6699 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 161 b600 8 801 15 903 8 7d02 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f9 b600 8 801 14 7d02 6965 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 161 ba00 8 801 15 903 8 6702 6938 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69cc 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 b 805 ee bc00 8 801 14 6702 69ae 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 ee bb00 8 801 14 6702 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 f5 ba00 8 801 14 6702 6a02 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b900 8 801 14 6802 69e4 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b800 8 801 14 6a02 69e7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 19 907 8 ab06 1a5 b500 8 801 15 903 8 7d02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 6696 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 7d02 68eb 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 18 7d02 6960 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 7d02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 7d02 69c4 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 106 b100 8 801 14 7d02 698b 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 b500 8 801 14 7d02 69c4 214 2f3 116 a 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 7d02 69fa 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 7e02 69dc 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 8002 69d8 214 2f3 116 6 16 1b7 116 6 16 3aa 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 171 b404 8 805 15 907 8 9306 177 b500 8 801 15 903 8 e002 ca c10 a 3411 a b012 a 3e13 b f15 7 1f15 6651 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 128 b404 8 805 15 907 8 7d06 e6 b600 8 801 14 e002 687c 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c0 b404 8 805 ee b600 8 801 14 e002 696c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a 128 b404 8 805 15 907 8 6706 e6 ba00 8 801 14 e002 68f1 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a b9 b404 8 805 106 b100 8 801 14 e002 695d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 e002 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a c0 b404 8 805 f2 b400 8 801 14 e002 696f 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 e102 694e 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c5 b404 8 805 111 b200 8 801 14 e302 6996 214 2f4 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 178 b404 8 805 15 907 8 7d06 174 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 657c 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f7 214 2f2 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6930 214 2f2 116 6 16 1b7 116 6 16 332 800c c 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 697e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f9 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69b3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69ba 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 6a08 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69e4 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69e4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a 147 b404 8 805 15 907 8 e006 10d b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 673b 214 2f2 116 6 16 1b3 116 6 16 35d 800c b 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 111 b700 c 801 14 ae02 68d5 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a b9 b404 8 805 115 b700 8 801 14 ac02 6902 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a b9 b404 8 805 122 b700 8 801 14 aa02 693e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 a802 6984 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a c6 b404 8 805 11e b700 8 801 14 a502 6810 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 c 809 15 80b 8 d50a b9 b404 8 805 135 b700 8 801 14 a802 68b2 214 2f4 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 80b 8 e20a b9 b404 8 805 135 b700 8 801 14 aa02 68e2 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 80b 8 f00a b9 b404 8 805 142 b700 8 801 14 ac02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 697b 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 146 b404 8 805 15 907 8 ab06 120 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 6681 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a b9 b404 8 805 12c b700 8 801 14 ae02 68b2 214 2f7 116 6 16 1b7 116 6 16 347 800c 8 80d 13e ff08 8 809 15 90b 8 670a b9 b404 8 805 12c b700 8 801 14 ac02 68df 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a bd b404 8 805 139 b700 8 801 14 aa02 6918 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10e 8 8 809 c5 b404 8 805 135 b700 8 801 14 a802 6964 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1ac ff08 8 809 15 90b 8 930a b9 b404 8 805 139 b700 8 801 14 a502 682e 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a bd b404 8 805 139 b700 8 801 14 a802 68a9 214 2f3 116 6 16 1b7 116 a 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 c50a bd b404 8 805 135 b700 8 801 18 aa02 68d9 214 2f2 116 6 16 1b7 116 6 16 2ff 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 146 b700 8 801 14 ac02 691c 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 108 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6976 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1fb ff08 8 809 15 80b 8 c90a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f3 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a bd b404 8 805 128 b700 8 801 14 ae02 68be 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a bd b404 8 805 128 b700 8 801 14 ac02 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a bd b404 8 805 135 b700 8 801 14 aa02 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 c 809 c1 b404 8 805 135 b700 8 801 14 a802 696c 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 138 b700 8 801 14 a502 680c 214 2f2 116 6 16 1b3 116 a 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a b9 b404 8 805 139 b700 8 801 14 aa02 68de 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a b9 b404 8 805 146 b700 8 801 14 ac02 691a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6975 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 128 b700 8 801 14 b102 c6 c10 e 3411 a c012 a 3f13 b f15 7 1f15 671d 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a b9 b404 8 805 128 b700 8 801 14 ae02 68c0 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 670a b9 b404 8 805 128 b700 8 801 14 ac02 68ee 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a b9 b404 8 805 135 b700 8 801 14 aa02 692a 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696c 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a bd b404 8 805 135 b700 8 801 14 a502 67dc 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a b9 b404 8 805 139 b700 8 801 14 a802 68b7 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a b9 b404 8 805 139 b700 8 801 14 aa02 68eb 214 2f0 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a bd b404 8 805 142 b700 8 801 14 ac02 68d0 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 c5 b404 8 805 128 b700 8 801 14 ae02 697e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66a2 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a b9 b404 8 805 128 b700 8 801 14 ae02 68be 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 ac02 6939 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a b9 b404 8 805 139 b700 8 801 14 aa02 6809 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a b9 b404 8 805 138 b700 8 801 14 a502 6923 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 be0a b9 b404 8 805 139 b700 8 801 14 a802 6927 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1e4 ff08 8 809 15 80b 8 c90a b9 b404 8 805 135 b700 8 801 14 aa02 6801 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a b9 b404 8 805 142 b700 8 801 14 ac02 68a9 214 2f4 116 6 16 1b3 116 6 16 336 800c 8 80d 13e ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 ae02 </a> </comp> <comp lib="6" loc="(162,138)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/NMI"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="6" loc="(164,260)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IRQ"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="tristate" val="false"/> </comp> <comp lib="0" loc="(320,280)" name="Constant"/> <comp lib="0" loc="(840,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(840,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(840,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="Addr"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,180)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(790,90)" name="NOT Gate"/> <comp lib="0" loc="(830,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(349,172)" name="Text"> <a name="text" val="Load regdump here"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,370)" name="Pin"> <a name="width" val="8"/> <a name="label" val="DB_in"/> </comp> </circuit> <circuit name="NES MEMORY"> <a name="circuit" val="NES MEMORY"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="115" stroke="#000000" stroke-width="2" width="150" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="85">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="95">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="134">Addr</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="154">DB_in</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="168" y="154">DB_out</text> <circ-port height="8" pin="250,70" width="8" x="46" y="66"/> <circ-port height="8" pin="250,350" width="8" x="46" y="126"/> <circ-port height="8" pin="250,140" width="8" x="46" y="146"/> <circ-port height="8" pin="250,470" width="8" x="46" y="76"/> <circ-port height="8" pin="250,30" width="8" x="46" y="86"/> <circ-port height="10" pin="990,350" width="10" x="195" y="145"/> <circ-port height="10" pin="990,420" width="10" x="195" y="155"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(690,350)" to="(810,350)"/> <wire from="(870,350)" to="(990,350)"/> <wire from="(820,130)" to="(820,200)"/> <wire from="(480,180)" to="(600,180)"/> <wire from="(830,120)" to="(870,120)"/> <wire from="(950,420)" to="(990,420)"/> <wire from="(250,140)" to="(550,140)"/> <wire from="(620,160)" to="(620,180)"/> <wire from="(600,160)" to="(600,180)"/> <wire from="(600,180)" to="(600,200)"/> <wire from="(660,160)" to="(660,180)"/> <wire from="(810,420)" to="(920,420)"/> <wire from="(430,400)" to="(430,500)"/> <wire from="(910,430)" to="(910,470)"/> <wire from="(660,180)" to="(690,180)"/> <wire from="(430,400)" to="(450,400)"/> <wire from="(870,120)" to="(870,350)"/> <wire from="(600,200)" to="(820,200)"/> <wire from="(640,240)" to="(840,240)"/> <wire from="(840,470)" to="(910,470)"/> <wire from="(910,430)" to="(920,430)"/> <wire from="(290,420)" to="(360,420)"/> <wire from="(290,350)" to="(290,420)"/> <wire from="(690,120)" to="(810,120)"/> <wire from="(400,190)" to="(450,190)"/> <wire from="(810,350)" to="(810,420)"/> <wire from="(430,500)" to="(930,500)"/> <wire from="(250,70)" to="(430,70)"/> <wire from="(480,410)" to="(600,410)"/> <wire from="(290,180)" to="(290,200)"/> <wire from="(250,30)" to="(740,30)"/> <wire from="(290,200)" to="(290,350)"/> <wire from="(580,160)" to="(580,240)"/> <wire from="(640,160)" to="(640,240)"/> <wire from="(250,350)" to="(290,350)"/> <wire from="(740,30)" to="(740,180)"/> <wire from="(600,390)" to="(600,410)"/> <wire from="(810,350)" to="(830,350)"/> <wire from="(430,170)" to="(430,400)"/> <wire from="(850,350)" to="(870,350)"/> <wire from="(840,360)" to="(840,470)"/> <wire from="(430,70)" to="(430,170)"/> <wire from="(580,240)" to="(600,240)"/> <wire from="(600,180)" to="(620,180)"/> <wire from="(620,240)" to="(640,240)"/> <wire from="(290,120)" to="(320,120)"/> <wire from="(290,180)" to="(320,180)"/> <wire from="(290,200)" to="(320,200)"/> <wire from="(710,180)" to="(740,180)"/> <wire from="(340,180)" to="(360,180)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(430,170)" to="(450,170)"/> <wire from="(340,120)" to="(550,120)"/> <wire from="(930,440)" to="(930,500)"/> <wire from="(840,240)" to="(840,360)"/> <wire from="(250,470)" to="(840,470)"/> <wire from="(290,350)" to="(550,350)"/> <wire from="(290,120)" to="(290,180)"/> <wire from="(380,420)" to="(450,420)"/> <comp lib="4" loc="(690,120)" name="RAM"> <a name="addrWidth" val="11"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(320,120)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> </comp> <comp lib="6" loc="(621,73)" name="Text"> <a name="text" val="WRAM"/> </comp> <comp lib="1" loc="(480,410)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(600,240)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(250,140)" name="Pin"> <a name="width" val="8"/> <a name="label" val="DB_in"/> </comp> <comp lib="0" loc="(250,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(250,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="4" loc="(690,350)" name="ROM"> <a name="addrWidth" val="16"/> <a name="contents">addr/data: 16 8 0 8f 0 98 d8 2 8 7*0 23 0 b 0 b 70 0 0 a0 a0 165*0 3 20*0 1 0 1 11*0 80 4 b1 5 b2 1f 8 fc 1 0 80 6*0 1 1 0 0 0 1 3 0 55 24 0 0 0 1e b0 0 ff f6 3 b8 c8 d8 23 16 3 b9 c9 d9 23 36 3 ba ca da 23 56 3 bb cb db ff 58*0 ff 17*0 9c 2a 24*0 20 10 0 20 20 26 10 15 20 0 10 f 20 0 10 f 20 0 10 f 20 0 10 f 20 2c 3c 21 5*20 10 0 20 20 26 10 15 20 0 10 f 5*20 0 10 f 20 0 10 f 8*20 48*0 57 57 c8 57 c8 0 d1 c1 55 24 b8 c8 33 b4 a5 c0 f0 b9 1 b0 f0 c9 1 b8 f0 d9 1 c0 f0 bb 1 b0 f0 cb 1 b8 f0 db 1 c0 f0 39 0 c0 f0 49 0 c8 f0 59 0 d0 f0 69 0 d8 f0 2b 0 b8 f0 3b 0 c0 f0 4b 0 c8 f0 5b 0 d0 f0 6b 0 d8 40 39 0 c0 40 49 0 c8 40 59 0 d0 40 69 0 d8 50 2b 0 b8 50 3b 0 c0 50 4b 0 c8 50 5b 0 d0 50 6b 0 d8 a0 b7 2 a0 a0 c7 2 a8 a0 d7 2 b0 a0 e7 2 b8 a0 f7 2 c0 90 c5 2 a8 90 d5 2 b0 90 e5 2 b8 90 f5 2 c0 80 f3 2 c0 88 b1 2 c8 88 c1 2 d0 88 d1 2 d8 98 b3 2 c8 98 c3 2 d0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 0 0 0 f0 5*0 5 1023*0 88 88 80 80 4*0 63 3e 3e aa 4*0 ab aa ad af 5*0 1 2 3 4*0 32 32 1 1 12*0 56 41 ab e8 6*0 ad af 4*0 1 1 2 2 12*0 5 5 6*0 5 5 14*0 fc ab 67 3 4*0 1 1 1 5*0 4*80 4*0 51 42 ff 80 4*0 b2 b2 6*0 2 2 1 1 4*0 34 74 ff 80 4*0 f f 6*0 9 9 6*0 fb fb 8 8 4*0 97 97 14*0 8 8 6*0 7 7 6*0 80 0 5 0 b1 0 5 0 a 0 a 0 1a 0 b1 5*0 80 30737*0 70 80 7c 80 86 80 8b 80 90 80 95 80 a1 80 b3 80 b8 80 d1 80 df 80 ed 80 2 81 7 81 14 81 19 81 1e 81 28 81 38 81 47 81 56 81 5f 81 69 81 6e 81 77 81 93 81 94 81 a8 81 bc 81 d0 81 ec 81 0 82 30 82 41 82 55 82 64 82 1c 82 73 82 85 82 7c 82 94 82 a7 82 ba 82 cd 82 db 82 e9 82 f3 82 ff 82 30 82 13 83 22 83 31 83 43 83 57 83 6f 83 74 83 20 9e 84 a9 e 85 d3 a9 0 4c 7d 83 a9 1 20 7d 83 a9 10 4c da 84 a9 2 4c 7d 83 a9 3 4c 7d 83 a9 4 4c 7d 83 20 9e 84 a9 d 85 d3 a9 5 4c 7d 83 a5 13 18 69 f0 85 13 a5 12 69 ff 85 12 a9 6 4c 7d 83 a9 7 4c 7d 83 20 9e 84 a9 c 85 d3 a9 0 85 1c a9 8 20 7d 83 a9 80 85 13 a9 0 4c da 84 a9 9 85 d3 a9 9 20 7d 83 a9 2 4c da 84 a9 a 20 7d 83 a9 20 85 1b a9 4 4c da 84 a9 b 20 7d 83 a9 80 85 11 20 f1 84 85 1c 29 3 85 1a 85 1d 60 a9 c 4c 7d 83 a9 80 85 13 a9 10 85 1c a9 d 4c 7d 83 a9 e 4c 7d 83 a9 f 4c 7d 83 a9 10 20 7d 83 a9 20 4c da 84 a9 11 20 7d 83 a5 12 85 1b a5 19 9 8 85 19 60 a9 12 20 7d 83 a9 80 85 13 20 f1 84 85 1a 60 a9 80 85 13 c6 12 a9 10 85 1c a9 13 4c 7d 83 a9 80 85 1c a9 14 4c 7d 83 a9 15 20 7d 83 a9 20 4c da 84 a9 16 4c 7d 83 a9 80 85 13 a9 17 4c 7d 83 a9 18 20 7d 83 a9 2c 85 1c a9 20 85 1d a9 f0 85 1e a9 90 85 11 a5 19 9 8 85 19 60 60 a9 1a 20 7d 83 a9 1c 85 1c a9 10 85 1d a9 f0 85 1e 4c 88 81 a9 1b 20 7d 83 a9 b 85 1c a9 0 85 1d a9 f0 85 1e 4c e1 81 a9 1c 20 7d 83 a9 1c 85 1c a9 10 85 1d a9 10 85 1e 4c e1 81 a9 1d 20 7d 83 a9 3b 85 1c a9 30 85 1d a9 f0 85 1e a9 90 85 11 a5 19 9 8 85 19 60 a9 1e 20 7d 83 a9 19 85 1c a9 10 85 1d a9 10 85 1e 4c 11 82 a9 1f 20 7d 83 a9 2b 85 1c a9 20 85 1d a9 f0 85 1e a9 90 85 11 a5 19 9 8 85 19 60 a9 20 20 7d 83 a9 2a 85 1c a9 20 85 1d a9 10 85 1e 4c 11 82 a9 80 85 11 c6 10 a5 19 9 8 85 19 a9 23 4c 7d 83 a9 10 85 11 a5 19 9 8 85 19 a9 24 20 7d 83 a9 10 85 15 60 a9 0 85 16 a5 19 9 8 85 19 a9 25 4c 7d 83 a9 0 85 16 a5 19 9 8 85 19 a9 26 4c 7d 83 a9 80 85 13 a9 27 4c 7d 83 a9 80 85 13 a9 28 4c 7d 83 a9 0 85 16 a5 19 9 8 85 19 a9 29 4c 7d 83 a9 5 85 1c a9 40 85 1d a5 19 9 8 85 19 a9 2a 4c 7d 83 a9 3 85 1c a9 30 85 1d a5 19 9 8 85 19 a9 2b 4c 7d 83 a9 4 85 1c a9 28 85 1d a5 19 9 8 85 19 a9 2c 4c 7d 83 a9 2d 20 7d 83 a9 83 85 1d a9 8 85 1b 60 a9 2e 20 7d 83 a9 10 85 1d a9 20 4c da 84 a9 2f 20 7d 83 a9 4 4c da 84 20 9e 84 a9 f 85 d3 a9 30 4c 7d 83 a9 31 20 7d 83 a9 80 85 11 a5 12 85 1b a5 19 9 8 85 19 60 a9 0 85 16 a5 19 9 8 85 19 a9 32 4c 7d 83 a9 0 85 16 a5 19 9 8 85 19 a9 33 4c 7d 83 a9 34 20 7d 83 a5 12 85 1b c6 1b a5 19 9 8 85 19 60 a9 35 20 7d 83 a9 80 85 11 a5 12 85 1b a5 19 9 8 85 19 60 a9 36 20 7d 83 a9 20 85 15 a9 80 85 11 a5 12 85 1b a5 19 9 8 85 19 60 a9 38 4c 7d 83 a9 80 85 13 a9 39 4c 7d 83 85 0 a9 0 6 0 2a 6 0 2a 85 1 a5 0 18 6d b4 83 85 0 a5 1 6d b5 83 85 1 a0 0 b1 0 85 18 c8 b1 0 85 1f c8 b1 0 85 1a c8 b1 0 85 1b a9 0 85 14 85 15 60 b6 83 4 20 0 a0 7 0 10 10 8 1 0 0 9 3 0 0 a 2 10 10 c 13 0 20 d ff 40 0 e 0 0 0 f 18 0 40 10 4 0 0 11 2 0 0 12 7 0 0 13 1 0 20 14 3 0 2 15 3 8 0 16 3 10 0 17 1 0 0 18 7 0 0 19 1 0 0 1a 4 0 0 1b 3 6 0 1c 1 10 0 1d 3 0 10 1e 1 20 0 1f f0 0 3b 1f 0 0 0 1f f0 1 2b 20 f0 1 1c 20 10 1 a 20 f0 1 4c 21 10 1 c 21 f0 1 3a 21 10 1 1c 22 0 80 0 28 0 0 0 2a 0 0 0 2b 28 0 0 2c 18 40 0 2d 8 0 0 2e 4 20 2 40 4 20 2 2f 8 0 0 41 0 40 40 41 0 40 40 41 0 40 40 42 4 0 6 43 2 0 0 55 2 0 0 45 12 0 c 46 1 0 80 47 8 0 0 48 4 0 0 49 1 0 0 4a 1 20 0 4b 1 40 80 54 0 80 0 55 2 0 0 56 c 0 0 ae 68 1 bd 9 4 f0 29 bd 8 4 c9 1f f0 22 bd 9 4 9 8 29 bd 9d 9 4 a9 30 9d e 4 a9 0 9d a 4 9d b 4 9d c 4 9d d 4 a9 23 9d 8 4 8a 18 69 10 aa cd 68 1 d0 c8 60 85 0 a5 19 29 2 d0 5 a5 0 85 14 60 a5 0 49 ff 18 69 1 85 14 60 ee 6a 1 a5 11 29 10 d0 3 2e 6a 1 ad 6a 1 30 c 4d 67 1 18 65 16 65 31 8d 6a 1 60 49 ff 4c 5 85 a9 55 85 f9 a5 f9 d0 fc 20 a9 85 a5 a0 d0 f1 60 a5 10 29 1f 85 0 a5 11 46 0 6a 46 0 6a 46 0 6a 46 0 6a 85 1 a5 aa 38 e5 1 85 fd a9 1 e5 0 29 1 85 0 a5 ff 29 fe 5 0 85 ff a5 12 85 0 a5 13 46 0 6a 46 0 6a 46 0 6a 46 0 6a 85 0 a5 ab 38 e5 0 aa a5 ab c5 0 8a b0 3 38 e9 10 85 fc 60 a aa bd 77 86 85 a8 bd 78 86 85 a9 20 6b 86 c9 ff f0 1e 85 a7 20 6b 86 85 a6 20 6b 86 85 a3 85 a4 20 6b 86 85 a5 a2 3d 86 a1 a2 1 86 a0 ca 86 a2 60 a5 a0 d0 1 60 a6 a1 86 2 ae 0 1 a0 0 4c 29 86 c6 2 d0 3 4c 4d 86 a5 a2 d0 10 b1 a8 c8 c9 fb d0 10 b1 a8 c8 c9 fb f0 9 85 a2 b1 a8 c6 a2 d0 1 c8 9d 1 1 e8 e6 0 c6 a4 d0 d4 20 60 86 a5 a3 85 a4 18 a5 a6 69 20 85 a6 90 2 e6 a7 a4 1 a5 0 99 1 1 a9 ff 9d 1 1 8e 0 1 c6 a5 d0 1a 20 6b 86 c9 ff f0 35 85 a7 20 6b 86 85 a6 20 6b 86 85 a3 85 a4 20 6b 86 85 a5 c6 2 f0 36 38 a5 a3 e5 a4 18 65 a6 9d 2 1 a5 a7 69 0 e8 9d 0 1 e8 86 1 e8 a0 0 84 0 4c c1 85 a9 0 85 a0 f0 12 20 60 86 a4 1 a5 0 99 1 1 a9 ff 9d 1 1 8e 0 1 60 98 18 65 a8 85 a8 90 2 e6 a9 60 a0 0 b1 a8 e6 a8 d0 2 e6 a9 a8 60 a3 86 b4 86 c5 86 b1 87 5d 88 65 88 6d 88 6d 88 7e 88 9b 88 c4 88 ed 88 16 89 3f 89 68 89 91 89 ae 89 b6 89 c1 89 c1 89 d5 89 e9 89 20 0 20 20 fb 0 ff fb 0 ff fb 0 ff fb 0 ff ff 24 0 20 20 fb 0 ff fb 0 ff fb 0 ff fb 0 ff ff 24 44 1a a f7 f7 f7 fb 7 ca 10 20 fb 7 ca f7 f7 f7 fb 4 ff f7 f7 f7 fb 7 ca 10 20 fb 7 ca f7 f7 f7 fb 4 ff fb 6 ff fc 30 40 50 60 70 80 90 a0 b0 fc fc fc c0 d0 e0 fb 4 fc fb 6 ff f0 1 11 21 31 41 51 61 71 81 91 a1 b1 c1 d1 e1 44 54 64 64 fb 6 ff f1 2 12 22 32 42 52 62 72 82 92 a2 b2 c2 d2 e2 fb 4 ff fb 6 ff 3 13 23 33 43 53 63 73 83 93 fb 4 fc a3 b3 fb 4 ff fb 6 ff c3 d3 e3 f3 4 14 24 34 f4 fc fc fc ff ff 74 84 fb 4 ff fb 6 ff fc 94 a4 b4 c4 d4 e4 f4 fb 4 fc ff ff fc fc fb 4 ff fb a ff 5 15 fb 6 fc fb 8 ff fb a ff fb 8 fc fb 8 ff 23 c0 20 2 fb 30 ff fb 8 aa fb 8 a 27 c0 20 2 ff ff ff 3f fb 6 ff 37 0 14 0 c0 fc ff ff f3 30 f0 ff fc fb 9 ff fb 18 ff fb 8 f ff 25 8e 12 a f7 f7 f7 fb 7 ca 10 20 fb 6 ca f7 f7 f7 fb 7 ca 10 20 fb 6 ca fb 6 ff fc 30 40 50 60 70 80 90 a0 b0 fc fc fb 6 ff f0 1 11 21 31 41 51 61 71 81 91 a1 fb 6 ff f1 2 12 22 32 42 52 62 72 82 92 a2 fb 6 ff 3 13 23 33 43 53 63 73 83 93 fc fc fb 6 ff c3 d3 e3 f3 4 14 24 34 f4 fc ff ff fb 6 ff fc 94 a4 b4 c4 d4 e4 f4 fc fc ff ff fb a ff 5 15 fb 6 ff fb a ff fc fc fb 6 ff 23 c0 20 2 fb 30 ff fb 8 aa fb 8 a 27 c0 20 2 fb 1d ff 5f c 1f fb 5 ff 0 4 c0 fb 6 ff fc fb 9 ff fb 8 f ff 27 c0 20 2 fb 40 55 ff 21 16 3 5 fb f 0 ff 21 ce 2 6 46 44 47 45 40 41 55 41 56 42 57 43 ff 21 cc 4 6 46 44 44 44 47 45 45 45 40 41 41 41 55 41 41 41 56 42 42 42 57 43 43 43 ff 21 ca 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c8 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c6 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c4 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c2 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c0 6 6 46 fb 3 44 0 0 47 fb 3 45 0 0 40 fb 3 41 0 0 55 fb 3 41 0 0 56 fb 3 42 0 0 57 fb 3 43 0 0 ff 21 c0 4 6 44 44 0 0 45 45 0 0 41 41 0 0 41 41 0 0 42 42 0 0 43 43 0 0 ff 21 c0 2 6 fb c 0 ff 21 cf 1 6 46 47 40 55 56 57 ff 21 16 3 5 c 1c 2c d 1d 2d e 1e 2e f 1f 2f 0 6 16 ff 21 16 3 5 c 1c 2c 3c 4c 5c 3d 4d 5d 3e 4e 5e 3f 4f 5f ff 21 16 3 5 64 74 84 65 75 85 0 0 86 0 0 87 de ee fe 3076*ff 20 df 9d 20 40 9e a5 b8 8d 7 6 20 38 a1 20 44 96 20 11 97 20 df 97 20 b6 98 20 9a 96 20 6c 98 a9 0 8d 2 6 20 2e a1 29 10 f0 df a5 b8 85 d5 a9 ff 85 d6 a9 2 20 79 a1 20 5e a1 a9 fc 20 ea a0 4c 51 a1 ad 8 6 d0 7 ad 62 1 29 20 d0 1 60 a2 1 86 0 a5 b8 18 65 0 20 7b 96 b0 f8 c5 b8 f0 17 a6 b8 8e 7 6 85 b8 a9 ff 8d 2 6 a5 0 c9 ff f0 2 a9 0 8d f 6 60 c9 6 f0 8 c9 ff d0 6 a9 5 d0 2 a9 0 aa f0 a 48 a5 b7 6a ca d0 fc 68 90 2 18 60 38 60 ad 2 6 f0 8 a9 0 8d 0 6 8d 1 6 ad 0 6 d0 10 ad 1 6 49 1 8d 1 6 20 c0 96 a9 4 8d 0 6 ce 0 6 60 f0 35 a5 b8 a aa bd 5 97 85 0 bd 6 97 85 1 a2 4 a0 4 a5 1 9d 0 2 e8 a9 ff 9d 0 2 e8 a9 0 9d 0 2 e8 a5 0 9d 0 2 e8 a5 0 18 69 8 85 0 88 d0 de 60 a9 f0 a2 10 9d 0 2 4*ca d0 f7 60 10 2f 40 2f 10 6f 40 6f 10 af 40 af ad 2 6 d0 6 ad 3 6 d0 31 60 a2 0 a5 b8 f0 1 e8 ad 7 6 f0 1 ca 8a f0 ef a9 e 8d 5 6 85 0 a9 23 8d 6 6 85 1 a9 fc a2 10 20 76 a0 a9 ff 8d 3 6 a9 1 8d 4 6 60 a9 3f a4 b8 f0 2 a5 b1 29 3f 18 69 1 4a cd 4 6 b0 6 a9 0 8d 3 6 60 ad 5 6 85 0 ad 6 6 85 1 a2 1 ad 4 6 4a a9 be b0 a ee 5 6 d0 3 ee 6 6 a9 ae ee 4 6 4c 76 a0 ad 2 6 d0 1 60 a9 23 8d 6 20 a9 e 8d 6 20 20 a6 97 a9 27 8d 6 20 a9 e 8d 6 20 a9 10 85 0 a9 3f a4 b8 f0 2 a5 b1 18 69 1 4a 4a 8 a8 f0 b a9 ae 8d 7 20 e8 c6 0 88 d0 f7 28 90 8 a9 be 8d 7 20 e8 c6 0 a4 0 f0 9 a9 fc 8d 7 20 e8 88 d0 f9 60 ad 2 6 d0 1 60 a5 b8 a aa bd 0 98 85 2 bd 1 98 85 3 a9 ce 85 0 a9 22 85 1 a0 10 4c ae a0 c 98 1c 98 2c 98 3c 98 4c 98 5c 98 2f ce 6f ee ff 1f bf 6f 8*ff 5f ce de 2f 3f 6f f ff 1f bf 6f 5*ff 9f 2f 7f af ff 1f bf 6f 8*ff 4f ce 9f f 8f ff 1f bf 6f 7*ff 2f 7f 5f 3f 6f 1f ff 5f 3f 9f 9f 3f 4f f ff ff 1f 8f f 6f ce ee f ff 4f 8f bf 6f de 2f f 8f ee 10 6 ad 10 6 29 1 d0 17 ee 11 6 ae 11 6 e0 6 d0 5 a2 0 8e 11 6 bd ac 98 8d 89 1 85 f0 ad 10 6 29 7 d0 17 ee 12 6 ae 12 6 e0 4 d0 5 a2 0 8e 12 6 bd b2 98 8d 85 1 85 f0 60 1b b 1b 2b 3b 2b 7 17 27 17 ad 2 6 d0 6 ad 8 6 d0 30 60 8d 8 6 a9 0 8d a 6 a9 2 8d 9 6 a5 b8 a aa bd 13 9a 8d b 6 bd 14 9a 8d c 6 ad 7 6 a aa bd 13 9a 8d d 6 bd 14 9a 8d e 6 60 ad f 6 d0 36 ad a 6 18 6d 9 6 c9 a 10 14 4*a 18 6d d 6 85 2 ad e 6 69 0 85 3 4c 66 99 38 e9 5*a 18 6d b 6 85 2 ad c 6 69 0 85 3 4c 66 99 ad a 6 cd 9 6 b0 1e a9 a 38 ed 9 6 18 6d a 6 4*a 18 6d b 6 85 2 a9 0 6d c 6 85 3 4c 66 99 38 ed 9 6 4*a 18 6d d 6 85 2 a9 0 6d e 6 85 3 ad a 6 5*a 8 18 69 4e 85 0 a9 21 69 0 28 69 0 85 1 a5 ff 29 1 d0 7 a5 1 18 69 4 85 1 a0 10 20 bc a0 ee a 6 ad a 6 c9 a d0 8 a9 0 8d a 6 4c b0 99 c9 3 f0 b c9 5 f0 7 c9 8 f0 3 4c f0 98 c9 0 d0 1b a5 ff 49 1 85 ff ee 9 6 ee 9 6 ad 9 6 c9 b 90 8 a9 0 8d 9 6 8d 8 6 60 a5 b8 a aa bd 13 9a 85 0 bd 14 9a 85 1 a9 4e 85 2 a9 21 85 3 a9 a 85 4 a0 0 a5 3 8d 6 20 a5 2 8d 6 20 a2 10 b1 0 8d 7 20 c8 ca d0 f7 a5 2 18 69 20 85 2 a5 3 69 0 85 3 c6 4 d0 da 60 1f 9a bf 9a 5f 9b ff 9b 9f 9c 3f 9d 51*fc 23 33 43 53 63 73 83 93 a3 b3 6*fc c3 d3 cb e3 f3 4 14 24 34 44 7*fc 54 64 74 84 11*fc a 94 a4 7*fc 3 5*fc 5a d6 b4 7*fc 13 85*fc c4 d4 6*e4 f4 5 6*fc 15 25 35 45 45 55 19 19 65 75 6*fc 85 95 a5 b5 c5 d5 e5 f5 9*fc 6 fc 16 26 fc 36 46 fc fc 3 6*fc 56 66 76 6*fc 13 85*fc 86 96 a6 b6 c6 d6 e6 f6 45 7 6*fc 17 27 37 47 57 67 77 77 87 97 6*fc a7 b7 c7 d7 e7 f7 8 8 8*fc 18 28 38 48 58 5*fc 3 5*fc 68 78 88 7*fc 13 85*fc 98 a8 b8 c8 d8 e8 f8 9*fc 9 19 19 29 39 49 59 69 79 89 6*fc 99 a9 b9 c9 d9 e9 f9 9*fc a 1a 2a 3a 4a 11*fc 5a d6 6a 7a 92*fc 8a 9a aa aa ba ca 10*fc da ea fa aa b 1b 2b 3b 3b 4b 6*fc 5b 6b 7b 8b 9b ab bb cb cb db 7*fc eb fb c 1c 5*fc 4c 6*fc 2c 3c 7*fc 5c 85*fc 6c 7c 8c 8c 9c ac bc cc 45 7 6*fc dc ec d 1d 2d 3d 4d 5d 6d 7d 6*fc 8d 9d ad bd cd dd 8e ed e 1e 6*fc 2e 3e 4e 5e 6*fc 4c 5*fc 6e 7e 8*fc 5c 34*fc a2 12 a9 0 9d 0 6 ca 10 fa 60 a5 b7 a2 0 e8 e8 e0 c f0 9 6a b0 f7 20 a 9e 4c ee 9d 60 c2 20 c8 20 c2 21 c8 21 c2 22 c8 22 48 a0 0 18 b9 38 9e 7d fe 9d 48 c8 b9 38 9e 7d ff 9d c8 8d 6 20 68 8d 6 20 a9 ff 8d 7 20 8d 7 20 8d 7 20 8d 7 20 c0 8 d0 d7 68 60 0 0 20 0 0 4 20 4 a9 b0 85 ff a9 1e 85 fe a9 2 85 d2 20 5e a1 20 6b a1 a9 20 8d 6 20 a9 0 8d 6 20 a9 2 85 2 ad d3 9e 85 0 ad d4 9e 85 1 a0 0 b1 0 c9 fe f0 32 c8 d0 2 e6 1 c9 f7 90 1e c9 fc b0 1a 38 e9 f7 aa bd 9f 9e 48 b1 0 c8 d0 2 e6 1 aa 68 8d 7 20 ca d0 fa 4c 6c 9e 8d 7 20 4c 6c 9e 0 fc 60 10 ff c6 2 d0 b8 a9 f a2 1f 9d 80 1 ca 10 fa a2 1f bd 56 a0 9d a0 1 ca 10 f7 86 f0 20 ea 9d 20 d0 99 20 8f 97 20 e5 97 20 51 a1 a9 2 4c a0 a1 d5 9e fb 61 0 fa 4 20 0 fa 4 20 fb 14 30 fb 4 40 30 fb 4 40 fb 14 30 fb 4 40 30 fb 4 40 ff ff 9f f 4f f de af ff df f ce ef 7f 6f fb 5 30 80 90 a0 b0 40 30 e0 f0 1 11 40 fb 14 30 c0 d0 ff ff 40 30 21 31 41 ff 40 fb 14 30 fb 4 40 30 fb 4 40 fb 14 30 fb 4 40 30 fb 4 40 0 fa 10 20 ff ff 50 f9 4 70 50 f9 4 70 30 f8 10 40 ff ff 0 fa 4 20 0 fa 4 20 30 f8 10 40 ff ff 30 fb 4 40 30 fb 4 40 30 f8 10 40 ff ff 30 fb 4 40 30 fb 4 40 30 f8 10 40 ff ff 30 51 61 71 81 40 30 b1 c1 d1 e1 40 30 f8 10 40 ff ff 30 91 a1 ff ff 40 30 f1 2 12 ff 40 30 f8 10 40 ff ff 30 fb 4 40 30 fb 4 40 30 f8 10 40 ff ff 30 fb 4 40 30 fb 4 40 30 f8 10 40 ff ff 50 f9 4 70 50 f9 4 70 30 f8 10 40 ff ff 0 fa 4 20 0 fa 4 20 30 f8 10 40 ff ff 30 fb 4 40 30 fb 4 40 50 f9 10 70 ff ff 30 fb 4 40 30 fb 4 40 fb 14 30 22 32 42 52 40 30 82 92 a2 b2 40 fb 14 30 62 72 ff ff 40 30 c2 d2 e2 f2 40 fb 14 30 fb 4 40 30 fb 4 40 ff f8 10 fb 3 30 fb 4 40 30 fb 4 40 fb 14 50 f9 4 70 50 f9 4 70 fb 73 f7 8 cc 33 ff 8 a a a 0 c 3 f 80 a0 a0 a0 20 cc 33 ff 88 aa aa aa 22 c 3 f 88 aa aa aa 22 cc 33 ff 40 50 50 50 10 c 3 f 4 5 5 5 1 f7 8 fe f 13 32 1 f 27 20 1 f 2b 33 1 f 26 15 30 f 30 30 30 12*f 48 a8 8a 48 98 20 88 a0 a9 4 18 65 1 85 1 68 aa 68 48 ac 0 1 a5 1 99 1 1 c8 a5 0 99 1 1 c8 8a 99 1 1 c8 68 99 1 1 c8 ca d0 f9 a9 ff 99 1 1 8c 0 1 60 98 48 20 bc a0 a9 4 18 65 1 85 1 68 a8 ae 0 1 a5 1 9d 1 1 e8 a5 0 9d 1 1 e8 98 9d 1 1 29 7f 85 4 e8 a0 0 b1 2 9d 1 1 c8 e8 c6 4 d0 f5 a9 ff 9d 1 1 8e 0 1 60 48 a2 20 a0 23 20 4 a1 68 a2 24 a0 27 4c 4 a1 a2 20 a0 23 d0 4 a2 24 a0 27 84 0 8e 6 20 a2 0 8e 6 20 a0 4 8d 7 20 ca d0 fa 88 d0 f7 a5 0 8d 6 20 a9 c0 8d 6 20 a2 40 a9 0 8d 7 20 ca d0 fa 60 ad 62 1 4d 63 1 2d 62 1 60 a9 55 85 f9 a5 f9 d0 fc 60 a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc ca d0 f1 60 20 38 a1 a5 fe 9 18 85 fe 8d 1 20 60 20 38 a1 a5 fe 29 e7 85 fe 8d 1 20 60 a2 0 a9 f0 9d 0 2 4*e8 d0 f7 60 85 f7 aa 20 41 a1 a0 4 98 48 a2 1f bd 80 1 38 e9 10 b0 2 a9 f 9d 80 1 ca 10 f0 a6 f7 20 41 a1 68 a8 88 d0 e2 60 85 f7 aa 20 41 a1 a2 1f bd a0 1 29 f 9d 80 1 ca 10 f5 a6 f7 20 41 a1 a0 3 98 48 a2 1f bd 80 1 dd a0 1 f0 6 18 69 10 9d 80 1 ca 10 ef a6 f7 20 41 a1 68 a8 88 d0 e1 60 38*ff 21*0 2 3 4 0 4*1 5 6 7 0 4*1 8 9 a 0 0 0 b c d e f 0 10 11 12 13 14 10 11 12 15 16 17 18 19 15 16 17 4*1 4*0 1 1 1 4 2 3 5 6 1 1 7 1 0 8 0 c 9 a d e b 1 f 1 0 10 0 15 11 12 16 17 13 14 18 19 1a 1b 24 25 1c 1d 26 27 1e 1f 28 29 20 21 2a 2b 22 23 2c 2d 2e 33 34 35 30 31 36 37 32 2e 38 34 33 30 35 36 31 32 37 38 3a 3b 0 0 3c 3d 0 0 0 3a 0 0 3b 3c 0 0 3d 7*0 4*ff 0 0 0 24 0 0 34 44 0 0 0 81 90 a0 91 a1 b0 c0 b1 c1 d0 e0 d1 e1 0 82 73 83 92 a2 93 a3 b2 c2 b3 c3 d2 e2 d3 e3 74 84 0 85 94 a4 95 a5 b4 c4 b5 c5 d4 e4 d5 e5 0 0 0 87 96 a6 97 a7 b6 c6 b7 c7 d6 e6 d7 e7 0 0 f7 0 0 8a 7b 8b 9a aa 9b ab ba ca bb cb da ea db eb fa 0 fb 0 c 1c d 1d 2c 3c 2d 3d 4c 5c 4d 5d 6c 80 6d 70 72 72 ff 7d 7c 8c ff 8d 9c ac 9d ad bc cc bd cd dc ec dd ed fc 0 fd 0 0 1e f6 f6 2e 3e 2f 3f 4e 5e 4f 5f 6e 71 5f 5f ff 7e 5f 7f ff 8e 5f 8f 9e ae 9f af be ce bf cf de ee df ef fe 0 f6 f6 25 35 32 42 25 35 40 50 25 35 60 13 25 35 53 63 25 35 22 30 25 35 60 20 33 43 0 0 41 51 0 0 2 12 3 13 52 62 53 63 23 31 0 0 61 21 0 0 26 10 27 1 10 10 1 11 2 12 2 12 52 62 52 62 0 1 44*3 12*2 0 0 2 2 1 0 0 1 1 1 2 3 4 5 7 8 9 a b c d e f 10 11 6 12 13 14 15 16 10 17 18 19 1a 1b 1c 6 9 1d 1e 1f 20 21 22 23 1e 16 a 24 25 26 27 28 28 29 2a 2b 2c 2d 2e 5*6 2f 30 31 1 0 6 9 0 0 a a 0 2 a b 3 4 3 4 5 6 5 6 7 8 7 8 4*0 d e 18 19 f f 0 0 0 10 0 0 0 f 0 0 f 11 10 1a 12 13 1b 1c 14 15 1d 1e 16 17 1f 20 0 0 0 21 0 10 0 10 21 21 4*0 27 0 0 22 0 28 23 24 29 2a 25 26 2b 2c 0 0 0 2d 2d 0 0 0 10 0 10 0 10 f 0 0 f 2e 0 33 2f 30 32 32 31 32 34 35 0 21 0 0 21 4*0 2d 4*0 10 0 36 2b 33 37 2c 35 38 39 0 0 2d 0 f 6*0 33 3a 3b 32 3e 3c 3d 32 37 3f 3f 43 43 3f 3f 41 41 40 41 45 0 42 43 21 0 43 3a 10 2 2b 2c 46 38 44 2 46 2 10 2 0 0 47 48 0 0 47 2 4*0 43 43 0 0 41 41 42 43 0 0 43 0 0 2 0 2 6*0 ac bc 9c ac 4*83 8b 9b 8c 9c ab bb ac bc cb db cc dc 9d ad 9e ae bd cd be ce cd 15 ce 15 92 42 83 0 42 42 0 0 43 83 0 83 8d 9d 8e 9e c 1c d 1d 2c 0 2d 0 75 75 0 0 65 0 65 0 0 94 0 95 a4 b4 a5 b5 42 42 4f 5f 42 42 6f 7f 42 42 ab bb 73 c2 83 c3 d2 14 d3 15 e 1e 0 0 2e 3e 2f 3f 86 96 87 97 a6 b6 0 0 8d d3 8e f0 aa ba aa 7f ac bc c2 d2 83 e0 83 e1 f0 14 f1 15 75 75 64 0 8a 9a 8b 9b aa ba ab bb c3 d3 9d db 83 e2 72 42 f2 14 42 42 64 0 64 0 8c 9c 8d 9d ac bc ad bd cc dc cd dd a2 b2 a3 b3 c2 d2 c3 d3 0 74 0 0 8e 9e 8f 9f ae be af bf ce de cf df 92 42 83 92 4*42 70 80 71 81 43 83 42 43 14 4 15 5 20 30 21 31 42 73 73 83 e0 f0 e1 f1 14 4 14 4 22 32 23 33 83 83 83 72 e2 f2 42 42 15 5 42 42 83 93 72 42 4*ff 1 11 92 42 1 11 42 42 1 11 42 10 1 11 10 10 24 34 25 35 83 0 43 0 e4 f4 e5 f5 e6 f6 e7 f7 e2 f2 c3 d3 0 14*3 1 1 16*3 1 5*3 1 5*3 1 8*3 1 18*3 0 1 14*0 1 0 0 0 1 2 3 4 5 0 8 9 a b c d e 8 14 15 16 17 18 19 1a 20 21 22 23 24 25 26 27 0 2d 2e 2f 30 31 32 33 38 38 39 3a 3b 3c 3d 3e 8*43 8*44 6 7 6*0 f 10 11 12 13 0 0 0 1b 1c 1d 1e 1f 0 0 0 28 29 2a 2b 2c 0 0 0 34 35 36 37 4*0 3f 40 41 38 38 42 42 42 23*0 4 0 0 5 6 0 0 7 5 0 0 8 6 0 0 9 5 0 0 6 7 0 0 5 60 0 0 0 15 a b 16 17 c d 18 19 e f 1a 1b 10 11 1c 1d 12 13 1e 1f 14 e 20 66 61 62 67 68 e 63 4a 69 2c 64 6a 6b 65 0 6c c 0 0 6d 0 0 36 2c 2c 21 22 2d c 23 24 16 2e 25 26 2f 30 27 28 31 32 29 2a 33 34 2b 6e 35 75 2c 2c 73 73 64 6f 6b 6c 70 71 77 c 72 73 c c 74 0 c 6d 0 36 0 40 37 38 41 42 39 3a b c 3b 22 c c 3c 3d 43 44 3e 1e 45 29 1f 3f 2a 46 1c 1d 47 7e 78 79 7f 80 71 72 2c 43 4c 7a 2c 2c 7b 7c 64 81 37 6b 41 82 0 48 0 4d 2e 2f 22 3c 49 4a 4e 90 4b 4c 91 92 32 33 91 89 34 35 1f 93 35 39 91 94 3a 83 95 96 84 85 1c 1d 86 6a 97 8c 6b 87 71 8d 0 0 5f 5f 0 56 5f 5f 57 98 5f 5f 99 9a 5f 5f 99 9b 5f 5f 5d 5e 5f 5f 99 9c 5f 5f 9d 9e 5f 5f 9f a0 5f 5f a1 0 6*5f 1 1 2 2 3 3 6*0 4 4 14 1 0 0 21 31 20 30 3 13 0 0 66 76 0 0 34 34 0 0 44 44 0 0 44 54 0 0 34 44 0 0 54 34 0 ba ab bb b0 f0 b1 f1 6a 6a 6b 6b 67 77 f1 6b 35 35 6b 6b 45 45 6b f1 45 55 41 51 35 35 61 71 35 45 81 72 45 45 f1 6b 55 35 6b 6b b0 f0 b1 f1 c2 d2 c3 d3 b2 f2 b3 f3 6c 6c 23 23 f2 6c 23 82 6c 6c 72 bd dd ad de ae 9d a0 92 a2 a1 9d 94 a4 ad 9d ae 92 a0 a1 a2 94 9d 9d a4 9e c4 d4 6d d5 b4 f4 b5 f5 6e d0 c1 d1 b0 83 b1 f1 73 be 6b 6b 9f af 6b 6b 93 a3 6b f1 95 a5 40 50 af 93 60 70 a3 95 80 90 a5 9f ea 7d 6a 6a 6b 6b f0 6a f1 6b b2 f2 b3 f3 6c 6c 64 74 6c 6c 84 6d 6c f2 6d f3 41 51 23 51 61 71 61 71 81 72 81 73 eb fb ee fe b2 f2 b3 7e 2 12 dc ef 6c 6c 62 6d f2 72 f3 73 72 82 73 83 c4 d4 22 d5 65 75 6f 6f 85 cd 6f ce dd 9d de 9e 9d ad a4 ae b4 7f b5 f5 df 0 17 1a 63 d0 c1 d1 f0 6a f1 6b 33 cf 6b f1 9f 9f 40 50 a5 af ea 14 93 a3 ea 7d ac bc 8a 9a 6c 82 84 83 72 72 73 73 f2 6c 32 6d 6c f2 6d f3 8b 9b 0 9c 85 dd ce de 9d 9d 9e 9e 9d ad da ea 9d 9d fa 14 9d 9d 14 ea ad 9d 7d 92 9d ad a4 da 9d 9d ea fa 0 bf 0 0 cf 9f 0 0 9f 9f 0 0 db eb 0 ee fb 71 fe 0 81 eb 0 ee fb 93 fe 0 a3 95 0 0 a5 db 0 0 4*ff 0 0 46 56 45 45 6b 6b 45 55 f1 6b 47 57 6b 6b f0 2a f1 2b 25 0 26 36 9d 7a 9e 7b 42 6c 43 6d f2 82 f3 83 6c 6c 22 64 6c 6c 74 84 f2 2c f3 2d 27 1c d 1d f0 2a f1 2b 9f c5 f1 6b a 65 b 1b 75 85 6f 6f f4 2e f5 2f e 1e f 1f 6c 6c 6d 6d f2 2c f3 2d f2 6c f3 6d c 1c d 1d 6a f0 6b f1 ad 9d ae 9e 8d 6e 8e 53 82 72 83 73 72 6c 73 22 6c 6c 6d c0 f2 2c 24 2d 95 a5 f1 6b af cc 6b 6b c5 6a 6b 6b a 8c b 1b aa 2e f5 2f 6c 6c 22 6d 6c 6c 6d 6d f2 6c f3 6d 6c 6c 6d 64 27 37 5 15 9d ad fa ea 9d 9d 7d 92 9d 8d a4 8e 52 65 53 6f 75 85 6f 6f 6 16 7 0 fb eb fe ee a5 8f 0 0 9d 9d 9e da ea fa eb fb 9d 9d 14 14 9d 9d a4 da 9d ea 14 eb fa ea fb eb fa 9d fb 7d 8d 65 8e 53 9f db 0 0 ee fe 0 0 81 71 0 0 81 93 0 0 81 ee 0 0 fe ee 0 0 fe 81 0 0 93 a3 0 0 95 a5 0 0 8f 4*0 1 2 2 9*0 9*2 0 4*2 6*0 2 2 0 0 8*2 5*0 5*2 4*0 2 4*0 8*2 0 0 0 2 2 2 8*0 9*2 3 0 4*2 9*0 8*2 8*0 5*2 10*0 2 2 2 8*0 9*2 0 0 0 1 2 3 4 5 6 7 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 39 3a 39 3b 3c 3d 3e 3d 0 0 27 18 0 0 0 18 0 28 27 18 0 28 18 0 0 0 28 18 29 30 0 8 0 0 0 c 18 0 16 5*0 18 33 29 5 b 0 0 18 18 28 0 1e 0 18 1f 20 0 c 16 0 33 0 c c 27 0 c 0 18 18 18 0 18 0 0 5 1 28 18 0 3 27 5 21 26 33 18 27 0 21 29 18 0 18 2a 2b 1a 0 0 18 18 0 0 1a 16 12 12 27 0 5 18 21 21 0 29 1 1 2 2 3 3 12 18 35 0 1a 18 0 0 19 18 1a c 33 0 18 0 18 3e 16 0 5 0 33 18 4*0 30 33 39 29 0 0 c 33 c 18 0 c 19 3a 3b 37 38 3c 3d 1a 5 46 47 5 5 47 47 1a 29 47 46 0 33 47 47 18 0 47 47 1a 41 47 46 42 43 47 47 44 45 47 47 48 49 47 47 49 49 47 46 49 48 47 47 49 4a 47 4c 4b 47 4d 4e 47 47 4f 49 47 4b 49 4d 47 47 4*49 0 0 49 48 0 0 49 50 0 0 51 52 0 0 52 52 0 0 52 51 6*0 4b 0 0 5a 0 4a 0 0 0 4b 0 0 4b 5a 0 0 5a 0 0 5a 0 4b 5a 5a 4b 0 4b 5a 0 0 7d 0 0 0 5a 0 5a 5*0 5a 8c 5a 0 5a 0 0 4b 4b 0 4*5a 0 5a 0 0 5a 4b 4b 0 0 0 4b 5a 0 5a 0 5a 4b 0 5a 0 0 4b 0 4b 0 0 0 4a 4a 0 0 5a 5a 0 5a 4b 0 0 5a 5a 0 0 0 5a 0 4a 5a 0 0 5a 5a 0 5a 5a 5a 0 5a 5a 0 0 0 aa ab d4 ba 0 e4 c 0 4b 6a 0 5a 4b 5a 4b 5a 0 0 4b 4b 0 0 0 4b 5a 2a 3a 0 0 0 4b e5 d 0 5a 4a 0 4b 0 4b 0 4b 4b 0 5a 5a 5a 0 8a 0 8b 9a 4b 9b 0 0 0 4a 5a 5a 5a 0 4b 0 5a 4b 4b 0 0 4b 0 5a 0 4a 4*0 4b 4a 0 0 0 5a 4a 0 5a 5a 0 4b 0 6d 3c 6e 3d 0 5a 0 bb 4b 0 cb db 0 0 eb fb 7d 0 0 4b 4b 9c 8d 9d ac bc ad bd cc dc cd dd ec fc ed fd 0 8c 5a 0 4b 5a 5a 0 4b 4b 0 5a 0 7e 6f 7f 8e 9e 8f 9f ae be af bf ce de cf df ee fe ef ff 2c 1c 2d 1d 2c 2c 2d 2d 2e 1e 2f 1f 2e 2e 2f 2f 2e 7a 6b 7b 1c 2c 1d 2d 6c 7c 3e 4e 1e 2e 1f 2f 2e 2e ca da 2e 2e ea 2f 3f 4f 2f 5b 4c 5c 4d 5d 5c 5c 5d 5d 30*0 1 1 1 4*0 1 1 14*0 1 0 2 2 0 4*2 0 0 0 5*2 13*3 1259*ff a9 0 85 d1 a9 3 85 d0 a9 ff 20 39 c7 a9 0 20 50 b7 a9 1 20 50 b7 a9 2 20 50 b7 a9 c 20 50 b7 20 7d c7 20 10 0 20 26 10 15 0 10 f 4*20 c0 c7 0 10 f 0 10 f 7*20 f8 c8 a9 0 85 fc 85 fd 20 e2 c8 20 d5 b6 20 1d b7 a9 3 20 59 c9 a2 60 20 7 b6 a9 c0 85 fd a9 0 8d 8d 1 a9 10 8d 8e 1 a9 f 8d 8f 1 85 f0 a2 1 20 7 b6 20 ef b6 20 d5 b6 20 1d b7 a2 1 20 7 b6 a5 fd 38 e9 10 85 fd d0 e9 20 ef b6 a2 1 20 7 b6 a9 ef 8d 0 3 a9 50 8d 1 3 a9 4 8d 2 3 20 84 b6 a9 f0 8d 0 3 a9 b0 8d 1 3 a9 5 8d 2 3 20 84 b6 20 1d b7 a2 20 20 7 b6 20 2a b7 a9 c 8d 99 1 8d 9a 1 a9 1 8d 9b 1 85 f0 a2 4 20 7 b6 a9 1c 8d 99 1 8d 9a 1 a9 11 8d 9b 1 85 f0 a2 4 20 7 b6 a9 2c 8d 99 1 8d 9a 1 a9 21 8d 9b 1 85 f0 a2 4 20 7 b6 a9 3c 8d 9a 1 85 f0 a2 4 20 7 b6 a9 0 8d 0 3 8d 1 3 20 6e c8 85 0 29 10 d0 1a a5 0 29 bf f0 5 a9 0 8d 1 3 a5 0 29 40 f0 3 ee 1 3 20 b2 c8 4c 14 b4 ad 1 3 c9 21 f0 37 a5 0 8d 0 3 20 b2 c8 ee 0 3 ad 0 3 c9 8 f0 8 c9 10 f0 4 c9 18 d0 8 a9 16 85 d1 a9 3 85 d0 c9 20 d0 df a2 60 20 bb c8 a9 8 20 6 c9 a9 1 85 d0 4c ed c8 a9 1 85 d0 a9 4 20 6 c9 20 ed c8 a5 ff 29 df 85 ff a9 2f 20 39 c7 a9 7 20 50 b7 a9 8 20 50 b7 a9 9 20 50 b7 a9 a 20 50 b7 20 7d c7 f 30 f f 21 f f 21 f f 21 f f 20 c0 c7 12*30 20 f8 c8 a9 0 85 fd 85 fc 8d 0 3 8d 1 3 20 e2 c8 a9 4 20 59 c9 ac 1 3 b9 e0 b5 8d 0 2 a9 48 8d 3 2 a9 0 8d 1 2 8d 2 2 20 6e c8 29 20 f0 f ee 1 3 ad 1 3 c9 3 90 5 a9 0 8d 1 3 a9 21 8d 1 1 8d 6 1 a9 94 8d 2 1 a9 2 8d 3 1 8d 8 1 ad 0 3 a a8 b9 eb b5 8d 4 1 b9 ec b5 8d 5 1 a9 f4 8d 7 1 a5 bd a a8 b9 eb b5 8d 9 1 b9 ec b5 8d a 1 a9 ff 8d b 1 a9 a 8d 0 1 ad 1 3 c9 1 f0 4c c9 2 f0 73 20 6e c8 29 c0 f0 2b 29 80 f0 12 ee 0 3 ad 0 3 c9 7 90 17 a9 7 8d 0 3 4c 7e b5 ce 0 3 ad 0 3 c9 ff d0 5 a9 0 8d 0 3 20 b2 c8 4c d6 b4 20 6e c8 29 10 f0 f3 ac 0 3 b9 e3 b5 85 d1 a9 3 85 d0 4c 7e b5 20 6e c8 29 c0 f0 1e 29 80 f0 e e6 bd a5 bd c9 9 90 12 a9 9 85 bd d0 c c6 bd a5 bd c9 ff d0 4 a9 0 85 bd 20 b2 c8 4c d6 b4 20 6e c8 29 10 f0 f3 a9 8 20 6 c9 20 ed c8 a2 fd 9a a5 ff 9 20 85 ff 4c 0 b3 60 78 90 0 5 2 7 8 9 a c 0 0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 5 15 25 35 25 15 5 f a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc ad 62 1 d 64 1 d0 4 ca d0 e9 60 20 1d b7 20 b2 c8 a9 0 85 fd 85 fc 20 f8 c8 a9 4 20 a9 b7 20 1d b7 20 b2 c8 a9 5 20 a9 b7 20 b2 c8 20 2a b7 a9 0 8d 8d 1 a9 10 8d 8e 1 a9 f 8d 8f 1 a9 2c 8d 99 1 a9 3c 8d 9a 1 a9 21 8d 9b 1 85 f0 20 b2 c8 a2 fd 9a 4c 14 b4 8a 48 a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc 20 ef b6 68 aa ca d0 ea 60 a9 10 85 10 a9 b 85 12 a9 70 85 13 a9 0 85 16 85 17 a9 0 85 14 a9 0 8d 66 1 20 37 b7 20 88 cd ad 0 3 20 6c e4 a5 16 48 a5 17 48 20 1d b7 68 85 17 68 85 16 a2 1 20 7 b6 a5 16 cd 1 3 f0 2 b0 d2 a9 0 85 19 20 f8 c8 ad 2 3 4c a9 b7 a9 25 8d 1 2 a9 26 8d 0 2 a9 20 8d 2 2 a9 f0 8d 3 2 a9 4 8d 66 1 60 a2 0 ca d0 fd ad 2 20 a 10 fa 30 4 4*68 a0 5 a2 0 ca d0 fd 88 d0 fa a9 1 8d 6 20 a9 80 8d 6 20 a9 0 8d 5 20 8d 5 20 60 a9 b8 85 16 a9 40 85 17 a9 ee 4c 6c e4 a9 a0 85 16 a9 a0 85 17 a9 f1 4c 6c e4 a5 14 18 65 11 85 11 a5 10 69 ff 85 10 a5 14 f0 7 a5 14 38 e9 1 85 14 60 a a8 b9 14 b8 85 0 b9 15 b8 85 1 a0 0 b1 0 8d 6 20 85 e c8 b1 0 8d 6 20 85 f c8 b1 0 85 2 c8 b1 0 85 3 c8 b1 0 85 d2 c8 a5 2 85 4 b1 0 8d 7 20 c8 d0 2 e6 1 c6 4 d0 f2 a5 f 18 69 20 85 f a5 e 69 0 85 e 8d 6 20 a5 f 8d 6 20 c6 3 d0 d5 60 a a8 b9 14 b8 85 0 b9 15 b8 85 1 a0 0 ae 0 1 b1 0 9d 1 1 85 e e8 c8 b1 0 9d 1 1 85 f e8 c8 b1 0 85 2 c8 b1 0 85 3 c8 a5 2 85 4 9d 1 1 e8 b1 0 9d 1 1 e8 c8 d0 2 e6 1 c6 4 d0 f1 c6 3 f0 1a a5 f 18 69 20 85 f a5 e 69 0 85 e 9d 1 1 e8 a5 f 9d 1 1 e8 4c d6 b7 a9 ff 9d 1 1 8e 0 1 60 3c b8 91 b9 ba b9 9b ba b3 ba c3 ba d3 ba d3 ba dd ba e7 ba f4 ba fd ba fd ba fd ba fd ba fd ba fd ba fd ba fd ba fd ba 21 c6 18 e 1 2 42 42 10 20 30 40 50 60 42 42 90 5*42 2e 3e 4e 42 43 53 42 3 42 42 11 21 31 41 51 61 42 81 91 a1 42 42 f 1f 2f 3f 4f 42 44 54 42 4 42 42 42 22 32 42 52 62 42 82 92 a2 4*42 22 33 42 42 46 56 42 5 42 42 42 23 33 4*42 83 93 a3 4*42 23 33 42 42 13 56 42 5 42 42 42 24 34 42 42 42 74 84 94 a4 4*42 24 34 42 42 13 56 42 4 42 42 42 25 35 42 42 42 75 42 95 a5 70 42 42 42 25 35 42 42 45 55 42 6 42 42 42 26 36 42 42 42 76 42 96 a6 71 42 42 42 26 36 42 42 46 56 42 6 42 42 17 27 37 47 42 67 77 42 97 a7 72 73 42 17 27 37 47 42 13 63 42 7 20*42 14 64 121*42 21 16 6 6 1 1d 5*42 1d 5*42 1e 11*42 0 2c 3c 0 42 42 0 2d 3d 0 42 42 20 42 16 a 1 22*42 b 18*1b 19 42 42 c 42 bc cc dc ec fc 42 6e 7e 8e 9e ae be ce de ee 78 42 1a 1d 42 c 42 bd cd dd ed fd 42 6f 7f 8f 9f af bf cf df ef 79 42 1a 1d 42 c 18*42 1a 1d 42 c 5*42 7c 7d 8c 9c ea ac 7*42 1a 1d 42 c 42 8d eb ad ac eb 8d 8d 9d ac eb ad 42 4c 5c 6c 4d 42 1a 1d 42 9 18*a 1c 1d 42 42 19*e 1e 23*42 21 17 5 4 0 38 48 58 68 0 39 49 59 69 2a 3a 4a 5a 6a 2b 3b 4b 5b 6b 22 ea 3 4 88 98 a8 89 99 a9 8a 9a aa 8b 9b ab 22 f6 3 4 b8 c8 d8 b9 c9 d9 ba ca da bb cb db 21 8b 5 1 0 1c 18 1e 17 d 21 b 5 1 0 1b 18 1e 10 11 21 eb 8 1 0 c 18 17 1d 12 17 1e e 22 4b 4 1 0 e 21 12 1d 23 c0 20 2 1 c0 4*f0 30 0 0 cc f ff 3f f ff 0 0 cc 5*ff aa 0 0 80 a0 a0 50 a8 a2 20 0 88 88 4a 55 88 aa 22 0 88 aa a6 a5 a9 aa 22 0 0 5*aa 9*0 968*ff 51 c1 230*ff 80 78 ee f2 ff 4c 0 c0 51 c1 f3 ff f3 ff 78 a2 ff 9a a9 0 8d 0 20 8d 1 20 a2 2 2c 2 20 10 fb 2c 2 20 30 fb ca d0 f3 a9 0 8d 10 40 a9 1f 8d 15 40 a9 c0 8d 17 40 a9 1 85 d0 a9 6 85 fe 8d 1 20 20 d7 c6 a9 0 85 f1 85 f6 85 d2 85 d3 85 d6 85 f0 a9 ff 8d 1 1 a9 5 20 ed c6 20 9 80 a9 0 8d 6f 1 a9 b0 85 ff 8d 0 20 20 b2 c8 a9 1 20 6 c9 20 ed c8 20 70 cb 4c 9a c0 a2 80 a5 d7 d0 b 20 bb c8 a9 3 20 6 c9 4c 89 c0 20 3c cc a9 3 20 97 cc a9 1 85 d0 20 ed c8 20 f8 c8 a9 f 85 b0 4c b2 c0 a9 3 85 bd a9 1 20 ed c6 20 0 b3 ea ea ea 20 f8 c8 20 14 de 20 f3 dd 20 4b da a9 3 85 d0 20 8b d7 ad 53 1 f0 8 a9 6 20 ed c6 20 5f a6 20 e2 c8 a5 d7 d0 8 a9 2 20 59 c9 4c dd c0 a9 2 20 58 cc 20 ee cb 20 37 c1 20 2 c3 a5 f8 d0 c 20 1d c1 20 1f c2 20 dc c1 4c fb c0 a2 0 ca d0 fd 20 c4 c5 a9 2 20 ed c6 20 0 90 a5 d7 f0 3 20 15 cc 20 83 c2 a5 b9 f0 3 4c 70 c0 20 b2 c8 4c dd c0 20 cd de a5 d8 20 ed c6 20 f4 d2 a9 6 20 ed c6 20 0 80 20 9e c4 20 39 c3 60 ad 53 1 f0 4 c9 10 d0 1 60 ce 53 1 ad 53 1 c9 10 d0 f5 20 d6 dc 4c 3f e1 48 ad 6f 1 f0 3 4c 22 cc 86 fb 84 fa a5 f9 c9 55 d0 37 a9 0 8d 3 20 a9 2 8d 14 40 20 12 cb 20 82 c8 ce 67 1 a5 ff 8d 0 20 a5 fe 8d 1 20 ad 2 20 a5 fd 8d 5 20 a5 fc 8d 5 20 a5 d2 20 23 c7 a5 d3 20 d c7 20 2b c8 a5 b6 d0 33 a5 f1 85 f6 a9 5 20 ed c6 a5 d0 c9 4 90 c ad 67 1 29 3 d0 18 c6 d0 4c cd c1 46 d0 90 3 20 1d 80 46 d0 90 5 a5 d1 20 a5 80 20 6d 81 a5 f6 20 ed c6 a9 0 85 f9 a4 fa a6 fb 68 40 a5 bf 5 bb d0 7 20 6e c8 29 10 d0 1 60 a5 d7 48 d0 8 a9 2 20 6 c9 4c fc c1 a9 2 20 97 cc a9 0 85 fd 85 fc a5 ff 48 29 fe 85 ff a9 1 20 ed c6 20 0 96 20 ed c8 68 85 ff 68 85 d7 68 68 4c b9 c0 a5 db d0 1 60 a9 0 8d 53 1 85 db ee 70 1 ad 70 1 c9 6 f0 23 c9 5 d0 5 a9 10 8d 53 1 a5 d7 d0 b a9 3 20 6 c9 20 ed c8 4c af c0 a9 3 20 97 cc 20 ed c8 4c af c0 a9 0 8d 70 1 a9 3 20 6 c9 20 ed c8 a5 f1 85 d4 a9 4 20 ed c6 a9 c 85 d1 a9 83 85 d0 a9 2 20 0 80 a5 d4 20 ed c6 4c af c0 a5 f8 d0 1b ad 67 1 29 1 f0 3 20 a2 c2 a9 f8 ac 66 1 f0 9 99 0 2 4*c8 d0 f7 60 ac 6b 1 cc 66 1 f0 57 ad 66 1 38 e9 4 aa bd 0 2 85 0 bd 1 2 85 1 bd 2 2 85 2 bd 3 2 85 3 b9 0 2 9d 0 2 b9 1 2 9d 1 2 b9 2 2 9d 2 2 b9 3 2 9d 3 2 a5 0 99 0 2 a5 1 99 1 2 a5 2 99 2 2 a5 3 99 3 2 8a 38 e9 4 aa 98 18 69 4 a8 85 0 e4 0 b0 b0 60 a9 4 8d 66 1 8d 6b 1 a5 bb d0 12 20 6e c8 85 0 20 78 c8 5 0 29 20 f0 8 a5 f8 f0 5 a9 0 85 f8 60 a9 ff 85 f8 a9 fc 8d 6b 1 a0 2 a2 0 ca d0 fd 88 d0 fa 60 ae 66 1 a9 18 9d 0 2 a9 28 9d 4 2 a9 92 9d 1 2 a9 94 9d 5 2 a9 2 9d 2 2 a9 0 9d 6 2 a9 18 9d 3 2 9d 7 2 8a 18 69 8 aa 20 fd c3 ad 9 5 30 47 a9 20 85 2 a9 0 85 0 a5 b0 30 58 f0 56 c9 4 90 8 e6 0 38 e9 4 4c 7d c3 85 1 a9 18 9d 0 2 a9 2 9d 2 2 a5 2 9d 3 2 a5 0 f0 19 a9 90 9d 1 2 a5 2 18 69 8 85 2 c6 0 8a 18 69 4 aa d0 d8 8e 66 1 60 a4 1 f0 f 88 b9 fa c3 9d 1 2 8a 18 69 4 8d 66 1 60 a9 f8 9d 0 2 8e 66 1 60 a5 ba f0 4 a9 0 85 34 a9 24 85 d1 a9 3 85 d0 a9 0 8d 4 5 a9 18 8d f 5 ad 9 5 29 ef 9 80 8d 9 5 c6 53 60 8e 8e 90 a9 20 85 2 a9 0 85 0 a5 b1 30 3b f0 39 c9 10 90 8 e6 0 38 e9 10 4c b c4 85 1 a9 28 9d 0 2 a9 0 9d 2 2 a5 2 9d 3 2 a5 0 f0 19 a9 90 9d 1 2 a5 2 18 69 8 85 2 c6 0 8a 18 69 4 aa d0 d8 8e 66 1 60 a4 1 f0 c 88 b9 59 c4 9d 1 2 8a 18 69 4 aa 8e 66 1 60 8*8e 7*90 a9 1 20 ed c6 20 a9 85 a9 6 4c ed c6 48 a9 1 20 ed c6 68 20 77 85 a9 6 4c ed c6 a9 1 20 ed c6 20 23 85 a9 6 4c ed c6 a9 1 20 ed c6 20 13 85 a9 6 4c ed c6 a2 0 a0 1f c0 10 90 11 bd 9 3 f0 2a 20 ff e2 20 de c4 20 ad e3 4c d5 c4 bd 9 4 f0 19 20 56 e3 20 de c4 a5 19 29 10 f0 a c6 1e d0 6 a5 19 29 ef 85 19 20 7 e4 8a 18 69 10 aa 88 10 c5 60 a5 18 a a8 a5 19 30 12 a9 6 20 ed c6 b9 e c5 85 0 b9 f c5 85 1 6c 0 0 29 7f 85 19 a9 1 20 ed c6 b9 0 80 85 0 b9 1 80 85 1 6c 0 0 65 88 ee 88 38 8a 9b 8a 1a a2 4f 8c 2d 8d a7 8e 25 8f 9a 8f ea 8f 84 88 cd a2 ba 90 ef 90 e 91 ce 91 28 92 53 92 c 93 86 93 7 94 52 94 99 94 c6 94 32 95 b3 95 32 96 f9 96 2f 97 88 97 f 98 26 98 35 98 d 99 79 8c ce 8a 1a 8b cf 8b 39 8b 91 99 58 8b d1 99 ff 99 53 9a bf 9a 35 9b e1 9b b5 a6 a0 a9 4b ab 3a a9 71 ae 57 af 6b af 6b af 4f b0 b3 b7 23 b5 f8 b3 41 b4 7e b4 93 8b b2 8b 8b 9b 52 9c a0 9c 6c 9d 1f 9e 4 a1 20 9e 7c 9e f9 9e 5b 9f a6 9f 12 a0 85 8d 82 c6 63 b6 c3 b5 8c ba aa ba 5d 88 d 8c 4f 99 57 a0 a4 a0 38 8c 93 b8 c2 b8 79 b9 a9 0 85 ba ad 53 1 d0 10 ad 70 1 20 36 cd dd c5 de c5 8 c6 dd c5 33 c6 60 ad 67 1 4a 4a 4a 29 7 aa bd f8 c5 8d 85 1 bd 0 c6 8d 87 1 a9 ff 85 f0 60 5 15 25 35 25 15 5 f b 1b 2b 3b 2b 1b b f ad 67 1 4*4a 29 7 aa bd 23 c6 8d 8d 1 bd 2b c6 8d 8e 1 a9 ff 85 f0 60 2a 1a a 1a 2a 3a 20 3a 1a a f a 1a 2a 3a 2a ad 9 5 30 46 a9 ff 85 ba a5 32 c9 10 90 16 a5 30 c9 50 90 14 ad 6 5 c9 80 90 5 a9 1f 8d 53 1 a9 0 f0 2 a9 c 85 34 ad 67 1 29 3 d0 1b ee 78 1 ad 78 1 c9 3 d0 5 a9 0 8d 78 1 a5 f8 d0 8 ac 78 1 b9 7f c6 85 d2 60 14 5 6 a5 1a f0 a ad 67 1 29 1 d0 2 c6 1a 60 a5 b0 c9 f 90 6 a5 b1 c9 3f b0 32 ad 67 1 29 7 d0 2a a9 18 20 67 ea a5 b0 c9 10 f0 c e6 b0 a5 b0 c9 f 90 4 a9 f 85 b0 a5 b1 c9 3f f0 d a5 b1 18 69 4 c9 3f 90 2 a9 3f 85 b1 60 a9 10 85 b0 a9 ff 85 db 60 a9 1e 8d ff 9f 4a 8d ff 9f 4a 8d ff 9f 4a 8d ff 9f 4a 8d ff 9f 60 85 f1 a9 ff 85 b6 a5 f1 8d ff ff 4a 8d ff ff 4a 8d ff ff 4a 8d ff ff 4a 8d ff ff a9 0 85 b6 60 85 f3 8d ff bf 4a 8d ff bf 4a 8d ff bf 4a 8d ff bf 4a 8d ff bf 60 85 f2 8d ff df 4a 8d ff df 4a 8d ff df 4a 8d ff df 4a 8d ff df 60 48 a2 20 a0 23 20 53 c7 68 a2 24 a0 27 4c 53 c7 a2 20 a0 23 d0 4 a2 24 a0 27 84 0 8e 6 20 a2 0 8e 6 20 a0 4 8d 7 20 ca d0 fa 88 d0 f7 a5 0 8d 6 20 a9 c0 8d 6 20 a2 40 a9 0 8d 7 20 ca d0 fa 60 68 85 0 68 85 1 a0 1 a2 0 b1 0 9d a0 1 4*e8 e0 20 d0 f5 a0 2 a2 1 a9 4 85 2 a9 3 85 3 b1 0 9d a0 1 c8 e8 c6 3 d0 f5 e8 c6 2 d0 ec a5 0 18 69 e 85 0 a5 1 69 0 85 1 6c 0 0 68 85 0 68 85 1 a0 1 a2 11 a9 4 85 2 a9 3 85 3 b1 0 9d a0 1 e8 c8 c6 3 d0 f5 e8 c6 2 d0 ec a5 0 18 69 d 85 0 a5 1 69 0 85 1 6c 0 0 a2 0 e8 8e 16 40 ca 8e 16 40 a2 8 ad 16 40 4a 2e 62 1 4a 2e 51 1 ad 17 40 4a 2e 64 1 4a 2e 52 1 ca d0 e7 60 ad 51 1 d 62 1 8d 62 1 ad 52 1 d 64 1 8d 64 1 60 ad 60 1 8d 61 1 ad 62 1 8d 63 1 ad 64 1 8d 65 1 a9 0 8d 62 1 8d 64 1 20 f2 c7 20 18 c8 ac 62 1 ad 64 1 48 20 f2 c7 20 18 c8 68 cd 64 1 d0 ed cc 62 1 d0 e8 60 ad 60 1 4d 61 1 2d 60 1 60 ad 62 1 4d 63 1 2d 62 1 60 ad 64 1 4d 65 1 2d 64 1 60 a5 f0 f0 2b a9 3f a2 0 8d 6 20 8e 6 20 a2 0 bd 80 1 8d 7 20 e8 e0 20 d0 f5 a9 3f 8d 6 20 a9 0 8d 6 20 8d 6 20 8d 6 20 a9 0 85 f0 60 a9 55 85 f9 a5 f9 d0 fc 60 a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc ca d0 f1 60 20 6e c8 29 10 d0 f a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc ca d0 ea 60 20 b2 c8 a9 1e 85 fe 8d 1 20 60 20 b2 c8 a9 0 85 fe 8d 1 20 60 a2 0 a9 f0 9d 0 2 4*e8 d0 f7 60 a2 ff 8e 54 1 85 f7 aa 20 bb c8 a0 4 98 48 20 23 c9 a6 f7 20 bb c8 68 a8 88 d0 f1 60 a2 0 ad 54 1 85 2 a9 8 85 0 46 2 b0 8 8a 18 69 4 aa 4c 50 c9 a9 4 85 1 bd 80 1 38 e9 10 b0 2 a9 f 9d 80 1 e8 c6 1 d0 ee c6 0 d0 da a9 ff 85 f0 60 a2 ff 8e 54 1 85 f7 aa 20 bb c8 a2 0 ad 54 1 85 2 a9 8 85 0 46 2 b0 8 8a 18 69 4 aa 4c 8c c9 a9 4 85 1 bd a0 1 29 f 9d 80 1 e8 c6 1 d0 f3 c6 0 d0 df a6 f7 20 bb c8 a0 3 98 48 a2 0 ad 54 1 85 2 a9 8 85 0 46 2 b0 8 8a 18 69 4 aa 4c c7 c9 a9 4 85 1 bd 80 1 dd a0 1 f0 6 18 69 10 9d 80 1 e8 c6 1 d0 ed c6 0 d0 d9 a6 f7 20 bb c8 68 a8 88 d0 c2 60 ad 62 1 29 f f0 a a0 7 d9 f7 c9 f0 c 88 10 f8 ad 6e 1 29 7f 8d 6e 1 60 98 9 80 8d 6e 1 60 8 9 1 5 4 6 2 a ae 0 1 9d 1 1 e8 a5 0 9d 1 1 e8 b9 28 ca 85 0 b9 29 ca 85 1 a0 0 b1 0 9d 1 1 e8 c8 c9 ff d0 f5 ca 8e 0 1 60 4c ca 59 ca 66 ca 73 ca 80 ca 8d ca 98 ca 9f ca ad ca ba ca c7 ca d4 ca e1 ca ee ca f8 ca fd ca 1 cb 5 cb b fe fe 1c 1d a 10 e fe 1 fe fe ff b fe fe 1c 1d a 10 e fe 2 fe fe ff b fe fe 1c 1d a 10 e fe 3 fe fe ff b fe fe 1c 1d a 10 e fe 4 fe fe ff b f 12 17 a 15 fe 1c 1d a 10 e ff 9 10 a 16 e fe 18 1f e 1b ff 6 1b e 1c 1d fe ff c 1c 1d a 10 e fe 1c e 15 e c 1d ff b fe fe b 18 1c 1c fe 1 fe fe fe ff b fe fe b 18 1c 1c fe 2 fe fe fe ff b fe fe b 18 1c 1c fe 3 fe fe fe ff b fe fe b 18 1c 1c fe 4 fe fe fe ff b fe fe b 18 1c 1c fe 5 fe fe fe ff 8 c 18 17 1d 12 17 1e e ff 3 e 17 d ff 2 55 55 ff 2 0 0 ff b fe fe e 17 d 12 17 10 ef fe fe ff a2 0 bd 1 1 10 e 8d 1 1 a2 0 8e 0 1 a5 ff 8d 0 20 60 8d 6 20 e8 bd 1 1 8d 6 20 e8 a0 b0 bd 1 1 10 4 a0 b4 29 7f e8 8c 0 20 a8 bd 1 1 8d 7 20 e8 88 d0 f6 f0 c6 ee 6a 1 a5 11 29 10 d0 3 2e 6a 1 ad 6a 1 30 c 4d 67 1 18 65 16 65 31 8d 6a 1 60 49 ff 4c 62 cb ad 19 5 48 a9 0 8d bf 6 aa 95 0 e8 e0 f0 d0 f9 aa 9d 0 1 e8 e0 f0 d0 f8 a9 2 85 1 a9 0 85 0 a0 0 a2 6 91 0 c8 d0 fb e6 1 ca d0 f6 68 8d 19 5 a9 ff 8d 1 1 a9 0 85 f1 85 f6 85 d2 85 d3 85 d6 85 f0 a9 1 85 d0 a9 0 85 fd 85 fc 85 f8 20 39 c7 a9 3f 8d 6 20 a9 0 8d 6 20 a2 1f a9 f 8d 7 20 9d 80 1 ca 10 f7 a9 3f 8d 6 20 a9 0 8d 6 20 8d 6 20 8d 6 20 60 a5 d7 f0 18 ac 70 1 b9 10 cc 8d 1 2 a9 be 8d 0 2 a9 20 8d 2 2 a9 0 8d 3 2 a9 4 8d 66 1 60 cd ef cd cd fa a9 ff 8d 6f 1 ad 2 20 a 10 fa 30 4 4*68 a9 0 8d 6f 1 a9 3 8d 6 20 a9 0 8d 6 20 8d 5 20 8d 5 20 60 8a 48 a9 55 85 f9 a9 ff 85 f0 a5 f9 d0 fc a2 0 ca d0 fd 20 15 cc 68 aa ca d0 e5 60 85 f7 aa 20 ee cb 20 b2 c8 a2 1f bd a0 1 29 f 9d 80 1 ca 10 f5 a6 f7 20 3c cc a0 3 98 48 a2 1f bd 80 1 dd a0 1 f0 6 18 69 10 9d 80 1 ca 10 ef a6 f7 20 3c cc 68 a8 88 d0 e1 4c b2 c8 85 f7 aa 20 15 cc a0 4 98 48 a2 1f bd 80 1 38 e9 10 b0 2 a9 f 9d 80 1 ca 10 f0 a6 f7 20 3c cc 68 a8 88 d0 e2 60 68 85 0 68 85 1 a0 1 b1 0 85 2 c8 b1 0 85 3 c8 b1 0 85 4 c8 b1 0 85 5 c8 ae 66 1 a5 3 85 6 a5 4 85 7 a5 7 9d 0 2 b1 0 9d 1 2 a5 5 9d 2 2 a5 f 9d 3 2 c8 a5 7 18 69 10 85 7 8a 18 69 4 aa c6 6 d0 db c6 2 f0 16 a5 f 38 e9 8 85 f b0 c6 a5 3 85 6 c8 c6 6 d0 fb c6 2 d0 f3 8e 66 1 98 18 65 0 85 0 a5 1 69 0 85 1 6c 0 0 a a8 c8 68 85 f4 68 85 f5 b1 f4 aa c8 b1 f4 85 f5 86 f4 6c f4 0 ac 66 1 85 1 29 f0 99 3 2 18 69 8 99 7 2 a5 1 4*a 99 0 2 99 4 2 a9 0 99 2 2 99 6 2 a5 0 4*4a 99 1 2 a5 0 29 f 99 5 2 98 18 69 8 8d 66 1 60 a9 0 8d 71 1 a5 19 29 df 85 19 a5 11 38 e5 31 85 16 a5 10 e5 30 4a 66 16 4a 66 16 4a 66 16 4a 66 16 c9 0 f0 21 c9 1 f0 c c9 f d0 56 a5 16 c9 a0 90 50 b0 6 a5 16 c9 5f b0 48 a9 7f 8d 71 1 a5 19 9 20 85 19 a5 13 38 e5 33 85 17 a5 12 e5 32 4a 66 17 4a 66 17 4a 66 17 4a 66 17 c9 0 f0 21 c9 1 f0 c c9 f d0 1a a5 17 c9 c0 90 14 b0 6 a5 17 c9 3f b0 c a9 7f 8d 71 1 a5 19 9 20 85 19 60 a9 ff 8d 71 1 a5 19 9 20 85 19 60 ad 71 1 f0 8 10 4 a9 0 85 19 68 68 60 ad 71 1 10 6 a9 0 85 19 68 68 60 a2 0 a9 0 9d 9 3 8a 18 69 10 aa d0 f4 a9 0 9d 9 4 8a 18 69 10 aa d0 f4 60 a9 0 8d 50 1 a5 f1 85 d4 a9 3 20 ed c6 20 63 ce a5 d4 4c ed c6 a9 0 8d 76 1 8d 7f 1 85 15 a5 14 d0 a a5 19 29 1 d0 32 a0 8 d0 21 30 1d a0 6 d0 1b a9 0 85 14 a5 19 29 1 d0 8 a5 ba d0 4 a9 0 85 34 a9 ff 8d 76 1 d0 f a0 4 20 7 cf d0 e0 a5 c 85 10 a5 d 85 11 a5 b f0 54 30 4 a0 2 d0 2 a0 0 20 7 cf d0 1f a5 19 29 1 d0 6 a5 1c 29 1 d0 13 a5 19 9 4 85 19 a5 e 85 12 a5 f 85 13 a5 b 85 15 60 a9 ff 8d 7f 1 a5 19 29 4 f0 1d a5 b 30 1a a5 19 29 fb 85 19 29 1 d0 5 a9 15 20 67 ea a5 e 85 12 a5 f 29 80 85 13 60 a9 0 85 15 60 bd 40 d0 85 2 bd 41 d0 85 3 b1 2 85 0 c8 b1 2 85 1 a0 0 b1 0 85 a c8 b1 0 c8 18 65 f b1 0 65 e 85 2 29 f c9 f d0 b a5 b 30 5 c6 2 4c 3e cf e6 2 a5 2 29 f0 85 9 a5 32 29 f0 c5 9 f0 2 e6 2 c8 b1 0 c8 18 65 11 b1 0 65 10 85 3 c8 84 8 a5 19 29 1 d0 6 a5 b0 c9 80 f0 46 20 2 d0 d0 7 a4 8 c6 a d0 ac 60 85 2 a5 3 29 1 d0 8 46 2 46 2 46 2 46 2 a9 0 85 df a5 2 c9 1 f0 10 c9 2 f0 f c9 3 f0 20 c9 4 f0 42 c9 5 f0 50 a9 ff 60 a5 19 29 1 d0 7 a9 80 85 b0 a9 0 60 a9 ff 8d 50 1 a9 0 60 a5 19 29 90 d0 1a a5 19 29 1 d0 17 ad 70 1 c9 3 d0 8 a9 10 20 6 ea a9 0 60 a9 2 20 6 ea a9 0 60 a9 0 60 a9 8 85 df 18 65 11 85 11 a5 10 69 0 85 10 a9 ff 60 a9 f8 85 df 18 65 11 85 11 a5 10 69 ff 85 10 a9 ff 60 a5 3 4*4a 85 5 a5 2 29 f0 5 5 a a8 b1 44 85 5 c8 b1 44 85 6 a5 2 29 f a a a 85 4 a5 3 4a 29 7 5 4 85 4 86 7 a5 3 29 1 aa bd 3e d0 a6 7 a4 4 31 5 60 f0 f 58 d0 8f d0 9c d0 c8 d0 f4 d0 1c d1 48 d1 74 d1 86 d1 b2 d1 c4 d1 d6 d1 62 d0 6b d0 74 d0 7d d0 86 d0 2 0 ff 40 0 0 ff c0 ff 2 0 1 30 0 0 1 c0 ff 2 80 ff 58 ff 80 0 58 ff 2 80 ff a8 0 80 0 a8 0 2 a0 0 0 0 80 ff 0 0 97 d0 97 d0 97 d0 97 d0 1 4*0 a4 d0 ad d0 b6 d0 bf d0 2 0 ff 40 0 0 ff c0 ff 2 0 2 40 0 0 2 c0 ff 2 80 ff c0 ff 80 0 c0 ff 2 80 ff 40 0 80 0 40 0 d0 d0 d9 d0 e2 d0 eb d0 2 80 ff 40 0 80 ff c0 ff 2 80 0 40 0 80 0 c0 ff 2 a0 ff c0 ff 60 0 c0 ff 2 a0 ff 40 0 60 0 40 0 fc d0 5 d1 e d1 17 d1 2 80 ff 40 0 80 ff b0 ff 2 0 1 e0 ff 0 1 40 0 2 c0 ff 80 ff 40 0 0 ff 1 0 0 0 1 24 d1 2d d1 36 d1 3f d1 2 0 ff c0 0 0 ff 40 ff 2 0 1 c0 0 0 1 40 ff 2 80 ff 20 ff 80 0 20 ff 2 80 ff e0 0 80 0 e0 0 50 d1 59 d1 62 d1 6b d1 2 80 fe 80 0 80 fe 80 ff 2 80 1 80 0 80 1 80 ff 2 40 ff 58 ff c0 0 58 ff 2 40 ff a8 0 c0 0 a8 0 7c d1 81 d1 86 d1 86 d1 1 0 fe 0 0 1 0 1 0 0 8e d1 97 d1 a0 d1 a9 d1 2 0 fe 40 0 0 fe c0 ff 2 0 2 30 0 0 2 c0 ff 2 0 ff b8 ff 0 1 b8 ff 2 0 ff 48 0 0 1 48 0 ba d1 bf d1 c4 d1 c4 d1 1 0 fe 0 0 1 4*0 cc d1 d1 d1 d6 d1 d6 d1 1 0 fe 0 0 1 4*0 de d1 e3 d1 e8 d1 e8 d1 1 4*0 1 80 1 0 0 ac 70 1 ad 53 1 f0 5 98 18 69 5 a8 b9 e9 d2 85 d8 a9 2 20 ed c6 ad 70 1 a aa ad 53 1 f0 5 8a 18 69 a aa bd 7b d2 85 d9 bd 7c d2 85 da bd 91 d2 85 3a bd 92 d2 85 3b bd a7 d2 85 3e bd a8 d2 85 3f bd bd d2 85 40 bd be d2 85 41 bd d3 d2 85 42 bd d4 d2 85 43 bd 0 80 85 54 bd 1 80 85 55 a9 3 20 ed c6 ad 53 1 d0 b bd 0 80 85 44 bd 1 80 4c 67 d2 bd 0 80 85 44 bd 1 80 85 45 a9 2 20 ed c6 bd fe 90 85 46 bd ff 90 85 47 4c 66 d5 10 80 97 88 fd 91 5f a0 4f b0 b1 bb 1 a2 e1 a3 47 bc 7b a6 3a ab 0 80 5e 88 ad 91 1f a0 39 b0 b0 bb 0 a2 e0 a3 46 bc 6a a6 39 ab 90 83 17 8d 3d 9a df a9 4f b5 f1 bb 41 a2 21 a4 87 bc fb a6 7a ab 70 85 db 8f a9 9d d7 ad ef b8 5 bc a9 a2 fd a4 7 bd f a8 76 ac c8 87 4f 91 a1 9f bf af 23 bb 39 bc a1 a3 21 a6 63 be 97 aa c2 ad 6*0 1 1 0 1 1 a5 31 29 80 45 37 10 12 a5 31 85 37 a5 30 85 36 a5 34 85 4e a9 1 5 50 85 50 a5 33 29 80 45 39 10 12 a5 33 85 39 a5 32 85 38 a5 35 85 4f a9 2 5 50 85 50 ad 67 1 29 1 f0 12 a5 50 29 1 f0 2d a5 50 29 fe 85 50 20 ba d5 4c 50 d3 a5 50 29 2 f0 1b a5 50 29 fd 85 50 20 dc d5 20 66 d5 20 ab d4 20 8d d5 a2 3 a9 0 85 c 4c 63 d3 60 a5 4a 85 8 29 e 4a 85 f a5 4c 29 e a a 5 f 85 f a9 0 85 2 a4 f b1 3c a 26 2 a 26 2 18 65 3e 85 0 a5 2 65 3f 85 1 20 36 d6 a9 0 85 4 a4 49 b1 0 a 26 4 a 26 4 18 65 40 85 2 a5 4 65 41 85 3 a4 48 b1 2 9d 1 1 e8 c6 e f0 64 ad 67 1 29 1 f0 27 c6 d f0 5c c8 c8 98 29 3 85 48 98 29 2 d0 df a5 49 18 69 2 29 3 85 49 29 2 d0 b4 a5 f 18 69 8 85 f 4c 76 d3 c6 d d0 3 4c 61 d4 98 29 1 f0 17 a5 48 29 fe 85 48 a5 49 29 1 f0 15 a5 49 29 fe 85 49 e6 f 4c 76 d3 a5 48 9 1 85 48 a8 4c ad d3 a5 49 9 1 85 49 4c 8f d3 4c 77 d6 a9 1e 38 ed 3 1 9d 3 1 29 7f 85 d ad 1 1 29 fc 9d 1 1 e8 ad 2 1 29 1f 9d 1 1 e8 e8 ad 3 1 29 7f 85 0 a9 0 46 0 6a 18 65 4d 85 4d a5 4c 65 0 18 69 1 85 4c 20 66 d5 20 8d d5 4c 63 d3 a9 21 38 ed 3 1 85 d 9d 3 1 ad 1 1 29 4 d0 7 ad 1 1 9 4 d0 5 ad 1 1 29 fb 9d 1 1 e8 ad 2 1 29 e0 9d 1 1 e8 e8 ad 3 1 85 0 a9 0 46 0 6a 18 65 4b 85 4b a5 4a 65 0 85 4a 20 66 d5 20 8d d5 4c 63 d3 a5 4b 85 2 a5 4a 6 2 2a 29 1f 85 2 a5 4a 29 10 f0 4 a9 24 d0 2 a9 20 85 3 a9 0 85 1 a5 33 85 0 a5 32 6 0 2a 29 1f a8 ad 67 1 29 1 f0 6 b9 28 d5 4c f2 d4 a5 4f 30 6 b9 27 d5 4c f0 d4 b9 28 d5 a4 2 a 26 1 a 26 1 5 2 8d 2 1 a5 1 5 3 8d 1 1 ad 67 1 29 1 f0 f b9 48 d5 85 d 9 80 8d 3 1 a9 1e 85 e 60 b9 46 d5 8d 3 1 85 d a9 21 85 e 60 e8 0 8 10 18 20 28 30 38 40 48 50 58 60 68 70 78 80 88 90 98 a0 a8 b0 b8 c0 c8 d0 d8 e0 e8 20 1f 1e 1d 1c 1b 1a 19 18 17 16 15 14 13 12 11 10 f e d c b a 9 8 7 6 5 4 3 2 1 a5 4c 29 f0 85 0 a5 5*4a 5 0 a8 b1 3a 85 0 a9 0 46 0 6a 46 0 6a 18 65 d9 85 3c a5 da 65 0 85 3d 60 a9 0 a4 4b 10 2 a9 1 a4 4d 10 2 9 2 85 48 a0 0 a5 4a 29 1 f0 2 a0 1 84 0 a5 4c 29 1 f0 6 a9 2 5 0 85 0 a5 0 85 49 60 a5 4e 30 d a5 31 85 4b a5 30 69 10 85 4a 4c d3 d5 a5 31 85 4b a5 30 85 4a a5 33 85 4d a5 32 85 4c 60 a5 4f 10 b a5 33 85 4d a5 32 85 4c 4c 5 d6 a5 33 18 69 80 85 4d a5 32 29 f f0 7 a5 32 69 f 4c 3 d6 a5 32 69 e 85 4c 85 0 a5 4f 85 1 a5 0 29 f c9 f d0 16 a5 1 30 a a5 0 29 f0 18 69 10 4c 27 d6 a5 0 29 f0 9 e 85 0 a5 0 85 4c a5 31 85 4b a5 30 85 4a 60 8a 48 98 48 a4 49 b1 0 a8 b1 42 85 a a4 49 b9 73 d6 85 9 c0 0 f0 7 6 a 6 a 88 d0 f9 a5 8 29 10 f0 7 a5 f 9 40 a8 d0 2 a4 f b9 20 5 25 9 5 a 99 20 5 68 a8 68 aa 60 fc f3 cf 3f 86 2 ad 1 1 85 0 ad 2 1 46 0 6a 46 0 6a 85 1 6a 6a 29 38 85 0 a5 1 29 7 5 0 9 c0 8d a1 5 ad 1 1 29 4 f0 4 a9 27 d0 2 a9 23 8d a0 5 ad a1 5 38 e9 c0 a8 ad a0 5 29 4 f0 4 98 9 40 a8 ad 67 1 29 1 d0 65 98 29 7 85 0 a9 8 38 e5 0 8d a2 5 a9 9 85 0 a2 0 b9 20 5 9d a3 5 c8 e8 98 29 7 d0 3c 98 38 e9 8 a8 29 40 d0 5 98 9 40 d0 3 98 29 3f a8 ad a0 5 29 4 d0 7 ad a0 5 9 4 d0 5 ad a0 5 29 fb 9d a3 5 e8 ad a1 5 29 f8 9d a3 5 e8 a9 9 38 ed a2 5 9d a3 5 e8 c6 0 d0 b3 a9 f 4c 70 d7 ad a0 5 8d a5 5 8d aa 5 8d af 5 ad a1 5 18 69 8 8d a6 5 18 69 8 8d ab 5 18 69 8 8d b0 5 a9 4 85 0 a2 2 a9 82 9d a0 5 b9 20 5 9d a1 5 b9 40 5 9d a2 5 8a 18 69 5 aa 98 18 69 8 a8 c6 0 d0 e1 a9 14 85 0 a6 2 a0 0 b9 a0 5 9d 1 1 e8 c8 c6 0 d0 f4 a9 ff 9d 1 1 8e 0 1 60 a5 34 85 dc a5 35 85 dd 20 ed c8 ac 70 1 ad 53 1 f0 5 98 18 69 5 a8 b9 2a da 85 d2 b9 40 da 85 d7 b9 35 da 20 39 c7 ad 53 1 f0 a ad 70 1 c9 4 d0 3 4c 69 d8 a5 32 18 69 10 85 32 ad 67 1 29 fe 8d 67 1 a9 80 85 35 a2 1e 8a 48 a9 2 20 ed c6 a9 ff 8d 7b 1 20 48 df a5 d8 20 ed c6 20 f4 d2 20 12 cb 68 aa ca d0 e1 a5 31 85 0 a5 30 6 0 2a 6 0 2a 6 0 2a 6 0 2a 85 fd 20 f8 c8 20 ee cb 20 e2 c8 a9 0 8d 7b 1 a5 dc 85 34 a5 dd 85 35 a9 4 8d 66 1 20 cd de a5 d8 20 ed c6 20 f4 d2 a9 6 20 ed c6 20 0 80 20 9e c4 20 39 c3 a5 d7 f0 3 20 15 cc ad 70 1 a ae 53 1 f0 3 18 69 a a8 b9 b4 d8 85 0 b9 b5 d8 85 1 a0 1f b1 0 99 a0 1 88 10 f8 4c ed c8 ad 67 1 9 1 8d 67 1 a5 30 18 69 20 85 30 a2 40 a9 80 85 34 8a 48 a9 2 20 ed c6 a9 ff 8d 7b 1 20 dd de a5 d8 20 ed c6 20 f4 d2 20 12 cb 68 aa ca d0 e1 a5 33 85 0 a5 32 6 0 2a 6 0 2a 6 0 2a 6 0 2a 85 fc 4c a d8 ca d8 ea d8 a d9 2a d9 4a d9 6a d9 8a d9 aa d9 ca d9 ea d9 a da f 2c 1c c f 2b 1b b f 10 0 c f 10 0 7 f 21 20 f f 27 37 f f 25 10 f f 10 20 f f 10 0 b f 25 0 3b f 2c 1c c f 3b 1b b f 21 20 f f 27 37 f f 25 10 f f 10 20 f f 30 10 0 f 2c 1c c f 3a 1b b f 3a 2a 1a f 21 20 f f 27 37 f f 25 20 f f 20 0 7 f 30 10 0 f 2b 1b b f 26 16 6 f 20 0 7 f 21 20 f f 27 37 f f 25 20 f f 20 10 0 f 17 2 c f 27 37 26 f 3a 0 b f 15 5 7 f 21 20 f f 27 37 f f 25 20 f f 3a 0 b f 30 2b 1b f 24 2b 1b f 26 16 7 f 10 f f f 21 20 f f 27 37 f f 25 20 f f 27 36 16 f 1b 2a b f 27 20 f f 17 28 7 f 0 10 8 f 21 20 f f 27 37 f f 25 20 f f 0 10 8 f 10 0 6 f 2a 3c 1a f 20 0 7 f 20 0 f f 21 20 f f 27 37 f f 25 20 f f 20 0 f f 20 0 8 f 21 17 7 f 31 21 11 f 38 17 7 f 21 20 f f 27 37 f f 25 20 f f 38 17 7 f 30 10 0 f 26 16 7 f 36 0 b f 25 20 f f 21 20 f f 27 37 f f 25 20 f f 3b 29 18 f 3c 1c c f 30 27 16 f 37 28 18 f 2c 1b b f 21 20 f f 27 37 f f 25 20 f f 6 10 0 10 11 12 13 14 15 16 17 18 19 7 5*0 ff ff ff 0 ff 6*0 ff ff 0 0 ff 0 20 7d c7 f 20 11*f a5 ff 9 20 85 ff a9 0 8d 4 5 8d 5 5 8d c 5 8d e 5 8d 9 5 85 b9 85 bb 8d 1c 5 20 f8 c8 20 32 ce a9 fc 20 39 c7 a9 0 85 fd 85 fc a9 0 85 d2 a5 ff 29 fe 85 ff 8d 0 20 a5 53 d0 3 4c ec da 20 28 dc 20 7d c7 f 20 11*f 20 f8 c8 a9 0 85 d2 a9 fc 20 39 c7 20 61 dc 20 d6 dc ac 70 1 b9 e7 da 85 d1 a5 30 29 10 d0 7 a5 ff 29 fe 4c dc da a5 ff 9 1 85 ff ad 53 1 f0 3 4c 53 e1 60 5 9 7 8 5 a9 3 85 d0 a9 d 85 d1 ad 70 1 c9 5 d0 5 a9 4 8d 70 1 20 e2 c8 a9 3 20 59 c9 a9 8b 85 0 a9 21 a0 a 20 ff c9 a9 2 48 a2 0 20 6e c8 29 10 f0 4 68 4c 37 db 8a 48 20 b2 c8 68 aa ca d0 eb 68 38 e9 1 f0 4 48 4c 18 db a9 1 85 d0 a9 3 20 6 c9 20 ed c8 a5 bd d0 3 4c 0 c0 a9 3f 85 b1 20 7d c7 f 20 f f 21 8*f a9 fc 20 39 c7 20 b2 c8 20 e2 c8 a9 3 20 59 c9 a0 1c a9 6c 85 0 a9 21 20 ff c9 a0 1a a9 cc 85 0 a9 21 20 ff c9 a9 ff 85 10 a0 1e a9 db 85 0 a9 23 20 ff c9 20 b2 c8 ad 67 1 4a 4a 4a 29 7 a8 a5 10 d0 d b9 20 dc 8d 81 1 a9 20 8d 85 1 d0 b b9 20 dc 8d 85 1 a9 20 8d 81 1 85 f0 20 6e c8 85 0 29 3c f0 cd 29 10 f0 38 a9 3 85 53 a9 0 85 b8 8d 7e 1 8d 53 1 ad 70 1 c9 5 d0 3 ce 70 1 a9 3 85 53 a5 10 d0 b a9 4 20 6 c9 20 ed c8 4c 0 c0 c6 bd a9 3 20 6 c9 20 ed c8 4c af c0 a5 0 29 c f0 6 29 4 f0 d d0 4 a5 10 d0 7 a9 ff 85 10 4c 93 db a9 0 85 10 4c 93 db f 1 11 21 31 21 11 1 ad 53 1 d0 33 ad 1a 5 d0 2e a9 ff 8d 1a 5 ad 70 1 d0 24 a5 f1 85 d4 a9 4 20 ed c6 a9 2 85 d1 a9 3 85 d0 a9 1 20 0 80 a5 d4 20 ed c6 a2 10 20 bb c8 a9 1 85 d0 60 ad 70 1 c9 5 f0 44 c9 6 f0 56 20 e2 c8 a9 3 20 59 c9 ad 70 1 a a8 a9 6b 85 0 a9 21 20 ff c9 a0 c a9 cd 85 0 a9 21 20 ff c9 a5 53 9d 1 1 e8 a9 ff 9d 1 1 8e 0 1 a2 80 20 cb c8 a9 0 85 f8 a9 3 20 6 c9 20 ed c8 ac 70 1 b9 d0 dc 85 d3 a9 1 85 d0 ad 53 1 d0 6 b9 c9 dc 85 b7 60 b9 ca dc 85 b7 60 2 3 b f 1f 1f 1f 8 9 a b 8 8 a9 0 85 bf ad 70 1 a a8 ad 53 1 f0 5 98 18 69 a a8 b9 37 dd 85 0 b9 38 dd 85 1 a0 0 b1 0 85 2 c8 b1 0 cd 7e 1 b0 9 5*c8 c6 2 d0 f0 c8 b1 0 8d 7e 1 c8 b1 0 8d 77 1 c8 b1 0 8d 0 5 29 f0 85 30 c8 b1 0 8d 2 5 29 f0 85 32 a9 0 8d 1 5 8d 3 5 85 31 85 33 60 4d dd 67 dd 81 dd a0 dd c4 dd cf dd d5 dd db dd e1 dd e7 dd ed dd 4 2 0 1 6 b 6 3 1 35 b a 7 1 76 b d b 1 b6 7 ff e 1 e4 9 4 3 0 1 8 b 8 4 1 46 b d 9 1 66 3c 11 e 1 a6 2b ff 12 1 b6 b 5 4 0 1 7 1b 7 5 1 48 9 e 8 1 76 9 16 f 1 97 3a 19 17 1 e7 4b ff 1a 1 16 49 6 4 0 1 7 b 9 5 1 47 19 e a 1 58 3b 13 f 1 a5 39 19 14 1 f6 3b 20 1a 1 27 9 ff 21 1 77 2b 1 7 0 1 8 a ff 8 1 8a 6 1 40 0 0 4 b 1 40 0 0 4 b 1 40 0 0 4 c 1 40 0 0 4 9 1 40 0 0 4 b 1 40 0 0 4 a a9 1 85 d0 20 b2 c8 20 f8 c8 20 32 ce a9 0 85 fd 85 fc 8d 5 20 8d 5 20 a9 0 8d 7e 1 4c e8 d1 a9 f 85 b0 a9 3 85 53 a9 3f 85 b1 85 b2 85 b3 85 b4 85 b5 a9 0 8d 1a 5 8d 1b 5 8d 1c 5 8d 1d 5 8d 1e 5 8d 1f 5 60 20 7d c7 f 20 11*f a9 0 85 d2 a9 fc 20 39 c7 20 f8 c8 20 b2 c8 20 e2 c8 a9 3 20 59 c9 a0 e a9 a 85 0 a9 21 20 ff c9 ad 70 1 c9 5 d0 4 a0 22 d0 c a a8 ad 53 1 f0 5 98 18 69 10 a8 a9 6b 85 0 a9 21 20 ff c9 20 b2 c8 20 6e c8 29 10 d0 2b 20 6e c8 29 c0 f0 ef ee 70 1 ad 70 1 c9 5 d0 ba a9 0 8d 70 1 ad 53 1 d0 8 a9 10 8d 53 1 4c 64 de a9 0 8d 53 1 4c 64 de a9 3 20 6 c9 20 ed c8 60 a9 2 20 ed c6 a9 0 8d 7b 1 20 dd de 4c 48 df a5 30 85 0 a5 34 18 65 31 85 31 a5 34 30 4 a9 0 f0 2 a9 ff 65 30 85 30 a5 34 10 c a5 31 18 69 e0 a9 ff 65 30 4c 8 df a5 0 29 f0 85 2 a5 30 29 f0 c5 2 f0 3 20 b5 df a5 30 85 0 a5 31 46 0 6a 46 0 6a 46 0 6a 46 0 6a 85 fd a5 ff 29 1 45 0 29 1 f0 12 a5 ff 29 1 d0 6 a5 ff 9 1 d0 4 a5 ff 29 fe 85 ff 60 a5 35 f0 42 18 65 33 85 33 a5 35 30 4 a9 0 f0 2 a9 ff 65 32 85 32 a5 35 30 2c a5 32 29 f c9 f d0 f 20 6d e0 a5 32 29 f0 18 69 10 85 32 20 b5 df a5 33 85 0 a5 32 6 0 2a 6 0 2a 6 0 2a 6 0 2a 85 fc 60 a5 32 29 f c9 f d0 d 20 d6 e0 a5 32 29 f0 9 e 85 32 d0 d6 a5 33 18 65 35 a5 32 69 ff 29 f c9 f d0 c7 f0 c2 ad 7b 1 d0 30 a5 30 4*4a 85 0 a5 32 29 f0 5 0 85 0 29 1 aa 46 0 a4 0 b1 54 3d 6b e0 e0 1 f0 4 4*4a 29 f c9 f f0 7 8d 77 1 ee 7e 1 60 ad 70 1 a a8 a5 30 29 f 19 61 e0 85 30 a5 32 29 f 19 62 e0 85 32 ad 0 5 29 f 19 61 e0 8d 0 5 ad 2 5 29 f 19 62 e0 8d 2 5 a2 0 bd 9 3 f0 16 bd 0 3 29 f 19 61 e0 9d 0 3 bd 2 3 29 f 19 62 e0 9d 2 3 8a 18 69 10 aa d0 de bd 9 4 f0 16 bd 0 4 29 f 19 61 e0 9d 0 4 bd 2 4 29 f 19 62 e0 9d 2 4 8a 18 69 10 aa d0 de 4c b5 df 0 0 a0 0 0 0 20 0 10 10 f0 f ad 7b 1 d0 63 ee 2 5 ee 2 3 ee 12 3 ee 22 3 ee 32 3 ee 42 3 ee 52 3 ee 62 3 ee 72 3 ee 82 3 ee 92 3 ee a2 3 ee b2 3 ee c2 3 ee d2 3 ee e2 3 ee f2 3 ee 2 4 ee 12 4 ee 22 4 ee 32 4 ee 42 4 ee 52 4 ee 62 4 ee 72 4 ee 82 4 ee 92 4 ee a2 4 ee b2 4 ee c2 4 ee d2 4 ee e2 4 ee f2 4 60 ad 7b 1 d0 63 ce 2 5 ce 2 3 ce 12 3 ce 22 3 ce 32 3 ce 42 3 ce 52 3 ce 62 3 ce 72 3 ce 82 3 ce 92 3 ce a2 3 ce b2 3 ce c2 3 ce d2 3 ce e2 3 ce f2 3 ce 2 4 ce 12 4 ce 22 4 ce 32 4 ce 42 4 ce 52 4 ce 62 4 ce 72 4 ce 82 4 ce 92 4 ce a2 4 ce b2 4 ce c2 4 ce d2 4 ce e2 4 ce f2 4 60 a5 d7 d0 8 a9 3 20 6 c9 4c 50 e1 a9 3 20 97 cc 20 ed c8 a9 8 20 d c7 a9 10 8d 53 1 a9 0 8d 77 1 85 30 85 31 85 32 85 33 8d 1 5 8d 3 5 8d 7e 1 ad 0 5 29 f 8d 0 5 ad 2 5 29 f 8d 2 5 20 e8 d1 a5 ff 29 fe 85 ff a9 6 20 ed c6 ad 70 1 20 6d a6 a9 a 85 d1 a9 3 85 d0 68 68 4c b9 c0 20 e e2 4c 2f e2 20 e0 e1 4c 2f e2 20 6 e2 4c 2f e2 20 fa e1 4c 2f e2 20 e0 e1 20 47 e2 4c cf e1 20 fa e1 20 47 e2 a5 b 85 15 a5 c 85 10 a5 d 85 11 a5 e 85 12 a5 f 85 13 60 a5 15 18 65 13 85 f a5 15 30 4 a9 0 f0 2 a9 ff 65 12 85 e a5 15 85 b 60 a5 15 c9 84 f0 17 38 e9 4 4c 17 e2 a5 15 c9 7c f0 b d0 6 a5 15 c9 3c f0 3 18 69 4 85 b 85 1 18 65 13 85 f a5 b 30 4 a9 0 f0 2 a9 ff 65 12 85 e 60 a5 14 18 65 11 85 d a5 14 30 4 a9 0 f0 2 a9 ff 65 10 85 c 4c 4d ce a5 14 18 65 11 85 d a5 14 30 4 a9 0 f0 2 a9 ff 65 10 85 c 60 ad 0 5 85 10 ad 1 5 85 11 ad 2 5 85 12 ad 3 5 85 13 ad 4 5 85 14 ad 5 5 85 15 ad 6 5 85 16 ad 7 5 85 17 ad 8 5 85 18 ad 9 5 85 19 ad a 5 85 1a ad b 5 85 1b ad c 5 85 1c ad d 5 85 1d ad e 5 85 1e ad f 5 85 1f 60 a5 10 8d 0 5 a5 11 8d 1 5 a5 12 8d 2 5 a5 13 8d 3 5 a5 14 8d 4 5 a5 15 8d 5 5 a5 16 8d 6 5 a5 17 8d 7 5 a5 18 8d 8 5 a5 19 8d 9 5 a5 1a 8d a 5 a5 1b 8d b 5 a5 1c 8d c 5 a5 1d 8d d 5 a5 1e 8d e 5 a5 1f 8d f 5 60 8e 68 1 8c 69 1 bd 0 3 85 10 bd 1 3 85 11 bd 2 3 85 12 bd 3 3 85 13 bd 4 3 85 14 bd 5 3 85 15 bd 6 3 85 16 bd 7 3 85 17 bd 8 3 85 18 bd 9 3 85 19 bd a 3 85 1a bd b 3 85 1b bd c 3 85 1c bd d 3 85 1d bd e 3 85 1e bd f 3 85 1f 60 8e 68 1 8c 69 1 bd 0 4 85 10 bd 1 4 85 11 bd 2 4 85 12 bd 3 4 85 13 bd 4 4 85 14 bd 5 4 85 15 bd 6 4 85 16 bd 7 4 85 17 bd 8 4 85 18 bd 9 4 85 19 bd a 4 85 1a bd b 4 85 1b bd c 4 85 1c bd d 4 85 1d bd e 4 85 1e bd f 4 85 1f 60 ae 68 1 a5 10 9d 0 3 a5 11 9d 1 3 a5 12 9d 2 3 a5 13 9d 3 3 a5 14 9d 4 3 a5 15 9d 5 3 a5 16 9d 6 3 a5 17 9d 7 3 a5 18 9d 8 3 a5 19 9d 9 3 a5 1a 9d a 3 a5 1b 9d b 3 a5 1c 9d c 3 a5 1d 9d d 3 a5 1e 9d e 3 a5 1f 9d f 3 ae 68 1 ac 69 1 60 ae 68 1 a5 10 9d 0 4 a5 11 9d 1 4 a5 12 9d 2 4 a5 13 9d 3 4 a5 14 9d 4 4 a5 15 9d 5 4 a5 16 9d 6 4 a5 17 9d 7 4 a5 18 9d 8 4 a5 19 9d 9 4 a5 1a 9d a 4 a5 1b 9d b 4 a5 1c 9d c 4 a5 1d 9d d 4 a5 1e 9d e 4 a5 1f 9d f 4 ae 68 1 ac 69 1 60 20 6c e4 ad 71 1 f0 2 68 68 60 85 0 a5 f1 85 d4 a9 2 20 ed c6 20 7f e4 a5 d4 4c ed c6 ad 71 1 85 7 a5 0 a a8 b0 b b9 82 80 85 0 b9 83 80 4c 9d e4 b9 82 81 85 0 b9 83 81 85 1 ae 66 1 a0 0 b1 0 85 f c8 a5 7 85 de b1 0 85 2 c8 b1 0 85 4 c8 b1 0 18 65 17 85 3 c8 b1 0 85 5 a5 19 29 10 f0 e a5 1e 29 2 d0 8 a5 5 29 f0 9 2 85 5 c8 a5 19 29 2 f0 1e a5 4 18 69 8 49 ff 18 69 1 85 4 a5 5 29 40 d0 6 a5 5 9 40 d0 4 a5 5 29 bf 85 5 a5 4 85 6 18 65 16 85 4 a5 de d0 c a5 6 30 c 90 c a9 7f 85 de d0 23 a5 6 30 f4 90 f4 a9 0 85 de a5 3 9d 0 2 b1 0 9d 1 2 a5 5 9d 2 2 a5 4 9d 3 2 8a 18 69 4 aa c8 a5 19 29 2 d0 4 a9 8 d0 2 a9 f8 85 6 18 65 4 85 4 a5 de d0 23 a5 6 30 23 90 a a9 7f 85 de c6 2 d0 da f0 8 a9 0 85 de c6 2 d0 b7 c6 f f0 3 4c a9 e4 8e 66 1 60 a5 6 30 dd 90 dd b0 e5 ad 6 5 85 0 ad 7 5 85 1 a5 0 38 e5 16 b0 1d 49 ff 18 69 1 85 2 a5 1 38 e5 17 b0 a 49 ff 18 69 1 a0 30 4c b9 e5 a0 20 4c d e6 85 2 a5 17 38 e5 1 b0 59 49 ff 18 69 1 a0 10 c5 2 90 c 85 3 98 9 8 a8 a5 3 4a 4c cb e5 46 2 c5 2 b0 1c 46 2 c5 2 b0 9 46 2 c5 2 90 1 c8 98 60 4a c5 2 b0 4 98 9 2 60 98 9 3 60 4a c5 2 b0 e 46 2 c5 2 b0 4 98 9 4 60 98 9 5 60 4a c5 2 b0 4 98 9 6 60 98 9 7 60 a0 0 c5 2 b0 d 85 3 98 9 8 a8 a5 3 46 2 4c 1f e6 4a c5 2 b0 21 46 2 c5 2 b0 e 46 2 c5 2 b0 4 98 9 7 60 98 9 6 60 4a c5 2 b0 4 98 9 5 60 98 9 4 60 4a c5 2 b0 e 46 2 c5 2 b0 4 98 9 3 60 98 9 2 60 4a c5 2 b0 1 c8 98 60 85 0 29 f a a8 a5 1 f0 f c9 1 f0 6 98 18 69 40 d0 4 98 18 69 20 a8 a5 0 29 20 d0 21 a5 0 29 10 d0 b b9 ca e6 85 1 b9 cb e6 85 2 60 b9 ca e6 85 2 b9 cb e6 49 ff 18 69 1 85 1 60 a5 0 29 10 d0 15 b9 ca e6 49 ff 18 69 1 85 1 b9 cb e6 49 ff 18 69 1 85 2 60 b9 ca e6 49 ff 18 69 1 85 2 b9 cb e6 85 1 60 0 f0 1 f0 3 f1 4 f1 6 f2 7 f2 9 f3 a f4 b f5 c f6 d f7 e f9 e fa f fc f fd 10 ff 0 e0 3 e0 6 e1 9 e1 c e2 f e4 12 e5 14 e7 16 e9 18 eb 1a ee 1c f0 1d f3 1e f6 1f f9 20 fd 0 d0 4 d0 9 d2 d d2 12 d4 16 d6 1b d8 1e db 21 de 24 d7 27 e5 2a e9 2b ed 2d f2 2e f6 30 fc 38 e5 16 b0 5 49 ff 18 69 1 c5 0 b0 e a5 2 38 e5 17 b0 5 49 ff 18 69 1 c5 1 60 a9 0 8d 7c 1 8d 7d 1 a2 a0 bd 9 3 f0 41 bd 7 3 85 2 bd 6 3 20 2a e7 b0 34 a5 19 9 10 85 19 a9 30 85 1e a9 1d 20 67 ea a9 ff 8d 7c 1 bd 8 3 c9 3 d0 2 f0 5 a9 0 9d 9 3 a5 1f 38 fd f 3 b0 8 20 fa 87 a9 ff 8d 7d 1 85 1f 8a 18 69 10 aa d0 b3 60 a9 0 8d 7c 1 8d 7d 1 a2 a0 bd 9 3 f0 1c bd 7 3 85 2 bd 6 3 20 2a e7 b0 f a9 20 20 67 ea a9 ff 8d 7c 1 a9 0 9d 9 3 8a 18 69 10 aa d0 d8 60 a9 0 8d 7c 1 a5 18 c9 22 f0 18 c9 28 f0 14 c9 54 f0 10 ad c 5 29 2 d0 3e ad 9 5 30 39 29 50 d0 35 ad 9 5 29 8 f0 7 a5 1 38 e9 6 85 1 ad 7 5 85 2 ad 6 5 20 2a e7 b0 1a a9 ff 8d 7c 1 a5 18 c9 22 f0 11 c9 28 f0 b c9 54 f0 23 a9 2 20 6 ea 18 60 38 60 a9 18 20 67 ea a9 0 85 19 a5 b1 18 69 10 c9 3f b0 3 85 b1 60 a9 3f 85 b1 60 a9 1f 20 67 ea a9 0 85 19 a5 b0 18 69 2 c9 f 90 2 a9 f 85 b0 60 a9 0 8d 7c 1 a9 c 85 0 a5 19 29 8 d0 4 a9 12 d0 9 a5 17 18 69 8 85 17 a9 c 85 1 a5 1c 29 2 d0 3f a5 19 29 d0 d0 39 a2 0 bd 8 3 c9 26 d0 5 bd 5 3 30 22 bd 9 3 f0 1d bd 7 3 85 2 bd 6 3 20 2a e7 b0 10 a9 ff 8d 7c 1 a9 0 9d 9 3 bd f 3 20 6 ea 8a 18 69 10 aa e0 80 d0 c9 a5 19 29 8 f0 7 a5 17 38 e9 8 85 17 60 85 3 86 2 84 1 ad 7a 1 f0 5 ce 7a 1 d0 2d ad 71 1 d0 38 ad 7 5 c5 17 b0 21 38 e5 17 b0 5 49 ff 18 69 1 c5 1 b0 13 ad 6 5 38 e5 16 b0 5 49 ff 18 69 1 c5 0 f0 14 90 12 ad d 5 cd 68 1 d0 8 ad c 5 29 fe 8d c 5 38 60 ad 68 1 8d d 5 a5 3 18 65 13 8d 3 5 a5 2 65 12 8d 2 5 ad c 5 9 1 8d c 5 ad 1 5 18 65 5 8d 1 5 a5 5 30 4 a9 0 f0 2 a9 ff 6d 0 5 8d 0 5 18 60 a a8 ad 9 5 29 90 d0 75 a5 19 29 20 d0 6f b9 d4 e9 85 0 b9 d5 e9 85 1 a0 0 a5 16 18 71 0 85 2 c8 a5 17 18 71 0 85 3 c8 ad 6 5 38 e5 2 b0 5 49 ff 18 69 1 d1 0 b0 42 c8 ad 7 5 38 e5 3 b0 5 49 ff 18 69 1 d1 0 b0 30 c8 ad 6 5 c5 2 90 c ad 9 5 29 2 f0 21 c8 c8 4c be e9 ad 9 5 29 2 d0 15 b1 0 18 65 11 8d 1 5 c8 b1 0 65 10 8d 0 5 a9 0 8d 4 5 60 de e9 e6 e9 ee e9 f6 e9 fe e9 0 8 10 10 10 ff f0 0 0 0 18 18 90 fe 70 1 0 10 20 18 5*0 4 18 10 90 fe 70 1 0 c 18 10 90 fe 70 1 85 0 a5 19 29 1 f0 35 ad 9 5 29 10 d0 2d ad c 5 29 2 d0 26 a9 20 8d e 5 ad 9 5 9 10 8d 9 5 29 2 d0 4 a9 fc d0 2 a9 4 8d 4 5 a5 b0 38 e5 0 85 b0 a9 23 20 67 ea 60 a5 19 29 10 d0 f9 a5 1c 29 2 d0 f3 a9 20 85 1e a5 19 9 10 85 19 29 2 d0 4 a9 fc d0 2 a9 4 85 14 d0 cf 85 d1 a9 2 85 d0 60 402*ff dd 50 a 5e 50 ff 0 ff ff 20 ff 2 0 0 0 f ff ff d0 e0 f af ff 2f 0 f fa 10 af 5d 1e f0 0 f ff ff ff 0 1 e f f0 0 1f f1 5f e0 12 0 0 0 ff ff ff a 50 2f ff f2 f0 10 ef ea 0 ff 5a f f0 0 5f fe ff f1 0 15 25 f f0 0 af fa d f2 0 0 50 0 ff ff f5 e 0 ff ff f2 f0 0 ff a1 d f5 a1 fa 20 1 ff fd ff f0 0 12 a0 fa 20 5 ff f0 f f0 0 0 20 f ff ff a1 a2 a ff ff da a0 5 fe 50 1f d5 50 ff 0 2 ff ff ff f0 0 2 20 ff 0 d ff a0 df 20 0 1 0 f ff ff d1 50 2e ff ff aa 10 f fa 10 de da 11 ff 20 2 ff ff ff a0 0 a 1 ff 10 e ff 2 fd 10 0 0 0 1f ff ff a5 21 5d ff fe a5 0 5e f5 5 ae d2 2e fd 0 e ff ff ff 0 0 12 1a fa 0 af fa 2a e5 10 0 0 0 ff ff fe 51 5 af ff fd 21 2 af a5 2a da d1 ae e5 0 5d ff ff f5 0 0 22 5e e2 11 af d5 55 52 10 0 0 12 ff ff fa 50 2a df ff ea 50 22 dd 55 2d 5a a5 dd 51 2 ae ff ff f1 0 1 12 da a5 a ee aa d5 51 0 0 1 1d ff ff d2 22 2d df fe ea 22 25 ad 55 55 aa aa ed 22 25 ad ff fe d1 0 11 12 da 51 55 ad aa d5 21 0 0 11 2f ff fe d2 22 5a fe fe d5 11 2a aa aa d5 a5 ad aa 52 2a dd ef fd 52 10 11 15 55 25 5a d5 aa d2 50 10 0 11 af ff ee a5 25 2e ef dd aa 25 55 2a ad 55 5a ad a5 25 55 ae fe fa a2 22 11 25 52 55 5a ad aa a5 11 0 10 15 af ef dd 55 25 ad dd dd 55 2a 55 52 d5 55 5a d5 55 25 55 dd ee ed 25 11 11 2a 52 55 aa ad aa a2 22 10 10 2a ee fd da d2 aa da ee da d2 aa 4*55 5a d5 52 a5 5a ee ee ea 52 51 12 52 52 55 aa ad 5a 51 11 1 2 5a dd dd da aa ad ad da da aa aa 4*55 aa d5 52 a5 ad ae fa d5 51 22 52 52 2a 55 aa ad 55 22 22 11 5 2d ae ed ad aa da da da d5 aa a5 4*55 ad 55 2a aa ae dd da aa a5 12 52 51 2a aa aa ad 52 51 21 10 52 5a dd ad ad aa da ed ad 6*55 5a ad 52 aa aa da ed d5 aa 52 52 52 25 52 aa aa ad 2a 25 10 22 52 8*ad 6*55 4*aa ad ad ae d5 55 25 2a 51 25 52 aa aa aa a5 12 22 22 55 5a da 4*ad d5 ad 6*55 4*aa ad ad da ad 52 a5 25 25 25 52 aa aa aa 52 25 11 22 aa ad 5a d5 ad ae da da ad 5*55 5a 4*aa d5 ae da aa aa 55 25 25 25 52 aa aa a5 25 22 25 25 2a d5 aa 5*da ad 5*55 5a 4*aa da da da aa a5 52 55 25 25 52 aa aa 55 22 51 25 25 55 5a ad 5a 4*da ad 5*55 4*aa ad 5a da d5 aa 55 2a 52 a5 25 52 aa a5 52 52 25 12 a5 55 aa d5 aa dd ad ad 5a ad 5*55 4*aa d5 ad 5a d5 55 52 a5 52 55 25 52 aa a5 25 25 12 52 aa aa aa d5 4*ad 5a ad 4*55 5a 4*aa d5 ad aa d5 55 52 a5 2a 52 a5 52 aa 55 25 12 52 52 aa aa ad 5a d5 da d5 ad aa ad 4*55 4*aa ad 5a ad aa d5 52 aa 55 25 52 a5 52 a5 52 52 52 2a 52 aa ad 55 aa da da da d5 aa ad 4*55 4*aa d5 5a d5 aa ad 2a a5 52 a5 2a 55 52 a5 2a 51 25 25 4*55 ad ad aa da d5 aa ad 55 55 55 5a 4*aa d5 aa d5 aa aa aa 55 2a 55 2a 55 2a 55 4*25 55 55 55 5a ad ad ad aa d5 aa ad 55 55 55 5a aa aa aa ad 55 ad 5a aa aa a5 55 2a 55 2a 55 2a 52 52 52 55 25 55 55 55 aa da da ad ad 5a aa ad 55 55 55 4*aa a5 5a 55 a5 55 5a 55 aa 14*ff 4c 6c e4 dd 20 1a da df f0 2 ff fe af 4*0 ff ff 50 a0 f ff f2 f0 5 fd 20 af 5d f f0 0 ef ef ff 0 1a 20 ff 0 a ff 2f ea 4*0 ff ff a5 50 5f ff ee 0 1f fe 0 ff 52 fd 0 5 ff ff ff 0 2 a0 ff 0 f f0 1f f1 0 0 0 f ff fd a 0 ff ff ef 0 1f f5 1 fd 50 ff 0 d ff ff f0 20 2a 50 ff 0 f fa e f0 0 0 0 f ff fd 15 2 ff ff de 0 2f f1 d ed 20 ff 0 f ff ff f0 0 aa 10 ff 0 f fa f f0 0 0 0 ff ff a1 22 d ff ff aa 0 df d0 2e ed 11 ff 0 f ff ff f1 0 5 2 ff 0 2f f1 2f 50 0 0 0 ff ff d0 51 1a ff ff d0 2 ef a1 5a ed e fd 0 f ff ff f0 0 12 1a f5 0 ef d1 ad 20 0 0 0 ff ff f1 10 5e ff ff 21 5 dd 51 5d aa 5d e5 0 af ff ff d0 0 2 5e d1 2 fe aa d2 20 0 0 5 ff ff d1 2 af ff fd 10 2a dd 2a ad a5 ae d2 2 de ff ff a0 0 22 ae a2 2a ed aa d2 10 0 0 d ff ff 51 5 5f ff ea 50 2a da aa ad 55 da a5 5 ae ff ff 21 0 22 ad 51 2d ad 5a a5 0 0 0 2f ff fd 51 11 af ff d5 22 55 5a aa d5 5a da 52 52 dd ff fa 50 10 22 d5 25 55 aa da a2 10 0 0 ae ff fd 25 15 af ee ea a2 aa aa aa d5 5a da 52 55 ae ff ed 22 10 25 52 52 d5 aa da 51 1 0 1 5e fe ee a5 2a de ee ea 52 aa aa aa d5 5a d5 25 55 af ef da 51 10 52 52 55 55 aa d5 22 20 10 2 dd de ed 55 2d ae ee d5 55 2a aa aa d5 aa d5 25 5a dd ef ad 22 51 12 52 55 55 aa d5 11 10 1 5 ae ee dd 55 5a dd da ad 55 2a aa aa d5 ad 55 25 aa ee ef aa 52 25 22 52 55 55 aa aa 51 1 1 12 da ee da ad 5d ad da 4*aa ad 55 aa d2 aa ad ae fa d5 25 25 22 52 55 55 aa a5 22 21 1 25 ad ae da ad ad ae d5 4*aa ad 55 aa aa aa ad dd ae aa a5 25 22 52 55 55 aa a5 11 10 22 2a da da d5 ad ae da d5 4*aa ad 5a aa aa aa da dd da aa 52 55 12 52 a5 55 55 52 25 2 22 55 5a da d5 ad da da d5 4*aa ad 5a aa aa aa da ed ad a5 4*52 a5 55 55 25 22 21 22 aa ad 5a d5 ae da da d5 4*aa d5 5a aa aa aa da ed ad 55 2a 52 52 52 a5 55 55 25 11 11 25 2a d5 5a 4*da d5 aa aa aa ad 55 5a aa aa 4*ad 52 a5 52 52 52 aa 55 52 52 25 11 25 55 55 aa da da ed aa d5 aa aa aa ad 55 aa aa aa ad ad ad aa aa a5 2a 52 52 aa 55 52 51 22 25 25 55 5a aa da dd ad aa d5 aa aa aa d5 55 aa aa aa d5 ad ad aa aa 55 25 52 52 aa 55 25 25 12 25 2a aa aa 4*ad aa d5 aa aa aa d5 55 aa aa aa da da ad aa a5 52 a5 2a 52 aa 55 25 22 51 25 2a aa aa d5 ad ad ad aa d5 aa aa ad 55 5a aa aa ad 5a da ad 55 55 52 a5 2a 52 aa 52 a2 52 25 25 2a aa aa da ad da ad ad 55 aa aa ad 55 5a aa aa ad 5a da ad 55 55 2a 55 25 52 a5 52 52 51 25 25 52 aa ad 5a da da d5 ad 55 aa aa ad 55 5a aa aa d5 aa da ad 55 55 2a 52 a5 52 a5 52 51 25 12 a5 55 2a d5 aa da da da ad 55 aa aa d5 55 5a aa aa d5 ad 5a ad 55 52 a5 52 a5 52 a5 25 25 22 52 a5 55 55 55 ad ad aa da ad 55 aa aa d5 55 aa aa aa d5 ad 5a ad 55 2a a5 52 55 2a 55 25 22 52 52 a5 55 55 5a ad ad ad 5a ad 5a aa aa d5 55 aa aa ad 5a ad 5a aa aa aa 55 2a 55 2a 5*52 a5 55 55 5a da d5 ad aa d5 5a aa ad 55 5a aa aa ad 5a ad aa aa aa a5 55 2a 55 2a 52 52 52 25 52 a5 55 55 aa da da ad aa d5 5a aa ad 55 5a aa aa d5 5a d5 aa aa aa a5 52 a5 52 a5 2a 51 25 25 52 5a a5 5a 55 5a 55 aa a5 55 5a a5 aa 55 5a 5a 8*ff ad d0 a da ff 0 1f f2 ff f0 0 0 0 ff fd 5 0 ff ff d0 2 ff 0 fd a0 ff 0 5f ff ff 0 15 10 ff 0 df 50 fa 0 0 0 f ff a2 50 2f ff ff 0 df a0 5f a5 fd 0 f ff ff f0 0 a0 ff 0 f5 f0 f5 0 0 0 f ff 50 50 e ff ff e0 f e5 d ea 2f f0 0 ff ff f0 50 a5 f f0 f a0 2e f1 0 0 0 ff fa 15 0 ff ff ed 0 fe 10 fe a1 ff 0 f ff ff 1 d 20 ef 0 af f0 df 0 0 0 f ff a1 20 5f ff fd 0 5f e0 5e e5 1f f0 0 ff ff f0 10 d1 f f0 a fd e d0 0 0 d ff f0 11 a ff ff d0 a fd a ee 52 ff 0 1f ff ff 20 2 22 fd 0 ff 25 aa 0 0 0 fd ff 21 2 df ff f2 1 de a2 da d2 df 50 a ff ff f1 0 11 5f 20 2f e5 aa 50 0 0 2 ff fe 10 2e ff ff 10 2d d5 55 ad 5a f2 2 df ff ff 0 1 1a e2 15 ed 5a a2 0 0 0 ef ff a2 5 df ff d1 5 ad 55 aa d5 da 50 5a ff ff d0 1 5 ad 12 ae ad a5 10 0 0 f ff ea 21 2e ff fa 51 2a ad 5a aa dd 52 2a de ff fa 21 1 2a a5 2d 5a d5 22 0 0 5 ef fe a2 25 ef ee d2 52 aa d5 aa da d5 25 2d ef ff 51 10 15 25 2a d5 ad 52 10 0 0 af ef d5 25 5d de ea a5 55 55 5a ad ad 25 55 af fe ea 22 22 52 52 ad 5a aa 50 10 0 15 ee fa aa 5a ee ed aa 55 55 55 aa da d2 55 5d df dd 52 22 25 25 2a d5 aa a2 20 10 2 ae ee da aa da ee d5 55 55 55 aa ad aa a5 5a de fd aa 52 25 22 52 ad 5a a5 11 0 10 55 da ed 55 ad da ea d5 55 55 5a aa da aa 55 ae ef ad 52 52 52 25 52 d5 55 51 1 1 12 ad ae ad ad ad da ad 55 55 55 aa d5 aa a5 ad ae fa d5 25 25 22 55 55 55 52 22 10 11 55 ad aa da da ed aa d5 55 55 aa ad 5a aa 5a dd da ea aa 52 52 2a 55 55 52 51 10 21 25 aa d5 ad ad da da aa d5 55 5a aa d5 aa aa ad dd ad aa 52 a5 25 25 55 52 a5 11 1 25 2a d5 5a da dd ad aa ad 55 5a aa ad 5a aa aa ed da d5 55 2a 52 52 55 55 25 22 22 12 55 55 5a ad ae da da aa d5 55 aa ad 55 aa aa da dd ad 55 52 52 55 25 55 2a 51 21 11 25 55 55 aa dd ad ad aa ad 55 5a aa d5 5a aa ad ae da d5 52 a5 25 52 55 52 52 51 11 12 a5 55 aa 4*da aa d5 55 aa ad 55 aa aa dd ad aa aa a5 52 55 25 55 25 22 25 11 2a aa aa 4*ad aa d5 55 5a aa d5 5a aa da da da aa aa 55 25 2a 55 2a 51 22 25 15 2a aa ad 5a ed aa da ad 55 5a aa d5 55 aa ad ad ad aa aa 55 2a 52 a5 52 52 51 22 51 52 aa aa da da da d5 aa d5 55 aa ad 55 5a aa da da d5 aa 55 52 55 2a 55 25 22 51 22 a5 52 aa d5 ad ad ad 5a ad 55 5a aa d5 5a aa d5 ad ad 55 55 52 a5 52 a5 2a 51 22 51 2a 55 2a ad aa da da d5 aa d5 5a aa ad 55 aa ad ad 5a d5 55 55 2a 55 25 52 52 51 22 52 a5 55 2d 5a da da ad 5a ad 55 aa ad 55 5a aa da da ad 55 55 2a 55 2a 55 25 25 12 25 2a 55 55 55 ad ad aa da aa d5 5a aa d5 5a aa d5 ad aa d5 55 52 a5 52 a5 52 51 25 12 52 a5 55 55 ad aa da d5 aa d5 55 aa d5 55 aa ad 5a da aa d5 52 aa 55 2a 52 52 52 25 25 2a 55 55 aa da d5 ad 5a ad 55 aa ad 55 5a aa da ad aa ad 52 aa 55 2a 55 25 25 12 52 52 a5 55 5a d5 ad aa d5 aa d5 5a aa d5 5a aa d5 ad 5a aa aa aa 55 52 a5 2a 51 25 22 55 2a 55 5a ad ad 5a d5 aa ad 5a aa d5 55 aa ad 5a d5 aa aa aa a5 52 a5 52 52 52 25 25 52 a5 5a ad 5a da ad 5a ad 55 aa ad 55 aa aa da ad 5a aa aa a5 55 2a 55 25 22 52 52 55 2a aa aa da ad aa d5 aa d5 5a aa d5 5a aa d5 aa d5 aa aa a5 55 2a a5 4*25 5a 55 a5 aa 5a aa a5 aa aa 55 55 8*ff dd 50 a 5f f ff 0 2f ff f f0 0 0 0 f ff ff 50 50 f ff f1 d0 10 df d2 5 f5 d1 fe 0 2 ff ef ff 1 a 1d f f0 0 2f f2 f5 f0 0 0 0 f ff ff 2 d0 f ff fa f0 1 ff a0 f f2 e0 ff 0 d ff ff ff 0 0 52 f f0 0 ff 2 ff a0 0 1 0 f ff ff d 0 ff ff ea f0 1 fe 50 2f d5 2f a0 a0 f ff ff f0 50 5 50 fa 1 a ff a0 ff 4*0 ff ff f2 2d 0 ff ff ee 50 a fe 10 de d5 f f0 0 5f ff ff f0 0 15 20 ff 0 e ff 2 fe 4*0 ff ff f5 51 a ff ff da 0 2f f5 2 ee d2 1f f2 0 5f ff ff f0 0 5 0 ff 10 f fe a f2 0 0 0 2 ff ff f5 21 2d ff ff a2 1 5e f2 15 da d1 5f d0 0 ef ff ff e0 0 5 a fd 0 5f f2 2e a5 0 0 0 d ff ff d1 11 2f ff fe 51 1 af a5 2a da a5 de 50 5 df ff ff 10 0 22 2e e5 1 df a5 5a 51 0 0 0 2f ff ff 51 11 5f ff ee 50 12 dd 52 ad 5a 5a ed 21 a ef ff fe 20 1 11 5d 52 15 ae d5 aa 50 0 0 2 af ff ff 11 12 de ff ed 21 15 aa aa ad a5 ad aa 51 15 df ff f5 1 1 5 ad 25 1a da ad a5 20 0 10 5 df ff ea 51 15 af fe ea 51 2a aa aa d5 55 ad aa 25 2a fe ff d5 10 21 12 aa 52 aa da ad 52 21 0 1 a ef ff da 51 2a ee fe d5 25 2a aa aa d5 5a da a5 25 2d de ff aa 22 11 12 a5 2a ad 55 ad 52 11 0 1 1a ef ef ad 25 55 dd dd aa a5 52 aa aa d5 5a d5 52 55 5a ef ee d5 11 11 25 25 2a ad 5a ad 25 2 10 1 2d de ee ea a5 5d ae ed aa 55 55 2a ad 55 5a d5 52 55 ad de ee aa 25 11 25 25 2a aa d5 aa 52 21 1 2 aa ee ee da aa ad da ed 55 55 55 2a d5 55 aa d5 2a 5a ae ee ed 55 22 51 25 25 2a aa d5 a5 51 10 11 5 5a dd ae d5 5a da ed ad 6*55 aa d5 2a aa da ee ea aa 52 25 25 25 2a ad 55 55 22 22 10 52 7*ad aa d5 4*55 5a aa d2 aa aa dd da da a5 4*25 52 ad 55 52 51 11 2 52 d5 6*ad aa ad 4*55 5a aa aa aa ad ad da da 55 4*25 52 ad 55 2a 22 22 25 25 aa da d5 ad ad da d5 aa ad 4*55 5a aa aa aa ad ae da d5 52 a5 25 25 25 55 55 52 a5 12 22 25 2a ad 5a d5 ad ae da d5 aa ad 4*55 4*aa da da da ad 2a 52 a5 25 25 55 55 2a 52 51 11 25 55 55 aa 4*da d5 aa ad 4*55 4*aa da da da aa a5 52 52 a5 25 55 52 a5 51 22 51 25 55 5a ad 5a da da da d5 aa ad 4*55 aa aa aa ad 5a da da aa 55 2a 52 55 25 55 52 a5 25 12 25 2a 55 aa ad 5a da ed aa d5 aa ad 55 55 55 5a aa aa aa ad ad aa d5 55 55 25 52 55 25 55 2a 52 52 51 25 2a aa aa d5 4*ad 5a aa ad 55 55 55 5a aa aa aa d5 ad ad 55 55 52 a5 2a 52 a5 55 2a 52 51 25 25 2a aa ad 55 4*ad 5a aa ad 55 55 55 aa aa aa ad 5a ad ad 55 55 2a 55 25 52 a5 55 25 25 25 22 a5 52 aa d5 5a da da d5 ad 5a aa ad 55 55 55 aa aa aa ad 5a d5 aa d5 52 aa 52 a5 52 a5 52 a5 25 22 52 a5 55 55 55 aa da da da ad 5a aa ad 55 55 5a aa aa aa d5 aa d5 aa aa aa a5 52 a5 52 a5 5*52 4*55 ad ad aa da d5 5a aa ad 55 55 5a aa aa aa d5 aa da aa aa aa 55 2a 55 2a 55 2a 4*52 a5 55 55 5a ad ad ad 5a d5 5a aa ad 55 55 aa aa aa ad 55 ad 5a aa aa aa 55 2a 55 2a 55 25 51 25 25 2a a5 55 55 aa da d5 ad aa d5 aa aa d5 55 55 aa aa aa ad 5a ad 5a aa aa a5 52 a5 52 aa 52 a5 25 25 25 2a a5 55 5a ad 5a da d5 ad 55 aa 5a a5 a5 aa 5a aa 55 aa a5 5a 5a 8*ff ae d0 a da ff 0 f ff 2f f2 0 1 0 f ff f1 11 d ff f1 f0 5 fd 0 fe a2 ff 0 d ff ff f0 0 a5 f f0 0 ff 2f d2 0 0 0 f ff f1 12 a ff ff f0 1 ff 10 df 2a fd 0 d ff ff f0 0 d5 f f0 0 ff 50 fe 0 0 0 f ff d2 15 1 ff ff d0 2 ff a0 af aa f f0 2 ff ff f0 50 55 f 50 0 ff f0 af 0 0 0 f ff f2 15 1 ff ff da 0 ef a0 5f aa f f0 0 ff ff ff 0 d 0 ff 0 5f f0 2f 50 0 0 e ff f5 5 1 ef ff fa 0 af e1 1e ea 1d fd 0 2f ff ff 50 0 50 af 50 f f2 5e a0 0 0 0 ff ff 51 10 df ff fa 0 af e2 2d da 55 fd 0 1f ff ff d0 0 10 af a0 f f5 2d 51 0 0 0 ff ff 50 21 5f ff fa 10 2e f2 55 da 55 ee 10 1e ff ff f0 0 10 af a0 1d ed 2d 51 0 0 0 2f ff fa 10 5e ff fe 21 1a da a5 ad 55 dd 20 2d ef ff f2 0 11 2e d1 d da ad 52 0 0 0 5f ff f5 2 2d ff fd 51 a d5 5a ad 55 da a1 15 df ff f2 10 2 55 a5 15 ad aa d2 10 0 0 1e ff fd 21 15 ef fe d1 12 d5 55 ad 55 ae 52 2a de ff fa 21 1 15 a5 15 ad 5a d2 20 0 0 2e ff fa a2 52 ef ee e5 25 55 55 aa d5 ad 52 52 dd ef fd 22 21 12 55 25 aa d5 aa 21 0 0 2a fe fd a5 25 ae fd d5 2a a5 55 aa ad ad 52 55 5a fe fd 52 22 25 25 25 aa ad aa 22 10 0 15 af dd d5 2a da ee ea aa aa 55 aa aa da d2 a5 5a ef ee d2 51 12 51 2a aa ad 55 51 1 0 12 ae ee ea aa da ed da 5*aa da aa a5 5a ee ef aa 51 25 12 52 aa aa d5 25 10 10 11 5a ed da aa da dd ad 5a 4*aa da aa aa 5a dd dd d5 52 25 25 22 aa aa ad 25 11 1 2 aa dd ad 5a da dd ad 55 4*aa d5 aa aa aa dd da ea aa 52 51 25 2a aa aa a5 21 10 12 55 5a 5*da d5 5a aa aa aa d5 aa aa aa da ee da a5 4*52 aa aa a5 22 21 11 2a aa da d5 ad da da d5 55 aa aa aa d5 5a aa aa da dd ad 55 52 52 52 55 2a aa a5 22 22 22 52 ad 5a ad ad ae da ad 55 aa aa aa ad 5a aa aa ad da ea d5 52 55 25 25 2a aa a5 22 50 25 15 55 5a 5*ad 55 aa aa aa ad 5a aa aa ad ae da ad 2a a5 25 25 52 aa a5 25 11 11 25 55 5a ad 5a ed ad aa d5 5a aa aa ad 55 aa aa ad ad ad aa aa 55 25 52 55 2a a5 25 11 22 52 a5 aa aa da dd ad 5a d5 55 aa aa ad 55 aa aa ad ad ad aa aa 55 2a 52 55 2a a5 25 22 25 12 aa aa aa 4*da ad 55 aa aa ad 55 aa aa ad ad ad 5a aa 55 2a 52 a5 52 a5 25 22 25 25 2a aa aa 4*da ad 55 aa aa ad 55 5a aa ad 5a da d5 55 55 2a 52 a5 52 a5 25 22 51 25 52 aa ad 5a da da d5 aa d5 5a aa ad 55 5a aa ad 5a da d5 55 55 2a 55 25 52 a5 51 25 12 52 55 52 ad 5a da da ad aa d5 5a aa aa d5 5a aa ad 5a d5 ad 55 55 2a 55 2a 55 25 52 25 22 52 55 55 55 5a da d5 ad aa d5 5a aa aa d5 5a aa aa da ad aa d5 55 2a 55 2a 55 2a 52 51 22 52 a5 55 55 5a ad ad ad 5a ad 55 aa aa d5 5a aa aa da ad aa ad 55 2a 55 2a 55 2a 52 51 25 25 2a 55 55 5a ad ad ad 5a ad 55 aa aa d5 5a aa aa d5 ad 5a aa aa aa 55 2a 55 2a 52 52 25 25 2a 55 55 5a ad ad ad 5a ad 55 aa aa d5 55 aa aa d5 ad 5a aa aa aa 55 2a 55 2a 52 52 51 25 52 a5 55 5a d5 ad aa da ad 55 5a aa d5 55 aa aa d5 aa d5 aa aa aa 55 2a a5 4*52 2a 52 aa 55 aa d5 ad aa da aa d5 5a aa d5 55 aa aa d5 aa d5 aa aa aa 55 2a a5 6*52 aa aa aa d5 ad aa d5 aa d5 5a aa d5 55 aa aa d5 aa d5 5a aa a5 55 2a a5 55 55 aa 55 55 5a aa ff ff 80 78 ee f2 ff 4c 0 c0 51 c1 f3 ff f3 ff </a> </comp> <comp lib="0" loc="(360,420)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="0"/> </comp> <comp lib="1" loc="(690,180)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(990,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="ROMout"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(480,180)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PH2"/> </comp> <comp lib="6" loc="(612,301)" name="Text"> <a name="text" val="PRG ROM"/> </comp> <comp lib="1" loc="(850,350)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="4" loc="(950,420)" name="Register"> <a name="trigger" val="falling"/> </comp> <comp lib="1" loc="(400,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(613,284)" name="Text"> <a name="text" val="Load 64K CPU Memory dump here (with DPCM samples)"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(830,120)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(250,350)" name="Pin"> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="Addr"/> </comp> <comp lib="0" loc="(320,180)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="0"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(320,200)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="0"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(990,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_out"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="RegDumpProcessor"> <a name="circuit" val="RegDumpProcessor"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="155" stroke="#000000" stroke-width="2" width="170" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="85">PHI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="193">redump_data</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="85">Core R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="189" y="134">Core AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="188" y="154">Core DB</text> <text font-family="SansSerif" font-size="14" font-weight="bold" text-anchor="middle" x="135" y="45">RegDumpProcessor</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="174" y="193">regdump_addr</text> <circ-port height="8" pin="130,80" width="8" x="46" y="76"/> <circ-port height="8" pin="180,460" width="8" x="46" y="186"/> <circ-port height="10" pin="1520,50" width="10" x="215" y="75"/> <circ-port height="10" pin="1520,140" width="10" x="215" y="125"/> <circ-port height="10" pin="1520,190" width="10" x="215" y="145"/> <circ-port height="10" pin="1520,440" width="10" x="215" y="185"/> <circ-port height="10" pin="600,670" width="10" x="215" y="85"/> <circ-port height="8" pin="130,280" width="8" x="46" y="86"/> <circ-port height="8" pin="140,800" width="8" x="46" y="196"/> <circ-anchor facing="east" height="6" width="6" x="47" y="77"/> </appear> <wire from="(1310,270)" to="(1310,800)"/> <wire from="(410,190)" to="(410,320)"/> <wire from="(550,670)" to="(600,670)"/> <wire from="(1420,140)" to="(1520,140)"/> <wire from="(440,250)" to="(620,250)"/> <wire from="(180,460)" to="(230,460)"/> <wire from="(360,120)" to="(360,140)"/> <wire from="(230,460)" to="(340,460)"/> <wire from="(400,200)" to="(400,220)"/> <wire from="(400,160)" to="(400,180)"/> <wire from="(490,410)" to="(490,430)"/> <wire from="(130,80)" to="(620,80)"/> <wire from="(200,130)" to="(200,600)"/> <wire from="(800,270)" to="(800,360)"/> <wire from="(770,250)" to="(870,250)"/> <wire from="(330,720)" to="(440,720)"/> <wire from="(1270,260)" to="(1330,260)"/> <wire from="(510,390)" to="(750,390)"/> <wire from="(620,170)" to="(620,250)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(730,430)" to="(900,430)"/> <wire from="(960,230)" to="(960,310)"/> <wire from="(190,670)" to="(290,670)"/> <wire from="(1450,450)" to="(1460,450)"/> <wire from="(460,190)" to="(550,190)"/> <wire from="(980,210)" to="(1000,210)"/> <wire from="(270,120)" to="(360,120)"/> <wire from="(400,180)" to="(430,180)"/> <wire from="(640,200)" to="(640,500)"/> <wire from="(450,390)" to="(480,390)"/> <wire from="(610,320)" to="(630,320)"/> <wire from="(830,500)" to="(830,600)"/> <wire from="(770,270)" to="(800,270)"/> <wire from="(530,230)" to="(560,230)"/> <wire from="(1230,260)" to="(1230,380)"/> <wire from="(140,800)" to="(1310,800)"/> <wire from="(450,650)" to="(450,690)"/> <wire from="(430,320)" to="(570,320)"/> <wire from="(620,530)" to="(690,530)"/> <wire from="(330,650)" to="(340,650)"/> <wire from="(800,360)" to="(1190,360)"/> <wire from="(1230,260)" to="(1250,260)"/> <wire from="(650,210)" to="(660,210)"/> <wire from="(770,260)" to="(820,260)"/> <wire from="(1310,100)" to="(1310,250)"/> <wire from="(630,180)" to="(630,320)"/> <wire from="(230,710)" to="(290,710)"/> <wire from="(1420,190)" to="(1520,190)"/> <wire from="(1340,70)" to="(1340,100)"/> <wire from="(1360,260)" to="(1400,260)"/> <wire from="(1340,100)" to="(1400,100)"/> <wire from="(640,500)" to="(680,500)"/> <wire from="(340,460)" to="(450,460)"/> <wire from="(560,210)" to="(560,230)"/> <wire from="(270,620)" to="(490,620)"/> <wire from="(550,190)" to="(570,190)"/> <wire from="(1400,210)" to="(1400,260)"/> <wire from="(380,220)" to="(400,220)"/> <wire from="(1190,200)" to="(1390,200)"/> <wire from="(420,700)" to="(440,700)"/> <wire from="(610,200)" to="(640,200)"/> <wire from="(470,710)" to="(490,710)"/> <wire from="(440,210)" to="(440,250)"/> <wire from="(1310,100)" to="(1340,100)"/> <wire from="(340,150)" to="(350,150)"/> <wire from="(340,230)" to="(350,230)"/> <wire from="(820,260)" to="(820,380)"/> <wire from="(1490,440)" to="(1520,440)"/> <wire from="(730,100)" to="(1310,100)"/> <wire from="(500,410)" to="(500,600)"/> <wire from="(730,190)" to="(730,430)"/> <wire from="(370,600)" to="(500,600)"/> <wire from="(830,500)" to="(910,500)"/> <wire from="(230,460)" to="(230,650)"/> <wire from="(500,600)" to="(830,600)"/> <wire from="(560,210)" to="(570,210)"/> <wire from="(900,430)" to="(900,480)"/> <wire from="(1310,270)" to="(1330,270)"/> <wire from="(430,320)" to="(430,390)"/> <wire from="(180,280)" to="(370,280)"/> <wire from="(1400,100)" to="(1400,120)"/> <wire from="(340,390)" to="(340,460)"/> <wire from="(180,110)" to="(240,110)"/> <wire from="(520,340)" to="(570,340)"/> <wire from="(340,640)" to="(340,650)"/> <wire from="(730,100)" to="(730,190)"/> <wire from="(630,180)" to="(670,180)"/> <wire from="(200,600)" to="(370,600)"/> <wire from="(230,310)" to="(230,460)"/> <wire from="(920,310)" to="(960,310)"/> <wire from="(960,230)" to="(1000,230)"/> <wire from="(490,430)" to="(730,430)"/> <wire from="(650,460)" to="(760,460)"/> <wire from="(1230,60)" to="(1230,260)"/> <wire from="(490,620)" to="(490,710)"/> <wire from="(190,730)" to="(290,730)"/> <wire from="(1450,430)" to="(1460,430)"/> <wire from="(880,330)" to="(900,330)"/> <wire from="(760,460)" to="(760,500)"/> <wire from="(400,200)" to="(430,200)"/> <wire from="(750,280)" to="(750,390)"/> <wire from="(330,330)" to="(360,330)"/> <wire from="(340,390)" to="(360,390)"/> <wire from="(390,320)" to="(410,320)"/> <wire from="(820,380)" to="(1230,380)"/> <wire from="(640,200)" to="(670,200)"/> <wire from="(1360,50)" to="(1520,50)"/> <wire from="(1370,180)" to="(1390,180)"/> <wire from="(360,140)" to="(360,200)"/> <wire from="(900,480)" to="(910,480)"/> <wire from="(370,410)" to="(370,600)"/> <wire from="(230,310)" to="(360,310)"/> <wire from="(1310,40)" to="(1330,40)"/> <wire from="(230,650)" to="(230,710)"/> <wire from="(690,520)" to="(690,530)"/> <wire from="(450,390)" to="(450,460)"/> <wire from="(390,650)" to="(450,650)"/> <wire from="(710,500)" to="(760,500)"/> <wire from="(230,650)" to="(290,650)"/> <wire from="(620,170)" to="(670,170)"/> <wire from="(1470,460)" to="(1470,490)"/> <wire from="(870,250)" to="(870,320)"/> <wire from="(130,280)" to="(180,280)"/> <wire from="(1230,60)" to="(1330,60)"/> <wire from="(370,280)" to="(370,300)"/> <wire from="(620,250)" to="(620,530)"/> <wire from="(1030,220)" to="(1130,220)"/> <wire from="(620,80)" to="(620,170)"/> <wire from="(1130,150)" to="(1130,220)"/> <wire from="(390,390)" to="(430,390)"/> <wire from="(940,490)" to="(1470,490)"/> <wire from="(1380,130)" to="(1390,130)"/> <wire from="(330,660)" to="(360,660)"/> <wire from="(180,110)" to="(180,280)"/> <wire from="(550,190)" to="(550,670)"/> <wire from="(380,160)" to="(400,160)"/> <wire from="(340,640)" to="(360,640)"/> <wire from="(410,190)" to="(430,190)"/> <wire from="(1130,150)" to="(1390,150)"/> <wire from="(870,320)" to="(900,320)"/> <wire from="(760,500)" to="(830,500)"/> <wire from="(1190,200)" to="(1190,360)"/> <wire from="(340,170)" to="(350,170)"/> <wire from="(340,210)" to="(350,210)"/> <wire from="(650,210)" to="(650,460)"/> <wire from="(720,190)" to="(730,190)"/> <wire from="(1310,250)" to="(1330,250)"/> <comp lib="2" loc="(1360,50)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1310,40)" name="Constant"/> <comp lib="6" loc="(358,38)" name="Text"> <a name="text" val="https://github.com/emu-russia/breaknes/blob/main/BreaksAPU/NSFPlayerInterop/RegDumpProcessor.cpp"/> </comp> <comp lib="0" loc="(140,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RDY"/> </comp> <comp lib="6" loc="(816,183)" name="Text"> <a name="text" val="RegOp Setup"/> </comp> <comp lib="0" loc="(340,150)" name="Constant"/> <comp lib="3" loc="(330,720)" name="Subtractor"> <a name="width" val="32"/> </comp> <comp lib="3" loc="(610,200)" name="Comparator"> <a name="width" val="32"/> </comp> <comp lib="0" loc="(600,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="32"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(470,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(270,120)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1042,351)" name="Text"> <a name="text" val="Value (if write)"/> </comp> <comp lib="0" loc="(1520,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Core R/W"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,730)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x2"/> </comp> <comp lib="6" loc="(819,242)" name="Text"> <a name="text" val="Reg Index (0-0x1f)"/> </comp> <comp lib="0" loc="(920,310)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="16"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> </comp> <comp lib="6" loc="(1090,396)" name="Text"> <a name="text" val="1: Read register"/> </comp> <comp lib="0" loc="(1520,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="Core DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(758,92)" name="Text"> <a name="text" val="Do RegOp"/> </comp> <comp lib="6" loc="(1447,239)" name="Text"> <a name="text" val="1: RegOp + Write"/> </comp> <comp lib="1" loc="(940,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(769,517)" name="Text"> <a name="text" val="Load PHI Counter"/> </comp> <comp lib="3" loc="(330,660)" name="Comparator"> <a name="width" val="32"/> </comp> <comp lib="0" loc="(520,340)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,230)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(1270,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(880,330)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(1450,430)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp lib="6" loc="(1073,210)" name="Text"> <a name="text" val="Reg Address"/> </comp> <comp lib="1" loc="(1360,260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="3" loc="(610,330)" name="Comparator"> <a name="width" val="32"/> </comp> <comp lib="2" loc="(1420,190)" name="Multiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1504,96)" name="Text"> <a name="text" val="Default: Read address 0x0000"/> </comp> <comp lib="0" loc="(180,460)" name="Pin"> <a name="width" val="32"/> <a name="tristate" val="false"/> <a name="label" val="regdump_data"/> </comp> <comp lib="2" loc="(380,220)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1420,140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="16"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,670)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x2"/> </comp> <comp lib="4" loc="(460,190)" name="Counter"> <a name="width" val="32"/> <a name="max" val="0xffffffff"/> <a name="ongoal" val="stay"/> <a name="label" val="phi_dec_cnt"/> </comp> <comp lib="1" loc="(390,650)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(750,280)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="32"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit15" val="2"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> </comp> <comp lib="0" loc="(1520,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="24"/> <a name="tristate" val="false"/> <a name="label" val="redump_addr"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(980,210)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x4000"/> </comp> <comp lib="6" loc="(1474,396)" name="Text"> <a name="text" val="Falling edge"/> </comp> <comp lib="2" loc="(390,320)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(390,390)" name="Register"> <a name="width" val="32"/> <a name="label" val="delta_phi_word"/> </comp> <comp lib="4" loc="(510,390)" name="Register"> <a name="width" val="32"/> <a name="label" val="regop_word"/> </comp> <comp lib="2" loc="(380,160)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(421,112)" name="Text"> <a name="text" val="Load/Decrement Setup (1: Load; 0: Decrement)"/> </comp> <comp lib="0" loc="(340,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> </comp> <comp lib="1" loc="(1030,220)" name="OR Gate"> <a name="width" val="16"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(1490,440)" name="Counter"> <a name="width" val="24"/> <a name="max" val="0xffffff"/> <a name="ongoal" val="stay"/> <a name="trigger" val="falling"/> <a name="label" val="addr_cnt"/> </comp> <comp lib="4" loc="(710,500)" name="Register"> <a name="width" val="1"/> <a name="label" val="cnt_ovf_reg"/> </comp> <comp lib="0" loc="(1520,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="Core AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1450,450)" name="Constant"/> <comp lib="0" loc="(1380,130)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(340,170)" name="Constant"/> <comp lib="0" loc="(130,280)" name="Pin"> <a name="tristate" val="false"/> </comp> <comp lib="1" loc="(720,190)" name="AND Gate"> <a name="inputs" val="4"/> <a name="negate3" val="true"/> </comp> <comp lib="0" loc="(420,700)" name="Constant"> <a name="width" val="32"/> </comp> <comp lib="0" loc="(330,330)" name="Constant"> <a name="width" val="32"/> <a name="value" val="0x20"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
; Visual6502 demo program, for simulation comparison. ; The only difference is that the program starts at $C000 instead of $0. PROCESSOR 6502 ORG $C000 RESET: NMI: IRQ: LDA #0 AGAIN: JSR PROC1 JMP AGAIN BRK BRK BRK BRK BRK BRK BRK RTI PROC1: INX DEY INC $0F SEC ADC #$02 RTS BRK ORG $FFFA WORD NMI WORD RESET WORD IRQ END
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="Shift Register"> <a name="length" val="1"/> </tool> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <main name="2A03_APU"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="2A03_APU"> <a name="circuit" val="2A03_APU"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif bold 12"/> <appear> <rect fill="#ffc246" height="390" stroke="#000000" stroke-width="2" width="240" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="123">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="257" y="273">DB_out</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="275">DB_in</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="425">AUX B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="247" y="94">PHI0 to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="254">DB from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="270" y="193">AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="194">Addr from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="254">DB to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="225">R/W from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="247" y="303">RDY to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="334">OUT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="345">OUT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="355">OUT2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="365">/RDP0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="375">/RDP1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="413">AUX A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="84">PHI1 from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="96">PHI2 from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="305">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="134">/IRQ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="145">/NMI</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="267" y="224">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="83">M2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="249" y="143">/NMI to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="234">/IRQ to Core</text> <text font-family="SansSerif" font-size="24" font-weight="bold" text-anchor="middle" x="168" y="43">2A03-G APU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="74">CLK</text> <circ-port height="8" pin="3630,1640" width="8" x="46" y="116"/> <circ-port height="10" pin="3130,2050" width="10" x="285" y="295"/> <circ-port height="8" pin="3130,1990" width="8" x="46" y="216"/> <circ-port height="10" pin="3130,1890" width="10" x="285" y="225"/> <circ-port height="10" pin="3130,1940" width="10" x="285" y="135"/> <circ-port height="8" pin="3630,1580" width="8" x="46" y="136"/> <circ-port height="10" pin="3630,1550" width="10" x="285" y="215"/> <circ-port height="10" pin="3630,1370" width="10" x="285" y="325"/> <circ-port height="10" pin="3630,1400" width="10" x="285" y="335"/> <circ-port height="10" pin="3630,1430" width="10" x="285" y="345"/> <circ-port height="10" pin="3630,1460" width="10" x="285" y="355"/> <circ-port height="10" pin="3630,1490" width="10" x="285" y="365"/> <circ-port height="8" pin="3630,1280" width="8" x="46" y="296"/> <circ-port height="10" pin="3630,1670" width="10" x="285" y="75"/> <circ-port height="10" pin="3470,1860" width="10" x="285" y="85"/> <circ-port height="8" pin="3630,1610" width="8" x="46" y="126"/> <circ-port height="10" pin="3150,2190" width="10" x="285" y="245"/> <circ-port height="8" pin="3070,2240" width="8" x="46" y="246"/> <circ-port height="10" pin="140,240" width="10" x="285" y="405"/> <circ-port height="10" pin="130,1840" width="10" x="285" y="415"/> <circ-port height="8" pin="3070,2100" width="8" x="46" y="186"/> <circ-port height="10" pin="3570,1710" width="10" x="285" y="185"/> <circ-port height="8" pin="3630,2380" width="8" x="46" y="266"/> <circ-port height="10" pin="3630,2190" width="10" x="285" y="265"/> <circ-port height="8" pin="3390,1920" width="8" x="46" y="76"/> <circ-port height="8" pin="3390,1970" width="8" x="46" y="86"/> <circ-port height="8" pin="3630,1520" width="8" x="46" y="66"/> <circ-port height="10" pin="770,1970" width="10" x="45" y="405"/> <circ-port height="10" pin="530,2050" width="10" x="45" y="345"/> <circ-port height="10" pin="1960,2500" width="10" x="45" y="365"/> <circ-port height="10" pin="1960,2470" width="10" x="45" y="385"/> <circ-port height="10" pin="2060,300" width="10" x="155" y="435"/> <circ-port height="10" pin="160,630" width="10" x="175" y="435"/> <circ-port height="10" pin="130,1910" width="10" x="235" y="435"/> <circ-port height="10" pin="150,900" width="10" x="65" y="435"/> <circ-port height="10" pin="2100,830" width="10" x="255" y="435"/> <circ-port height="10" pin="1930,880" width="10" x="45" y="315"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(1830,1030)" to="(1930,1030)"/> <wire from="(2910,1590)" to="(2910,1890)"/> <wire from="(1070,2380)" to="(1370,2380)"/> <wire from="(2040,740)" to="(2040,2430)"/> <wire from="(520,2180)" to="(1020,2180)"/> <wire from="(3170,410)" to="(3180,410)"/> <wire from="(3150,1510)" to="(3160,1510)"/> <wire from="(3150,1350)" to="(3160,1350)"/> <wire from="(1270,1840)" to="(1310,1840)"/> <wire from="(3150,530)" to="(3180,530)"/> <wire from="(3330,870)" to="(3360,870)"/> <wire from="(3030,1530)" to="(3160,1530)"/> <wire from="(560,2570)" to="(600,2570)"/> <wire from="(2440,1600)" to="(2450,1600)"/> <wire from="(2940,2240)" to="(3070,2240)"/> <wire from="(1100,1400)" to="(2310,1400)"/> <wire from="(1000,580)" to="(1170,580)"/> <wire from="(3280,2190)" to="(3280,2300)"/> <wire from="(2150,1160)" to="(2150,2180)"/> <wire from="(3300,370)" to="(3320,370)"/> <wire from="(2660,1340)" to="(2670,1340)"/> <wire from="(160,480)" to="(260,480)"/> <wire from="(2660,1820)" to="(2670,1820)"/> <wire from="(2660,1500)" to="(2670,1500)"/> <wire from="(2660,1660)" to="(2670,1660)"/> <wire from="(920,390)" to="(940,390)"/> <wire from="(1300,1580)" to="(1310,1580)"/> <wire from="(70,1380)" to="(1890,1380)"/> <wire from="(230,1130)" to="(260,1130)"/> <wire from="(2390,1640)" to="(2390,2100)"/> <wire from="(680,2610)" to="(770,2610)"/> <wire from="(130,1840)" to="(150,1840)"/> <wire from="(1040,500)" to="(1170,500)"/> <wire from="(2450,1490)" to="(2450,1500)"/> <wire from="(1830,1620)" to="(1850,1620)"/> <wire from="(1830,980)" to="(1850,980)"/> <wire from="(1070,1610)" to="(1070,1770)"/> <wire from="(1850,1160)" to="(1870,1160)"/> <wire from="(130,1910)" to="(210,1910)"/> <wire from="(3580,2380)" to="(3630,2380)"/> <wire from="(2080,830)" to="(2080,930)"/> <wire from="(1020,2410)" to="(1040,2410)"/> <wire from="(950,1270)" to="(950,1320)"/> <wire from="(1150,620)" to="(1170,620)"/> <wire from="(1830,1130)" to="(1860,1130)"/> <wire from="(1390,1290)" to="(1390,1460)"/> <wire from="(2980,1830)" to="(3510,1830)"/> <wire from="(1370,2490)" to="(1670,2490)"/> <wire from="(1870,1200)" to="(1870,1230)"/> <wire from="(1370,2650)" to="(1670,2650)"/> <wire from="(1070,2510)" to="(1370,2510)"/> <wire from="(3130,1460)" to="(3140,1460)"/> <wire from="(920,1670)" to="(1040,1670)"/> <wire from="(1860,1190)" to="(1860,1210)"/> <wire from="(150,1080)" to="(150,1090)"/> <wire from="(120,1050)" to="(120,1060)"/> <wire from="(2150,2380)" to="(2940,2380)"/> <wire from="(1270,1970)" to="(1310,1970)"/> <wire from="(1330,2670)" to="(1370,2670)"/> <wire from="(3330,840)" to="(3360,840)"/> <wire from="(920,660)" to="(960,660)"/> <wire from="(1850,1180)" to="(1850,1190)"/> <wire from="(1250,2100)" to="(2390,2100)"/> <wire from="(770,2530)" to="(1070,2530)"/> <wire from="(1000,1190)" to="(1170,1190)"/> <wire from="(770,2690)" to="(1070,2690)"/> <wire from="(1600,1420)" to="(1920,1420)"/> <wire from="(3320,1160)" to="(3340,1160)"/> <wire from="(2890,1570)" to="(2890,1940)"/> <wire from="(2440,1520)" to="(2500,1520)"/> <wire from="(1320,2180)" to="(1460,2180)"/> <wire from="(920,680)" to="(940,680)"/> <wire from="(1360,2410)" to="(1370,2410)"/> <wire from="(920,1610)" to="(1070,1610)"/> <wire from="(1160,1250)" to="(1170,1250)"/> <wire from="(1190,2400)" to="(1200,2400)"/> <wire from="(1060,2430)" to="(1070,2430)"/> <wire from="(1860,1150)" to="(1870,1150)"/> <wire from="(1020,220)" to="(1020,320)"/> <wire from="(2480,1650)" to="(2480,1660)"/> <wire from="(2970,520)" to="(2970,1160)"/> <wire from="(1040,1110)" to="(1170,1110)"/> <wire from="(920,640)" to="(1080,640)"/> <wire from="(520,2180)" to="(520,2410)"/> <wire from="(2450,1460)" to="(2450,1470)"/> <wire from="(1830,1750)" to="(1850,1750)"/> <wire from="(1830,950)" to="(1850,950)"/> <wire from="(1090,840)" to="(1120,840)"/> <wire from="(1940,2500)" to="(1960,2500)"/> <wire from="(1320,2180)" to="(1320,2410)"/> <wire from="(1030,1690)" to="(1310,1690)"/> <wire from="(1040,2180)" to="(1320,2180)"/> <wire from="(3580,2190)" to="(3630,2190)"/> <wire from="(760,2450)" to="(770,2450)"/> <wire from="(1420,1290)" to="(1420,1460)"/> <wire from="(2980,2280)" to="(3510,2280)"/> <wire from="(1070,1610)" to="(1310,1610)"/> <wire from="(1830,300)" to="(2060,300)"/> <wire from="(1430,2010)" to="(1430,2030)"/> <wire from="(130,1670)" to="(130,1680)"/> <wire from="(160,420)" to="(160,430)"/> <wire from="(1830,2150)" to="(1830,2300)"/> <wire from="(1270,1940)" to="(1310,1940)"/> <wire from="(1530,2300)" to="(1830,2300)"/> <wire from="(1590,2010)" to="(1590,2030)"/> <wire from="(2800,1710)" to="(2800,1960)"/> <wire from="(920,540)" to="(1020,540)"/> <wire from="(1150,740)" to="(2040,740)"/> <wire from="(1850,1150)" to="(1850,1160)"/> <wire from="(1920,420)" to="(1920,430)"/> <wire from="(770,2340)" to="(1070,2340)"/> <wire from="(3090,1240)" to="(3420,1240)"/> <wire from="(3140,1430)" to="(3160,1430)"/> <wire from="(2060,720)" to="(2060,2770)"/> <wire from="(2660,1440)" to="(2670,1440)"/> <wire from="(160,420)" to="(260,420)"/> <wire from="(3420,2320)" to="(3570,2320)"/> <wire from="(2660,1760)" to="(2670,1760)"/> <wire from="(2660,1600)" to="(2670,1600)"/> <wire from="(2660,1920)" to="(2670,1920)"/> <wire from="(1300,1520)" to="(1310,1520)"/> <wire from="(2350,1480)" to="(2350,1800)"/> <wire from="(1220,2400)" to="(1230,2400)"/> <wire from="(580,2550)" to="(600,2550)"/> <wire from="(2150,2180)" to="(2150,2380)"/> <wire from="(3330,1120)" to="(3370,1120)"/> <wire from="(1100,1230)" to="(1170,1230)"/> <wire from="(2480,1620)" to="(2480,1630)"/> <wire from="(680,2550)" to="(770,2550)"/> <wire from="(2310,1400)" to="(2310,1990)"/> <wire from="(180,230)" to="(200,230)"/> <wire from="(1920,1050)" to="(1920,1420)"/> <wire from="(920,480)" to="(1050,480)"/> <wire from="(1830,1720)" to="(1850,1720)"/> <wire from="(520,2410)" to="(520,2530)"/> <wire from="(2520,1020)" to="(2520,1040)"/> <wire from="(180,460)" to="(260,460)"/> <wire from="(1940,2470)" to="(1960,2470)"/> <wire from="(120,1110)" to="(260,1110)"/> <wire from="(920,980)" to="(930,980)"/> <wire from="(920,1780)" to="(930,1780)"/> <wire from="(1530,2300)" to="(1530,2400)"/> <wire from="(1450,1290)" to="(1450,1460)"/> <wire from="(2840,1550)" to="(2840,2020)"/> <wire from="(120,280)" to="(120,470)"/> <wire from="(1370,2590)" to="(1670,2590)"/> <wire from="(3030,980)" to="(3370,980)"/> <wire from="(1460,2010)" to="(1460,2030)"/> <wire from="(2470,1680)" to="(2500,1680)"/> <wire from="(1070,2450)" to="(1370,2450)"/> <wire from="(1070,2610)" to="(1370,2610)"/> <wire from="(1250,2210)" to="(1250,2430)"/> <wire from="(1860,1130)" to="(1860,1150)"/> <wire from="(1870,1780)" to="(1870,1800)"/> <wire from="(1270,1910)" to="(1310,1910)"/> <wire from="(1620,2010)" to="(1620,2030)"/> <wire from="(2450,1560)" to="(2450,1600)"/> <wire from="(920,1150)" to="(1020,1150)"/> <wire from="(1490,2430)" to="(1550,2430)"/> <wire from="(1020,220)" to="(1060,220)"/> <wire from="(770,2470)" to="(1070,2470)"/> <wire from="(770,2630)" to="(1070,2630)"/> <wire from="(560,2550)" to="(560,2570)"/> <wire from="(750,2690)" to="(770,2690)"/> <wire from="(1300,1810)" to="(1310,1810)"/> <wire from="(3570,2200)" to="(3570,2220)"/> <wire from="(1160,1030)" to="(1170,1030)"/> <wire from="(3030,840)" to="(3150,840)"/> <wire from="(90,1100)" to="(90,1780)"/> <wire from="(2230,780)" to="(3370,780)"/> <wire from="(2340,1160)" to="(2970,1160)"/> <wire from="(1830,1690)" to="(1850,1690)"/> <wire from="(920,1090)" to="(1050,1090)"/> <wire from="(250,1720)" to="(260,1720)"/> <wire from="(1100,1230)" to="(1100,1400)"/> <wire from="(1480,1290)" to="(1480,1460)"/> <wire from="(1150,370)" to="(1170,370)"/> <wire from="(1250,1990)" to="(1250,2100)"/> <wire from="(1630,2050)" to="(1630,2150)"/> <wire from="(240,1320)" to="(950,1320)"/> <wire from="(580,2540)" to="(580,2550)"/> <wire from="(1870,1110)" to="(1870,1140)"/> <wire from="(1490,2010)" to="(1490,2030)"/> <wire from="(920,300)" to="(1040,300)"/> <wire from="(3170,610)" to="(3180,610)"/> <wire from="(3170,450)" to="(3180,450)"/> <wire from="(2440,1620)" to="(2470,1620)"/> <wire from="(1090,840)" to="(1090,930)"/> <wire from="(1270,1880)" to="(1310,1880)"/> <wire from="(1930,1030)" to="(1930,1430)"/> <wire from="(3150,570)" to="(3180,570)"/> <wire from="(2970,520)" to="(3130,520)"/> <wire from="(1650,2010)" to="(1650,2030)"/> <wire from="(1720,1440)" to="(1720,1460)"/> <wire from="(3410,1670)" to="(3630,1670)"/> <wire from="(3370,490)" to="(3370,780)"/> <wire from="(3470,1120)" to="(3470,1860)"/> <wire from="(920,320)" to="(1020,320)"/> <wire from="(2660,1380)" to="(2670,1380)"/> <wire from="(2660,1700)" to="(2670,1700)"/> <wire from="(2660,1540)" to="(2670,1540)"/> <wire from="(2660,1860)" to="(2670,1860)"/> <wire from="(1630,2150)" to="(1830,2150)"/> <wire from="(2940,2240)" to="(2940,2380)"/> <wire from="(920,1230)" to="(940,1230)"/> <wire from="(950,1850)" to="(950,2020)"/> <wire from="(1890,650)" to="(3180,650)"/> <wire from="(680,2490)" to="(770,2490)"/> <wire from="(220,2770)" to="(1330,2770)"/> <wire from="(1830,1660)" to="(1850,1660)"/> <wire from="(1620,2410)" to="(1640,2410)"/> <wire from="(120,1050)" to="(260,1050)"/> <wire from="(920,1560)" to="(930,1560)"/> <wire from="(210,1850)" to="(210,1910)"/> <wire from="(2940,2380)" to="(3560,2380)"/> <wire from="(1030,520)" to="(1170,520)"/> <wire from="(1980,2020)" to="(2840,2020)"/> <wire from="(1510,1290)" to="(1510,1460)"/> <wire from="(1830,440)" to="(1920,440)"/> <wire from="(1030,2670)" to="(1030,2750)"/> <wire from="(580,2510)" to="(580,2520)"/> <wire from="(1830,880)" to="(1930,880)"/> <wire from="(1370,2690)" to="(1670,2690)"/> <wire from="(1370,2530)" to="(1670,2530)"/> <wire from="(1070,2550)" to="(1370,2550)"/> <wire from="(3070,1650)" to="(3160,1650)"/> <wire from="(1070,440)" to="(1170,440)"/> <wire from="(1270,1850)" to="(1310,1850)"/> <wire from="(1020,1710)" to="(1310,1710)"/> <wire from="(1790,2430)" to="(1900,2430)"/> <wire from="(3410,1640)" to="(3630,1640)"/> <wire from="(70,1380)" to="(70,1780)"/> <wire from="(2460,990)" to="(2470,990)"/> <wire from="(1860,520)" to="(1860,720)"/> <wire from="(120,1090)" to="(120,1110)"/> <wire from="(1880,450)" to="(1880,460)"/> <wire from="(770,2570)" to="(1070,2570)"/> <wire from="(180,190)" to="(180,220)"/> <wire from="(3070,1220)" to="(3340,1220)"/> <wire from="(560,2490)" to="(560,2510)"/> <wire from="(920,600)" to="(1130,600)"/> <wire from="(1950,1520)" to="(1950,2350)"/> <wire from="(2310,1400)" to="(2500,1400)"/> <wire from="(1160,970)" to="(1170,970)"/> <wire from="(1030,1130)" to="(1170,1130)"/> <wire from="(1860,1190)" to="(1870,1190)"/> <wire from="(1790,2400)" to="(1800,2400)"/> <wire from="(2910,1590)" to="(3160,1590)"/> <wire from="(1660,2430)" to="(1670,2430)"/> <wire from="(1830,1630)" to="(1850,1630)"/> <wire from="(1830,1150)" to="(1850,1150)"/> <wire from="(1940,1010)" to="(1940,1440)"/> <wire from="(120,1660)" to="(260,1660)"/> <wire from="(1460,2180)" to="(1620,2180)"/> <wire from="(2460,1670)" to="(2460,1700)"/> <wire from="(1830,1050)" to="(1920,1050)"/> <wire from="(130,1680)" to="(260,1680)"/> <wire from="(1040,250)" to="(1040,300)"/> <wire from="(250,2670)" to="(770,2670)"/> <wire from="(1870,1800)" to="(2350,1800)"/> <wire from="(920,1750)" to="(1000,1750)"/> <wire from="(1380,1290)" to="(1380,1460)"/> <wire from="(1370,2340)" to="(1670,2340)"/> <wire from="(2020,770)" to="(2020,2270)"/> <wire from="(3150,1490)" to="(3160,1490)"/> <wire from="(1920,460)" to="(1920,480)"/> <wire from="(60,1800)" to="(60,1810)"/> <wire from="(1070,1050)" to="(1170,1050)"/> <wire from="(1270,1980)" to="(1310,1980)"/> <wire from="(3410,1610)" to="(3630,1610)"/> <wire from="(3030,1030)" to="(3160,1030)"/> <wire from="(2490,990)" to="(2500,990)"/> <wire from="(3130,1450)" to="(3160,1450)"/> <wire from="(1060,1630)" to="(1310,1630)"/> <wire from="(160,460)" to="(160,480)"/> <wire from="(80,1690)" to="(80,1780)"/> <wire from="(770,2380)" to="(1070,2380)"/> <wire from="(3280,2190)" to="(3560,2190)"/> <wire from="(2350,1960)" to="(2800,1960)"/> <wire from="(3140,1470)" to="(3160,1470)"/> <wire from="(920,1690)" to="(1030,1690)"/> <wire from="(2660,1480)" to="(2670,1480)"/> <wire from="(2660,1640)" to="(2670,1640)"/> <wire from="(2660,1800)" to="(2670,1800)"/> <wire from="(1090,930)" to="(1170,930)"/> <wire from="(920,370)" to="(940,370)"/> <wire from="(1860,720)" to="(2060,720)"/> <wire from="(520,2530)" to="(540,2530)"/> <wire from="(520,2410)" to="(730,2410)"/> <wire from="(60,1810)" to="(150,1810)"/> <wire from="(1880,2270)" to="(2020,2270)"/> <wire from="(1820,2400)" to="(1830,2400)"/> <wire from="(960,810)" to="(960,910)"/> <wire from="(2840,1550)" to="(3160,1550)"/> <wire from="(680,2590)" to="(770,2590)"/> <wire from="(1830,1760)" to="(1850,1760)"/> <wire from="(1600,1420)" to="(1600,1460)"/> <wire from="(120,280)" to="(200,280)"/> <wire from="(1900,2470)" to="(1920,2470)"/> <wire from="(920,1500)" to="(930,1500)"/> <wire from="(920,1820)" to="(930,1820)"/> <wire from="(920,1020)" to="(930,1020)"/> <wire from="(920,1630)" to="(1060,1630)"/> <wire from="(1880,2270)" to="(1880,2500)"/> <wire from="(1410,1290)" to="(1410,1460)"/> <wire from="(1420,2010)" to="(1420,2030)"/> <wire from="(1370,2630)" to="(1670,2630)"/> <wire from="(1370,2470)" to="(1670,2470)"/> <wire from="(1830,1230)" to="(1870,1230)"/> <wire from="(1070,2650)" to="(1370,2650)"/> <wire from="(1070,2490)" to="(1370,2490)"/> <wire from="(3130,1440)" to="(3140,1440)"/> <wire from="(2390,1640)" to="(2420,1640)"/> <wire from="(1030,2670)" to="(1070,2670)"/> <wire from="(180,450)" to="(180,460)"/> <wire from="(920,620)" to="(980,620)"/> <wire from="(1270,1950)" to="(1310,1950)"/> <wire from="(3410,1580)" to="(3630,1580)"/> <wire from="(920,930)" to="(1090,930)"/> <wire from="(770,2510)" to="(1070,2510)"/> <wire from="(1830,930)" to="(2080,930)"/> <wire from="(1000,1750)" to="(1000,1770)"/> <wire from="(750,2410)" to="(770,2410)"/> <wire from="(560,2540)" to="(580,2540)"/> <wire from="(1890,650)" to="(1890,900)"/> <wire from="(1060,2410)" to="(1070,2410)"/> <wire from="(920,560)" to="(1010,560)"/> <wire from="(1950,2350)" to="(3370,2350)"/> <wire from="(1000,580)" to="(1000,1190)"/> <wire from="(1550,2270)" to="(1880,2270)"/> <wire from="(1830,1730)" to="(1850,1730)"/> <wire from="(1020,2180)" to="(1020,2410)"/> <wire from="(890,2400)" to="(900,2400)"/> <wire from="(760,2430)" to="(770,2430)"/> <wire from="(1440,1290)" to="(1440,1460)"/> <wire from="(1150,410)" to="(1170,410)"/> <wire from="(2460,1700)" to="(2500,1700)"/> <wire from="(1000,1190)" to="(1000,1750)"/> <wire from="(2420,1280)" to="(2420,1370)"/> <wire from="(3370,980)" to="(3370,1120)"/> <wire from="(1450,2010)" to="(1450,2030)"/> <wire from="(1880,450)" to="(1920,450)"/> <wire from="(920,500)" to="(1040,500)"/> <wire from="(3170,330)" to="(3180,330)"/> <wire from="(1230,2300)" to="(1530,2300)"/> <wire from="(2440,1660)" to="(2470,1660)"/> <wire from="(120,1640)" to="(120,1650)"/> <wire from="(2440,1670)" to="(2460,1670)"/> <wire from="(1270,1920)" to="(1310,1920)"/> <wire from="(1610,2010)" to="(1610,2030)"/> <wire from="(3410,1550)" to="(3630,1550)"/> <wire from="(560,2490)" to="(600,2490)"/> <wire from="(2440,1680)" to="(2450,1680)"/> <wire from="(920,770)" to="(960,770)"/> <wire from="(1850,970)" to="(1850,980)"/> <wire from="(3090,1240)" to="(3090,1610)"/> <wire from="(2660,1420)" to="(2670,1420)"/> <wire from="(240,2210)" to="(470,2210)"/> <wire from="(2660,1580)" to="(2670,1580)"/> <wire from="(2660,1900)" to="(2670,1900)"/> <wire from="(2660,1740)" to="(2670,1740)"/> <wire from="(750,2380)" to="(770,2380)"/> <wire from="(1300,1500)" to="(1310,1500)"/> <wire from="(920,440)" to="(1070,440)"/> <wire from="(1020,540)" to="(1170,540)"/> <wire from="(3570,2240)" to="(3570,2320)"/> <wire from="(920,1170)" to="(1010,1170)"/> <wire from="(470,2050)" to="(470,2210)"/> <wire from="(1130,600)" to="(1130,720)"/> <wire from="(1150,620)" to="(1150,740)"/> <wire from="(2980,1830)" to="(2980,2280)"/> <wire from="(1010,560)" to="(1010,1170)"/> <wire from="(680,2530)" to="(770,2530)"/> <wire from="(120,470)" to="(140,470)"/> <wire from="(1830,1700)" to="(1850,1700)"/> <wire from="(1100,1400)" to="(1100,1560)"/> <wire from="(2080,830)" to="(2100,830)"/> <wire from="(1230,2300)" to="(1230,2400)"/> <wire from="(1620,2180)" to="(2150,2180)"/> <wire from="(1010,1730)" to="(1010,1770)"/> <wire from="(2460,1580)" to="(2460,1610)"/> <wire from="(920,960)" to="(930,960)"/> <wire from="(920,2400)" to="(930,2400)"/> <wire from="(3140,1460)" to="(3140,1470)"/> <wire from="(3150,510)" to="(3150,530)"/> <wire from="(1940,190)" to="(1940,420)"/> <wire from="(1470,1290)" to="(1470,1460)"/> <wire from="(2440,1650)" to="(2480,1650)"/> <wire from="(1830,480)" to="(1920,480)"/> <wire from="(2390,2100)" to="(3070,2100)"/> <wire from="(1830,1210)" to="(1860,1210)"/> <wire from="(1010,1170)" to="(1010,1730)"/> <wire from="(3070,1220)" to="(3070,1650)"/> <wire from="(1060,460)" to="(1170,460)"/> <wire from="(1370,2570)" to="(1670,2570)"/> <wire from="(1480,2010)" to="(1480,2030)"/> <wire from="(1830,1170)" to="(1870,1170)"/> <wire from="(1010,1730)" to="(1310,1730)"/> <wire from="(2490,1040)" to="(2520,1040)"/> <wire from="(1070,2590)" to="(1370,2590)"/> <wire from="(1880,2500)" to="(1920,2500)"/> <wire from="(920,1110)" to="(1040,1110)"/> <wire from="(3150,1400)" to="(3160,1400)"/> <wire from="(220,520)" to="(220,2770)"/> <wire from="(1270,1890)" to="(1310,1890)"/> <wire from="(1640,2010)" to="(1640,2030)"/> <wire from="(3540,1520)" to="(3630,1520)"/> <wire from="(2440,1490)" to="(2450,1490)"/> <wire from="(1460,2050)" to="(1460,2180)"/> <wire from="(2420,1370)" to="(2500,1370)"/> <wire from="(1190,2430)" to="(1250,2430)"/> <wire from="(2440,1690)" to="(2440,1740)"/> <wire from="(770,2450)" to="(1070,2450)"/> <wire from="(770,2610)" to="(1070,2610)"/> <wire from="(220,520)" to="(260,520)"/> <wire from="(1020,1150)" to="(1020,1710)"/> <wire from="(2440,1440)" to="(2500,1440)"/> <wire from="(1300,1790)" to="(1310,1790)"/> <wire from="(180,190)" to="(1940,190)"/> <wire from="(920,1050)" to="(1070,1050)"/> <wire from="(1160,1010)" to="(1170,1010)"/> <wire from="(700,1970)" to="(730,1970)"/> <wire from="(2450,1460)" to="(2500,1460)"/> <wire from="(1050,1650)" to="(1310,1650)"/> <wire from="(1020,1710)" to="(1020,1770)"/> <wire from="(1020,540)" to="(1020,1150)"/> <wire from="(1830,1190)" to="(1850,1190)"/> <wire from="(1830,1670)" to="(1850,1670)"/> <wire from="(2800,1670)" to="(3160,1670)"/> <wire from="(1900,2430)" to="(1900,2470)"/> <wire from="(2340,1010)" to="(2340,1160)"/> <wire from="(1830,1480)" to="(1980,1480)"/> <wire from="(120,1700)" to="(260,1700)"/> <wire from="(1870,1950)" to="(1870,2050)"/> <wire from="(3300,450)" to="(3420,450)"/> <wire from="(1020,1150)" to="(1170,1150)"/> <wire from="(3140,1430)" to="(3140,1440)"/> <wire from="(2890,1940)" to="(3130,1940)"/> <wire from="(1630,2670)" to="(1630,2770)"/> <wire from="(1150,350)" to="(1170,350)"/> <wire from="(1500,1290)" to="(1500,1460)"/> <wire from="(240,1320)" to="(240,2210)"/> <wire from="(1370,2380)" to="(1670,2380)"/> <wire from="(1060,1070)" to="(1170,1070)"/> <wire from="(1080,620)" to="(1080,640)"/> <wire from="(2840,2020)" to="(2840,2320)"/> <wire from="(1630,2770)" to="(2060,2770)"/> <wire from="(1130,600)" to="(1170,600)"/> <wire from="(2440,1610)" to="(2460,1610)"/> <wire from="(1270,1860)" to="(1310,1860)"/> <wire from="(3470,1120)" to="(3540,1120)"/> <wire from="(3410,1490)" to="(3630,1490)"/> <wire from="(2660,1360)" to="(2670,1360)"/> <wire from="(2660,1520)" to="(2670,1520)"/> <wire from="(2660,1840)" to="(2670,1840)"/> <wire from="(2660,1680)" to="(2670,1680)"/> <wire from="(1030,1130)" to="(1030,1690)"/> <wire from="(920,410)" to="(940,410)"/> <wire from="(920,1210)" to="(940,1210)"/> <wire from="(1020,320)" to="(1170,320)"/> <wire from="(2800,1280)" to="(3630,1280)"/> <wire from="(1030,520)" to="(1030,1130)"/> <wire from="(680,2630)" to="(770,2630)"/> <wire from="(160,450)" to="(180,450)"/> <wire from="(1830,1640)" to="(1850,1640)"/> <wire from="(1850,1180)" to="(1870,1180)"/> <wire from="(2440,1500)" to="(2440,1520)"/> <wire from="(1550,2270)" to="(1550,2430)"/> <wire from="(920,1540)" to="(930,1540)"/> <wire from="(1320,2410)" to="(1340,2410)"/> <wire from="(760,2340)" to="(770,2340)"/> <wire from="(1830,420)" to="(1920,420)"/> <wire from="(1030,1690)" to="(1030,1770)"/> <wire from="(1630,2670)" to="(1670,2670)"/> <wire from="(1370,2510)" to="(1670,2510)"/> <wire from="(1830,1110)" to="(1870,1110)"/> <wire from="(2470,1600)" to="(2500,1600)"/> <wire from="(1070,2530)" to="(1370,2530)"/> <wire from="(1070,2690)" to="(1370,2690)"/> <wire from="(2480,1620)" to="(2500,1620)"/> <wire from="(1270,1830)" to="(1310,1830)"/> <wire from="(1830,1010)" to="(1940,1010)"/> <wire from="(2970,1160)" to="(2970,1450)"/> <wire from="(150,1090)" to="(260,1090)"/> <wire from="(230,1130)" to="(230,2750)"/> <wire from="(3410,1460)" to="(3630,1460)"/> <wire from="(920,1710)" to="(1020,1710)"/> <wire from="(3410,1710)" to="(3570,1710)"/> <wire from="(1830,460)" to="(1880,460)"/> <wire from="(2970,1450)" to="(3110,1450)"/> <wire from="(770,2550)" to="(1070,2550)"/> <wire from="(3140,1160)" to="(3160,1160)"/> <wire from="(160,630)" to="(260,630)"/> <wire from="(1040,1110)" to="(1040,1670)"/> <wire from="(960,660)" to="(960,770)"/> <wire from="(750,1970)" to="(770,1970)"/> <wire from="(1490,2400)" to="(1500,2400)"/> <wire from="(2440,1540)" to="(2500,1540)"/> <wire from="(3030,840)" to="(3030,980)"/> <wire from="(1360,2430)" to="(1370,2430)"/> <wire from="(1160,950)" to="(1170,950)"/> <wire from="(1160,1270)" to="(1170,1270)"/> <wire from="(510,2050)" to="(530,2050)"/> <wire from="(2450,1720)" to="(2500,1720)"/> <wire from="(2450,1560)" to="(2500,1560)"/> <wire from="(1660,2410)" to="(1670,2410)"/> <wire from="(1040,500)" to="(1040,1110)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(3370,1120)" to="(3470,1120)"/> <wire from="(920,1650)" to="(1050,1650)"/> <wire from="(1830,1770)" to="(1850,1770)"/> <wire from="(2470,1660)" to="(2470,1680)"/> <wire from="(120,1670)" to="(130,1670)"/> <wire from="(120,1640)" to="(260,1640)"/> <wire from="(700,1970)" to="(700,2020)"/> <wire from="(760,2470)" to="(770,2470)"/> <wire from="(2460,1580)" to="(2500,1580)"/> <wire from="(1400,1290)" to="(1400,1460)"/> <wire from="(1100,1560)" to="(1310,1560)"/> <wire from="(1620,2180)" to="(1620,2410)"/> <wire from="(2840,2320)" to="(3370,2320)"/> <wire from="(1870,970)" to="(2230,970)"/> <wire from="(1070,2340)" to="(1370,2340)"/> <wire from="(3170,370)" to="(3180,370)"/> <wire from="(3150,1630)" to="(3160,1630)"/> <wire from="(2910,1890)" to="(3130,1890)"/> <wire from="(1870,2050)" to="(3130,2050)"/> <wire from="(210,1850)" to="(260,1850)"/> <wire from="(1270,1960)" to="(1310,1960)"/> <wire from="(3150,490)" to="(3180,490)"/> <wire from="(3410,1430)" to="(3630,1430)"/> <wire from="(150,900)" to="(260,900)"/> <wire from="(560,2530)" to="(600,2530)"/> <wire from="(120,1680)" to="(120,1700)"/> <wire from="(920,810)" to="(960,810)"/> <wire from="(1830,900)" to="(1890,900)"/> <wire from="(2660,1460)" to="(2670,1460)"/> <wire from="(3300,490)" to="(3320,490)"/> <wire from="(3300,330)" to="(3320,330)"/> <wire from="(160,440)" to="(260,440)"/> <wire from="(2660,1780)" to="(2670,1780)"/> <wire from="(2660,1620)" to="(2670,1620)"/> <wire from="(1050,1090)" to="(1050,1650)"/> <wire from="(960,910)" to="(1170,910)"/> <wire from="(920,350)" to="(940,350)"/> <wire from="(1300,1540)" to="(1310,1540)"/> <wire from="(3540,1120)" to="(3540,1520)"/> <wire from="(710,2380)" to="(730,2380)"/> <wire from="(1120,720)" to="(1130,720)"/> <wire from="(1900,2430)" to="(2040,2430)"/> <wire from="(1830,2300)" to="(2230,2300)"/> <wire from="(680,2570)" to="(770,2570)"/> <wire from="(1520,2400)" to="(1530,2400)"/> <wire from="(1010,560)" to="(1170,560)"/> <wire from="(1830,1740)" to="(1850,1740)"/> <wire from="(1040,300)" to="(1170,300)"/> <wire from="(2440,1440)" to="(2440,1460)"/> <wire from="(1050,480)" to="(1050,1090)"/> <wire from="(1040,1670)" to="(1040,1770)"/> <wire from="(920,1000)" to="(930,1000)"/> <wire from="(920,1480)" to="(930,1480)"/> <wire from="(920,1800)" to="(930,1800)"/> <wire from="(1830,2300)" to="(1830,2400)"/> <wire from="(1430,1290)" to="(1430,1460)"/> <wire from="(920,580)" to="(1000,580)"/> <wire from="(1370,2450)" to="(1670,2450)"/> <wire from="(1440,2010)" to="(1440,2030)"/> <wire from="(1370,2610)" to="(1670,2610)"/> <wire from="(3390,2320)" to="(3400,2320)"/> <wire from="(3130,930)" to="(3150,930)"/> <wire from="(1070,2470)" to="(1370,2470)"/> <wire from="(1070,2630)" to="(1370,2630)"/> <wire from="(1660,1430)" to="(1660,1460)"/> <wire from="(3410,1520)" to="(3540,1520)"/> <wire from="(1270,1930)" to="(1310,1930)"/> <wire from="(1600,2010)" to="(1600,2030)"/> <wire from="(700,2020)" to="(950,2020)"/> <wire from="(3410,1400)" to="(3630,1400)"/> <wire from="(3340,490)" to="(3370,490)"/> <wire from="(2540,990)" to="(2550,990)"/> <wire from="(940,680)" to="(1170,680)"/> <wire from="(2530,1020)" to="(2530,1070)"/> <wire from="(3090,1610)" to="(3160,1610)"/> <wire from="(950,2020)" to="(950,2430)"/> <wire from="(1040,1790)" to="(1040,2180)"/> <wire from="(1050,480)" to="(1170,480)"/> <wire from="(770,2490)" to="(1070,2490)"/> <wire from="(770,2650)" to="(1070,2650)"/> <wire from="(1000,1750)" to="(1310,1750)"/> <wire from="(920,520)" to="(1030,520)"/> <wire from="(2230,780)" to="(2230,970)"/> <wire from="(1060,1070)" to="(1060,1630)"/> <wire from="(2440,1640)" to="(2500,1640)"/> <wire from="(2440,1480)" to="(2500,1480)"/> <wire from="(1040,1670)" to="(1310,1670)"/> <wire from="(2150,1160)" to="(2340,1160)"/> <wire from="(1160,1210)" to="(1170,1210)"/> <wire from="(560,2520)" to="(580,2520)"/> <wire from="(1160,890)" to="(1170,890)"/> <wire from="(1050,1650)" to="(1050,1770)"/> <wire from="(2310,1990)" to="(3130,1990)"/> <wire from="(2450,1500)" to="(2500,1500)"/> <wire from="(920,1270)" to="(950,1270)"/> <wire from="(1010,1170)" to="(1170,1170)"/> <wire from="(1830,1710)" to="(1850,1710)"/> <wire from="(250,1720)" to="(250,2670)"/> <wire from="(2470,1600)" to="(2470,1620)"/> <wire from="(1060,460)" to="(1060,1070)"/> <wire from="(2800,1710)" to="(3160,1710)"/> <wire from="(90,1100)" to="(100,1100)"/> <wire from="(920,460)" to="(1060,460)"/> <wire from="(1460,1290)" to="(1460,1460)"/> <wire from="(1020,2180)" to="(1040,2180)"/> <wire from="(1150,390)" to="(1170,390)"/> <wire from="(920,1190)" to="(1000,1190)"/> <wire from="(2490,1070)" to="(2530,1070)"/> <wire from="(3390,1970)" to="(3400,1970)"/> <wire from="(1980,1480)" to="(1980,2020)"/> <wire from="(1470,2010)" to="(1470,2030)"/> <wire from="(1270,1900)" to="(1310,1900)"/> <wire from="(1630,2010)" to="(1630,2030)"/> <wire from="(3150,2190)" to="(3280,2190)"/> <wire from="(3340,1160)" to="(3340,1220)"/> <wire from="(3410,1370)" to="(3630,1370)"/> <wire from="(3330,930)" to="(3360,930)"/> <wire from="(2230,970)" to="(2230,2300)"/> <wire from="(920,910)" to="(960,910)"/> <wire from="(1850,950)" to="(1850,960)"/> <wire from="(2440,1540)" to="(2440,1590)"/> <wire from="(1050,1090)" to="(1170,1090)"/> <wire from="(980,620)" to="(980,770)"/> <wire from="(930,2300)" to="(1230,2300)"/> <wire from="(920,1130)" to="(1030,1130)"/> <wire from="(150,1810)" to="(150,1840)"/> <wire from="(2660,1400)" to="(2670,1400)"/> <wire from="(2890,1570)" to="(3160,1570)"/> <wire from="(2350,1480)" to="(2420,1480)"/> <wire from="(2660,1720)" to="(2670,1720)"/> <wire from="(2660,1560)" to="(2670,1560)"/> <wire from="(2660,1880)" to="(2670,1880)"/> <wire from="(120,1080)" to="(150,1080)"/> <wire from="(1070,1050)" to="(1070,1610)"/> <wire from="(2420,1280)" to="(2800,1280)"/> <wire from="(920,1250)" to="(940,1250)"/> <wire from="(1300,1480)" to="(1310,1480)"/> <wire from="(1040,250)" to="(1060,250)"/> <wire from="(3570,2350)" to="(3570,2370)"/> <wire from="(3150,490)" to="(3150,500)"/> <wire from="(1080,620)" to="(1090,620)"/> <wire from="(580,2510)" to="(600,2510)"/> <wire from="(930,2300)" to="(930,2400)"/> <wire from="(680,2510)" to="(770,2510)"/> <wire from="(2800,1280)" to="(2800,1670)"/> <wire from="(80,1690)" to="(100,1690)"/> <wire from="(1830,1680)" to="(1850,1680)"/> <wire from="(1070,440)" to="(1070,1050)"/> <wire from="(940,680)" to="(940,740)"/> <wire from="(120,1070)" to="(260,1070)"/> <wire from="(1890,1210)" to="(1890,1380)"/> <wire from="(920,1580)" to="(930,1580)"/> <wire from="(920,1070)" to="(1060,1070)"/> <wire from="(1490,1290)" to="(1490,1460)"/> <wire from="(2440,1630)" to="(2480,1630)"/> <wire from="(1720,1440)" to="(1940,1440)"/> <wire from="(980,770)" to="(2020,770)"/> <wire from="(1370,2550)" to="(1670,2550)"/> <wire from="(2410,1010)" to="(2500,1010)"/> <wire from="(1830,1950)" to="(1870,1950)"/> <wire from="(2350,1800)" to="(2350,1960)"/> <wire from="(1070,2570)" to="(1370,2570)"/> <wire from="(2230,2300)" to="(3280,2300)"/> <wire from="(3150,1380)" to="(3160,1380)"/> <wire from="(2480,1340)" to="(2500,1340)"/> <wire from="(2480,1660)" to="(2500,1660)"/> <wire from="(890,2430)" to="(950,2430)"/> <wire from="(1270,1870)" to="(1310,1870)"/> <wire from="(2450,1680)" to="(2450,1720)"/> <wire from="(1660,2010)" to="(1660,2030)"/> <wire from="(3330,900)" to="(3360,900)"/> <wire from="(2440,1470)" to="(2450,1470)"/> <wire from="(1830,1520)" to="(1950,1520)"/> <wire from="(770,2590)" to="(1070,2590)"/> <wire from="(3030,1030)" to="(3030,1530)"/> <wire from="(1060,1630)" to="(1060,1770)"/> <wire from="(960,660)" to="(1170,660)"/> <wire from="(750,2650)" to="(770,2650)"/> <wire from="(2440,1740)" to="(2500,1740)"/> <wire from="(920,740)" to="(940,740)"/> <wire from="(1300,1770)" to="(1310,1770)"/> <wire from="(1160,990)" to="(1170,990)"/> <wire from="(470,2050)" to="(490,2050)"/> <wire from="(230,2750)" to="(1030,2750)"/> <wire from="(3420,450)" to="(3420,1240)"/> <wire from="(1660,1430)" to="(1930,1430)"/> <wire from="(920,1850)" to="(950,1850)"/> <wire from="(2340,1010)" to="(2390,1010)"/> <wire from="(1830,1650)" to="(1850,1650)"/> <wire from="(200,230)" to="(200,280)"/> <wire from="(1330,2670)" to="(1330,2770)"/> <wire from="(3510,1830)" to="(3510,2280)"/> <wire from="(1080,640)" to="(1170,640)"/> <wire from="(3390,2350)" to="(3570,2350)"/> <wire from="(1830,520)" to="(1860,520)"/> <wire from="(470,2210)" to="(1250,2210)"/> <wire from="(1520,1290)" to="(1520,1460)"/> <comp lib="0" loc="(940,350)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp lib="1" loc="(750,1970)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1160,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(2670,1860)" name="Tunnel"> <a name="label" val="/R4019"/> </comp> <comp lib="0" loc="(3130,2050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY (CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3360,900)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(1733,2730)" name="Text"> <a name="text" val="LENGTH COUNTER SQUARE 0"/> </comp> <comp lib="0" loc="(940,370)" name="Tunnel"> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(3150,1380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(3150,1350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(3400,1970)" name="Tunnel"> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="1" loc="(3560,2380)" name="Controlled Buffer"> <a name="facing" val="west"/> <a name="width" val="8"/> </comp> <comp loc="(1470,870)" name="DPCM_CHANNEL"/> <comp lib="0" loc="(930,1500)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(2550,990)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(3470,1860)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI0 (CPU)"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3630,1430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(2521,966)" name="Text"> <a name="text" val="LOCK FF"/> </comp> <comp lib="0" loc="(2670,1660)" name="Tunnel"> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(1300,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(2670,1800)" name="Tunnel"> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(1160,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(750,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(2670,1340)" name="Tunnel"> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(2670,1740)" name="Tunnel"> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(2670,1500)" name="Tunnel"> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(3150,1510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4017"/> </comp> <comp lib="0" loc="(160,240)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(3630,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(3270,810)" name="/ACLK2"/> <comp lib="0" loc="(1060,220)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(2490,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1150,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(1150,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4002"/> </comp> <comp lib="6" loc="(3358,1891)" name="Text"> <a name="text" val="CLOCK 6502"/> </comp> <comp lib="0" loc="(1890,1210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2480,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(2420,1640)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="1"/> <a name="bit7" val="2"/> <a name="bit8" val="3"/> <a name="bit9" val="4"/> <a name="bit10" val="5"/> <a name="bit11" val="6"/> <a name="bit12" val="7"/> <a name="bit13" val="8"/> <a name="bit14" val="9"/> <a name="bit15" val="10"/> </comp> <comp lib="0" loc="(1160,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(140,240)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AUX_A"/> </comp> <comp loc="(3240,1350)" name="IO_CONTROL"/> <comp lib="0" loc="(150,900)" name="Pin"> <a name="output" val="true"/> <a name="width" val="19"/> <a name="label" val="TRI"/> </comp> <comp lib="0" loc="(3320,370)" name="Tunnel"> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(1150,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(3170,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp loc="(3220,1000)" name="CLK_DIVIDER"/> <comp lib="0" loc="(920,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(160,630)" name="Pin"> <a name="output" val="true"/> <a name="width" val="27"/> <a name="label" val="SQB"/> </comp> <comp lib="0" loc="(1960,2500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3130,1990)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="R/W (CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,1540)" name="Tunnel"> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(2670,1820)" name="Tunnel"> <a name="label" val="/R4017"/> </comp> <comp lib="0" loc="(130,1910)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="label" val="N"/> </comp> <comp lib="0" loc="(60,1800)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> </comp> <comp lib="0" loc="(130,1840)" name="Pin"> <a name="output" val="true"/> <a name="width" val="15"/> <a name="tristate" val="false"/> <a name="label" val="AUX_B"/> </comp> <comp lib="0" loc="(930,1480)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(3150,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3130,1940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/NMI(CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1870,970)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="1"/> </comp> <comp loc="(3250,300)" name="LFO"/> <comp loc="(1380,1460)" name="SPRITE_DMA"/> <comp lib="0" loc="(2670,1640)" name="Tunnel"> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(1300,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1930,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC_E"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3630,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IN0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1400)" name="Tunnel"> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(3170,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="6" loc="(1433,2731)" name="Text"> <a name="text" val="LENGTH COUNTER SQUARE 1"/> </comp> <comp lib="0" loc="(100,1100)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(3630,1400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3130,520)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(1300,1580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1360,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(3630,1280)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="DBG (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1940,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1060,250)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp loc="(350,1460)" name="NOISE_CHANNEL"/> <comp lib="0" loc="(3630,1550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="R/W (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1300,1500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="0" loc="(1820,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(940,410)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(3360,840)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1160,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4012"/> </comp> <comp loc="(650,2470)" name="LENGTH_TABLE"/> <comp loc="(1140,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(930,980)" name="Tunnel"> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(140,470)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(1440,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(1150,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4001"/> </comp> <comp lib="0" loc="(2670,1520)" name="Tunnel"> <a name="label" val="W400A"/> </comp> <comp lib="6" loc="(3763,1716)" name="Text"> <a name="text" val="EXTERNAL ADDRESS BUS"/> </comp> <comp lib="0" loc="(940,1210)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="6" loc="(256,148)" name="Text"> <a name="text" val="2A03 APU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(2670,1780)" name="Tunnel"> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(760,2470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(3630,1670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="M2 (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1160,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(1460,2050)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1660,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(2670,1720)" name="Tunnel"> <a name="label" val="W4015"/> </comp> <comp loc="(1740,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(2670,1840)" name="Tunnel"> <a name="label" val="/R4018"/> </comp> <comp lib="1" loc="(3570,2220)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp loc="(2550,1320)" name="REGISTER_SELECT"/> <comp lib="0" loc="(1340,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3630,1490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IN1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1540)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp loc="(350,280)" name="SQUARE_CHANNEL_1"/> <comp lib="0" loc="(920,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(930,1800)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(3630,1610)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,1820)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3150,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(770,1970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2490,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(2670,1700)" name="Tunnel"> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(3340,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2460,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(3630,1640)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/RES PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(3420,2320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2490,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,1990)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(3570,1710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="label" val="AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,1020)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp lib="6" loc="(832,2730)" name="Text"> <a name="text" val="LENGTH COUNTER NOISE"/> </comp> <comp lib="0" loc="(940,1230)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(2670,1560)" name="Tunnel"> <a name="label" val="W400C"/> </comp> <comp lib="1" loc="(3390,2350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3170,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(3130,1890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ(CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(3320,330)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(1630,2050)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(930,960)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(1040,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(540,2530)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> <a name="bit6" val="3"/> <a name="bit7" val="4"/> </comp> <comp lib="0" loc="(3390,1970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2_FromCore"/> </comp> <comp lib="6" loc="(1130,2730)" name="Text"> <a name="text" val="LENGTH COUNTER TRIANGLE"/> </comp> <comp lib="0" loc="(2670,1620)" name="Tunnel"> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(3070,2100)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="CPU Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1600)" name="Tunnel"> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(3110,1450)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3630,2380)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="8"/> <a name="label" val="DB_in_EXT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1060,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp lib="1" loc="(1940,2470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1940,2500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3150,2190)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="Data to CPU"/> </comp> <comp lib="0" loc="(2670,1760)" name="Tunnel"> <a name="label" val="W4017"/> </comp> <comp lib="0" loc="(2670,1900)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(1120,840)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1870,1780)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(750,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3630,2190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_out_EXT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,1560)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(2670,1480)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(3390,1920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1_FromCore"/> </comp> <comp lib="0" loc="(1160,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(3170,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4017"/> </comp> <comp lib="1" loc="(3580,2190)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="4" loc="(2540,990)" name="D Flip-Flop"> <a name="trigger" val="low"/> </comp> <comp lib="1" loc="(750,2380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(710,2380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1090,620)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(2420,1480)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(940,390)" name="Tunnel"> <a name="label" val="W4006"/> </comp> <comp lib="0" loc="(760,2340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(760,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(1160,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(920,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2670,1680)" name="Tunnel"> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(3150,1490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(3630,1580)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/NMI PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,1780)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(930,1580)" name="Tunnel"> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(1040,1790)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(730,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="6" loc="(3717,2290)" name="Text"> <a name="text" val="EXTERNAL DATA BUS"/> </comp> <comp lib="0" loc="(3070,2240)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="8"/> <a name="label" val="Data from CPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1160,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1300,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(1160,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(1640,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(100,1690)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(940,1250)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(2670,1920)" name="Tunnel"> <a name="label" val="/DBGRD"/> </comp> <comp lib="0" loc="(2390,1010)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1300,1480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(2060,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="27"/> <a name="label" val="SQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3360,930)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(2670,1380)" name="Tunnel"> <a name="label" val="W4002"/> </comp> <comp loc="(350,870)" name="TRIANGLE_CHANNEL"/> <comp lib="0" loc="(760,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(3630,1520)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1360)" name="Tunnel"> <a name="label" val="W4001"/> </comp> <comp lib="0" loc="(1300,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBGRD"/> </comp> <comp lib="0" loc="(1300,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1960,2470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3130,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1520,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="6" loc="(287,1373)" name="Text"> <a name="text" val="DMC[6:0]"/> </comp> <comp lib="0" loc="(930,1000)" name="Tunnel"> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(2100,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="30"/> <a name="label" val="DMC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1120,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(530,2050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3150,1400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(2670,1580)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(3170,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(3140,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="0" loc="(3360,870)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(3390,2320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2670,1880)" name="Tunnel"> <a name="label" val="/R401A"/> </comp> <comp lib="0" loc="(2670,1460)" name="Tunnel"> <a name="label" val="W4006"/> </comp> <comp lib="6" loc="(3110,2137)" name="Text"> <a name="text" val="CPU ADDRESS BUS"/> </comp> <comp lib="0" loc="(2670,1420)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp loc="(1330,280)" name="SQUARE_CHANNEL_0"/> <comp lib="6" loc="(3438,2314)" name="Text"> <a name="text" val="RD"/> </comp> <comp lib="1" loc="(510,2050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2670,1440)" name="Tunnel"> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(1220,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp loc="(840,2320)" name="LENGTH_DOWN_COUNTER"/> </circuit> <circuit name="D-latch"> <a name="circuit" val="D-latch"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="46">DLATCH</text> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <rect fill="#46ff68" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="55,57 55,64" stroke="#000000" stroke-width="2"/> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="60,40" width="8" x="46" y="56"/> <circ-port height="8" pin="60,100" width="8" x="46" y="76"/> <circ-port height="10" pin="180,40" width="10" x="85" y="55"/> <circ-port height="10" pin="180,100" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(80,80)" to="(80,100)"/> <wire from="(80,40)" to="(80,60)"/> <wire from="(160,80)" to="(160,100)"/> <wire from="(160,40)" to="(160,60)"/> <wire from="(60,100)" to="(80,100)"/> <wire from="(60,40)" to="(80,40)"/> <wire from="(80,60)" to="(100,60)"/> <wire from="(80,80)" to="(100,80)"/> <wire from="(140,60)" to="(160,60)"/> <wire from="(140,80)" to="(160,80)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,40)" to="(180,40)"/> <comp lib="0" loc="(180,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NOT_Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> <comp lib="4" loc="(140,60)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(60,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> </circuit> <circuit name="LFO"> <a name="circuit" val="LFO"/> <a name="clabel" val="LFO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffac51" height="430" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="146" y="84">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="145" y="124">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="153" y="203">INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="153" y="244">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="124">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="164">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="404">DMCINT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="364">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="244">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="204">W4017</text> <circ-port height="8" pin="90,1740" width="8" x="46" y="196"/> <circ-port height="8" pin="90,1860" width="8" x="46" y="276"/> <circ-port height="8" pin="90,1930" width="8" x="46" y="236"/> <circ-port height="8" pin="90,2000" width="8" x="46" y="316"/> <circ-port height="8" pin="90,2070" width="8" x="46" y="356"/> <circ-port height="8" pin="90,2100" width="8" x="46" y="396"/> <circ-port height="10" pin="1210,850" width="10" x="165" y="75"/> <circ-port height="10" pin="1210,1020" width="10" x="165" y="115"/> <circ-port height="10" pin="1140,1930" width="10" x="165" y="195"/> <circ-port height="10" pin="1140,1790" width="10" x="165" y="235"/> <circ-port height="8" pin="90,2030" width="8" x="46" y="76"/> <circ-port height="8" pin="90,110" width="8" x="46" y="156"/> <circ-port height="8" pin="90,50" width="8" x="46" y="116"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(960,880)" to="(1010,880)"/> <wire from="(960,1040)" to="(1010,1040)"/> <wire from="(150,470)" to="(150,480)"/> <wire from="(750,1140)" to="(810,1140)"/> <wire from="(740,490)" to="(800,490)"/> <wire from="(720,630)" to="(780,630)"/> <wire from="(160,480)" to="(160,500)"/> <wire from="(530,720)" to="(530,800)"/> <wire from="(530,400)" to="(530,480)"/> <wire from="(530,1040)" to="(530,1120)"/> <wire from="(530,880)" to="(530,960)"/> <wire from="(530,560)" to="(530,640)"/> <wire from="(530,1200)" to="(530,1280)"/> <wire from="(530,240)" to="(530,320)"/> <wire from="(170,490)" to="(170,520)"/> <wire from="(140,400)" to="(170,400)"/> <wire from="(780,570)" to="(800,570)"/> <wire from="(760,760)" to="(760,800)"/> <wire from="(530,960)" to="(550,960)"/> <wire from="(530,640)" to="(550,640)"/> <wire from="(530,1280)" to="(550,1280)"/> <wire from="(530,320)" to="(550,320)"/> <wire from="(530,480)" to="(550,480)"/> <wire from="(530,1120)" to="(550,1120)"/> <wire from="(530,160)" to="(550,160)"/> <wire from="(530,800)" to="(550,800)"/> <wire from="(720,1470)" to="(740,1470)"/> <wire from="(310,1860)" to="(330,1860)"/> <wire from="(770,230)" to="(800,230)"/> <wire from="(180,500)" to="(180,540)"/> <wire from="(140,1580)" to="(140,1630)"/> <wire from="(190,510)" to="(190,560)"/> <wire from="(310,1680)" to="(450,1680)"/> <wire from="(790,910)" to="(800,910)"/> <wire from="(790,110)" to="(800,110)"/> <wire from="(720,200)" to="(730,200)"/> <wire from="(770,1410)" to="(770,1460)"/> <wire from="(200,520)" to="(200,580)"/> <wire from="(760,1130)" to="(810,1130)"/> <wire from="(210,530)" to="(210,600)"/> <wire from="(720,1410)" to="(770,1410)"/> <wire from="(720,610)" to="(770,610)"/> <wire from="(750,480)" to="(800,480)"/> <wire from="(140,340)" to="(200,340)"/> <wire from="(150,440)" to="(150,450)"/> <wire from="(610,740)" to="(610,770)"/> <wire from="(610,420)" to="(610,450)"/> <wire from="(610,1060)" to="(610,1090)"/> <wire from="(610,900)" to="(610,930)"/> <wire from="(610,1220)" to="(610,1250)"/> <wire from="(610,580)" to="(610,610)"/> <wire from="(610,260)" to="(610,290)"/> <wire from="(430,1460)" to="(460,1460)"/> <wire from="(720,800)" to="(740,800)"/> <wire from="(300,220)" to="(320,220)"/> <wire from="(720,1110)" to="(750,1110)"/> <wire from="(420,660)" to="(440,660)"/> <wire from="(420,980)" to="(440,980)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,820)" to="(440,820)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,1300)" to="(440,1300)"/> <wire from="(710,1810)" to="(800,1810)"/> <wire from="(980,1050)" to="(1010,1050)"/> <wire from="(980,890)" to="(1010,890)"/> <wire from="(1500,50)" to="(1500,490)"/> <wire from="(780,1390)" to="(780,1450)"/> <wire from="(890,1880)" to="(890,2070)"/> <wire from="(1060,1930)" to="(1090,1930)"/> <wire from="(150,470)" to="(220,470)"/> <wire from="(720,1510)" to="(800,1510)"/> <wire from="(720,490)" to="(730,490)"/> <wire from="(1090,1010)" to="(1110,1010)"/> <wire from="(880,1510)" to="(960,1510)"/> <wire from="(770,740)" to="(770,790)"/> <wire from="(730,1150)" to="(730,1160)"/> <wire from="(730,190)" to="(730,200)"/> <wire from="(250,1660)" to="(250,1730)"/> <wire from="(720,740)" to="(770,740)"/> <wire from="(220,1680)" to="(270,1680)"/> <wire from="(720,1050)" to="(780,1050)"/> <wire from="(720,590)" to="(760,590)"/> <wire from="(760,470)" to="(800,470)"/> <wire from="(720,430)" to="(760,430)"/> <wire from="(770,1120)" to="(810,1120)"/> <wire from="(750,210)" to="(750,240)"/> <wire from="(160,420)" to="(160,440)"/> <wire from="(510,2050)" to="(510,2070)"/> <wire from="(740,200)" to="(740,220)"/> <wire from="(780,1790)" to="(800,1790)"/> <wire from="(760,220)" to="(760,260)"/> <wire from="(610,180)" to="(630,180)"/> <wire from="(610,340)" to="(630,340)"/> <wire from="(610,500)" to="(630,500)"/> <wire from="(610,660)" to="(630,660)"/> <wire from="(610,820)" to="(630,820)"/> <wire from="(610,980)" to="(630,980)"/> <wire from="(610,1140)" to="(630,1140)"/> <wire from="(720,120)" to="(750,120)"/> <wire from="(780,720)" to="(780,780)"/> <wire from="(730,1500)" to="(800,1500)"/> <wire from="(720,1650)" to="(790,1650)"/> <wire from="(720,370)" to="(790,370)"/> <wire from="(250,1810)" to="(330,1810)"/> <wire from="(780,240)" to="(780,300)"/> <wire from="(770,230)" to="(770,280)"/> <wire from="(630,1870)" to="(710,1870)"/> <wire from="(720,840)" to="(800,840)"/> <wire from="(370,180)" to="(440,180)"/> <wire from="(730,160)" to="(730,170)"/> <wire from="(750,1540)" to="(800,1540)"/> <wire from="(420,690)" to="(610,690)"/> <wire from="(420,370)" to="(610,370)"/> <wire from="(420,1010)" to="(610,1010)"/> <wire from="(420,530)" to="(610,530)"/> <wire from="(420,850)" to="(610,850)"/> <wire from="(420,210)" to="(610,210)"/> <wire from="(420,1170)" to="(610,1170)"/> <wire from="(790,1370)" to="(790,1440)"/> <wire from="(790,250)" to="(790,320)"/> <wire from="(90,2000)" to="(140,2000)"/> <wire from="(720,60)" to="(780,60)"/> <wire from="(750,1210)" to="(810,1210)"/> <wire from="(630,1820)" to="(630,1850)"/> <wire from="(180,500)" to="(220,500)"/> <wire from="(170,400)" to="(170,430)"/> <wire from="(140,1650)" to="(140,1680)"/> <wire from="(740,1130)" to="(740,1150)"/> <wire from="(720,570)" to="(750,570)"/> <wire from="(770,460)" to="(800,460)"/> <wire from="(780,1110)" to="(810,1110)"/> <wire from="(720,980)" to="(790,980)"/> <wire from="(730,830)" to="(800,830)"/> <wire from="(730,190)" to="(800,190)"/> <wire from="(320,190)" to="(330,190)"/> <wire from="(210,1840)" to="(220,1840)"/> <wire from="(460,1650)" to="(460,1700)"/> <wire from="(480,740)" to="(550,740)"/> <wire from="(480,1060)" to="(550,1060)"/> <wire from="(480,580)" to="(550,580)"/> <wire from="(480,900)" to="(550,900)"/> <wire from="(480,1220)" to="(550,1220)"/> <wire from="(480,420)" to="(550,420)"/> <wire from="(480,260)" to="(550,260)"/> <wire from="(1150,850)" to="(1170,850)"/> <wire from="(230,140)" to="(230,210)"/> <wire from="(750,870)" to="(800,870)"/> <wire from="(350,1430)" to="(400,1430)"/> <wire from="(790,700)" to="(790,770)"/> <wire from="(510,2070)" to="(890,2070)"/> <wire from="(720,1630)" to="(780,1630)"/> <wire from="(740,1490)" to="(800,1490)"/> <wire from="(740,530)" to="(800,530)"/> <wire from="(590,240)" to="(630,240)"/> <wire from="(590,400)" to="(630,400)"/> <wire from="(590,560)" to="(630,560)"/> <wire from="(590,720)" to="(630,720)"/> <wire from="(590,880)" to="(630,880)"/> <wire from="(590,1040)" to="(630,1040)"/> <wire from="(590,1200)" to="(630,1200)"/> <wire from="(750,1110)" to="(750,1140)"/> <wire from="(740,140)" to="(740,160)"/> <wire from="(790,1100)" to="(810,1100)"/> <wire from="(780,1570)" to="(800,1570)"/> <wire from="(780,450)" to="(800,450)"/> <wire from="(520,1790)" to="(540,1790)"/> <wire from="(590,1220)" to="(610,1220)"/> <wire from="(590,900)" to="(610,900)"/> <wire from="(590,260)" to="(610,260)"/> <wire from="(590,580)" to="(610,580)"/> <wire from="(590,420)" to="(610,420)"/> <wire from="(590,740)" to="(610,740)"/> <wire from="(590,1060)" to="(610,1060)"/> <wire from="(720,550)" to="(740,550)"/> <wire from="(250,1840)" to="(270,1840)"/> <wire from="(180,380)" to="(180,420)"/> <wire from="(590,1940)" to="(590,2040)"/> <wire from="(780,1240)" to="(810,1240)"/> <wire from="(240,1840)" to="(250,1840)"/> <wire from="(140,1580)" to="(150,1580)"/> <wire from="(210,530)" to="(220,530)"/> <wire from="(510,1930)" to="(640,1930)"/> <wire from="(330,1810)" to="(330,1860)"/> <wire from="(1190,1020)" to="(1210,1020)"/> <wire from="(750,1480)" to="(800,1480)"/> <wire from="(720,1610)" to="(770,1610)"/> <wire from="(390,480)" to="(440,480)"/> <wire from="(390,160)" to="(440,160)"/> <wire from="(390,1120)" to="(440,1120)"/> <wire from="(390,800)" to="(440,800)"/> <wire from="(390,320)" to="(440,320)"/> <wire from="(390,960)" to="(440,960)"/> <wire from="(390,640)" to="(440,640)"/> <wire from="(390,1280)" to="(440,1280)"/> <wire from="(470,1680)" to="(520,1680)"/> <wire from="(140,2000)" to="(510,2000)"/> <wire from="(740,820)" to="(800,820)"/> <wire from="(720,960)" to="(780,960)"/> <wire from="(760,220)" to="(800,220)"/> <wire from="(750,120)" to="(750,150)"/> <wire from="(380,1380)" to="(380,1460)"/> <wire from="(500,1340)" to="(800,1340)"/> <wire from="(1620,50)" to="(1620,490)"/> <wire from="(780,900)" to="(800,900)"/> <wire from="(190,1740)" to="(220,1740)"/> <wire from="(760,1090)" to="(760,1130)"/> <wire from="(780,1750)" to="(780,1790)"/> <wire from="(520,1680)" to="(520,1790)"/> <wire from="(770,560)" to="(800,560)"/> <wire from="(140,420)" to="(160,420)"/> <wire from="(980,890)" to="(980,1050)"/> <wire from="(90,2100)" to="(1000,2100)"/> <wire from="(190,360)" to="(190,410)"/> <wire from="(960,1510)" to="(960,1700)"/> <wire from="(790,440)" to="(800,440)"/> <wire from="(1090,840)" to="(1090,1010)"/> <wire from="(720,1490)" to="(730,1490)"/> <wire from="(720,530)" to="(730,530)"/> <wire from="(740,1200)" to="(740,1210)"/> <wire from="(720,940)" to="(770,940)"/> <wire from="(750,810)" to="(800,810)"/> <wire from="(140,360)" to="(190,360)"/> <wire from="(720,1850)" to="(720,1920)"/> <wire from="(460,1460)" to="(460,1610)"/> <wire from="(590,1300)" to="(630,1300)"/> <wire from="(760,1220)" to="(760,1250)"/> <wire from="(720,1590)" to="(760,1590)"/> <wire from="(720,1430)" to="(760,1430)"/> <wire from="(760,1470)" to="(800,1470)"/> <wire from="(390,1040)" to="(390,1120)"/> <wire from="(390,400)" to="(390,480)"/> <wire from="(390,720)" to="(390,800)"/> <wire from="(390,880)" to="(390,960)"/> <wire from="(390,560)" to="(390,640)"/> <wire from="(390,240)" to="(390,320)"/> <wire from="(390,1200)" to="(390,1280)"/> <wire from="(320,140)" to="(320,170)"/> <wire from="(230,140)" to="(270,140)"/> <wire from="(400,1430)" to="(440,1430)"/> <wire from="(750,1210)" to="(750,1230)"/> <wire from="(760,100)" to="(760,140)"/> <wire from="(770,1230)" to="(770,1270)"/> <wire from="(720,1130)" to="(740,1130)"/> <wire from="(250,1620)" to="(270,1620)"/> <wire from="(720,1190)" to="(810,1190)"/> <wire from="(790,1250)" to="(790,1310)"/> <wire from="(720,1370)" to="(790,1370)"/> <wire from="(140,460)" to="(220,460)"/> <wire from="(610,1970)" to="(740,1970)"/> <wire from="(440,1380)" to="(440,1430)"/> <wire from="(390,1720)" to="(980,1720)"/> <wire from="(710,1810)" to="(710,1870)"/> <wire from="(790,250)" to="(800,250)"/> <wire from="(720,820)" to="(730,820)"/> <wire from="(780,1240)" to="(780,1290)"/> <wire from="(770,1070)" to="(770,1120)"/> <wire from="(200,340)" to="(200,400)"/> <wire from="(730,520)" to="(730,530)"/> <wire from="(330,1590)" to="(330,1660)"/> <wire from="(290,1870)" to="(290,1940)"/> <wire from="(720,1070)" to="(770,1070)"/> <wire from="(510,1930)" to="(510,2000)"/> <wire from="(760,800)" to="(800,800)"/> <wire from="(720,760)" to="(760,760)"/> <wire from="(720,920)" to="(760,920)"/> <wire from="(910,1790)" to="(1140,1790)"/> <wire from="(750,540)" to="(750,570)"/> <wire from="(450,270)" to="(450,350)"/> <wire from="(450,1230)" to="(450,1310)"/> <wire from="(450,1070)" to="(450,1150)"/> <wire from="(450,910)" to="(450,990)"/> <wire from="(450,750)" to="(450,830)"/> <wire from="(450,590)" to="(450,670)"/> <wire from="(450,430)" to="(450,510)"/> <wire from="(800,1260)" to="(800,1340)"/> <wire from="(740,530)" to="(740,550)"/> <wire from="(90,1740)" to="(120,1740)"/> <wire from="(760,550)" to="(760,590)"/> <wire from="(530,110)" to="(550,110)"/> <wire from="(720,140)" to="(740,140)"/> <wire from="(250,1750)" to="(270,1750)"/> <wire from="(250,1910)" to="(270,1910)"/> <wire from="(720,1570)" to="(750,1570)"/> <wire from="(720,450)" to="(750,450)"/> <wire from="(770,1460)" to="(800,1460)"/> <wire from="(250,150)" to="(270,150)"/> <wire from="(780,1050)" to="(780,1110)"/> <wire from="(780,570)" to="(780,630)"/> <wire from="(740,1200)" to="(810,1200)"/> <wire from="(720,700)" to="(790,700)"/> <wire from="(890,1800)" to="(890,1860)"/> <wire from="(420,690)" to="(420,740)"/> <wire from="(420,370)" to="(420,420)"/> <wire from="(420,1010)" to="(420,1060)"/> <wire from="(420,530)" to="(420,580)"/> <wire from="(420,850)" to="(420,900)"/> <wire from="(420,210)" to="(420,260)"/> <wire from="(420,1170)" to="(420,1220)"/> <wire from="(140,1650)" to="(150,1650)"/> <wire from="(1040,50)" to="(1040,490)"/> <wire from="(140,600)" to="(210,600)"/> <wire from="(150,450)" to="(220,450)"/> <wire from="(770,560)" to="(770,610)"/> <wire from="(770,80)" to="(770,130)"/> <wire from="(730,490)" to="(730,500)"/> <wire from="(720,80)" to="(770,80)"/> <wire from="(210,320)" to="(210,390)"/> <wire from="(790,580)" to="(790,650)"/> <wire from="(170,490)" to="(220,490)"/> <wire from="(740,1530)" to="(800,1530)"/> <wire from="(720,390)" to="(780,390)"/> <wire from="(530,640)" to="(530,720)"/> <wire from="(530,480)" to="(530,560)"/> <wire from="(530,1120)" to="(530,1200)"/> <wire from="(530,320)" to="(530,400)"/> <wire from="(530,160)" to="(530,240)"/> <wire from="(530,960)" to="(530,1040)"/> <wire from="(530,800)" to="(530,880)"/> <wire from="(450,1650)" to="(450,1680)"/> <wire from="(920,510)" to="(920,850)"/> <wire from="(780,1450)" to="(800,1450)"/> <wire from="(120,1740)" to="(150,1740)"/> <wire from="(530,560)" to="(550,560)"/> <wire from="(530,1200)" to="(550,1200)"/> <wire from="(530,400)" to="(550,400)"/> <wire from="(530,1040)" to="(550,1040)"/> <wire from="(530,240)" to="(550,240)"/> <wire from="(530,880)" to="(550,880)"/> <wire from="(530,720)" to="(550,720)"/> <wire from="(570,2040)" to="(590,2040)"/> <wire from="(720,1550)" to="(740,1550)"/> <wire from="(920,1010)" to="(1010,1010)"/> <wire from="(920,850)" to="(1010,850)"/> <wire from="(720,900)" to="(750,900)"/> <wire from="(770,790)" to="(800,790)"/> <wire from="(1000,1940)" to="(1000,2100)"/> <wire from="(720,1310)" to="(790,1310)"/> <wire from="(730,520)" to="(800,520)"/> <wire from="(140,1680)" to="(220,1680)"/> <wire from="(1110,1930)" to="(1140,1930)"/> <wire from="(610,1750)" to="(740,1750)"/> <wire from="(780,60)" to="(780,120)"/> <wire from="(140,1750)" to="(140,2000)"/> <wire from="(720,180)" to="(800,180)"/> <wire from="(1150,1020)" to="(1170,1020)"/> <wire from="(890,1180)" to="(940,1180)"/> <wire from="(160,440)" to="(220,440)"/> <wire from="(140,580)" to="(200,580)"/> <wire from="(790,1030)" to="(790,1100)"/> <wire from="(740,860)" to="(800,860)"/> <wire from="(290,1940)" to="(290,1960)"/> <wire from="(770,1230)" to="(810,1230)"/> <wire from="(610,820)" to="(610,850)"/> <wire from="(610,980)" to="(610,1010)"/> <wire from="(610,500)" to="(610,530)"/> <wire from="(610,340)" to="(610,370)"/> <wire from="(610,180)" to="(610,210)"/> <wire from="(610,660)" to="(610,690)"/> <wire from="(610,1140)" to="(610,1170)"/> <wire from="(230,210)" to="(270,210)"/> <wire from="(310,1730)" to="(350,1730)"/> <wire from="(90,2070)" to="(510,2070)"/> <wire from="(720,1920)" to="(1020,1920)"/> <wire from="(740,470)" to="(740,490)"/> <wire from="(780,780)" to="(800,780)"/> <wire from="(690,1810)" to="(710,1810)"/> <wire from="(720,880)" to="(740,880)"/> <wire from="(300,460)" to="(320,460)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(420,260)" to="(440,260)"/> <wire from="(420,900)" to="(440,900)"/> <wire from="(420,1060)" to="(440,1060)"/> <wire from="(420,740)" to="(440,740)"/> <wire from="(420,420)" to="(440,420)"/> <wire from="(420,1220)" to="(440,1220)"/> <wire from="(330,1810)" to="(540,1810)"/> <wire from="(1620,490)" to="(2080,490)"/> <wire from="(770,1560)" to="(800,1560)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(200,520)" to="(220,520)"/> <wire from="(720,320)" to="(790,320)"/> <wire from="(730,170)" to="(800,170)"/> <wire from="(320,170)" to="(330,170)"/> <wire from="(140,1750)" to="(150,1750)"/> <wire from="(940,1020)" to="(1010,1020)"/> <wire from="(330,1660)" to="(330,1710)"/> <wire from="(790,1440)" to="(800,1440)"/> <wire from="(320,270)" to="(320,460)"/> <wire from="(720,1530)" to="(730,1530)"/> <wire from="(750,210)" to="(800,210)"/> <wire from="(1070,860)" to="(1110,860)"/> <wire from="(140,560)" to="(190,560)"/> <wire from="(170,430)" to="(220,430)"/> <wire from="(790,40)" to="(790,110)"/> <wire from="(720,1290)" to="(780,1290)"/> <wire from="(500,1340)" to="(500,1750)"/> <wire from="(760,550)" to="(800,550)"/> <wire from="(120,1960)" to="(290,1960)"/> <wire from="(750,450)" to="(750,480)"/> <wire from="(880,510)" to="(920,510)"/> <wire from="(1090,790)" to="(1090,840)"/> <wire from="(90,50)" to="(120,50)"/> <wire from="(380,1460)" to="(410,1460)"/> <wire from="(610,260)" to="(630,260)"/> <wire from="(610,420)" to="(630,420)"/> <wire from="(610,580)" to="(630,580)"/> <wire from="(610,740)" to="(630,740)"/> <wire from="(610,900)" to="(630,900)"/> <wire from="(610,1060)" to="(630,1060)"/> <wire from="(610,1220)" to="(630,1220)"/> <wire from="(170,270)" to="(320,270)"/> <wire from="(250,1660)" to="(270,1660)"/> <wire from="(770,890)" to="(800,890)"/> <wire from="(940,1020)" to="(940,1180)"/> <wire from="(960,880)" to="(960,1040)"/> <wire from="(880,840)" to="(1010,840)"/> <wire from="(400,1380)" to="(400,1430)"/> <wire from="(140,440)" to="(150,440)"/> <wire from="(940,830)" to="(1010,830)"/> <wire from="(220,1680)" to="(220,1740)"/> <wire from="(800,1260)" to="(810,1260)"/> <wire from="(790,770)" to="(800,770)"/> <wire from="(720,860)" to="(730,860)"/> <wire from="(730,1520)" to="(730,1530)"/> <wire from="(420,770)" to="(610,770)"/> <wire from="(420,450)" to="(610,450)"/> <wire from="(420,1090)" to="(610,1090)"/> <wire from="(420,930)" to="(610,930)"/> <wire from="(420,610)" to="(610,610)"/> <wire from="(420,290)" to="(610,290)"/> <wire from="(720,1270)" to="(770,1270)"/> <wire from="(420,1250)" to="(610,1250)"/> <wire from="(590,1940)" to="(640,1940)"/> <wire from="(740,160)" to="(800,160)"/> <wire from="(720,300)" to="(780,300)"/> <wire from="(750,1540)" to="(750,1570)"/> <wire from="(140,380)" to="(180,380)"/> <wire from="(180,420)" to="(220,420)"/> <wire from="(140,540)" to="(180,540)"/> <wire from="(740,1530)" to="(740,1550)"/> <wire from="(760,430)" to="(760,470)"/> <wire from="(760,1550)" to="(760,1590)"/> <wire from="(1040,490)" to="(1500,490)"/> <wire from="(510,2050)" to="(530,2050)"/> <wire from="(700,1920)" to="(720,1920)"/> <wire from="(780,240)" to="(800,240)"/> <wire from="(720,1450)" to="(750,1450)"/> <wire from="(330,1710)" to="(350,1710)"/> <wire from="(190,1570)" to="(210,1570)"/> <wire from="(780,1570)" to="(780,1630)"/> <wire from="(140,320)" to="(210,320)"/> <wire from="(790,580)" to="(800,580)"/> <wire from="(480,820)" to="(550,820)"/> <wire from="(480,1140)" to="(550,1140)"/> <wire from="(480,500)" to="(550,500)"/> <wire from="(480,340)" to="(550,340)"/> <wire from="(480,180)" to="(550,180)"/> <wire from="(480,660)" to="(550,660)"/> <wire from="(480,980)" to="(550,980)"/> <wire from="(720,1150)" to="(730,1150)"/> <wire from="(480,1300)" to="(550,1300)"/> <wire from="(770,1560)" to="(770,1610)"/> <wire from="(210,1640)" to="(210,1700)"/> <wire from="(730,1490)" to="(730,1500)"/> <wire from="(730,850)" to="(730,860)"/> <wire from="(250,1840)" to="(250,1910)"/> <wire from="(720,280)" to="(770,280)"/> <wire from="(750,150)" to="(800,150)"/> <wire from="(310,1750)" to="(500,1750)"/> <wire from="(790,1580)" to="(790,1650)"/> <wire from="(90,1860)" to="(270,1860)"/> <wire from="(720,1390)" to="(780,1390)"/> <wire from="(740,1750)" to="(740,1970)"/> <wire from="(590,160)" to="(630,160)"/> <wire from="(590,320)" to="(630,320)"/> <wire from="(590,480)" to="(630,480)"/> <wire from="(590,640)" to="(630,640)"/> <wire from="(590,800)" to="(630,800)"/> <wire from="(590,960)" to="(630,960)"/> <wire from="(590,1120)" to="(630,1120)"/> <wire from="(590,1280)" to="(630,1280)"/> <wire from="(720,1090)" to="(760,1090)"/> <wire from="(720,1250)" to="(760,1250)"/> <wire from="(630,1870)" to="(630,1900)"/> <wire from="(750,870)" to="(750,900)"/> <wire from="(140,1700)" to="(140,1730)"/> <wire from="(170,130)" to="(270,130)"/> <wire from="(740,860)" to="(740,880)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(190,410)" to="(220,410)"/> <wire from="(760,880)" to="(760,920)"/> <wire from="(590,340)" to="(610,340)"/> <wire from="(590,980)" to="(610,980)"/> <wire from="(590,660)" to="(610,660)"/> <wire from="(590,1140)" to="(610,1140)"/> <wire from="(590,180)" to="(610,180)"/> <wire from="(590,820)" to="(610,820)"/> <wire from="(590,500)" to="(610,500)"/> <wire from="(630,1820)" to="(650,1820)"/> <wire from="(720,470)" to="(740,470)"/> <wire from="(310,1660)" to="(330,1660)"/> <wire from="(720,780)" to="(750,780)"/> <wire from="(720,1170)" to="(810,1170)"/> <wire from="(780,900)" to="(780,960)"/> <wire from="(730,1520)" to="(800,1520)"/> <wire from="(720,1030)" to="(790,1030)"/> <wire from="(770,410)" to="(770,460)"/> <wire from="(720,160)" to="(730,160)"/> <wire from="(1090,840)" to="(1110,840)"/> <wire from="(770,890)" to="(770,940)"/> <wire from="(730,820)" to="(730,830)"/> <wire from="(720,410)" to="(770,410)"/> <wire from="(160,480)" to="(220,480)"/> <wire from="(390,1200)" to="(440,1200)"/> <wire from="(390,240)" to="(440,240)"/> <wire from="(390,560)" to="(440,560)"/> <wire from="(390,880)" to="(440,880)"/> <wire from="(390,400)" to="(440,400)"/> <wire from="(390,1040)" to="(440,1040)"/> <wire from="(390,720)" to="(440,720)"/> <wire from="(790,910)" to="(790,980)"/> <wire from="(720,720)" to="(780,720)"/> <wire from="(980,1050)" to="(980,1720)"/> <wire from="(720,100)" to="(760,100)"/> <wire from="(760,140)" to="(800,140)"/> <wire from="(720,260)" to="(760,260)"/> <wire from="(610,1750)" to="(610,1970)"/> <wire from="(460,1380)" to="(460,1460)"/> <wire from="(210,230)" to="(250,230)"/> <wire from="(120,1740)" to="(120,1960)"/> <wire from="(740,1470)" to="(740,1490)"/> <wire from="(250,1730)" to="(270,1730)"/> <wire from="(720,1230)" to="(750,1230)"/> <wire from="(250,1620)" to="(250,1660)"/> <wire from="(630,1850)" to="(720,1850)"/> <wire from="(1620,50)" to="(2080,50)"/> <wire from="(140,500)" to="(160,500)"/> <wire from="(200,400)" to="(220,400)"/> <wire from="(720,40)" to="(790,40)"/> <wire from="(730,850)" to="(800,850)"/> <wire from="(140,1630)" to="(150,1630)"/> <wire from="(780,390)" to="(780,450)"/> <wire from="(140,1700)" to="(210,1700)"/> <wire from="(570,1800)" to="(650,1800)"/> <wire from="(390,1280)" to="(390,1340)"/> <wire from="(730,1160)" to="(810,1160)"/> <wire from="(720,510)" to="(800,510)"/> <wire from="(1070,790)" to="(1090,790)"/> <wire from="(760,1220)" to="(810,1220)"/> <wire from="(460,1700)" to="(960,1700)"/> <wire from="(940,180)" to="(940,830)"/> <wire from="(170,130)" to="(170,270)"/> <wire from="(750,1450)" to="(750,1480)"/> <wire from="(760,1550)" to="(800,1550)"/> <wire from="(390,160)" to="(390,240)"/> <wire from="(840,1790)" to="(880,1790)"/> <wire from="(390,1120)" to="(390,1200)"/> <wire from="(390,480)" to="(390,560)"/> <wire from="(390,800)" to="(390,880)"/> <wire from="(390,960)" to="(390,1040)"/> <wire from="(390,320)" to="(390,400)"/> <wire from="(390,640)" to="(390,720)"/> <wire from="(450,1310)" to="(450,1340)"/> <wire from="(470,1650)" to="(470,1680)"/> <wire from="(740,800)" to="(740,820)"/> <wire from="(780,1750)" to="(800,1750)"/> <wire from="(190,510)" to="(220,510)"/> <wire from="(720,1210)" to="(740,1210)"/> <wire from="(720,240)" to="(750,240)"/> <wire from="(770,130)" to="(800,130)"/> <wire from="(190,1640)" to="(210,1640)"/> <wire from="(740,1150)" to="(810,1150)"/> <wire from="(720,650)" to="(790,650)"/> <wire from="(730,500)" to="(800,500)"/> <wire from="(140,480)" to="(150,480)"/> <wire from="(940,870)" to="(1010,870)"/> <wire from="(210,390)" to="(220,390)"/> <wire from="(250,1750)" to="(250,1810)"/> <wire from="(530,110)" to="(530,160)"/> <wire from="(750,540)" to="(800,540)"/> <wire from="(1070,1030)" to="(1110,1030)"/> <wire from="(90,110)" to="(530,110)"/> <wire from="(880,180)" to="(940,180)"/> <wire from="(90,2030)" to="(530,2030)"/> <wire from="(790,370)" to="(790,440)"/> <wire from="(90,1930)" to="(270,1930)"/> <wire from="(740,200)" to="(800,200)"/> <wire from="(250,150)" to="(250,230)"/> <wire from="(760,880)" to="(800,880)"/> <wire from="(520,1680)" to="(940,1680)"/> <wire from="(750,780)" to="(750,810)"/> <wire from="(450,350)" to="(450,430)"/> <wire from="(450,190)" to="(450,270)"/> <wire from="(450,1150)" to="(450,1230)"/> <wire from="(450,990)" to="(450,1070)"/> <wire from="(450,830)" to="(450,910)"/> <wire from="(450,670)" to="(450,750)"/> <wire from="(450,510)" to="(450,590)"/> <wire from="(940,870)" to="(940,1020)"/> <wire from="(960,1040)" to="(960,1510)"/> <wire from="(320,190)" to="(320,220)"/> <wire from="(790,1250)" to="(810,1250)"/> <wire from="(760,1430)" to="(760,1470)"/> <wire from="(2080,50)" to="(2080,490)"/> <wire from="(780,120)" to="(800,120)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(920,850)" to="(920,1010)"/> <wire from="(250,230)" to="(270,230)"/> <wire from="(310,140)" to="(320,140)"/> <wire from="(310,1910)" to="(640,1910)"/> <wire from="(420,770)" to="(420,820)"/> <wire from="(420,450)" to="(420,500)"/> <wire from="(420,1090)" to="(420,1140)"/> <wire from="(420,1250)" to="(420,1300)"/> <wire from="(420,290)" to="(420,340)"/> <wire from="(420,930)" to="(420,980)"/> <wire from="(420,610)" to="(420,660)"/> <wire from="(140,1730)" to="(150,1730)"/> <wire from="(190,1590)" to="(330,1590)"/> <wire from="(790,1580)" to="(800,1580)"/> <wire from="(940,1180)" to="(940,1680)"/> <wire from="(1040,50)" to="(1500,50)"/> <wire from="(630,1900)" to="(640,1900)"/> <wire from="(1000,1940)" to="(1020,1940)"/> <wire from="(1190,850)" to="(1210,850)"/> <comp lib="0" loc="(350,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(173,1559)" name="Text"> <a name="text" val="NOR6"/> </comp> <comp lib="4" loc="(480,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(1940,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="1" loc="(150,1580)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,460)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor5"/> </comp> <comp lib="4" loc="(480,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1200,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(630,800)" name="Tunnel"> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(1780,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="6" loc="(1425,449)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(720,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(890,1180)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="16"/> <a name="label" val="Nor3"/> </comp> <comp lib="0" loc="(630,960)" name="Tunnel"> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(630,900)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1140,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6 State"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1440,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1780,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(140,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(90,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4017"/> </comp> <comp loc="(310,1670)" name="D-latch"/> <comp lib="0" loc="(1940,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(2020,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1700,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1700,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="4" loc="(590,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="4" loc="(480,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1200,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(720,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(140,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1940,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1440,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(720,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1440,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="4" loc="(480,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="4" loc="(590,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2020,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1780,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="1" loc="(300,220)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(590,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1780,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="6" loc="(191,1762)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="6" loc="(421,1714)" name="Text"> <a name="text" val="Z2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(590,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1764,450)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(720,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(720,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1140,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="INT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1120,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(720,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="1" loc="(460,1610)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(117,1693)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="1" loc="(890,1860)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp loc="(840,1800)" name="D-latch"/> <comp lib="6" loc="(605,1275)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="0" loc="(630,640)" name="Tunnel"> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(720,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="4" loc="(480,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(720,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="4" loc="(590,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1560,525)" name="Text"> <a name="text" val="NOR 5 NTSC = NOR5 PAL"/> </comp> <comp lib="0" loc="(1700,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="6" loc="(168,1673)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="6" loc="(1846,451)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1940,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="4" loc="(480,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1340)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1860,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(602,1115)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="4" loc="(590,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1120,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(630,1120)" name="Tunnel"> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(630,160)" name="Tunnel"> <a name="label" val="/0"/> </comp> <comp lib="6" loc="(674,1780)" name="Text"> <a name="text" val="INT FLAG"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(2020,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(1940,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(603,1036)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="0" loc="(1440,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1360,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1780,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1780,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1360,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(1440,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(720,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(1200,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="4" loc="(480,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(2020,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1210,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/LFO2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1360,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1940,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1280,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="4" loc="(480,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1360,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1700,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1860,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1200,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,1610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(720,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="1" loc="(700,1920)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(90,1930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(1780,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1200,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="6" loc="(605,796)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="0" loc="(720,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(630,560)" name="Tunnel"> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(1440,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1780,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="6" loc="(291,601)" name="Text"> <a name="text" val="NOR 5 NTSC = NOR5 PAL"/> </comp> <comp lib="1" loc="(880,1510)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor4"/> </comp> <comp lib="0" loc="(1860,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,1860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="6" loc="(2005,450)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(630,320)" name="Tunnel"> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(720,1590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(421,1675)" name="Text"> <a name="text" val="Z1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(480,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(310,1740)" name="D-latch"/> <comp lib="0" loc="(1200,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(140,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1780,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1280,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(390,1340)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1060,1930)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(590,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(597,1792)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(126,1729)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="0" loc="(1940,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(90,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="4" loc="(590,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(550,110)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1700,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(630,480)" name="Tunnel"> <a name="label" val="/4"/> </comp> <comp lib="1" loc="(1190,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1860,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="4" loc="(590,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1360,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="4" loc="(480,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1700,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1700,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="6" loc="(290,1705)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="0" loc="(2020,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="4" loc="(590,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1440,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="0" loc="(1200,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(720,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(132,1360)" name="Text"> <a name="text" val="Nor5=3728 X1"/> </comp> <comp lib="0" loc="(1360,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1440,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="6" loc="(170,1718)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="0" loc="(1360,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1360,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(140,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1280,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1440,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="6" loc="(1345,450)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(570,1800)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(661,1841)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="0" loc="(720,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1440,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(720,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(720,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(604,316)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(720,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="6" loc="(1854,95)" name="Text"> <a name="text" val="PAL NOR CONFIGURATION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(1940,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(720,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,2100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMCINT"/> </comp> <comp lib="6" loc="(289,1774)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="0" loc="(1700,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(720,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1440,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(630,740)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="0" loc="(720,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(630,260)" name="Tunnel"> <a name="label" val="1"/> </comp> <comp lib="0" loc="(2020,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(720,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(720,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="6" loc="(1685,451)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(1780,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(630,1220)" name="Tunnel"> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1780,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(661,1864)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="1" loc="(910,1790)" name="Controlled Inverter"/> <comp lib="0" loc="(1700,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(630,980)" name="Tunnel"> <a name="label" val="10"/> </comp> <comp lib="1" loc="(1150,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1070,860)" name="NOR Gate"> <a name="inputs" val="6"/> </comp> <comp lib="6" loc="(604,874)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(2020,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1360,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(720,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(140,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(604,153)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="6" loc="(754,1910)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(720,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="6" loc="(1266,450)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(720,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="6" loc="(662,1884)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="0" loc="(2020,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(1360,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1700,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1860,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(630,1300)" name="Tunnel"> <a name="label" val="14"/> </comp> <comp lib="0" loc="(140,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(190,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(595,1901)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(1940,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(720,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="1" loc="(880,510)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor1"/> </comp> <comp lib="6" loc="(128,1632)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(210,1570)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(630,820)" name="Tunnel"> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1940,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1700,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(630,1040)" name="Tunnel"> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1780,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="4" loc="(480,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,180)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1120,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(140,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(720,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(1940,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(720,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(2020,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(210,1840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(1190,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1360,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1280,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1860,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(90,2070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(1940,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="6" loc="(603,956)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="0" loc="(1440,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="1" loc="(690,1810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1150,1020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(720,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="1" loc="(240,1840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1780,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1120,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(720,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="4" loc="(480,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,420)" name="Tunnel"> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1860,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(140,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(820,1834)" name="Text"> <a name="text" val="INT STATUS"/> </comp> <comp lib="0" loc="(1120,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(630,340)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1860,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1440,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(1860,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="6" loc="(305,1788)" name="Text"> <a name="text" val="MD_Latch"/> </comp> <comp lib="6" loc="(753,1797)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(720,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(210,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="4" loc="(590,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(590,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1280,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(292,1976)" name="Text"> <a name="text" val="RESET INT FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1860,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(720,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1280,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="6" loc="(604,233)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(720,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="1" loc="(1110,1930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(880,840)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor2"/> </comp> <comp lib="0" loc="(1120,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(720,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(1280,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(421,1805)" name="Text"> <a name="text" val="4 OR 5 STEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(170,1695)" name="Text"> <a name="text" val="CLEAR LFO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(630,240)" name="Tunnel"> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(2020,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(630,1200)" name="Tunnel"> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1940,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(210,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="6" loc="(132,1375)" name="Text"> <a name="text" val="Nor4=7456 X2"/> </comp> <comp lib="0" loc="(1360,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(720,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(90,2030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(419,1905)" name="Text"> <a name="text" val="IRQ DISABLE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(1070,1030)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(1860,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1440,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="4" loc="(480,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(720,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(140,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(1120,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1200,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(1440,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(370,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1200,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(720,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(605,716)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="4" loc="(590,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1264,91)" name="Text"> <a name="text" val="NTSC NOR CONFIGURATION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(2020,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(630,720)" name="Tunnel"> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(720,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1360,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(173,1435)" name="Text"> <a name="text" val="Nor0=16384 CARRY COUNT"/> </comp> <comp lib="0" loc="(720,1390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(1070,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1940,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1700,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(1925,451)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(1120,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(140,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="4" loc="(590,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1860,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1280,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(136,1421)" name="Text"> <a name="text" val="Nor1=18640 X5"/> </comp> <comp lib="0" loc="(720,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,1410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(720,1510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(1105,450)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(1200,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1940,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(1280,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1700,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(720,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(603,1195)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="4" loc="(310,1840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(720,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(720,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1200,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1700,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(140,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(720,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(190,1740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1200,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(630,1140)" name="Tunnel"> <a name="label" val="12"/> </comp> <comp lib="1" loc="(390,1720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1120,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(630,1060)" name="Tunnel"> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1120,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1120,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="4" loc="(310,1910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(140,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(880,180)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor0"/> </comp> <comp lib="0" loc="(630,400)" name="Tunnel"> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(720,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1860,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="6" loc="(191,1631)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(603,395)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(2020,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(140,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(2020,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1120,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(1360,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(120,50)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(720,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(1780,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(136,1390)" name="Text"> <a name="text" val="Nor3=11184 X3"/> </comp> <comp lib="6" loc="(605,475)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(720,40)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="6" loc="(606,556)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="0" loc="(1280,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(140,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(720,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="4" loc="(590,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(480,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(270,1620)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1200,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(800,1750)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(720,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(720,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="6" loc="(605,635)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(1700,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1120,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(630,660)" name="Tunnel"> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1120,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1200,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1860,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1360,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="1" loc="(410,1460)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(140,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(720,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(630,580)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1280,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="4" loc="(480,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2020,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(630,500)" name="Tunnel"> <a name="label" val="4"/> </comp> <comp lib="0" loc="(720,1470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(2020,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="6" loc="(290,1826)" name="Text"> <a name="text" val="MODE FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1280,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(630,880)" name="Tunnel"> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1200,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1860,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1780,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(720,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(570,2040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(136,1405)" name="Text"> <a name="text" val="Nor2=14914 X4"/> </comp> <comp lib="0" loc="(630,1280)" name="Tunnel"> <a name="label" val="/14"/> </comp> <comp lib="0" loc="(1210,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/LFO1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1184,449)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(1120,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> </circuit> <circuit name="/ACLK2"> <a name="circuit" val="/ACLK2"/> <a name="clabel" val="/ACLK2"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M111,61 Q115,71 119,61" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#3ae9ff" height="150" stroke="#000000" stroke-width="2" width="180" x="50" y="60"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">PHI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="184">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="94">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="125">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="204" y="154">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="203" y="184">ACLK1</text> <circ-port height="8" pin="80,40" width="8" x="46" y="86"/> <circ-port height="8" pin="80,120" width="8" x="46" y="176"/> <circ-port height="10" pin="580,40" width="10" x="225" y="85"/> <circ-port height="10" pin="580,90" width="10" x="225" y="115"/> <circ-port height="10" pin="580,260" width="10" x="225" y="145"/> <circ-port height="10" pin="580,340" width="10" x="225" y="175"/> <circ-anchor facing="east" height="6" width="6" x="167" y="57"/> </appear> <wire from="(320,670)" to="(380,670)"/> <wire from="(400,670)" to="(460,670)"/> <wire from="(240,670)" to="(300,670)"/> <wire from="(260,270)" to="(440,270)"/> <wire from="(190,270)" to="(240,270)"/> <wire from="(290,90)" to="(580,90)"/> <wire from="(80,120)" to="(370,120)"/> <wire from="(370,190)" to="(370,350)"/> <wire from="(280,590)" to="(300,590)"/> <wire from="(320,590)" to="(340,590)"/> <wire from="(360,590)" to="(380,590)"/> <wire from="(400,590)" to="(420,590)"/> <wire from="(440,590)" to="(460,590)"/> <wire from="(510,260)" to="(530,260)"/> <wire from="(480,590)" to="(500,590)"/> <wire from="(220,500)" to="(220,540)"/> <wire from="(300,500)" to="(300,540)"/> <wire from="(240,840)" to="(240,880)"/> <wire from="(280,760)" to="(280,800)"/> <wire from="(260,500)" to="(260,540)"/> <wire from="(320,840)" to="(320,880)"/> <wire from="(360,760)" to="(360,800)"/> <wire from="(340,500)" to="(340,540)"/> <wire from="(380,500)" to="(380,540)"/> <wire from="(420,500)" to="(420,540)"/> <wire from="(400,840)" to="(400,880)"/> <wire from="(440,760)" to="(440,800)"/> <wire from="(240,590)" to="(260,590)"/> <wire from="(460,500)" to="(460,540)"/> <wire from="(500,500)" to="(500,540)"/> <wire from="(480,840)" to="(480,880)"/> <wire from="(200,590)" to="(220,590)"/> <wire from="(200,670)" to="(220,670)"/> <wire from="(510,340)" to="(580,340)"/> <wire from="(110,440)" to="(110,950)"/> <wire from="(280,800)" to="(340,800)"/> <wire from="(240,880)" to="(300,880)"/> <wire from="(320,880)" to="(380,880)"/> <wire from="(360,800)" to="(420,800)"/> <wire from="(400,880)" to="(460,880)"/> <wire from="(440,800)" to="(500,800)"/> <wire from="(200,800)" to="(260,800)"/> <wire from="(110,90)" to="(290,90)"/> <wire from="(290,90)" to="(290,170)"/> <wire from="(190,170)" to="(230,170)"/> <wire from="(440,270)" to="(470,270)"/> <wire from="(290,170)" to="(310,170)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(300,500)" to="(320,500)"/> <wire from="(370,170)" to="(390,170)"/> <wire from="(340,500)" to="(360,500)"/> <wire from="(350,190)" to="(370,190)"/> <wire from="(380,500)" to="(400,500)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(550,260)" to="(580,260)"/> <wire from="(220,670)" to="(220,710)"/> <wire from="(500,500)" to="(520,500)"/> <wire from="(220,590)" to="(220,630)"/> <wire from="(460,500)" to="(480,500)"/> <wire from="(260,590)" to="(260,630)"/> <wire from="(300,590)" to="(300,630)"/> <wire from="(300,670)" to="(300,710)"/> <wire from="(340,590)" to="(340,630)"/> <wire from="(380,590)" to="(380,630)"/> <wire from="(380,670)" to="(380,710)"/> <wire from="(420,590)" to="(420,630)"/> <wire from="(460,590)" to="(460,630)"/> <wire from="(460,670)" to="(460,710)"/> <wire from="(500,590)" to="(500,630)"/> <wire from="(220,500)" to="(240,500)"/> <wire from="(200,880)" to="(220,880)"/> <wire from="(110,40)" to="(110,90)"/> <wire from="(190,40)" to="(580,40)"/> <wire from="(370,350)" to="(470,350)"/> <wire from="(480,670)" to="(520,670)"/> <wire from="(160,40)" to="(190,40)"/> <wire from="(80,40)" to="(110,40)"/> <wire from="(300,710)" to="(320,710)"/> <wire from="(260,630)" to="(280,630)"/> <wire from="(300,630)" to="(320,630)"/> <wire from="(340,630)" to="(360,630)"/> <wire from="(380,630)" to="(400,630)"/> <wire from="(380,710)" to="(400,710)"/> <wire from="(420,630)" to="(440,630)"/> <wire from="(460,630)" to="(480,630)"/> <wire from="(460,710)" to="(480,710)"/> <wire from="(220,840)" to="(220,880)"/> <wire from="(240,500)" to="(240,540)"/> <wire from="(500,630)" to="(520,630)"/> <wire from="(280,500)" to="(280,540)"/> <wire from="(260,760)" to="(260,800)"/> <wire from="(300,840)" to="(300,880)"/> <wire from="(360,500)" to="(360,540)"/> <wire from="(340,760)" to="(340,800)"/> <wire from="(320,500)" to="(320,540)"/> <wire from="(380,840)" to="(380,880)"/> <wire from="(420,760)" to="(420,800)"/> <wire from="(400,500)" to="(400,540)"/> <wire from="(440,500)" to="(440,540)"/> <wire from="(480,500)" to="(480,540)"/> <wire from="(220,710)" to="(240,710)"/> <wire from="(220,630)" to="(240,630)"/> <wire from="(460,840)" to="(460,880)"/> <wire from="(500,760)" to="(500,800)"/> <wire from="(110,950)" to="(570,950)"/> <wire from="(570,440)" to="(570,950)"/> <wire from="(210,190)" to="(210,250)"/> <wire from="(440,180)" to="(440,250)"/> <wire from="(190,40)" to="(190,170)"/> <wire from="(210,250)" to="(440,250)"/> <wire from="(270,190)" to="(310,190)"/> <wire from="(480,880)" to="(520,880)"/> <wire from="(110,40)" to="(140,40)"/> <wire from="(440,250)" to="(470,250)"/> <wire from="(440,330)" to="(470,330)"/> <wire from="(190,170)" to="(190,270)"/> <wire from="(300,840)" to="(320,840)"/> <wire from="(260,760)" to="(280,760)"/> <wire from="(280,540)" to="(300,540)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(320,540)" to="(340,540)"/> <wire from="(340,760)" to="(360,760)"/> <wire from="(370,190)" to="(390,190)"/> <wire from="(400,540)" to="(420,540)"/> <wire from="(380,840)" to="(400,840)"/> <wire from="(420,760)" to="(440,760)"/> <wire from="(440,540)" to="(460,540)"/> <wire from="(460,840)" to="(480,840)"/> <wire from="(480,540)" to="(500,540)"/> <wire from="(500,760)" to="(520,760)"/> <wire from="(240,590)" to="(240,630)"/> <wire from="(240,670)" to="(240,710)"/> <wire from="(280,590)" to="(280,630)"/> <wire from="(320,590)" to="(320,630)"/> <wire from="(320,670)" to="(320,710)"/> <wire from="(360,590)" to="(360,630)"/> <wire from="(400,590)" to="(400,630)"/> <wire from="(400,670)" to="(400,710)"/> <wire from="(440,590)" to="(440,630)"/> <wire from="(210,190)" to="(230,190)"/> <wire from="(220,840)" to="(240,840)"/> <wire from="(480,670)" to="(480,710)"/> <wire from="(200,540)" to="(220,540)"/> <wire from="(480,590)" to="(480,630)"/> <wire from="(240,540)" to="(260,540)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(110,440)" to="(570,440)"/> <wire from="(370,120)" to="(370,170)"/> <wire from="(440,270)" to="(440,330)"/> <comp lib="6" loc="(163,618)" name="Text"> <a name="text" val="PHI2"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(580,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ACLK1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(430,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(510,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(250,293)" name="Text"> <a name="text" val="INV1"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(162,782)" name="Text"> <a name="text" val="ACLK1"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="4" loc="(350,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(580,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(406,160)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="6" loc="(167,528)" name="Text"> <a name="text" val="PHI1"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(580,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ACLK2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(488,316)" name="Text"> <a name="text" val="NOR3"/> </comp> <comp lib="1" loc="(550,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(159,865)" name="Text"> <a name="text" val="ACLK2"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> </comp> <comp lib="6" loc="(327,216)" name="Text"> <a name="text" val="DL2"/> </comp> <comp lib="0" loc="(580,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(486,235)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp lib="6" loc="(163,701)" name="Text"> <a name="text" val="/ACLK2"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="4" loc="(270,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(249,216)" name="Text"> <a name="text" val="DL1"/> </comp> </circuit> <circuit name="CLK_DIVIDER"> <a name="circuit" val="CLK_DIVIDER"/> <a name="clabel" val="CLK DIVIDER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#42ff2e" height="200" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="84">#CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="214">PHI2 CPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="174">PHI0 CPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="191" y="214">#M2</text> <circ-port height="8" pin="110,50" width="8" x="46" y="76"/> <circ-port height="8" pin="110,440" width="8" x="46" y="206"/> <circ-port height="10" pin="670,240" width="10" x="205" y="165"/> <circ-port height="10" pin="670,430" width="10" x="205" y="205"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(2000,80)" to="(2000,110)"/> <wire from="(2080,80)" to="(2080,110)"/> <wire from="(1180,180)" to="(1420,180)"/> <wire from="(1900,220)" to="(1900,250)"/> <wire from="(1920,80)" to="(1920,110)"/> <wire from="(1760,80)" to="(1760,110)"/> <wire from="(1840,80)" to="(1840,110)"/> <wire from="(1580,220)" to="(1580,250)"/> <wire from="(1600,80)" to="(1600,110)"/> <wire from="(1680,80)" to="(1680,110)"/> <wire from="(380,360)" to="(380,500)"/> <wire from="(1520,80)" to="(1520,110)"/> <wire from="(1660,180)" to="(1900,180)"/> <wire from="(1360,80)" to="(1360,110)"/> <wire from="(1440,80)" to="(1440,110)"/> <wire from="(1200,80)" to="(1200,110)"/> <wire from="(1280,80)" to="(1280,110)"/> <wire from="(1260,220)" to="(1260,250)"/> <wire from="(1120,80)" to="(1120,110)"/> <wire from="(960,80)" to="(960,110)"/> <wire from="(630,240)" to="(670,240)"/> <wire from="(1040,80)" to="(1040,110)"/> <wire from="(560,640)" to="(560,670)"/> <wire from="(280,1000)" to="(710,1000)"/> <wire from="(280,520)" to="(280,550)"/> <wire from="(480,750)" to="(480,840)"/> <wire from="(250,680)" to="(250,770)"/> <wire from="(380,950)" to="(420,950)"/> <wire from="(460,950)" to="(500,950)"/> <wire from="(540,490)" to="(560,490)"/> <wire from="(280,790)" to="(300,790)"/> <wire from="(480,750)" to="(500,750)"/> <wire from="(280,730)" to="(560,730)"/> <wire from="(380,60)" to="(380,100)"/> <wire from="(480,240)" to="(630,240)"/> <wire from="(340,520)" to="(420,520)"/> <wire from="(480,320)" to="(480,380)"/> <wire from="(480,240)" to="(480,300)"/> <wire from="(2160,80)" to="(2160,110)"/> <wire from="(2220,220)" to="(2220,250)"/> <wire from="(340,380)" to="(400,380)"/> <wire from="(1420,150)" to="(1660,150)"/> <wire from="(250,860)" to="(300,860)"/> <wire from="(1900,150)" to="(2140,150)"/> <wire from="(2160,80)" to="(2180,80)"/> <wire from="(2220,220)" to="(2240,220)"/> <wire from="(250,360)" to="(250,500)"/> <wire from="(250,130)" to="(360,130)"/> <wire from="(690,660)" to="(790,660)"/> <wire from="(480,400)" to="(480,480)"/> <wire from="(280,970)" to="(280,1000)"/> <wire from="(790,660)" to="(790,810)"/> <wire from="(380,860)" to="(380,950)"/> <wire from="(480,480)" to="(480,570)"/> <wire from="(380,360)" to="(420,360)"/> <wire from="(380,680)" to="(420,680)"/> <wire from="(940,150)" to="(1180,150)"/> <wire from="(460,680)" to="(500,680)"/> <wire from="(960,80)" to="(980,80)"/> <wire from="(1040,80)" to="(1060,80)"/> <wire from="(540,940)" to="(560,940)"/> <wire from="(280,520)" to="(300,520)"/> <wire from="(460,380)" to="(480,380)"/> <wire from="(480,480)" to="(500,480)"/> <wire from="(480,320)" to="(500,320)"/> <wire from="(280,460)" to="(560,460)"/> <wire from="(1920,80)" to="(1940,80)"/> <wire from="(2000,80)" to="(2020,80)"/> <wire from="(2080,80)" to="(2100,80)"/> <wire from="(1600,80)" to="(1620,80)"/> <wire from="(340,970)" to="(420,970)"/> <wire from="(1680,80)" to="(1700,80)"/> <wire from="(1760,80)" to="(1780,80)"/> <wire from="(1840,80)" to="(1860,80)"/> <wire from="(110,440)" to="(500,440)"/> <wire from="(1360,80)" to="(1380,80)"/> <wire from="(1440,80)" to="(1460,80)"/> <wire from="(1520,80)" to="(1540,80)"/> <wire from="(1120,80)" to="(1140,80)"/> <wire from="(1200,80)" to="(1220,80)"/> <wire from="(1280,80)" to="(1300,80)"/> <wire from="(1980,80)" to="(1980,110)"/> <wire from="(2060,80)" to="(2060,110)"/> <wire from="(1900,80)" to="(1900,110)"/> <wire from="(1740,80)" to="(1740,110)"/> <wire from="(1820,80)" to="(1820,110)"/> <wire from="(1660,80)" to="(1660,110)"/> <wire from="(1500,80)" to="(1500,110)"/> <wire from="(1580,80)" to="(1580,110)"/> <wire from="(250,590)" to="(300,590)"/> <wire from="(1340,80)" to="(1340,110)"/> <wire from="(1420,80)" to="(1420,110)"/> <wire from="(2140,110)" to="(2160,110)"/> <wire from="(1260,80)" to="(1260,110)"/> <wire from="(2220,110)" to="(2240,110)"/> <wire from="(1100,80)" to="(1100,110)"/> <wire from="(1180,80)" to="(1180,110)"/> <wire from="(1020,80)" to="(1020,110)"/> <wire from="(1260,250)" to="(1580,250)"/> <wire from="(400,420)" to="(500,420)"/> <wire from="(280,700)" to="(280,730)"/> <wire from="(380,590)" to="(380,680)"/> <wire from="(1900,250)" to="(2220,250)"/> <wire from="(250,860)" to="(250,950)"/> <wire from="(940,110)" to="(960,110)"/> <wire from="(1020,110)" to="(1040,110)"/> <wire from="(540,670)" to="(560,670)"/> <wire from="(280,970)" to="(300,970)"/> <wire from="(480,930)" to="(500,930)"/> <wire from="(630,670)" to="(660,670)"/> <wire from="(280,910)" to="(560,910)"/> <wire from="(1900,110)" to="(1920,110)"/> <wire from="(1980,110)" to="(2000,110)"/> <wire from="(220,180)" to="(300,180)"/> <wire from="(2060,110)" to="(2080,110)"/> <wire from="(340,700)" to="(420,700)"/> <wire from="(1660,110)" to="(1680,110)"/> <wire from="(1740,110)" to="(1760,110)"/> <wire from="(1820,110)" to="(1840,110)"/> <wire from="(1340,110)" to="(1360,110)"/> <wire from="(1420,110)" to="(1440,110)"/> <wire from="(1500,110)" to="(1520,110)"/> <wire from="(1580,110)" to="(1600,110)"/> <wire from="(170,50)" to="(300,50)"/> <wire from="(1100,110)" to="(1120,110)"/> <wire from="(1180,110)" to="(1200,110)"/> <wire from="(2140,80)" to="(2140,110)"/> <wire from="(1260,110)" to="(1280,110)"/> <wire from="(2220,80)" to="(2220,110)"/> <wire from="(610,810)" to="(790,810)"/> <wire from="(250,240)" to="(300,240)"/> <wire from="(940,220)" to="(1260,220)"/> <wire from="(280,380)" to="(280,460)"/> <wire from="(560,550)" to="(560,580)"/> <wire from="(1580,220)" to="(1900,220)"/> <wire from="(480,660)" to="(480,750)"/> <wire from="(250,590)" to="(250,680)"/> <wire from="(380,860)" to="(420,860)"/> <wire from="(460,860)" to="(500,860)"/> <wire from="(170,180)" to="(200,180)"/> <wire from="(630,240)" to="(630,670)"/> <wire from="(280,380)" to="(300,380)"/> <wire from="(280,700)" to="(300,700)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(480,660)" to="(500,660)"/> <wire from="(280,640)" to="(560,640)"/> <wire from="(110,50)" to="(130,50)"/> <wire from="(380,240)" to="(380,360)"/> <wire from="(2040,80)" to="(2040,110)"/> <wire from="(1880,80)" to="(1880,110)"/> <wire from="(1960,80)" to="(1960,110)"/> <wire from="(1720,80)" to="(1720,110)"/> <wire from="(1800,80)" to="(1800,110)"/> <wire from="(1640,80)" to="(1640,110)"/> <wire from="(1480,80)" to="(1480,110)"/> <wire from="(1560,80)" to="(1560,110)"/> <wire from="(250,770)" to="(300,770)"/> <wire from="(1320,80)" to="(1320,110)"/> <wire from="(1400,80)" to="(1400,110)"/> <wire from="(1240,80)" to="(1240,110)"/> <wire from="(1080,80)" to="(1080,110)"/> <wire from="(1160,80)" to="(1160,110)"/> <wire from="(1000,80)" to="(1000,110)"/> <wire from="(560,310)" to="(560,400)"/> <wire from="(280,880)" to="(280,910)"/> <wire from="(380,770)" to="(380,860)"/> <wire from="(630,830)" to="(630,850)"/> <wire from="(380,590)" to="(420,590)"/> <wire from="(460,590)" to="(500,590)"/> <wire from="(690,680)" to="(710,680)"/> <wire from="(340,170)" to="(360,170)"/> <wire from="(340,880)" to="(420,880)"/> <wire from="(250,240)" to="(250,360)"/> <wire from="(280,320)" to="(480,320)"/> <wire from="(2140,180)" to="(2240,180)"/> <wire from="(2120,80)" to="(2120,110)"/> <wire from="(2200,80)" to="(2200,110)"/> <wire from="(1900,150)" to="(1900,180)"/> <wire from="(1660,150)" to="(1660,180)"/> <wire from="(250,500)" to="(300,500)"/> <wire from="(1420,150)" to="(1420,180)"/> <wire from="(2120,80)" to="(2140,80)"/> <wire from="(2200,80)" to="(2220,80)"/> <wire from="(1180,150)" to="(1180,180)"/> <wire from="(560,730)" to="(560,760)"/> <wire from="(280,610)" to="(280,640)"/> <wire from="(380,240)" to="(420,240)"/> <wire from="(480,840)" to="(480,930)"/> <wire from="(250,770)" to="(250,860)"/> <wire from="(380,500)" to="(380,590)"/> <wire from="(1000,80)" to="(1020,80)"/> <wire from="(540,580)" to="(560,580)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(280,880)" to="(300,880)"/> <wire from="(480,840)" to="(500,840)"/> <wire from="(250,130)" to="(250,240)"/> <wire from="(360,130)" to="(360,170)"/> <wire from="(1880,80)" to="(1900,80)"/> <wire from="(1960,80)" to="(1980,80)"/> <wire from="(2040,80)" to="(2060,80)"/> <wire from="(1640,80)" to="(1660,80)"/> <wire from="(340,610)" to="(420,610)"/> <wire from="(1720,80)" to="(1740,80)"/> <wire from="(1800,80)" to="(1820,80)"/> <wire from="(1320,80)" to="(1340,80)"/> <wire from="(1400,80)" to="(1420,80)"/> <wire from="(1480,80)" to="(1500,80)"/> <wire from="(1560,80)" to="(1580,80)"/> <wire from="(1080,80)" to="(1100,80)"/> <wire from="(1160,80)" to="(1180,80)"/> <wire from="(1240,80)" to="(1260,80)"/> <wire from="(2140,150)" to="(2140,180)"/> <wire from="(170,50)" to="(170,180)"/> <wire from="(2020,80)" to="(2020,110)"/> <wire from="(2100,80)" to="(2100,110)"/> <wire from="(1860,80)" to="(1860,110)"/> <wire from="(1940,80)" to="(1940,110)"/> <wire from="(1780,80)" to="(1780,110)"/> <wire from="(1620,80)" to="(1620,110)"/> <wire from="(1700,80)" to="(1700,110)"/> <wire from="(1460,80)" to="(1460,110)"/> <wire from="(380,100)" to="(380,240)"/> <wire from="(1540,80)" to="(1540,110)"/> <wire from="(250,950)" to="(300,950)"/> <wire from="(1380,80)" to="(1380,110)"/> <wire from="(710,680)" to="(710,1000)"/> <wire from="(1220,80)" to="(1220,110)"/> <wire from="(250,70)" to="(300,70)"/> <wire from="(1300,80)" to="(1300,110)"/> <wire from="(2180,110)" to="(2200,110)"/> <wire from="(1060,80)" to="(1060,110)"/> <wire from="(1140,80)" to="(1140,110)"/> <wire from="(980,80)" to="(980,110)"/> <wire from="(560,460)" to="(560,490)"/> <wire from="(280,100)" to="(380,100)"/> <wire from="(480,570)" to="(480,660)"/> <wire from="(250,500)" to="(250,590)"/> <wire from="(380,770)" to="(420,770)"/> <wire from="(460,770)" to="(500,770)"/> <wire from="(980,110)" to="(1000,110)"/> <wire from="(540,310)" to="(560,310)"/> <wire from="(280,610)" to="(300,610)"/> <wire from="(480,570)" to="(500,570)"/> <wire from="(280,550)" to="(560,550)"/> <wire from="(400,380)" to="(400,420)"/> <wire from="(540,850)" to="(630,850)"/> <wire from="(1860,110)" to="(1880,110)"/> <wire from="(1940,110)" to="(1960,110)"/> <wire from="(2020,110)" to="(2040,110)"/> <wire from="(2100,110)" to="(2120,110)"/> <wire from="(1620,110)" to="(1640,110)"/> <wire from="(340,260)" to="(420,260)"/> <wire from="(1700,110)" to="(1720,110)"/> <wire from="(480,400)" to="(560,400)"/> <wire from="(1780,110)" to="(1800,110)"/> <wire from="(280,100)" to="(280,160)"/> <wire from="(280,260)" to="(280,320)"/> <wire from="(1380,110)" to="(1400,110)"/> <wire from="(1460,110)" to="(1480,110)"/> <wire from="(1540,110)" to="(1560,110)"/> <wire from="(1060,110)" to="(1080,110)"/> <wire from="(1140,110)" to="(1160,110)"/> <wire from="(1220,110)" to="(1240,110)"/> <wire from="(250,70)" to="(250,130)"/> <wire from="(1300,110)" to="(1320,110)"/> <wire from="(2180,80)" to="(2180,110)"/> <wire from="(250,680)" to="(300,680)"/> <wire from="(680,580)" to="(680,650)"/> <wire from="(250,360)" to="(300,360)"/> <wire from="(280,820)" to="(580,820)"/> <wire from="(560,910)" to="(560,940)"/> <wire from="(280,790)" to="(280,820)"/> <wire from="(380,680)" to="(380,770)"/> <wire from="(340,60)" to="(380,60)"/> <wire from="(380,500)" to="(420,500)"/> <wire from="(460,500)" to="(500,500)"/> <wire from="(540,760)" to="(560,760)"/> <wire from="(610,830)" to="(630,830)"/> <wire from="(280,260)" to="(300,260)"/> <wire from="(400,380)" to="(420,380)"/> <wire from="(480,300)" to="(500,300)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(680,580)" to="(750,580)"/> <wire from="(340,790)" to="(420,790)"/> <wire from="(540,430)" to="(670,430)"/> <comp lib="0" loc="(110,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2 CPU"/> </comp> <comp loc="(460,960)" name="D-latch"/> <comp loc="(340,960)" name="D-latch"/> <comp lib="6" loc="(727,557)" name="Text"> <a name="text" val="1 PAL"/> </comp> <comp lib="6" loc="(317,39)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="1" loc="(340,60)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,780)" name="D-latch"/> <comp loc="(340,370)" name="D-latch"/> <comp lib="1" loc="(540,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,510)" name="D-latch"/> <comp loc="(460,780)" name="D-latch"/> <comp loc="(460,600)" name="D-latch"/> <comp lib="1" loc="(220,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(340,600)" name="D-latch"/> <comp lib="1" loc="(150,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(460,690)" name="D-latch"/> <comp lib="6" loc="(732,537)" name="Text"> <a name="text" val="0 NTSC"/> </comp> <comp lib="6" loc="(884,177)" name="Text"> <a name="text" val="PHI0 NTSC"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="1" loc="(340,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,250)" name="D-latch"/> <comp lib="0" loc="(750,580)" name="Constant"> <a name="facing" val="west"/> <a name="value" val="0x0"/> </comp> <comp loc="(460,250)" name="D-latch"/> <comp lib="2" loc="(660,670)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp loc="(460,510)" name="D-latch"/> <comp lib="6" loc="(214,169)" name="Text"> <a name="text" val="INV2"/> </comp> <comp lib="1" loc="(540,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(317,200)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp lib="1" loc="(580,820)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(460,870)" name="D-latch"/> <comp lib="6" loc="(908,111)" name="Text"> <a name="text" val="#CLK"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="1" loc="(540,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,690)" name="D-latch"/> <comp lib="0" loc="(110,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#CLK"/> </comp> <comp loc="(340,870)" name="D-latch"/> <comp lib="1" loc="(540,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(891,248)" name="Text"> <a name="text" val="PHI0 PAL"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="1" loc="(540,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(670,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#M2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,370)" name="D-latch"/> <comp lib="0" loc="(670,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI0 CPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="REGISTER_SELECT"> <a name="circuit" val="REGISTER_SELECT"/> <a name="clabel" val="REGISTER SELECT"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7d1a" height="620" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="75">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="134">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="474">A15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="454">A14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="434">A13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="414">A12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="394">A11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="374">A10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="354">A9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="334">A8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">A7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="294">A6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="274">A5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="254">A4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="234">A3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="214">A2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="195">A1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="174">A0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="75">W4000</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="95">W4001</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="114">W4002</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="134">W4003</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="155">W4004</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="174">W4005</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="194">W4006</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="215">W4007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="235">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="254">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="274">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="295">W400C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="315">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="334">W400F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="354">W4010</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="374">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="394">W4012</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="415">W4013</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="434">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="454">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="474">W4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="494">W4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="554">/R4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="515">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="535">/R4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="574">/R4018</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="594">/R4019</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="614">/R401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="634"> W401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="654">/DBGRD</text> <circ-port height="8" pin="90,490" width="8" x="46" y="66"/> <circ-port height="8" pin="90,530" width="8" x="46" y="126"/> <circ-port height="8" pin="90,570" width="8" x="46" y="466"/> <circ-port height="8" pin="90,600" width="8" x="46" y="446"/> <circ-port height="8" pin="90,630" width="8" x="46" y="426"/> <circ-port height="8" pin="90,660" width="8" x="46" y="406"/> <circ-port height="8" pin="90,690" width="8" x="46" y="386"/> <circ-port height="8" pin="90,720" width="8" x="46" y="366"/> <circ-port height="8" pin="90,750" width="8" x="46" y="346"/> <circ-port height="8" pin="90,780" width="8" x="46" y="326"/> <circ-port height="8" pin="90,810" width="8" x="46" y="306"/> <circ-port height="8" pin="90,840" width="8" x="46" y="286"/> <circ-port height="8" pin="90,870" width="8" x="46" y="266"/> <circ-port height="8" pin="90,900" width="8" x="46" y="246"/> <circ-port height="8" pin="90,930" width="8" x="46" y="226"/> <circ-port height="8" pin="90,960" width="8" x="46" y="206"/> <circ-port height="8" pin="90,990" width="8" x="46" y="186"/> <circ-port height="8" pin="90,1020" width="8" x="46" y="166"/> <circ-port height="10" pin="700,30" width="10" x="205" y="65"/> <circ-port height="10" pin="700,60" width="10" x="205" y="85"/> <circ-port height="10" pin="700,90" width="10" x="205" y="105"/> <circ-port height="10" pin="700,120" width="10" x="205" y="125"/> <circ-port height="10" pin="700,150" width="10" x="205" y="145"/> <circ-port height="10" pin="700,180" width="10" x="205" y="165"/> <circ-port height="10" pin="700,210" width="10" x="205" y="185"/> <circ-port height="10" pin="700,240" width="10" x="205" y="205"/> <circ-port height="10" pin="700,270" width="10" x="205" y="225"/> <circ-port height="10" pin="700,300" width="10" x="205" y="245"/> <circ-port height="10" pin="700,330" width="10" x="205" y="265"/> <circ-port height="10" pin="700,360" width="10" x="205" y="285"/> <circ-port height="10" pin="700,390" width="10" x="205" y="305"/> <circ-port height="10" pin="700,420" width="10" x="205" y="325"/> <circ-port height="10" pin="700,450" width="10" x="205" y="345"/> <circ-port height="10" pin="700,480" width="10" x="205" y="365"/> <circ-port height="10" pin="700,510" width="10" x="205" y="385"/> <circ-port height="10" pin="700,540" width="10" x="205" y="405"/> <circ-port height="10" pin="700,570" width="10" x="205" y="425"/> <circ-port height="10" pin="700,600" width="10" x="205" y="445"/> <circ-port height="10" pin="700,630" width="10" x="205" y="465"/> <circ-port height="10" pin="700,660" width="10" x="205" y="485"/> <circ-port height="10" pin="700,990" width="10" x="205" y="505"/> <circ-port height="10" pin="700,1040" width="10" x="205" y="525"/> <circ-port height="10" pin="700,1090" width="10" x="205" y="545"/> <circ-port height="10" pin="700,1140" width="10" x="205" y="565"/> <circ-port height="10" pin="700,1190" width="10" x="205" y="585"/> <circ-port height="10" pin="700,1240" width="10" x="205" y="605"/> <circ-port height="10" pin="700,690" width="10" x="205" y="625"/> <circ-port height="8" pin="90,1250" width="8" x="46" y="96"/> <circ-port height="10" pin="700,1300" width="10" x="205" y="645"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(580,120)" to="(700,120)"/> <wire from="(650,690)" to="(700,690)"/> <wire from="(650,330)" to="(700,330)"/> <wire from="(650,1090)" to="(700,1090)"/> <wire from="(600,180)" to="(600,320)"/> <wire from="(140,730)" to="(200,730)"/> <wire from="(350,490)" to="(350,630)"/> <wire from="(560,990)" to="(620,990)"/> <wire from="(560,1230)" to="(620,1230)"/> <wire from="(90,690)" to="(140,690)"/> <wire from="(170,760)" to="(170,840)"/> <wire from="(170,600)" to="(170,680)"/> <wire from="(660,1190)" to="(700,1190)"/> <wire from="(90,720)" to="(200,720)"/> <wire from="(510,830)" to="(510,860)"/> <wire from="(580,1100)" to="(580,1130)"/> <wire from="(560,990)" to="(560,1070)"/> <wire from="(150,960)" to="(380,960)"/> <wire from="(90,1020)" to="(130,1020)"/> <wire from="(90,900)" to="(130,900)"/> <wire from="(400,640)" to="(500,640)"/> <wire from="(160,690)" to="(200,690)"/> <wire from="(670,430)" to="(670,450)"/> <wire from="(670,390)" to="(670,410)"/> <wire from="(140,600)" to="(170,600)"/> <wire from="(550,30)" to="(700,30)"/> <wire from="(600,1150)" to="(620,1150)"/> <wire from="(180,570)" to="(180,670)"/> <wire from="(180,770)" to="(180,870)"/> <wire from="(670,450)" to="(700,450)"/> <wire from="(600,500)" to="(600,660)"/> <wire from="(530,1070)" to="(560,1070)"/> <wire from="(530,340)" to="(620,340)"/> <wire from="(180,770)" to="(200,770)"/> <wire from="(530,320)" to="(600,320)"/> <wire from="(350,630)" to="(360,630)"/> <wire from="(530,390)" to="(660,390)"/> <wire from="(650,450)" to="(650,510)"/> <wire from="(650,330)" to="(650,380)"/> <wire from="(620,240)" to="(700,240)"/> <wire from="(620,600)" to="(700,600)"/> <wire from="(350,800)" to="(350,1310)"/> <wire from="(600,1200)" to="(600,1250)"/> <wire from="(580,120)" to="(580,300)"/> <wire from="(530,300)" to="(580,300)"/> <wire from="(530,1100)" to="(580,1100)"/> <wire from="(570,1180)" to="(620,1180)"/> <wire from="(600,700)" to="(600,1150)"/> <wire from="(560,680)" to="(620,680)"/> <wire from="(530,1110)" to="(570,1110)"/> <wire from="(580,1040)" to="(620,1040)"/> <wire from="(660,1240)" to="(700,1240)"/> <wire from="(660,480)" to="(700,480)"/> <wire from="(660,360)" to="(700,360)"/> <wire from="(560,60)" to="(560,280)"/> <wire from="(630,270)" to="(630,350)"/> <wire from="(530,370)" to="(640,370)"/> <wire from="(510,1310)" to="(620,1310)"/> <wire from="(590,150)" to="(700,150)"/> <wire from="(170,680)" to="(200,680)"/> <wire from="(170,760)" to="(200,760)"/> <wire from="(600,1250)" to="(600,1290)"/> <wire from="(90,600)" to="(120,600)"/> <wire from="(600,1200)" to="(620,1200)"/> <wire from="(90,870)" to="(180,870)"/> <wire from="(560,1120)" to="(560,1230)"/> <wire from="(280,720)" to="(300,720)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(130,980)" to="(130,1020)"/> <wire from="(530,280)" to="(560,280)"/> <wire from="(530,1120)" to="(560,1120)"/> <wire from="(130,900)" to="(130,940)"/> <wire from="(630,470)" to="(630,570)"/> <wire from="(90,930)" to="(110,930)"/> <wire from="(110,950)" to="(130,950)"/> <wire from="(610,630)" to="(700,630)"/> <wire from="(350,800)" to="(500,800)"/> <wire from="(610,210)" to="(610,330)"/> <wire from="(90,840)" to="(170,840)"/> <wire from="(630,270)" to="(700,270)"/> <wire from="(500,590)" to="(500,640)"/> <wire from="(530,440)" to="(660,440)"/> <wire from="(90,810)" to="(160,810)"/> <wire from="(560,60)" to="(700,60)"/> <wire from="(530,430)" to="(670,430)"/> <wire from="(90,490)" to="(350,490)"/> <wire from="(530,450)" to="(650,450)"/> <wire from="(650,510)" to="(700,510)"/> <wire from="(650,990)" to="(700,990)"/> <wire from="(610,490)" to="(610,630)"/> <wire from="(90,780)" to="(150,780)"/> <wire from="(90,660)" to="(150,660)"/> <wire from="(140,710)" to="(200,710)"/> <wire from="(90,750)" to="(140,750)"/> <wire from="(580,1130)" to="(620,1130)"/> <wire from="(660,360)" to="(660,390)"/> <wire from="(530,470)" to="(630,470)"/> <wire from="(530,350)" to="(630,350)"/> <wire from="(600,660)" to="(700,660)"/> <wire from="(600,180)" to="(700,180)"/> <wire from="(110,970)" to="(110,990)"/> <wire from="(110,930)" to="(110,950)"/> <wire from="(90,960)" to="(130,960)"/> <wire from="(530,460)" to="(640,460)"/> <wire from="(160,750)" to="(200,750)"/> <wire from="(580,1040)" to="(580,1080)"/> <wire from="(660,440)" to="(660,480)"/> <wire from="(600,1250)" to="(620,1250)"/> <wire from="(600,1290)" to="(620,1290)"/> <wire from="(670,390)" to="(700,390)"/> <wire from="(590,150)" to="(590,310)"/> <wire from="(530,530)" to="(560,530)"/> <wire from="(530,480)" to="(620,480)"/> <wire from="(180,670)" to="(200,670)"/> <wire from="(530,500)" to="(600,500)"/> <wire from="(570,90)" to="(700,90)"/> <wire from="(530,330)" to="(610,330)"/> <wire from="(530,490)" to="(610,490)"/> <wire from="(350,650)" to="(350,710)"/> <wire from="(500,800)" to="(500,860)"/> <wire from="(530,380)" to="(650,380)"/> <wire from="(570,90)" to="(570,290)"/> <wire from="(90,1250)" to="(600,1250)"/> <wire from="(350,730)" to="(350,800)"/> <wire from="(650,1040)" to="(700,1040)"/> <wire from="(380,830)" to="(380,960)"/> <wire from="(530,1080)" to="(580,1080)"/> <wire from="(150,700)" to="(200,700)"/> <wire from="(530,310)" to="(590,310)"/> <wire from="(150,740)" to="(200,740)"/> <wire from="(640,540)" to="(700,540)"/> <wire from="(640,300)" to="(700,300)"/> <wire from="(570,1110)" to="(570,1180)"/> <wire from="(640,300)" to="(640,370)"/> <wire from="(530,290)" to="(570,290)"/> <wire from="(660,1140)" to="(700,1140)"/> <wire from="(660,1300)" to="(700,1300)"/> <wire from="(140,730)" to="(140,750)"/> <wire from="(140,690)" to="(140,710)"/> <wire from="(640,460)" to="(640,540)"/> <wire from="(90,530)" to="(320,530)"/> <wire from="(560,530)" to="(560,680)"/> <wire from="(530,420)" to="(700,420)"/> <wire from="(530,270)" to="(550,270)"/> <wire from="(600,700)" to="(620,700)"/> <wire from="(90,570)" to="(180,570)"/> <wire from="(330,710)" to="(350,710)"/> <wire from="(350,650)" to="(370,650)"/> <wire from="(150,740)" to="(150,780)"/> <wire from="(150,660)" to="(150,700)"/> <wire from="(620,240)" to="(620,340)"/> <wire from="(90,990)" to="(110,990)"/> <wire from="(110,970)" to="(130,970)"/> <wire from="(530,1090)" to="(620,1090)"/> <wire from="(610,210)" to="(700,210)"/> <wire from="(320,530)" to="(320,700)"/> <wire from="(620,480)" to="(620,600)"/> <wire from="(350,1310)" to="(490,1310)"/> <wire from="(630,570)" to="(700,570)"/> <wire from="(550,30)" to="(550,270)"/> <wire from="(380,830)" to="(510,830)"/> <wire from="(510,590)" to="(510,830)"/> <wire from="(90,630)" to="(160,630)"/> <wire from="(600,1150)" to="(600,1200)"/> <wire from="(530,410)" to="(670,410)"/> <wire from="(160,750)" to="(160,810)"/> <wire from="(160,630)" to="(160,690)"/> <comp lib="0" loc="(700,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400A"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4002"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A14"/> </comp> <comp lib="2" loc="(510,590)" name="Decoder"> <a name="select" val="5"/> <a name="disabled" val="0"/> </comp> <comp lib="1" loc="(660,1140)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(660,1240)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(140,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400E"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A4"/> </comp> <comp lib="0" loc="(700,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4003"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,690)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(510,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A9"/> </comp> <comp lib="0" loc="(700,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400F"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4016"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,1040)" name="NOT Gate"/> <comp lib="0" loc="(700,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4017"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A2"/> </comp> <comp lib="2" loc="(510,860)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="5"/> <a name="disabled" val="0"/> </comp> <comp lib="6" loc="(451,654)" name="Text"> <a name="text" val="REGWR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A11"/> </comp> <comp lib="1" loc="(280,720)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="11"/> </comp> <comp lib="0" loc="(700,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4011"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4001"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4005"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(700,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4010"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A6"/> </comp> <comp lib="0" loc="(700,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4014"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A13"/> </comp> <comp lib="2" loc="(300,720)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(700,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400B"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A0"/> </comp> <comp lib="0" loc="(90,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A8"/> </comp> <comp lib="1" loc="(650,990)" name="NOT Gate"/> <comp lib="0" loc="(700,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4006"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4004"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4015"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/DBGRD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4015"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4012"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W401A"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4008"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(660,1190)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4016"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(660,1300)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A15"/> </comp> <comp lib="0" loc="(90,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A7"/> </comp> <comp lib="0" loc="(700,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4018"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4000"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A12"/> </comp> <comp lib="0" loc="(90,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A5"/> </comp> <comp lib="1" loc="(650,1090)" name="NOT Gate"/> <comp lib="0" loc="(700,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4019"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(451,794)" name="Text"> <a name="text" val="Enable read ports"/> </comp> <comp lib="6" loc="(452,782)" name="Text"> <a name="text" val="REGRD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R401A"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,960)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> </comp> <comp lib="0" loc="(700,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4007"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A10"/> </comp> <comp lib="0" loc="(700,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4017"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(449,669)" name="Text"> <a name="text" val="Enable write ports"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A3"/> </comp> <comp lib="0" loc="(700,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400C"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A1"/> </comp> <comp lib="0" loc="(700,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4013"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(400,640)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> </circuit> <circuit name="ENVELOPE_GENERATOR"> <a name="circuit" val="ENVELOPE_GENERATOR"/> <a name="clabel" val="ENVELOPE GENERATOR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M71,51 Q75,61 79,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#c2ff58" height="280" stroke="#000000" stroke-width="2" width="200" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="134">W400(0) 4, C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="154">W400(3) 7, F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="234">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="314">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="274">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="84">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="143">V1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="204">V2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="264">V3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="221" y="314">#CH/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="114">CH IN</text> <circ-port height="8" pin="120,70" width="8" x="46" y="66"/> <circ-port height="8" pin="120,210" width="8" x="46" y="126"/> <circ-port height="8" pin="120,1090" width="8" x="46" y="146"/> <circ-port height="8" pin="120,290" width="8" x="46" y="176"/> <circ-port height="8" pin="120,470" width="8" x="46" y="186"/> <circ-port height="8" pin="120,650" width="8" x="46" y="196"/> <circ-port height="8" pin="120,830" width="8" x="46" y="206"/> <circ-port height="8" pin="120,890" width="8" x="46" y="216"/> <circ-port height="8" pin="120,950" width="8" x="46" y="226"/> <circ-port height="8" pin="120,1220" width="8" x="46" y="306"/> <circ-port height="8" pin="120,110" width="8" x="46" y="266"/> <circ-port height="10" pin="1280,970" width="10" x="245" y="75"/> <circ-port height="10" pin="1280,1050" width="10" x="245" y="135"/> <circ-port height="10" pin="1280,1130" width="10" x="245" y="195"/> <circ-port height="10" pin="1280,1210" width="10" x="245" y="255"/> <circ-port height="10" pin="1230,2250" width="10" x="245" y="305"/> <circ-port height="8" pin="120,2280" width="8" x="46" y="106"/> <circ-port height="10" pin="380,150" width="10" x="245" y="85"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(240,950)" to="(300,950)"/> <wire from="(760,1160)" to="(810,1160)"/> <wire from="(750,1950)" to="(800,1950)"/> <wire from="(240,630)" to="(300,630)"/> <wire from="(670,1340)" to="(670,1410)"/> <wire from="(660,690)" to="(660,760)"/> <wire from="(640,510)" to="(640,600)"/> <wire from="(660,660)" to="(660,690)"/> <wire from="(660,660)" to="(760,660)"/> <wire from="(580,1700)" to="(580,1730)"/> <wire from="(950,810)" to="(950,1210)"/> <wire from="(470,400)" to="(510,400)"/> <wire from="(580,950)" to="(860,950)"/> <wire from="(950,2020)" to="(970,2020)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(490,1560)" to="(510,1560)"/> <wire from="(860,700)" to="(860,740)"/> <wire from="(780,1930)" to="(780,2030)"/> <wire from="(360,150)" to="(380,150)"/> <wire from="(420,1760)" to="(420,1930)"/> <wire from="(180,450)" to="(200,450)"/> <wire from="(180,930)" to="(200,930)"/> <wire from="(260,320)" to="(260,500)"/> <wire from="(540,570)" to="(610,570)"/> <wire from="(120,210)" to="(260,210)"/> <wire from="(600,1880)" to="(600,1940)"/> <wire from="(660,980)" to="(660,1040)"/> <wire from="(670,1790)" to="(670,1850)"/> <wire from="(420,2220)" to="(1140,2220)"/> <wire from="(650,1290)" to="(650,1340)"/> <wire from="(670,1750)" to="(680,1750)"/> <wire from="(850,1190)" to="(930,1190)"/> <wire from="(700,1940)" to="(710,1940)"/> <wire from="(570,530)" to="(580,530)"/> <wire from="(1260,1210)" to="(1280,1210)"/> <wire from="(1260,1050)" to="(1280,1050)"/> <wire from="(280,160)" to="(340,160)"/> <wire from="(350,2100)" to="(990,2100)"/> <wire from="(240,450)" to="(290,450)"/> <wire from="(470,420)" to="(590,420)"/> <wire from="(670,1850)" to="(710,1850)"/> <wire from="(460,430)" to="(460,450)"/> <wire from="(620,1710)" to="(620,1740)"/> <wire from="(570,740)" to="(860,740)"/> <wire from="(1010,2020)" to="(1060,2020)"/> <wire from="(780,1500)" to="(800,1500)"/> <wire from="(580,1560)" to="(860,1560)"/> <wire from="(630,1510)" to="(650,1510)"/> <wire from="(670,1450)" to="(760,1450)"/> <wire from="(460,1610)" to="(460,1780)"/> <wire from="(790,1080)" to="(790,1140)"/> <wire from="(490,200)" to="(490,380)"/> <wire from="(240,870)" to="(320,870)"/> <wire from="(590,720)" to="(590,780)"/> <wire from="(600,1370)" to="(600,1430)"/> <wire from="(700,1010)" to="(780,1010)"/> <wire from="(700,1750)" to="(710,1750)"/> <wire from="(280,270)" to="(460,270)"/> <wire from="(1100,2090)" to="(1140,2090)"/> <wire from="(660,150)" to="(660,220)"/> <wire from="(760,410)" to="(760,480)"/> <wire from="(660,690)" to="(700,690)"/> <wire from="(670,1340)" to="(710,1340)"/> <wire from="(290,450)" to="(460,450)"/> <wire from="(420,770)" to="(420,980)"/> <wire from="(570,350)" to="(570,380)"/> <wire from="(220,960)" to="(220,980)"/> <wire from="(220,480)" to="(220,500)"/> <wire from="(380,1190)" to="(380,2050)"/> <wire from="(240,270)" to="(280,270)"/> <wire from="(840,1690)" to="(860,1690)"/> <wire from="(560,2160)" to="(1160,2160)"/> <wire from="(560,1680)" to="(560,1850)"/> <wire from="(300,630)" to="(460,630)"/> <wire from="(860,160)" to="(860,200)"/> <wire from="(620,510)" to="(640,510)"/> <wire from="(310,190)" to="(340,190)"/> <wire from="(420,1590)" to="(440,1590)"/> <wire from="(490,380)" to="(510,380)"/> <wire from="(180,870)" to="(200,870)"/> <wire from="(700,1950)" to="(700,2050)"/> <wire from="(310,810)" to="(460,810)"/> <wire from="(630,1870)" to="(710,1870)"/> <wire from="(850,1070)" to="(860,1070)"/> <wire from="(660,400)" to="(670,400)"/> <wire from="(780,140)" to="(780,320)"/> <wire from="(1200,1140)" to="(1200,1220)"/> <wire from="(1200,980)" to="(1200,1060)"/> <wire from="(750,1860)" to="(800,1860)"/> <wire from="(780,680)" to="(780,1010)"/> <wire from="(850,1150)" to="(910,1150)"/> <wire from="(120,2280)" to="(1200,2280)"/> <wire from="(640,780)" to="(700,780)"/> <wire from="(650,1430)" to="(710,1430)"/> <wire from="(1050,1030)" to="(1110,1030)"/> <wire from="(570,200)" to="(860,200)"/> <wire from="(780,1840)" to="(780,1930)"/> <wire from="(610,360)" to="(610,390)"/> <wire from="(700,2050)" to="(800,2050)"/> <wire from="(490,110)" to="(490,200)"/> <wire from="(870,1930)" to="(870,2010)"/> <wire from="(470,1750)" to="(510,1750)"/> <wire from="(840,700)" to="(860,700)"/> <wire from="(640,980)" to="(660,980)"/> <wire from="(780,320)" to="(800,320)"/> <wire from="(560,1850)" to="(590,1850)"/> <wire from="(420,230)" to="(420,410)"/> <wire from="(590,180)" to="(590,240)"/> <wire from="(180,630)" to="(180,810)"/> <wire from="(540,1910)" to="(620,1910)"/> <wire from="(470,1600)" to="(600,1600)"/> <wire from="(620,710)" to="(700,710)"/> <wire from="(630,1360)" to="(710,1360)"/> <wire from="(750,1420)" to="(760,1420)"/> <wire from="(970,1130)" to="(1110,1130)"/> <wire from="(690,400)" to="(700,400)"/> <wire from="(1200,1220)" to="(1220,1220)"/> <wire from="(1200,1060)" to="(1220,1060)"/> <wire from="(750,1350)" to="(800,1350)"/> <wire from="(120,70)" to="(180,70)"/> <wire from="(220,900)" to="(220,910)"/> <wire from="(350,1260)" to="(350,2100)"/> <wire from="(650,1680)" to="(650,1770)"/> <wire from="(560,1170)" to="(600,1170)"/> <wire from="(660,150)" to="(700,150)"/> <wire from="(760,1760)" to="(760,1790)"/> <wire from="(1120,870)" to="(1120,940)"/> <wire from="(560,690)" to="(560,900)"/> <wire from="(470,760)" to="(510,760)"/> <wire from="(650,1810)" to="(650,1850)"/> <wire from="(490,1390)" to="(490,1560)"/> <wire from="(240,930)" to="(330,930)"/> <wire from="(860,1860)" to="(860,1900)"/> <wire from="(740,410)" to="(760,410)"/> <wire from="(420,410)" to="(440,410)"/> <wire from="(560,1340)" to="(590,1340)"/> <wire from="(260,680)" to="(260,850)"/> <wire from="(180,810)" to="(200,810)"/> <wire from="(840,2030)" to="(910,2030)"/> <wire from="(540,1400)" to="(620,1400)"/> <wire from="(640,1180)" to="(720,1180)"/> <wire from="(700,1240)" to="(780,1240)"/> <wire from="(580,1700)" to="(590,1700)"/> <wire from="(670,1080)" to="(720,1080)"/> <wire from="(1180,960)" to="(1220,960)"/> <wire from="(1180,1120)" to="(1220,1120)"/> <wire from="(670,1510)" to="(670,1580)"/> <wire from="(640,240)" to="(700,240)"/> <wire from="(740,340)" to="(800,340)"/> <wire from="(470,780)" to="(590,780)"/> <wire from="(1160,2030)" to="(1160,2160)"/> <wire from="(460,790)" to="(460,810)"/> <wire from="(870,1930)" to="(910,1930)"/> <wire from="(580,1870)" to="(580,1900)"/> <wire from="(220,320)" to="(260,320)"/> <wire from="(670,1320)" to="(670,1340)"/> <wire from="(840,160)" to="(860,160)"/> <wire from="(490,1730)" to="(510,1730)"/> <wire from="(860,1350)" to="(860,1390)"/> <wire from="(780,1330)" to="(780,1500)"/> <wire from="(280,160)" to="(280,270)"/> <wire from="(930,900)" to="(930,1190)"/> <wire from="(860,770)" to="(860,930)"/> <wire from="(700,1060)" to="(700,1160)"/> <wire from="(120,470)" to="(200,470)"/> <wire from="(120,950)" to="(200,950)"/> <wire from="(1030,2100)" to="(1060,2100)"/> <wire from="(490,560)" to="(490,740)"/> <wire from="(620,170)" to="(700,170)"/> <wire from="(560,150)" to="(560,330)"/> <wire from="(700,1950)" to="(710,1950)"/> <wire from="(260,910)" to="(260,980)"/> <wire from="(220,840)" to="(220,850)"/> <wire from="(660,510)" to="(660,580)"/> <wire from="(640,330)" to="(640,420)"/> <wire from="(620,1880)" to="(620,1910)"/> <wire from="(660,480)" to="(660,510)"/> <wire from="(350,1260)" to="(910,1260)"/> <wire from="(660,480)" to="(760,480)"/> <wire from="(570,710)" to="(570,740)"/> <wire from="(580,1040)" to="(580,1070)"/> <wire from="(580,1360)" to="(580,1390)"/> <wire from="(470,220)" to="(510,220)"/> <wire from="(790,1200)" to="(810,1200)"/> <wire from="(780,1670)" to="(800,1670)"/> <wire from="(580,1730)" to="(860,1730)"/> <wire from="(890,1950)" to="(890,2250)"/> <wire from="(970,2020)" to="(990,2020)"/> <wire from="(560,330)" to="(580,330)"/> <wire from="(580,990)" to="(600,990)"/> <wire from="(860,520)" to="(860,560)"/> <wire from="(320,870)" to="(1120,870)"/> <wire from="(630,1680)" to="(650,1680)"/> <wire from="(970,2080)" to="(1060,2080)"/> <wire from="(490,740)" to="(510,740)"/> <wire from="(670,1620)" to="(760,1620)"/> <wire from="(420,1420)" to="(420,1590)"/> <wire from="(460,1780)" to="(460,1950)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(540,390)" to="(610,390)"/> <wire from="(600,1540)" to="(600,1600)"/> <wire from="(670,1450)" to="(670,1510)"/> <wire from="(780,500)" to="(780,680)"/> <wire from="(670,1410)" to="(680,1410)"/> <wire from="(660,760)" to="(670,760)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(1120,940)" to="(1120,1020)"/> <wire from="(1120,1100)" to="(1120,1180)"/> <wire from="(1070,1110)" to="(1110,1110)"/> <wire from="(490,740)" to="(490,1390)"/> <wire from="(470,240)" to="(590,240)"/> <wire from="(670,1510)" to="(710,1510)"/> <wire from="(460,250)" to="(460,270)"/> <wire from="(620,1370)" to="(620,1400)"/> <wire from="(780,1240)" to="(780,1330)"/> <wire from="(570,560)" to="(860,560)"/> <wire from="(610,720)" to="(610,750)"/> <wire from="(700,1160)" to="(700,1240)"/> <wire from="(300,180)" to="(340,180)"/> <wire from="(660,130)" to="(660,150)"/> <wire from="(780,680)" to="(800,680)"/> <wire from="(840,1860)" to="(860,1860)"/> <wire from="(420,1930)" to="(420,2220)"/> <wire from="(420,1760)" to="(440,1760)"/> <wire from="(180,160)" to="(180,270)"/> <wire from="(580,1020)" to="(670,1020)"/> <wire from="(120,890)" to="(200,890)"/> <wire from="(420,590)" to="(420,770)"/> <wire from="(1030,2040)" to="(1060,2040)"/> <wire from="(590,540)" to="(590,600)"/> <wire from="(260,850)" to="(260,910)"/> <wire from="(690,760)" to="(700,760)"/> <wire from="(700,1410)" to="(710,1410)"/> <wire from="(1140,1040)" to="(1160,1040)"/> <wire from="(1140,1200)" to="(1160,1200)"/> <wire from="(990,1050)" to="(1110,1050)"/> <wire from="(760,230)" to="(760,300)"/> <wire from="(650,1600)" to="(710,1600)"/> <wire from="(650,1290)" to="(1030,1290)"/> <wire from="(470,1920)" to="(510,1920)"/> <wire from="(660,510)" to="(700,510)"/> <wire from="(570,170)" to="(570,200)"/> <wire from="(220,300)" to="(220,320)"/> <wire from="(290,170)" to="(290,450)"/> <wire from="(790,1140)" to="(810,1140)"/> <wire from="(780,1930)" to="(800,1930)"/> <wire from="(840,1350)" to="(860,1350)"/> <wire from="(560,1340)" to="(560,1510)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(420,770)" to="(440,770)"/> <wire from="(260,210)" to="(260,320)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(1010,270)" to="(1010,970)"/> <wire from="(330,210)" to="(340,210)"/> <wire from="(470,1770)" to="(600,1770)"/> <wire from="(630,1530)" to="(710,1530)"/> <wire from="(750,1590)" to="(760,1590)"/> <wire from="(660,220)" to="(670,220)"/> <wire from="(1260,1130)" to="(1280,1130)"/> <wire from="(1260,970)" to="(1280,970)"/> <wire from="(650,1810)" to="(1090,1810)"/> <wire from="(750,1520)" to="(800,1520)"/> <wire from="(740,770)" to="(860,770)"/> <wire from="(640,600)" to="(700,600)"/> <wire from="(740,700)" to="(800,700)"/> <wire from="(300,950)" to="(300,2250)"/> <wire from="(610,180)" to="(610,210)"/> <wire from="(220,680)" to="(260,680)"/> <wire from="(580,950)" to="(580,970)"/> <wire from="(470,1410)" to="(510,1410)"/> <wire from="(840,520)" to="(860,520)"/> <wire from="(910,1150)" to="(910,1260)"/> <wire from="(490,1560)" to="(490,1730)"/> <wire from="(650,1850)" to="(650,1960)"/> <wire from="(780,140)" to="(800,140)"/> <wire from="(560,1510)" to="(590,1510)"/> <wire from="(1030,2040)" to="(1030,2100)"/> <wire from="(120,830)" to="(200,830)"/> <wire from="(180,450)" to="(180,630)"/> <wire from="(540,1570)" to="(620,1570)"/> <wire from="(620,530)" to="(700,530)"/> <wire from="(690,220)" to="(700,220)"/> <wire from="(560,510)" to="(560,690)"/> <wire from="(180,870)" to="(180,930)"/> <wire from="(580,1870)" to="(590,1870)"/> <wire from="(560,1850)" to="(560,2160)"/> <wire from="(760,1180)" to="(810,1180)"/> <wire from="(180,70)" to="(180,140)"/> <wire from="(670,1680)" to="(670,1750)"/> <wire from="(650,1340)" to="(650,1430)"/> <wire from="(640,690)" to="(640,780)"/> <wire from="(760,1420)" to="(760,1450)"/> <wire from="(650,1640)" to="(1070,1640)"/> <wire from="(560,930)" to="(860,930)"/> <wire from="(470,580)" to="(510,580)"/> <wire from="(790,1080)" to="(810,1080)"/> <wire from="(120,1220)" to="(790,1220)"/> <wire from="(780,2030)" to="(800,2030)"/> <wire from="(650,1470)" to="(650,1510)"/> <wire from="(560,690)" to="(580,690)"/> <wire from="(490,1900)" to="(510,1900)"/> <wire from="(860,1520)" to="(860,1560)"/> <wire from="(780,1500)" to="(780,1670)"/> <wire from="(740,230)" to="(760,230)"/> <wire from="(640,1080)" to="(670,1080)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(180,630)" to="(200,630)"/> <wire from="(260,500)" to="(260,680)"/> <wire from="(540,750)" to="(610,750)"/> <wire from="(1200,1220)" to="(1200,2280)"/> <wire from="(1010,2100)" to="(1030,2100)"/> <wire from="(380,1040)" to="(580,1040)"/> <wire from="(570,710)" to="(580,710)"/> <wire from="(580,1360)" to="(590,1360)"/> <wire from="(1200,1060)" to="(1200,1140)"/> <wire from="(300,180)" to="(300,630)"/> <wire from="(740,160)" to="(800,160)"/> <wire from="(470,600)" to="(590,600)"/> <wire from="(460,610)" to="(460,630)"/> <wire from="(990,450)" to="(990,1050)"/> <wire from="(580,1530)" to="(580,1560)"/> <wire from="(460,270)" to="(1010,270)"/> <wire from="(780,1840)" to="(800,1840)"/> <wire from="(580,1900)" to="(860,1900)"/> <wire from="(890,1950)" to="(910,1950)"/> <wire from="(490,1390)" to="(510,1390)"/> <wire from="(630,1850)" to="(650,1850)"/> <wire from="(460,450)" to="(990,450)"/> <wire from="(180,70)" to="(780,70)"/> <wire from="(670,1790)" to="(760,1790)"/> <wire from="(420,1590)" to="(420,1760)"/> <wire from="(120,290)" to="(200,290)"/> <wire from="(490,380)" to="(490,560)"/> <wire from="(600,1710)" to="(600,1770)"/> <wire from="(670,1620)" to="(670,1680)"/> <wire from="(700,1010)" to="(700,1060)"/> <wire from="(650,1470)" to="(1050,1470)"/> <wire from="(670,1580)" to="(680,1580)"/> <wire from="(1090,1190)" to="(1090,1810)"/> <wire from="(1090,1190)" to="(1110,1190)"/> <wire from="(1200,1140)" to="(1220,1140)"/> <wire from="(1200,980)" to="(1220,980)"/> <wire from="(180,810)" to="(180,870)"/> <wire from="(1070,1110)" to="(1070,1640)"/> <wire from="(460,630)" to="(970,630)"/> <wire from="(290,170)" to="(340,170)"/> <wire from="(660,330)" to="(660,400)"/> <wire from="(760,590)" to="(760,660)"/> <wire from="(650,1960)" to="(710,1960)"/> <wire from="(380,1040)" to="(380,1190)"/> <wire from="(460,810)" to="(950,810)"/> <wire from="(670,1680)" to="(710,1680)"/> <wire from="(640,150)" to="(640,240)"/> <wire from="(1010,970)" to="(1110,970)"/> <wire from="(620,1540)" to="(620,1570)"/> <wire from="(660,300)" to="(660,330)"/> <wire from="(660,300)" to="(760,300)"/> <wire from="(570,530)" to="(570,560)"/> <wire from="(220,660)" to="(220,680)"/> <wire from="(220,910)" to="(260,910)"/> <wire from="(780,1330)" to="(800,1330)"/> <wire from="(580,1390)" to="(860,1390)"/> <wire from="(890,2250)" to="(1230,2250)"/> <wire from="(560,150)" to="(580,150)"/> <wire from="(580,970)" to="(600,970)"/> <wire from="(860,340)" to="(860,380)"/> <wire from="(620,690)" to="(640,690)"/> <wire from="(630,1340)" to="(650,1340)"/> <wire from="(1050,1030)" to="(1050,1470)"/> <wire from="(420,1930)" to="(440,1930)"/> <wire from="(490,560)" to="(510,560)"/> <wire from="(460,1440)" to="(460,1610)"/> <wire from="(540,210)" to="(610,210)"/> <wire from="(460,1950)" to="(460,2190)"/> <wire from="(300,2250)" to="(890,2250)"/> <wire from="(560,930)" to="(560,1170)"/> <wire from="(580,1040)" to="(660,1040)"/> <wire from="(660,580)" to="(670,580)"/> <wire from="(700,1580)" to="(710,1580)"/> <wire from="(570,170)" to="(580,170)"/> <wire from="(780,320)" to="(780,500)"/> <wire from="(350,980)" to="(420,980)"/> <wire from="(1030,950)" to="(1030,1290)"/> <wire from="(560,900)" to="(930,900)"/> <wire from="(1180,1040)" to="(1220,1040)"/> <wire from="(1180,1200)" to="(1220,1200)"/> <wire from="(650,1770)" to="(710,1770)"/> <wire from="(1140,2090)" to="(1140,2220)"/> <wire from="(570,380)" to="(860,380)"/> <wire from="(870,2010)" to="(910,2010)"/> <wire from="(580,990)" to="(580,1020)"/> <wire from="(610,540)" to="(610,570)"/> <wire from="(790,1200)" to="(790,1220)"/> <wire from="(780,500)" to="(800,500)"/> <wire from="(840,1520)" to="(860,1520)"/> <wire from="(120,1090)" to="(600,1090)"/> <wire from="(560,1510)" to="(560,1680)"/> <wire from="(700,1060)" to="(720,1060)"/> <wire from="(310,190)" to="(310,810)"/> <wire from="(320,200)" to="(340,200)"/> <wire from="(420,1420)" to="(440,1420)"/> <wire from="(420,410)" to="(420,590)"/> <wire from="(970,2020)" to="(970,2080)"/> <wire from="(590,360)" to="(590,420)"/> <wire from="(470,1940)" to="(600,1940)"/> <wire from="(460,2190)" to="(1180,2190)"/> <wire from="(630,1700)" to="(710,1700)"/> <wire from="(970,630)" to="(970,1130)"/> <wire from="(750,1760)" to="(760,1760)"/> <wire from="(690,580)" to="(700,580)"/> <wire from="(760,1060)" to="(810,1060)"/> <wire from="(750,1690)" to="(800,1690)"/> <wire from="(380,2050)" to="(700,2050)"/> <wire from="(120,110)" to="(490,110)"/> <wire from="(780,70)" to="(780,140)"/> <wire from="(660,330)" to="(700,330)"/> <wire from="(1100,2030)" to="(1160,2030)"/> <wire from="(950,1940)" to="(1180,1940)"/> <wire from="(320,200)" to="(320,870)"/> <wire from="(220,850)" to="(260,850)"/> <wire from="(470,1580)" to="(510,1580)"/> <wire from="(1030,950)" to="(1110,950)"/> <wire from="(490,1730)" to="(490,1900)"/> <wire from="(580,1070)" to="(600,1070)"/> <wire from="(620,150)" to="(640,150)"/> <wire from="(740,590)" to="(760,590)"/> <wire from="(420,590)" to="(440,590)"/> <wire from="(560,1680)" to="(590,1680)"/> <wire from="(860,950)" to="(860,1070)"/> <wire from="(540,1740)" to="(620,1740)"/> <wire from="(470,1430)" to="(600,1430)"/> <wire from="(240,810)" to="(310,810)"/> <wire from="(1120,1020)" to="(1120,1100)"/> <wire from="(640,420)" to="(700,420)"/> <wire from="(740,520)" to="(800,520)"/> <wire from="(650,1510)" to="(650,1600)"/> <wire from="(670,1850)" to="(670,1940)"/> <wire from="(760,1590)" to="(760,1620)"/> <wire from="(330,210)" to="(330,930)"/> <wire from="(220,980)" to="(260,980)"/> <wire from="(220,500)" to="(260,500)"/> <wire from="(350,980)" to="(350,1260)"/> <wire from="(840,340)" to="(860,340)"/> <wire from="(380,1190)" to="(600,1190)"/> <wire from="(650,1640)" to="(650,1680)"/> <wire from="(860,1690)" to="(860,1730)"/> <wire from="(780,1670)" to="(780,1840)"/> <wire from="(700,1160)" to="(720,1160)"/> <wire from="(1180,1940)" to="(1180,2190)"/> <wire from="(950,1210)" to="(1110,1210)"/> <wire from="(840,1930)" to="(870,1930)"/> <wire from="(790,1140)" to="(790,1200)"/> <wire from="(120,650)" to="(200,650)"/> <wire from="(670,1020)" to="(670,1080)"/> <wire from="(180,270)" to="(180,450)"/> <wire from="(620,350)" to="(700,350)"/> <wire from="(560,330)" to="(560,510)"/> <wire from="(1140,1120)" to="(1160,1120)"/> <wire from="(1140,960)" to="(1160,960)"/> <wire from="(670,1940)" to="(680,1940)"/> <wire from="(580,1530)" to="(590,1530)"/> <comp lib="2" loc="(440,230)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(613,1034)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="6" loc="(965,1935)" name="Text"> <a name="text" val="EIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1180,960)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,1850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(840,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(440,410)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(360,150)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="1" loc="(540,210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1280,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1260,1130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,570)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(101,178)" name="Text"> <a name="text" val="W4004 (SQR B)"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(1230,2250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#CH/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(738,1106)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="0" loc="(1280,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(950,1940)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="1" loc="(700,1940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(440,1420)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,1590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(892,1463)" name="Text"> <a name="text" val="ENV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(750,1860)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(740,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(620,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(840,1940)" name="D-latch"/> <comp lib="6" loc="(626,1281)" name="Text"> <a name="text" val="ENVELOPE DOWN COUNTER"/> </comp> <comp lib="6" loc="(931,260)" name="Text"> <a name="text" val="VOL0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(700,1750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(999,2122)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="1" loc="(750,1520)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(180,160)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(740,340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400(0) 4, C"/> </comp> <comp lib="0" loc="(120,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(620,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(103,1052)" name="Text"> <a name="text" val="W4007 (SQR B)"/> </comp> <comp lib="4" loc="(840,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(840,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(660,130)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(750,1950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(620,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(840,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(925,802)" name="Text"> <a name="text" val="VOL3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1140,1120)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1280,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(103,1034)" name="Text"> <a name="text" val="W4003 (SQR A)"/> </comp> <comp lib="4" loc="(240,630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(1140,960)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(440,590)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(380,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="6"/> <a name="label" val="ENV"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400(3) 7, F"/> </comp> <comp lib="1" loc="(700,1410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(240,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(240,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(893,1801)" name="Text"> <a name="text" val="ENV3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1100,2030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="4" loc="(840,1670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(640,980)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp lib="0" loc="(1280,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(440,1590)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,1760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1010,2100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1400)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(817,1974)" name="Text"> <a name="text" val="DL7"/> </comp> <comp lib="6" loc="(682,1073)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="6" loc="(893,1634)" name="Text"> <a name="text" val="ENV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(240,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(850,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="6" loc="(102,195)" name="Text"> <a name="text" val="W400C (NOISE)"/> </comp> <comp lib="6" loc="(1070,863)" name="Text"> <a name="text" val="ENVDIS"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1140,1040)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(740,700)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1100,2090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(540,1740)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(570,973)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="1" loc="(1260,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1180,1120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1124,2022)" name="Text"> <a name="text" val="ESTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="4" loc="(840,1840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(103,1070)" name="Text"> <a name="text" val="W400F (NOISE)"/> </comp> <comp lib="6" loc="(291,866)" name="Text"> <a name="text" val="ENVDIS"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(630,1680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1121,2083)" name="Text"> <a name="text" val="ERES"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(540,1910)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(571,1105)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(820,2074)" name="Text"> <a name="text" val="DL9"/> </comp> <comp lib="1" loc="(700,1580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(440,1930)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,1350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(850,1190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp lib="6" loc="(732,2302)" name="Text"> <a name="text" val="The signal names are shown for the noise channel. For square channels A and B, the designation changes instead of N to A or B, respectively"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(690,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(679,985)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="1" loc="(740,160)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(873,1142)" name="Text"> <a name="text" val="RLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,2280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CH IN"/> </comp> <comp lib="6" loc="(99,160)" name="Text"> <a name="text" val="W4000(SQR A)"/> </comp> <comp loc="(760,1070)" name="D-latch"/> <comp lib="6" loc="(405,1036)" name="Text"> <a name="text" val="RELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(640,1080)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(540,1570)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(690,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(840,2040)" name="D-latch"/> <comp lib="4" loc="(240,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(740,520)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(950,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="2" loc="(440,770)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1180,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(891,1284)" name="Text"> <a name="text" val="ENV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(594,97)" name="Text"> <a name="text" val="ENVELOPE DECAY DOWN COUNTER"/> </comp> <comp lib="6" loc="(997,2040)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(640,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="1" loc="(750,1690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(739,1206)" name="Text"> <a name="text" val="DL10"/> </comp> <comp lib="1" loc="(1260,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(931,439)" name="Text"> <a name="text" val="VOL1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(670,1320)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(931,2096)" name="Text"> <a name="text" val="RLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1010,2020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1180,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(620,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(873,1183)" name="Text"> <a name="text" val="RSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(760,1170)" name="D-latch"/> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="2" loc="(440,1760)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(928,620)" name="Text"> <a name="text" val="VOL2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(840,1500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(750,1420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1260,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(850,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="19"/> </comp> <comp lib="4" loc="(840,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="6" loc="(333,942)" name="Text"> <a name="text" val="#SQA(B)(NOISE)/LC"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="2" loc="(1140,1200)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> </circuit> <circuit name="SQUARE_CHANNEL_0"> <a name="circuit" val="SQUARE_CHANNEL_0"/> <a name="clabel" val="SQUARE CHANNEL 0"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M82,41 Q86,51 90,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#dd42ff" height="421" stroke="#000000" stroke-width="2" width="660" x="50" y="39"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="224">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="244">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="264">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="284">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="304">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="324">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="344">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="384">NOSQA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="404">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="424">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="444">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">W4000</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="135">W4001</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="154">W4002</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="174">W4003</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="184">SQA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="205">SQA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="224">SQA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="244">SQA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="284">#SQA/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="364">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="46" y="56"/> <circ-port height="8" pin="100,80" width="8" x="46" y="76"/> <circ-port height="8" pin="100,150" width="8" x="46" y="106"/> <circ-port height="8" pin="100,900" width="8" x="46" y="126"/> <circ-port height="8" pin="100,190" width="8" x="46" y="146"/> <circ-port height="8" pin="100,120" width="8" x="46" y="166"/> <circ-port height="8" pin="100,230" width="8" x="46" y="196"/> <circ-port height="8" pin="100,260" width="8" x="46" y="216"/> <circ-port height="8" pin="100,290" width="8" x="46" y="236"/> <circ-port height="8" pin="100,320" width="8" x="46" y="256"/> <circ-port height="8" pin="100,350" width="8" x="46" y="276"/> <circ-port height="8" pin="100,380" width="8" x="46" y="296"/> <circ-port height="8" pin="100,410" width="8" x="46" y="316"/> <circ-port height="8" pin="100,440" width="8" x="46" y="336"/> <circ-port height="8" pin="100,1230" width="8" x="46" y="376"/> <circ-port height="8" pin="100,1090" width="8" x="46" y="396"/> <circ-port height="8" pin="100,1270" width="8" x="46" y="416"/> <circ-port height="8" pin="100,1060" width="8" x="46" y="436"/> <circ-port height="10" pin="1230,1000" width="10" x="705" y="175"/> <circ-port height="10" pin="1230,1060" width="10" x="705" y="195"/> <circ-port height="10" pin="1230,1120" width="10" x="705" y="215"/> <circ-port height="10" pin="1230,1180" width="10" x="705" y="235"/> <circ-port height="10" pin="1230,1230" width="10" x="705" y="275"/> <circ-port height="8" pin="100,490" width="8" x="46" y="356"/> <circ-port height="10" pin="1390,50" width="10" x="705" y="55"/> <circ-anchor facing="east" height="6" width="6" x="207" y="37"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(520,680)" to="(520,690)"/> <wire from="(690,530)" to="(740,530)"/> <wire from="(890,1030)" to="(1010,1030)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(490,490)" to="(540,490)"/> <wire from="(950,780)" to="(1010,780)"/> <wire from="(650,840)" to="(650,910)"/> <wire from="(190,990)" to="(240,990)"/> <wire from="(540,800)" to="(540,1190)"/> <wire from="(910,840)" to="(1230,840)"/> <wire from="(130,290)" to="(130,320)"/> <wire from="(190,190)" to="(190,220)"/> <wire from="(620,90)" to="(920,90)"/> <wire from="(190,1250)" to="(930,1250)"/> <wire from="(850,480)" to="(870,480)"/> <wire from="(850,560)" to="(870,560)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(990,140)" to="(1010,140)"/> <wire from="(990,380)" to="(1010,380)"/> <wire from="(990,1100)" to="(1010,1100)"/> <wire from="(1210,1010)" to="(1220,1010)"/> <wire from="(720,190)" to="(740,190)"/> <wire from="(720,270)" to="(740,270)"/> <wire from="(100,190)" to="(190,190)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(360,550)" to="(380,550)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(410,920)" to="(430,920)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(920,130)" to="(920,360)"/> <wire from="(260,1190)" to="(540,1190)"/> <wire from="(980,760)" to="(1010,760)"/> <wire from="(130,320)" to="(150,320)"/> <wire from="(100,1090)" to="(120,1090)"/> <wire from="(740,1170)" to="(740,1290)"/> <wire from="(1330,80)" to="(1350,80)"/> <wire from="(1000,720)" to="(1010,720)"/> <wire from="(310,810)" to="(440,810)"/> <wire from="(310,420)" to="(380,420)"/> <wire from="(1210,1000)" to="(1230,1000)"/> <wire from="(1220,1020)" to="(1330,1020)"/> <wire from="(690,580)" to="(740,580)"/> <wire from="(150,230)" to="(150,300)"/> <wire from="(690,500)" to="(740,500)"/> <wire from="(620,90)" to="(620,230)"/> <wire from="(490,540)" to="(540,540)"/> <wire from="(100,230)" to="(150,230)"/> <wire from="(520,90)" to="(520,110)"/> <wire from="(310,660)" to="(310,810)"/> <wire from="(750,880)" to="(750,910)"/> <wire from="(570,940)" to="(670,940)"/> <wire from="(220,1230)" to="(650,1230)"/> <wire from="(480,700)" to="(480,920)"/> <wire from="(570,820)" to="(1190,820)"/> <wire from="(850,530)" to="(870,530)"/> <wire from="(990,350)" to="(1010,350)"/> <wire from="(990,110)" to="(1010,110)"/> <wire from="(990,1150)" to="(1010,1150)"/> <wire from="(830,910)" to="(830,1020)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(920,90)" to="(920,130)"/> <wire from="(450,920)" to="(480,920)"/> <wire from="(240,1210)" to="(910,1210)"/> <wire from="(720,240)" to="(740,240)"/> <wire from="(750,910)" to="(770,910)"/> <wire from="(260,980)" to="(280,980)"/> <wire from="(360,520)" to="(380,520)"/> <wire from="(360,360)" to="(380,360)"/> <wire from="(180,70)" to="(180,110)"/> <wire from="(490,250)" to="(510,250)"/> <wire from="(180,110)" to="(520,110)"/> <wire from="(1190,760)" to="(1190,820)"/> <wire from="(140,310)" to="(150,310)"/> <wire from="(440,810)" to="(440,860)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1190,520)" to="(1190,560)"/> <wire from="(1340,90)" to="(1340,770)"/> <wire from="(540,800)" to="(870,800)"/> <wire from="(690,550)" to="(740,550)"/> <wire from="(1170,770)" to="(1340,770)"/> <wire from="(980,760)" to="(980,770)"/> <wire from="(490,510)" to="(540,510)"/> <wire from="(430,930)" to="(430,940)"/> <wire from="(100,440)" to="(150,440)"/> <wire from="(1320,70)" to="(1320,1290)"/> <wire from="(650,950)" to="(650,1230)"/> <wire from="(920,60)" to="(920,90)"/> <wire from="(260,1160)" to="(260,1190)"/> <wire from="(920,60)" to="(1350,60)"/> <wire from="(850,580)" to="(870,580)"/> <wire from="(850,500)" to="(870,500)"/> <wire from="(120,1090)" to="(280,1090)"/> <wire from="(100,380)" to="(130,380)"/> <wire from="(990,400)" to="(1010,400)"/> <wire from="(990,160)" to="(1010,160)"/> <wire from="(990,320)" to="(1010,320)"/> <wire from="(990,1120)" to="(1010,1120)"/> <wire from="(720,210)" to="(740,210)"/> <wire from="(970,1230)" to="(970,1270)"/> <wire from="(260,950)" to="(280,950)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,490)" to="(380,490)"/> <wire from="(360,330)" to="(380,330)"/> <wire from="(410,940)" to="(430,940)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(100,150)" to="(120,150)"/> <wire from="(140,360)" to="(150,360)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(550,90)" to="(550,140)"/> <wire from="(910,840)" to="(910,1210)"/> <wire from="(1210,1180)" to="(1230,1180)"/> <wire from="(190,220)" to="(380,220)"/> <wire from="(240,1140)" to="(240,1210)"/> <wire from="(690,520)" to="(740,520)"/> <wire from="(410,880)" to="(460,880)"/> <wire from="(490,480)" to="(540,480)"/> <wire from="(490,560)" to="(540,560)"/> <wire from="(430,900)" to="(430,910)"/> <wire from="(100,260)" to="(140,260)"/> <wire from="(810,910)" to="(830,910)"/> <wire from="(360,620)" to="(360,720)"/> <wire from="(460,140)" to="(550,140)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(1340,90)" to="(1350,90)"/> <wire from="(990,370)" to="(1010,370)"/> <wire from="(990,130)" to="(1010,130)"/> <wire from="(1090,130)" to="(1230,130)"/> <wire from="(520,700)" to="(540,700)"/> <wire from="(720,180)" to="(740,180)"/> <wire from="(650,910)" to="(670,910)"/> <wire from="(720,260)" to="(740,260)"/> <wire from="(350,200)" to="(380,200)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(260,1160)" to="(280,1160)"/> <wire from="(920,680)" to="(1010,680)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(190,340)" to="(340,340)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(100,40)" to="(120,40)"/> <wire from="(220,1120)" to="(220,1230)"/> <wire from="(410,1170)" to="(740,1170)"/> <wire from="(740,1290)" to="(1320,1290)"/> <wire from="(270,860)" to="(280,860)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(620,230)" to="(700,230)"/> <wire from="(1000,1190)" to="(1010,1190)"/> <wire from="(1000,230)" to="(1010,230)"/> <wire from="(1210,1230)" to="(1230,1230)"/> <wire from="(690,490)" to="(740,490)"/> <wire from="(690,570)" to="(740,570)"/> <wire from="(190,990)" to="(190,1250)"/> <wire from="(490,530)" to="(540,530)"/> <wire from="(1170,500)" to="(1210,500)"/> <wire from="(120,320)" to="(120,330)"/> <wire from="(570,940)" to="(570,1160)"/> <wire from="(360,720)" to="(460,720)"/> <wire from="(850,520)" to="(870,520)"/> <wire from="(120,340)" to="(150,340)"/> <wire from="(990,340)" to="(1010,340)"/> <wire from="(990,740)" to="(1010,740)"/> <wire from="(990,100)" to="(1010,100)"/> <wire from="(990,1140)" to="(1010,1140)"/> <wire from="(410,1160)" to="(570,1160)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(460,720)" to="(460,880)"/> <wire from="(730,880)" to="(750,880)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(360,510)" to="(380,510)"/> <wire from="(360,350)" to="(380,350)"/> <wire from="(490,240)" to="(510,240)"/> <wire from="(950,770)" to="(980,770)"/> <wire from="(140,260)" to="(140,310)"/> <wire from="(890,590)" to="(890,780)"/> <wire from="(650,840)" to="(910,840)"/> <wire from="(1170,520)" to="(1190,520)"/> <wire from="(310,140)" to="(380,140)"/> <wire from="(1170,760)" to="(1190,760)"/> <wire from="(1210,1120)" to="(1230,1120)"/> <wire from="(920,130)" to="(970,130)"/> <wire from="(690,540)" to="(740,540)"/> <wire from="(490,580)" to="(540,580)"/> <wire from="(490,500)" to="(540,500)"/> <wire from="(190,340)" to="(190,990)"/> <wire from="(1230,130)" to="(1230,840)"/> <wire from="(970,1230)" to="(1010,1230)"/> <wire from="(240,1140)" to="(280,1140)"/> <wire from="(120,1090)" to="(120,1120)"/> <wire from="(940,580)" to="(940,660)"/> <wire from="(850,490)" to="(870,490)"/> <wire from="(850,570)" to="(870,570)"/> <wire from="(100,290)" to="(130,290)"/> <wire from="(990,1110)" to="(1010,1110)"/> <wire from="(990,390)" to="(1010,390)"/> <wire from="(990,150)" to="(1010,150)"/> <wire from="(990,310)" to="(1010,310)"/> <wire from="(520,720)" to="(540,720)"/> <wire from="(720,200)" to="(740,200)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(260,1020)" to="(280,1020)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(360,320)" to="(380,320)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(570,920)" to="(600,920)"/> <wire from="(530,230)" to="(620,230)"/> <wire from="(180,70)" to="(520,70)"/> <wire from="(120,1120)" to="(140,1120)"/> <wire from="(940,660)" to="(1010,660)"/> <wire from="(920,560)" to="(920,680)"/> <wire from="(930,1130)" to="(930,1250)"/> <wire from="(1320,70)" to="(1350,70)"/> <wire from="(1370,50)" to="(1390,50)"/> <wire from="(1330,80)" to="(1330,1020)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(870,620)" to="(870,800)"/> <wire from="(1210,500)" to="(1210,580)"/> <wire from="(690,510)" to="(740,510)"/> <wire from="(620,920)" to="(670,920)"/> <wire from="(490,550)" to="(540,550)"/> <wire from="(120,340)" to="(120,350)"/> <wire from="(810,1040)" to="(850,1040)"/> <wire from="(100,1270)" to="(970,1270)"/> <wire from="(100,410)" to="(140,410)"/> <wire from="(130,350)" to="(130,380)"/> <wire from="(290,200)" to="(330,200)"/> <wire from="(310,660)" to="(540,660)"/> <wire from="(340,780)" to="(890,780)"/> <wire from="(850,540)" to="(870,540)"/> <wire from="(850,620)" to="(870,620)"/> <wire from="(990,360)" to="(1010,360)"/> <wire from="(990,120)" to="(1010,120)"/> <wire from="(720,250)" to="(740,250)"/> <wire from="(260,990)" to="(280,990)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,370)" to="(380,370)"/> <wire from="(410,900)" to="(430,900)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(570,820)" to="(570,920)"/> <wire from="(170,340)" to="(190,340)"/> <wire from="(140,360)" to="(140,410)"/> <wire from="(1000,620)" to="(1010,620)"/> <wire from="(1000,700)" to="(1010,700)"/> <wire from="(940,580)" to="(1210,580)"/> <wire from="(920,560)" to="(1190,560)"/> <wire from="(1210,1060)" to="(1230,1060)"/> <wire from="(520,710)" to="(520,720)"/> <wire from="(690,560)" to="(740,560)"/> <wire from="(690,480)" to="(740,480)"/> <wire from="(150,370)" to="(150,440)"/> <wire from="(220,1120)" to="(280,1120)"/> <wire from="(490,520)" to="(540,520)"/> <wire from="(100,1230)" to="(220,1230)"/> <wire from="(550,140)" to="(740,140)"/> <wire from="(100,900)" to="(280,900)"/> <wire from="(100,1060)" to="(280,1060)"/> <wire from="(520,70)" to="(520,90)"/> <wire from="(730,930)" to="(770,930)"/> <wire from="(930,1130)" to="(970,1130)"/> <wire from="(1220,1010)" to="(1220,1020)"/> <wire from="(930,790)" to="(930,1130)"/> <wire from="(310,140)" to="(310,420)"/> <wire from="(850,510)" to="(870,510)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(990,1130)" to="(1010,1130)"/> <wire from="(990,410)" to="(1010,410)"/> <wire from="(990,90)" to="(1010,90)"/> <wire from="(990,170)" to="(1010,170)"/> <wire from="(990,330)" to="(1010,330)"/> <wire from="(410,860)" to="(440,860)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(650,950)" to="(670,950)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(260,960)" to="(280,960)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(400,140)" to="(420,140)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(480,700)" to="(500,700)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(130,350)" to="(150,350)"/> <wire from="(100,490)" to="(110,490)"/> <wire from="(1000,990)" to="(1010,990)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(340,590)" to="(340,780)"/> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(1230,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#SQA/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,590)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(500,700)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(1000,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(1000,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4002"/> </comp> <comp lib="0" loc="(1000,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(970,360)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(1000,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(1000,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(930,790)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(290,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(1115,123)" name="Text"> <a name="text" val="SW_UVF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(1390,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="27"/> <a name="label" val="SQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(810,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="6" loc="(452,126)" name="Text"> <a name="text" val="!!!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(340,840)" name="SQUARE_SWEEP_CONTROL"/> <comp lib="1" loc="(730,930)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp loc="(810,920)" name="D-latch"/> <comp lib="0" loc="(1000,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(270,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(350,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(730,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(340,340)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(370,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="1" loc="(1090,130)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="1" loc="(890,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(110,490)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(700,230)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(990,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(530,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp loc="(430,160)" name="SQUARE_REGISTER"/> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4000"/> </comp> <comp lib="1" loc="(620,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="1" loc="(400,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(970,1130)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp loc="(1070,190)" name="SQUARE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(360,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(460,140)" name="Constant"/> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(1370,50)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="27"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="2"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="2"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp loc="(790,120)" name="SQUARE_ADDER"/> <comp lib="0" loc="(120,150)" name="Tunnel"> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(100,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQA"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp loc="(1100,600)" name="SQUARE_DUTY_DOWN_COUNTER"/> <comp lib="0" loc="(1230,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQ2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(890,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1230,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1230,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(610,905)" name="Text"> <a name="text" val="INV5"/> </comp> <comp loc="(1060,970)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(140,1120)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1000,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1230,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(349,96)" name="Text"> <a name="text" val="Connect to VCC for square0, connect to inverter for square1"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(970,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="2"/> <a name="bit5" val="3"/> <a name="bit6" val="4"/> <a name="bit7" val="5"/> <a name="bit8" val="6"/> <a name="bit9" val="7"/> <a name="bit10" val="8"/> </comp> <comp lib="0" loc="(240,990)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(450,920)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(120,120)" name="Tunnel"> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1000,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4001"/> </comp> <comp loc="(580,450)" name="SQUARE_BARREL_SHIFTER"/> <comp lib="0" loc="(1000,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> </circuit> <circuit name="SQUARE_CHANNEL_1"> <a name="circuit" val="SQUARE_CHANNEL_1"/> <a name="clabel" val="SQUARE CHANNEL 1"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M81,51 Q85,61 89,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fd2cff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="683" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="74">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="214">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="234">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="254">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="274">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="294">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="314">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="334">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="354">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="681" y="394">NOSQB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="689" y="414">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="434">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="454">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="124">W4004</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="145">W4005</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="164">W4006</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="184">W4007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="194">SQB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="215">SQB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="234">SQB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="255">SQB3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="294">#SQB/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="375">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="706" y="66"/> <circ-port height="8" pin="100,80" width="8" x="706" y="86"/> <circ-port height="8" pin="100,110" width="8" x="706" y="116"/> <circ-port height="8" pin="100,900" width="8" x="706" y="136"/> <circ-port height="8" pin="100,190" width="8" x="706" y="156"/> <circ-port height="8" pin="100,150" width="8" x="706" y="176"/> <circ-port height="8" pin="100,230" width="8" x="706" y="206"/> <circ-port height="8" pin="100,260" width="8" x="706" y="226"/> <circ-port height="8" pin="100,290" width="8" x="706" y="246"/> <circ-port height="8" pin="100,320" width="8" x="706" y="266"/> <circ-port height="8" pin="100,350" width="8" x="706" y="286"/> <circ-port height="8" pin="100,380" width="8" x="706" y="306"/> <circ-port height="8" pin="100,410" width="8" x="706" y="326"/> <circ-port height="8" pin="100,440" width="8" x="706" y="346"/> <circ-port height="8" pin="100,1230" width="8" x="706" y="386"/> <circ-port height="8" pin="100,1090" width="8" x="706" y="406"/> <circ-port height="8" pin="100,1270" width="8" x="706" y="426"/> <circ-port height="8" pin="100,1060" width="8" x="706" y="446"/> <circ-port height="10" pin="1230,1000" width="10" x="45" y="185"/> <circ-port height="10" pin="1230,1060" width="10" x="45" y="205"/> <circ-port height="10" pin="1230,1120" width="10" x="45" y="225"/> <circ-port height="10" pin="1230,1180" width="10" x="45" y="245"/> <circ-port height="10" pin="1230,1230" width="10" x="45" y="285"/> <circ-port height="8" pin="100,490" width="8" x="706" y="366"/> <circ-port height="10" pin="1390,50" width="10" x="45" y="395"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(520,680)" to="(520,690)"/> <wire from="(690,530)" to="(740,530)"/> <wire from="(890,1030)" to="(1010,1030)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(490,490)" to="(540,490)"/> <wire from="(950,780)" to="(1010,780)"/> <wire from="(650,840)" to="(650,910)"/> <wire from="(190,990)" to="(240,990)"/> <wire from="(540,800)" to="(540,1190)"/> <wire from="(910,840)" to="(1230,840)"/> <wire from="(130,290)" to="(130,320)"/> <wire from="(190,190)" to="(190,220)"/> <wire from="(620,90)" to="(920,90)"/> <wire from="(190,1250)" to="(930,1250)"/> <wire from="(850,560)" to="(870,560)"/> <wire from="(850,480)" to="(870,480)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(990,380)" to="(1010,380)"/> <wire from="(990,140)" to="(1010,140)"/> <wire from="(990,1100)" to="(1010,1100)"/> <wire from="(1210,1010)" to="(1220,1010)"/> <wire from="(720,190)" to="(740,190)"/> <wire from="(720,270)" to="(740,270)"/> <wire from="(100,190)" to="(190,190)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(360,550)" to="(380,550)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(410,920)" to="(430,920)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(920,130)" to="(920,360)"/> <wire from="(260,1190)" to="(540,1190)"/> <wire from="(980,760)" to="(1010,760)"/> <wire from="(130,320)" to="(150,320)"/> <wire from="(100,1090)" to="(120,1090)"/> <wire from="(740,1170)" to="(740,1290)"/> <wire from="(1330,80)" to="(1350,80)"/> <wire from="(1000,720)" to="(1010,720)"/> <wire from="(310,810)" to="(440,810)"/> <wire from="(310,420)" to="(380,420)"/> <wire from="(1210,1000)" to="(1230,1000)"/> <wire from="(1220,1020)" to="(1330,1020)"/> <wire from="(690,580)" to="(740,580)"/> <wire from="(150,230)" to="(150,300)"/> <wire from="(690,500)" to="(740,500)"/> <wire from="(620,90)" to="(620,230)"/> <wire from="(490,540)" to="(540,540)"/> <wire from="(100,230)" to="(150,230)"/> <wire from="(310,660)" to="(310,810)"/> <wire from="(520,90)" to="(520,110)"/> <wire from="(570,940)" to="(670,940)"/> <wire from="(750,880)" to="(750,910)"/> <wire from="(220,1230)" to="(650,1230)"/> <wire from="(480,700)" to="(480,920)"/> <wire from="(570,820)" to="(1190,820)"/> <wire from="(850,530)" to="(870,530)"/> <wire from="(990,350)" to="(1010,350)"/> <wire from="(990,110)" to="(1010,110)"/> <wire from="(990,1150)" to="(1010,1150)"/> <wire from="(830,910)" to="(830,1020)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(920,90)" to="(920,130)"/> <wire from="(450,920)" to="(480,920)"/> <wire from="(310,140)" to="(340,140)"/> <wire from="(240,1210)" to="(910,1210)"/> <wire from="(720,240)" to="(740,240)"/> <wire from="(750,910)" to="(770,910)"/> <wire from="(260,980)" to="(280,980)"/> <wire from="(360,520)" to="(380,520)"/> <wire from="(360,360)" to="(380,360)"/> <wire from="(180,70)" to="(180,110)"/> <wire from="(490,250)" to="(510,250)"/> <wire from="(180,110)" to="(520,110)"/> <wire from="(1190,760)" to="(1190,820)"/> <wire from="(140,310)" to="(150,310)"/> <wire from="(440,810)" to="(440,860)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1190,520)" to="(1190,560)"/> <wire from="(1340,90)" to="(1340,770)"/> <wire from="(540,800)" to="(870,800)"/> <wire from="(690,550)" to="(740,550)"/> <wire from="(1170,770)" to="(1340,770)"/> <wire from="(980,760)" to="(980,770)"/> <wire from="(490,510)" to="(540,510)"/> <wire from="(430,930)" to="(430,940)"/> <wire from="(100,440)" to="(150,440)"/> <wire from="(1320,70)" to="(1320,1290)"/> <wire from="(650,950)" to="(650,1230)"/> <wire from="(920,60)" to="(920,90)"/> <wire from="(260,1160)" to="(260,1190)"/> <wire from="(920,60)" to="(1350,60)"/> <wire from="(850,500)" to="(870,500)"/> <wire from="(850,580)" to="(870,580)"/> <wire from="(120,1090)" to="(280,1090)"/> <wire from="(100,380)" to="(130,380)"/> <wire from="(990,400)" to="(1010,400)"/> <wire from="(990,160)" to="(1010,160)"/> <wire from="(990,320)" to="(1010,320)"/> <wire from="(990,1120)" to="(1010,1120)"/> <wire from="(720,210)" to="(740,210)"/> <wire from="(970,1230)" to="(970,1270)"/> <wire from="(260,950)" to="(280,950)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,490)" to="(380,490)"/> <wire from="(360,330)" to="(380,330)"/> <wire from="(410,940)" to="(430,940)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(100,150)" to="(120,150)"/> <wire from="(140,360)" to="(150,360)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(550,90)" to="(550,140)"/> <wire from="(910,840)" to="(910,1210)"/> <wire from="(1210,1180)" to="(1230,1180)"/> <wire from="(190,220)" to="(380,220)"/> <wire from="(240,1140)" to="(240,1210)"/> <wire from="(690,520)" to="(740,520)"/> <wire from="(410,880)" to="(460,880)"/> <wire from="(490,480)" to="(540,480)"/> <wire from="(490,560)" to="(540,560)"/> <wire from="(430,900)" to="(430,910)"/> <wire from="(100,260)" to="(140,260)"/> <wire from="(810,910)" to="(830,910)"/> <wire from="(360,620)" to="(360,720)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(1340,90)" to="(1350,90)"/> <wire from="(990,370)" to="(1010,370)"/> <wire from="(990,130)" to="(1010,130)"/> <wire from="(1090,130)" to="(1230,130)"/> <wire from="(520,700)" to="(540,700)"/> <wire from="(720,180)" to="(740,180)"/> <wire from="(650,910)" to="(670,910)"/> <wire from="(720,260)" to="(740,260)"/> <wire from="(350,200)" to="(380,200)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(260,1160)" to="(280,1160)"/> <wire from="(920,680)" to="(1010,680)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(190,340)" to="(340,340)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(100,40)" to="(120,40)"/> <wire from="(220,1120)" to="(220,1230)"/> <wire from="(740,1290)" to="(1320,1290)"/> <wire from="(410,1170)" to="(740,1170)"/> <wire from="(270,860)" to="(280,860)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(620,230)" to="(700,230)"/> <wire from="(1000,1190)" to="(1010,1190)"/> <wire from="(1000,230)" to="(1010,230)"/> <wire from="(1210,1230)" to="(1230,1230)"/> <wire from="(690,490)" to="(740,490)"/> <wire from="(690,570)" to="(740,570)"/> <wire from="(190,990)" to="(190,1250)"/> <wire from="(490,530)" to="(540,530)"/> <wire from="(1170,500)" to="(1210,500)"/> <wire from="(120,320)" to="(120,330)"/> <wire from="(570,940)" to="(570,1160)"/> <wire from="(360,720)" to="(460,720)"/> <wire from="(850,520)" to="(870,520)"/> <wire from="(120,340)" to="(150,340)"/> <wire from="(990,340)" to="(1010,340)"/> <wire from="(990,740)" to="(1010,740)"/> <wire from="(990,100)" to="(1010,100)"/> <wire from="(990,1140)" to="(1010,1140)"/> <wire from="(410,1160)" to="(570,1160)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(460,720)" to="(460,880)"/> <wire from="(730,880)" to="(750,880)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(360,510)" to="(380,510)"/> <wire from="(360,350)" to="(380,350)"/> <wire from="(490,240)" to="(510,240)"/> <wire from="(950,770)" to="(980,770)"/> <wire from="(140,260)" to="(140,310)"/> <wire from="(890,590)" to="(890,780)"/> <wire from="(650,840)" to="(910,840)"/> <wire from="(1170,520)" to="(1190,520)"/> <wire from="(1170,760)" to="(1190,760)"/> <wire from="(1210,1120)" to="(1230,1120)"/> <wire from="(920,130)" to="(970,130)"/> <wire from="(690,540)" to="(740,540)"/> <wire from="(490,580)" to="(540,580)"/> <wire from="(490,500)" to="(540,500)"/> <wire from="(190,340)" to="(190,990)"/> <wire from="(1230,130)" to="(1230,840)"/> <wire from="(970,1230)" to="(1010,1230)"/> <wire from="(240,1140)" to="(280,1140)"/> <wire from="(120,1090)" to="(120,1120)"/> <wire from="(940,580)" to="(940,660)"/> <wire from="(850,490)" to="(870,490)"/> <wire from="(850,570)" to="(870,570)"/> <wire from="(100,290)" to="(130,290)"/> <wire from="(990,1110)" to="(1010,1110)"/> <wire from="(990,390)" to="(1010,390)"/> <wire from="(990,150)" to="(1010,150)"/> <wire from="(990,310)" to="(1010,310)"/> <wire from="(520,720)" to="(540,720)"/> <wire from="(720,200)" to="(740,200)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(260,1020)" to="(280,1020)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(360,320)" to="(380,320)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(570,920)" to="(600,920)"/> <wire from="(530,230)" to="(620,230)"/> <wire from="(180,70)" to="(520,70)"/> <wire from="(120,1120)" to="(140,1120)"/> <wire from="(940,660)" to="(1010,660)"/> <wire from="(920,560)" to="(920,680)"/> <wire from="(930,1130)" to="(930,1250)"/> <wire from="(1320,70)" to="(1350,70)"/> <wire from="(1370,50)" to="(1390,50)"/> <wire from="(1330,80)" to="(1330,1020)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(870,620)" to="(870,800)"/> <wire from="(1210,500)" to="(1210,580)"/> <wire from="(690,510)" to="(740,510)"/> <wire from="(360,140)" to="(550,140)"/> <wire from="(620,920)" to="(670,920)"/> <wire from="(490,550)" to="(540,550)"/> <wire from="(120,340)" to="(120,350)"/> <wire from="(810,1040)" to="(850,1040)"/> <wire from="(100,1270)" to="(970,1270)"/> <wire from="(100,410)" to="(140,410)"/> <wire from="(130,350)" to="(130,380)"/> <wire from="(290,200)" to="(330,200)"/> <wire from="(310,660)" to="(540,660)"/> <wire from="(340,780)" to="(890,780)"/> <wire from="(850,540)" to="(870,540)"/> <wire from="(850,620)" to="(870,620)"/> <wire from="(990,360)" to="(1010,360)"/> <wire from="(990,120)" to="(1010,120)"/> <wire from="(720,250)" to="(740,250)"/> <wire from="(260,990)" to="(280,990)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,370)" to="(380,370)"/> <wire from="(410,900)" to="(430,900)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(100,110)" to="(120,110)"/> <wire from="(570,820)" to="(570,920)"/> <wire from="(170,340)" to="(190,340)"/> <wire from="(140,360)" to="(140,410)"/> <wire from="(1000,620)" to="(1010,620)"/> <wire from="(1000,700)" to="(1010,700)"/> <wire from="(940,580)" to="(1210,580)"/> <wire from="(920,560)" to="(1190,560)"/> <wire from="(1210,1060)" to="(1230,1060)"/> <wire from="(520,710)" to="(520,720)"/> <wire from="(690,560)" to="(740,560)"/> <wire from="(690,480)" to="(740,480)"/> <wire from="(150,370)" to="(150,440)"/> <wire from="(220,1120)" to="(280,1120)"/> <wire from="(490,520)" to="(540,520)"/> <wire from="(100,1230)" to="(220,1230)"/> <wire from="(550,140)" to="(740,140)"/> <wire from="(100,900)" to="(280,900)"/> <wire from="(100,1060)" to="(280,1060)"/> <wire from="(520,70)" to="(520,90)"/> <wire from="(730,930)" to="(770,930)"/> <wire from="(930,1130)" to="(970,1130)"/> <wire from="(1220,1010)" to="(1220,1020)"/> <wire from="(930,790)" to="(930,1130)"/> <wire from="(310,140)" to="(310,420)"/> <wire from="(850,510)" to="(870,510)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(990,1130)" to="(1010,1130)"/> <wire from="(990,90)" to="(1010,90)"/> <wire from="(990,170)" to="(1010,170)"/> <wire from="(990,410)" to="(1010,410)"/> <wire from="(990,330)" to="(1010,330)"/> <wire from="(410,860)" to="(440,860)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(650,950)" to="(670,950)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(260,960)" to="(280,960)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(480,700)" to="(500,700)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(130,350)" to="(150,350)"/> <wire from="(100,490)" to="(110,490)"/> <wire from="(1000,990)" to="(1010,990)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(340,590)" to="(340,780)"/> <comp loc="(340,840)" name="SQUARE_SWEEP_CONTROL"/> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp loc="(1100,600)" name="SQUARE_DUTY_DOWN_COUNTER"/> <comp loc="(580,450)" name="SQUARE_BARREL_SHIFTER"/> <comp lib="0" loc="(120,150)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp loc="(1070,190)" name="SQUARE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(100,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4004"/> </comp> <comp lib="6" loc="(607,906)" name="Text"> <a name="text" val="INV5"/> </comp> <comp lib="6" loc="(348,128)" name="Text"> <a name="text" val="!!!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1230,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,340)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1390,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="27"/> <a name="label" val="SQB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1000,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(730,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(530,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(110,490)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="1" loc="(350,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(810,920)" name="D-latch"/> <comp lib="0" loc="(140,1120)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp loc="(430,160)" name="SQUARE_REGISTER"/> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(290,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(620,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1000,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(700,230)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(1115,123)" name="Text"> <a name="text" val="SW_UVF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(730,930)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4006"/> </comp> <comp lib="0" loc="(100,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(1000,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(500,700)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1000,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(1000,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(270,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(170,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1230,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,990)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(1000,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1230,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#SQB/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(890,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp loc="(1060,970)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(370,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(970,1130)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(970,360)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(990,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(890,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1230,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(349,96)" name="Text"> <a name="text" val="Connect to VCC for square0, connect to inverter for square1"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(340,590)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(970,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="2"/> <a name="bit5" val="3"/> <a name="bit6" val="4"/> <a name="bit7" val="5"/> <a name="bit8" val="6"/> <a name="bit9" val="7"/> <a name="bit10" val="8"/> </comp> <comp lib="0" loc="(1230,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(360,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQB"/> </comp> <comp lib="1" loc="(1090,130)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="0" loc="(1000,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1000,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(1370,50)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="27"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="2"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="2"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> </comp> <comp lib="0" loc="(450,920)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(930,790)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(810,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(120,110)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(1000,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(360,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(790,120)" name="SQUARE_ADDER"/> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> </circuit> <circuit name="SQUARE_REGISTER"> <a name="circuit" val="SQUARE_REGISTER"/> <a name="clabel" val="SQUARE REGISTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M222,121 Q227,131 231,121" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#8bff3c" height="480" stroke="#000000" stroke-width="2" width="110" x="150" y="120"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="145">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="243" y="244">F10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="190" y="584">DO_SWEEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="174" y="144">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="177" y="164">ACLK13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="185">W4002(6)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="204">W4003(7)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="265">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="334">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="384">D/I</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="444">MU0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="545">MU10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="175" y="444">/SUM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="544">/SUM10</text> <circ-port height="8" pin="100,80" width="8" x="146" y="136"/> <circ-port height="8" pin="100,40" width="8" x="146" y="156"/> <circ-port height="8" pin="100,120" width="8" x="146" y="176"/> <circ-port height="8" pin="100,1740" width="8" x="146" y="196"/> <circ-port height="8" pin="100,180" width="8" x="146" y="256"/> <circ-port height="8" pin="100,320" width="8" x="146" y="266"/> <circ-port height="8" pin="100,460" width="8" x="146" y="276"/> <circ-port height="8" pin="100,600" width="8" x="146" y="286"/> <circ-port height="8" pin="100,740" width="8" x="146" y="296"/> <circ-port height="8" pin="100,880" width="8" x="146" y="306"/> <circ-port height="8" pin="100,1020" width="8" x="146" y="316"/> <circ-port height="8" pin="100,1160" width="8" x="146" y="326"/> <circ-port height="8" pin="100,1780" width="8" x="146" y="376"/> <circ-port height="10" pin="560,160" width="10" x="255" y="135"/> <circ-port height="10" pin="560,230" width="10" x="255" y="435"/> <circ-port height="8" pin="100,230" width="8" x="146" y="436"/> <circ-port height="10" pin="560,300" width="10" x="255" y="145"/> <circ-port height="10" pin="560,370" width="10" x="255" y="445"/> <circ-port height="8" pin="100,370" width="8" x="146" y="446"/> <circ-port height="10" pin="560,440" width="10" x="255" y="155"/> <circ-port height="10" pin="560,510" width="10" x="255" y="455"/> <circ-port height="8" pin="100,510" width="8" x="146" y="456"/> <circ-port height="10" pin="560,580" width="10" x="255" y="165"/> <circ-port height="10" pin="560,650" width="10" x="255" y="465"/> <circ-port height="8" pin="100,650" width="8" x="146" y="466"/> <circ-port height="10" pin="560,720" width="10" x="255" y="175"/> <circ-port height="10" pin="560,790" width="10" x="255" y="475"/> <circ-port height="8" pin="100,790" width="8" x="146" y="476"/> <circ-port height="10" pin="560,860" width="10" x="255" y="185"/> <circ-port height="10" pin="560,930" width="10" x="255" y="485"/> <circ-port height="8" pin="100,930" width="8" x="146" y="486"/> <circ-port height="10" pin="560,1000" width="10" x="255" y="195"/> <circ-port height="10" pin="560,1070" width="10" x="255" y="495"/> <circ-port height="8" pin="100,1070" width="8" x="146" y="496"/> <circ-port height="10" pin="560,1140" width="10" x="255" y="205"/> <circ-port height="10" pin="560,1210" width="10" x="255" y="505"/> <circ-port height="8" pin="100,1210" width="8" x="146" y="506"/> <circ-port height="10" pin="560,1280" width="10" x="255" y="215"/> <circ-port height="10" pin="560,1350" width="10" x="255" y="515"/> <circ-port height="8" pin="100,1350" width="8" x="146" y="516"/> <circ-port height="10" pin="560,1420" width="10" x="255" y="225"/> <circ-port height="10" pin="560,1490" width="10" x="255" y="525"/> <circ-port height="8" pin="100,1490" width="8" x="146" y="526"/> <circ-port height="10" pin="560,1560" width="10" x="255" y="235"/> <circ-port height="10" pin="560,1630" width="10" x="255" y="535"/> <circ-port height="8" pin="100,1680" width="8" x="146" y="576"/> <circ-port height="8" pin="100,1630" width="8" x="146" y="536"/> <circ-anchor facing="east" height="6" width="6" x="197" y="117"/> </appear> <wire from="(290,1230)" to="(290,1370)"/> <wire from="(290,670)" to="(290,810)"/> <wire from="(460,380)" to="(510,380)"/> <wire from="(360,580)" to="(360,720)"/> <wire from="(460,940)" to="(510,940)"/> <wire from="(460,1500)" to="(510,1500)"/> <wire from="(360,1140)" to="(360,1280)"/> <wire from="(460,520)" to="(460,660)"/> <wire from="(460,1080)" to="(460,1220)"/> <wire from="(460,1640)" to="(460,1780)"/> <wire from="(340,660)" to="(390,660)"/> <wire from="(340,1220)" to="(390,1220)"/> <wire from="(100,180)" to="(150,180)"/> <wire from="(210,350)" to="(210,490)"/> <wire from="(210,910)" to="(210,1050)"/> <wire from="(210,1470)" to="(210,1610)"/> <wire from="(330,490)" to="(330,510)"/> <wire from="(330,1610)" to="(330,1630)"/> <wire from="(330,1050)" to="(330,1070)"/> <wire from="(290,1650)" to="(290,1680)"/> <wire from="(400,1050)" to="(440,1050)"/> <wire from="(400,490)" to="(440,490)"/> <wire from="(400,1610)" to="(440,1610)"/> <wire from="(150,180)" to="(150,1300)"/> <wire from="(480,500)" to="(510,500)"/> <wire from="(480,1060)" to="(510,1060)"/> <wire from="(480,1620)" to="(510,1620)"/> <wire from="(100,1740)" to="(440,1740)"/> <wire from="(390,470)" to="(390,520)"/> <wire from="(390,1590)" to="(390,1640)"/> <wire from="(390,1030)" to="(390,1080)"/> <wire from="(480,580)" to="(560,580)"/> <wire from="(480,1140)" to="(560,1140)"/> <wire from="(480,720)" to="(480,780)"/> <wire from="(480,160)" to="(480,220)"/> <wire from="(480,1280)" to="(480,1340)"/> <wire from="(550,510)" to="(560,510)"/> <wire from="(550,1070)" to="(560,1070)"/> <wire from="(550,1630)" to="(560,1630)"/> <wire from="(410,890)" to="(410,960)"/> <wire from="(410,330)" to="(410,400)"/> <wire from="(410,1450)" to="(410,1520)"/> <wire from="(270,1190)" to="(330,1190)"/> <wire from="(270,630)" to="(330,630)"/> <wire from="(210,80)" to="(210,210)"/> <wire from="(420,300)" to="(480,300)"/> <wire from="(420,860)" to="(480,860)"/> <wire from="(420,1420)" to="(480,1420)"/> <wire from="(440,630)" to="(440,770)"/> <wire from="(400,1170)" to="(400,1190)"/> <wire from="(400,610)" to="(400,630)"/> <wire from="(100,320)" to="(140,320)"/> <wire from="(440,120)" to="(440,210)"/> <wire from="(290,530)" to="(310,530)"/> <wire from="(290,1090)" to="(310,1090)"/> <wire from="(360,440)" to="(380,440)"/> <wire from="(360,1000)" to="(380,1000)"/> <wire from="(100,600)" to="(380,600)"/> <wire from="(290,1650)" to="(310,1650)"/> <wire from="(100,1160)" to="(380,1160)"/> <wire from="(360,1560)" to="(380,1560)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(210,770)" to="(230,770)"/> <wire from="(210,1330)" to="(230,1330)"/> <wire from="(100,1210)" to="(230,1210)"/> <wire from="(360,40)" to="(360,160)"/> <wire from="(340,260)" to="(410,260)"/> <wire from="(340,1380)" to="(410,1380)"/> <wire from="(340,820)" to="(410,820)"/> <wire from="(100,650)" to="(230,650)"/> <wire from="(100,1680)" to="(290,1680)"/> <wire from="(290,530)" to="(290,670)"/> <wire from="(290,1090)" to="(290,1230)"/> <wire from="(460,800)" to="(510,800)"/> <wire from="(460,1360)" to="(510,1360)"/> <wire from="(360,1000)" to="(360,1140)"/> <wire from="(460,240)" to="(510,240)"/> <wire from="(360,440)" to="(360,580)"/> <wire from="(460,1500)" to="(460,1640)"/> <wire from="(340,1080)" to="(390,1080)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(460,380)" to="(460,520)"/> <wire from="(340,1640)" to="(390,1640)"/> <wire from="(460,940)" to="(460,1080)"/> <wire from="(100,40)" to="(150,40)"/> <wire from="(210,210)" to="(210,350)"/> <wire from="(210,770)" to="(210,910)"/> <wire from="(210,1330)" to="(210,1470)"/> <wire from="(330,350)" to="(330,370)"/> <wire from="(330,1470)" to="(330,1490)"/> <wire from="(330,910)" to="(330,930)"/> <wire from="(400,910)" to="(440,910)"/> <wire from="(400,350)" to="(440,350)"/> <wire from="(400,1470)" to="(440,1470)"/> <wire from="(100,460)" to="(130,460)"/> <wire from="(480,360)" to="(510,360)"/> <wire from="(480,920)" to="(510,920)"/> <wire from="(480,1480)" to="(510,1480)"/> <wire from="(390,330)" to="(390,380)"/> <wire from="(390,1450)" to="(390,1500)"/> <wire from="(390,890)" to="(390,940)"/> <wire from="(480,440)" to="(560,440)"/> <wire from="(480,1000)" to="(560,1000)"/> <wire from="(480,1560)" to="(560,1560)"/> <wire from="(480,580)" to="(480,640)"/> <wire from="(480,1140)" to="(480,1200)"/> <wire from="(550,370)" to="(560,370)"/> <wire from="(550,930)" to="(560,930)"/> <wire from="(550,1490)" to="(560,1490)"/> <wire from="(170,40)" to="(360,40)"/> <wire from="(410,190)" to="(410,260)"/> <wire from="(270,490)" to="(330,490)"/> <wire from="(410,750)" to="(410,820)"/> <wire from="(410,1310)" to="(410,1380)"/> <wire from="(270,1610)" to="(330,1610)"/> <wire from="(270,1050)" to="(330,1050)"/> <wire from="(420,720)" to="(480,720)"/> <wire from="(420,160)" to="(480,160)"/> <wire from="(420,1280)" to="(480,1280)"/> <wire from="(440,1610)" to="(440,1740)"/> <wire from="(440,490)" to="(440,630)"/> <wire from="(440,1050)" to="(440,1190)"/> <wire from="(400,1030)" to="(400,1050)"/> <wire from="(400,470)" to="(400,490)"/> <wire from="(400,1590)" to="(400,1610)"/> <wire from="(100,80)" to="(210,80)"/> <wire from="(140,320)" to="(140,1440)"/> <wire from="(290,390)" to="(310,390)"/> <wire from="(290,950)" to="(310,950)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(360,860)" to="(380,860)"/> <wire from="(290,1510)" to="(310,1510)"/> <wire from="(100,1020)" to="(380,1020)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(210,630)" to="(230,630)"/> <wire from="(210,1190)" to="(230,1190)"/> <wire from="(100,1630)" to="(230,1630)"/> <wire from="(100,1070)" to="(230,1070)"/> <wire from="(100,510)" to="(230,510)"/> <wire from="(340,680)" to="(410,680)"/> <wire from="(340,1240)" to="(410,1240)"/> <wire from="(290,390)" to="(290,530)"/> <wire from="(290,950)" to="(290,1090)"/> <wire from="(360,300)" to="(360,440)"/> <wire from="(360,860)" to="(360,1000)"/> <wire from="(460,660)" to="(510,660)"/> <wire from="(460,1220)" to="(510,1220)"/> <wire from="(290,1510)" to="(290,1650)"/> <wire from="(360,1420)" to="(360,1560)"/> <wire from="(460,1360)" to="(460,1500)"/> <wire from="(340,940)" to="(390,940)"/> <wire from="(340,380)" to="(390,380)"/> <wire from="(460,240)" to="(460,380)"/> <wire from="(340,1500)" to="(390,1500)"/> <wire from="(460,800)" to="(460,940)"/> <wire from="(210,630)" to="(210,770)"/> <wire from="(210,1190)" to="(210,1330)"/> <wire from="(330,210)" to="(330,230)"/> <wire from="(330,1330)" to="(330,1350)"/> <wire from="(330,770)" to="(330,790)"/> <wire from="(400,770)" to="(440,770)"/> <wire from="(400,210)" to="(440,210)"/> <wire from="(400,1330)" to="(440,1330)"/> <wire from="(480,220)" to="(510,220)"/> <wire from="(480,780)" to="(510,780)"/> <wire from="(480,1340)" to="(510,1340)"/> <wire from="(480,1560)" to="(480,1620)"/> <wire from="(390,1310)" to="(390,1360)"/> <wire from="(390,750)" to="(390,800)"/> <wire from="(480,300)" to="(560,300)"/> <wire from="(480,860)" to="(560,860)"/> <wire from="(480,1420)" to="(560,1420)"/> <wire from="(390,190)" to="(390,240)"/> <wire from="(480,440)" to="(480,500)"/> <wire from="(480,1000)" to="(480,1060)"/> <wire from="(550,790)" to="(560,790)"/> <wire from="(550,230)" to="(560,230)"/> <wire from="(550,1350)" to="(560,1350)"/> <wire from="(410,1170)" to="(410,1240)"/> <wire from="(410,610)" to="(410,680)"/> <wire from="(270,1470)" to="(330,1470)"/> <wire from="(270,910)" to="(330,910)"/> <wire from="(270,350)" to="(330,350)"/> <wire from="(420,580)" to="(480,580)"/> <wire from="(420,1140)" to="(480,1140)"/> <wire from="(440,350)" to="(440,490)"/> <wire from="(440,910)" to="(440,1050)"/> <wire from="(440,1470)" to="(440,1610)"/> <wire from="(400,890)" to="(400,910)"/> <wire from="(400,330)" to="(400,350)"/> <wire from="(400,1450)" to="(400,1470)"/> <wire from="(290,250)" to="(310,250)"/> <wire from="(290,810)" to="(310,810)"/> <wire from="(360,160)" to="(380,160)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(290,1370)" to="(310,1370)"/> <wire from="(100,880)" to="(380,880)"/> <wire from="(360,1280)" to="(380,1280)"/> <wire from="(210,490)" to="(230,490)"/> <wire from="(210,1610)" to="(230,1610)"/> <wire from="(210,1050)" to="(230,1050)"/> <wire from="(100,930)" to="(230,930)"/> <wire from="(100,1490)" to="(230,1490)"/> <wire from="(100,370)" to="(230,370)"/> <wire from="(340,540)" to="(410,540)"/> <wire from="(340,1660)" to="(410,1660)"/> <wire from="(340,1100)" to="(410,1100)"/> <wire from="(130,460)" to="(380,460)"/> <wire from="(130,1580)" to="(380,1580)"/> <wire from="(290,250)" to="(290,390)"/> <wire from="(290,810)" to="(290,950)"/> <wire from="(360,160)" to="(360,300)"/> <wire from="(360,720)" to="(360,860)"/> <wire from="(460,1080)" to="(510,1080)"/> <wire from="(460,520)" to="(510,520)"/> <wire from="(460,1640)" to="(510,1640)"/> <wire from="(290,1370)" to="(290,1510)"/> <wire from="(360,1280)" to="(360,1420)"/> <wire from="(460,660)" to="(460,800)"/> <wire from="(460,1220)" to="(460,1360)"/> <wire from="(340,240)" to="(390,240)"/> <wire from="(340,1360)" to="(390,1360)"/> <wire from="(340,800)" to="(390,800)"/> <wire from="(210,490)" to="(210,630)"/> <wire from="(210,1050)" to="(210,1190)"/> <wire from="(330,1190)" to="(330,1210)"/> <wire from="(330,630)" to="(330,650)"/> <wire from="(140,320)" to="(380,320)"/> <wire from="(140,1440)" to="(380,1440)"/> <wire from="(150,180)" to="(380,180)"/> <wire from="(150,1300)" to="(380,1300)"/> <wire from="(100,1780)" to="(460,1780)"/> <wire from="(400,1190)" to="(440,1190)"/> <wire from="(400,630)" to="(440,630)"/> <wire from="(130,460)" to="(130,1580)"/> <wire from="(480,640)" to="(510,640)"/> <wire from="(480,1200)" to="(510,1200)"/> <wire from="(100,120)" to="(440,120)"/> <wire from="(390,610)" to="(390,660)"/> <wire from="(390,1170)" to="(390,1220)"/> <wire from="(480,720)" to="(560,720)"/> <wire from="(480,160)" to="(560,160)"/> <wire from="(480,1280)" to="(560,1280)"/> <wire from="(480,860)" to="(480,920)"/> <wire from="(480,300)" to="(480,360)"/> <wire from="(480,1420)" to="(480,1480)"/> <wire from="(550,650)" to="(560,650)"/> <wire from="(550,1210)" to="(560,1210)"/> <wire from="(270,210)" to="(330,210)"/> <wire from="(410,470)" to="(410,540)"/> <wire from="(410,1030)" to="(410,1100)"/> <wire from="(410,1590)" to="(410,1660)"/> <wire from="(270,1330)" to="(330,1330)"/> <wire from="(270,770)" to="(330,770)"/> <wire from="(420,440)" to="(480,440)"/> <wire from="(420,1000)" to="(480,1000)"/> <wire from="(420,1560)" to="(480,1560)"/> <wire from="(440,210)" to="(440,350)"/> <wire from="(440,770)" to="(440,910)"/> <wire from="(440,1330)" to="(440,1470)"/> <wire from="(400,750)" to="(400,770)"/> <wire from="(400,190)" to="(400,210)"/> <wire from="(400,1310)" to="(400,1330)"/> <wire from="(290,670)" to="(310,670)"/> <wire from="(290,1230)" to="(310,1230)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(100,740)" to="(380,740)"/> <wire from="(210,350)" to="(230,350)"/> <wire from="(210,910)" to="(230,910)"/> <wire from="(210,1470)" to="(230,1470)"/> <wire from="(100,1350)" to="(230,1350)"/> <wire from="(100,230)" to="(230,230)"/> <wire from="(340,400)" to="(410,400)"/> <wire from="(340,960)" to="(410,960)"/> <wire from="(340,1520)" to="(410,1520)"/> <wire from="(100,790)" to="(230,790)"/> <comp lib="2" loc="(310,1370)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(420,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F10"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(91,158)" name="Text"> <a name="text" val="W4006 SQUARE1"/> </comp> <comp lib="6" loc="(286,64)" name="Text"> <a name="text" val="if /sum 1 reset latch"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(550,1070)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum2"/> </comp> <comp lib="6" loc="(91,146)" name="Text"> <a name="text" val="W4002 SQUARE0"/> </comp> <comp lib="1" loc="(550,370)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,810)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum0"/> </comp> <comp lib="0" loc="(100,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="6" loc="(155,1727)" name="Text"> <a name="text" val="W4007 SQUARE1"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4002"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum1"/> </comp> <comp lib="4" loc="(270,350)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK13"/> </comp> <comp lib="4" loc="(420,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(560,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(100,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum8"/> </comp> <comp lib="0" loc="(560,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,1630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU10"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,1050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(560,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,1490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="2" loc="(310,1090)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,1780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D/I"/> </comp> <comp lib="6" loc="(155,1715)" name="Text"> <a name="text" val="W4003 SQUARE0"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="2" loc="(310,1510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(270,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(170,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(560,930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(270,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum9"/> </comp> <comp lib="2" loc="(310,670)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(560,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1000)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(100,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="1" loc="(550,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,230)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,650)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum4"/> </comp> <comp lib="0" loc="(560,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DO_SWEEP"/> </comp> <comp lib="0" loc="(560,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(159,25)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,1420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,1280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum6"/> </comp> <comp lib="4" loc="(270,630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum10"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="6" loc="(289,82)" name="Text"> <a name="text" val="if /sum 0 preset latch"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(550,1490)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,1350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,390)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(420,1560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,1190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(550,790)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum7"/> </comp> <comp lib="2" loc="(310,530)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,1630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1650)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(420,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,250)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,1210)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum5"/> </comp> <comp lib="2" loc="(310,950)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum3"/> </comp> </circuit> <circuit name="SQUARE_BARREL_SHIFTER"> <a name="circuit" val="SQUARE_BARREL_SHIFTER"/> <a name="clabel" val="BARREL SHIFTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M110,110 Q114,120 118,110" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffc8a6" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="110"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="144">S0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="244">S10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="144">MUI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">MUI10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="324">DEC/INC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="344">SR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="364">SR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="384">SR2</text> <circ-port height="8" pin="80,70" width="8" x="46" y="136"/> <circ-port height="8" pin="80,160" width="8" x="46" y="146"/> <circ-port height="8" pin="80,250" width="8" x="46" y="156"/> <circ-port height="8" pin="80,340" width="8" x="46" y="166"/> <circ-port height="8" pin="80,430" width="8" x="46" y="176"/> <circ-port height="8" pin="80,520" width="8" x="46" y="186"/> <circ-port height="8" pin="80,610" width="8" x="46" y="196"/> <circ-port height="8" pin="80,700" width="8" x="46" y="206"/> <circ-port height="8" pin="80,790" width="8" x="46" y="216"/> <circ-port height="8" pin="80,880" width="8" x="46" y="226"/> <circ-port height="8" pin="80,970" width="8" x="46" y="236"/> <circ-port height="8" pin="80,1040" width="8" x="46" y="316"/> <circ-port height="8" pin="80,1080" width="8" x="46" y="336"/> <circ-port height="8" pin="80,1110" width="8" x="46" y="356"/> <circ-port height="8" pin="80,1140" width="8" x="46" y="376"/> <circ-port height="10" pin="670,100" width="10" x="195" y="135"/> <circ-port height="10" pin="670,190" width="10" x="195" y="145"/> <circ-port height="10" pin="670,280" width="10" x="195" y="155"/> <circ-port height="10" pin="670,370" width="10" x="195" y="165"/> <circ-port height="10" pin="670,460" width="10" x="195" y="175"/> <circ-port height="10" pin="670,550" width="10" x="195" y="185"/> <circ-port height="10" pin="670,640" width="10" x="195" y="195"/> <circ-port height="10" pin="670,730" width="10" x="195" y="205"/> <circ-port height="10" pin="670,820" width="10" x="195" y="215"/> <circ-port height="10" pin="670,910" width="10" x="195" y="225"/> <circ-port height="10" pin="670,1000" width="10" x="195" y="235"/> <circ-anchor facing="east" height="6" width="6" x="87" y="107"/> </appear> <wire from="(110,900)" to="(110,970)"/> <wire from="(420,180)" to="(610,180)"/> <wire from="(110,540)" to="(110,610)"/> <wire from="(110,180)" to="(110,250)"/> <wire from="(420,540)" to="(470,540)"/> <wire from="(550,900)" to="(610,900)"/> <wire from="(490,630)" to="(610,630)"/> <wire from="(620,530)" to="(620,620)"/> <wire from="(620,890)" to="(620,980)"/> <wire from="(620,170)" to="(620,260)"/> <wire from="(590,740)" to="(590,830)"/> <wire from="(510,380)" to="(510,720)"/> <wire from="(420,810)" to="(530,810)"/> <wire from="(140,330)" to="(140,420)"/> <wire from="(140,690)" to="(140,780)"/> <wire from="(160,170)" to="(390,170)"/> <wire from="(400,430)" to="(400,520)"/> <wire from="(400,790)" to="(400,880)"/> <wire from="(160,260)" to="(190,260)"/> <wire from="(210,190)" to="(210,350)"/> <wire from="(80,340)" to="(110,340)"/> <wire from="(80,700)" to="(110,700)"/> <wire from="(290,550)" to="(290,710)"/> <wire from="(160,530)" to="(250,530)"/> <wire from="(590,740)" to="(610,740)"/> <wire from="(640,820)" to="(670,820)"/> <wire from="(160,800)" to="(310,800)"/> <wire from="(370,1000)" to="(390,1000)"/> <wire from="(640,100)" to="(670,100)"/> <wire from="(640,460)" to="(670,460)"/> <wire from="(110,540)" to="(130,540)"/> <wire from="(110,180)" to="(130,180)"/> <wire from="(110,340)" to="(130,340)"/> <wire from="(110,700)" to="(130,700)"/> <wire from="(110,900)" to="(130,900)"/> <wire from="(110,990)" to="(110,1040)"/> <wire from="(140,100)" to="(140,150)"/> <wire from="(470,200)" to="(610,200)"/> <wire from="(530,470)" to="(610,470)"/> <wire from="(330,730)" to="(390,730)"/> <wire from="(330,890)" to="(390,890)"/> <wire from="(420,270)" to="(610,270)"/> <wire from="(80,1080)" to="(140,1080)"/> <wire from="(110,270)" to="(110,340)"/> <wire from="(110,630)" to="(110,700)"/> <wire from="(270,460)" to="(390,460)"/> <wire from="(270,620)" to="(390,620)"/> <wire from="(210,190)" to="(390,190)"/> <wire from="(210,350)" to="(390,350)"/> <wire from="(570,990)" to="(610,990)"/> <wire from="(620,620)" to="(620,710)"/> <wire from="(590,830)" to="(590,920)"/> <wire from="(490,290)" to="(490,630)"/> <wire from="(620,260)" to="(620,350)"/> <wire from="(510,720)" to="(610,720)"/> <wire from="(140,780)" to="(140,870)"/> <wire from="(140,420)" to="(140,510)"/> <wire from="(400,880)" to="(400,970)"/> <wire from="(400,160)" to="(400,250)"/> <wire from="(400,520)" to="(400,610)"/> <wire from="(570,650)" to="(570,990)"/> <wire from="(420,720)" to="(510,720)"/> <wire from="(370,1040)" to="(590,1040)"/> <wire from="(190,100)" to="(190,260)"/> <wire from="(80,790)" to="(110,790)"/> <wire from="(80,430)" to="(110,430)"/> <wire from="(270,460)" to="(270,620)"/> <wire from="(420,450)" to="(450,450)"/> <wire from="(590,830)" to="(610,830)"/> <wire from="(350,820)" to="(350,980)"/> <wire from="(450,450)" to="(610,450)"/> <wire from="(640,910)" to="(670,910)"/> <wire from="(640,550)" to="(670,550)"/> <wire from="(640,190)" to="(670,190)"/> <wire from="(420,990)" to="(570,990)"/> <wire from="(110,270)" to="(130,270)"/> <wire from="(110,430)" to="(130,430)"/> <wire from="(110,630)" to="(130,630)"/> <wire from="(110,990)" to="(130,990)"/> <wire from="(110,790)" to="(130,790)"/> <wire from="(160,440)" to="(230,440)"/> <wire from="(160,710)" to="(290,710)"/> <wire from="(160,980)" to="(350,980)"/> <wire from="(80,1110)" to="(400,1110)"/> <wire from="(110,720)" to="(110,790)"/> <wire from="(420,360)" to="(610,360)"/> <wire from="(110,360)" to="(110,430)"/> <wire from="(550,560)" to="(610,560)"/> <wire from="(490,290)" to="(610,290)"/> <wire from="(620,350)" to="(620,440)"/> <wire from="(620,710)" to="(620,800)"/> <wire from="(590,920)" to="(590,1010)"/> <wire from="(470,200)" to="(470,540)"/> <wire from="(590,1010)" to="(590,1040)"/> <wire from="(140,510)" to="(140,600)"/> <wire from="(290,550)" to="(390,550)"/> <wire from="(290,710)" to="(390,710)"/> <wire from="(140,150)" to="(140,240)"/> <wire from="(140,870)" to="(140,960)"/> <wire from="(400,610)" to="(400,700)"/> <wire from="(550,560)" to="(550,900)"/> <wire from="(400,250)" to="(400,340)"/> <wire from="(350,820)" to="(390,820)"/> <wire from="(350,980)" to="(390,980)"/> <wire from="(80,520)" to="(110,520)"/> <wire from="(230,280)" to="(390,280)"/> <wire from="(250,370)" to="(250,530)"/> <wire from="(230,440)" to="(390,440)"/> <wire from="(80,160)" to="(110,160)"/> <wire from="(80,880)" to="(110,880)"/> <wire from="(80,1040)" to="(110,1040)"/> <wire from="(330,730)" to="(330,890)"/> <wire from="(590,920)" to="(610,920)"/> <wire from="(640,1000)" to="(670,1000)"/> <wire from="(640,640)" to="(670,640)"/> <wire from="(620,980)" to="(620,1140)"/> <wire from="(640,280)" to="(670,280)"/> <wire from="(110,160)" to="(130,160)"/> <wire from="(110,360)" to="(130,360)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(110,720)" to="(130,720)"/> <wire from="(110,880)" to="(130,880)"/> <wire from="(470,540)" to="(610,540)"/> <wire from="(530,810)" to="(610,810)"/> <wire from="(420,900)" to="(550,900)"/> <wire from="(620,120)" to="(620,170)"/> <wire from="(420,630)" to="(490,630)"/> <wire from="(110,1040)" to="(370,1040)"/> <wire from="(110,810)" to="(110,880)"/> <wire from="(420,90)" to="(610,90)"/> <wire from="(110,450)" to="(110,520)"/> <wire from="(110,90)" to="(110,160)"/> <wire from="(400,970)" to="(400,1110)"/> <wire from="(160,350)" to="(210,350)"/> <wire from="(80,70)" to="(130,70)"/> <wire from="(160,620)" to="(270,620)"/> <wire from="(570,650)" to="(610,650)"/> <wire from="(450,110)" to="(450,450)"/> <wire from="(620,800)" to="(620,890)"/> <wire from="(620,440)" to="(620,530)"/> <wire from="(160,890)" to="(330,890)"/> <wire from="(140,240)" to="(140,330)"/> <wire from="(140,600)" to="(140,690)"/> <wire from="(160,80)" to="(390,80)"/> <wire from="(510,380)" to="(610,380)"/> <wire from="(400,340)" to="(400,430)"/> <wire from="(400,700)" to="(400,790)"/> <wire from="(370,910)" to="(370,1000)"/> <wire from="(530,470)" to="(530,810)"/> <wire from="(230,280)" to="(230,440)"/> <wire from="(80,250)" to="(110,250)"/> <wire from="(80,970)" to="(110,970)"/> <wire from="(80,610)" to="(110,610)"/> <wire from="(590,1010)" to="(610,1010)"/> <wire from="(310,640)" to="(310,800)"/> <wire from="(450,110)" to="(610,110)"/> <wire from="(80,1140)" to="(620,1140)"/> <wire from="(640,730)" to="(670,730)"/> <wire from="(370,910)" to="(390,910)"/> <wire from="(640,370)" to="(670,370)"/> <wire from="(110,450)" to="(130,450)"/> <wire from="(110,610)" to="(130,610)"/> <wire from="(110,90)" to="(130,90)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(370,1000)" to="(370,1040)"/> <wire from="(110,810)" to="(130,810)"/> <wire from="(110,970)" to="(130,970)"/> <wire from="(250,370)" to="(390,370)"/> <wire from="(250,530)" to="(390,530)"/> <wire from="(400,110)" to="(400,160)"/> <wire from="(310,640)" to="(390,640)"/> <wire from="(310,800)" to="(390,800)"/> <wire from="(140,960)" to="(140,1080)"/> <wire from="(190,100)" to="(390,100)"/> <wire from="(190,260)" to="(390,260)"/> <comp lib="2" loc="(420,900)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,360)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI4"/> </comp> <comp lib="0" loc="(670,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,620)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI1"/> </comp> <comp lib="2" loc="(420,450)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,720)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,800)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S4"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,890)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI8"/> </comp> <comp lib="0" loc="(670,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S5"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(640,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR0"/> </comp> <comp lib="0" loc="(670,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S7"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(640,100)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,820)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,80)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI9"/> </comp> <comp lib="0" loc="(670,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S8"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(420,990)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,260)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI0"/> </comp> <comp lib="0" loc="(80,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI3"/> </comp> <comp lib="0" loc="(80,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR1"/> </comp> <comp lib="2" loc="(640,910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S10"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,170)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,1000)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S3"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(420,180)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,90)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,270)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI10"/> </comp> <comp lib="2" loc="(640,550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI5"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI6"/> </comp> <comp lib="0" loc="(670,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(670,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dec/Inc"/> </comp> <comp lib="2" loc="(160,980)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI2"/> </comp> <comp lib="2" loc="(640,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR2"/> </comp> <comp lib="0" loc="(670,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S6"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(640,190)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI7"/> </comp> <comp lib="2" loc="(420,810)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,440)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,370)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> </circuit> <circuit name="SQUARE_ADDER"> <a name="circuit" val="SQUARE_ADDER"/> <a name="clabel" val="SQUARE ADDER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M220,30 Q224,41 229,31" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#54ff57" height="520" stroke="#000000" stroke-width="2" width="110" x="180" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="55">/CIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="94">FX0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="394">SX0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="264" y="394">/SUM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="264" y="534">/COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="494">/SUM10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="201" y="494">SX10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="201" y="194">FX10</text> <circ-port height="8" pin="160,60" width="8" x="176" y="46"/> <circ-port height="8" pin="160,100" width="8" x="176" y="86"/> <circ-port height="10" pin="630,390" width="10" x="285" y="385"/> <circ-port height="8" pin="160,260" width="8" x="176" y="386"/> <circ-port height="8" pin="160,450" width="8" x="176" y="96"/> <circ-port height="10" pin="630,740" width="10" x="285" y="395"/> <circ-port height="8" pin="160,610" width="8" x="176" y="396"/> <circ-port height="8" pin="160,800" width="8" x="176" y="106"/> <circ-port height="10" pin="630,1090" width="10" x="285" y="405"/> <circ-port height="8" pin="160,960" width="8" x="176" y="406"/> <circ-port height="8" pin="160,1150" width="8" x="176" y="116"/> <circ-port height="10" pin="630,1440" width="10" x="285" y="415"/> <circ-port height="8" pin="160,1310" width="8" x="176" y="416"/> <circ-port height="8" pin="160,1500" width="8" x="176" y="126"/> <circ-port height="10" pin="640,1790" width="10" x="285" y="425"/> <circ-port height="8" pin="160,1660" width="8" x="176" y="426"/> <circ-port height="8" pin="160,1850" width="8" x="176" y="136"/> <circ-port height="10" pin="640,2140" width="10" x="285" y="435"/> <circ-port height="8" pin="160,2010" width="8" x="176" y="436"/> <circ-port height="8" pin="160,2200" width="8" x="176" y="146"/> <circ-port height="10" pin="640,2490" width="10" x="285" y="445"/> <circ-port height="8" pin="160,2360" width="8" x="176" y="446"/> <circ-port height="8" pin="160,2550" width="8" x="176" y="156"/> <circ-port height="10" pin="640,2840" width="10" x="285" y="455"/> <circ-port height="8" pin="160,2710" width="8" x="176" y="456"/> <circ-port height="8" pin="160,2900" width="8" x="176" y="166"/> <circ-port height="10" pin="640,3190" width="10" x="285" y="465"/> <circ-port height="8" pin="160,3060" width="8" x="176" y="466"/> <circ-port height="8" pin="160,3250" width="8" x="176" y="176"/> <circ-port height="10" pin="640,3540" width="10" x="285" y="475"/> <circ-port height="8" pin="160,3410" width="8" x="176" y="476"/> <circ-port height="10" pin="640,3930" width="10" x="285" y="525"/> <circ-port height="8" pin="160,3600" width="8" x="176" y="186"/> <circ-port height="8" pin="160,3760" width="8" x="176" y="486"/> <circ-port height="10" pin="640,3890" width="10" x="285" y="485"/> <circ-anchor facing="east" height="6" width="6" x="227" y="27"/> </appear> <wire from="(520,3540)" to="(640,3540)"/> <wire from="(500,2420)" to="(500,2430)"/> <wire from="(540,3100)" to="(540,3110)"/> <wire from="(380,3640)" to="(380,3770)"/> <wire from="(330,3290)" to="(380,3290)"/> <wire from="(250,250)" to="(250,260)"/> <wire from="(580,2240)" to="(580,2370)"/> <wire from="(550,1890)" to="(550,2020)"/> <wire from="(340,800)" to="(460,800)"/> <wire from="(250,570)" to="(250,580)"/> <wire from="(250,1530)" to="(250,1540)"/> <wire from="(470,2160)" to="(510,2160)"/> <wire from="(500,1230)" to="(540,1230)"/> <wire from="(340,660)" to="(340,680)"/> <wire from="(510,760)" to="(510,970)"/> <wire from="(330,650)" to="(330,680)"/> <wire from="(370,880)" to="(370,970)"/> <wire from="(520,2120)" to="(520,2140)"/> <wire from="(250,1310)" to="(280,1310)"/> <wire from="(340,3600)" to="(340,3770)"/> <wire from="(460,3600)" to="(590,3600)"/> <wire from="(450,1270)" to="(530,1270)"/> <wire from="(490,1310)" to="(570,1310)"/> <wire from="(540,670)" to="(540,680)"/> <wire from="(570,1660)" to="(570,1670)"/> <wire from="(330,840)" to="(330,970)"/> <wire from="(160,3250)" to="(210,3250)"/> <wire from="(210,2900)" to="(210,2910)"/> <wire from="(290,1700)" to="(290,1710)"/> <wire from="(280,2010)" to="(280,2020)"/> <wire from="(380,3290)" to="(550,3290)"/> <wire from="(540,1720)" to="(580,1720)"/> <wire from="(520,1440)" to="(630,1440)"/> <wire from="(470,1810)" to="(470,2020)"/> <wire from="(530,660)" to="(530,680)"/> <wire from="(580,1350)" to="(580,1370)"/> <wire from="(500,180)" to="(500,270)"/> <wire from="(210,1150)" to="(300,1150)"/> <wire from="(290,2760)" to="(320,2760)"/> <wire from="(550,140)" to="(580,140)"/> <wire from="(330,1420)" to="(330,1460)"/> <wire from="(250,60)" to="(250,110)"/> <wire from="(250,2160)" to="(330,2160)"/> <wire from="(210,2580)" to="(210,2630)"/> <wire from="(530,1620)" to="(530,1670)"/> <wire from="(250,570)" to="(320,570)"/> <wire from="(500,1710)" to="(510,1710)"/> <wire from="(530,2060)" to="(540,2060)"/> <wire from="(520,2840)" to="(640,2840)"/> <wire from="(500,1720)" to="(500,1730)"/> <wire from="(540,2400)" to="(540,2410)"/> <wire from="(380,2940)" to="(380,3070)"/> <wire from="(330,2590)" to="(380,2590)"/> <wire from="(550,1190)" to="(550,1320)"/> <wire from="(580,1540)" to="(580,1670)"/> <wire from="(340,100)" to="(460,100)"/> <wire from="(250,830)" to="(250,840)"/> <wire from="(320,3460)" to="(320,3480)"/> <wire from="(510,60)" to="(510,270)"/> <wire from="(520,1420)" to="(520,1440)"/> <wire from="(500,530)" to="(540,530)"/> <wire from="(370,180)" to="(370,270)"/> <wire from="(470,1460)" to="(510,1460)"/> <wire from="(250,610)" to="(280,610)"/> <wire from="(340,2900)" to="(340,3070)"/> <wire from="(460,2900)" to="(590,2900)"/> <wire from="(450,570)" to="(530,570)"/> <wire from="(490,610)" to="(570,610)"/> <wire from="(320,3720)" to="(450,3720)"/> <wire from="(360,3760)" to="(490,3760)"/> <wire from="(500,3450)" to="(500,3460)"/> <wire from="(490,3760)" to="(490,3770)"/> <wire from="(570,960)" to="(570,970)"/> <wire from="(330,140)" to="(330,270)"/> <wire from="(160,2550)" to="(210,2550)"/> <wire from="(210,2200)" to="(210,2210)"/> <wire from="(280,1310)" to="(280,1320)"/> <wire from="(290,1000)" to="(290,1010)"/> <wire from="(460,3820)" to="(500,3820)"/> <wire from="(540,1020)" to="(580,1020)"/> <wire from="(380,2590)" to="(550,2590)"/> <wire from="(540,3680)" to="(540,3770)"/> <wire from="(470,1110)" to="(470,1320)"/> <wire from="(520,740)" to="(630,740)"/> <wire from="(510,3460)" to="(510,3480)"/> <wire from="(580,650)" to="(580,670)"/> <wire from="(590,3600)" to="(590,3770)"/> <wire from="(210,450)" to="(300,450)"/> <wire from="(290,2060)" to="(320,2060)"/> <wire from="(330,720)" to="(330,760)"/> <wire from="(330,3210)" to="(470,3210)"/> <wire from="(250,1460)" to="(330,1460)"/> <wire from="(280,3410)" to="(360,3410)"/> <wire from="(210,1880)" to="(210,1930)"/> <wire from="(450,3720)" to="(450,3770)"/> <wire from="(530,920)" to="(530,970)"/> <wire from="(530,1360)" to="(540,1360)"/> <wire from="(500,1010)" to="(510,1010)"/> <wire from="(520,2140)" to="(640,2140)"/> <wire from="(500,1020)" to="(500,1030)"/> <wire from="(540,1700)" to="(540,1710)"/> <wire from="(380,2240)" to="(380,2370)"/> <wire from="(250,130)" to="(250,140)"/> <wire from="(550,490)" to="(550,620)"/> <wire from="(580,840)" to="(580,970)"/> <wire from="(330,1890)" to="(380,1890)"/> <wire from="(370,3450)" to="(370,3460)"/> <wire from="(360,3760)" to="(360,3770)"/> <wire from="(320,2760)" to="(320,2780)"/> <wire from="(520,720)" to="(520,740)"/> <wire from="(470,760)" to="(510,760)"/> <wire from="(160,3410)" to="(250,3410)"/> <wire from="(460,3600)" to="(460,3770)"/> <wire from="(340,2200)" to="(340,2370)"/> <wire from="(320,3720)" to="(320,3770)"/> <wire from="(460,2200)" to="(590,2200)"/> <wire from="(320,3020)" to="(450,3020)"/> <wire from="(360,3060)" to="(490,3060)"/> <wire from="(500,2750)" to="(500,2760)"/> <wire from="(490,3060)" to="(490,3070)"/> <wire from="(570,260)" to="(570,270)"/> <wire from="(210,1500)" to="(210,1510)"/> <wire from="(160,1850)" to="(210,1850)"/> <wire from="(280,610)" to="(280,620)"/> <wire from="(290,300)" to="(290,310)"/> <wire from="(460,3120)" to="(500,3120)"/> <wire from="(540,320)" to="(580,320)"/> <wire from="(380,1890)" to="(550,1890)"/> <wire from="(540,2980)" to="(540,3070)"/> <wire from="(470,410)" to="(470,620)"/> <wire from="(510,2760)" to="(510,2780)"/> <wire from="(300,3600)" to="(340,3600)"/> <wire from="(590,2900)" to="(590,3070)"/> <wire from="(210,3330)" to="(370,3330)"/> <wire from="(290,1360)" to="(320,1360)"/> <wire from="(300,3250)" to="(300,3420)"/> <wire from="(210,1180)" to="(210,1230)"/> <wire from="(500,310)" to="(510,310)"/> <wire from="(330,2510)" to="(470,2510)"/> <wire from="(250,760)" to="(330,760)"/> <wire from="(280,2710)" to="(360,2710)"/> <wire from="(250,3640)" to="(330,3640)"/> <wire from="(450,3020)" to="(450,3070)"/> <wire from="(530,220)" to="(530,270)"/> <wire from="(530,660)" to="(540,660)"/> <wire from="(540,1000)" to="(540,1010)"/> <wire from="(380,1540)" to="(380,1670)"/> <wire from="(580,140)" to="(580,270)"/> <wire from="(330,1190)" to="(380,1190)"/> <wire from="(370,2750)" to="(370,2760)"/> <wire from="(360,3060)" to="(360,3070)"/> <wire from="(500,320)" to="(500,330)"/> <wire from="(320,2060)" to="(320,2080)"/> <wire from="(460,3800)" to="(460,3820)"/> <wire from="(470,60)" to="(510,60)"/> <wire from="(460,2900)" to="(460,3070)"/> <wire from="(340,3460)" to="(370,3460)"/> <wire from="(160,2710)" to="(250,2710)"/> <wire from="(340,1500)" to="(340,1670)"/> <wire from="(320,3020)" to="(320,3070)"/> <wire from="(360,2360)" to="(490,2360)"/> <wire from="(320,2320)" to="(450,2320)"/> <wire from="(370,3330)" to="(500,3330)"/> <wire from="(460,1500)" to="(590,1500)"/> <wire from="(500,2050)" to="(500,2060)"/> <wire from="(490,2360)" to="(490,2370)"/> <wire from="(210,800)" to="(210,810)"/> <wire from="(160,1150)" to="(210,1150)"/> <wire from="(250,3400)" to="(250,3410)"/> <wire from="(250,3720)" to="(250,3730)"/> <wire from="(460,2420)" to="(500,2420)"/> <wire from="(380,1190)" to="(550,1190)"/> <wire from="(540,2280)" to="(540,2370)"/> <wire from="(340,3810)" to="(340,3830)"/> <wire from="(330,3800)" to="(330,3830)"/> <wire from="(510,2060)" to="(510,2080)"/> <wire from="(300,2900)" to="(340,2900)"/> <wire from="(590,2200)" to="(590,2370)"/> <wire from="(210,2630)" to="(370,2630)"/> <wire from="(290,660)" to="(320,660)"/> <wire from="(300,2550)" to="(300,2720)"/> <wire from="(210,480)" to="(210,530)"/> <wire from="(330,1810)" to="(470,1810)"/> <wire from="(450,2320)" to="(450,2370)"/> <wire from="(250,2940)" to="(330,2940)"/> <wire from="(280,2010)" to="(360,2010)"/> <wire from="(540,3820)" to="(540,3830)"/> <wire from="(540,300)" to="(540,310)"/> <wire from="(380,840)" to="(380,970)"/> <wire from="(330,490)" to="(380,490)"/> <wire from="(360,2360)" to="(360,2370)"/> <wire from="(370,2050)" to="(370,2060)"/> <wire from="(320,1360)" to="(320,1380)"/> <wire from="(500,3330)" to="(500,3420)"/> <wire from="(460,3100)" to="(460,3120)"/> <wire from="(530,3810)" to="(530,3830)"/> <wire from="(460,2200)" to="(460,2370)"/> <wire from="(340,2760)" to="(370,2760)"/> <wire from="(160,2010)" to="(250,2010)"/> <wire from="(550,3290)" to="(580,3290)"/> <wire from="(340,800)" to="(340,970)"/> <wire from="(320,2320)" to="(320,2370)"/> <wire from="(250,3210)" to="(250,3260)"/> <wire from="(370,2630)" to="(500,2630)"/> <wire from="(360,1660)" to="(490,1660)"/> <wire from="(460,800)" to="(590,800)"/> <wire from="(320,1620)" to="(450,1620)"/> <wire from="(250,3720)" to="(320,3720)"/> <wire from="(500,1350)" to="(500,1360)"/> <wire from="(490,1660)" to="(490,1670)"/> <wire from="(210,100)" to="(210,110)"/> <wire from="(160,450)" to="(210,450)"/> <wire from="(340,3250)" to="(460,3250)"/> <wire from="(250,2700)" to="(250,2710)"/> <wire from="(250,3020)" to="(250,3030)"/> <wire from="(380,490)" to="(550,490)"/> <wire from="(500,3680)" to="(540,3680)"/> <wire from="(340,3110)" to="(340,3130)"/> <wire from="(540,1580)" to="(540,1670)"/> <wire from="(330,3100)" to="(330,3130)"/> <wire from="(510,3210)" to="(510,3420)"/> <wire from="(510,1360)" to="(510,1380)"/> <wire from="(300,2200)" to="(340,2200)"/> <wire from="(370,3330)" to="(370,3420)"/> <wire from="(460,1720)" to="(500,1720)"/> <wire from="(590,1500)" to="(590,1670)"/> <wire from="(210,1930)" to="(370,1930)"/> <wire from="(250,3760)" to="(280,3760)"/> <wire from="(300,1850)" to="(300,2020)"/> <wire from="(330,1110)" to="(470,1110)"/> <wire from="(250,2240)" to="(330,2240)"/> <wire from="(280,1310)" to="(360,1310)"/> <wire from="(450,1620)" to="(450,1670)"/> <wire from="(450,3720)" to="(530,3720)"/> <wire from="(490,3760)" to="(570,3760)"/> <wire from="(540,3120)" to="(540,3130)"/> <wire from="(330,3290)" to="(330,3420)"/> <wire from="(380,140)" to="(380,270)"/> <wire from="(370,1350)" to="(370,1360)"/> <wire from="(360,1660)" to="(360,1670)"/> <wire from="(320,660)" to="(320,680)"/> <wire from="(500,2630)" to="(500,2720)"/> <wire from="(460,2400)" to="(460,2420)"/> <wire from="(530,3110)" to="(530,3130)"/> <wire from="(580,3800)" to="(580,3820)"/> <wire from="(210,3600)" to="(300,3600)"/> <wire from="(340,2060)" to="(370,2060)"/> <wire from="(160,1310)" to="(250,1310)"/> <wire from="(550,2590)" to="(580,2590)"/> <wire from="(460,1500)" to="(460,1670)"/> <wire from="(340,100)" to="(340,270)"/> <wire from="(250,2510)" to="(250,2560)"/> <wire from="(320,1620)" to="(320,1670)"/> <wire from="(370,1930)" to="(500,1930)"/> <wire from="(460,100)" to="(590,100)"/> <wire from="(330,3870)" to="(330,3930)"/> <wire from="(360,960)" to="(490,960)"/> <wire from="(320,920)" to="(450,920)"/> <wire from="(250,3020)" to="(320,3020)"/> <wire from="(550,3640)" to="(550,3770)"/> <wire from="(500,650)" to="(500,660)"/> <wire from="(490,960)" to="(490,970)"/> <wire from="(250,2320)" to="(250,2330)"/> <wire from="(340,2550)" to="(460,2550)"/> <wire from="(250,2000)" to="(250,2010)"/> <wire from="(250,3280)" to="(250,3290)"/> <wire from="(500,2980)" to="(540,2980)"/> <wire from="(340,2410)" to="(340,2430)"/> <wire from="(540,880)" to="(540,970)"/> <wire from="(330,2400)" to="(330,2430)"/> <wire from="(510,2510)" to="(510,2720)"/> <wire from="(370,2630)" to="(370,2720)"/> <wire from="(510,660)" to="(510,680)"/> <wire from="(520,3870)" to="(520,3890)"/> <wire from="(300,1500)" to="(340,1500)"/> <wire from="(460,1020)" to="(500,1020)"/> <wire from="(210,1230)" to="(370,1230)"/> <wire from="(590,800)" to="(590,970)"/> <wire from="(250,3060)" to="(280,3060)"/> <wire from="(250,60)" to="(470,60)"/> <wire from="(300,1150)" to="(300,1320)"/> <wire from="(330,410)" to="(470,410)"/> <wire from="(280,610)" to="(360,610)"/> <wire from="(250,1540)" to="(330,1540)"/> <wire from="(450,920)" to="(450,970)"/> <wire from="(450,3020)" to="(530,3020)"/> <wire from="(490,3060)" to="(570,3060)"/> <wire from="(570,3410)" to="(570,3420)"/> <wire from="(540,2420)" to="(540,2430)"/> <wire from="(330,2590)" to="(330,2720)"/> <wire from="(290,3450)" to="(290,3460)"/> <wire from="(280,3760)" to="(280,3770)"/> <wire from="(360,960)" to="(360,970)"/> <wire from="(370,650)" to="(370,660)"/> <wire from="(540,3470)" to="(580,3470)"/> <wire from="(500,1930)" to="(500,2020)"/> <wire from="(460,1700)" to="(460,1720)"/> <wire from="(470,3560)" to="(470,3770)"/> <wire from="(530,2410)" to="(530,2430)"/> <wire from="(580,3100)" to="(580,3120)"/> <wire from="(210,2900)" to="(300,2900)"/> <wire from="(160,610)" to="(250,610)"/> <wire from="(340,1360)" to="(370,1360)"/> <wire from="(550,1890)" to="(580,1890)"/> <wire from="(460,800)" to="(460,970)"/> <wire from="(330,3170)" to="(330,3210)"/> <wire from="(250,1810)" to="(250,1860)"/> <wire from="(320,920)" to="(320,970)"/> <wire from="(370,1230)" to="(500,1230)"/> <wire from="(530,3370)" to="(530,3420)"/> <wire from="(360,260)" to="(490,260)"/> <wire from="(320,220)" to="(450,220)"/> <wire from="(250,2320)" to="(320,2320)"/> <wire from="(500,3460)" to="(510,3460)"/> <wire from="(530,3810)" to="(540,3810)"/> <wire from="(500,3470)" to="(500,3480)"/> <wire from="(580,3290)" to="(580,3420)"/> <wire from="(550,2940)" to="(550,3070)"/> <wire from="(490,260)" to="(490,270)"/> <wire from="(250,1300)" to="(250,1310)"/> <wire from="(250,1620)" to="(250,1630)"/> <wire from="(340,1850)" to="(460,1850)"/> <wire from="(250,2580)" to="(250,2590)"/> <wire from="(500,2280)" to="(540,2280)"/> <wire from="(470,3210)" to="(510,3210)"/> <wire from="(340,1710)" to="(340,1730)"/> <wire from="(540,180)" to="(540,270)"/> <wire from="(510,1810)" to="(510,2020)"/> <wire from="(330,1700)" to="(330,1730)"/> <wire from="(370,1930)" to="(370,2020)"/> <wire from="(300,800)" to="(340,800)"/> <wire from="(520,3170)" to="(520,3190)"/> <wire from="(460,320)" to="(500,320)"/> <wire from="(590,100)" to="(590,270)"/> <wire from="(210,530)" to="(370,530)"/> <wire from="(250,2360)" to="(280,2360)"/> <wire from="(300,450)" to="(300,620)"/> <wire from="(250,840)" to="(330,840)"/> <wire from="(450,220)" to="(450,270)"/> <wire from="(450,2320)" to="(530,2320)"/> <wire from="(490,2360)" to="(570,2360)"/> <wire from="(570,2710)" to="(570,2720)"/> <wire from="(540,1720)" to="(540,1730)"/> <wire from="(330,1890)" to="(330,2020)"/> <wire from="(290,2750)" to="(290,2760)"/> <wire from="(280,3060)" to="(280,3070)"/> <wire from="(360,260)" to="(360,270)"/> <wire from="(540,2770)" to="(580,2770)"/> <wire from="(500,1230)" to="(500,1320)"/> <wire from="(460,1000)" to="(460,1020)"/> <wire from="(470,2860)" to="(470,3070)"/> <wire from="(530,1710)" to="(530,1730)"/> <wire from="(580,2400)" to="(580,2420)"/> <wire from="(210,2200)" to="(300,2200)"/> <wire from="(290,3810)" to="(320,3810)"/> <wire from="(340,660)" to="(370,660)"/> <wire from="(550,1190)" to="(580,1190)"/> <wire from="(460,100)" to="(460,270)"/> <wire from="(330,2470)" to="(330,2510)"/> <wire from="(250,3210)" to="(330,3210)"/> <wire from="(250,1110)" to="(250,1160)"/> <wire from="(210,3630)" to="(210,3680)"/> <wire from="(320,220)" to="(320,270)"/> <wire from="(530,2670)" to="(530,2720)"/> <wire from="(370,530)" to="(500,530)"/> <wire from="(500,2760)" to="(510,2760)"/> <wire from="(250,1620)" to="(320,1620)"/> <wire from="(530,3110)" to="(540,3110)"/> <wire from="(520,3890)" to="(640,3890)"/> <wire from="(500,2770)" to="(500,2780)"/> <wire from="(540,3450)" to="(540,3460)"/> <wire from="(580,2590)" to="(580,2720)"/> <wire from="(330,3640)" to="(380,3640)"/> <wire from="(550,2240)" to="(550,2370)"/> <wire from="(340,1150)" to="(460,1150)"/> <wire from="(250,920)" to="(250,930)"/> <wire from="(250,600)" to="(250,610)"/> <wire from="(250,1880)" to="(250,1890)"/> <wire from="(470,2510)" to="(510,2510)"/> <wire from="(500,1580)" to="(540,1580)"/> <wire from="(340,1010)" to="(340,1030)"/> <wire from="(510,1110)" to="(510,1320)"/> <wire from="(330,1000)" to="(330,1030)"/> <wire from="(370,1230)" to="(370,1320)"/> <wire from="(300,100)" to="(340,100)"/> <wire from="(520,2470)" to="(520,2490)"/> <wire from="(250,1660)" to="(280,1660)"/> <wire from="(250,140)" to="(330,140)"/> <wire from="(450,1620)" to="(530,1620)"/> <wire from="(490,1660)" to="(570,1660)"/> <wire from="(540,1020)" to="(540,1030)"/> <wire from="(570,2010)" to="(570,2020)"/> <wire from="(330,1190)" to="(330,1320)"/> <wire from="(160,3600)" to="(210,3600)"/> <wire from="(210,3250)" to="(210,3260)"/> <wire from="(280,2360)" to="(280,2370)"/> <wire from="(290,2050)" to="(290,2060)"/> <wire from="(380,3640)" to="(550,3640)"/> <wire from="(540,2070)" to="(580,2070)"/> <wire from="(460,300)" to="(460,320)"/> <wire from="(470,2160)" to="(470,2370)"/> <wire from="(530,1010)" to="(530,1030)"/> <wire from="(500,530)" to="(500,620)"/> <wire from="(580,1700)" to="(580,1720)"/> <wire from="(210,1500)" to="(300,1500)"/> <wire from="(290,3110)" to="(320,3110)"/> <wire from="(550,490)" to="(580,490)"/> <wire from="(330,1770)" to="(330,1810)"/> <wire from="(250,410)" to="(250,460)"/> <wire from="(250,2510)" to="(330,2510)"/> <wire from="(210,2930)" to="(210,2980)"/> <wire from="(530,1970)" to="(530,2020)"/> <wire from="(250,920)" to="(320,920)"/> <wire from="(500,2060)" to="(510,2060)"/> <wire from="(530,2410)" to="(540,2410)"/> <wire from="(520,3190)" to="(640,3190)"/> <wire from="(500,2070)" to="(500,2080)"/> <wire from="(540,2750)" to="(540,2760)"/> <wire from="(380,3290)" to="(380,3420)"/> <wire from="(330,2940)" to="(380,2940)"/> <wire from="(250,220)" to="(250,230)"/> <wire from="(550,1540)" to="(550,1670)"/> <wire from="(580,1890)" to="(580,2020)"/> <wire from="(340,450)" to="(460,450)"/> <wire from="(250,1180)" to="(250,1190)"/> <wire from="(500,880)" to="(540,880)"/> <wire from="(470,1810)" to="(510,1810)"/> <wire from="(340,310)" to="(340,330)"/> <wire from="(320,3810)" to="(320,3830)"/> <wire from="(510,410)" to="(510,620)"/> <wire from="(330,300)" to="(330,330)"/> <wire from="(520,1770)" to="(520,1790)"/> <wire from="(370,530)" to="(370,620)"/> <wire from="(250,960)" to="(280,960)"/> <wire from="(340,3250)" to="(340,3420)"/> <wire from="(460,3250)" to="(590,3250)"/> <wire from="(450,920)" to="(530,920)"/> <wire from="(490,960)" to="(570,960)"/> <wire from="(540,320)" to="(540,330)"/> <wire from="(500,3800)" to="(500,3810)"/> <wire from="(570,1310)" to="(570,1320)"/> <wire from="(330,490)" to="(330,620)"/> <wire from="(160,2900)" to="(210,2900)"/> <wire from="(210,2550)" to="(210,2560)"/> <wire from="(290,1350)" to="(290,1360)"/> <wire from="(280,1660)" to="(280,1670)"/> <wire from="(540,1370)" to="(580,1370)"/> <wire from="(380,2940)" to="(550,2940)"/> <wire from="(470,1460)" to="(470,1670)"/> <wire from="(520,1090)" to="(630,1090)"/> <wire from="(530,310)" to="(530,330)"/> <wire from="(510,3810)" to="(510,3830)"/> <wire from="(580,1000)" to="(580,1020)"/> <wire from="(210,800)" to="(300,800)"/> <wire from="(290,2410)" to="(320,2410)"/> <wire from="(330,1070)" to="(330,1110)"/> <wire from="(330,3560)" to="(470,3560)"/> <wire from="(250,1810)" to="(330,1810)"/> <wire from="(210,2230)" to="(210,2280)"/> <wire from="(280,3760)" to="(360,3760)"/> <wire from="(250,220)" to="(320,220)"/> <wire from="(530,1270)" to="(530,1320)"/> <wire from="(500,1360)" to="(510,1360)"/> <wire from="(530,1710)" to="(540,1710)"/> <wire from="(520,2490)" to="(640,2490)"/> <wire from="(500,1370)" to="(500,1380)"/> <wire from="(540,2050)" to="(540,2060)"/> <wire from="(380,2590)" to="(380,2720)"/> <wire from="(330,2240)" to="(380,2240)"/> <wire from="(550,840)" to="(550,970)"/> <wire from="(580,1190)" to="(580,1320)"/> <wire from="(370,3800)" to="(370,3810)"/> <wire from="(250,480)" to="(250,490)"/> <wire from="(320,3110)" to="(320,3130)"/> <wire from="(520,1070)" to="(520,1090)"/> <wire from="(470,1110)" to="(510,1110)"/> <wire from="(500,180)" to="(540,180)"/> <wire from="(250,260)" to="(280,260)"/> <wire from="(160,3760)" to="(250,3760)"/> <wire from="(340,2550)" to="(340,2720)"/> <wire from="(460,2550)" to="(590,2550)"/> <wire from="(450,220)" to="(530,220)"/> <wire from="(490,260)" to="(570,260)"/> <wire from="(320,3370)" to="(450,3370)"/> <wire from="(360,3410)" to="(490,3410)"/> <wire from="(570,610)" to="(570,620)"/> <wire from="(500,3100)" to="(500,3110)"/> <wire from="(490,3410)" to="(490,3420)"/> <wire from="(160,2200)" to="(210,2200)"/> <wire from="(280,960)" to="(280,970)"/> <wire from="(290,650)" to="(290,660)"/> <wire from="(210,1850)" to="(210,1860)"/> <wire from="(380,2240)" to="(550,2240)"/> <wire from="(460,3470)" to="(500,3470)"/> <wire from="(540,670)" to="(580,670)"/> <wire from="(540,3330)" to="(540,3420)"/> <wire from="(470,760)" to="(470,970)"/> <wire from="(520,390)" to="(630,390)"/> <wire from="(580,300)" to="(580,320)"/> <wire from="(510,3110)" to="(510,3130)"/> <wire from="(590,3250)" to="(590,3420)"/> <wire from="(210,3680)" to="(370,3680)"/> <wire from="(210,100)" to="(300,100)"/> <wire from="(290,1710)" to="(320,1710)"/> <wire from="(300,3600)" to="(300,3770)"/> <wire from="(330,370)" to="(330,410)"/> <wire from="(500,660)" to="(510,660)"/> <wire from="(210,1530)" to="(210,1580)"/> <wire from="(330,2860)" to="(470,2860)"/> <wire from="(250,1110)" to="(330,1110)"/> <wire from="(280,3060)" to="(360,3060)"/> <wire from="(450,3370)" to="(450,3420)"/> <wire from="(530,570)" to="(530,620)"/> <wire from="(530,1010)" to="(540,1010)"/> <wire from="(520,1790)" to="(640,1790)"/> <wire from="(540,1350)" to="(540,1360)"/> <wire from="(380,1890)" to="(380,2020)"/> <wire from="(550,140)" to="(550,270)"/> <wire from="(580,490)" to="(580,620)"/> <wire from="(330,1540)" to="(380,1540)"/> <wire from="(370,3100)" to="(370,3110)"/> <wire from="(360,3410)" to="(360,3420)"/> <wire from="(500,670)" to="(500,680)"/> <wire from="(320,2410)" to="(320,2430)"/> <wire from="(520,370)" to="(520,390)"/> <wire from="(470,410)" to="(510,410)"/> <wire from="(460,3250)" to="(460,3420)"/> <wire from="(160,3060)" to="(250,3060)"/> <wire from="(340,3810)" to="(370,3810)"/> <wire from="(340,1850)" to="(340,2020)"/> <wire from="(320,3370)" to="(320,3420)"/> <wire from="(360,2710)" to="(490,2710)"/> <wire from="(320,2670)" to="(450,2670)"/> <wire from="(370,3680)" to="(500,3680)"/> <wire from="(460,1850)" to="(590,1850)"/> <wire from="(500,2400)" to="(500,2410)"/> <wire from="(490,2710)" to="(490,2720)"/> <wire from="(210,1150)" to="(210,1160)"/> <wire from="(160,1500)" to="(210,1500)"/> <wire from="(280,260)" to="(280,270)"/> <wire from="(250,3750)" to="(250,3760)"/> <wire from="(460,2770)" to="(500,2770)"/> <wire from="(380,1540)" to="(550,1540)"/> <wire from="(540,2630)" to="(540,2720)"/> <wire from="(470,60)" to="(470,270)"/> <wire from="(510,2410)" to="(510,2430)"/> <wire from="(300,3250)" to="(340,3250)"/> <wire from="(590,2550)" to="(590,2720)"/> <wire from="(210,2980)" to="(370,2980)"/> <wire from="(290,1010)" to="(320,1010)"/> <wire from="(300,2900)" to="(300,3070)"/> <wire from="(210,830)" to="(210,880)"/> <wire from="(330,2160)" to="(470,2160)"/> <wire from="(250,410)" to="(330,410)"/> <wire from="(280,2360)" to="(360,2360)"/> <wire from="(250,3290)" to="(330,3290)"/> <wire from="(450,2670)" to="(450,2720)"/> <wire from="(530,310)" to="(540,310)"/> <wire from="(540,650)" to="(540,660)"/> <wire from="(380,1190)" to="(380,1320)"/> <wire from="(330,840)" to="(380,840)"/> <wire from="(370,2400)" to="(370,2410)"/> <wire from="(360,2710)" to="(360,2720)"/> <wire from="(320,1710)" to="(320,1730)"/> <wire from="(500,3680)" to="(500,3770)"/> <wire from="(460,3450)" to="(460,3470)"/> <wire from="(460,2550)" to="(460,2720)"/> <wire from="(340,3110)" to="(370,3110)"/> <wire from="(160,2360)" to="(250,2360)"/> <wire from="(550,3640)" to="(580,3640)"/> <wire from="(340,1150)" to="(340,1320)"/> <wire from="(320,2670)" to="(320,2720)"/> <wire from="(250,3560)" to="(250,3610)"/> <wire from="(360,2010)" to="(490,2010)"/> <wire from="(370,2980)" to="(500,2980)"/> <wire from="(460,1150)" to="(590,1150)"/> <wire from="(320,1970)" to="(450,1970)"/> <wire from="(500,1700)" to="(500,1710)"/> <wire from="(490,2010)" to="(490,2020)"/> <wire from="(210,450)" to="(210,460)"/> <wire from="(160,800)" to="(210,800)"/> <wire from="(340,3600)" to="(460,3600)"/> <wire from="(250,3050)" to="(250,3060)"/> <wire from="(250,3370)" to="(250,3380)"/> <wire from="(380,840)" to="(550,840)"/> <wire from="(340,3460)" to="(340,3480)"/> <wire from="(540,1930)" to="(540,2020)"/> <wire from="(330,3450)" to="(330,3480)"/> <wire from="(510,3560)" to="(510,3770)"/> <wire from="(510,1710)" to="(510,1730)"/> <wire from="(300,2550)" to="(340,2550)"/> <wire from="(370,3680)" to="(370,3770)"/> <wire from="(460,2070)" to="(500,2070)"/> <wire from="(590,1850)" to="(590,2020)"/> <wire from="(210,2280)" to="(370,2280)"/> <wire from="(290,310)" to="(320,310)"/> <wire from="(300,2200)" to="(300,2370)"/> <wire from="(210,130)" to="(210,180)"/> <wire from="(330,1460)" to="(470,1460)"/> <wire from="(250,2590)" to="(330,2590)"/> <wire from="(280,1660)" to="(360,1660)"/> <wire from="(450,1970)" to="(450,2020)"/> <wire from="(540,3470)" to="(540,3480)"/> <wire from="(330,3640)" to="(330,3770)"/> <wire from="(380,490)" to="(380,620)"/> <wire from="(330,140)" to="(380,140)"/> <wire from="(370,1700)" to="(370,1710)"/> <wire from="(360,2010)" to="(360,2020)"/> <wire from="(320,1010)" to="(320,1030)"/> <wire from="(500,2980)" to="(500,3070)"/> <wire from="(460,2750)" to="(460,2770)"/> <wire from="(530,3460)" to="(530,3480)"/> <wire from="(340,2410)" to="(370,2410)"/> <wire from="(160,60)" to="(250,60)"/> <wire from="(160,1660)" to="(250,1660)"/> <wire from="(550,2940)" to="(580,2940)"/> <wire from="(460,1850)" to="(460,2020)"/> <wire from="(340,450)" to="(340,620)"/> <wire from="(250,2860)" to="(250,2910)"/> <wire from="(320,1970)" to="(320,2020)"/> <wire from="(370,2280)" to="(500,2280)"/> <wire from="(360,1310)" to="(490,1310)"/> <wire from="(460,450)" to="(590,450)"/> <wire from="(320,1270)" to="(450,1270)"/> <wire from="(250,3370)" to="(320,3370)"/> <wire from="(500,1000)" to="(500,1010)"/> <wire from="(490,1310)" to="(490,1320)"/> <wire from="(160,100)" to="(210,100)"/> <wire from="(250,2350)" to="(250,2360)"/> <wire from="(340,2900)" to="(460,2900)"/> <wire from="(250,2670)" to="(250,2680)"/> <wire from="(250,3630)" to="(250,3640)"/> <wire from="(500,3330)" to="(540,3330)"/> <wire from="(340,2760)" to="(340,2780)"/> <wire from="(540,1230)" to="(540,1320)"/> <wire from="(380,140)" to="(550,140)"/> <wire from="(330,2750)" to="(330,2780)"/> <wire from="(510,2860)" to="(510,3070)"/> <wire from="(510,1010)" to="(510,1030)"/> <wire from="(370,2980)" to="(370,3070)"/> <wire from="(300,1850)" to="(340,1850)"/> <wire from="(460,1370)" to="(500,1370)"/> <wire from="(590,1150)" to="(590,1320)"/> <wire from="(210,1580)" to="(370,1580)"/> <wire from="(250,3410)" to="(280,3410)"/> <wire from="(300,1500)" to="(300,1670)"/> <wire from="(330,760)" to="(470,760)"/> <wire from="(280,960)" to="(360,960)"/> <wire from="(250,1890)" to="(330,1890)"/> <wire from="(450,1270)" to="(450,1320)"/> <wire from="(450,3370)" to="(530,3370)"/> <wire from="(490,3410)" to="(570,3410)"/> <wire from="(570,3760)" to="(570,3770)"/> <wire from="(540,2770)" to="(540,2780)"/> <wire from="(330,2940)" to="(330,3070)"/> <wire from="(290,3800)" to="(290,3810)"/> <wire from="(360,1310)" to="(360,1320)"/> <wire from="(370,1000)" to="(370,1010)"/> <wire from="(320,310)" to="(320,330)"/> <wire from="(500,2280)" to="(500,2370)"/> <wire from="(540,3820)" to="(580,3820)"/> <wire from="(460,2050)" to="(460,2070)"/> <wire from="(530,2760)" to="(530,2780)"/> <wire from="(580,3450)" to="(580,3470)"/> <wire from="(210,3250)" to="(300,3250)"/> <wire from="(160,960)" to="(250,960)"/> <wire from="(340,1710)" to="(370,1710)"/> <wire from="(550,2240)" to="(580,2240)"/> <wire from="(460,1150)" to="(460,1320)"/> <wire from="(330,3520)" to="(330,3560)"/> <wire from="(250,2160)" to="(250,2210)"/> <wire from="(320,1270)" to="(320,1320)"/> <wire from="(370,1580)" to="(500,1580)"/> <wire from="(530,3720)" to="(530,3770)"/> <wire from="(360,610)" to="(490,610)"/> <wire from="(320,570)" to="(450,570)"/> <wire from="(250,2670)" to="(320,2670)"/> <wire from="(500,3810)" to="(510,3810)"/> <wire from="(500,3820)" to="(500,3830)"/> <wire from="(580,3640)" to="(580,3770)"/> <wire from="(550,3290)" to="(550,3420)"/> <wire from="(500,300)" to="(500,310)"/> <wire from="(490,610)" to="(490,620)"/> <wire from="(340,2200)" to="(460,2200)"/> <wire from="(250,1650)" to="(250,1660)"/> <wire from="(250,1970)" to="(250,1980)"/> <wire from="(250,2930)" to="(250,2940)"/> <wire from="(500,2630)" to="(540,2630)"/> <wire from="(470,3560)" to="(510,3560)"/> <wire from="(540,530)" to="(540,620)"/> <wire from="(340,2060)" to="(340,2080)"/> <wire from="(510,310)" to="(510,330)"/> <wire from="(510,2160)" to="(510,2370)"/> <wire from="(330,2050)" to="(330,2080)"/> <wire from="(370,2280)" to="(370,2370)"/> <wire from="(520,3520)" to="(520,3540)"/> <wire from="(300,1150)" to="(340,1150)"/> <wire from="(460,670)" to="(500,670)"/> <wire from="(210,880)" to="(370,880)"/> <wire from="(590,450)" to="(590,620)"/> <wire from="(250,2710)" to="(280,2710)"/> <wire from="(300,800)" to="(300,970)"/> <wire from="(250,1190)" to="(330,1190)"/> <wire from="(280,260)" to="(360,260)"/> <wire from="(450,570)" to="(450,620)"/> <wire from="(450,2670)" to="(530,2670)"/> <wire from="(490,2710)" to="(570,2710)"/> <wire from="(570,3060)" to="(570,3070)"/> <wire from="(540,2070)" to="(540,2080)"/> <wire from="(330,2240)" to="(330,2370)"/> <wire from="(290,3100)" to="(290,3110)"/> <wire from="(280,3410)" to="(280,3420)"/> <wire from="(360,610)" to="(360,620)"/> <wire from="(370,300)" to="(370,310)"/> <wire from="(540,3120)" to="(580,3120)"/> <wire from="(500,1580)" to="(500,1670)"/> <wire from="(460,1350)" to="(460,1370)"/> <wire from="(470,3210)" to="(470,3420)"/> <wire from="(530,2060)" to="(530,2080)"/> <wire from="(580,2750)" to="(580,2770)"/> <wire from="(210,2550)" to="(300,2550)"/> <wire from="(160,260)" to="(250,260)"/> <wire from="(340,1010)" to="(370,1010)"/> <wire from="(550,1540)" to="(580,1540)"/> <wire from="(460,450)" to="(460,620)"/> <wire from="(330,2820)" to="(330,2860)"/> <wire from="(250,3560)" to="(330,3560)"/> <wire from="(250,1460)" to="(250,1510)"/> <wire from="(320,570)" to="(320,620)"/> <wire from="(370,880)" to="(500,880)"/> <wire from="(530,3020)" to="(530,3070)"/> <wire from="(250,1970)" to="(320,1970)"/> <wire from="(500,3110)" to="(510,3110)"/> <wire from="(530,3460)" to="(540,3460)"/> <wire from="(540,3800)" to="(540,3810)"/> <wire from="(500,3120)" to="(500,3130)"/> <wire from="(580,2940)" to="(580,3070)"/> <wire from="(550,2590)" to="(550,2720)"/> <wire from="(330,3930)" to="(640,3930)"/> <wire from="(340,1500)" to="(460,1500)"/> <wire from="(250,2230)" to="(250,2240)"/> <wire from="(250,1270)" to="(250,1280)"/> <wire from="(250,950)" to="(250,960)"/> <wire from="(470,2860)" to="(510,2860)"/> <wire from="(500,1930)" to="(540,1930)"/> <wire from="(340,1360)" to="(340,1380)"/> <wire from="(510,1460)" to="(510,1670)"/> <wire from="(330,1350)" to="(330,1380)"/> <wire from="(300,450)" to="(340,450)"/> <wire from="(370,1580)" to="(370,1670)"/> <wire from="(520,2820)" to="(520,2840)"/> <wire from="(210,180)" to="(370,180)"/> <wire from="(250,2010)" to="(280,2010)"/> <wire from="(300,100)" to="(300,270)"/> <wire from="(250,490)" to="(330,490)"/> <wire from="(450,1970)" to="(530,1970)"/> <wire from="(490,2010)" to="(570,2010)"/> <wire from="(590,450)" to="(600,450)"/> <wire from="(540,1370)" to="(540,1380)"/> <wire from="(570,2360)" to="(570,2370)"/> <wire from="(330,1540)" to="(330,1670)"/> <wire from="(210,3600)" to="(210,3610)"/> <wire from="(290,2400)" to="(290,2410)"/> <wire from="(280,2710)" to="(280,2720)"/> <wire from="(540,2420)" to="(580,2420)"/> <wire from="(460,650)" to="(460,670)"/> <wire from="(470,2510)" to="(470,2720)"/> <wire from="(530,1360)" to="(530,1380)"/> <wire from="(500,880)" to="(500,970)"/> <wire from="(580,2050)" to="(580,2070)"/> <wire from="(210,1850)" to="(300,1850)"/> <wire from="(290,3460)" to="(320,3460)"/> <wire from="(340,310)" to="(370,310)"/> <wire from="(550,840)" to="(580,840)"/> <wire from="(330,2120)" to="(330,2160)"/> <wire from="(250,2860)" to="(330,2860)"/> <wire from="(210,3280)" to="(210,3330)"/> <wire from="(250,760)" to="(250,810)"/> <wire from="(530,2320)" to="(530,2370)"/> <wire from="(370,180)" to="(500,180)"/> <wire from="(500,2410)" to="(510,2410)"/> <wire from="(250,1270)" to="(320,1270)"/> <wire from="(530,2760)" to="(540,2760)"/> <comp lib="0" loc="(160,3060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX8"/> </comp> <comp lib="1" loc="(520,3170)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(330,1770)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX0"/> </comp> <comp lib="1" loc="(580,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,2470)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CIN"/> </comp> <comp lib="1" loc="(290,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(640,3540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,720)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,2230)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,830)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX2"/> </comp> <comp lib="1" loc="(210,2580)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,1070)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(250,1880)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,3630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(580,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,130)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,720)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(250,580)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,2930)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,2010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX5"/> </comp> <comp lib="0" loc="(160,2200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX6"/> </comp> <comp lib="1" loc="(250,2230)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(640,3890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,1530)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,3410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX9"/> </comp> <comp lib="1" loc="(580,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(460,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,1180)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,480)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,2120)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(330,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,3380)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(640,2840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(250,830)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,2680)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(210,3280)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,1420)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,2820)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,2360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX6"/> </comp> <comp lib="1" loc="(370,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(580,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,1770)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(460,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(630,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,480)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,3030)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX4"/> </comp> <comp lib="1" loc="(330,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,3630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,3730)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,1070)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(580,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(460,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,130)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,1420)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(160,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX0"/> </comp> <comp lib="1" loc="(250,230)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(370,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX3"/> </comp> <comp lib="1" loc="(500,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(500,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,2580)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(630,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,2930)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,2330)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,3250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX9"/> </comp> <comp lib="0" loc="(160,2900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX8"/> </comp> <comp lib="1" loc="(580,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(640,3190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(370,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,3520)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(370,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(460,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX1"/> </comp> <comp lib="1" loc="(580,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,1850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX5"/> </comp> <comp lib="1" loc="(250,1980)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(640,2140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,2470)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1350)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(540,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,2050)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,3170)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(630,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(630,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,3520)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(210,1530)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,1180)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,650)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(580,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(210,1880)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,1500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX4"/> </comp> <comp lib="1" loc="(580,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,2710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX7"/> </comp> <comp lib="0" loc="(640,3930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/COUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,2750)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,370)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(330,2400)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(370,3100)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,3760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX10"/> </comp> <comp lib="1" loc="(540,3800)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,2120)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,930)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,1630)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX2"/> </comp> <comp lib="0" loc="(160,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX3"/> </comp> <comp lib="1" loc="(520,2820)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(250,3280)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(640,2490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(460,1700)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(290,3450)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,3600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX10"/> </comp> <comp lib="1" loc="(330,370)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(520,3870)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(160,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX1"/> </comp> <comp lib="1" loc="(370,1000)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(330,3870)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,1280)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,300)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,2550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX7"/> </comp> </circuit> <circuit name="SQUARE_SWEEP_CONTROL"> <a name="circuit" val="SQUARE_SWEEP_CONTROL"/> <a name="clabel" val="SWEEP CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M82,41 Q86,51 90,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff48eb" height="340" stroke="#000000" stroke-width="2" width="130" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="104">W4001(5)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="155">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="224">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="265">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="324">NOSQx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="365">/COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="344">SW_UVF</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="294">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="104">SR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="124">SR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="144">SR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="64">D/I</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="84">DO_SWEEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="147" y="364">SW_OVF</text> <circ-port height="8" pin="140,110" width="8" x="46" y="56"/> <circ-port height="8" pin="140,1440" width="8" x="46" y="96"/> <circ-port height="8" pin="140,250" width="8" x="46" y="146"/> <circ-port height="8" pin="140,320" width="8" x="46" y="156"/> <circ-port height="8" pin="140,390" width="8" x="46" y="166"/> <circ-port height="8" pin="140,460" width="8" x="46" y="176"/> <circ-port height="8" pin="140,760" width="8" x="46" y="186"/> <circ-port height="8" pin="140,900" width="8" x="46" y="196"/> <circ-port height="8" pin="140,1040" width="8" x="46" y="206"/> <circ-port height="8" pin="140,530" width="8" x="46" y="216"/> <circ-port height="8" pin="140,660" width="8" x="46" y="256"/> <circ-port height="8" pin="140,620" width="8" x="46" y="316"/> <circ-port height="8" pin="140,190" width="8" x="46" y="356"/> <circ-port height="8" pin="140,580" width="8" x="46" y="336"/> <circ-port height="8" pin="140,700" width="8" x="46" y="286"/> <circ-port height="10" pin="980,230" width="10" x="175" y="95"/> <circ-port height="10" pin="980,300" width="10" x="175" y="115"/> <circ-port height="10" pin="980,370" width="10" x="175" y="135"/> <circ-port height="10" pin="980,440" width="10" x="175" y="55"/> <circ-port height="10" pin="980,540" width="10" x="175" y="75"/> <circ-port height="10" pin="980,200" width="10" x="175" y="355"/> <circ-port height="10" pin="990,60" width="10" x="175" y="365"/> <circ-anchor facing="east" height="6" width="6" x="107" y="37"/> </appear> <wire from="(390,140)" to="(450,140)"/> <wire from="(630,1030)" to="(680,1030)"/> <wire from="(180,370)" to="(180,440)"/> <wire from="(140,530)" to="(200,530)"/> <wire from="(320,1100)" to="(320,1230)"/> <wire from="(390,930)" to="(390,1070)"/> <wire from="(370,830)" to="(490,830)"/> <wire from="(300,690)" to="(300,1020)"/> <wire from="(180,880)" to="(180,1020)"/> <wire from="(650,540)" to="(880,540)"/> <wire from="(550,880)" to="(590,880)"/> <wire from="(350,100)" to="(350,440)"/> <wire from="(510,910)" to="(510,940)"/> <wire from="(140,660)" to="(760,660)"/> <wire from="(220,540)" to="(220,560)"/> <wire from="(340,90)" to="(450,90)"/> <wire from="(530,880)" to="(530,960)"/> <wire from="(390,1270)" to="(390,1300)"/> <wire from="(850,370)" to="(850,390)"/> <wire from="(220,790)" to="(260,790)"/> <wire from="(260,1440)" to="(480,1440)"/> <wire from="(860,570)" to="(880,570)"/> <wire from="(180,510)" to="(180,740)"/> <wire from="(660,1010)" to="(680,1010)"/> <wire from="(720,750)" to="(740,750)"/> <wire from="(390,1300)" to="(410,1300)"/> <wire from="(180,370)" to="(200,370)"/> <wire from="(390,140)" to="(390,510)"/> <wire from="(490,1050)" to="(490,1110)"/> <wire from="(520,880)" to="(530,880)"/> <wire from="(580,940)" to="(590,940)"/> <wire from="(260,420)" to="(260,490)"/> <wire from="(710,200)" to="(760,200)"/> <wire from="(140,700)" to="(390,700)"/> <wire from="(140,900)" to="(200,900)"/> <wire from="(260,930)" to="(260,1070)"/> <wire from="(710,550)" to="(710,620)"/> <wire from="(560,1360)" to="(560,1430)"/> <wire from="(240,440)" to="(350,440)"/> <wire from="(470,760)" to="(470,780)"/> <wire from="(740,1030)" to="(740,1060)"/> <wire from="(860,300)" to="(860,390)"/> <wire from="(220,910)" to="(220,930)"/> <wire from="(460,1390)" to="(460,1420)"/> <wire from="(220,280)" to="(260,280)"/> <wire from="(660,710)" to="(660,730)"/> <wire from="(240,370)" to="(340,370)"/> <wire from="(650,540)" to="(650,580)"/> <wire from="(260,560)" to="(260,790)"/> <wire from="(520,1320)" to="(540,1320)"/> <wire from="(390,1270)" to="(740,1270)"/> <wire from="(240,300)" to="(330,300)"/> <wire from="(660,1140)" to="(680,1140)"/> <wire from="(320,960)" to="(340,960)"/> <wire from="(390,790)" to="(410,790)"/> <wire from="(460,1020)" to="(480,1020)"/> <wire from="(460,1420)" to="(480,1420)"/> <wire from="(330,300)" to="(860,300)"/> <wire from="(140,190)" to="(670,190)"/> <wire from="(550,850)" to="(640,850)"/> <wire from="(180,740)" to="(200,740)"/> <wire from="(470,1040)" to="(480,1040)"/> <wire from="(520,760)" to="(590,760)"/> <wire from="(240,230)" to="(320,230)"/> <wire from="(300,690)" to="(380,690)"/> <wire from="(470,1060)" to="(740,1060)"/> <wire from="(370,120)" to="(450,120)"/> <wire from="(320,70)" to="(450,70)"/> <wire from="(440,1080)" to="(510,1080)"/> <wire from="(550,800)" to="(560,800)"/> <wire from="(240,880)" to="(310,880)"/> <wire from="(560,1360)" to="(680,1360)"/> <wire from="(310,720)" to="(370,720)"/> <wire from="(760,520)" to="(880,520)"/> <wire from="(180,230)" to="(180,300)"/> <wire from="(460,1020)" to="(460,1150)"/> <wire from="(860,300)" to="(980,300)"/> <wire from="(140,390)" to="(200,390)"/> <wire from="(630,890)" to="(680,890)"/> <wire from="(320,960)" to="(320,1100)"/> <wire from="(390,790)" to="(390,930)"/> <wire from="(740,1270)" to="(740,1340)"/> <wire from="(180,740)" to="(180,880)"/> <wire from="(550,740)" to="(590,740)"/> <wire from="(520,1430)" to="(560,1430)"/> <wire from="(180,150)" to="(180,230)"/> <wire from="(510,770)" to="(510,800)"/> <wire from="(220,400)" to="(220,420)"/> <wire from="(530,740)" to="(530,820)"/> <wire from="(460,1360)" to="(560,1360)"/> <wire from="(220,490)" to="(260,490)"/> <wire from="(710,550)" to="(880,550)"/> <wire from="(860,430)" to="(860,510)"/> <wire from="(860,510)" to="(880,510)"/> <wire from="(880,1250)" to="(880,1360)"/> <wire from="(660,870)" to="(680,870)"/> <wire from="(870,230)" to="(870,390)"/> <wire from="(180,230)" to="(200,230)"/> <wire from="(760,200)" to="(980,200)"/> <wire from="(260,1070)" to="(260,1440)"/> <wire from="(360,1020)" to="(360,1080)"/> <wire from="(490,910)" to="(490,970)"/> <wire from="(520,740)" to="(530,740)"/> <wire from="(550,1090)" to="(560,1090)"/> <wire from="(780,710)" to="(780,1080)"/> <wire from="(580,800)" to="(590,800)"/> <wire from="(140,580)" to="(650,580)"/> <wire from="(240,1020)" to="(300,1020)"/> <wire from="(660,710)" to="(780,710)"/> <wire from="(260,280)" to="(260,350)"/> <wire from="(180,440)" to="(180,510)"/> <wire from="(660,870)" to="(660,1010)"/> <wire from="(140,760)" to="(200,760)"/> <wire from="(260,790)" to="(260,930)"/> <wire from="(620,1240)" to="(680,1240)"/> <wire from="(460,1150)" to="(580,1150)"/> <wire from="(640,1190)" to="(640,1220)"/> <wire from="(740,890)" to="(740,920)"/> <wire from="(840,1080)" to="(880,1080)"/> <wire from="(220,770)" to="(220,790)"/> <wire from="(460,1330)" to="(460,1360)"/> <wire from="(350,100)" to="(450,100)"/> <wire from="(370,1090)" to="(410,1090)"/> <wire from="(180,110)" to="(210,110)"/> <wire from="(840,1100)" to="(860,1100)"/> <wire from="(640,950)" to="(640,990)"/> <wire from="(320,820)" to="(340,820)"/> <wire from="(460,880)" to="(480,880)"/> <wire from="(180,440)" to="(200,440)"/> <wire from="(470,900)" to="(480,900)"/> <wire from="(470,920)" to="(740,920)"/> <wire from="(380,130)" to="(380,690)"/> <wire from="(670,1340)" to="(680,1340)"/> <wire from="(440,940)" to="(510,940)"/> <wire from="(580,1090)" to="(590,1090)"/> <wire from="(260,490)" to="(260,560)"/> <wire from="(370,1190)" to="(370,1320)"/> <wire from="(140,620)" to="(710,620)"/> <wire from="(140,250)" to="(200,250)"/> <wire from="(630,750)" to="(680,750)"/> <wire from="(320,820)" to="(320,960)"/> <wire from="(140,1440)" to="(260,1440)"/> <wire from="(460,880)" to="(460,1020)"/> <wire from="(530,960)" to="(590,960)"/> <wire from="(240,740)" to="(360,740)"/> <wire from="(370,1110)" to="(490,1110)"/> <wire from="(550,1020)" to="(550,1090)"/> <wire from="(640,1160)" to="(640,1190)"/> <wire from="(550,990)" to="(550,1020)"/> <wire from="(220,260)" to="(220,280)"/> <wire from="(140,110)" to="(180,110)"/> <wire from="(220,350)" to="(260,350)"/> <wire from="(220,1070)" to="(260,1070)"/> <wire from="(390,700)" to="(390,790)"/> <wire from="(370,120)" to="(370,720)"/> <wire from="(450,1310)" to="(480,1310)"/> <wire from="(660,730)" to="(680,730)"/> <wire from="(720,1030)" to="(740,1030)"/> <wire from="(460,1330)" to="(480,1330)"/> <wire from="(850,1230)" to="(880,1230)"/> <wire from="(360,110)" to="(360,740)"/> <wire from="(370,1190)" to="(640,1190)"/> <wire from="(320,1230)" to="(580,1230)"/> <wire from="(360,880)" to="(360,940)"/> <wire from="(490,770)" to="(490,830)"/> <wire from="(630,950)" to="(640,950)"/> <wire from="(380,130)" to="(450,130)"/> <wire from="(300,1020)" to="(360,1020)"/> <wire from="(640,1190)" to="(760,1190)"/> <wire from="(180,300)" to="(180,370)"/> <wire from="(660,730)" to="(660,870)"/> <wire from="(140,460)" to="(200,460)"/> <wire from="(760,200)" to="(760,520)"/> <wire from="(310,880)" to="(360,880)"/> <wire from="(330,80)" to="(450,80)"/> <wire from="(470,1040)" to="(470,1060)"/> <wire from="(740,750)" to="(740,780)"/> <wire from="(180,110)" to="(180,130)"/> <wire from="(220,470)" to="(220,490)"/> <wire from="(220,560)" to="(260,560)"/> <wire from="(550,720)" to="(550,740)"/> <wire from="(630,1100)" to="(800,1100)"/> <wire from="(370,950)" to="(410,950)"/> <wire from="(870,230)" to="(980,230)"/> <wire from="(320,230)" to="(870,230)"/> <wire from="(640,810)" to="(640,850)"/> <wire from="(320,70)" to="(320,230)"/> <wire from="(650,210)" to="(670,210)"/> <wire from="(620,1220)" to="(640,1220)"/> <wire from="(620,1140)" to="(640,1140)"/> <wire from="(390,1070)" to="(410,1070)"/> <wire from="(460,740)" to="(480,740)"/> <wire from="(720,1360)" to="(880,1360)"/> <wire from="(180,300)" to="(200,300)"/> <wire from="(760,560)" to="(760,660)"/> <wire from="(180,1020)" to="(200,1020)"/> <wire from="(470,760)" to="(480,760)"/> <wire from="(520,1040)" to="(590,1040)"/> <wire from="(550,880)" to="(550,940)"/> <wire from="(470,780)" to="(740,780)"/> <wire from="(440,800)" to="(510,800)"/> <wire from="(260,350)" to="(260,420)"/> <wire from="(760,560)" to="(880,560)"/> <wire from="(340,370)" to="(850,370)"/> <wire from="(460,740)" to="(460,880)"/> <wire from="(530,820)" to="(590,820)"/> <wire from="(370,970)" to="(490,970)"/> <wire from="(550,1020)" to="(590,1020)"/> <wire from="(350,440)" to="(650,440)"/> <wire from="(530,1020)" to="(530,1110)"/> <wire from="(510,1050)" to="(510,1080)"/> <wire from="(550,850)" to="(550,880)"/> <wire from="(760,660)" to="(760,1190)"/> <wire from="(330,80)" to="(330,300)"/> <wire from="(880,1080)" to="(880,1230)"/> <wire from="(220,930)" to="(260,930)"/> <wire from="(370,1320)" to="(410,1320)"/> <wire from="(360,110)" to="(450,110)"/> <wire from="(720,890)" to="(740,890)"/> <wire from="(630,710)" to="(660,710)"/> <wire from="(180,510)" to="(200,510)"/> <wire from="(850,1250)" to="(880,1250)"/> <wire from="(850,370)" to="(980,370)"/> <wire from="(680,1240)" to="(810,1240)"/> <wire from="(360,740)" to="(360,800)"/> <wire from="(650,440)" to="(980,440)"/> <wire from="(520,1020)" to="(530,1020)"/> <wire from="(630,810)" to="(640,810)"/> <wire from="(470,60)" to="(990,60)"/> <wire from="(240,530)" to="(880,530)"/> <wire from="(140,320)" to="(200,320)"/> <wire from="(140,1040)" to="(200,1040)"/> <wire from="(530,1110)" to="(590,1110)"/> <wire from="(540,1320)" to="(540,1390)"/> <wire from="(470,900)" to="(470,920)"/> <wire from="(220,330)" to="(220,350)"/> <wire from="(220,1050)" to="(220,1070)"/> <wire from="(220,420)" to="(260,420)"/> <wire from="(340,90)" to="(340,370)"/> <wire from="(370,810)" to="(410,810)"/> <wire from="(860,570)" to="(860,1100)"/> <wire from="(780,1080)" to="(800,1080)"/> <wire from="(960,540)" to="(980,540)"/> <wire from="(620,1160)" to="(640,1160)"/> <wire from="(310,720)" to="(310,880)"/> <wire from="(720,1340)" to="(740,1340)"/> <wire from="(320,1100)" to="(340,1100)"/> <wire from="(240,510)" to="(390,510)"/> <wire from="(390,930)" to="(410,930)"/> <wire from="(550,990)" to="(640,990)"/> <wire from="(680,1140)" to="(680,1240)"/> <wire from="(650,210)" to="(650,440)"/> <wire from="(180,880)" to="(200,880)"/> <wire from="(520,900)" to="(590,900)"/> <wire from="(550,740)" to="(550,800)"/> <wire from="(460,1390)" to="(540,1390)"/> <wire from="(550,940)" to="(560,940)"/> <comp lib="1" loc="(580,1230)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(698,1385)" name="Text"> <a name="text" val="DL1"/> </comp> <comp lib="6" loc="(281,363)" name="Text"> <a name="text" val="SR2"/> </comp> <comp lib="1" loc="(580,1150)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(549,649)" name="Text"> <a name="text" val="SWEEP DOWN COUNTER"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(282,224)" name="Text"> <a name="text" val="SR0"/> </comp> <comp lib="0" loc="(140,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQA"/> </comp> <comp lib="4" loc="(240,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SW_OVF"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,60)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(240,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(140,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(140,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp lib="6" loc="(501,1352)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="1" loc="(180,150)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="2" loc="(340,1100)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(289,523)" name="Text"> <a name="text" val="SWDIS"/> </comp> <comp lib="0" loc="(140,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(240,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(630,750)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(710,200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(720,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(550,720)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(546,1221)" name="Text"> <a name="text" val="SLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(545,1143)" name="Text"> <a name="text" val="SSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="6" loc="(277,734)" name="Text"> <a name="text" val="P0"/> </comp> <comp lib="2" loc="(340,820)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(450,1310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(130,1399)" name="Text"> <a name="text" val="W4001 SQUARE0"/> </comp> <comp lib="0" loc="(980,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DO_SWEEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(720,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(240,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(340,960)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(843,494)" name="Text"> <a name="text" val="SRZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(580,1090)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(907,407)" name="Text"> <a name="text" val="NOR3"/> </comp> <comp lib="6" loc="(499,1379)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="6" loc="(834,1217)" name="Text"> <a name="text" val="NOR7"/> </comp> <comp lib="1" loc="(960,540)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(670,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(440,1080)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(530,1447)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(140,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(210,110)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp loc="(840,1090)" name="D-latch"/> <comp lib="4" loc="(240,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(841,655)" name="Text"> <a name="text" val="/SCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(630,1030)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,800)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(275,1014)" name="Text"> <a name="text" val="P2"/> </comp> <comp lib="1" loc="(520,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(630,890)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SW_UVF"/> </comp> <comp lib="1" loc="(580,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(860,430)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(720,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D/I"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(810,1240)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(140,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(990,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="SWEEP_REG"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(520,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(282,295)" name="Text"> <a name="text" val="SR1"/> </comp> <comp lib="6" loc="(294,432)" name="Text"> <a name="text" val="DEC/INC"/> </comp> <comp lib="6" loc="(130,1418)" name="Text"> <a name="text" val="W4005 SQUARE1"/> </comp> <comp lib="4" loc="(240,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(630,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="6" loc="(466,1456)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(440,940)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/COUT"/> </comp> <comp lib="1" loc="(520,1430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(502,1411)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="0" loc="(630,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(528,1312)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(820,1124)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="4" loc="(240,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(687,175)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="0" loc="(980,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(640,1140)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(912,499)" name="Text"> <a name="text" val="NOR4"/> </comp> <comp lib="6" loc="(424,1342)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp lib="6" loc="(468,1303)" name="Text"> <a name="text" val="R"/> </comp> <comp loc="(720,1350)" name="D-latch"/> <comp lib="4" loc="(520,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(630,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(520,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(829,1355)" name="Text"> <a name="text" val="SWEEPRELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(276,875)" name="Text"> <a name="text" val="P1"/> </comp> </circuit> <circuit name="SQUARE_FREQUENCY_DOWN_COUNTER"> <a name="circuit" val="SQUARE_FREQUENCY_DOWN_COUNTER"/> <a name="clabel" val="SQUARE FREQUENCY COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M72,51 Q76,61 80,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6ab5ff" height="351" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="94">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="364">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="174">PL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="274">PL10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="364">FQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="384">FLOAD</text> <circ-port height="8" pin="90,50" width="8" x="46" y="66"/> <circ-port height="8" pin="90,1820" width="8" x="46" y="86"/> <circ-port height="8" pin="90,90" width="8" x="46" y="356"/> <circ-port height="8" pin="90,130" width="8" x="46" y="166"/> <circ-port height="8" pin="90,280" width="8" x="46" y="176"/> <circ-port height="8" pin="90,430" width="8" x="46" y="186"/> <circ-port height="8" pin="90,580" width="8" x="46" y="196"/> <circ-port height="8" pin="90,730" width="8" x="46" y="206"/> <circ-port height="8" pin="90,880" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1030" width="8" x="46" y="226"/> <circ-port height="8" pin="90,1180" width="8" x="46" y="236"/> <circ-port height="8" pin="90,1330" width="8" x="46" y="246"/> <circ-port height="8" pin="90,1480" width="8" x="46" y="256"/> <circ-port height="8" pin="90,1630" width="8" x="46" y="266"/> <circ-port height="10" pin="590,1870" width="10" x="205" y="355"/> <circ-port height="10" pin="590,1920" width="10" x="205" y="375"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(370,880)" to="(370,950)"/> <wire from="(450,1490)" to="(500,1490)"/> <wire from="(120,1780)" to="(120,1920)"/> <wire from="(480,1020)" to="(480,1170)"/> <wire from="(120,660)" to="(120,810)"/> <wire from="(190,1530)" to="(190,1680)"/> <wire from="(380,1820)" to="(380,1850)"/> <wire from="(370,850)" to="(370,880)"/> <wire from="(320,160)" to="(320,190)"/> <wire from="(280,600)" to="(280,630)"/> <wire from="(170,1700)" to="(210,1700)"/> <wire from="(90,90)" to="(190,90)"/> <wire from="(350,1180)" to="(350,1270)"/> <wire from="(560,1040)" to="(560,1080)"/> <wire from="(260,1630)" to="(260,1860)"/> <wire from="(370,700)" to="(460,700)"/> <wire from="(480,1710)" to="(500,1710)"/> <wire from="(260,1480)" to="(290,1480)"/> <wire from="(330,280)" to="(350,280)"/> <wire from="(480,270)" to="(500,270)"/> <wire from="(280,330)" to="(560,330)"/> <wire from="(460,1260)" to="(460,1300)"/> <wire from="(190,780)" to="(210,780)"/> <wire from="(400,200)" to="(410,200)"/> <wire from="(280,1200)" to="(290,1200)"/> <wire from="(370,650)" to="(380,650)"/> <wire from="(240,1540)" to="(320,1540)"/> <wire from="(300,460)" to="(300,520)"/> <wire from="(90,280)" to="(160,280)"/> <wire from="(370,1330)" to="(370,1400)"/> <wire from="(480,1470)" to="(480,1620)"/> <wire from="(260,130)" to="(260,280)"/> <wire from="(120,1110)" to="(120,1260)"/> <wire from="(370,1300)" to="(370,1330)"/> <wire from="(380,1790)" to="(380,1820)"/> <wire from="(280,1050)" to="(280,1080)"/> <wire from="(320,610)" to="(320,640)"/> <wire from="(370,430)" to="(410,430)"/> <wire from="(370,1150)" to="(460,1150)"/> <wire from="(560,1490)" to="(560,1530)"/> <wire from="(540,140)" to="(560,140)"/> <wire from="(350,1630)" to="(350,1740)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(480,720)" to="(500,720)"/> <wire from="(280,780)" to="(560,780)"/> <wire from="(120,360)" to="(140,360)"/> <wire from="(190,1230)" to="(210,1230)"/> <wire from="(370,1100)" to="(380,1100)"/> <wire from="(400,650)" to="(410,650)"/> <wire from="(280,1650)" to="(290,1650)"/> <wire from="(300,910)" to="(300,970)"/> <wire from="(90,730)" to="(160,730)"/> <wire from="(160,130)" to="(160,190)"/> <wire from="(350,520)" to="(410,520)"/> <wire from="(260,580)" to="(260,730)"/> <wire from="(120,1560)" to="(120,1710)"/> <wire from="(280,1500)" to="(280,1530)"/> <wire from="(170,200)" to="(210,200)"/> <wire from="(320,1060)" to="(320,1090)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(370,1600)" to="(460,1600)"/> <wire from="(540,590)" to="(560,590)"/> <wire from="(330,1180)" to="(350,1180)"/> <wire from="(360,1850)" to="(380,1850)"/> <wire from="(480,1170)" to="(500,1170)"/> <wire from="(280,1230)" to="(560,1230)"/> <wire from="(120,810)" to="(140,810)"/> <wire from="(190,1680)" to="(210,1680)"/> <wire from="(370,1550)" to="(380,1550)"/> <wire from="(400,1100)" to="(410,1100)"/> <wire from="(450,510)" to="(460,510)"/> <wire from="(330,450)" to="(410,450)"/> <wire from="(300,1360)" to="(300,1420)"/> <wire from="(90,1180)" to="(160,1180)"/> <wire from="(170,370)" to="(300,370)"/> <wire from="(160,580)" to="(160,640)"/> <wire from="(350,970)" to="(410,970)"/> <wire from="(480,1730)" to="(480,1870)"/> <wire from="(450,440)" to="(500,440)"/> <wire from="(260,1030)" to="(260,1180)"/> <wire from="(190,480)" to="(190,630)"/> <wire from="(170,650)" to="(210,650)"/> <wire from="(320,1510)" to="(320,1540)"/> <wire from="(370,1330)" to="(410,1330)"/> <wire from="(350,130)" to="(350,220)"/> <wire from="(480,1620)" to="(500,1620)"/> <wire from="(540,1040)" to="(560,1040)"/> <wire from="(260,430)" to="(290,430)"/> <wire from="(330,1630)" to="(350,1630)"/> <wire from="(280,1680)" to="(560,1680)"/> <wire from="(120,1260)" to="(140,1260)"/> <wire from="(460,210)" to="(460,250)"/> <wire from="(400,1550)" to="(410,1550)"/> <wire from="(450,960)" to="(460,960)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(240,490)" to="(320,490)"/> <wire from="(330,900)" to="(410,900)"/> <wire from="(420,1770)" to="(420,1820)"/> <wire from="(90,1630)" to="(160,1630)"/> <wire from="(170,820)" to="(300,820)"/> <wire from="(160,1030)" to="(160,1090)"/> <wire from="(350,1420)" to="(410,1420)"/> <wire from="(350,1740)" to="(410,1740)"/> <wire from="(370,280)" to="(370,350)"/> <wire from="(450,890)" to="(500,890)"/> <wire from="(480,420)" to="(480,570)"/> <wire from="(260,1480)" to="(260,1630)"/> <wire from="(190,930)" to="(190,1080)"/> <wire from="(370,250)" to="(370,280)"/> <wire from="(170,1100)" to="(210,1100)"/> <wire from="(350,580)" to="(350,670)"/> <wire from="(560,440)" to="(560,480)"/> <wire from="(540,1490)" to="(560,1490)"/> <wire from="(260,880)" to="(290,880)"/> <wire from="(360,1790)" to="(380,1790)"/> <wire from="(190,180)" to="(210,180)"/> <wire from="(120,1710)" to="(140,1710)"/> <wire from="(460,660)" to="(460,700)"/> <wire from="(450,1410)" to="(460,1410)"/> <wire from="(280,600)" to="(290,600)"/> <wire from="(240,940)" to="(320,940)"/> <wire from="(330,1350)" to="(410,1350)"/> <wire from="(170,1270)" to="(300,1270)"/> <wire from="(160,1480)" to="(160,1540)"/> <wire from="(370,730)" to="(370,800)"/> <wire from="(450,1340)" to="(500,1340)"/> <wire from="(480,870)" to="(480,1020)"/> <wire from="(120,510)" to="(120,660)"/> <wire from="(190,1380)" to="(190,1530)"/> <wire from="(280,450)" to="(280,480)"/> <wire from="(370,700)" to="(370,730)"/> <wire from="(170,1550)" to="(210,1550)"/> <wire from="(350,1030)" to="(350,1120)"/> <wire from="(560,890)" to="(560,930)"/> <wire from="(370,550)" to="(460,550)"/> <wire from="(260,1330)" to="(290,1330)"/> <wire from="(330,130)" to="(350,130)"/> <wire from="(480,120)" to="(500,120)"/> <wire from="(280,180)" to="(560,180)"/> <wire from="(460,1110)" to="(460,1150)"/> <wire from="(190,630)" to="(210,630)"/> <wire from="(280,1050)" to="(290,1050)"/> <wire from="(370,500)" to="(380,500)"/> <wire from="(240,1390)" to="(320,1390)"/> <wire from="(300,310)" to="(300,370)"/> <wire from="(90,130)" to="(160,130)"/> <wire from="(170,1720)" to="(300,1720)"/> <wire from="(370,1180)" to="(370,1250)"/> <wire from="(480,1320)" to="(480,1470)"/> <wire from="(120,960)" to="(120,1110)"/> <wire from="(370,1150)" to="(370,1180)"/> <wire from="(280,900)" to="(280,930)"/> <wire from="(320,460)" to="(320,490)"/> <wire from="(350,1480)" to="(350,1570)"/> <wire from="(370,280)" to="(410,280)"/> <wire from="(370,1000)" to="(460,1000)"/> <wire from="(560,1340)" to="(560,1380)"/> <wire from="(330,580)" to="(350,580)"/> <wire from="(480,570)" to="(500,570)"/> <wire from="(280,630)" to="(560,630)"/> <wire from="(120,210)" to="(140,210)"/> <wire from="(460,1560)" to="(460,1600)"/> <wire from="(190,1080)" to="(210,1080)"/> <wire from="(370,950)" to="(380,950)"/> <wire from="(400,500)" to="(410,500)"/> <wire from="(280,1500)" to="(290,1500)"/> <wire from="(300,760)" to="(300,820)"/> <wire from="(90,580)" to="(160,580)"/> <wire from="(350,370)" to="(410,370)"/> <wire from="(260,430)" to="(260,580)"/> <wire from="(120,1410)" to="(120,1560)"/> <wire from="(370,1600)" to="(370,1630)"/> <wire from="(280,1350)" to="(280,1380)"/> <wire from="(320,910)" to="(320,940)"/> <wire from="(370,1630)" to="(370,1720)"/> <wire from="(370,730)" to="(410,730)"/> <wire from="(370,1450)" to="(460,1450)"/> <wire from="(540,440)" to="(560,440)"/> <wire from="(120,1920)" to="(590,1920)"/> <wire from="(330,1030)" to="(350,1030)"/> <wire from="(480,1020)" to="(500,1020)"/> <wire from="(280,1080)" to="(560,1080)"/> <wire from="(120,660)" to="(140,660)"/> <wire from="(190,1530)" to="(210,1530)"/> <wire from="(370,1400)" to="(380,1400)"/> <wire from="(400,950)" to="(410,950)"/> <wire from="(370,1720)" to="(380,1720)"/> <wire from="(450,360)" to="(460,360)"/> <wire from="(330,300)" to="(410,300)"/> <wire from="(300,1210)" to="(300,1270)"/> <wire from="(90,1030)" to="(160,1030)"/> <wire from="(170,220)" to="(300,220)"/> <wire from="(160,430)" to="(160,490)"/> <wire from="(350,820)" to="(410,820)"/> <wire from="(450,290)" to="(500,290)"/> <wire from="(260,880)" to="(260,1030)"/> <wire from="(190,330)" to="(190,480)"/> <wire from="(170,500)" to="(210,500)"/> <wire from="(320,1360)" to="(320,1390)"/> <wire from="(370,1180)" to="(410,1180)"/> <wire from="(540,890)" to="(560,890)"/> <wire from="(260,280)" to="(290,280)"/> <wire from="(330,1480)" to="(350,1480)"/> <wire from="(400,1870)" to="(420,1870)"/> <wire from="(480,1470)" to="(500,1470)"/> <wire from="(280,1530)" to="(560,1530)"/> <wire from="(120,1110)" to="(140,1110)"/> <wire from="(400,1400)" to="(410,1400)"/> <wire from="(400,1720)" to="(410,1720)"/> <wire from="(450,810)" to="(460,810)"/> <wire from="(240,340)" to="(320,340)"/> <wire from="(330,750)" to="(410,750)"/> <wire from="(90,1480)" to="(160,1480)"/> <wire from="(300,1660)" to="(300,1720)"/> <wire from="(90,50)" to="(480,50)"/> <wire from="(170,670)" to="(300,670)"/> <wire from="(160,880)" to="(160,940)"/> <wire from="(350,1270)" to="(410,1270)"/> <wire from="(370,130)" to="(370,200)"/> <wire from="(450,740)" to="(500,740)"/> <wire from="(480,270)" to="(480,420)"/> <wire from="(260,1330)" to="(260,1480)"/> <wire from="(190,780)" to="(190,930)"/> <wire from="(170,950)" to="(210,950)"/> <wire from="(370,1630)" to="(410,1630)"/> <wire from="(350,430)" to="(350,520)"/> <wire from="(560,290)" to="(560,330)"/> <wire from="(540,1340)" to="(560,1340)"/> <wire from="(260,730)" to="(290,730)"/> <wire from="(120,1560)" to="(140,1560)"/> <wire from="(460,510)" to="(460,550)"/> <wire from="(450,1260)" to="(460,1260)"/> <wire from="(280,450)" to="(290,450)"/> <wire from="(240,790)" to="(320,790)"/> <wire from="(330,1200)" to="(410,1200)"/> <wire from="(170,1120)" to="(300,1120)"/> <wire from="(160,1330)" to="(160,1390)"/> <wire from="(480,50)" to="(480,120)"/> <wire from="(370,580)" to="(370,650)"/> <wire from="(450,1190)" to="(500,1190)"/> <wire from="(480,720)" to="(480,870)"/> <wire from="(560,1730)" to="(560,1820)"/> <wire from="(190,1230)" to="(190,1380)"/> <wire from="(120,360)" to="(120,510)"/> <wire from="(280,300)" to="(280,330)"/> <wire from="(370,550)" to="(370,580)"/> <wire from="(170,1400)" to="(210,1400)"/> <wire from="(350,880)" to="(350,970)"/> <wire from="(560,740)" to="(560,780)"/> <wire from="(370,400)" to="(460,400)"/> <wire from="(480,1730)" to="(500,1730)"/> <wire from="(260,1180)" to="(290,1180)"/> <wire from="(460,960)" to="(460,1000)"/> <wire from="(190,480)" to="(210,480)"/> <wire from="(280,900)" to="(290,900)"/> <wire from="(370,350)" to="(380,350)"/> <wire from="(240,1240)" to="(320,1240)"/> <wire from="(330,1650)" to="(410,1650)"/> <wire from="(300,160)" to="(300,220)"/> <wire from="(170,1570)" to="(300,1570)"/> <wire from="(370,1030)" to="(370,1100)"/> <wire from="(450,1640)" to="(500,1640)"/> <wire from="(480,1170)" to="(480,1320)"/> <wire from="(480,1620)" to="(480,1710)"/> <wire from="(120,810)" to="(120,960)"/> <wire from="(370,1000)" to="(370,1030)"/> <wire from="(320,310)" to="(320,340)"/> <wire from="(280,750)" to="(280,780)"/> <wire from="(370,130)" to="(410,130)"/> <wire from="(350,1330)" to="(350,1420)"/> <wire from="(370,850)" to="(460,850)"/> <wire from="(560,1190)" to="(560,1230)"/> <wire from="(260,1630)" to="(290,1630)"/> <wire from="(330,430)" to="(350,430)"/> <wire from="(480,420)" to="(500,420)"/> <wire from="(280,480)" to="(560,480)"/> <wire from="(460,1410)" to="(460,1450)"/> <wire from="(190,930)" to="(210,930)"/> <wire from="(400,350)" to="(410,350)"/> <wire from="(280,1350)" to="(290,1350)"/> <wire from="(370,800)" to="(380,800)"/> <wire from="(240,1690)" to="(320,1690)"/> <wire from="(300,610)" to="(300,670)"/> <wire from="(90,430)" to="(160,430)"/> <wire from="(370,1480)" to="(370,1550)"/> <wire from="(350,220)" to="(410,220)"/> <wire from="(120,1710)" to="(120,1780)"/> <wire from="(260,280)" to="(260,430)"/> <wire from="(120,1260)" to="(120,1410)"/> <wire from="(370,1450)" to="(370,1480)"/> <wire from="(480,1870)" to="(590,1870)"/> <wire from="(280,1200)" to="(280,1230)"/> <wire from="(320,760)" to="(320,790)"/> <wire from="(370,580)" to="(410,580)"/> <wire from="(370,1300)" to="(460,1300)"/> <wire from="(560,1640)" to="(560,1680)"/> <wire from="(540,290)" to="(560,290)"/> <wire from="(540,1730)" to="(560,1730)"/> <wire from="(330,880)" to="(350,880)"/> <wire from="(360,1870)" to="(380,1870)"/> <wire from="(480,870)" to="(500,870)"/> <wire from="(280,930)" to="(560,930)"/> <wire from="(120,510)" to="(140,510)"/> <wire from="(190,1380)" to="(210,1380)"/> <wire from="(370,1250)" to="(380,1250)"/> <wire from="(400,800)" to="(410,800)"/> <wire from="(450,210)" to="(460,210)"/> <wire from="(330,150)" to="(410,150)"/> <wire from="(420,1820)" to="(420,1870)"/> <wire from="(300,1060)" to="(300,1120)"/> <wire from="(90,880)" to="(160,880)"/> <wire from="(160,280)" to="(160,340)"/> <wire from="(260,1860)" to="(320,1860)"/> <wire from="(350,670)" to="(410,670)"/> <wire from="(450,140)" to="(500,140)"/> <wire from="(260,730)" to="(260,880)"/> <wire from="(190,180)" to="(190,330)"/> <wire from="(170,350)" to="(210,350)"/> <wire from="(320,1210)" to="(320,1240)"/> <wire from="(280,1650)" to="(280,1680)"/> <wire from="(90,1820)" to="(380,1820)"/> <wire from="(370,1030)" to="(410,1030)"/> <wire from="(540,740)" to="(560,740)"/> <wire from="(260,130)" to="(290,130)"/> <wire from="(330,1330)" to="(350,1330)"/> <wire from="(480,1320)" to="(500,1320)"/> <wire from="(280,1380)" to="(560,1380)"/> <wire from="(120,960)" to="(140,960)"/> <wire from="(400,1250)" to="(410,1250)"/> <wire from="(450,660)" to="(460,660)"/> <wire from="(240,190)" to="(320,190)"/> <wire from="(330,600)" to="(410,600)"/> <wire from="(90,1330)" to="(160,1330)"/> <wire from="(300,1510)" to="(300,1570)"/> <wire from="(170,520)" to="(300,520)"/> <wire from="(160,730)" to="(160,790)"/> <wire from="(350,1120)" to="(410,1120)"/> <wire from="(360,1770)" to="(420,1770)"/> <wire from="(450,590)" to="(500,590)"/> <wire from="(480,120)" to="(480,270)"/> <wire from="(370,110)" to="(370,130)"/> <wire from="(260,1180)" to="(260,1330)"/> <wire from="(190,630)" to="(190,780)"/> <wire from="(170,800)" to="(210,800)"/> <wire from="(320,1660)" to="(320,1690)"/> <wire from="(370,1480)" to="(410,1480)"/> <wire from="(350,280)" to="(350,370)"/> <wire from="(560,140)" to="(560,180)"/> <wire from="(540,1190)" to="(560,1190)"/> <wire from="(450,1730)" to="(480,1730)"/> <wire from="(260,580)" to="(290,580)"/> <wire from="(120,1410)" to="(140,1410)"/> <wire from="(460,360)" to="(460,400)"/> <wire from="(450,1110)" to="(460,1110)"/> <wire from="(280,300)" to="(290,300)"/> <wire from="(240,640)" to="(320,640)"/> <wire from="(330,1050)" to="(410,1050)"/> <wire from="(120,1780)" to="(320,1780)"/> <wire from="(170,970)" to="(300,970)"/> <wire from="(160,1180)" to="(160,1240)"/> <wire from="(350,1570)" to="(410,1570)"/> <wire from="(370,430)" to="(370,500)"/> <wire from="(450,1040)" to="(500,1040)"/> <wire from="(480,570)" to="(480,720)"/> <wire from="(190,1080)" to="(190,1230)"/> <wire from="(120,210)" to="(120,360)"/> <wire from="(190,90)" to="(190,180)"/> <wire from="(280,150)" to="(280,180)"/> <wire from="(370,400)" to="(370,430)"/> <wire from="(170,1250)" to="(210,1250)"/> <wire from="(350,730)" to="(350,820)"/> <wire from="(560,590)" to="(560,630)"/> <wire from="(370,250)" to="(460,250)"/> <wire from="(540,1640)" to="(560,1640)"/> <wire from="(260,1030)" to="(290,1030)"/> <wire from="(460,810)" to="(460,850)"/> <wire from="(190,330)" to="(210,330)"/> <wire from="(450,1560)" to="(460,1560)"/> <wire from="(280,750)" to="(290,750)"/> <wire from="(370,200)" to="(380,200)"/> <wire from="(420,1820)" to="(560,1820)"/> <wire from="(240,1090)" to="(320,1090)"/> <wire from="(330,1500)" to="(410,1500)"/> <wire from="(170,1420)" to="(300,1420)"/> <wire from="(160,1630)" to="(160,1690)"/> <comp lib="4" loc="(330,1630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,1720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(540,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(330,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL10"/> </comp> <comp lib="2" loc="(140,360)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(240,1240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL5"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL1"/> </comp> <comp lib="2" loc="(140,210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL8"/> </comp> <comp lib="0" loc="(590,1920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(450,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1540)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,1250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL2"/> </comp> <comp lib="1" loc="(450,1190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,1090)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL6"/> </comp> <comp lib="0" loc="(90,1820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(288,1852)" name="Text"> <a name="text" val="FSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(330,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,890)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1110)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,590)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(540,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1260)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(400,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,790)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,1390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL3"/> </comp> <comp lib="1" loc="(450,1340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,740)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(540,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(516,1758)" name="Text"> <a name="text" val="DL4"/> </comp> <comp lib="1" loc="(400,1100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(330,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1640)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(370,110)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(450,140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(240,190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(240,640)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(391,1891)" name="Text"> <a name="text" val="INV2"/> </comp> <comp lib="4" loc="(540,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(288,1773)" name="Text"> <a name="text" val="FLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(330,1180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,340)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL9"/> </comp> <comp lib="1" loc="(400,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(540,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1040)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,810)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1110)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,960)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL7"/> </comp> <comp lib="4" loc="(330,430)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1560)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(320,1860)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(450,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,660)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(400,1550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(590,1870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FQOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(330,1030)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,940)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(330,1480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL0"/> </comp> <comp lib="1" loc="(380,1870)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(540,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(540,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(330,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1490)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,440)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL4"/> </comp> <comp lib="1" loc="(450,210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(540,1720)" name="D-latch"/> <comp lib="1" loc="(450,510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1690)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(320,1780)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,1410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> </circuit> <circuit name="SQUARE_DUTY_DOWN_COUNTER"> <a name="circuit" val="SQUARE_DUTY_DOWN_COUNTER"/> <a name="clabel" val="DUTY DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif bold 12"/> <appear> <path d="M116,52 Q120,62 124,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b52bff" height="200" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="214">SQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="214">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="234">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="134">FLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="114">FQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="194">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="154">W4003(7)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="174">W4000(4)</text> <circ-port height="8" pin="100,40" width="8" x="46" y="66"/> <circ-port height="8" pin="100,80" width="8" x="46" y="106"/> <circ-port height="8" pin="100,120" width="8" x="46" y="186"/> <circ-port height="8" pin="100,170" width="8" x="46" y="146"/> <circ-port height="8" pin="100,250" width="8" x="46" y="126"/> <circ-port height="8" pin="100,860" width="8" x="46" y="166"/> <circ-port height="8" pin="100,740" width="8" x="46" y="206"/> <circ-port height="8" pin="100,810" width="8" x="46" y="226"/> <circ-port height="10" pin="760,380" width="10" x="205" y="205"/> <circ-port height="10" pin="760,740" width="10" x="205" y="215"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(230,340)" to="(290,340)"/> <wire from="(230,500)" to="(290,500)"/> <wire from="(230,660)" to="(290,660)"/> <wire from="(200,600)" to="(200,610)"/> <wire from="(190,750)" to="(190,760)"/> <wire from="(270,740)" to="(710,740)"/> <wire from="(650,370)" to="(650,400)"/> <wire from="(530,370)" to="(530,400)"/> <wire from="(240,760)" to="(240,790)"/> <wire from="(240,720)" to="(240,750)"/> <wire from="(120,120)" to="(120,150)"/> <wire from="(210,790)" to="(240,790)"/> <wire from="(670,380)" to="(690,380)"/> <wire from="(460,530)" to="(670,530)"/> <wire from="(460,410)" to="(480,410)"/> <wire from="(280,320)" to="(290,320)"/> <wire from="(280,480)" to="(290,480)"/> <wire from="(280,640)" to="(290,640)"/> <wire from="(240,760)" to="(250,760)"/> <wire from="(210,270)" to="(290,270)"/> <wire from="(210,430)" to="(290,430)"/> <wire from="(210,590)" to="(290,590)"/> <wire from="(330,650)" to="(340,650)"/> <wire from="(330,330)" to="(340,330)"/> <wire from="(330,490)" to="(340,490)"/> <wire from="(100,810)" to="(170,810)"/> <wire from="(520,400)" to="(530,400)"/> <wire from="(460,410)" to="(460,530)"/> <wire from="(250,570)" to="(250,640)"/> <wire from="(250,410)" to="(250,480)"/> <wire from="(250,250)" to="(250,320)"/> <wire from="(330,580)" to="(380,580)"/> <wire from="(330,260)" to="(380,260)"/> <wire from="(330,420)" to="(380,420)"/> <wire from="(590,360)" to="(690,360)"/> <wire from="(230,370)" to="(460,370)"/> <wire from="(230,530)" to="(460,530)"/> <wire from="(670,380)" to="(670,530)"/> <wire from="(220,830)" to="(220,860)"/> <wire from="(140,250)" to="(170,250)"/> <wire from="(140,410)" to="(170,410)"/> <wire from="(140,570)" to="(170,570)"/> <wire from="(210,720)" to="(240,720)"/> <wire from="(140,250)" to="(140,410)"/> <wire from="(140,410)" to="(140,570)"/> <wire from="(250,390)" to="(340,390)"/> <wire from="(250,550)" to="(340,550)"/> <wire from="(120,150)" to="(150,150)"/> <wire from="(530,370)" to="(550,370)"/> <wire from="(250,80)" to="(250,250)"/> <wire from="(360,240)" to="(380,240)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(420,260)" to="(440,260)"/> <wire from="(420,420)" to="(440,420)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(530,400)" to="(560,400)"/> <wire from="(160,300)" to="(440,300)"/> <wire from="(160,460)" to="(440,460)"/> <wire from="(160,620)" to="(440,620)"/> <wire from="(150,790)" to="(170,790)"/> <wire from="(210,250)" to="(230,250)"/> <wire from="(210,410)" to="(230,410)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(200,160)" to="(200,280)"/> <wire from="(100,740)" to="(170,740)"/> <wire from="(530,210)" to="(530,350)"/> <wire from="(150,720)" to="(150,790)"/> <wire from="(360,560)" to="(360,690)"/> <wire from="(100,860)" to="(220,860)"/> <wire from="(250,550)" to="(250,570)"/> <wire from="(250,390)" to="(250,410)"/> <wire from="(100,250)" to="(140,250)"/> <wire from="(150,690)" to="(150,720)"/> <wire from="(710,400)" to="(710,740)"/> <wire from="(190,830)" to="(220,830)"/> <wire from="(200,440)" to="(200,600)"/> <wire from="(200,280)" to="(200,440)"/> <wire from="(360,400)" to="(360,560)"/> <wire from="(360,240)" to="(360,400)"/> <wire from="(230,370)" to="(230,410)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(100,80)" to="(250,80)"/> <wire from="(230,530)" to="(230,570)"/> <wire from="(230,210)" to="(230,250)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(440,420)" to="(440,460)"/> <wire from="(440,260)" to="(440,300)"/> <wire from="(150,720)" to="(170,720)"/> <wire from="(220,760)" to="(220,830)"/> <wire from="(710,740)" to="(760,740)"/> <wire from="(190,820)" to="(190,830)"/> <wire from="(360,40)" to="(360,240)"/> <wire from="(100,170)" to="(150,170)"/> <wire from="(150,690)" to="(260,690)"/> <wire from="(650,370)" to="(690,370)"/> <wire from="(460,370)" to="(460,390)"/> <wire from="(230,570)" to="(230,660)"/> <wire from="(230,410)" to="(230,500)"/> <wire from="(230,250)" to="(230,340)"/> <wire from="(250,250)" to="(290,250)"/> <wire from="(250,410)" to="(290,410)"/> <wire from="(250,570)" to="(290,570)"/> <wire from="(160,590)" to="(160,620)"/> <wire from="(160,430)" to="(160,460)"/> <wire from="(160,270)" to="(160,300)"/> <wire from="(530,400)" to="(530,440)"/> <wire from="(190,760)" to="(220,760)"/> <wire from="(530,440)" to="(680,440)"/> <wire from="(530,350)" to="(550,350)"/> <wire from="(730,380)" to="(760,380)"/> <wire from="(510,210)" to="(530,210)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(180,160)" to="(200,160)"/> <wire from="(250,480)" to="(260,480)"/> <wire from="(250,640)" to="(260,640)"/> <wire from="(240,750)" to="(250,750)"/> <wire from="(580,400)" to="(650,400)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(160,430)" to="(170,430)"/> <wire from="(160,590)" to="(170,590)"/> <wire from="(280,690)" to="(360,690)"/> <wire from="(250,320)" to="(260,320)"/> <wire from="(680,390)" to="(680,440)"/> <wire from="(340,330)" to="(340,390)"/> <wire from="(340,490)" to="(340,550)"/> <wire from="(680,390)" to="(690,390)"/> <wire from="(100,40)" to="(360,40)"/> <wire from="(230,210)" to="(490,210)"/> <comp lib="6" loc="(497,431)" name="Text"> <a name="text" val="NAND1"/> </comp> <comp lib="6" loc="(92,906)" name="Text"> <a name="text" val="W4004 SQUARE 1"/> </comp> <comp lib="6" loc="(619,522)" name="Text"> <a name="text" val="50%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(499,232)" name="Text"> <a name="text" val="INV3"/> </comp> <comp lib="6" loc="(93,218)" name="Text"> <a name="text" val="W4007 SQUARE 1"/> </comp> <comp lib="4" loc="(210,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(618,393)" name="Text"> <a name="text" val="25%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(570,424)" name="Text"> <a name="text" val="INV4"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(93,199)" name="Text"> <a name="text" val="W4003 SQUARE 0"/> </comp> <comp lib="1" loc="(280,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(210,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(180,160)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(280,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(621,353)" name="Text"> <a name="text" val="12.5%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(280,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(210,250)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(92,888)" name="Text"> <a name="text" val="W4000 SQUARE 0"/> </comp> <comp lib="0" loc="(100,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4000"/> </comp> <comp lib="6" loc="(618,432)" name="Text"> <a name="text" val="75%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(760,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,580)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="4" loc="(420,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(420,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(510,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="2" loc="(730,380)" name="Multiplexer"> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(270,740)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FLOAD"/> </comp> <comp lib="1" loc="(330,260)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(567,335)" name="Text"> <a name="text" val="NOR10"/> </comp> <comp lib="1" loc="(590,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,400)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FQOUT"/> </comp> <comp lib="1" loc="(260,690)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(390,653)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="4" loc="(420,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(760,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="2"/> <a name="label" val="SQ_DUTY"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="TRIANGLE_CHANNEL"> <a name="circuit" val="TRIANGLE_CHANNEL"/> <a name="clabel" val="TRIANGLE CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M110,40 Q114,50 118,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#aea4ff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="225">TRI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="245">TRI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="264">TRI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="284">TRI3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="305">TRI/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="690" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="684" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="155">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="175">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="194">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="225">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="245">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="265">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="284">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="304">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="324">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="344">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="364">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="688" y="404">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="424">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="444">NOTRI</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="684" y="384">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="681" y="134">W401A</text> <circ-port height="8" pin="80,30" width="8" x="706" y="96"/> <circ-port height="8" pin="80,100" width="8" x="706" y="76"/> <circ-port height="8" pin="80,490" width="8" x="706" y="146"/> <circ-port height="8" pin="80,140" width="8" x="706" y="166"/> <circ-port height="8" pin="80,570" width="8" x="706" y="186"/> <circ-port height="8" pin="80,210" width="8" x="706" y="216"/> <circ-port height="8" pin="80,240" width="8" x="706" y="236"/> <circ-port height="8" pin="80,270" width="8" x="706" y="256"/> <circ-port height="8" pin="80,300" width="8" x="706" y="276"/> <circ-port height="8" pin="80,330" width="8" x="706" y="296"/> <circ-port height="8" pin="80,360" width="8" x="706" y="316"/> <circ-port height="8" pin="80,390" width="8" x="706" y="336"/> <circ-port height="8" pin="80,420" width="8" x="706" y="356"/> <circ-port height="8" pin="80,730" width="8" x="706" y="396"/> <circ-port height="8" pin="80,690" width="8" x="706" y="416"/> <circ-port height="8" pin="80,780" width="8" x="706" y="436"/> <circ-port height="10" pin="740,550" width="10" x="45" y="215"/> <circ-port height="10" pin="740,580" width="10" x="45" y="235"/> <circ-port height="10" pin="740,610" width="10" x="45" y="255"/> <circ-port height="10" pin="740,640" width="10" x="45" y="275"/> <circ-port height="10" pin="740,820" width="10" x="45" y="295"/> <circ-port height="8" pin="80,820" width="8" x="706" y="376"/> <circ-port height="8" pin="80,610" width="8" x="706" y="126"/> <circ-port height="10" pin="680,400" width="10" x="45" y="65"/> <circ-anchor facing="east" height="6" width="6" x="137" y="37"/> </appear> <wire from="(470,690)" to="(470,820)"/> <wire from="(100,300)" to="(100,310)"/> <wire from="(100,320)" to="(100,330)"/> <wire from="(80,420)" to="(130,420)"/> <wire from="(210,30)" to="(450,30)"/> <wire from="(80,140)" to="(250,140)"/> <wire from="(80,390)" to="(120,390)"/> <wire from="(430,380)" to="(430,600)"/> <wire from="(170,320)" to="(210,320)"/> <wire from="(170,600)" to="(210,600)"/> <wire from="(210,100)" to="(250,100)"/> <wire from="(400,450)" to="(630,450)"/> <wire from="(430,600)" to="(470,600)"/> <wire from="(430,620)" to="(470,620)"/> <wire from="(110,270)" to="(110,300)"/> <wire from="(110,330)" to="(110,360)"/> <wire from="(100,320)" to="(130,320)"/> <wire from="(80,360)" to="(110,360)"/> <wire from="(400,380)" to="(430,380)"/> <wire from="(540,690)" to="(560,690)"/> <wire from="(540,710)" to="(560,710)"/> <wire from="(540,670)" to="(560,670)"/> <wire from="(710,610)" to="(740,610)"/> <wire from="(710,550)" to="(740,550)"/> <wire from="(530,610)" to="(560,610)"/> <wire from="(500,690)" to="(520,690)"/> <wire from="(110,300)" to="(130,300)"/> <wire from="(80,330)" to="(100,330)"/> <wire from="(150,320)" to="(170,320)"/> <wire from="(230,340)" to="(250,340)"/> <wire from="(230,300)" to="(250,300)"/> <wire from="(230,620)" to="(250,620)"/> <wire from="(230,580)" to="(250,580)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(230,320)" to="(250,320)"/> <wire from="(230,600)" to="(250,600)"/> <wire from="(230,560)" to="(250,560)"/> <wire from="(120,240)" to="(120,290)"/> <wire from="(120,340)" to="(120,390)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(240,380)" to="(250,380)"/> <wire from="(80,100)" to="(90,100)"/> <wire from="(120,340)" to="(130,340)"/> <wire from="(450,630)" to="(450,820)"/> <wire from="(400,610)" to="(470,610)"/> <wire from="(400,690)" to="(470,690)"/> <wire from="(550,530)" to="(560,530)"/> <wire from="(550,770)" to="(560,770)"/> <wire from="(130,210)" to="(130,280)"/> <wire from="(130,350)" to="(130,420)"/> <wire from="(210,30)" to="(210,100)"/> <wire from="(80,210)" to="(130,210)"/> <wire from="(80,820)" to="(450,820)"/> <wire from="(170,600)" to="(170,750)"/> <wire from="(450,510)" to="(560,510)"/> <wire from="(400,390)" to="(640,390)"/> <wire from="(450,510)" to="(450,590)"/> <wire from="(80,690)" to="(250,690)"/> <wire from="(80,490)" to="(250,490)"/> <wire from="(80,240)" to="(120,240)"/> <wire from="(170,320)" to="(170,600)"/> <wire from="(80,270)" to="(110,270)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(80,780)" to="(430,780)"/> <wire from="(540,700)" to="(560,700)"/> <wire from="(540,680)" to="(560,680)"/> <wire from="(450,30)" to="(450,510)"/> <wire from="(430,620)" to="(430,780)"/> <wire from="(660,400)" to="(680,400)"/> <wire from="(710,580)" to="(740,580)"/> <wire from="(710,640)" to="(740,640)"/> <wire from="(450,590)" to="(470,590)"/> <wire from="(450,630)" to="(470,630)"/> <wire from="(80,300)" to="(100,300)"/> <wire from="(110,330)" to="(130,330)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(230,350)" to="(250,350)"/> <wire from="(230,590)" to="(250,590)"/> <wire from="(230,630)" to="(250,630)"/> <wire from="(230,290)" to="(250,290)"/> <wire from="(230,330)" to="(250,330)"/> <wire from="(230,570)" to="(250,570)"/> <wire from="(230,610)" to="(250,610)"/> <wire from="(240,450)" to="(250,450)"/> <wire from="(470,820)" to="(740,820)"/> <wire from="(170,750)" to="(500,750)"/> <wire from="(240,710)" to="(250,710)"/> <wire from="(240,510)" to="(250,510)"/> <wire from="(120,290)" to="(130,290)"/> <wire from="(80,730)" to="(90,730)"/> <wire from="(80,610)" to="(90,610)"/> <wire from="(80,570)" to="(90,570)"/> <wire from="(630,400)" to="(630,450)"/> <wire from="(500,690)" to="(500,750)"/> <wire from="(80,30)" to="(210,30)"/> <wire from="(630,400)" to="(640,400)"/> <comp lib="0" loc="(740,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(740,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(740,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,100)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(90,570)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(210,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(210,600)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(240,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(550,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W401A"/> </comp> <comp loc="(300,430)" name="TRIANGLE_LINEAR_DOWN_COUNTER"/> <comp lib="0" loc="(90,610)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(520,690)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(240,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(530,610)" name="NOR Gate"> <a name="label" val="5"/> </comp> <comp lib="0" loc="(150,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,730)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(680,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="19"/> <a name="label" val="TRI"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOTRI"/> </comp> <comp lib="0" loc="(80,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(240,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(740,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(550,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(80,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(740,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCk"/> </comp> <comp lib="0" loc="(240,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp loc="(610,490)" name="TRIANGLE_OUTPUT_COUNTER"/> <comp loc="(310,80)" name="TRIANGLE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(80,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(80,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(660,400)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="19"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> </comp> <comp lib="0" loc="(80,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(240,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> </circuit> <circuit name="TRIANGLE_FREQUENCY_DOWN_COUNTER"> <a name="circuit" val="TRIANGLE_FREQUENCY_DOWN_COUNTER"/> <a name="clabel" val="TRIANGLE FREQUENCY DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M71,11 Q75,21 79,11" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#56ffaf" height="321" stroke="#000000" stroke-width="2" width="150" x="50" y="10"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="215">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="314">#FOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="74">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="95">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="34">PHI1</text> <circ-port height="8" pin="110,50" width="8" x="46" y="26"/> <circ-port height="8" pin="110,170" width="8" x="46" y="66"/> <circ-port height="8" pin="110,1870" width="8" x="46" y="86"/> <circ-port height="8" pin="110,90" width="8" x="46" y="306"/> <circ-port height="8" pin="110,230" width="8" x="46" y="206"/> <circ-port height="8" pin="110,390" width="8" x="46" y="216"/> <circ-port height="8" pin="110,550" width="8" x="46" y="226"/> <circ-port height="8" pin="110,710" width="8" x="46" y="236"/> <circ-port height="8" pin="110,870" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1030" width="8" x="46" y="256"/> <circ-port height="8" pin="110,1190" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1350" width="8" x="46" y="276"/> <circ-port height="10" pin="760,1920" width="10" x="195" y="305"/> <circ-port height="10" pin="980,230" width="10" x="195" y="315"/> <circ-anchor facing="east" height="6" width="6" x="107" y="7"/> </appear> <wire from="(160,390)" to="(220,390)"/> <wire from="(160,1670)" to="(220,1670)"/> <wire from="(330,320)" to="(770,320)"/> <wire from="(330,480)" to="(770,480)"/> <wire from="(240,1040)" to="(240,1060)"/> <wire from="(240,880)" to="(240,900)"/> <wire from="(240,1200)" to="(240,1220)"/> <wire from="(240,1680)" to="(240,1700)"/> <wire from="(240,1520)" to="(240,1540)"/> <wire from="(240,1360)" to="(240,1380)"/> <wire from="(600,1970)" to="(640,1970)"/> <wire from="(240,720)" to="(240,740)"/> <wire from="(240,400)" to="(240,420)"/> <wire from="(240,240)" to="(240,260)"/> <wire from="(240,560)" to="(240,580)"/> <wire from="(110,170)" to="(280,170)"/> <wire from="(240,1840)" to="(240,1870)"/> <wire from="(360,1060)" to="(360,1220)"/> <wire from="(360,900)" to="(360,1060)"/> <wire from="(360,740)" to="(360,900)"/> <wire from="(360,580)" to="(360,740)"/> <wire from="(360,420)" to="(360,580)"/> <wire from="(360,260)" to="(360,420)"/> <wire from="(360,1700)" to="(360,1860)"/> <wire from="(360,1220)" to="(360,1380)"/> <wire from="(360,1380)" to="(360,1540)"/> <wire from="(360,1540)" to="(360,1700)"/> <wire from="(770,390)" to="(900,390)"/> <wire from="(140,550)" to="(140,1830)"/> <wire from="(530,690)" to="(530,760)"/> <wire from="(530,210)" to="(530,280)"/> <wire from="(530,370)" to="(530,440)"/> <wire from="(530,530)" to="(530,600)"/> <wire from="(530,850)" to="(530,920)"/> <wire from="(530,1010)" to="(530,1080)"/> <wire from="(530,1170)" to="(530,1240)"/> <wire from="(530,1330)" to="(530,1400)"/> <wire from="(530,1490)" to="(530,1560)"/> <wire from="(530,1650)" to="(530,1720)"/> <wire from="(110,1190)" to="(220,1190)"/> <wire from="(110,1350)" to="(220,1350)"/> <wire from="(110,1030)" to="(220,1030)"/> <wire from="(110,710)" to="(220,710)"/> <wire from="(110,870)" to="(220,870)"/> <wire from="(830,450)" to="(830,1440)"/> <wire from="(530,1810)" to="(530,1910)"/> <wire from="(330,1600)" to="(840,1600)"/> <wire from="(800,420)" to="(900,420)"/> <wire from="(680,1990)" to="(720,1990)"/> <wire from="(240,1870)" to="(280,1870)"/> <wire from="(460,1040)" to="(460,1100)"/> <wire from="(460,1200)" to="(460,1260)"/> <wire from="(460,720)" to="(460,780)"/> <wire from="(460,560)" to="(460,620)"/> <wire from="(460,240)" to="(460,300)"/> <wire from="(460,400)" to="(460,460)"/> <wire from="(460,880)" to="(460,940)"/> <wire from="(460,1360)" to="(460,1420)"/> <wire from="(460,1520)" to="(460,1580)"/> <wire from="(460,1680)" to="(460,1740)"/> <wire from="(460,1840)" to="(460,1900)"/> <wire from="(510,1930)" to="(570,1930)"/> <wire from="(530,850)" to="(570,850)"/> <wire from="(530,210)" to="(570,210)"/> <wire from="(530,1010)" to="(570,1010)"/> <wire from="(530,690)" to="(570,690)"/> <wire from="(530,370)" to="(570,370)"/> <wire from="(530,530)" to="(570,530)"/> <wire from="(530,1170)" to="(570,1170)"/> <wire from="(530,1330)" to="(570,1330)"/> <wire from="(530,1490)" to="(570,1490)"/> <wire from="(530,1650)" to="(570,1650)"/> <wire from="(530,1810)" to="(570,1810)"/> <wire from="(770,390)" to="(770,480)"/> <wire from="(330,1120)" to="(810,1120)"/> <wire from="(140,550)" to="(220,550)"/> <wire from="(140,1830)" to="(220,1830)"/> <wire from="(830,450)" to="(900,450)"/> <wire from="(840,460)" to="(840,1600)"/> <wire from="(510,300)" to="(570,300)"/> <wire from="(510,460)" to="(570,460)"/> <wire from="(920,230)" to="(980,230)"/> <wire from="(510,620)" to="(570,620)"/> <wire from="(510,780)" to="(570,780)"/> <wire from="(510,940)" to="(570,940)"/> <wire from="(510,1100)" to="(570,1100)"/> <wire from="(510,1260)" to="(570,1260)"/> <wire from="(510,1420)" to="(570,1420)"/> <wire from="(510,1580)" to="(570,1580)"/> <wire from="(510,1740)" to="(570,1740)"/> <wire from="(600,1990)" to="(660,1990)"/> <wire from="(110,390)" to="(160,390)"/> <wire from="(430,850)" to="(430,1010)"/> <wire from="(430,690)" to="(430,850)"/> <wire from="(430,530)" to="(430,690)"/> <wire from="(430,370)" to="(430,530)"/> <wire from="(430,210)" to="(430,370)"/> <wire from="(430,1010)" to="(430,1170)"/> <wire from="(430,1170)" to="(430,1330)"/> <wire from="(430,1330)" to="(430,1490)"/> <wire from="(430,1490)" to="(430,1650)"/> <wire from="(430,1650)" to="(430,1810)"/> <wire from="(430,1810)" to="(430,1980)"/> <wire from="(490,1030)" to="(570,1030)"/> <wire from="(490,710)" to="(570,710)"/> <wire from="(490,870)" to="(570,870)"/> <wire from="(490,550)" to="(570,550)"/> <wire from="(490,390)" to="(570,390)"/> <wire from="(490,230)" to="(570,230)"/> <wire from="(490,1190)" to="(570,1190)"/> <wire from="(490,1350)" to="(570,1350)"/> <wire from="(490,1510)" to="(570,1510)"/> <wire from="(490,1670)" to="(570,1670)"/> <wire from="(490,1830)" to="(570,1830)"/> <wire from="(330,690)" to="(330,750)"/> <wire from="(330,1810)" to="(330,1870)"/> <wire from="(330,1490)" to="(330,1550)"/> <wire from="(330,1650)" to="(330,1710)"/> <wire from="(330,210)" to="(330,270)"/> <wire from="(330,370)" to="(330,430)"/> <wire from="(330,530)" to="(330,590)"/> <wire from="(330,850)" to="(330,910)"/> <wire from="(330,1010)" to="(330,1070)"/> <wire from="(330,1170)" to="(330,1230)"/> <wire from="(330,1330)" to="(330,1390)"/> <wire from="(330,160)" to="(780,160)"/> <wire from="(330,640)" to="(780,640)"/> <wire from="(610,1570)" to="(620,1570)"/> <wire from="(610,1730)" to="(620,1730)"/> <wire from="(610,770)" to="(620,770)"/> <wire from="(610,290)" to="(620,290)"/> <wire from="(610,450)" to="(620,450)"/> <wire from="(610,610)" to="(620,610)"/> <wire from="(610,930)" to="(620,930)"/> <wire from="(610,1090)" to="(620,1090)"/> <wire from="(610,1250)" to="(620,1250)"/> <wire from="(610,1410)" to="(620,1410)"/> <wire from="(610,1660)" to="(660,1660)"/> <wire from="(610,1820)" to="(660,1820)"/> <wire from="(610,860)" to="(660,860)"/> <wire from="(610,1180)" to="(660,1180)"/> <wire from="(610,700)" to="(660,700)"/> <wire from="(610,540)" to="(660,540)"/> <wire from="(610,1020)" to="(660,1020)"/> <wire from="(610,220)" to="(660,220)"/> <wire from="(610,380)" to="(660,380)"/> <wire from="(610,1500)" to="(660,1500)"/> <wire from="(610,1340)" to="(660,1340)"/> <wire from="(340,440)" to="(380,440)"/> <wire from="(340,1080)" to="(380,1080)"/> <wire from="(340,280)" to="(380,280)"/> <wire from="(340,600)" to="(380,600)"/> <wire from="(340,1400)" to="(380,1400)"/> <wire from="(340,760)" to="(380,760)"/> <wire from="(340,920)" to="(380,920)"/> <wire from="(340,1240)" to="(380,1240)"/> <wire from="(340,1560)" to="(380,1560)"/> <wire from="(340,1720)" to="(380,1720)"/> <wire from="(340,1880)" to="(380,1880)"/> <wire from="(640,1800)" to="(640,1900)"/> <wire from="(430,1980)" to="(560,1980)"/> <wire from="(780,400)" to="(780,640)"/> <wire from="(200,50)" to="(200,110)"/> <wire from="(850,470)" to="(850,1760)"/> <wire from="(340,1100)" to="(460,1100)"/> <wire from="(340,1260)" to="(460,1260)"/> <wire from="(340,940)" to="(460,940)"/> <wire from="(340,780)" to="(460,780)"/> <wire from="(340,620)" to="(460,620)"/> <wire from="(340,300)" to="(460,300)"/> <wire from="(340,460)" to="(460,460)"/> <wire from="(340,1420)" to="(460,1420)"/> <wire from="(340,1580)" to="(460,1580)"/> <wire from="(340,1900)" to="(460,1900)"/> <wire from="(340,1740)" to="(460,1740)"/> <wire from="(530,190)" to="(530,210)"/> <wire from="(720,700)" to="(720,740)"/> <wire from="(720,380)" to="(720,420)"/> <wire from="(720,220)" to="(720,260)"/> <wire from="(720,540)" to="(720,580)"/> <wire from="(720,1020)" to="(720,1060)"/> <wire from="(720,1180)" to="(720,1220)"/> <wire from="(720,860)" to="(720,900)"/> <wire from="(720,1340)" to="(720,1380)"/> <wire from="(720,1500)" to="(720,1540)"/> <wire from="(720,1660)" to="(720,1700)"/> <wire from="(720,1820)" to="(720,1860)"/> <wire from="(640,520)" to="(640,680)"/> <wire from="(640,360)" to="(640,520)"/> <wire from="(640,200)" to="(640,360)"/> <wire from="(640,840)" to="(640,1000)"/> <wire from="(640,1160)" to="(640,1320)"/> <wire from="(640,1000)" to="(640,1160)"/> <wire from="(640,680)" to="(640,840)"/> <wire from="(640,1320)" to="(640,1480)"/> <wire from="(640,1480)" to="(640,1640)"/> <wire from="(640,1640)" to="(640,1800)"/> <wire from="(530,1910)" to="(540,1910)"/> <wire from="(330,1760)" to="(850,1760)"/> <wire from="(160,390)" to="(160,1670)"/> <wire from="(610,1920)" to="(660,1920)"/> <wire from="(640,1900)" to="(640,1970)"/> <wire from="(440,230)" to="(440,260)"/> <wire from="(440,390)" to="(440,420)"/> <wire from="(440,550)" to="(440,580)"/> <wire from="(440,1510)" to="(440,1540)"/> <wire from="(440,1350)" to="(440,1380)"/> <wire from="(440,1670)" to="(440,1700)"/> <wire from="(440,1830)" to="(440,1860)"/> <wire from="(440,1030)" to="(440,1060)"/> <wire from="(440,710)" to="(440,740)"/> <wire from="(440,870)" to="(440,900)"/> <wire from="(440,1190)" to="(440,1220)"/> <wire from="(790,410)" to="(900,410)"/> <wire from="(200,690)" to="(200,850)"/> <wire from="(200,370)" to="(200,530)"/> <wire from="(200,210)" to="(200,370)"/> <wire from="(200,530)" to="(200,690)"/> <wire from="(200,1010)" to="(200,1170)"/> <wire from="(200,850)" to="(200,1010)"/> <wire from="(200,1170)" to="(200,1330)"/> <wire from="(200,1330)" to="(200,1490)"/> <wire from="(200,1490)" to="(200,1650)"/> <wire from="(200,1650)" to="(200,1810)"/> <wire from="(360,1060)" to="(380,1060)"/> <wire from="(360,740)" to="(380,740)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(360,1380)" to="(380,1380)"/> <wire from="(360,1220)" to="(380,1220)"/> <wire from="(360,1540)" to="(380,1540)"/> <wire from="(360,1700)" to="(380,1700)"/> <wire from="(360,1860)" to="(380,1860)"/> <wire from="(530,650)" to="(620,650)"/> <wire from="(530,330)" to="(620,330)"/> <wire from="(530,1290)" to="(620,1290)"/> <wire from="(530,490)" to="(620,490)"/> <wire from="(530,810)" to="(620,810)"/> <wire from="(530,1610)" to="(620,1610)"/> <wire from="(530,1450)" to="(620,1450)"/> <wire from="(530,1770)" to="(620,1770)"/> <wire from="(530,1130)" to="(620,1130)"/> <wire from="(530,970)" to="(620,970)"/> <wire from="(530,760)" to="(540,760)"/> <wire from="(530,280)" to="(540,280)"/> <wire from="(530,440)" to="(540,440)"/> <wire from="(530,600)" to="(540,600)"/> <wire from="(530,920)" to="(540,920)"/> <wire from="(530,1080)" to="(540,1080)"/> <wire from="(530,1240)" to="(540,1240)"/> <wire from="(530,1400)" to="(540,1400)"/> <wire from="(530,1560)" to="(540,1560)"/> <wire from="(530,1720)" to="(540,1720)"/> <wire from="(560,1910)" to="(570,1910)"/> <wire from="(790,410)" to="(790,800)"/> <wire from="(330,1280)" to="(820,1280)"/> <wire from="(480,1520)" to="(480,1550)"/> <wire from="(480,1680)" to="(480,1710)"/> <wire from="(480,1840)" to="(480,1870)"/> <wire from="(480,1040)" to="(480,1070)"/> <wire from="(480,400)" to="(480,430)"/> <wire from="(480,240)" to="(480,270)"/> <wire from="(480,1360)" to="(480,1390)"/> <wire from="(480,560)" to="(480,590)"/> <wire from="(480,720)" to="(480,750)"/> <wire from="(480,880)" to="(480,910)"/> <wire from="(480,1200)" to="(480,1230)"/> <wire from="(280,260)" to="(280,420)"/> <wire from="(280,420)" to="(280,580)"/> <wire from="(280,580)" to="(280,740)"/> <wire from="(280,740)" to="(280,900)"/> <wire from="(280,900)" to="(280,1060)"/> <wire from="(280,1060)" to="(280,1220)"/> <wire from="(280,1220)" to="(280,1380)"/> <wire from="(280,1540)" to="(280,1700)"/> <wire from="(280,1700)" to="(280,1870)"/> <wire from="(820,440)" to="(900,440)"/> <wire from="(260,1010)" to="(330,1010)"/> <wire from="(260,1810)" to="(330,1810)"/> <wire from="(560,280)" to="(570,280)"/> <wire from="(560,440)" to="(570,440)"/> <wire from="(560,600)" to="(570,600)"/> <wire from="(560,920)" to="(570,920)"/> <wire from="(560,760)" to="(570,760)"/> <wire from="(260,1490)" to="(330,1490)"/> <wire from="(260,1650)" to="(330,1650)"/> <wire from="(260,1330)" to="(330,1330)"/> <wire from="(260,1170)" to="(330,1170)"/> <wire from="(260,850)" to="(330,850)"/> <wire from="(260,690)" to="(330,690)"/> <wire from="(260,530)" to="(330,530)"/> <wire from="(260,210)" to="(330,210)"/> <wire from="(260,370)" to="(330,370)"/> <wire from="(560,1720)" to="(570,1720)"/> <wire from="(560,1080)" to="(570,1080)"/> <wire from="(560,1240)" to="(570,1240)"/> <wire from="(560,1400)" to="(570,1400)"/> <wire from="(560,1560)" to="(570,1560)"/> <wire from="(920,230)" to="(920,360)"/> <wire from="(720,1920)" to="(720,1990)"/> <wire from="(600,2020)" to="(640,2020)"/> <wire from="(700,700)" to="(720,700)"/> <wire from="(700,540)" to="(720,540)"/> <wire from="(700,380)" to="(720,380)"/> <wire from="(700,220)" to="(720,220)"/> <wire from="(700,1660)" to="(720,1660)"/> <wire from="(700,1500)" to="(720,1500)"/> <wire from="(700,1820)" to="(720,1820)"/> <wire from="(700,860)" to="(720,860)"/> <wire from="(700,1020)" to="(720,1020)"/> <wire from="(700,1180)" to="(720,1180)"/> <wire from="(700,1340)" to="(720,1340)"/> <wire from="(330,800)" to="(790,800)"/> <wire from="(640,1970)" to="(640,2020)"/> <wire from="(600,2040)" to="(720,2040)"/> <wire from="(850,470)" to="(900,470)"/> <wire from="(200,50)" to="(640,50)"/> <wire from="(800,420)" to="(800,960)"/> <wire from="(280,170)" to="(280,260)"/> <wire from="(110,550)" to="(140,550)"/> <wire from="(510,1010)" to="(510,1100)"/> <wire from="(510,690)" to="(510,780)"/> <wire from="(510,850)" to="(510,940)"/> <wire from="(510,1650)" to="(510,1740)"/> <wire from="(510,1490)" to="(510,1580)"/> <wire from="(510,1330)" to="(510,1420)"/> <wire from="(510,1170)" to="(510,1260)"/> <wire from="(720,1920)" to="(760,1920)"/> <wire from="(510,210)" to="(510,300)"/> <wire from="(510,370)" to="(510,460)"/> <wire from="(510,530)" to="(510,620)"/> <wire from="(640,50)" to="(640,200)"/> <wire from="(620,1090)" to="(620,1130)"/> <wire from="(620,770)" to="(620,810)"/> <wire from="(620,450)" to="(620,490)"/> <wire from="(620,930)" to="(620,970)"/> <wire from="(620,610)" to="(620,650)"/> <wire from="(620,290)" to="(620,330)"/> <wire from="(620,1250)" to="(620,1290)"/> <wire from="(620,1410)" to="(620,1450)"/> <wire from="(620,1730)" to="(620,1770)"/> <wire from="(620,1570)" to="(620,1610)"/> <wire from="(700,1920)" to="(720,1920)"/> <wire from="(430,690)" to="(450,690)"/> <wire from="(430,370)" to="(450,370)"/> <wire from="(430,530)" to="(450,530)"/> <wire from="(430,850)" to="(450,850)"/> <wire from="(430,210)" to="(450,210)"/> <wire from="(430,1810)" to="(450,1810)"/> <wire from="(430,1650)" to="(450,1650)"/> <wire from="(430,1010)" to="(450,1010)"/> <wire from="(430,1170)" to="(450,1170)"/> <wire from="(430,1330)" to="(450,1330)"/> <wire from="(430,1490)" to="(450,1490)"/> <wire from="(360,90)" to="(360,260)"/> <wire from="(440,230)" to="(450,230)"/> <wire from="(440,390)" to="(450,390)"/> <wire from="(440,550)" to="(450,550)"/> <wire from="(510,1810)" to="(510,1930)"/> <wire from="(440,1030)" to="(450,1030)"/> <wire from="(440,710)" to="(450,710)"/> <wire from="(440,870)" to="(450,870)"/> <wire from="(440,1190)" to="(450,1190)"/> <wire from="(440,1350)" to="(450,1350)"/> <wire from="(440,1510)" to="(450,1510)"/> <wire from="(440,1670)" to="(450,1670)"/> <wire from="(440,1830)" to="(450,1830)"/> <wire from="(770,380)" to="(900,380)"/> <wire from="(330,640)" to="(330,690)"/> <wire from="(330,160)" to="(330,210)"/> <wire from="(330,320)" to="(330,370)"/> <wire from="(330,480)" to="(330,530)"/> <wire from="(330,800)" to="(330,850)"/> <wire from="(330,960)" to="(330,1010)"/> <wire from="(330,1120)" to="(330,1170)"/> <wire from="(330,1280)" to="(330,1330)"/> <wire from="(330,1440)" to="(330,1490)"/> <wire from="(330,1600)" to="(330,1650)"/> <wire from="(330,1760)" to="(330,1810)"/> <wire from="(720,1990)" to="(720,2040)"/> <wire from="(410,910)" to="(480,910)"/> <wire from="(410,1230)" to="(480,1230)"/> <wire from="(410,1390)" to="(480,1390)"/> <wire from="(410,1070)" to="(480,1070)"/> <wire from="(410,590)" to="(480,590)"/> <wire from="(410,270)" to="(480,270)"/> <wire from="(410,430)" to="(480,430)"/> <wire from="(410,750)" to="(480,750)"/> <wire from="(410,1550)" to="(480,1550)"/> <wire from="(410,1710)" to="(480,1710)"/> <wire from="(410,1870)" to="(480,1870)"/> <wire from="(780,400)" to="(900,400)"/> <wire from="(180,230)" to="(220,230)"/> <wire from="(180,1510)" to="(220,1510)"/> <wire from="(530,1290)" to="(530,1330)"/> <wire from="(530,330)" to="(530,370)"/> <wire from="(530,490)" to="(530,530)"/> <wire from="(530,1770)" to="(530,1810)"/> <wire from="(530,1610)" to="(530,1650)"/> <wire from="(530,1450)" to="(530,1490)"/> <wire from="(530,1130)" to="(530,1170)"/> <wire from="(530,970)" to="(530,1010)"/> <wire from="(530,810)" to="(530,850)"/> <wire from="(530,650)" to="(530,690)"/> <wire from="(810,430)" to="(810,1120)"/> <wire from="(180,230)" to="(180,1510)"/> <wire from="(780,370)" to="(900,370)"/> <wire from="(300,1890)" to="(300,2030)"/> <wire from="(330,1440)" to="(830,1440)"/> <wire from="(780,160)" to="(780,370)"/> <wire from="(240,260)" to="(280,260)"/> <wire from="(240,420)" to="(280,420)"/> <wire from="(240,580)" to="(280,580)"/> <wire from="(240,740)" to="(280,740)"/> <wire from="(240,900)" to="(280,900)"/> <wire from="(240,1060)" to="(280,1060)"/> <wire from="(240,1220)" to="(280,1220)"/> <wire from="(240,1380)" to="(280,1380)"/> <wire from="(240,1540)" to="(280,1540)"/> <wire from="(240,1700)" to="(280,1700)"/> <wire from="(490,1330)" to="(510,1330)"/> <wire from="(300,930)" to="(300,1090)"/> <wire from="(490,1650)" to="(510,1650)"/> <wire from="(490,1490)" to="(510,1490)"/> <wire from="(490,1810)" to="(510,1810)"/> <wire from="(300,770)" to="(300,930)"/> <wire from="(300,610)" to="(300,770)"/> <wire from="(300,450)" to="(300,610)"/> <wire from="(300,290)" to="(300,450)"/> <wire from="(300,1250)" to="(300,1410)"/> <wire from="(300,1090)" to="(300,1250)"/> <wire from="(300,1410)" to="(300,1570)"/> <wire from="(640,520)" to="(660,520)"/> <wire from="(300,1570)" to="(300,1730)"/> <wire from="(300,1730)" to="(300,1890)"/> <wire from="(640,200)" to="(660,200)"/> <wire from="(640,360)" to="(660,360)"/> <wire from="(640,840)" to="(660,840)"/> <wire from="(640,1160)" to="(660,1160)"/> <wire from="(640,1000)" to="(660,1000)"/> <wire from="(640,680)" to="(660,680)"/> <wire from="(640,1800)" to="(660,1800)"/> <wire from="(640,1640)" to="(660,1640)"/> <wire from="(640,1320)" to="(660,1320)"/> <wire from="(640,1480)" to="(660,1480)"/> <wire from="(110,50)" to="(200,50)"/> <wire from="(810,430)" to="(900,430)"/> <wire from="(490,850)" to="(510,850)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(490,1170)" to="(510,1170)"/> <wire from="(490,1010)" to="(510,1010)"/> <wire from="(490,370)" to="(510,370)"/> <wire from="(490,530)" to="(510,530)"/> <wire from="(490,690)" to="(510,690)"/> <wire from="(440,260)" to="(720,260)"/> <wire from="(440,420)" to="(720,420)"/> <wire from="(440,1220)" to="(720,1220)"/> <wire from="(440,1380)" to="(720,1380)"/> <wire from="(440,1060)" to="(720,1060)"/> <wire from="(440,1860)" to="(720,1860)"/> <wire from="(440,1540)" to="(720,1540)"/> <wire from="(440,1700)" to="(720,1700)"/> <wire from="(440,740)" to="(720,740)"/> <wire from="(440,900)" to="(720,900)"/> <wire from="(440,580)" to="(720,580)"/> <wire from="(110,230)" to="(180,230)"/> <wire from="(200,130)" to="(200,210)"/> <wire from="(200,1170)" to="(220,1170)"/> <wire from="(200,690)" to="(220,690)"/> <wire from="(200,530)" to="(220,530)"/> <wire from="(200,370)" to="(220,370)"/> <wire from="(200,210)" to="(220,210)"/> <wire from="(200,1010)" to="(220,1010)"/> <wire from="(200,1330)" to="(220,1330)"/> <wire from="(200,850)" to="(220,850)"/> <wire from="(200,1490)" to="(220,1490)"/> <wire from="(200,1650)" to="(220,1650)"/> <wire from="(200,1810)" to="(220,1810)"/> <wire from="(330,960)" to="(800,960)"/> <wire from="(300,2030)" to="(560,2030)"/> <wire from="(110,1870)" to="(240,1870)"/> <wire from="(820,440)" to="(820,1280)"/> <wire from="(110,90)" to="(360,90)"/> <wire from="(840,460)" to="(900,460)"/> <wire from="(640,1900)" to="(660,1900)"/> <wire from="(300,930)" to="(310,930)"/> <wire from="(300,290)" to="(310,290)"/> <wire from="(300,450)" to="(310,450)"/> <wire from="(300,610)" to="(310,610)"/> <wire from="(300,770)" to="(310,770)"/> <wire from="(300,1570)" to="(310,1570)"/> <wire from="(300,1730)" to="(310,1730)"/> <wire from="(300,1890)" to="(310,1890)"/> <wire from="(300,1250)" to="(310,1250)"/> <wire from="(300,1410)" to="(310,1410)"/> <wire from="(300,1090)" to="(310,1090)"/> <wire from="(770,320)" to="(770,380)"/> <comp lib="1" loc="(410,1550)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(490,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(660,1990)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(490,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(490,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1090)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(310,930)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(610,1820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(610,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(760,1920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#FOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(496,2023)" name="Text"> <a name="text" val="TFLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(560,2030)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(560,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(700,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(110,1870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="1" loc="(560,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(490,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(920,360)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="4" loc="(260,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,770)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(490,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(671,1978)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="4" loc="(700,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(494,1975)" name="Text"> <a name="text" val="TFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(410,270)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(310,1730)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(610,1500)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1080)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(310,610)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(700,1910)" name="D-latch"/> <comp lib="1" loc="(410,1390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1250)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(610,1180)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(490,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,380)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400A"/> </comp> <comp lib="1" loc="(610,930)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,130)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(490,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,590)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,1710)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1660)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1980)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="1" loc="(560,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(650,1915)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="4" loc="(700,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(530,190)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(700,1480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,450)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(260,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,1070)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,290)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(490,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,220)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(490,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1020)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,860)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(260,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1570)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(610,1340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(700,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,910)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(700,1000)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(490,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,1240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(110,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="1" loc="(410,430)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="4" loc="(260,1490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(410,1870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(700,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1890)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(610,1920)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(700,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(260,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="11"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(610,1250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(260,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(610,700)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(260,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(490,1490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,1800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(410,1230)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="TRIANGLE_LINEAR_DOWN_COUNTER"> <a name="circuit" val="TRIANGLE_LINEAR_DOWN_COUNTER"/> <a name="clabel" val="TRIANGLE LINEAR DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M61,42 Q65,52 69,42" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6ad2ff" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="174">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="244">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="304">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="124">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="224">TCO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="304">TRI/LC</text> <circ-port height="8" pin="80,40" width="8" x="46" y="56"/> <circ-port height="8" pin="80,160" width="8" x="46" y="96"/> <circ-port height="8" pin="80,1490" width="8" x="46" y="116"/> <circ-port height="8" pin="80,1610" width="8" x="46" y="296"/> <circ-port height="8" pin="80,80" width="8" x="46" y="316"/> <circ-port height="8" pin="80,250" width="8" x="46" y="166"/> <circ-port height="8" pin="80,400" width="8" x="46" y="176"/> <circ-port height="8" pin="80,550" width="8" x="46" y="186"/> <circ-port height="8" pin="80,700" width="8" x="46" y="196"/> <circ-port height="8" pin="80,850" width="8" x="46" y="206"/> <circ-port height="8" pin="80,1000" width="8" x="46" y="216"/> <circ-port height="10" pin="890,1210" width="10" x="195" y="215"/> <circ-port height="8" pin="80,1150" width="8" x="46" y="226"/> <circ-port height="8" pin="80,1390" width="8" x="46" y="236"/> <circ-port height="10" pin="890,1660" width="10" x="195" y="295"/> <circ-port height="10" pin="920,440" width="10" x="195" y="55"/> <circ-anchor facing="east" height="6" width="6" x="97" y="37"/> </appear> <wire from="(470,980)" to="(470,1050)"/> <wire from="(450,920)" to="(510,920)"/> <wire from="(230,1290)" to="(870,1290)"/> <wire from="(80,550)" to="(140,550)"/> <wire from="(100,730)" to="(160,730)"/> <wire from="(550,390)" to="(600,390)"/> <wire from="(200,1660)" to="(890,1660)"/> <wire from="(280,1220)" to="(400,1220)"/> <wire from="(270,180)" to="(710,180)"/> <wire from="(370,830)" to="(370,980)"/> <wire from="(180,1370)" to="(290,1370)"/> <wire from="(300,280)" to="(300,430)"/> <wire from="(120,980)" to="(120,1130)"/> <wire from="(390,1420)" to="(500,1420)"/> <wire from="(230,610)" to="(230,760)"/> <wire from="(160,560)" to="(160,580)"/> <wire from="(100,880)" to="(100,1030)"/> <wire from="(420,260)" to="(420,290)"/> <wire from="(380,700)" to="(380,730)"/> <wire from="(470,950)" to="(470,980)"/> <wire from="(280,450)" to="(320,450)"/> <wire from="(290,1280)" to="(290,1370)"/> <wire from="(390,1440)" to="(480,1440)"/> <wire from="(470,800)" to="(560,800)"/> <wire from="(660,1140)" to="(660,1180)"/> <wire from="(580,370)" to="(600,370)"/> <wire from="(180,830)" to="(270,830)"/> <wire from="(640,990)" to="(660,990)"/> <wire from="(300,730)" to="(320,730)"/> <wire from="(230,1060)" to="(250,1060)"/> <wire from="(310,1380)" to="(330,1380)"/> <wire from="(430,380)" to="(450,380)"/> <wire from="(370,1260)" to="(840,1260)"/> <wire from="(120,230)" to="(140,230)"/> <wire from="(380,430)" to="(660,430)"/> <wire from="(500,300)" to="(510,300)"/> <wire from="(470,750)" to="(480,750)"/> <wire from="(80,1490)" to="(410,1490)"/> <wire from="(430,850)" to="(510,850)"/> <wire from="(270,830)" to="(270,890)"/> <wire from="(400,560)" to="(400,620)"/> <wire from="(700,550)" to="(700,790)"/> <wire from="(120,40)" to="(120,100)"/> <wire from="(550,910)" to="(560,910)"/> <wire from="(720,570)" to="(860,570)"/> <wire from="(470,230)" to="(470,300)"/> <wire from="(790,1480)" to="(840,1480)"/> <wire from="(80,1000)" to="(140,1000)"/> <wire from="(100,1420)" to="(160,1420)"/> <wire from="(100,1180)" to="(160,1180)"/> <wire from="(550,840)" to="(600,840)"/> <wire from="(280,470)" to="(400,470)"/> <wire from="(560,1210)" to="(560,1490)"/> <wire from="(230,1060)" to="(230,1210)"/> <wire from="(300,730)" to="(300,880)"/> <wire from="(160,1010)" to="(160,1030)"/> <wire from="(120,230)" to="(120,380)"/> <wire from="(420,710)" to="(420,740)"/> <wire from="(380,1150)" to="(380,1180)"/> <wire from="(270,490)" to="(690,490)"/> <wire from="(280,900)" to="(320,900)"/> <wire from="(450,530)" to="(450,620)"/> <wire from="(580,370)" to="(580,520)"/> <wire from="(470,530)" to="(510,530)"/> <wire from="(560,610)" to="(560,650)"/> <wire from="(660,390)" to="(660,430)"/> <wire from="(580,820)" to="(600,820)"/> <wire from="(640,240)" to="(660,240)"/> <wire from="(300,1180)" to="(320,1180)"/> <wire from="(370,530)" to="(390,530)"/> <wire from="(430,830)" to="(450,830)"/> <wire from="(270,640)" to="(270,680)"/> <wire from="(80,160)" to="(100,160)"/> <wire from="(310,1320)" to="(310,1360)"/> <wire from="(380,880)" to="(660,880)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(120,120)" to="(120,230)"/> <wire from="(380,550)" to="(390,550)"/> <wire from="(470,1200)" to="(480,1200)"/> <wire from="(500,750)" to="(510,750)"/> <wire from="(400,1010)" to="(400,1070)"/> <wire from="(350,590)" to="(420,590)"/> <wire from="(470,680)" to="(470,750)"/> <wire from="(450,620)" to="(510,620)"/> <wire from="(80,250)" to="(140,250)"/> <wire from="(100,430)" to="(160,430)"/> <wire from="(480,1440)" to="(480,1570)"/> <wire from="(280,920)" to="(400,920)"/> <wire from="(580,1120)" to="(580,1400)"/> <wire from="(370,530)" to="(370,680)"/> <wire from="(120,680)" to="(120,830)"/> <wire from="(230,310)" to="(230,460)"/> <wire from="(160,260)" to="(160,280)"/> <wire from="(100,580)" to="(100,730)"/> <wire from="(420,1160)" to="(420,1190)"/> <wire from="(470,650)" to="(470,680)"/> <wire from="(380,400)" to="(380,430)"/> <wire from="(690,530)" to="(860,530)"/> <wire from="(450,980)" to="(450,1070)"/> <wire from="(470,980)" to="(510,980)"/> <wire from="(580,820)" to="(580,970)"/> <wire from="(560,1060)" to="(560,1100)"/> <wire from="(470,500)" to="(560,500)"/> <wire from="(660,840)" to="(660,880)"/> <wire from="(310,1380)" to="(310,1610)"/> <wire from="(180,530)" to="(270,530)"/> <wire from="(80,80)" to="(300,80)"/> <wire from="(640,690)" to="(660,690)"/> <wire from="(310,1320)" to="(660,1320)"/> <wire from="(300,430)" to="(320,430)"/> <wire from="(370,980)" to="(390,980)"/> <wire from="(700,550)" to="(860,550)"/> <wire from="(270,1090)" to="(270,1130)"/> <wire from="(120,1130)" to="(140,1130)"/> <wire from="(120,1370)" to="(140,1370)"/> <wire from="(230,760)" to="(250,760)"/> <wire from="(380,1000)" to="(390,1000)"/> <wire from="(470,450)" to="(480,450)"/> <wire from="(430,550)" to="(510,550)"/> <wire from="(730,1550)" to="(730,1610)"/> <wire from="(710,560)" to="(710,940)"/> <wire from="(270,530)" to="(270,590)"/> <wire from="(400,260)" to="(400,320)"/> <wire from="(480,1380)" to="(480,1440)"/> <wire from="(550,610)" to="(560,610)"/> <wire from="(500,1200)" to="(510,1200)"/> <wire from="(350,1040)" to="(420,1040)"/> <wire from="(480,1570)" to="(600,1570)"/> <wire from="(470,1130)" to="(470,1200)"/> <wire from="(450,1070)" to="(510,1070)"/> <wire from="(80,700)" to="(140,700)"/> <wire from="(100,880)" to="(160,880)"/> <wire from="(700,1570)" to="(750,1570)"/> <wire from="(550,540)" to="(600,540)"/> <wire from="(450,1480)" to="(500,1480)"/> <wire from="(580,1400)" to="(580,1470)"/> <wire from="(370,980)" to="(370,1130)"/> <wire from="(300,430)" to="(300,580)"/> <wire from="(100,1030)" to="(100,1180)"/> <wire from="(230,1210)" to="(230,1290)"/> <wire from="(230,760)" to="(230,910)"/> <wire from="(160,710)" to="(160,730)"/> <wire from="(270,340)" to="(700,340)"/> <wire from="(420,410)" to="(420,440)"/> <wire from="(380,850)" to="(380,880)"/> <wire from="(470,1100)" to="(470,1130)"/> <wire from="(660,1320)" to="(660,1400)"/> <wire from="(280,600)" to="(320,600)"/> <wire from="(450,230)" to="(450,320)"/> <wire from="(470,230)" to="(510,230)"/> <wire from="(560,310)" to="(560,350)"/> <wire from="(470,950)" to="(560,950)"/> <wire from="(580,1400)" to="(600,1400)"/> <wire from="(580,520)" to="(600,520)"/> <wire from="(180,980)" to="(270,980)"/> <wire from="(640,1140)" to="(660,1140)"/> <wire from="(730,1550)" to="(750,1550)"/> <wire from="(230,1210)" to="(250,1210)"/> <wire from="(300,880)" to="(320,880)"/> <wire from="(370,230)" to="(390,230)"/> <wire from="(430,530)" to="(450,530)"/> <wire from="(700,520)" to="(860,520)"/> <wire from="(270,340)" to="(270,380)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(380,580)" to="(660,580)"/> <wire from="(500,450)" to="(510,450)"/> <wire from="(470,900)" to="(480,900)"/> <wire from="(380,250)" to="(390,250)"/> <wire from="(730,580)" to="(860,580)"/> <wire from="(270,180)" to="(270,230)"/> <wire from="(430,1000)" to="(510,1000)"/> <wire from="(270,980)" to="(270,1040)"/> <wire from="(400,710)" to="(400,770)"/> <wire from="(270,1090)" to="(720,1090)"/> <wire from="(550,1060)" to="(560,1060)"/> <wire from="(350,290)" to="(420,290)"/> <wire from="(710,180)" to="(710,510)"/> <wire from="(470,380)" to="(470,450)"/> <wire from="(450,320)" to="(510,320)"/> <wire from="(80,1150)" to="(140,1150)"/> <wire from="(80,1390)" to="(140,1390)"/> <wire from="(550,990)" to="(600,990)"/> <wire from="(280,620)" to="(400,620)"/> <wire from="(270,940)" to="(710,940)"/> <wire from="(290,1280)" to="(730,1280)"/> <wire from="(560,1490)" to="(600,1490)"/> <wire from="(300,880)" to="(300,1030)"/> <wire from="(370,230)" to="(370,380)"/> <wire from="(120,380)" to="(120,530)"/> <wire from="(500,1420)" to="(600,1420)"/> <wire from="(700,1540)" to="(700,1570)"/> <wire from="(160,1160)" to="(160,1180)"/> <wire from="(270,790)" to="(700,790)"/> <wire from="(160,1400)" to="(160,1420)"/> <wire from="(100,280)" to="(100,430)"/> <wire from="(640,1470)" to="(750,1470)"/> <wire from="(390,1390)" to="(390,1420)"/> <wire from="(420,860)" to="(420,890)"/> <wire from="(80,1610)" to="(310,1610)"/> <wire from="(270,640)" to="(690,640)"/> <wire from="(470,350)" to="(470,380)"/> <wire from="(280,1050)" to="(320,1050)"/> <wire from="(450,680)" to="(450,770)"/> <wire from="(580,520)" to="(580,670)"/> <wire from="(470,680)" to="(510,680)"/> <wire from="(560,760)" to="(560,800)"/> <wire from="(710,510)" to="(860,510)"/> <wire from="(660,540)" to="(660,580)"/> <wire from="(690,490)" to="(690,530)"/> <wire from="(180,230)" to="(270,230)"/> <wire from="(580,970)" to="(600,970)"/> <wire from="(640,390)" to="(660,390)"/> <wire from="(370,680)" to="(390,680)"/> <wire from="(430,980)" to="(450,980)"/> <wire from="(270,790)" to="(270,830)"/> <wire from="(380,1030)" to="(660,1030)"/> <wire from="(120,830)" to="(140,830)"/> <wire from="(230,460)" to="(250,460)"/> <wire from="(380,700)" to="(390,700)"/> <wire from="(880,440)" to="(880,500)"/> <wire from="(120,1130)" to="(120,1370)"/> <wire from="(500,1420)" to="(500,1480)"/> <wire from="(430,250)" to="(510,250)"/> <wire from="(730,1490)" to="(730,1550)"/> <wire from="(270,230)" to="(270,290)"/> <wire from="(400,1160)" to="(400,1220)"/> <wire from="(580,40)" to="(580,220)"/> <wire from="(500,900)" to="(510,900)"/> <wire from="(550,310)" to="(560,310)"/> <wire from="(350,740)" to="(420,740)"/> <wire from="(560,1210)" to="(890,1210)"/> <wire from="(470,830)" to="(470,900)"/> <wire from="(450,770)" to="(510,770)"/> <wire from="(720,570)" to="(720,1090)"/> <wire from="(100,580)" to="(160,580)"/> <wire from="(80,400)" to="(140,400)"/> <wire from="(550,240)" to="(600,240)"/> <wire from="(280,1070)" to="(400,1070)"/> <wire from="(300,80)" to="(300,280)"/> <wire from="(840,1260)" to="(840,1480)"/> <wire from="(370,680)" to="(370,830)"/> <wire from="(120,830)" to="(120,980)"/> <wire from="(230,460)" to="(230,610)"/> <wire from="(160,410)" to="(160,430)"/> <wire from="(100,730)" to="(100,880)"/> <wire from="(380,550)" to="(380,580)"/> <wire from="(390,1440)" to="(390,1470)"/> <wire from="(470,800)" to="(470,830)"/> <wire from="(310,1610)" to="(730,1610)"/> <wire from="(280,300)" to="(320,300)"/> <wire from="(450,1130)" to="(450,1220)"/> <wire from="(580,970)" to="(580,1120)"/> <wire from="(470,1130)" to="(510,1130)"/> <wire from="(470,650)" to="(560,650)"/> <wire from="(710,560)" to="(860,560)"/> <wire from="(660,990)" to="(660,1030)"/> <wire from="(580,220)" to="(600,220)"/> <wire from="(180,680)" to="(270,680)"/> <wire from="(640,1400)" to="(660,1400)"/> <wire from="(640,840)" to="(660,840)"/> <wire from="(730,1490)" to="(750,1490)"/> <wire from="(300,580)" to="(320,580)"/> <wire from="(430,230)" to="(450,230)"/> <wire from="(370,1130)" to="(390,1130)"/> <wire from="(390,1470)" to="(410,1470)"/> <wire from="(390,1390)" to="(410,1390)"/> <wire from="(380,280)" to="(660,280)"/> <wire from="(230,910)" to="(250,910)"/> <wire from="(380,1150)" to="(390,1150)"/> <wire from="(470,600)" to="(480,600)"/> <wire from="(430,700)" to="(510,700)"/> <wire from="(270,680)" to="(270,740)"/> <wire from="(400,410)" to="(400,470)"/> <wire from="(550,760)" to="(560,760)"/> <wire from="(350,1190)" to="(420,1190)"/> <wire from="(870,1290)" to="(870,1560)"/> <wire from="(450,1220)" to="(510,1220)"/> <wire from="(370,1130)" to="(370,1260)"/> <wire from="(80,850)" to="(140,850)"/> <wire from="(700,1480)" to="(750,1480)"/> <wire from="(100,1030)" to="(160,1030)"/> <wire from="(550,690)" to="(600,690)"/> <wire from="(280,320)" to="(400,320)"/> <wire from="(640,1570)" to="(700,1570)"/> <wire from="(300,580)" to="(300,730)"/> <wire from="(470,210)" to="(470,230)"/> <wire from="(230,910)" to="(230,1060)"/> <wire from="(160,860)" to="(160,880)"/> <wire from="(420,560)" to="(420,590)"/> <wire from="(380,1000)" to="(380,1030)"/> <wire from="(580,1470)" to="(580,1550)"/> <wire from="(280,750)" to="(320,750)"/> <wire from="(450,380)" to="(450,470)"/> <wire from="(580,220)" to="(580,370)"/> <wire from="(470,380)" to="(510,380)"/> <wire from="(560,460)" to="(560,500)"/> <wire from="(470,1100)" to="(560,1100)"/> <wire from="(660,240)" to="(660,280)"/> <wire from="(700,1480)" to="(700,1520)"/> <wire from="(580,670)" to="(600,670)"/> <wire from="(580,1470)" to="(600,1470)"/> <wire from="(180,1130)" to="(270,1130)"/> <wire from="(580,1550)" to="(600,1550)"/> <wire from="(300,1030)" to="(320,1030)"/> <wire from="(310,1360)" to="(330,1360)"/> <wire from="(370,380)" to="(390,380)"/> <wire from="(430,680)" to="(450,680)"/> <wire from="(270,490)" to="(270,530)"/> <wire from="(120,530)" to="(140,530)"/> <wire from="(380,730)" to="(660,730)"/> <wire from="(690,540)" to="(690,640)"/> <wire from="(180,1390)" to="(200,1390)"/> <wire from="(470,1050)" to="(480,1050)"/> <wire from="(500,600)" to="(510,600)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(120,40)" to="(580,40)"/> <wire from="(430,1150)" to="(510,1150)"/> <wire from="(270,1130)" to="(270,1190)"/> <wire from="(400,860)" to="(400,920)"/> <wire from="(550,1210)" to="(560,1210)"/> <wire from="(700,340)" to="(700,520)"/> <wire from="(350,440)" to="(420,440)"/> <wire from="(470,530)" to="(470,600)"/> <wire from="(450,470)" to="(510,470)"/> <wire from="(100,280)" to="(160,280)"/> <wire from="(550,1140)" to="(600,1140)"/> <wire from="(280,770)" to="(400,770)"/> <wire from="(200,1390)" to="(200,1660)"/> <wire from="(370,380)" to="(370,530)"/> <wire from="(300,1030)" to="(300,1180)"/> <wire from="(120,530)" to="(120,680)"/> <wire from="(880,440)" to="(920,440)"/> <wire from="(100,430)" to="(100,580)"/> <wire from="(420,1010)" to="(420,1040)"/> <wire from="(470,500)" to="(470,530)"/> <wire from="(80,40)" to="(120,40)"/> <wire from="(380,250)" to="(380,280)"/> <wire from="(280,1200)" to="(320,1200)"/> <wire from="(690,540)" to="(860,540)"/> <wire from="(450,830)" to="(450,920)"/> <wire from="(290,1370)" to="(330,1370)"/> <wire from="(370,1370)" to="(410,1370)"/> <wire from="(470,830)" to="(510,830)"/> <wire from="(580,670)" to="(580,820)"/> <wire from="(560,910)" to="(560,950)"/> <wire from="(470,350)" to="(560,350)"/> <wire from="(660,690)" to="(660,730)"/> <wire from="(180,380)" to="(270,380)"/> <wire from="(580,1120)" to="(600,1120)"/> <wire from="(640,540)" to="(660,540)"/> <wire from="(450,1380)" to="(480,1380)"/> <wire from="(300,280)" to="(320,280)"/> <wire from="(370,830)" to="(390,830)"/> <wire from="(430,1130)" to="(450,1130)"/> <wire from="(270,940)" to="(270,980)"/> <wire from="(380,1180)" to="(660,1180)"/> <wire from="(120,980)" to="(140,980)"/> <wire from="(230,610)" to="(250,610)"/> <wire from="(380,850)" to="(390,850)"/> <wire from="(470,300)" to="(480,300)"/> <wire from="(100,1180)" to="(100,1420)"/> <wire from="(430,400)" to="(510,400)"/> <wire from="(730,580)" to="(730,1280)"/> <wire from="(270,380)" to="(270,440)"/> <wire from="(100,160)" to="(100,280)"/> <wire from="(790,1560)" to="(870,1560)"/> <wire from="(500,1050)" to="(510,1050)"/> <wire from="(550,460)" to="(560,460)"/> <wire from="(350,890)" to="(420,890)"/> <comp lib="1" loc="(450,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="4" loc="(640,220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,910)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(640,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(455,1372)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(80,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="6" loc="(543,1493)" name="Text"> <a name="text" val="TCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(391,1505)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(815,1554)" name="Text"> <a name="text" val="TLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(120,120)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(180,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(890,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TCO"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(180,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(430,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(430,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,740)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(250,1210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(590,1416)" name="Text"> <a name="text" val="11"/> </comp> <comp loc="(640,1480)" name="D-latch"/> <comp lib="1" loc="(450,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="4" loc="(430,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(500,1050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(430,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(430,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,240)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,390)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(391,1363)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(80,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(80,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(500,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(880,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(430,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(640,1560)" name="D-latch"/> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(350,440)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,590)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,840)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,1040)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(470,210)" name="Constant"> <a name="facing" val="south"/> </comp> <comp loc="(640,1410)" name="D-latch"/> <comp lib="1" loc="(550,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(180,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(590,1486)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="4" loc="(640,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(129,1385)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="4" loc="(640,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(250,310)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(890,1660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(640,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(430,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(429,1435)" name="Text"> <a name="text" val="RELOAD FF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(500,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(790,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="9"/> </comp> <comp lib="2" loc="(250,910)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4008"/> </comp> <comp lib="1" loc="(550,1060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(550,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(250,1060)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(250,610)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(250,760)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(813,1473)" name="Text"> <a name="text" val="TSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(790,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(80,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="1" loc="(500,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,1190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(640,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(640,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(500,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,1140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(638,1444)" name="Text"> <a name="text" val="RELOAD LATCH 1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(350,890)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(613,1206)" name="Text"> <a name="text" val="TCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(370,1370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(180,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="2" loc="(250,460)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(180,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(622,1517)" name="Text"> <a name="text" val="TCO LATCH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(581,1564)" name="Text"> <a name="text" val="6,7"/> </comp> <comp lib="1" loc="(700,1520)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(920,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="TRI_LIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(453,1315)" name="Text"> <a name="text" val="TRELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(625,1597)" name="Text"> <a name="text" val="RELOAD LATCH 2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(458,1499)" name="Text"> <a name="text" val="/Q"/> </comp> </circuit> <circuit name="TRIANGLE_OUTPUT_COUNTER"> <a name="circuit" val="TRIANGLE_OUTPUT_COUNTER"/> <a name="clabel" val="TRIANGLE OUTPUT COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M63,50 Q67,60 71,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#feffc8" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="74">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="174">TTSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="334">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="114">TRIO0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="144">TRIO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="174">TRIO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="204">TRIO3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="94">W401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="234">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="274">D4</text> <circ-port height="8" pin="80,40" width="8" x="46" y="66"/> <circ-port height="8" pin="80,80" width="8" x="46" y="166"/> <circ-port height="8" pin="80,120" width="8" x="46" y="326"/> <circ-port height="10" pin="650,130" width="10" x="195" y="105"/> <circ-port height="10" pin="650,300" width="10" x="195" y="135"/> <circ-port height="10" pin="650,470" width="10" x="195" y="165"/> <circ-port height="10" pin="650,640" width="10" x="195" y="195"/> <circ-port height="8" pin="80,240" width="8" x="46" y="86"/> <circ-port height="8" pin="80,160" width="8" x="46" y="226"/> <circ-port height="8" pin="80,330" width="8" x="46" y="236"/> <circ-port height="8" pin="80,500" width="8" x="46" y="246"/> <circ-port height="8" pin="80,670" width="8" x="46" y="256"/> <circ-port height="8" pin="80,840" width="8" x="46" y="266"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(330,520)" to="(330,590)"/> <wire from="(330,120)" to="(580,120)"/> <wire from="(430,510)" to="(480,510)"/> <wire from="(160,570)" to="(200,570)"/> <wire from="(300,700)" to="(300,730)"/> <wire from="(260,180)" to="(260,210)"/> <wire from="(350,840)" to="(390,840)"/> <wire from="(560,140)" to="(560,310)"/> <wire from="(350,440)" to="(440,440)"/> <wire from="(250,840)" to="(270,840)"/> <wire from="(310,180)" to="(330,180)"/> <wire from="(310,500)" to="(330,500)"/> <wire from="(180,720)" to="(180,890)"/> <wire from="(460,490)" to="(480,490)"/> <wire from="(110,410)" to="(110,580)"/> <wire from="(260,550)" to="(540,550)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(380,740)" to="(390,740)"/> <wire from="(260,860)" to="(270,860)"/> <wire from="(350,230)" to="(360,230)"/> <wire from="(280,360)" to="(280,420)"/> <wire from="(350,270)" to="(350,330)"/> <wire from="(230,900)" to="(300,900)"/> <wire from="(80,670)" to="(150,670)"/> <wire from="(330,690)" to="(390,690)"/> <wire from="(330,930)" to="(390,930)"/> <wire from="(350,670)" to="(350,740)"/> <wire from="(160,590)" to="(280,590)"/> <wire from="(440,410)" to="(440,440)"/> <wire from="(300,190)" to="(300,220)"/> <wire from="(350,330)" to="(390,330)"/> <wire from="(540,510)" to="(540,550)"/> <wire from="(560,480)" to="(580,480)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(630,470)" to="(650,470)"/> <wire from="(180,210)" to="(180,380)"/> <wire from="(330,460)" to="(330,500)"/> <wire from="(460,490)" to="(460,660)"/> <wire from="(110,750)" to="(130,750)"/> <wire from="(250,330)" to="(270,330)"/> <wire from="(430,920)" to="(440,920)"/> <wire from="(260,350)" to="(270,350)"/> <wire from="(380,230)" to="(390,230)"/> <wire from="(230,390)" to="(300,390)"/> <wire from="(80,160)" to="(150,160)"/> <wire from="(150,840)" to="(150,900)"/> <wire from="(330,420)" to="(390,420)"/> <wire from="(330,180)" to="(390,180)"/> <wire from="(330,860)" to="(330,930)"/> <wire from="(330,460)" to="(580,460)"/> <wire from="(350,160)" to="(350,230)"/> <wire from="(430,850)" to="(480,850)"/> <wire from="(80,80)" to="(250,80)"/> <wire from="(260,520)" to="(260,550)"/> <wire from="(160,910)" to="(200,910)"/> <wire from="(330,800)" to="(560,800)"/> <wire from="(560,480)" to="(560,650)"/> <wire from="(350,780)" to="(440,780)"/> <wire from="(310,520)" to="(330,520)"/> <wire from="(110,750)" to="(110,920)"/> <wire from="(250,330)" to="(250,500)"/> <wire from="(310,840)" to="(330,840)"/> <wire from="(460,830)" to="(480,830)"/> <wire from="(520,170)" to="(540,170)"/> <wire from="(260,890)" to="(540,890)"/> <wire from="(110,240)" to="(130,240)"/> <wire from="(180,550)" to="(200,550)"/> <wire from="(430,410)" to="(440,410)"/> <wire from="(350,570)" to="(360,570)"/> <wire from="(280,700)" to="(280,760)"/> <wire from="(350,610)" to="(350,670)"/> <wire from="(150,330)" to="(150,390)"/> <wire from="(330,350)" to="(330,420)"/> <wire from="(430,340)" to="(480,340)"/> <wire from="(160,930)" to="(280,930)"/> <wire from="(180,120)" to="(180,210)"/> <wire from="(440,750)" to="(440,780)"/> <wire from="(160,400)" to="(200,400)"/> <wire from="(300,530)" to="(300,560)"/> <wire from="(350,670)" to="(390,670)"/> <wire from="(540,850)" to="(540,890)"/> <wire from="(350,270)" to="(440,270)"/> <wire from="(250,670)" to="(270,670)"/> <wire from="(310,330)" to="(330,330)"/> <wire from="(180,550)" to="(180,720)"/> <wire from="(460,320)" to="(480,320)"/> <wire from="(110,240)" to="(110,410)"/> <wire from="(260,380)" to="(540,380)"/> <wire from="(330,800)" to="(330,840)"/> <wire from="(380,570)" to="(390,570)"/> <wire from="(260,690)" to="(270,690)"/> <wire from="(280,190)" to="(280,250)"/> <wire from="(230,730)" to="(300,730)"/> <wire from="(80,500)" to="(150,500)"/> <wire from="(330,520)" to="(390,520)"/> <wire from="(330,760)" to="(390,760)"/> <wire from="(350,500)" to="(350,570)"/> <wire from="(80,40)" to="(460,40)"/> <wire from="(160,420)" to="(280,420)"/> <wire from="(350,150)" to="(350,160)"/> <wire from="(250,80)" to="(250,160)"/> <wire from="(440,240)" to="(440,270)"/> <wire from="(260,860)" to="(260,890)"/> <wire from="(350,160)" to="(390,160)"/> <wire from="(80,120)" to="(180,120)"/> <wire from="(540,340)" to="(540,380)"/> <wire from="(520,510)" to="(540,510)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(630,300)" to="(650,300)"/> <wire from="(310,860)" to="(330,860)"/> <wire from="(330,290)" to="(330,330)"/> <wire from="(460,320)" to="(460,490)"/> <wire from="(110,580)" to="(130,580)"/> <wire from="(250,670)" to="(250,840)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(180,890)" to="(200,890)"/> <wire from="(430,750)" to="(440,750)"/> <wire from="(260,180)" to="(270,180)"/> <wire from="(350,910)" to="(360,910)"/> <wire from="(230,220)" to="(300,220)"/> <wire from="(150,670)" to="(150,730)"/> <wire from="(330,250)" to="(390,250)"/> <wire from="(330,690)" to="(330,760)"/> <wire from="(330,290)" to="(580,290)"/> <wire from="(430,680)" to="(480,680)"/> <wire from="(260,350)" to="(260,380)"/> <wire from="(160,740)" to="(200,740)"/> <wire from="(300,870)" to="(300,900)"/> <wire from="(560,310)" to="(560,480)"/> <wire from="(350,610)" to="(440,610)"/> <wire from="(310,350)" to="(330,350)"/> <wire from="(310,670)" to="(330,670)"/> <wire from="(250,160)" to="(250,330)"/> <wire from="(460,660)" to="(480,660)"/> <wire from="(110,580)" to="(110,750)"/> <wire from="(260,720)" to="(540,720)"/> <wire from="(180,380)" to="(200,380)"/> <wire from="(380,910)" to="(390,910)"/> <wire from="(430,240)" to="(440,240)"/> <wire from="(350,400)" to="(360,400)"/> <wire from="(280,530)" to="(280,590)"/> <wire from="(350,440)" to="(350,500)"/> <wire from="(80,840)" to="(150,840)"/> <wire from="(150,160)" to="(150,220)"/> <wire from="(330,860)" to="(390,860)"/> <wire from="(350,840)" to="(350,910)"/> <wire from="(330,180)" to="(330,250)"/> <wire from="(430,170)" to="(480,170)"/> <wire from="(160,760)" to="(280,760)"/> <wire from="(440,580)" to="(440,610)"/> <wire from="(160,230)" to="(200,230)"/> <wire from="(300,360)" to="(300,390)"/> <wire from="(350,500)" to="(390,500)"/> <wire from="(540,680)" to="(540,720)"/> <wire from="(80,240)" to="(110,240)"/> <wire from="(520,850)" to="(540,850)"/> <wire from="(560,650)" to="(580,650)"/> <wire from="(630,640)" to="(650,640)"/> <wire from="(250,500)" to="(270,500)"/> <wire from="(310,160)" to="(330,160)"/> <wire from="(180,380)" to="(180,550)"/> <wire from="(460,150)" to="(480,150)"/> <wire from="(260,210)" to="(540,210)"/> <wire from="(330,630)" to="(330,670)"/> <wire from="(460,660)" to="(460,830)"/> <wire from="(110,920)" to="(130,920)"/> <wire from="(260,520)" to="(270,520)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(230,560)" to="(300,560)"/> <wire from="(80,330)" to="(150,330)"/> <wire from="(330,350)" to="(390,350)"/> <wire from="(330,590)" to="(390,590)"/> <wire from="(350,330)" to="(350,400)"/> <wire from="(330,630)" to="(580,630)"/> <wire from="(160,250)" to="(280,250)"/> <wire from="(260,690)" to="(260,720)"/> <wire from="(560,650)" to="(560,800)"/> <wire from="(540,170)" to="(540,210)"/> <wire from="(520,340)" to="(540,340)"/> <wire from="(560,140)" to="(580,140)"/> <wire from="(630,130)" to="(650,130)"/> <wire from="(460,40)" to="(460,150)"/> <wire from="(310,690)" to="(330,690)"/> <wire from="(330,120)" to="(330,160)"/> <wire from="(460,150)" to="(460,320)"/> <wire from="(110,410)" to="(130,410)"/> <wire from="(250,500)" to="(250,670)"/> <wire from="(180,720)" to="(200,720)"/> <wire from="(430,580)" to="(440,580)"/> <wire from="(350,740)" to="(360,740)"/> <wire from="(280,870)" to="(280,930)"/> <wire from="(350,780)" to="(350,840)"/> <wire from="(150,500)" to="(150,560)"/> <comp lib="4" loc="(310,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(520,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(520,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,920)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,900)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(310,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(650,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(310,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(310,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(650,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(230,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(430,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(650,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W401A"/> </comp> <comp lib="4" loc="(520,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(380,910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,170)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(130,920)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(130,410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(130,240)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(630,470)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(130,750)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(430,850)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,680)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,220)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(430,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(230,560)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,130)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(630,640)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,300)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(130,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(310,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(520,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(471,923)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(430,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TTSTEP"/> </comp> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(520,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(350,150)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(230,390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="NOISE_CHANNEL"> <a name="circuit" val="NOISE_CHANNEL"/> <a name="clabel" val="NOISE CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M73,51 Q77,61 81,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff287c" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="234">RND0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="254">RND1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="274">RND2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="294">RND3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="75">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="345">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="305">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="284">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="265">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="244">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="224">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="203">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="683" y="155">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="174">W400F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="690" y="415">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="680" y="444">NORND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="394">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="134">W400C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="314">#RND/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="374">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="706" y="66"/> <circ-port height="8" pin="100,80" width="8" x="706" y="86"/> <circ-port height="8" pin="100,360" width="8" x="706" y="336"/> <circ-port height="8" pin="100,300" width="8" x="706" y="296"/> <circ-port height="8" pin="100,270" width="8" x="706" y="276"/> <circ-port height="8" pin="100,240" width="8" x="706" y="256"/> <circ-port height="8" pin="100,210" width="8" x="706" y="236"/> <circ-port height="8" pin="100,180" width="8" x="706" y="216"/> <circ-port height="8" pin="100,150" width="8" x="706" y="196"/> <circ-port height="8" pin="100,650" width="8" x="706" y="146"/> <circ-port height="8" pin="100,750" width="8" x="706" y="166"/> <circ-port height="8" pin="100,870" width="8" x="706" y="406"/> <circ-port height="8" pin="100,570" width="8" x="706" y="436"/> <circ-port height="8" pin="100,910" width="8" x="706" y="386"/> <circ-port height="8" pin="100,710" width="8" x="706" y="126"/> <circ-port height="10" pin="620,680" width="10" x="45" y="225"/> <circ-port height="10" pin="620,740" width="10" x="45" y="245"/> <circ-port height="10" pin="620,800" width="10" x="45" y="265"/> <circ-port height="10" pin="620,860" width="10" x="45" y="285"/> <circ-port height="10" pin="620,910" width="10" x="45" y="305"/> <circ-port height="8" pin="100,610" width="8" x="706" y="366"/> <circ-port height="10" pin="800,390" width="10" x="45" y="435"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(610,690)" to="(610,700)"/> <wire from="(130,230)" to="(130,240)"/> <wire from="(130,210)" to="(130,220)"/> <wire from="(100,300)" to="(150,300)"/> <wire from="(100,360)" to="(150,360)"/> <wire from="(320,630)" to="(320,710)"/> <wire from="(100,570)" to="(400,570)"/> <wire from="(100,750)" to="(400,750)"/> <wire from="(100,910)" to="(400,910)"/> <wire from="(100,270)" to="(140,270)"/> <wire from="(140,240)" to="(140,270)"/> <wire from="(140,180)" to="(140,210)"/> <wire from="(780,390)" to="(800,390)"/> <wire from="(630,590)" to="(630,630)"/> <wire from="(630,370)" to="(630,410)"/> <wire from="(100,80)" to="(130,80)"/> <wire from="(100,40)" to="(130,40)"/> <wire from="(100,240)" to="(130,240)"/> <wire from="(600,910)" to="(620,910)"/> <wire from="(760,400)" to="(760,700)"/> <wire from="(380,470)" to="(400,470)"/> <wire from="(380,210)" to="(400,210)"/> <wire from="(380,230)" to="(400,230)"/> <wire from="(380,670)" to="(400,670)"/> <wire from="(380,790)" to="(400,790)"/> <wire from="(120,730)" to="(400,730)"/> <wire from="(120,590)" to="(400,590)"/> <wire from="(380,510)" to="(400,510)"/> <wire from="(380,810)" to="(400,810)"/> <wire from="(380,830)" to="(400,830)"/> <wire from="(100,610)" to="(120,610)"/> <wire from="(100,710)" to="(120,710)"/> <wire from="(130,220)" to="(150,220)"/> <wire from="(150,250)" to="(150,300)"/> <wire from="(150,150)" to="(150,200)"/> <wire from="(300,410)" to="(630,410)"/> <wire from="(140,240)" to="(150,240)"/> <wire from="(270,370)" to="(400,370)"/> <wire from="(270,870)" to="(400,870)"/> <wire from="(300,410)" to="(300,530)"/> <wire from="(230,810)" to="(360,810)"/> <wire from="(230,230)" to="(360,230)"/> <wire from="(150,550)" to="(400,550)"/> <wire from="(170,230)" to="(230,230)"/> <wire from="(230,230)" to="(230,810)"/> <wire from="(600,470)" to="(650,470)"/> <wire from="(320,630)" to="(630,630)"/> <wire from="(100,150)" to="(150,150)"/> <wire from="(100,870)" to="(270,870)"/> <wire from="(120,590)" to="(120,610)"/> <wire from="(120,710)" to="(120,730)"/> <wire from="(300,530)" to="(400,530)"/> <wire from="(650,390)" to="(760,390)"/> <wire from="(100,180)" to="(140,180)"/> <wire from="(650,390)" to="(650,470)"/> <wire from="(100,650)" to="(130,650)"/> <wire from="(100,210)" to="(130,210)"/> <wire from="(610,700)" to="(760,700)"/> <wire from="(600,800)" to="(620,800)"/> <wire from="(600,740)" to="(620,740)"/> <wire from="(600,680)" to="(620,680)"/> <wire from="(600,860)" to="(620,860)"/> <wire from="(380,100)" to="(400,100)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(380,220)" to="(400,220)"/> <wire from="(380,240)" to="(400,240)"/> <wire from="(380,120)" to="(400,120)"/> <wire from="(600,380)" to="(760,380)"/> <wire from="(380,780)" to="(400,780)"/> <wire from="(380,800)" to="(400,800)"/> <wire from="(380,820)" to="(400,820)"/> <wire from="(600,370)" to="(630,370)"/> <wire from="(600,590)" to="(630,590)"/> <wire from="(130,230)" to="(150,230)"/> <wire from="(270,370)" to="(270,870)"/> <wire from="(140,210)" to="(150,210)"/> <wire from="(320,710)" to="(400,710)"/> <wire from="(150,360)" to="(150,550)"/> <wire from="(600,690)" to="(610,690)"/> <comp lib="0" loc="(380,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp loc="(450,450)" name="RANDOM_LFSR"/> <comp lib="0" loc="(620,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(780,390)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> <a name="bit6" val="2"/> <a name="bit7" val="2"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(360,810)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(620,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(100,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp loc="(460,90)" name="NOISE_FREQUENCY_LFSR"/> <comp lib="0" loc="(130,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NORND"/> </comp> <comp lib="0" loc="(380,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(450,650)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(800,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="11"/> <a name="label" val="N"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(380,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(380,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(620,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(380,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(360,230)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(620,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#RND/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(620,800)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,650)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(100,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(380,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> </circuit> <circuit name="NOISE_FREQUENCY_LFSR"> <a name="circuit" val="NOISE_FREQUENCY_LFSR"/> <a name="clabel" val="NOISE FREQUENCY LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M87,51 Q91,61 95,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffdf40" height="301" stroke="#000000" stroke-width="2" width="200" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="334">RSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="174">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="334">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">W400E</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,1400" width="8" x="46" y="76"/> <circ-port height="8" pin="90,1550" width="8" x="46" y="326"/> <circ-port height="8" pin="90,720" width="8" x="46" y="166"/> <circ-port height="8" pin="90,780" width="8" x="46" y="176"/> <circ-port height="8" pin="90,840" width="8" x="46" y="186"/> <circ-port height="8" pin="90,900" width="8" x="46" y="196"/> <circ-port height="10" pin="1070,1500" width="10" x="245" y="325"/> <circ-port height="8" pin="90,980" width="8" x="46" y="96"/> <circ-port height="10" pin="290,150" width="10" x="245" y="335"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(140,30)" to="(650,30)"/> <wire from="(190,1550)" to="(570,1550)"/> <wire from="(800,630)" to="(800,950)"/> <wire from="(570,1480)" to="(570,1550)"/> <wire from="(230,360)" to="(230,820)"/> <wire from="(490,1350)" to="(490,1500)"/> <wire from="(600,600)" to="(600,640)"/> <wire from="(600,120)" to="(600,160)"/> <wire from="(600,1080)" to="(600,1120)"/> <wire from="(600,840)" to="(600,880)"/> <wire from="(600,360)" to="(600,400)"/> <wire from="(600,1320)" to="(600,1360)"/> <wire from="(420,1470)" to="(510,1470)"/> <wire from="(1060,60)" to="(1060,1390)"/> <wire from="(350,760)" to="(440,760)"/> <wire from="(550,1460)" to="(570,1460)"/> <wire from="(90,980)" to="(180,980)"/> <wire from="(400,1470)" to="(420,1470)"/> <wire from="(330,1400)" to="(330,1510)"/> <wire from="(530,860)" to="(620,860)"/> <wire from="(530,380)" to="(620,380)"/> <wire from="(530,1340)" to="(620,1340)"/> <wire from="(530,1100)" to="(620,1100)"/> <wire from="(530,620)" to="(620,620)"/> <wire from="(530,140)" to="(620,140)"/> <wire from="(530,880)" to="(600,880)"/> <wire from="(530,1360)" to="(600,1360)"/> <wire from="(530,400)" to="(600,400)"/> <wire from="(530,640)" to="(600,640)"/> <wire from="(530,1120)" to="(600,1120)"/> <wire from="(530,160)" to="(600,160)"/> <wire from="(730,1370)" to="(730,1430)"/> <wire from="(380,190)" to="(380,700)"/> <wire from="(90,840)" to="(160,840)"/> <wire from="(140,700)" to="(140,760)"/> <wire from="(360,1440)" to="(420,1440)"/> <wire from="(350,720)" to="(400,720)"/> <wire from="(750,1070)" to="(750,1140)"/> <wire from="(550,930)" to="(590,930)"/> <wire from="(550,450)" to="(590,450)"/> <wire from="(550,690)" to="(590,690)"/> <wire from="(550,1170)" to="(590,1170)"/> <wire from="(550,210)" to="(590,210)"/> <wire from="(840,650)" to="(840,1190)"/> <wire from="(520,170)" to="(520,190)"/> <wire from="(420,1190)" to="(520,1190)"/> <wire from="(520,650)" to="(520,670)"/> <wire from="(520,410)" to="(520,430)"/> <wire from="(400,310)" to="(400,720)"/> <wire from="(880,1360)" to="(900,1360)"/> <wire from="(950,1270)" to="(970,1270)"/> <wire from="(650,90)" to="(670,90)"/> <wire from="(650,570)" to="(670,570)"/> <wire from="(650,1050)" to="(670,1050)"/> <wire from="(710,470)" to="(730,470)"/> <wire from="(650,330)" to="(670,330)"/> <wire from="(650,810)" to="(670,810)"/> <wire from="(650,1290)" to="(670,1290)"/> <wire from="(710,230)" to="(730,230)"/> <wire from="(710,950)" to="(730,950)"/> <wire from="(710,710)" to="(730,710)"/> <wire from="(710,1190)" to="(730,1190)"/> <wire from="(350,900)" to="(380,900)"/> <wire from="(820,1330)" to="(1040,1330)"/> <wire from="(730,230)" to="(820,230)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(870,1420)" to="(900,1420)"/> <wire from="(200,760)" to="(220,760)"/> <wire from="(420,430)" to="(420,740)"/> <wire from="(280,150)" to="(280,330)"/> <wire from="(750,1070)" to="(820,1070)"/> <wire from="(650,90)" to="(650,210)"/> <wire from="(650,330)" to="(650,450)"/> <wire from="(650,810)" to="(650,930)"/> <wire from="(650,570)" to="(650,690)"/> <wire from="(650,1050)" to="(650,1170)"/> <wire from="(490,1500)" to="(1070,1500)"/> <wire from="(840,110)" to="(840,550)"/> <wire from="(230,880)" to="(240,880)"/> <wire from="(440,1070)" to="(520,1070)"/> <wire from="(570,60)" to="(570,110)"/> <wire from="(570,540)" to="(570,590)"/> <wire from="(570,300)" to="(570,350)"/> <wire from="(570,1020)" to="(570,1070)"/> <wire from="(570,780)" to="(570,830)"/> <wire from="(570,1260)" to="(570,1310)"/> <wire from="(180,790)" to="(180,850)"/> <wire from="(460,950)" to="(520,950)"/> <wire from="(190,910)" to="(190,1550)"/> <wire from="(730,830)" to="(780,830)"/> <wire from="(90,30)" to="(140,30)"/> <wire from="(800,350)" to="(800,570)"/> <wire from="(120,930)" to="(230,930)"/> <wire from="(360,1420)" to="(360,1440)"/> <wire from="(140,30)" to="(140,110)"/> <wire from="(440,550)" to="(440,760)"/> <wire from="(350,840)" to="(460,840)"/> <wire from="(760,610)" to="(870,610)"/> <wire from="(900,1400)" to="(900,1420)"/> <wire from="(380,900)" to="(380,1310)"/> <wire from="(620,240)" to="(620,260)"/> <wire from="(620,720)" to="(620,740)"/> <wire from="(620,1200)" to="(620,1220)"/> <wire from="(620,480)" to="(620,500)"/> <wire from="(620,960)" to="(620,980)"/> <wire from="(90,1550)" to="(190,1550)"/> <wire from="(200,880)" to="(230,880)"/> <wire from="(350,860)" to="(440,860)"/> <wire from="(550,1480)" to="(570,1480)"/> <wire from="(570,420)" to="(730,420)"/> <wire from="(570,180)" to="(730,180)"/> <wire from="(570,900)" to="(730,900)"/> <wire from="(570,660)" to="(730,660)"/> <wire from="(460,670)" to="(460,780)"/> <wire from="(310,1400)" to="(330,1400)"/> <wire from="(220,350)" to="(240,350)"/> <wire from="(420,880)" to="(420,1190)"/> <wire from="(490,870)" to="(500,870)"/> <wire from="(490,390)" to="(500,390)"/> <wire from="(490,150)" to="(500,150)"/> <wire from="(490,1110)" to="(500,1110)"/> <wire from="(490,630)" to="(500,630)"/> <wire from="(650,30)" to="(650,90)"/> <wire from="(730,1310)" to="(730,1370)"/> <wire from="(90,780)" to="(160,780)"/> <wire from="(490,1350)" to="(500,1350)"/> <wire from="(190,850)" to="(190,910)"/> <wire from="(350,880)" to="(420,880)"/> <wire from="(730,350)" to="(730,420)"/> <wire from="(730,830)" to="(730,900)"/> <wire from="(730,110)" to="(730,180)"/> <wire from="(730,590)" to="(730,660)"/> <wire from="(950,600)" to="(950,1270)"/> <wire from="(630,470)" to="(670,470)"/> <wire from="(630,710)" to="(670,710)"/> <wire from="(630,230)" to="(670,230)"/> <wire from="(630,950)" to="(670,950)"/> <wire from="(630,1190)" to="(670,1190)"/> <wire from="(360,1470)" to="(360,1490)"/> <wire from="(350,800)" to="(520,800)"/> <wire from="(900,1380)" to="(940,1380)"/> <wire from="(730,1430)" to="(840,1430)"/> <wire from="(730,1190)" to="(840,1190)"/> <wire from="(590,1460)" to="(1020,1460)"/> <wire from="(520,1070)" to="(520,1090)"/> <wire from="(520,1310)" to="(520,1330)"/> <wire from="(780,620)" to="(780,830)"/> <wire from="(210,700)" to="(240,700)"/> <wire from="(570,110)" to="(590,110)"/> <wire from="(570,590)" to="(590,590)"/> <wire from="(570,350)" to="(590,350)"/> <wire from="(570,1070)" to="(590,1070)"/> <wire from="(570,830)" to="(590,830)"/> <wire from="(570,1310)" to="(590,1310)"/> <wire from="(780,620)" to="(870,620)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(570,1550)" to="(920,1550)"/> <wire from="(140,880)" to="(160,880)"/> <wire from="(550,810)" to="(550,930)"/> <wire from="(550,1290)" to="(550,1410)"/> <wire from="(550,330)" to="(550,450)"/> <wire from="(490,1230)" to="(490,1350)"/> <wire from="(550,1050)" to="(550,1170)"/> <wire from="(550,90)" to="(550,210)"/> <wire from="(550,570)" to="(550,690)"/> <wire from="(730,350)" to="(800,350)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(230,820)" to="(240,820)"/> <wire from="(140,130)" to="(140,700)"/> <wire from="(490,270)" to="(490,390)"/> <wire from="(980,1390)" to="(1060,1390)"/> <wire from="(490,750)" to="(490,870)"/> <wire from="(490,510)" to="(490,630)"/> <wire from="(490,990)" to="(490,1110)"/> <wire from="(180,730)" to="(180,790)"/> <wire from="(570,1140)" to="(750,1140)"/> <wire from="(350,780)" to="(460,780)"/> <wire from="(600,720)" to="(600,760)"/> <wire from="(600,240)" to="(600,280)"/> <wire from="(600,1200)" to="(600,1240)"/> <wire from="(200,820)" to="(230,820)"/> <wire from="(600,960)" to="(600,1000)"/> <wire from="(600,480)" to="(600,520)"/> <wire from="(930,600)" to="(950,600)"/> <wire from="(920,1390)" to="(940,1390)"/> <wire from="(820,640)" to="(820,1070)"/> <wire from="(90,1400)" to="(250,1400)"/> <wire from="(1020,1280)" to="(1020,1460)"/> <wire from="(260,330)" to="(280,330)"/> <wire from="(730,710)" to="(760,710)"/> <wire from="(360,1470)" to="(380,1470)"/> <wire from="(530,1220)" to="(620,1220)"/> <wire from="(530,260)" to="(620,260)"/> <wire from="(530,740)" to="(620,740)"/> <wire from="(530,500)" to="(620,500)"/> <wire from="(530,980)" to="(620,980)"/> <wire from="(750,1350)" to="(750,1410)"/> <wire from="(380,190)" to="(520,190)"/> <wire from="(530,520)" to="(600,520)"/> <wire from="(530,1000)" to="(600,1000)"/> <wire from="(380,1310)" to="(520,1310)"/> <wire from="(530,1240)" to="(600,1240)"/> <wire from="(530,760)" to="(600,760)"/> <wire from="(530,280)" to="(600,280)"/> <wire from="(800,630)" to="(870,630)"/> <wire from="(90,720)" to="(160,720)"/> <wire from="(140,820)" to="(140,880)"/> <wire from="(190,790)" to="(190,850)"/> <wire from="(350,740)" to="(420,740)"/> <wire from="(400,310)" to="(520,310)"/> <wire from="(550,810)" to="(590,810)"/> <wire from="(550,1290)" to="(590,1290)"/> <wire from="(550,330)" to="(590,330)"/> <wire from="(550,570)" to="(590,570)"/> <wire from="(550,1050)" to="(590,1050)"/> <wire from="(550,90)" to="(590,90)"/> <wire from="(350,820)" to="(520,820)"/> <wire from="(440,860)" to="(440,1070)"/> <wire from="(900,1400)" to="(940,1400)"/> <wire from="(520,770)" to="(520,800)"/> <wire from="(1000,1260)" to="(1040,1260)"/> <wire from="(730,1370)" to="(840,1370)"/> <wire from="(420,430)" to="(520,430)"/> <wire from="(520,530)" to="(520,550)"/> <wire from="(520,290)" to="(520,310)"/> <wire from="(1000,1280)" to="(1020,1280)"/> <wire from="(650,210)" to="(670,210)"/> <wire from="(650,450)" to="(670,450)"/> <wire from="(650,930)" to="(670,930)"/> <wire from="(710,350)" to="(730,350)"/> <wire from="(650,690)" to="(670,690)"/> <wire from="(650,1170)" to="(670,1170)"/> <wire from="(710,110)" to="(730,110)"/> <wire from="(710,830)" to="(730,830)"/> <wire from="(710,1310)" to="(730,1310)"/> <wire from="(710,590)" to="(730,590)"/> <wire from="(350,700)" to="(380,700)"/> <wire from="(750,1410)" to="(840,1410)"/> <wire from="(840,550)" to="(870,550)"/> <wire from="(920,1390)" to="(920,1550)"/> <wire from="(140,820)" to="(160,820)"/> <wire from="(650,210)" to="(650,330)"/> <wire from="(230,880)" to="(230,930)"/> <wire from="(650,1170)" to="(650,1290)"/> <wire from="(650,690)" to="(650,810)"/> <wire from="(650,450)" to="(650,570)"/> <wire from="(650,930)" to="(650,1050)"/> <wire from="(120,370)" to="(120,930)"/> <wire from="(230,360)" to="(240,360)"/> <wire from="(440,550)" to="(520,550)"/> <wire from="(420,1410)" to="(550,1410)"/> <wire from="(570,420)" to="(570,470)"/> <wire from="(570,180)" to="(570,230)"/> <wire from="(570,660)" to="(570,710)"/> <wire from="(570,900)" to="(570,950)"/> <wire from="(570,1140)" to="(570,1190)"/> <wire from="(420,1500)" to="(490,1500)"/> <wire from="(730,590)" to="(870,590)"/> <wire from="(820,560)" to="(870,560)"/> <wire from="(820,640)" to="(870,640)"/> <wire from="(460,670)" to="(520,670)"/> <wire from="(730,470)" to="(780,470)"/> <wire from="(180,910)" to="(180,980)"/> <wire from="(820,230)" to="(820,560)"/> <wire from="(330,1510)" to="(380,1510)"/> <wire from="(520,820)" to="(520,850)"/> <wire from="(750,1140)" to="(750,1350)"/> <wire from="(420,1440)" to="(420,1470)"/> <wire from="(900,1360)" to="(900,1380)"/> <wire from="(990,1290)" to="(990,1310)"/> <wire from="(620,120)" to="(620,140)"/> <wire from="(620,600)" to="(620,620)"/> <wire from="(620,1080)" to="(620,1100)"/> <wire from="(620,360)" to="(620,380)"/> <wire from="(620,840)" to="(620,860)"/> <wire from="(620,1320)" to="(620,1340)"/> <wire from="(570,60)" to="(1060,60)"/> <wire from="(780,470)" to="(780,580)"/> <wire from="(570,300)" to="(730,300)"/> <wire from="(570,540)" to="(730,540)"/> <wire from="(270,1400)" to="(290,1400)"/> <wire from="(570,780)" to="(730,780)"/> <wire from="(570,1260)" to="(730,1260)"/> <wire from="(570,1020)" to="(730,1020)"/> <wire from="(360,1490)" to="(380,1490)"/> <wire from="(210,340)" to="(210,700)"/> <wire from="(760,610)" to="(760,710)"/> <wire from="(490,270)" to="(500,270)"/> <wire from="(490,750)" to="(500,750)"/> <wire from="(490,990)" to="(500,990)"/> <wire from="(490,510)" to="(500,510)"/> <wire from="(200,700)" to="(210,700)"/> <wire from="(800,570)" to="(870,570)"/> <wire from="(90,900)" to="(160,900)"/> <wire from="(490,1230)" to="(500,1230)"/> <wire from="(140,760)" to="(140,820)"/> <wire from="(190,730)" to="(190,790)"/> <wire from="(120,370)" to="(240,370)"/> <wire from="(330,1400)" to="(380,1400)"/> <wire from="(730,230)" to="(730,300)"/> <wire from="(730,710)" to="(730,780)"/> <wire from="(730,1190)" to="(730,1260)"/> <wire from="(730,470)" to="(730,540)"/> <wire from="(730,950)" to="(730,1020)"/> <wire from="(630,830)" to="(670,830)"/> <wire from="(630,350)" to="(670,350)"/> <wire from="(630,590)" to="(670,590)"/> <wire from="(630,110)" to="(670,110)"/> <wire from="(630,1310)" to="(670,1310)"/> <wire from="(630,1070)" to="(670,1070)"/> <wire from="(710,1070)" to="(750,1070)"/> <wire from="(820,1330)" to="(820,1360)"/> <wire from="(1040,1260)" to="(1040,1330)"/> <wire from="(730,110)" to="(840,110)"/> <wire from="(220,350)" to="(220,760)"/> <wire from="(520,950)" to="(520,970)"/> <wire from="(520,1190)" to="(520,1210)"/> <wire from="(820,1360)" to="(840,1360)"/> <wire from="(210,340)" to="(240,340)"/> <wire from="(570,470)" to="(590,470)"/> <wire from="(570,230)" to="(590,230)"/> <wire from="(570,710)" to="(590,710)"/> <wire from="(570,950)" to="(590,950)"/> <wire from="(570,1190)" to="(590,1190)"/> <wire from="(460,840)" to="(460,950)"/> <wire from="(780,580)" to="(870,580)"/> <wire from="(750,1350)" to="(840,1350)"/> <wire from="(140,760)" to="(160,760)"/> <wire from="(840,650)" to="(870,650)"/> <wire from="(220,760)" to="(240,760)"/> <wire from="(550,690)" to="(550,810)"/> <wire from="(550,1170)" to="(550,1290)"/> <wire from="(550,210)" to="(550,330)"/> <wire from="(550,930)" to="(550,1050)"/> <wire from="(550,450)" to="(550,570)"/> <wire from="(730,950)" to="(800,950)"/> <wire from="(730,1310)" to="(990,1310)"/> <wire from="(490,150)" to="(490,270)"/> <wire from="(490,630)" to="(490,750)"/> <wire from="(490,1110)" to="(490,1230)"/> <wire from="(490,390)" to="(490,510)"/> <wire from="(490,870)" to="(490,990)"/> <wire from="(180,850)" to="(180,910)"/> <comp loc="(350,640)" name="NOISE_TABLE"/> <comp loc="(710,460)" name="D-latch"/> <comp lib="0" loc="(90,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="4" loc="(630,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,630)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,1500)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="4" loc="(200,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(510,1470)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(630,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(140,130)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(630,90)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(290,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="4"/> <a name="label" val="N_FREQ"/> <a name="labelloc" val="east"/> </comp> <comp loc="(710,1060)" name="D-latch"/> <comp loc="(710,1300)" name="D-latch"/> <comp lib="2" loc="(500,870)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(710,100)" name="D-latch"/> <comp lib="1" loc="(310,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(970,1270)" name="Demultiplexer"> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp loc="(710,580)" name="D-latch"/> <comp lib="6" loc="(580,1447)" name="Text"> <a name="text" val="17"/> </comp> <comp lib="2" loc="(500,390)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(570,1460)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1070,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,1470)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(460,1494)" name="Text"> <a name="text" val="NFLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(270,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(258,1386)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="4" loc="(630,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(930,600)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="label" val="16"/> </comp> <comp loc="(710,340)" name="D-latch"/> <comp lib="6" loc="(297,1385)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(980,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="15"/> </comp> <comp lib="2" loc="(500,510)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(880,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="14"/> </comp> <comp loc="(710,1180)" name="D-latch"/> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="2" loc="(500,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(710,940)" name="D-latch"/> <comp lib="2" loc="(500,270)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(420,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(388,1461)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="2" loc="(500,150)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(260,330)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(710,220)" name="D-latch"/> <comp lib="4" loc="(630,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(460,1402)" name="Text"> <a name="text" val="NFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(630,1050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,750)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(500,990)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(870,1420)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp loc="(710,700)" name="D-latch"/> <comp lib="0" loc="(90,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(710,820)" name="D-latch"/> <comp lib="2" loc="(500,1110)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,1350)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> </circuit> <circuit name="NOISE_TABLE"> <a name="circuit" val="NOISE_TABLE"/> <a name="clabel" val="NOISE TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M230,41 Q234,51 238,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffe650" height="331" stroke="#000000" stroke-width="2" width="110" x="160" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="104">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="164">F1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="224">F2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="284">F3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="104">NNF10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="124">NNF9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="145">NNF8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="165">NNF7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="184">NNF6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="205">NNF5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="225">NNF4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="244">NNF3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="264">NNF2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="284">NNF1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="304">NNF0</text> <circ-port height="10" pin="310,40" width="10" x="265" y="295"/> <circ-port height="10" pin="310,70" width="10" x="265" y="275"/> <circ-port height="10" pin="310,100" width="10" x="265" y="255"/> <circ-port height="10" pin="310,130" width="10" x="265" y="235"/> <circ-port height="10" pin="310,160" width="10" x="265" y="215"/> <circ-port height="10" pin="310,190" width="10" x="265" y="195"/> <circ-port height="10" pin="310,220" width="10" x="265" y="175"/> <circ-port height="10" pin="310,250" width="10" x="265" y="155"/> <circ-port height="10" pin="310,280" width="10" x="265" y="135"/> <circ-port height="10" pin="310,310" width="10" x="265" y="115"/> <circ-port height="10" pin="310,340" width="10" x="265" y="95"/> <circ-port height="8" pin="80,450" width="8" x="156" y="276"/> <circ-port height="8" pin="80,400" width="8" x="156" y="216"/> <circ-port height="8" pin="80,350" width="8" x="156" y="156"/> <circ-port height="8" pin="80,300" width="8" x="156" y="96"/> <circ-anchor facing="east" height="6" width="6" x="267" y="37"/> </appear> <wire from="(250,40)" to="(310,40)"/> <wire from="(470,110)" to="(520,110)"/> <wire from="(470,190)" to="(520,190)"/> <wire from="(470,230)" to="(520,230)"/> <wire from="(470,150)" to="(520,150)"/> <wire from="(100,380)" to="(100,400)"/> <wire from="(250,180)" to="(290,180)"/> <wire from="(270,280)" to="(310,280)"/> <wire from="(410,60)" to="(410,290)"/> <wire from="(80,300)" to="(110,300)"/> <wire from="(730,200)" to="(750,200)"/> <wire from="(730,240)" to="(750,240)"/> <wire from="(730,160)" to="(750,160)"/> <wire from="(730,120)" to="(750,120)"/> <wire from="(250,40)" to="(250,140)"/> <wire from="(250,240)" to="(250,340)"/> <wire from="(290,160)" to="(310,160)"/> <wire from="(410,290)" to="(560,290)"/> <wire from="(80,350)" to="(100,350)"/> <wire from="(140,210)" to="(160,210)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,170)" to="(160,170)"/> <wire from="(140,250)" to="(160,250)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(100,380)" to="(110,380)"/> <wire from="(110,390)" to="(110,450)"/> <wire from="(700,230)" to="(750,230)"/> <wire from="(700,150)" to="(750,150)"/> <wire from="(700,110)" to="(750,110)"/> <wire from="(700,190)" to="(750,190)"/> <wire from="(260,310)" to="(310,310)"/> <wire from="(260,70)" to="(310,70)"/> <wire from="(110,240)" to="(160,240)"/> <wire from="(110,160)" to="(160,160)"/> <wire from="(110,120)" to="(160,120)"/> <wire from="(110,200)" to="(160,200)"/> <wire from="(100,350)" to="(100,370)"/> <wire from="(200,190)" to="(230,190)"/> <wire from="(640,290)" to="(790,290)"/> <wire from="(500,140)" to="(520,140)"/> <wire from="(500,100)" to="(520,100)"/> <wire from="(500,220)" to="(520,220)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(410,60)" to="(560,60)"/> <wire from="(280,130)" to="(280,170)"/> <wire from="(280,210)" to="(280,250)"/> <wire from="(80,400)" to="(100,400)"/> <wire from="(560,60)" to="(560,290)"/> <wire from="(640,60)" to="(640,290)"/> <wire from="(250,340)" to="(310,340)"/> <wire from="(470,130)" to="(520,130)"/> <wire from="(470,210)" to="(520,210)"/> <wire from="(470,170)" to="(520,170)"/> <wire from="(470,250)" to="(520,250)"/> <wire from="(130,350)" to="(180,350)"/> <wire from="(180,270)" to="(180,350)"/> <wire from="(260,70)" to="(260,150)"/> <wire from="(260,230)" to="(260,310)"/> <wire from="(250,200)" to="(290,200)"/> <wire from="(270,100)" to="(310,100)"/> <wire from="(250,170)" to="(280,170)"/> <wire from="(250,210)" to="(280,210)"/> <wire from="(640,60)" to="(790,60)"/> <wire from="(730,100)" to="(750,100)"/> <wire from="(730,180)" to="(750,180)"/> <wire from="(730,220)" to="(750,220)"/> <wire from="(730,140)" to="(750,140)"/> <wire from="(290,220)" to="(310,220)"/> <wire from="(790,60)" to="(790,290)"/> <wire from="(140,190)" to="(160,190)"/> <wire from="(140,230)" to="(160,230)"/> <wire from="(140,110)" to="(160,110)"/> <wire from="(140,150)" to="(160,150)"/> <wire from="(250,220)" to="(270,220)"/> <wire from="(250,150)" to="(260,150)"/> <wire from="(250,230)" to="(260,230)"/> <wire from="(700,210)" to="(750,210)"/> <wire from="(700,130)" to="(750,130)"/> <wire from="(700,170)" to="(750,170)"/> <wire from="(700,250)" to="(750,250)"/> <wire from="(250,190)" to="(310,190)"/> <wire from="(110,180)" to="(160,180)"/> <wire from="(110,140)" to="(160,140)"/> <wire from="(110,260)" to="(160,260)"/> <wire from="(110,220)" to="(160,220)"/> <wire from="(290,160)" to="(290,180)"/> <wire from="(290,200)" to="(290,220)"/> <wire from="(80,450)" to="(110,450)"/> <wire from="(280,130)" to="(310,130)"/> <wire from="(280,250)" to="(310,250)"/> <wire from="(500,200)" to="(520,200)"/> <wire from="(500,240)" to="(520,240)"/> <wire from="(500,160)" to="(520,160)"/> <wire from="(500,120)" to="(520,120)"/> <wire from="(100,370)" to="(110,370)"/> <wire from="(270,100)" to="(270,160)"/> <wire from="(270,220)" to="(270,280)"/> <wire from="(110,300)" to="(110,360)"/> <comp lib="0" loc="(730,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x139"/> </comp> <comp lib="0" loc="(500,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x433"/> </comp> <comp lib="0" loc="(500,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x64e"/> </comp> <comp lib="0" loc="(110,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x20f"/> </comp> <comp lib="0" loc="(80,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF1"/> </comp> <comp lib="0" loc="(500,100)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(140,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x300"/> </comp> <comp lib="0" loc="(310,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x227"/> </comp> <comp lib="0" loc="(730,100)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(310,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x4f3"/> </comp> <comp lib="0" loc="(500,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x55"/> </comp> <comp lib="0" loc="(140,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x63"/> </comp> <comp lib="2" loc="(200,190)" name="Multiplexer"> <a name="select" val="4"/> <a name="width" val="11"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(310,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF0"/> </comp> <comp lib="0" loc="(110,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x62"/> </comp> <comp lib="0" loc="(470,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x5a4"/> </comp> <comp lib="0" loc="(700,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x67"/> </comp> <comp lib="0" loc="(470,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x24e"/> </comp> <comp lib="0" loc="(140,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x642"/> </comp> <comp lib="0" loc="(110,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(700,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x20f"/> </comp> <comp lib="0" loc="(110,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x67"/> </comp> <comp lib="0" loc="(470,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x55d"/> </comp> <comp lib="0" loc="(730,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x642"/> </comp> <comp lib="0" loc="(130,350)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(470,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x797"/> </comp> <comp lib="0" loc="(730,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x227"/> </comp> <comp lib="0" loc="(310,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x648"/> </comp> <comp lib="0" loc="(700,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x140"/> </comp> <comp lib="0" loc="(500,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x6c3"/> </comp> <comp lib="0" loc="(110,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x106"/> </comp> <comp lib="0" loc="(730,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x1a9"/> </comp> <comp lib="0" loc="(140,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(500,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x3ab"/> </comp> <comp lib="0" loc="(700,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2bb"/> </comp> <comp lib="0" loc="(310,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(484,81)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="0" loc="(310,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x173"/> </comp> <comp lib="6" loc="(714,82)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(470,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x51c"/> </comp> <comp lib="0" loc="(700,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x106"/> </comp> <comp lib="0" loc="(700,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x62"/> </comp> <comp lib="0" loc="(110,260)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x140"/> </comp> <comp lib="6" loc="(113,82)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF2"/> </comp> <comp lib="0" loc="(470,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(730,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x300"/> </comp> <comp lib="0" loc="(730,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xaa"/> </comp> <comp lib="0" loc="(110,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2bb"/> </comp> <comp lib="0" loc="(310,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x1a9"/> </comp> <comp lib="0" loc="(230,190)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(310,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF3"/> </comp> <comp lib="0" loc="(110,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(470,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x7c1"/> </comp> <comp lib="0" loc="(310,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x139"/> </comp> <comp lib="0" loc="(140,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xaa"/> </comp> <comp lib="0" loc="(310,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x63"/> </comp> <comp lib="0" loc="(700,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(500,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x3f9"/> </comp> </circuit> <circuit name="RANDOM_LFSR"> <a name="circuit" val="RANDOM_LFSR"/> <a name="clabel" val="RANDOM LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbe3b" height="161" stroke="#000000" stroke-width="2" width="200" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="218" y="194">RNDOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="134">RSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="115">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="155">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="174">NORND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="194">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">ACLK1</text> <circ-port height="8" pin="100,80" width="8" x="46" y="126"/> <circ-port height="8" pin="100,1390" width="8" x="46" y="106"/> <circ-port height="8" pin="100,1360" width="8" x="46" y="146"/> <circ-port height="8" pin="100,1420" width="8" x="46" y="166"/> <circ-port height="10" pin="820,1390" width="10" x="245" y="185"/> <circ-port height="8" pin="100,1450" width="8" x="46" y="186"/> <circ-port height="8" pin="100,30" width="8" x="46" y="66"/> <circ-port height="10" pin="820,1480" width="10" x="245" y="65"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(470,700)" to="(530,700)"/> <wire from="(470,620)" to="(530,620)"/> <wire from="(730,1270)" to="(730,1400)"/> <wire from="(710,1280)" to="(750,1280)"/> <wire from="(480,710)" to="(480,1060)"/> <wire from="(520,1320)" to="(520,1340)"/> <wire from="(360,1340)" to="(390,1340)"/> <wire from="(630,1300)" to="(650,1300)"/> <wire from="(100,1360)" to="(320,1360)"/> <wire from="(730,1400)" to="(750,1400)"/> <wire from="(210,850)" to="(210,900)"/> <wire from="(210,690)" to="(210,740)"/> <wire from="(210,610)" to="(210,660)"/> <wire from="(210,770)" to="(210,820)"/> <wire from="(210,1090)" to="(210,1140)"/> <wire from="(210,930)" to="(210,980)"/> <wire from="(210,1010)" to="(210,1060)"/> <wire from="(210,1170)" to="(210,1220)"/> <wire from="(210,530)" to="(210,580)"/> <wire from="(210,450)" to="(210,500)"/> <wire from="(210,370)" to="(210,420)"/> <wire from="(210,290)" to="(210,340)"/> <wire from="(210,210)" to="(210,260)"/> <wire from="(210,130)" to="(210,180)"/> <wire from="(210,50)" to="(210,100)"/> <wire from="(380,580)" to="(440,580)"/> <wire from="(380,740)" to="(440,740)"/> <wire from="(480,610)" to="(530,610)"/> <wire from="(610,1390)" to="(650,1390)"/> <wire from="(100,1390)" to="(340,1390)"/> <wire from="(380,1140)" to="(490,1140)"/> <wire from="(390,1480)" to="(820,1480)"/> <wire from="(380,180)" to="(490,180)"/> <wire from="(790,1270)" to="(810,1270)"/> <wire from="(490,720)" to="(490,1140)"/> <wire from="(490,1290)" to="(510,1290)"/> <wire from="(500,730)" to="(530,730)"/> <wire from="(100,80)" to="(190,80)"/> <wire from="(680,1310)" to="(710,1310)"/> <wire from="(300,1340)" to="(320,1340)"/> <wire from="(360,1220)" to="(500,1220)"/> <wire from="(300,30)" to="(300,80)"/> <wire from="(630,1240)" to="(630,1300)"/> <wire from="(450,680)" to="(530,680)"/> <wire from="(390,1340)" to="(520,1340)"/> <wire from="(190,80)" to="(190,160)"/> <wire from="(190,160)" to="(190,240)"/> <wire from="(190,240)" to="(190,320)"/> <wire from="(190,720)" to="(190,800)"/> <wire from="(190,880)" to="(190,960)"/> <wire from="(190,640)" to="(190,720)"/> <wire from="(190,800)" to="(190,880)"/> <wire from="(190,960)" to="(190,1040)"/> <wire from="(190,1040)" to="(190,1120)"/> <wire from="(190,1120)" to="(190,1200)"/> <wire from="(190,560)" to="(190,640)"/> <wire from="(190,480)" to="(190,560)"/> <wire from="(190,320)" to="(190,400)"/> <wire from="(190,400)" to="(190,480)"/> <wire from="(210,850)" to="(380,850)"/> <wire from="(210,770)" to="(380,770)"/> <wire from="(210,930)" to="(380,930)"/> <wire from="(210,1090)" to="(380,1090)"/> <wire from="(210,1010)" to="(380,1010)"/> <wire from="(210,1170)" to="(380,1170)"/> <wire from="(210,690)" to="(380,690)"/> <wire from="(210,610)" to="(380,610)"/> <wire from="(210,530)" to="(380,530)"/> <wire from="(210,450)" to="(380,450)"/> <wire from="(210,370)" to="(380,370)"/> <wire from="(210,290)" to="(380,290)"/> <wire from="(210,210)" to="(380,210)"/> <wire from="(210,130)" to="(380,130)"/> <wire from="(490,600)" to="(530,600)"/> <wire from="(610,660)" to="(630,660)"/> <wire from="(630,1240)" to="(650,1240)"/> <wire from="(210,50)" to="(810,50)"/> <wire from="(500,730)" to="(500,1220)"/> <wire from="(610,1220)" to="(610,1320)"/> <wire from="(790,1390)" to="(820,1390)"/> <wire from="(210,820)" to="(230,820)"/> <wire from="(210,980)" to="(230,980)"/> <wire from="(210,740)" to="(230,740)"/> <wire from="(210,1140)" to="(230,1140)"/> <wire from="(210,1220)" to="(230,1220)"/> <wire from="(210,1060)" to="(230,1060)"/> <wire from="(210,900)" to="(230,900)"/> <wire from="(210,660)" to="(230,660)"/> <wire from="(210,580)" to="(230,580)"/> <wire from="(210,500)" to="(230,500)"/> <wire from="(210,420)" to="(230,420)"/> <wire from="(210,340)" to="(230,340)"/> <wire from="(210,260)" to="(230,260)"/> <wire from="(210,100)" to="(230,100)"/> <wire from="(210,180)" to="(230,180)"/> <wire from="(380,420)" to="(460,420)"/> <wire from="(380,900)" to="(460,900)"/> <wire from="(300,1200)" to="(300,1250)"/> <wire from="(100,1420)" to="(610,1420)"/> <wire from="(480,710)" to="(530,710)"/> <wire from="(270,500)" to="(320,500)"/> <wire from="(270,660)" to="(320,660)"/> <wire from="(270,420)" to="(320,420)"/> <wire from="(270,340)" to="(320,340)"/> <wire from="(270,260)" to="(320,260)"/> <wire from="(270,180)" to="(320,180)"/> <wire from="(270,100)" to="(320,100)"/> <wire from="(270,580)" to="(320,580)"/> <wire from="(270,900)" to="(320,900)"/> <wire from="(270,820)" to="(320,820)"/> <wire from="(270,740)" to="(320,740)"/> <wire from="(270,980)" to="(320,980)"/> <wire from="(270,1060)" to="(320,1060)"/> <wire from="(270,1140)" to="(320,1140)"/> <wire from="(270,1220)" to="(320,1220)"/> <wire from="(450,500)" to="(450,640)"/> <wire from="(340,1370)" to="(340,1390)"/> <wire from="(300,480)" to="(300,560)"/> <wire from="(300,640)" to="(300,720)"/> <wire from="(300,800)" to="(300,880)"/> <wire from="(300,560)" to="(300,640)"/> <wire from="(300,720)" to="(300,800)"/> <wire from="(300,880)" to="(300,960)"/> <wire from="(300,400)" to="(300,480)"/> <wire from="(300,320)" to="(300,400)"/> <wire from="(300,240)" to="(300,320)"/> <wire from="(300,80)" to="(300,160)"/> <wire from="(300,160)" to="(300,240)"/> <wire from="(300,960)" to="(300,1040)"/> <wire from="(300,1040)" to="(300,1120)"/> <wire from="(300,1120)" to="(300,1200)"/> <wire from="(470,340)" to="(470,620)"/> <wire from="(490,180)" to="(490,600)"/> <wire from="(500,590)" to="(530,590)"/> <wire from="(300,480)" to="(320,480)"/> <wire from="(300,400)" to="(320,400)"/> <wire from="(300,560)" to="(320,560)"/> <wire from="(300,720)" to="(320,720)"/> <wire from="(300,640)" to="(320,640)"/> <wire from="(300,800)" to="(320,800)"/> <wire from="(300,880)" to="(320,880)"/> <wire from="(300,320)" to="(320,320)"/> <wire from="(300,240)" to="(320,240)"/> <wire from="(300,80)" to="(320,80)"/> <wire from="(300,160)" to="(320,160)"/> <wire from="(300,960)" to="(320,960)"/> <wire from="(300,1040)" to="(320,1040)"/> <wire from="(300,1120)" to="(320,1120)"/> <wire from="(300,1200)" to="(320,1200)"/> <wire from="(610,1320)" to="(610,1370)"/> <wire from="(440,670)" to="(440,740)"/> <wire from="(100,1450)" to="(730,1450)"/> <wire from="(610,1220)" to="(650,1220)"/> <wire from="(710,1230)" to="(710,1260)"/> <wire from="(380,1140)" to="(380,1170)"/> <wire from="(380,1060)" to="(380,1090)"/> <wire from="(380,980)" to="(380,1010)"/> <wire from="(380,900)" to="(380,930)"/> <wire from="(380,820)" to="(380,850)"/> <wire from="(380,580)" to="(380,610)"/> <wire from="(380,740)" to="(380,770)"/> <wire from="(380,660)" to="(380,690)"/> <wire from="(380,260)" to="(480,260)"/> <wire from="(380,1060)" to="(480,1060)"/> <wire from="(190,160)" to="(230,160)"/> <wire from="(190,80)" to="(230,80)"/> <wire from="(190,1040)" to="(230,1040)"/> <wire from="(190,1200)" to="(230,1200)"/> <wire from="(380,180)" to="(380,210)"/> <wire from="(380,260)" to="(380,290)"/> <wire from="(380,340)" to="(380,370)"/> <wire from="(380,420)" to="(380,450)"/> <wire from="(380,500)" to="(380,530)"/> <wire from="(190,960)" to="(230,960)"/> <wire from="(190,880)" to="(230,880)"/> <wire from="(190,1120)" to="(230,1120)"/> <wire from="(380,100)" to="(380,130)"/> <wire from="(190,800)" to="(230,800)"/> <wire from="(190,720)" to="(230,720)"/> <wire from="(190,640)" to="(230,640)"/> <wire from="(190,560)" to="(230,560)"/> <wire from="(190,480)" to="(230,480)"/> <wire from="(190,400)" to="(230,400)"/> <wire from="(190,320)" to="(230,320)"/> <wire from="(190,240)" to="(230,240)"/> <wire from="(440,650)" to="(530,650)"/> <wire from="(380,660)" to="(530,660)"/> <wire from="(460,690)" to="(530,690)"/> <wire from="(440,1310)" to="(510,1310)"/> <wire from="(390,1340)" to="(390,1480)"/> <wire from="(450,680)" to="(450,820)"/> <wire from="(710,1280)" to="(710,1310)"/> <wire from="(500,1220)" to="(610,1220)"/> <wire from="(630,1230)" to="(650,1230)"/> <wire from="(450,640)" to="(530,640)"/> <wire from="(100,30)" to="(300,30)"/> <wire from="(380,820)" to="(450,820)"/> <wire from="(380,500)" to="(450,500)"/> <wire from="(300,1270)" to="(300,1340)"/> <wire from="(380,100)" to="(500,100)"/> <wire from="(690,1380)" to="(750,1380)"/> <wire from="(610,1320)" to="(650,1320)"/> <wire from="(710,1260)" to="(750,1260)"/> <wire from="(460,690)" to="(460,900)"/> <wire from="(610,1390)" to="(610,1420)"/> <wire from="(490,720)" to="(530,720)"/> <wire from="(440,670)" to="(530,670)"/> <wire from="(460,630)" to="(530,630)"/> <wire from="(440,740)" to="(440,1310)"/> <wire from="(440,580)" to="(440,650)"/> <wire from="(810,50)" to="(810,1270)"/> <wire from="(610,1370)" to="(650,1370)"/> <wire from="(490,1140)" to="(490,1290)"/> <wire from="(460,420)" to="(460,630)"/> <wire from="(480,260)" to="(480,610)"/> <wire from="(470,700)" to="(470,980)"/> <wire from="(380,980)" to="(470,980)"/> <wire from="(380,340)" to="(470,340)"/> <wire from="(690,1230)" to="(710,1230)"/> <wire from="(730,1270)" to="(750,1270)"/> <wire from="(360,660)" to="(380,660)"/> <wire from="(360,740)" to="(380,740)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(360,980)" to="(380,980)"/> <wire from="(360,1060)" to="(380,1060)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(360,100)" to="(380,100)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(500,100)" to="(500,590)"/> <wire from="(540,1300)" to="(630,1300)"/> <wire from="(630,660)" to="(630,1230)"/> <wire from="(730,1400)" to="(730,1450)"/> <comp lib="1" loc="(790,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(820,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RNDOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NORND"/> </comp> <comp loc="(360,490)" name="D-latch"/> <comp loc="(360,170)" name="D-latch"/> <comp lib="2" loc="(540,1300)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(270,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(527,1273)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="4" loc="(270,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(360,570)" name="D-latch"/> <comp loc="(360,410)" name="D-latch"/> <comp lib="6" loc="(413,1133)" name="Text"> <a name="text" val="R13"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(270,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(300,1270)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(790,1270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(413,1213)" name="Text"> <a name="text" val="R14"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(411,733)" name="Text"> <a name="text" val="R8"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(270,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(360,650)" name="D-latch"/> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(270,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(339,1321)" name="Text"> <a name="text" val="DFF1"/> </comp> <comp lib="4" loc="(270,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(360,1050)" name="D-latch"/> <comp loc="(360,1130)" name="D-latch"/> <comp loc="(360,1210)" name="D-latch"/> <comp lib="0" loc="(820,1480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RSTEP"/> </comp> <comp lib="1" loc="(680,1310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp loc="(360,970)" name="D-latch"/> <comp loc="(360,890)" name="D-latch"/> <comp loc="(360,330)" name="D-latch"/> <comp lib="4" loc="(270,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(360,250)" name="D-latch"/> <comp loc="(360,90)" name="D-latch"/> <comp lib="4" loc="(360,1340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(360,810)" name="D-latch"/> <comp lib="4" loc="(270,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,1230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(100,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(100,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp loc="(360,730)" name="D-latch"/> <comp lib="0" loc="(100,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="1" loc="(610,660)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="5"/> </comp> <comp lib="1" loc="(690,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> </circuit> <circuit name="DPCM_CHANNEL"> <a name="circuit" val="DPCM_CHANNEL"/> <a name="clabel" val="DPCM CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M117,41 Q121,51 125,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#5498ff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="124">W4010</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="144">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="164">W4012</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="184">W4013</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="204">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="384">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="245">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="264">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="304">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="325">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="344">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="364">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="404">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="424">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="125">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="695" y="153">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="677" y="74">DMC INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="184">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="204">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="224">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="285">DMC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="303">DMC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="323">DMC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="344">DMC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="364">DMC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="384">DMC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="404">DMC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="449">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="399" y="450">14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="433">DMCA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="444">LOCK</text> <circ-port height="8" pin="140,110" width="8" x="46" y="96"/> <circ-port height="8" pin="140,140" width="8" x="46" y="56"/> <circ-port height="8" pin="140,170" width="8" x="46" y="76"/> <circ-port height="8" pin="140,210" width="8" x="46" y="116"/> <circ-port height="8" pin="140,1220" width="8" x="46" y="136"/> <circ-port height="8" pin="140,1360" width="8" x="46" y="156"/> <circ-port height="8" pin="140,1020" width="8" x="46" y="176"/> <circ-port height="8" pin="140,710" width="8" x="46" y="196"/> <circ-port height="8" pin="140,750" width="8" x="46" y="376"/> <circ-port height="8" pin="140,250" width="8" x="46" y="216"/> <circ-port height="8" pin="140,280" width="8" x="46" y="236"/> <circ-port height="8" pin="140,310" width="8" x="46" y="256"/> <circ-port height="8" pin="140,340" width="8" x="46" y="276"/> <circ-port height="8" pin="140,370" width="8" x="46" y="296"/> <circ-port height="8" pin="140,400" width="8" x="46" y="316"/> <circ-port height="8" pin="140,430" width="8" x="46" y="336"/> <circ-port height="8" pin="140,460" width="8" x="46" y="356"/> <circ-port height="8" pin="140,830" width="8" x="46" y="396"/> <circ-port height="8" pin="140,1050" width="8" x="46" y="416"/> <circ-port height="10" pin="1110,570" width="10" x="705" y="115"/> <circ-port height="10" pin="1110,650" width="10" x="705" y="65"/> <circ-port height="10" pin="1110,610" width="10" x="705" y="145"/> <circ-port height="10" pin="1110,690" width="10" x="705" y="175"/> <circ-port height="10" pin="1110,730" width="10" x="705" y="195"/> <circ-port height="10" pin="1110,770" width="10" x="705" y="215"/> <circ-port height="10" pin="1110,880" width="10" x="705" y="275"/> <circ-port height="10" pin="1110,910" width="10" x="705" y="295"/> <circ-port height="10" pin="1110,940" width="10" x="705" y="315"/> <circ-port height="10" pin="1110,970" width="10" x="705" y="335"/> <circ-port height="10" pin="1110,1000" width="10" x="705" y="355"/> <circ-port height="10" pin="1110,1030" width="10" x="705" y="375"/> <circ-port height="10" pin="1110,1060" width="10" x="705" y="395"/> <circ-port height="10" pin="1110,1170" width="10" x="255" y="455"/> <circ-port height="10" pin="1110,1200" width="10" x="265" y="455"/> <circ-port height="10" pin="1110,1230" width="10" x="275" y="455"/> <circ-port height="10" pin="1110,1260" width="10" x="285" y="455"/> <circ-port height="10" pin="1110,1290" width="10" x="295" y="455"/> <circ-port height="10" pin="1110,1320" width="10" x="305" y="455"/> <circ-port height="10" pin="1110,1350" width="10" x="315" y="455"/> <circ-port height="10" pin="1110,1380" width="10" x="325" y="455"/> <circ-port height="10" pin="1110,1410" width="10" x="335" y="455"/> <circ-port height="10" pin="1110,1440" width="10" x="345" y="455"/> <circ-port height="10" pin="1110,1470" width="10" x="355" y="455"/> <circ-port height="10" pin="1110,1500" width="10" x="365" y="455"/> <circ-port height="10" pin="1110,1530" width="10" x="375" y="455"/> <circ-port height="10" pin="1110,1560" width="10" x="385" y="455"/> <circ-port height="10" pin="1110,1590" width="10" x="395" y="455"/> <circ-port height="8" pin="140,790" width="8" x="46" y="436"/> <circ-port height="10" pin="1110,320" width="10" x="705" y="95"/> <circ-port height="10" pin="1110,210" width="10" x="705" y="45"/> <circ-anchor facing="east" height="6" width="6" x="347" y="37"/> </appear> <wire from="(800,1040)" to="(850,1040)"/> <wire from="(800,1360)" to="(850,1360)"/> <wire from="(800,1440)" to="(850,1440)"/> <wire from="(380,1100)" to="(430,1100)"/> <wire from="(380,1180)" to="(430,1180)"/> <wire from="(1060,1410)" to="(1060,1500)"/> <wire from="(960,1270)" to="(1020,1270)"/> <wire from="(400,1440)" to="(400,1450)"/> <wire from="(310,770)" to="(430,770)"/> <wire from="(570,1460)" to="(610,1460)"/> <wire from="(400,1120)" to="(400,1140)"/> <wire from="(640,210)" to="(870,210)"/> <wire from="(810,980)" to="(850,980)"/> <wire from="(1050,1200)" to="(1110,1200)"/> <wire from="(1070,1260)" to="(1070,1330)"/> <wire from="(820,1060)" to="(820,1080)"/> <wire from="(820,1380)" to="(820,1400)"/> <wire from="(390,1520)" to="(430,1520)"/> <wire from="(1020,1360)" to="(1100,1360)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(700,1500)" to="(850,1500)"/> <wire from="(340,590)" to="(430,590)"/> <wire from="(400,1140)" to="(430,1140)"/> <wire from="(960,880)" to="(1110,880)"/> <wire from="(1100,1380)" to="(1110,1380)"/> <wire from="(980,1220)" to="(980,1260)"/> <wire from="(630,1450)" to="(660,1450)"/> <wire from="(410,1480)" to="(430,1480)"/> <wire from="(380,1450)" to="(400,1450)"/> <wire from="(820,1080)" to="(850,1080)"/> <wire from="(380,1500)" to="(380,1540)"/> <wire from="(820,1000)" to="(850,1000)"/> <wire from="(140,170)" to="(160,170)"/> <wire from="(820,1400)" to="(850,1400)"/> <wire from="(420,1260)" to="(430,1260)"/> <wire from="(140,340)" to="(150,340)"/> <wire from="(640,1280)" to="(640,1340)"/> <wire from="(220,1110)" to="(360,1110)"/> <wire from="(600,1190)" to="(1000,1190)"/> <wire from="(840,960)" to="(850,960)"/> <wire from="(840,880)" to="(850,880)"/> <wire from="(840,1520)" to="(850,1520)"/> <wire from="(650,1330)" to="(660,1330)"/> <wire from="(390,870)" to="(590,870)"/> <wire from="(1000,330)" to="(1050,330)"/> <wire from="(1020,1320)" to="(1060,1320)"/> <wire from="(150,360)" to="(150,370)"/> <wire from="(570,650)" to="(820,650)"/> <wire from="(1090,1380)" to="(1090,1410)"/> <wire from="(570,550)" to="(610,550)"/> <wire from="(570,670)" to="(800,670)"/> <wire from="(140,1220)" to="(630,1220)"/> <wire from="(860,590)" to="(860,610)"/> <wire from="(660,320)" to="(660,1040)"/> <wire from="(680,1480)" to="(680,1560)"/> <wire from="(640,300)" to="(640,510)"/> <wire from="(160,370)" to="(160,400)"/> <wire from="(140,710)" to="(430,710)"/> <wire from="(320,330)" to="(320,610)"/> <wire from="(220,110)" to="(220,140)"/> <wire from="(680,1160)" to="(980,1160)"/> <wire from="(320,880)" to="(320,980)"/> <wire from="(1080,1290)" to="(1080,1340)"/> <wire from="(340,960)" to="(430,960)"/> <wire from="(960,1120)" to="(980,1120)"/> <wire from="(400,230)" to="(430,230)"/> <wire from="(270,210)" to="(270,690)"/> <wire from="(570,690)" to="(780,690)"/> <wire from="(1100,1350)" to="(1110,1350)"/> <wire from="(270,110)" to="(290,110)"/> <wire from="(600,1190)" to="(600,1350)"/> <wire from="(570,1440)" to="(600,1440)"/> <wire from="(570,1360)" to="(600,1360)"/> <wire from="(630,790)" to="(630,890)"/> <wire from="(610,450)" to="(610,550)"/> <wire from="(800,1030)" to="(830,1030)"/> <wire from="(200,360)" to="(220,360)"/> <wire from="(420,190)" to="(430,190)"/> <wire from="(420,510)" to="(430,510)"/> <wire from="(290,750)" to="(430,750)"/> <wire from="(170,380)" to="(170,430)"/> <wire from="(590,1390)" to="(660,1390)"/> <wire from="(220,140)" to="(290,140)"/> <wire from="(140,210)" to="(270,210)"/> <wire from="(1090,1410)" to="(1110,1410)"/> <wire from="(800,1300)" to="(850,1300)"/> <wire from="(590,1410)" to="(590,1420)"/> <wire from="(340,470)" to="(590,470)"/> <wire from="(180,390)" to="(180,460)"/> <wire from="(610,1430)" to="(660,1430)"/> <wire from="(1070,1260)" to="(1110,1260)"/> <wire from="(380,1040)" to="(430,1040)"/> <wire from="(570,710)" to="(760,710)"/> <wire from="(650,1260)" to="(650,1330)"/> <wire from="(410,1470)" to="(410,1480)"/> <wire from="(570,1300)" to="(630,1300)"/> <wire from="(720,750)" to="(720,1480)"/> <wire from="(810,1070)" to="(810,1100)"/> <wire from="(810,1390)" to="(810,1420)"/> <wire from="(800,1300)" to="(800,1330)"/> <wire from="(640,210)" to="(640,300)"/> <wire from="(810,1320)" to="(850,1320)"/> <wire from="(610,1430)" to="(610,1460)"/> <wire from="(410,830)" to="(410,860)"/> <wire from="(390,1130)" to="(390,1160)"/> <wire from="(820,1000)" to="(820,1020)"/> <wire from="(380,1040)" to="(380,1070)"/> <wire from="(760,710)" to="(760,920)"/> <wire from="(140,250)" to="(180,250)"/> <wire from="(600,1420)" to="(600,1440)"/> <wire from="(390,1060)" to="(430,1060)"/> <wire from="(570,730)" to="(740,730)"/> <wire from="(150,350)" to="(180,350)"/> <wire from="(760,1370)" to="(780,1370)"/> <wire from="(220,1590)" to="(760,1590)"/> <wire from="(1000,1450)" to="(1000,1560)"/> <wire from="(830,1120)" to="(850,1120)"/> <wire from="(590,290)" to="(590,330)"/> <wire from="(220,360)" to="(220,650)"/> <wire from="(620,1440)" to="(620,1480)"/> <wire from="(570,750)" to="(720,750)"/> <wire from="(400,1080)" to="(430,1080)"/> <wire from="(570,1420)" to="(590,1420)"/> <wire from="(960,1060)" to="(1110,1060)"/> <wire from="(830,1120)" to="(830,1220)"/> <wire from="(1040,1170)" to="(1110,1170)"/> <wire from="(220,1110)" to="(220,1470)"/> <wire from="(1020,340)" to="(1050,340)"/> <wire from="(1020,340)" to="(1020,1270)"/> <wire from="(160,370)" to="(180,370)"/> <wire from="(140,110)" to="(160,110)"/> <wire from="(820,1340)" to="(850,1340)"/> <wire from="(570,1400)" to="(660,1400)"/> <wire from="(380,1080)" to="(390,1080)"/> <wire from="(660,320)" to="(1050,320)"/> <wire from="(1080,1440)" to="(1110,1440)"/> <wire from="(720,1480)" to="(850,1480)"/> <wire from="(640,1460)" to="(640,1520)"/> <wire from="(570,770)" to="(700,770)"/> <wire from="(630,1450)" to="(630,1500)"/> <wire from="(390,810)" to="(390,870)"/> <wire from="(800,1340)" to="(810,1340)"/> <wire from="(780,770)" to="(1110,770)"/> <wire from="(220,1470)" to="(220,1590)"/> <wire from="(340,470)" to="(340,590)"/> <wire from="(1050,1420)" to="(1050,1530)"/> <wire from="(590,1380)" to="(590,1390)"/> <wire from="(420,450)" to="(610,450)"/> <wire from="(800,730)" to="(1110,730)"/> <wire from="(1070,1470)" to="(1110,1470)"/> <wire from="(680,1560)" to="(1000,1560)"/> <wire from="(400,230)" to="(400,240)"/> <wire from="(650,1470)" to="(650,1540)"/> <wire from="(600,1380)" to="(660,1380)"/> <wire from="(570,790)" to="(630,790)"/> <wire from="(1090,1320)" to="(1090,1350)"/> <wire from="(570,810)" to="(610,810)"/> <wire from="(1040,1170)" to="(1040,1300)"/> <wire from="(390,1420)" to="(390,1440)"/> <wire from="(820,690)" to="(1110,690)"/> <wire from="(140,830)" to="(310,830)"/> <wire from="(320,1340)" to="(430,1340)"/> <wire from="(140,460)" to="(180,460)"/> <wire from="(160,310)" to="(160,340)"/> <wire from="(1020,1330)" to="(1070,1330)"/> <wire from="(760,1100)" to="(780,1100)"/> <wire from="(800,1060)" to="(820,1060)"/> <wire from="(800,1380)" to="(820,1380)"/> <wire from="(1080,1390)" to="(1080,1440)"/> <wire from="(220,280)" to="(380,280)"/> <wire from="(400,250)" to="(430,250)"/> <wire from="(270,730)" to="(430,730)"/> <wire from="(820,650)" to="(820,690)"/> <wire from="(400,650)" to="(430,650)"/> <wire from="(380,1110)" to="(410,1110)"/> <wire from="(960,1030)" to="(1110,1030)"/> <wire from="(640,1460)" to="(660,1460)"/> <wire from="(830,1220)" to="(980,1220)"/> <wire from="(410,270)" to="(430,270)"/> <wire from="(410,830)" to="(430,830)"/> <wire from="(410,670)" to="(430,670)"/> <wire from="(380,1120)" to="(400,1120)"/> <wire from="(760,920)" to="(850,920)"/> <wire from="(340,960)" to="(340,1320)"/> <wire from="(160,340)" to="(180,340)"/> <wire from="(800,1050)" to="(830,1050)"/> <wire from="(420,410)" to="(420,450)"/> <wire from="(800,1370)" to="(830,1370)"/> <wire from="(140,400)" to="(160,400)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(420,530)" to="(430,530)"/> <wire from="(420,370)" to="(430,370)"/> <wire from="(380,1130)" to="(390,1130)"/> <wire from="(570,510)" to="(640,510)"/> <wire from="(590,1410)" to="(660,1410)"/> <wire from="(410,860)" to="(680,860)"/> <wire from="(140,1050)" to="(150,1050)"/> <wire from="(570,1540)" to="(650,1540)"/> <wire from="(800,1070)" to="(810,1070)"/> <wire from="(800,1390)" to="(810,1390)"/> <wire from="(840,650)" to="(1110,650)"/> <wire from="(340,890)" to="(340,960)"/> <wire from="(180,250)" to="(180,320)"/> <wire from="(610,1370)" to="(660,1370)"/> <wire from="(820,1340)" to="(820,1350)"/> <wire from="(380,1460)" to="(430,1460)"/> <wire from="(380,1540)" to="(430,1540)"/> <wire from="(1070,320)" to="(1110,320)"/> <wire from="(860,610)" to="(1110,610)"/> <wire from="(400,1080)" to="(400,1090)"/> <wire from="(760,1370)" to="(760,1590)"/> <wire from="(570,1340)" to="(610,1340)"/> <wire from="(400,1480)" to="(400,1500)"/> <wire from="(810,1100)" to="(850,1100)"/> <wire from="(810,1420)" to="(850,1420)"/> <wire from="(570,130)" to="(1000,130)"/> <wire from="(320,880)" to="(610,880)"/> <wire from="(780,690)" to="(780,770)"/> <wire from="(140,1020)" to="(430,1020)"/> <wire from="(600,1360)" to="(600,1380)"/> <wire from="(1060,1500)" to="(1110,1500)"/> <wire from="(390,1160)" to="(430,1160)"/> <wire from="(140,280)" to="(170,280)"/> <wire from="(800,1350)" to="(820,1350)"/> <wire from="(830,1060)" to="(850,1060)"/> <wire from="(830,1380)" to="(850,1380)"/> <wire from="(220,650)" to="(380,650)"/> <wire from="(400,1500)" to="(430,1500)"/> <wire from="(800,1400)" to="(800,1440)"/> <wire from="(960,1000)" to="(1110,1000)"/> <wire from="(410,1120)" to="(430,1120)"/> <wire from="(380,1090)" to="(400,1090)"/> <wire from="(570,1350)" to="(600,1350)"/> <wire from="(380,1140)" to="(380,1180)"/> <wire from="(220,1470)" to="(360,1470)"/> <wire from="(400,640)" to="(410,640)"/> <wire from="(420,1300)" to="(430,1300)"/> <wire from="(570,1280)" to="(640,1280)"/> <wire from="(570,1520)" to="(640,1520)"/> <wire from="(170,330)" to="(180,330)"/> <wire from="(1090,1320)" to="(1110,1320)"/> <wire from="(1050,1200)" to="(1050,1310)"/> <wire from="(410,260)" to="(410,270)"/> <wire from="(410,660)" to="(410,670)"/> <wire from="(610,810)" to="(610,880)"/> <wire from="(810,980)" to="(810,1010)"/> <wire from="(620,1360)" to="(660,1360)"/> <wire from="(1040,1430)" to="(1040,1560)"/> <wire from="(620,1440)" to="(660,1440)"/> <wire from="(640,300)" to="(870,300)"/> <wire from="(1020,1340)" to="(1080,1340)"/> <wire from="(1050,1530)" to="(1110,1530)"/> <wire from="(610,1340)" to="(610,1370)"/> <wire from="(590,390)" to="(590,470)"/> <wire from="(740,1460)" to="(850,1460)"/> <wire from="(1100,1350)" to="(1100,1360)"/> <wire from="(390,810)" to="(430,810)"/> <wire from="(1060,1230)" to="(1110,1230)"/> <wire from="(1020,1370)" to="(1100,1370)"/> <wire from="(340,1320)" to="(430,1320)"/> <wire from="(570,290)" to="(590,290)"/> <wire from="(840,610)" to="(840,650)"/> <wire from="(960,970)" to="(1110,970)"/> <wire from="(140,790)" to="(290,790)"/> <wire from="(1020,1380)" to="(1090,1380)"/> <wire from="(1040,1560)" to="(1110,1560)"/> <wire from="(570,570)" to="(1110,570)"/> <wire from="(630,940)" to="(850,940)"/> <wire from="(420,390)" to="(430,390)"/> <wire from="(420,550)" to="(430,550)"/> <wire from="(420,790)" to="(430,790)"/> <wire from="(170,380)" to="(180,380)"/> <wire from="(800,1010)" to="(810,1010)"/> <wire from="(1020,1300)" to="(1040,1300)"/> <wire from="(760,1100)" to="(760,1370)"/> <wire from="(830,1050)" to="(830,1060)"/> <wire from="(830,1370)" to="(830,1380)"/> <wire from="(1020,1410)" to="(1060,1410)"/> <wire from="(380,1400)" to="(430,1400)"/> <wire from="(1060,1230)" to="(1060,1320)"/> <wire from="(410,630)" to="(410,640)"/> <wire from="(410,1110)" to="(410,1120)"/> <wire from="(570,1500)" to="(630,1500)"/> <wire from="(220,650)" to="(220,1110)"/> <wire from="(270,730)" to="(270,750)"/> <wire from="(700,770)" to="(700,1500)"/> <wire from="(740,730)" to="(740,1460)"/> <wire from="(1000,330)" to="(1000,1190)"/> <wire from="(1020,1390)" to="(1080,1390)"/> <wire from="(1070,1400)" to="(1070,1470)"/> <wire from="(570,590)" to="(860,590)"/> <wire from="(320,610)" to="(430,610)"/> <wire from="(780,1080)" to="(780,1100)"/> <wire from="(390,1490)" to="(390,1520)"/> <wire from="(380,1400)" to="(380,1430)"/> <wire from="(140,1360)" to="(430,1360)"/> <wire from="(1020,1400)" to="(1070,1400)"/> <wire from="(390,1420)" to="(430,1420)"/> <wire from="(1030,1590)" to="(1110,1590)"/> <wire from="(620,1320)" to="(620,1360)"/> <wire from="(400,1440)" to="(430,1440)"/> <wire from="(570,1380)" to="(590,1380)"/> <wire from="(960,940)" to="(1110,940)"/> <wire from="(1020,1440)" to="(1030,1440)"/> <wire from="(680,860)" to="(680,1160)"/> <wire from="(980,1120)" to="(980,1160)"/> <wire from="(630,1350)" to="(660,1350)"/> <wire from="(590,870)" to="(590,1030)"/> <wire from="(890,210)" to="(1110,210)"/> <wire from="(1020,1350)" to="(1090,1350)"/> <wire from="(290,750)" to="(290,790)"/> <wire from="(890,300)" to="(1050,300)"/> <wire from="(140,310)" to="(160,310)"/> <wire from="(570,1040)" to="(660,1040)"/> <wire from="(400,660)" to="(410,660)"/> <wire from="(420,1000)" to="(430,1000)"/> <wire from="(380,1440)" to="(390,1440)"/> <wire from="(420,920)" to="(430,920)"/> <wire from="(400,260)" to="(410,260)"/> <wire from="(1020,1420)" to="(1050,1420)"/> <wire from="(140,140)" to="(220,140)"/> <wire from="(310,770)" to="(310,830)"/> <wire from="(570,610)" to="(840,610)"/> <wire from="(840,1260)" to="(850,1260)"/> <wire from="(1020,1430)" to="(1040,1430)"/> <wire from="(650,1470)" to="(660,1470)"/> <wire from="(1000,310)" to="(1050,310)"/> <wire from="(1030,1440)" to="(1030,1590)"/> <wire from="(830,1020)" to="(830,1030)"/> <wire from="(570,1480)" to="(620,1480)"/> <wire from="(570,1320)" to="(620,1320)"/> <wire from="(150,340)" to="(150,350)"/> <wire from="(600,1420)" to="(660,1420)"/> <wire from="(630,940)" to="(630,1220)"/> <wire from="(400,270)" to="(400,290)"/> <wire from="(390,1060)" to="(390,1080)"/> <wire from="(220,280)" to="(220,360)"/> <wire from="(320,980)" to="(430,980)"/> <wire from="(810,1320)" to="(810,1340)"/> <wire from="(1100,1370)" to="(1100,1380)"/> <wire from="(340,890)" to="(630,890)"/> <wire from="(800,1020)" to="(820,1020)"/> <wire from="(150,360)" to="(180,360)"/> <wire from="(140,430)" to="(170,430)"/> <wire from="(220,110)" to="(250,110)"/> <wire from="(960,1260)" to="(980,1260)"/> <wire from="(400,290)" to="(430,290)"/> <wire from="(570,390)" to="(590,390)"/> <wire from="(380,1470)" to="(410,1470)"/> <wire from="(270,690)" to="(430,690)"/> <wire from="(270,210)" to="(430,210)"/> <wire from="(570,1030)" to="(590,1030)"/> <wire from="(960,910)" to="(1110,910)"/> <wire from="(640,1340)" to="(660,1340)"/> <wire from="(410,630)" to="(430,630)"/> <wire from="(380,1480)" to="(400,1480)"/> <wire from="(320,980)" to="(320,1340)"/> <wire from="(420,170)" to="(430,170)"/> <wire from="(170,280)" to="(170,330)"/> <wire from="(420,410)" to="(430,410)"/> <wire from="(800,670)" to="(800,730)"/> <wire from="(420,570)" to="(430,570)"/> <wire from="(380,1490)" to="(390,1490)"/> <wire from="(1080,1290)" to="(1110,1290)"/> <wire from="(1020,1310)" to="(1050,1310)"/> <wire from="(140,370)" to="(150,370)"/> <wire from="(320,330)" to="(590,330)"/> <wire from="(630,1300)" to="(630,1350)"/> <wire from="(570,1260)" to="(650,1260)"/> <wire from="(1000,130)" to="(1000,310)"/> <wire from="(140,750)" to="(270,750)"/> <comp lib="0" loc="(1110,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC_EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,110)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(420,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(200,360)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(420,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(140,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(420,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(420,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp loc="(490,350)" name="DPCM_SAMPLE_BIT_COUNTER"> <a name="label" val="DPCM SAMPLE BIT COUNTER"/> </comp> <comp lib="0" loc="(420,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(680,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="15"/> <a name="incoming" val="15"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(140,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1110,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(160,170)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RUNDMC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(840,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(870,210)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> </comp> <comp lib="0" loc="(1110,1590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA14"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(140,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(1110,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(140,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(870,300)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> </comp> <comp lib="0" loc="(1110,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1240)" name="DPCM_ADDRESS_COUNTER"/> <comp lib="0" loc="(1110,1170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCRDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,140)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(140,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(1110,1200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(360,1470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(420,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(140,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp loc="(500,530)" name="DPCM_CONTROL"/> <comp lib="0" loc="(1110,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(480,900)" name="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(1110,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1050)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(380,650)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="1"/> <a name="bit7" val="2"/> </comp> <comp lib="0" loc="(140,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(1110,1380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,280)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="8"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(1110,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(140,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp loc="(920,1240)" name="DPCM_SAMPLE_SHIFT_REGISTER"/> <comp lib="0" loc="(1110,1470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DMC/AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(360,1110)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(780,1080)" name="Splitter"> <a name="fanout" val="7"/> <a name="incoming" val="8"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(420,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(1110,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1070,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="30"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="1"/> <a name="bit3" val="1"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="2"/> <a name="bit7" val="2"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="3"/> <a name="bit15" val="3"/> <a name="bit16" val="3"/> <a name="bit17" val="3"/> <a name="bit18" val="3"/> <a name="bit19" val="3"/> <a name="bit20" val="3"/> <a name="bit21" val="3"/> <a name="bit22" val="4"/> <a name="bit23" val="4"/> <a name="bit24" val="4"/> <a name="bit25" val="4"/> <a name="bit26" val="4"/> <a name="bit27" val="4"/> <a name="bit28" val="4"/> <a name="bit29" val="4"/> </comp> <comp lib="0" loc="(840,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(1000,1450)" name="Splitter"> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(140,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(840,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,110)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(420,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(840,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(780,1370)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1110,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCINT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(480,110)" name="DPCM_FREQUENCY_LFSR"/> <comp lib="0" loc="(1110,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,1000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1110,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(420,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,1320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(920,860)" name="DPCM_OUTPUT_COUNTER"/> <comp lib="6" loc="(323,94)" name="Text"> <a name="text" val="ACLK2 = NOT /ACLK2"/> </comp> <comp lib="1" loc="(270,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(420,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="30"/> <a name="label" val="DMC"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="DPCM_FREQUENCY_LFSR"> <a name="circuit" val="DPCM_FREQUENCY_LFSR"/> <a name="clabel" val="FREQUENCY LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M68,40 Q72,50 76,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffb3b2" height="202" stroke="#000000" stroke-width="2" width="140" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="224">DFLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="124">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="165">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="204">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="103">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="144">W4010</text> <circ-port height="8" pin="140,110" width="8" x="46" y="56"/> <circ-port height="8" pin="140,60" width="8" x="46" y="116"/> <circ-port height="8" pin="150,590" width="8" x="46" y="156"/> <circ-port height="8" pin="150,660" width="8" x="46" y="176"/> <circ-port height="8" pin="150,730" width="8" x="46" y="196"/> <circ-port height="8" pin="150,800" width="8" x="46" y="216"/> <circ-port height="10" pin="1010,1340" width="10" x="185" y="215"/> <circ-port height="8" pin="170,1350" width="8" x="46" y="96"/> <circ-port height="8" pin="150,910" width="8" x="46" y="136"/> <circ-port height="10" pin="330,240" width="10" x="185" y="55"/> <circ-anchor facing="east" height="6" width="6" x="97" y="37"/> </appear> <wire from="(250,680)" to="(250,750)"/> <wire from="(710,630)" to="(760,630)"/> <wire from="(800,710)" to="(800,1040)"/> <wire from="(230,780)" to="(290,780)"/> <wire from="(800,710)" to="(860,710)"/> <wire from="(230,710)" to="(280,710)"/> <wire from="(530,780)" to="(570,780)"/> <wire from="(530,300)" to="(570,300)"/> <wire from="(530,1020)" to="(570,1020)"/> <wire from="(530,540)" to="(570,540)"/> <wire from="(500,500)" to="(500,520)"/> <wire from="(500,260)" to="(500,280)"/> <wire from="(150,800)" to="(190,800)"/> <wire from="(230,640)" to="(270,640)"/> <wire from="(350,1240)" to="(390,1240)"/> <wire from="(390,720)" to="(430,720)"/> <wire from="(750,110)" to="(750,130)"/> <wire from="(230,570)" to="(260,570)"/> <wire from="(970,680)" to="(990,680)"/> <wire from="(730,60)" to="(1010,60)"/> <wire from="(630,900)" to="(650,900)"/> <wire from="(630,660)" to="(650,660)"/> <wire from="(630,180)" to="(650,180)"/> <wire from="(630,420)" to="(650,420)"/> <wire from="(690,320)" to="(710,320)"/> <wire from="(690,800)" to="(710,800)"/> <wire from="(630,1140)" to="(650,1140)"/> <wire from="(690,1040)" to="(710,1040)"/> <wire from="(690,560)" to="(710,560)"/> <wire from="(280,710)" to="(300,710)"/> <wire from="(990,110)" to="(990,660)"/> <wire from="(1010,60)" to="(1010,800)"/> <wire from="(280,350)" to="(280,710)"/> <wire from="(710,1040)" to="(800,1040)"/> <wire from="(840,120)" to="(840,180)"/> <wire from="(630,660)" to="(630,780)"/> <wire from="(630,900)" to="(630,1020)"/> <wire from="(630,420)" to="(630,540)"/> <wire from="(630,180)" to="(630,300)"/> <wire from="(170,110)" to="(630,110)"/> <wire from="(550,1110)" to="(550,1160)"/> <wire from="(550,870)" to="(550,920)"/> <wire from="(550,630)" to="(550,680)"/> <wire from="(550,390)" to="(550,440)"/> <wire from="(370,1280)" to="(440,1280)"/> <wire from="(810,110)" to="(990,110)"/> <wire from="(440,800)" to="(500,800)"/> <wire from="(170,570)" to="(170,640)"/> <wire from="(210,740)" to="(210,750)"/> <wire from="(320,240)" to="(320,320)"/> <wire from="(710,270)" to="(820,270)"/> <wire from="(420,400)" to="(420,620)"/> <wire from="(210,750)" to="(250,750)"/> <wire from="(600,810)" to="(600,830)"/> <wire from="(600,570)" to="(600,590)"/> <wire from="(600,330)" to="(600,350)"/> <wire from="(600,1050)" to="(600,1070)"/> <wire from="(290,360)" to="(290,780)"/> <wire from="(840,680)" to="(860,680)"/> <wire from="(390,620)" to="(420,620)"/> <wire from="(270,340)" to="(300,340)"/> <wire from="(320,1350)" to="(350,1350)"/> <wire from="(750,110)" to="(770,110)"/> <wire from="(550,270)" to="(710,270)"/> <wire from="(550,990)" to="(710,990)"/> <wire from="(550,750)" to="(710,750)"/> <wire from="(550,510)" to="(710,510)"/> <wire from="(720,150)" to="(750,150)"/> <wire from="(370,1330)" to="(390,1330)"/> <wire from="(170,570)" to="(190,570)"/> <wire from="(290,780)" to="(300,780)"/> <wire from="(550,140)" to="(680,140)"/> <wire from="(440,520)" to="(440,640)"/> <wire from="(710,440)" to="(710,510)"/> <wire from="(710,200)" to="(710,270)"/> <wire from="(710,920)" to="(710,990)"/> <wire from="(710,680)" to="(710,750)"/> <wire from="(860,160)" to="(960,160)"/> <wire from="(610,560)" to="(650,560)"/> <wire from="(610,320)" to="(650,320)"/> <wire from="(610,800)" to="(650,800)"/> <wire from="(610,1040)" to="(650,1040)"/> <wire from="(500,680)" to="(500,700)"/> <wire from="(170,110)" to="(170,130)"/> <wire from="(150,660)" to="(190,660)"/> <wire from="(730,60)" to="(730,140)"/> <wire from="(430,1250)" to="(530,1250)"/> <wire from="(500,920)" to="(500,940)"/> <wire from="(500,1160)" to="(500,1180)"/> <wire from="(460,1340)" to="(1010,1340)"/> <wire from="(410,1160)" to="(500,1160)"/> <wire from="(410,280)" to="(500,280)"/> <wire from="(820,270)" to="(820,630)"/> <wire from="(550,1160)" to="(570,1160)"/> <wire from="(550,200)" to="(570,200)"/> <wire from="(550,440)" to="(570,440)"/> <wire from="(550,680)" to="(570,680)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(530,1140)" to="(530,1250)"/> <wire from="(390,600)" to="(410,600)"/> <wire from="(390,760)" to="(410,760)"/> <wire from="(170,780)" to="(190,780)"/> <wire from="(530,180)" to="(530,300)"/> <wire from="(530,660)" to="(530,780)"/> <wire from="(530,900)" to="(530,1020)"/> <wire from="(530,420)" to="(530,540)"/> <wire from="(710,920)" to="(780,920)"/> <wire from="(720,140)" to="(730,140)"/> <wire from="(780,510)" to="(780,650)"/> <wire from="(810,160)" to="(860,160)"/> <wire from="(250,750)" to="(250,820)"/> <wire from="(390,700)" to="(440,700)"/> <wire from="(210,600)" to="(210,610)"/> <wire from="(780,700)" to="(780,920)"/> <wire from="(440,1280)" to="(1000,1280)"/> <wire from="(210,610)" to="(250,610)"/> <wire from="(580,330)" to="(580,370)"/> <wire from="(510,350)" to="(600,350)"/> <wire from="(580,1050)" to="(580,1090)"/> <wire from="(580,810)" to="(580,850)"/> <wire from="(580,570)" to="(580,610)"/> <wire from="(440,700)" to="(440,800)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(460,480)" to="(480,480)"/> <wire from="(460,1200)" to="(480,1200)"/> <wire from="(460,960)" to="(480,960)"/> <wire from="(460,720)" to="(480,720)"/> <wire from="(710,390)" to="(800,390)"/> <wire from="(510,830)" to="(600,830)"/> <wire from="(510,590)" to="(600,590)"/> <wire from="(510,1070)" to="(600,1070)"/> <wire from="(810,180)" to="(840,180)"/> <wire from="(510,850)" to="(580,850)"/> <wire from="(510,610)" to="(580,610)"/> <wire from="(510,1090)" to="(580,1090)"/> <wire from="(990,740)" to="(990,800)"/> <wire from="(550,140)" to="(550,200)"/> <wire from="(510,370)" to="(580,370)"/> <wire from="(460,480)" to="(460,600)"/> <wire from="(460,240)" to="(460,360)"/> <wire from="(460,720)" to="(460,840)"/> <wire from="(460,960)" to="(460,1080)"/> <wire from="(170,640)" to="(170,710)"/> <wire from="(410,280)" to="(410,600)"/> <wire from="(210,810)" to="(210,820)"/> <wire from="(460,1200)" to="(460,1340)"/> <wire from="(430,720)" to="(430,920)"/> <wire from="(530,180)" to="(570,180)"/> <wire from="(530,900)" to="(570,900)"/> <wire from="(530,660)" to="(570,660)"/> <wire from="(530,420)" to="(570,420)"/> <wire from="(530,1140)" to="(570,1140)"/> <wire from="(500,380)" to="(500,400)"/> <wire from="(820,630)" to="(860,630)"/> <wire from="(390,660)" to="(500,660)"/> <wire from="(440,1280)" to="(440,1310)"/> <wire from="(210,820)" to="(250,820)"/> <wire from="(150,910)" to="(250,910)"/> <wire from="(750,150)" to="(750,170)"/> <wire from="(920,670)" to="(940,670)"/> <wire from="(370,1310)" to="(400,1310)"/> <wire from="(630,780)" to="(650,780)"/> <wire from="(630,540)" to="(650,540)"/> <wire from="(630,300)" to="(650,300)"/> <wire from="(690,920)" to="(710,920)"/> <wire from="(690,440)" to="(710,440)"/> <wire from="(690,200)" to="(710,200)"/> <wire from="(690,680)" to="(710,680)"/> <wire from="(630,1020)" to="(650,1020)"/> <wire from="(170,150)" to="(170,570)"/> <wire from="(280,350)" to="(300,350)"/> <wire from="(750,170)" to="(780,170)"/> <wire from="(420,740)" to="(420,1040)"/> <wire from="(170,640)" to="(190,640)"/> <wire from="(500,620)" to="(500,660)"/> <wire from="(960,650)" to="(960,1160)"/> <wire from="(630,780)" to="(630,900)"/> <wire from="(630,300)" to="(630,420)"/> <wire from="(630,540)" to="(630,660)"/> <wire from="(860,100)" to="(860,160)"/> <wire from="(630,1020)" to="(630,1140)"/> <wire from="(320,240)" to="(330,240)"/> <wire from="(420,1040)" to="(500,1040)"/> <wire from="(420,400)" to="(500,400)"/> <wire from="(550,990)" to="(550,1040)"/> <wire from="(550,750)" to="(550,800)"/> <wire from="(550,510)" to="(550,560)"/> <wire from="(550,270)" to="(550,320)"/> <wire from="(170,1350)" to="(300,1350)"/> <wire from="(440,520)" to="(500,520)"/> <wire from="(810,100)" to="(860,100)"/> <wire from="(250,610)" to="(250,680)"/> <wire from="(710,800)" to="(760,800)"/> <wire from="(390,640)" to="(440,640)"/> <wire from="(800,640)" to="(860,640)"/> <wire from="(630,110)" to="(630,180)"/> <wire from="(370,1260)" to="(370,1280)"/> <wire from="(410,760)" to="(410,1160)"/> <wire from="(760,690)" to="(860,690)"/> <wire from="(150,730)" to="(190,730)"/> <wire from="(600,210)" to="(600,230)"/> <wire from="(600,930)" to="(600,950)"/> <wire from="(600,690)" to="(600,710)"/> <wire from="(600,450)" to="(600,470)"/> <wire from="(600,1170)" to="(600,1190)"/> <wire from="(390,740)" to="(420,740)"/> <wire from="(430,1340)" to="(460,1340)"/> <wire from="(990,680)" to="(990,720)"/> <wire from="(550,390)" to="(710,390)"/> <wire from="(550,1110)" to="(710,1110)"/> <wire from="(550,870)" to="(710,870)"/> <wire from="(550,630)" to="(710,630)"/> <wire from="(810,120)" to="(840,120)"/> <wire from="(140,60)" to="(730,60)"/> <wire from="(710,510)" to="(780,510)"/> <wire from="(840,180)" to="(840,680)"/> <wire from="(690,1160)" to="(960,1160)"/> <wire from="(780,650)" to="(860,650)"/> <wire from="(210,670)" to="(210,680)"/> <wire from="(710,320)" to="(710,390)"/> <wire from="(710,1040)" to="(710,1110)"/> <wire from="(710,800)" to="(710,870)"/> <wire from="(710,560)" to="(710,630)"/> <wire from="(610,440)" to="(650,440)"/> <wire from="(610,200)" to="(650,200)"/> <wire from="(610,680)" to="(650,680)"/> <wire from="(610,920)" to="(650,920)"/> <wire from="(610,1160)" to="(650,1160)"/> <wire from="(370,1310)" to="(370,1330)"/> <wire from="(500,800)" to="(500,820)"/> <wire from="(390,680)" to="(500,680)"/> <wire from="(760,660)" to="(860,660)"/> <wire from="(210,680)" to="(250,680)"/> <wire from="(500,1040)" to="(500,1060)"/> <wire from="(260,330)" to="(300,330)"/> <wire from="(260,570)" to="(300,570)"/> <wire from="(250,820)" to="(250,910)"/> <wire from="(970,660)" to="(990,660)"/> <wire from="(550,800)" to="(570,800)"/> <wire from="(550,1040)" to="(570,1040)"/> <wire from="(550,560)" to="(570,560)"/> <wire from="(550,320)" to="(570,320)"/> <wire from="(760,690)" to="(760,800)"/> <wire from="(370,1260)" to="(390,1260)"/> <wire from="(420,1310)" to="(440,1310)"/> <wire from="(350,1240)" to="(350,1350)"/> <wire from="(530,300)" to="(530,420)"/> <wire from="(530,780)" to="(530,900)"/> <wire from="(530,1020)" to="(530,1140)"/> <wire from="(530,540)" to="(530,660)"/> <wire from="(260,330)" to="(260,570)"/> <wire from="(800,390)" to="(800,640)"/> <wire from="(1000,840)" to="(1000,1280)"/> <wire from="(780,700)" to="(860,700)"/> <wire from="(430,920)" to="(500,920)"/> <wire from="(170,710)" to="(170,780)"/> <wire from="(760,630)" to="(760,660)"/> <wire from="(150,590)" to="(190,590)"/> <wire from="(350,1350)" to="(390,1350)"/> <wire from="(580,210)" to="(580,250)"/> <wire from="(580,450)" to="(580,490)"/> <wire from="(140,110)" to="(170,110)"/> <wire from="(510,470)" to="(600,470)"/> <wire from="(510,230)" to="(600,230)"/> <wire from="(580,930)" to="(580,970)"/> <wire from="(580,1170)" to="(580,1210)"/> <wire from="(580,690)" to="(580,730)"/> <wire from="(960,160)" to="(960,650)"/> <wire from="(270,640)" to="(300,640)"/> <wire from="(720,130)" to="(750,130)"/> <wire from="(270,340)" to="(270,640)"/> <wire from="(460,360)" to="(480,360)"/> <wire from="(460,840)" to="(480,840)"/> <wire from="(460,600)" to="(480,600)"/> <wire from="(460,1080)" to="(480,1080)"/> <wire from="(510,710)" to="(600,710)"/> <wire from="(510,1190)" to="(600,1190)"/> <wire from="(510,950)" to="(600,950)"/> <wire from="(170,710)" to="(190,710)"/> <wire from="(290,360)" to="(300,360)"/> <wire from="(510,730)" to="(580,730)"/> <wire from="(510,1210)" to="(580,1210)"/> <wire from="(510,970)" to="(580,970)"/> <wire from="(710,680)" to="(840,680)"/> <wire from="(510,250)" to="(580,250)"/> <wire from="(510,490)" to="(580,490)"/> <wire from="(460,360)" to="(460,480)"/> <wire from="(460,840)" to="(460,960)"/> <wire from="(460,600)" to="(460,720)"/> <wire from="(460,1080)" to="(460,1200)"/> <comp lib="2" loc="(480,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(480,1080)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(480,720)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(721,674)" name="Text"> <a name="text" val="S4"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(150,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(610,900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1010,1340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DFLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(480,960)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(330,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="4"/> <a name="label" val="DMC_F"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1000,840)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="2" loc="(480,240)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(150,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(920,670)" name="NOR Gate"> <a name="inputs" val="8"/> </comp> <comp lib="4" loc="(610,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(610,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(230,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,1340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(408,1302)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="4" loc="(610,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(690,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(990,740)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="2" loc="(480,360)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(480,1200)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(230,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(680,140)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(770,110)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(320,1350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(610,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(780,170)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(610,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,1310)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(498,1244)" name="Text"> <a name="text" val="DFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(150,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="4" loc="(610,180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(976,731)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="6" loc="(307,1333)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(170,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="4" loc="(690,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(480,600)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(170,150)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(320,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="2" loc="(940,670)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(690,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(610,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(230,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="6" loc="(721,1156)" name="Text"> <a name="text" val="S0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(480,480)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(690,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(610,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,1250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp loc="(350,580)" name="DPCM_TABLE"/> <comp lib="0" loc="(150,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(230,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DPCM_TABLE"> <a name="circuit" val="DPCM_TABLE"/> <a name="clabel" val="DPCM TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M71,51 Q75,61 79,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffb225" height="252" stroke="#000000" stroke-width="2" width="90" x="50" y="20"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="45">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="114">F1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">F2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="254">F3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="234">FR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="214">FR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="194">FR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="174">FR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="154">FR4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="134">FR5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="114">FR6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="94">FR7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="74">FR8</text> <circ-port height="10" pin="260,20" width="10" x="135" y="225"/> <circ-port height="10" pin="260,50" width="10" x="135" y="205"/> <circ-port height="10" pin="260,80" width="10" x="135" y="185"/> <circ-port height="10" pin="260,110" width="10" x="135" y="165"/> <circ-port height="10" pin="260,140" width="10" x="135" y="145"/> <circ-port height="10" pin="260,170" width="10" x="135" y="125"/> <circ-port height="10" pin="260,200" width="10" x="135" y="105"/> <circ-port height="10" pin="260,230" width="10" x="135" y="85"/> <circ-port height="10" pin="260,260" width="10" x="135" y="65"/> <circ-port height="8" pin="60,350" width="8" x="46" y="246"/> <circ-port height="8" pin="60,320" width="8" x="46" y="176"/> <circ-port height="8" pin="60,290" width="8" x="46" y="106"/> <circ-port height="8" pin="60,260" width="8" x="46" y="36"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(450,200)" to="(510,200)"/> <wire from="(450,120)" to="(510,120)"/> <wire from="(450,140)" to="(510,140)"/> <wire from="(450,220)" to="(510,220)"/> <wire from="(450,80)" to="(510,80)"/> <wire from="(450,160)" to="(510,160)"/> <wire from="(450,100)" to="(510,100)"/> <wire from="(450,180)" to="(510,180)"/> <wire from="(60,90)" to="(120,90)"/> <wire from="(60,70)" to="(120,70)"/> <wire from="(60,110)" to="(120,110)"/> <wire from="(60,170)" to="(120,170)"/> <wire from="(60,150)" to="(120,150)"/> <wire from="(60,130)" to="(120,130)"/> <wire from="(60,190)" to="(120,190)"/> <wire from="(60,210)" to="(120,210)"/> <wire from="(670,180)" to="(730,180)"/> <wire from="(670,100)" to="(730,100)"/> <wire from="(670,200)" to="(730,200)"/> <wire from="(670,120)" to="(730,120)"/> <wire from="(670,140)" to="(730,140)"/> <wire from="(670,220)" to="(730,220)"/> <wire from="(670,80)" to="(730,80)"/> <wire from="(670,160)" to="(730,160)"/> <wire from="(210,20)" to="(210,100)"/> <wire from="(210,180)" to="(210,260)"/> <wire from="(380,20)" to="(550,20)"/> <wire from="(380,260)" to="(550,260)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(200,150)" to="(240,150)"/> <wire from="(220,50)" to="(260,50)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(600,260)" to="(770,260)"/> <wire from="(600,20)" to="(770,20)"/> <wire from="(200,160)" to="(230,160)"/> <wire from="(200,120)" to="(230,120)"/> <wire from="(60,260)" to="(90,260)"/> <wire from="(60,290)" to="(80,290)"/> <wire from="(200,170)" to="(220,170)"/> <wire from="(200,110)" to="(220,110)"/> <wire from="(240,110)" to="(260,110)"/> <wire from="(240,170)" to="(260,170)"/> <wire from="(200,180)" to="(210,180)"/> <wire from="(200,100)" to="(210,100)"/> <wire from="(80,300)" to="(90,300)"/> <wire from="(550,20)" to="(550,260)"/> <wire from="(770,20)" to="(770,260)"/> <wire from="(140,220)" to="(140,280)"/> <wire from="(200,140)" to="(260,140)"/> <wire from="(80,310)" to="(80,320)"/> <wire from="(80,290)" to="(80,300)"/> <wire from="(210,20)" to="(260,20)"/> <wire from="(210,260)" to="(260,260)"/> <wire from="(240,110)" to="(240,130)"/> <wire from="(240,150)" to="(240,170)"/> <wire from="(90,320)" to="(90,350)"/> <wire from="(90,260)" to="(90,290)"/> <wire from="(230,80)" to="(260,80)"/> <wire from="(230,200)" to="(260,200)"/> <wire from="(110,280)" to="(140,280)"/> <wire from="(60,350)" to="(90,350)"/> <wire from="(710,210)" to="(730,210)"/> <wire from="(710,130)" to="(730,130)"/> <wire from="(710,70)" to="(730,70)"/> <wire from="(710,150)" to="(730,150)"/> <wire from="(710,90)" to="(730,90)"/> <wire from="(710,170)" to="(730,170)"/> <wire from="(710,110)" to="(730,110)"/> <wire from="(710,190)" to="(730,190)"/> <wire from="(490,90)" to="(510,90)"/> <wire from="(230,80)" to="(230,120)"/> <wire from="(230,160)" to="(230,200)"/> <wire from="(490,150)" to="(510,150)"/> <wire from="(490,70)" to="(510,70)"/> <wire from="(490,170)" to="(510,170)"/> <wire from="(490,110)" to="(510,110)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(100,140)" to="(120,140)"/> <wire from="(100,200)" to="(120,200)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(100,100)" to="(120,100)"/> <wire from="(100,60)" to="(120,60)"/> <wire from="(60,320)" to="(80,320)"/> <wire from="(100,160)" to="(120,160)"/> <wire from="(100,180)" to="(120,180)"/> <wire from="(160,140)" to="(180,140)"/> <wire from="(380,20)" to="(380,260)"/> <wire from="(80,310)" to="(90,310)"/> <wire from="(600,20)" to="(600,260)"/> <wire from="(220,50)" to="(220,110)"/> <wire from="(220,170)" to="(220,230)"/> <comp lib="0" loc="(60,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d1"/> </comp> <comp lib="0" loc="(450,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x3f"/> </comp> <comp lib="0" loc="(110,280)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(670,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1bc"/> </comp> <comp lib="0" loc="(60,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x3f"/> </comp> <comp lib="0" loc="(100,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1ee"/> </comp> <comp lib="0" loc="(670,220)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d5"/> </comp> <comp lib="0" loc="(490,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18e"/> </comp> <comp lib="0" loc="(450,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdc"/> </comp> <comp lib="0" loc="(260,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdb"/> </comp> <comp lib="0" loc="(60,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdc"/> </comp> <comp lib="2" loc="(160,140)" name="Multiplexer"> <a name="select" val="4"/> <a name="width" val="9"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(710,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xa8"/> </comp> <comp lib="0" loc="(670,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x71"/> </comp> <comp lib="0" loc="(450,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x189"/> </comp> <comp lib="0" loc="(60,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F3"/> </comp> <comp lib="0" loc="(490,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x143"/> </comp> <comp lib="0" loc="(260,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(680,50)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="0" loc="(100,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(60,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdb"/> </comp> <comp lib="0" loc="(180,140)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,60)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(450,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8a"/> </comp> <comp lib="0" loc="(260,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x143"/> </comp> <comp lib="0" loc="(490,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x7d"/> </comp> <comp lib="0" loc="(60,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8a"/> </comp> <comp lib="0" loc="(670,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1cc"/> </comp> <comp lib="0" loc="(450,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d1"/> </comp> <comp lib="0" loc="(710,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xa4"/> </comp> <comp lib="0" loc="(670,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x167"/> </comp> <comp lib="0" loc="(710,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x10f"/> </comp> <comp lib="0" loc="(490,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(710,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x74"/> </comp> <comp lib="0" loc="(490,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(670,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x185"/> </comp> <comp lib="0" loc="(60,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F2"/> </comp> <comp lib="0" loc="(260,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x156"/> </comp> <comp lib="0" loc="(100,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8d"/> </comp> <comp lib="0" loc="(260,20)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F0"/> </comp> <comp lib="0" loc="(670,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18b"/> </comp> <comp lib="0" loc="(60,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x189"/> </comp> <comp lib="6" loc="(458,49)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(260,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf9"/> </comp> <comp lib="0" loc="(260,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,220)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x156"/> </comp> <comp lib="0" loc="(670,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x99"/> </comp> <comp lib="0" loc="(710,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1e7"/> </comp> <comp lib="0" loc="(490,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8d"/> </comp> <comp lib="0" loc="(710,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x161"/> </comp> <comp lib="6" loc="(68,39)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(100,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf1"/> </comp> <comp lib="0" loc="(60,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F1"/> </comp> <comp lib="0" loc="(260,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf1"/> </comp> <comp lib="0" loc="(100,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x7d"/> </comp> <comp lib="0" loc="(490,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1ee"/> </comp> <comp lib="0" loc="(100,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18e"/> </comp> <comp lib="0" loc="(710,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x136"/> </comp> <comp lib="0" loc="(450,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf9"/> </comp> <comp lib="0" loc="(710,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d7"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_BIT_COUNTER"> <a name="circuit" val="DPCM_SAMPLE_BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M62,42 Q66,52 70,42" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#9765ff" height="81" stroke="#000000" stroke-width="2" width="140" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="163" y="84">#NOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="84">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">NSTEP</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,480" width="8" x="46" y="76"/> <circ-port height="8" pin="90,90" width="8" x="46" y="96"/> <circ-port height="10" pin="500,470" width="10" x="185" y="75"/> <circ-anchor facing="east" height="6" width="6" x="107" y="37"/> </appear> <wire from="(200,110)" to="(200,180)"/> <wire from="(220,90)" to="(220,160)"/> <wire from="(220,390)" to="(220,460)"/> <wire from="(200,410)" to="(200,480)"/> <wire from="(200,110)" to="(260,110)"/> <wire from="(200,330)" to="(260,330)"/> <wire from="(200,410)" to="(260,410)"/> <wire from="(300,400)" to="(350,400)"/> <wire from="(300,100)" to="(350,100)"/> <wire from="(90,30)" to="(330,30)"/> <wire from="(330,230)" to="(330,380)"/> <wire from="(170,270)" to="(170,420)"/> <wire from="(110,90)" to="(110,240)"/> <wire from="(220,90)" to="(260,90)"/> <wire from="(220,390)" to="(260,390)"/> <wire from="(130,110)" to="(130,140)"/> <wire from="(130,410)" to="(130,440)"/> <wire from="(220,360)" to="(220,390)"/> <wire from="(110,90)" to="(140,90)"/> <wire from="(110,390)" to="(140,390)"/> <wire from="(220,210)" to="(310,210)"/> <wire from="(330,380)" to="(350,380)"/> <wire from="(330,80)" to="(350,80)"/> <wire from="(420,450)" to="(440,450)"/> <wire from="(480,470)" to="(500,470)"/> <wire from="(310,170)" to="(310,210)"/> <wire from="(180,110)" to="(200,110)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(400,100)" to="(400,140)"/> <wire from="(400,400)" to="(400,440)"/> <wire from="(300,470)" to="(440,470)"/> <wire from="(390,250)" to="(400,250)"/> <wire from="(130,290)" to="(400,290)"/> <wire from="(300,320)" to="(310,320)"/> <wire from="(130,110)" to="(140,110)"/> <wire from="(130,410)" to="(140,410)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(250,310)" to="(260,310)"/> <wire from="(220,460)" to="(230,460)"/> <wire from="(330,30)" to="(330,80)"/> <wire from="(200,260)" to="(200,330)"/> <wire from="(220,240)" to="(220,310)"/> <wire from="(200,180)" to="(260,180)"/> <wire from="(200,260)" to="(260,260)"/> <wire from="(200,480)" to="(260,480)"/> <wire from="(300,250)" to="(350,250)"/> <wire from="(330,80)" to="(330,230)"/> <wire from="(170,120)" to="(170,270)"/> <wire from="(220,70)" to="(220,90)"/> <wire from="(110,240)" to="(110,390)"/> <wire from="(220,240)" to="(260,240)"/> <wire from="(130,260)" to="(130,290)"/> <wire from="(220,210)" to="(220,240)"/> <wire from="(420,30)" to="(420,450)"/> <wire from="(110,240)" to="(140,240)"/> <wire from="(330,30)" to="(420,30)"/> <wire from="(220,360)" to="(310,360)"/> <wire from="(330,230)" to="(350,230)"/> <wire from="(310,320)" to="(310,360)"/> <wire from="(90,90)" to="(110,90)"/> <wire from="(180,260)" to="(200,260)"/> <wire from="(400,250)" to="(400,290)"/> <wire from="(390,400)" to="(400,400)"/> <wire from="(130,140)" to="(400,140)"/> <wire from="(130,440)" to="(400,440)"/> <wire from="(90,480)" to="(170,480)"/> <wire from="(300,170)" to="(310,170)"/> <wire from="(250,460)" to="(260,460)"/> <wire from="(390,100)" to="(400,100)"/> <wire from="(130,260)" to="(140,260)"/> <wire from="(170,420)" to="(180,420)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(170,420)" to="(170,480)"/> <comp lib="4" loc="(180,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(250,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(390,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(390,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(250,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NSTEP"/> </comp> <comp lib="1" loc="(300,400)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,100)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(500,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#NOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(180,90)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,70)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(390,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(480,460)" name="D-latch"/> <comp lib="1" loc="(300,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="DPCM_CONTROL"> <a name="circuit" val="DPCM_CONTROL"/> <a name="clabel" val="DPCM CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M82,141 Q86,151 90,141" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6f90ff" height="360" stroke="#000000" stroke-width="2" width="140" x="60" y="100"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="124">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="144">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="184">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="245">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="324">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="344">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="405">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="265">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="424">SOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="384">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="224">DFLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="444">DOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="204">#NOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="184">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="224">DMCINT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="204">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="168" y="424">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="168" y="404">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="264">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="303">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="164">NSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="324">DSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="179" y="385">PCM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="364">BLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="344">BSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="284">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="364">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="164">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="305">W4010</text> <circ-port height="8" pin="180,130" width="8" x="56" y="116"/> <circ-port height="8" pin="180,160" width="8" x="56" y="136"/> <circ-port height="8" pin="180,100" width="8" x="56" y="176"/> <circ-port height="8" pin="180,430" width="8" x="56" y="236"/> <circ-port height="8" pin="180,260" width="8" x="56" y="316"/> <circ-port height="8" pin="180,70" width="8" x="56" y="336"/> <circ-port height="8" pin="180,530" width="8" x="56" y="276"/> <circ-port height="8" pin="180,220" width="8" x="56" y="396"/> <circ-port height="8" pin="180,310" width="8" x="56" y="256"/> <circ-port height="8" pin="180,590" width="8" x="56" y="416"/> <circ-port height="8" pin="180,1170" width="8" x="56" y="376"/> <circ-port height="8" pin="180,710" width="8" x="56" y="216"/> <circ-port height="8" pin="180,1670" width="8" x="56" y="436"/> <circ-port height="8" pin="180,2040" width="8" x="56" y="196"/> <circ-port height="10" pin="1230,430" width="10" x="195" y="175"/> <circ-port height="10" pin="1230,230" width="10" x="195" y="215"/> <circ-port height="10" pin="1230,130" width="10" x="195" y="195"/> <circ-port height="10" pin="1230,760" width="10" x="195" y="415"/> <circ-port height="10" pin="1230,850" width="10" x="195" y="395"/> <circ-port height="10" pin="1230,1140" width="10" x="195" y="255"/> <circ-port height="10" pin="1230,1210" width="10" x="195" y="275"/> <circ-port height="10" pin="1230,1310" width="10" x="195" y="295"/> <circ-port height="10" pin="1230,710" width="10" x="195" y="155"/> <circ-port height="10" pin="1230,1690" width="10" x="195" y="315"/> <circ-port height="10" pin="1230,1640" width="10" x="195" y="375"/> <circ-port height="10" pin="1230,1850" width="10" x="195" y="355"/> <circ-port height="10" pin="1230,2030" width="10" x="195" y="335"/> <circ-port height="8" pin="180,1790" width="8" x="56" y="356"/> <circ-port height="8" pin="180,190" width="8" x="56" y="156"/> <circ-port height="8" pin="180,560" width="8" x="56" y="296"/> <circ-port height="10" pin="1230,290" width="10" x="195" y="115"/> <circ-anchor facing="east" height="6" width="6" x="127" y="137"/> </appear> <wire from="(410,530)" to="(600,530)"/> <wire from="(250,160)" to="(310,160)"/> <wire from="(1060,1310)" to="(1100,1310)"/> <wire from="(1070,840)" to="(1110,840)"/> <wire from="(1130,1210)" to="(1230,1210)"/> <wire from="(870,1310)" to="(1060,1310)"/> <wire from="(760,1730)" to="(1180,1730)"/> <wire from="(760,1730)" to="(760,1950)"/> <wire from="(820,1140)" to="(820,1170)"/> <wire from="(840,200)" to="(840,230)"/> <wire from="(260,1650)" to="(260,1730)"/> <wire from="(760,110)" to="(760,460)"/> <wire from="(840,150)" to="(860,150)"/> <wire from="(840,230)" to="(860,230)"/> <wire from="(570,920)" to="(590,920)"/> <wire from="(260,1730)" to="(280,1730)"/> <wire from="(260,1650)" to="(280,1650)"/> <wire from="(280,1190)" to="(300,1190)"/> <wire from="(320,750)" to="(340,750)"/> <wire from="(800,1940)" to="(830,1940)"/> <wire from="(1150,850)" to="(1180,850)"/> <wire from="(180,220)" to="(190,220)"/> <wire from="(570,760)" to="(1020,760)"/> <wire from="(440,410)" to="(440,920)"/> <wire from="(970,1810)" to="(980,1810)"/> <wire from="(1160,1510)" to="(1180,1510)"/> <wire from="(100,1400)" to="(1320,1400)"/> <wire from="(100,680)" to="(1320,680)"/> <wire from="(580,860)" to="(590,860)"/> <wire from="(600,730)" to="(930,730)"/> <wire from="(180,430)" to="(370,430)"/> <wire from="(1050,130)" to="(1160,130)"/> <wire from="(350,1680)" to="(400,1680)"/> <wire from="(1190,130)" to="(1230,130)"/> <wire from="(1060,1220)" to="(1060,1310)"/> <wire from="(1090,770)" to="(1090,860)"/> <wire from="(180,1170)" to="(300,1170)"/> <wire from="(1100,1470)" to="(1100,1500)"/> <wire from="(820,240)" to="(860,240)"/> <wire from="(390,440)" to="(390,470)"/> <wire from="(820,1270)" to="(820,1290)"/> <wire from="(860,1550)" to="(860,1570)"/> <wire from="(410,510)" to="(640,510)"/> <wire from="(340,1600)" to="(380,1600)"/> <wire from="(670,480)" to="(670,500)"/> <wire from="(180,1670)" to="(280,1670)"/> <wire from="(810,1130)" to="(830,1130)"/> <wire from="(810,1930)" to="(830,1930)"/> <wire from="(600,600)" to="(620,600)"/> <wire from="(1110,1120)" to="(1120,1120)"/> <wire from="(810,1640)" to="(810,1810)"/> <wire from="(890,1830)" to="(980,1830)"/> <wire from="(290,130)" to="(310,130)"/> <wire from="(1020,760)" to="(1110,760)"/> <wire from="(930,730)" to="(1090,730)"/> <wire from="(1200,710)" to="(1230,710)"/> <wire from="(360,290)" to="(370,290)"/> <wire from="(1040,1120)" to="(1040,1220)"/> <wire from="(180,190)" to="(190,190)"/> <wire from="(1320,370)" to="(1320,660)"/> <wire from="(730,1100)" to="(730,1160)"/> <wire from="(260,330)" to="(390,330)"/> <wire from="(820,1310)" to="(830,1310)"/> <wire from="(850,1980)" to="(860,1980)"/> <wire from="(1090,770)" to="(1110,770)"/> <wire from="(660,830)" to="(670,830)"/> <wire from="(440,920)" to="(510,920)"/> <wire from="(1100,1500)" to="(1120,1500)"/> <wire from="(750,1080)" to="(760,1080)"/> <wire from="(730,920)" to="(730,1100)"/> <wire from="(810,1880)" to="(1180,1880)"/> <wire from="(1100,1760)" to="(1100,1780)"/> <wire from="(1120,1310)" to="(1160,1310)"/> <wire from="(600,600)" to="(600,730)"/> <wire from="(1020,1520)" to="(1120,1520)"/> <wire from="(810,1640)" to="(1230,1640)"/> <wire from="(1080,280)" to="(1080,410)"/> <wire from="(380,1710)" to="(380,1790)"/> <wire from="(1110,230)" to="(1230,230)"/> <wire from="(290,470)" to="(390,470)"/> <wire from="(350,1650)" to="(350,1680)"/> <wire from="(800,1170)" to="(820,1170)"/> <wire from="(920,250)" to="(940,250)"/> <wire from="(840,290)" to="(1050,290)"/> <wire from="(920,1450)" to="(940,1450)"/> <wire from="(1020,830)" to="(1040,830)"/> <wire from="(1170,70)" to="(1170,120)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(1060,1860)" to="(1060,2040)"/> <wire from="(710,920)" to="(730,920)"/> <wire from="(500,830)" to="(660,830)"/> <wire from="(260,1750)" to="(280,1750)"/> <wire from="(240,1650)" to="(260,1650)"/> <wire from="(380,1710)" to="(400,1710)"/> <wire from="(870,1140)" to="(960,1140)"/> <wire from="(1060,1800)" to="(1060,1860)"/> <wire from="(960,1140)" to="(960,1200)"/> <wire from="(570,570)" to="(570,760)"/> <wire from="(180,710)" to="(250,710)"/> <wire from="(820,1120)" to="(830,1120)"/> <wire from="(1050,220)" to="(1070,220)"/> <wire from="(890,1950)" to="(890,2000)"/> <wire from="(750,1050)" to="(760,1050)"/> <wire from="(1160,1850)" to="(1180,1850)"/> <wire from="(100,1420)" to="(1320,1420)"/> <wire from="(640,520)" to="(1100,520)"/> <wire from="(380,1600)" to="(380,1670)"/> <wire from="(180,530)" to="(370,530)"/> <wire from="(730,1220)" to="(1040,1220)"/> <wire from="(1040,1830)" to="(1040,1850)"/> <wire from="(350,1700)" to="(400,1700)"/> <wire from="(1100,300)" to="(1100,520)"/> <wire from="(790,860)" to="(790,890)"/> <wire from="(390,540)" to="(390,560)"/> <wire from="(760,110)" to="(860,110)"/> <wire from="(840,270)" to="(840,290)"/> <wire from="(350,1700)" to="(350,1730)"/> <wire from="(1320,20)" to="(1320,350)"/> <wire from="(790,890)" to="(810,890)"/> <wire from="(1040,1850)" to="(1120,1850)"/> <wire from="(1150,760)" to="(1230,760)"/> <wire from="(320,710)" to="(1180,710)"/> <wire from="(1050,240)" to="(1050,290)"/> <wire from="(910,850)" to="(930,850)"/> <wire from="(1020,1120)" to="(1040,1120)"/> <wire from="(960,1140)" to="(980,1140)"/> <wire from="(100,370)" to="(100,660)"/> <wire from="(550,570)" to="(570,570)"/> <wire from="(1090,1760)" to="(1100,1760)"/> <wire from="(680,1090)" to="(710,1090)"/> <wire from="(920,130)" to="(950,130)"/> <wire from="(320,710)" to="(320,750)"/> <wire from="(800,1530)" to="(830,1530)"/> <wire from="(1180,1730)" to="(1180,1790)"/> <wire from="(180,130)" to="(190,130)"/> <wire from="(860,1840)" to="(860,1960)"/> <wire from="(460,1690)" to="(1230,1690)"/> <wire from="(1100,300)" to="(1190,300)"/> <wire from="(770,1460)" to="(770,1640)"/> <wire from="(890,1760)" to="(890,1810)"/> <wire from="(1100,1840)" to="(1120,1840)"/> <wire from="(1060,2040)" to="(1080,2040)"/> <wire from="(100,350)" to="(1320,350)"/> <wire from="(1320,1420)" to="(1320,2080)"/> <wire from="(1090,730)" to="(1090,750)"/> <wire from="(760,460)" to="(760,590)"/> <wire from="(270,710)" to="(320,710)"/> <wire from="(1020,1140)" to="(1120,1140)"/> <wire from="(630,920)" to="(670,920)"/> <wire from="(1160,1310)" to="(1160,1380)"/> <wire from="(410,290)" to="(840,290)"/> <wire from="(770,1460)" to="(810,1460)"/> <wire from="(180,2040)" to="(1060,2040)"/> <wire from="(290,260)" to="(290,470)"/> <wire from="(400,440)" to="(400,470)"/> <wire from="(890,1810)" to="(890,1830)"/> <wire from="(250,130)" to="(250,160)"/> <wire from="(870,1540)" to="(980,1540)"/> <wire from="(840,270)" to="(860,270)"/> <wire from="(580,860)" to="(580,900)"/> <wire from="(810,1520)" to="(830,1520)"/> <wire from="(920,1470)" to="(940,1470)"/> <wire from="(890,1760)" to="(910,1760)"/> <wire from="(1100,1840)" to="(1100,2020)"/> <wire from="(650,480)" to="(670,480)"/> <wire from="(1320,1030)" to="(1320,1400)"/> <wire from="(930,810)" to="(930,850)"/> <wire from="(670,500)" to="(690,500)"/> <wire from="(1160,1310)" to="(1230,1310)"/> <wire from="(1160,2030)" to="(1230,2030)"/> <wire from="(240,1190)" to="(260,1190)"/> <wire from="(1100,1780)" to="(1100,1840)"/> <wire from="(790,1330)" to="(820,1330)"/> <wire from="(790,1090)" to="(820,1090)"/> <wire from="(800,1820)" to="(830,1820)"/> <wire from="(930,730)" to="(930,790)"/> <wire from="(180,560)" to="(260,560)"/> <wire from="(180,100)" to="(190,100)"/> <wire from="(180,590)" to="(510,590)"/> <wire from="(760,1950)" to="(830,1950)"/> <wire from="(820,1140)" to="(830,1140)"/> <wire from="(260,560)" to="(390,560)"/> <wire from="(850,1570)" to="(860,1570)"/> <wire from="(1050,240)" to="(1070,240)"/> <wire from="(660,900)" to="(670,900)"/> <wire from="(1020,1810)" to="(1040,1810)"/> <wire from="(1080,1470)" to="(1100,1470)"/> <wire from="(500,900)" to="(510,900)"/> <wire from="(790,910)" to="(790,960)"/> <wire from="(1160,1790)" to="(1180,1790)"/> <wire from="(260,1750)" to="(260,2000)"/> <wire from="(580,900)" to="(590,900)"/> <wire from="(100,2080)" to="(1320,2080)"/> <wire from="(180,310)" to="(370,310)"/> <wire from="(290,260)" to="(860,260)"/> <wire from="(1080,280)" to="(1190,280)"/> <wire from="(940,180)" to="(940,250)"/> <wire from="(940,1380)" to="(940,1450)"/> <wire from="(180,70)" to="(1130,70)"/> <wire from="(100,20)" to="(100,350)"/> <wire from="(390,320)" to="(390,330)"/> <wire from="(180,260)" to="(290,260)"/> <wire from="(410,430)" to="(1160,430)"/> <wire from="(1060,1860)" to="(1120,1860)"/> <wire from="(1050,130)" to="(1050,220)"/> <wire from="(660,590)" to="(760,590)"/> <wire from="(820,1310)" to="(820,1330)"/> <wire from="(930,850)" to="(1040,850)"/> <wire from="(850,900)" to="(1090,900)"/> <wire from="(1320,680)" to="(1320,1010)"/> <wire from="(840,200)" to="(950,200)"/> <wire from="(790,910)" to="(810,910)"/> <wire from="(1040,1790)" to="(1120,1790)"/> <wire from="(810,1810)" to="(830,1810)"/> <wire from="(400,470)" to="(620,470)"/> <wire from="(870,1950)" to="(890,1950)"/> <wire from="(740,1340)" to="(760,1340)"/> <wire from="(730,1320)" to="(760,1320)"/> <wire from="(730,1160)" to="(760,1160)"/> <wire from="(570,960)" to="(790,960)"/> <wire from="(250,130)" to="(270,130)"/> <wire from="(810,1460)" to="(810,1520)"/> <wire from="(810,1540)" to="(810,1600)"/> <wire from="(550,590)" to="(620,590)"/> <wire from="(360,410)" to="(370,410)"/> <wire from="(1090,860)" to="(1090,900)"/> <wire from="(600,530)" to="(600,580)"/> <wire from="(180,1790)" to="(380,1790)"/> <wire from="(1100,2020)" to="(1120,2020)"/> <wire from="(1100,1780)" to="(1120,1780)"/> <wire from="(1150,70)" to="(1170,70)"/> <wire from="(100,1010)" to="(1320,1010)"/> <wire from="(100,370)" to="(1320,370)"/> <wire from="(1210,290)" to="(1230,290)"/> <wire from="(500,830)" to="(500,900)"/> <wire from="(810,1600)" to="(1180,1600)"/> <wire from="(710,1170)" to="(760,1170)"/> <wire from="(710,1090)" to="(760,1090)"/> <wire from="(1180,1510)" to="(1180,1600)"/> <wire from="(660,830)" to="(660,900)"/> <wire from="(840,180)" to="(940,180)"/> <wire from="(950,130)" to="(1050,130)"/> <wire from="(770,1640)" to="(810,1640)"/> <wire from="(750,1050)" to="(750,1080)"/> <wire from="(100,1420)" to="(100,2080)"/> <wire from="(650,460)" to="(760,460)"/> <wire from="(860,1960)" to="(860,1980)"/> <wire from="(770,860)" to="(790,860)"/> <wire from="(810,1300)" to="(830,1300)"/> <wire from="(810,1540)" to="(830,1540)"/> <wire from="(260,330)" to="(260,560)"/> <wire from="(410,410)" to="(440,410)"/> <wire from="(380,1670)" to="(400,1670)"/> <wire from="(940,1380)" to="(1160,1380)"/> <wire from="(790,1270)" to="(820,1270)"/> <wire from="(730,1220)" to="(730,1320)"/> <wire from="(100,1030)" to="(100,1400)"/> <wire from="(960,1200)" to="(1090,1200)"/> <wire from="(1060,1220)" to="(1090,1220)"/> <wire from="(810,1460)" to="(880,1460)"/> <wire from="(1090,860)" to="(1110,860)"/> <wire from="(1020,1830)" to="(1040,1830)"/> <wire from="(1180,1510)" to="(1200,1510)"/> <wire from="(100,660)" to="(1320,660)"/> <wire from="(100,20)" to="(1320,20)"/> <wire from="(810,1830)" to="(810,1880)"/> <wire from="(640,510)" to="(640,520)"/> <wire from="(1040,1790)" to="(1040,1810)"/> <wire from="(440,410)" to="(1080,410)"/> <wire from="(950,130)" to="(950,200)"/> <wire from="(1020,760)" to="(1020,830)"/> <wire from="(1190,430)" to="(1230,430)"/> <wire from="(100,680)" to="(100,1010)"/> <wire from="(1180,1850)" to="(1180,1880)"/> <wire from="(260,2000)" to="(890,2000)"/> <wire from="(820,1090)" to="(820,1120)"/> <wire from="(840,150)" to="(840,180)"/> <wire from="(1060,1800)" to="(1120,1800)"/> <wire from="(710,900)" to="(810,900)"/> <wire from="(340,1180)" to="(760,1180)"/> <wire from="(710,1090)" to="(710,1170)"/> <wire from="(1180,1850)" to="(1230,1850)"/> <wire from="(570,920)" to="(570,960)"/> <wire from="(810,1830)" to="(830,1830)"/> <wire from="(870,1810)" to="(890,1810)"/> <wire from="(1050,290)" to="(1190,290)"/> <wire from="(600,580)" to="(620,580)"/> <wire from="(320,1650)" to="(350,1650)"/> <wire from="(320,1730)" to="(350,1730)"/> <wire from="(1160,1140)" to="(1230,1140)"/> <wire from="(730,1100)" to="(760,1100)"/> <wire from="(1200,850)" to="(1230,850)"/> <wire from="(500,570)" to="(510,570)"/> <wire from="(360,510)" to="(370,510)"/> <wire from="(180,160)" to="(250,160)"/> <wire from="(970,1520)" to="(980,1520)"/> <wire from="(970,1120)" to="(980,1120)"/> <wire from="(820,1290)" to="(830,1290)"/> <wire from="(1090,750)" to="(1110,750)"/> <wire from="(1170,120)" to="(1170,420)"/> <wire from="(1100,2040)" to="(1120,2040)"/> <wire from="(100,1030)" to="(1320,1030)"/> <wire from="(810,1880)" to="(810,1930)"/> <comp lib="0" loc="(500,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(410,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1160,1850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(850,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(609,945)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="0" loc="(1230,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1190,130)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(1103,1243)" name="Text"> <a name="text" val="Nor6"/> </comp> <comp lib="4" loc="(870,1520)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1230,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,130)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(880,1460)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(688,945)" name="Text"> <a name="text" val="DL5"/> </comp> <comp lib="4" loc="(870,1930)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(295,1448)" name="Text"> <a name="text" val="DPCM Sample Buffer Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(180,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(180,2040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#NOUT"/> </comp> <comp lib="0" loc="(360,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#ACLK1"/> </comp> <comp lib="0" loc="(180,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SOUT"/> </comp> <comp lib="6" loc="(1085,2028)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="1" loc="(850,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1210,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(960,252)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="1" loc="(1110,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(842,101)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="0" loc="(910,1760)" name="Tunnel"> <a name="label" val="DMASTOP"/> </comp> <comp lib="6" loc="(841,1793)" name="Text"> <a name="text" val="RS4"/> </comp> <comp loc="(320,1740)" name="D-latch"/> <comp lib="0" loc="(180,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(340,750)" name="Tunnel"> <a name="label" val="/DFLOAD"/> </comp> <comp lib="6" loc="(174,1699)" name="Text"> <a name="text" val="OUTPUT CNT OVF"/> </comp> <comp lib="0" loc="(1230,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DMC/AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(410,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(920,130)" name="NOR Gate"> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(839,309)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(240,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(1129,1593)" name="Text"> <a name="text" val="PCM DONE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(262,646)" name="Text"> <a name="text" val="DPCM Enable Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(849,1274)" name="Text"> <a name="text" val="RS6"/> </comp> <comp lib="0" loc="(1230,1640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PCM"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(820,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(1058,1593)" name="Text"> <a name="text" val="DMC1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(975,846)" name="Text"> <a name="text" val="PCM DONE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1230,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1200,2004)" name="Text"> <a name="text" val="STEP SHIFT REG"/> </comp> <comp loc="(630,910)" name="D-latch"/> <comp lib="1" loc="(1070,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(180,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(180,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(530,632)" name="Text"> <a name="text" val="DL14"/> </comp> <comp lib="0" loc="(190,100)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(930,790)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(180,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1160,2030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="1" loc="(1120,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1200,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(360,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#ACLK1"/> </comp> <comp lib="0" loc="(1230,1850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BLOAD"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,1530)" name="D-latch"/> <comp lib="0" loc="(770,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(1150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1090,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DFLOAD"/> </comp> <comp lib="1" loc="(1200,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(457,915)" name="Text"> <a name="text" val="ED2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1156,1635)" name="Text"> <a name="text" val="LOAD SAMPLE BUFFER"/> </comp> <comp lib="6" loc="(438,285)" name="Text"> <a name="text" val="LOOP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(870,1810)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(870,1290)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(270,47)" name="Text"> <a name="text" val="DPCM Interrupt Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(1230,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCRDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(920,250)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp loc="(1020,1130)" name="D-latch"/> <comp lib="0" loc="(1230,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1200,1510)" name="Tunnel"> <a name="label" val="PCM DONE"/> </comp> <comp lib="1" loc="(790,1330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(180,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DOUT"/> </comp> <comp lib="6" loc="(528,945)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="1" loc="(1150,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(849,1101)" name="Text"> <a name="text" val="RS5"/> </comp> <comp lib="6" loc="(298,1696)" name="Text"> <a name="text" val="DL12"/> </comp> <comp lib="0" loc="(1230,2030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(268,1210)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(997,1183)" name="Text"> <a name="text" val="DL9"/> </comp> <comp lib="0" loc="(970,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(1160,1130)" name="D-latch"/> <comp lib="0" loc="(180,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="6" loc="(840,1914)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="6" loc="(430,404)" name="Text"> <a name="text" val="ED2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1066,1090)" name="Text"> <a name="text" val="Delay per 1 cycle ACLK1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(672,756)" name="Text"> <a name="text" val="PCM FINISH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(180,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(460,1690)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1230,1690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,1790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="4" loc="(410,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(910,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCM DONE"/> </comp> <comp lib="1" loc="(1150,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(172,411)" name="Text"> <a name="text" val="DPCM ENABLE"/> </comp> <comp lib="6" loc="(594,755)" name="Text"> <a name="text" val="DMC2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(190,220)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(251,1056)" name="Text"> <a name="text" val="DPCM DMA Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(850,1980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(259,697)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(280,1190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(310,130)" name="Tunnel"> <a name="label" val="#ACLK1"/> </comp> <comp lib="6" loc="(480,524)" name="Text"> <a name="text" val="/ENIRQ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(790,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(1151,1685)" name="Text"> <a name="text" val="STEP OUTPUT COUNTER"/> </comp> <comp lib="0" loc="(1230,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCINT"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(847,1500)" name="Text"> <a name="text" val="RS3"/> </comp> <comp lib="0" loc="(1230,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RUNDMC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,160)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(800,1170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(190,190)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(810,1300)" name="Constant"/> <comp loc="(550,910)" name="D-latch"/> <comp lib="1" loc="(1160,1790)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(180,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DFLOAD"/> </comp> <comp lib="0" loc="(180,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(340,1600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DFLOAD"/> </comp> <comp lib="6" loc="(880,195)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="0" loc="(590,860)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="1" loc="(790,1090)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(392,586)" name="Text"> <a name="text" val="LENGHT = 0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(710,910)" name="D-latch"/> <comp lib="0" loc="(680,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DMASTOP"/> </comp> <comp lib="0" loc="(800,1530)" name="Constant"/> <comp lib="0" loc="(180,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(301,195)" name="Text"> <a name="text" val="ACLK2 = NOT /ACLK2"/> </comp> <comp lib="6" loc="(703,991)" name="Text"> <a name="text" val="CTRL2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(690,500)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp loc="(320,1660)" name="D-latch"/> <comp lib="0" loc="(240,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(305,1001)" name="Text"> <a name="text" val="DPCM Sample Counter Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(1188,835)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1080,1470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(999,1783)" name="Text"> <a name="text" val="DL13"/> </comp> <comp loc="(1020,1820)" name="D-latch"/> <comp lib="0" loc="(180,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="1" loc="(1190,430)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(714,120)" name="Text"> <a name="text" val="ASSERT INT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(740,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(963,1876)" name="Text"> <a name="text" val="LOAD SHIFT REG"/> </comp> <comp lib="6" loc="(526,616)" name="Text"> <a name="text" val="DL1"/> </comp> <comp lib="0" loc="(760,1050)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(270,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(800,1820)" name="Constant"/> <comp lib="6" loc="(905,806)" name="Text"> <a name="text" val="Inv10"/> </comp> <comp lib="1" loc="(340,1180)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(970,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(180,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="1" loc="(1130,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,470)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1000,1565)" name="Text"> <a name="text" val="DL10"/> </comp> <comp lib="0" loc="(180,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1230,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="3"/> <a name="label" val="DMC_C"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(660,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(961,145)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(810,1130)" name="Constant"/> <comp lib="6" loc="(631,624)" name="Text"> <a name="text" val="Nor2"/> </comp> <comp lib="6" loc="(997,1167)" name="Text"> <a name="text" val="DL8"/> </comp> <comp lib="1" loc="(1100,2040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(550,580)" name="D-latch"/> <comp lib="0" loc="(670,830)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(870,1120)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1139,1166)" name="Text"> <a name="text" val="DL7"/> </comp> <comp lib="6" loc="(179,2022)" name="Text"> <a name="text" val="SAMPLE BIT CNT OVF"/> </comp> <comp lib="0" loc="(1230,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(970,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(673,585)" name="Text"> <a name="text" val="ED1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1160,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(800,1940)" name="Constant"/> <comp lib="6" loc="(299,1774)" name="Text"> <a name="text" val="DL11"/> </comp> <comp lib="6" loc="(520,463)" name="Text"> <a name="text" val="RESET ENABLE FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(940,1470)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(360,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#ACLK1"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"> <a name="circuit" val="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"/> <a name="clabel" val="SAMPLE LENGTH DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M68,51 Q72,61 76,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff4f8f" height="301" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="114">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="134">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="155">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="184">SOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="195">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="216">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="236">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="255">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="275">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="295">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="315">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="335">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="174">W4013</text> <circ-port height="8" pin="110,130" width="8" x="46" y="66"/> <circ-port height="8" pin="110,280" width="8" x="46" y="106"/> <circ-port height="8" pin="110,180" width="8" x="46" y="126"/> <circ-port height="8" pin="110,250" width="8" x="46" y="146"/> <circ-port height="8" pin="110,840" width="8" x="46" y="186"/> <circ-port height="8" pin="110,1000" width="8" x="46" y="206"/> <circ-port height="8" pin="110,1160" width="8" x="46" y="226"/> <circ-port height="8" pin="110,1320" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1480" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1640" width="8" x="46" y="286"/> <circ-port height="8" pin="110,1800" width="8" x="46" y="306"/> <circ-port height="8" pin="110,1960" width="8" x="46" y="326"/> <circ-port height="10" pin="670,2020" width="10" x="185" y="175"/> <circ-port height="8" pin="110,310" width="8" x="46" y="166"/> <circ-port height="10" pin="920,610" width="10" x="185" y="185"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(860,610)" to="(920,610)"/> <wire from="(110,840)" to="(150,840)"/> <wire from="(110,1000)" to="(150,1000)"/> <wire from="(110,1160)" to="(150,1160)"/> <wire from="(110,1320)" to="(150,1320)"/> <wire from="(110,1480)" to="(150,1480)"/> <wire from="(110,1640)" to="(150,1640)"/> <wire from="(110,1800)" to="(150,1800)"/> <wire from="(110,1960)" to="(150,1960)"/> <wire from="(740,800)" to="(740,950)"/> <wire from="(460,780)" to="(460,820)"/> <wire from="(460,300)" to="(460,340)"/> <wire from="(460,460)" to="(460,500)"/> <wire from="(460,620)" to="(460,660)"/> <wire from="(460,940)" to="(460,980)"/> <wire from="(460,1100)" to="(460,1140)"/> <wire from="(460,1260)" to="(460,1300)"/> <wire from="(460,1420)" to="(460,1460)"/> <wire from="(460,1580)" to="(460,1620)"/> <wire from="(460,1740)" to="(460,1780)"/> <wire from="(460,1900)" to="(460,1940)"/> <wire from="(130,130)" to="(130,200)"/> <wire from="(280,1590)" to="(780,1590)"/> <wire from="(210,1840)" to="(210,1990)"/> <wire from="(800,860)" to="(840,860)"/> <wire from="(170,870)" to="(210,870)"/> <wire from="(170,1030)" to="(210,1030)"/> <wire from="(170,1190)" to="(210,1190)"/> <wire from="(170,1350)" to="(210,1350)"/> <wire from="(170,1510)" to="(210,1510)"/> <wire from="(170,1670)" to="(210,1670)"/> <wire from="(170,1990)" to="(210,1990)"/> <wire from="(570,170)" to="(590,170)"/> <wire from="(570,650)" to="(590,650)"/> <wire from="(570,490)" to="(590,490)"/> <wire from="(570,330)" to="(590,330)"/> <wire from="(240,910)" to="(240,1070)"/> <wire from="(240,1070)" to="(240,1230)"/> <wire from="(240,1230)" to="(240,1390)"/> <wire from="(240,1390)" to="(240,1550)"/> <wire from="(240,1550)" to="(240,1710)"/> <wire from="(240,1710)" to="(240,1870)"/> <wire from="(240,1870)" to="(240,2030)"/> <wire from="(570,1450)" to="(590,1450)"/> <wire from="(570,1130)" to="(590,1130)"/> <wire from="(570,810)" to="(590,810)"/> <wire from="(570,1290)" to="(590,1290)"/> <wire from="(570,970)" to="(590,970)"/> <wire from="(570,1610)" to="(590,1610)"/> <wire from="(570,1770)" to="(590,1770)"/> <wire from="(570,1930)" to="(590,1930)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,180)" to="(440,180)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,660)" to="(440,660)"/> <wire from="(420,820)" to="(440,820)"/> <wire from="(420,980)" to="(440,980)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,1300)" to="(440,1300)"/> <wire from="(420,1460)" to="(440,1460)"/> <wire from="(420,1620)" to="(440,1620)"/> <wire from="(420,1780)" to="(440,1780)"/> <wire from="(420,1940)" to="(440,1940)"/> <wire from="(370,390)" to="(650,390)"/> <wire from="(370,230)" to="(650,230)"/> <wire from="(370,1350)" to="(650,1350)"/> <wire from="(370,1030)" to="(650,1030)"/> <wire from="(370,870)" to="(650,870)"/> <wire from="(370,1190)" to="(650,1190)"/> <wire from="(370,1670)" to="(650,1670)"/> <wire from="(370,1830)" to="(650,1830)"/> <wire from="(370,1990)" to="(650,1990)"/> <wire from="(370,1510)" to="(650,1510)"/> <wire from="(370,710)" to="(650,710)"/> <wire from="(370,550)" to="(650,550)"/> <wire from="(310,1360)" to="(320,1360)"/> <wire from="(310,880)" to="(320,880)"/> <wire from="(310,1040)" to="(320,1040)"/> <wire from="(310,1200)" to="(320,1200)"/> <wire from="(310,1520)" to="(320,1520)"/> <wire from="(310,1680)" to="(320,1680)"/> <wire from="(310,1840)" to="(320,1840)"/> <wire from="(310,2000)" to="(320,2000)"/> <wire from="(750,810)" to="(750,1110)"/> <wire from="(130,820)" to="(150,820)"/> <wire from="(130,980)" to="(150,980)"/> <wire from="(130,1140)" to="(150,1140)"/> <wire from="(130,1300)" to="(150,1300)"/> <wire from="(130,1460)" to="(150,1460)"/> <wire from="(130,1620)" to="(150,1620)"/> <wire from="(130,1780)" to="(150,1780)"/> <wire from="(130,1940)" to="(150,1940)"/> <wire from="(280,1110)" to="(750,1110)"/> <wire from="(310,250)" to="(310,300)"/> <wire from="(540,2020)" to="(670,2020)"/> <wire from="(110,130)" to="(130,130)"/> <wire from="(110,280)" to="(240,280)"/> <wire from="(310,300)" to="(310,880)"/> <wire from="(170,850)" to="(170,870)"/> <wire from="(170,1010)" to="(170,1030)"/> <wire from="(170,1170)" to="(170,1190)"/> <wire from="(170,1330)" to="(170,1350)"/> <wire from="(170,1490)" to="(170,1510)"/> <wire from="(170,1650)" to="(170,1670)"/> <wire from="(170,1970)" to="(170,1990)"/> <wire from="(110,310)" to="(210,310)"/> <wire from="(170,1810)" to="(170,1840)"/> <wire from="(570,130)" to="(570,170)"/> <wire from="(760,820)" to="(840,820)"/> <wire from="(460,820)" to="(460,890)"/> <wire from="(460,980)" to="(460,1050)"/> <wire from="(460,340)" to="(460,410)"/> <wire from="(460,180)" to="(460,250)"/> <wire from="(460,660)" to="(460,730)"/> <wire from="(460,500)" to="(460,570)"/> <wire from="(460,1140)" to="(460,1210)"/> <wire from="(460,1300)" to="(460,1370)"/> <wire from="(460,1460)" to="(460,1530)"/> <wire from="(460,1620)" to="(460,1690)"/> <wire from="(460,1780)" to="(460,1850)"/> <wire from="(460,1940)" to="(460,2010)"/> <wire from="(760,820)" to="(760,1270)"/> <wire from="(130,130)" to="(570,130)"/> <wire from="(410,290)" to="(410,370)"/> <wire from="(860,610)" to="(860,780)"/> <wire from="(790,850)" to="(840,850)"/> <wire from="(280,1750)" to="(790,1750)"/> <wire from="(130,220)" to="(130,820)"/> <wire from="(170,1840)" to="(210,1840)"/> <wire from="(190,820)" to="(280,820)"/> <wire from="(190,980)" to="(280,980)"/> <wire from="(190,1140)" to="(280,1140)"/> <wire from="(190,1300)" to="(280,1300)"/> <wire from="(190,1460)" to="(280,1460)"/> <wire from="(190,1620)" to="(280,1620)"/> <wire from="(190,1780)" to="(280,1780)"/> <wire from="(190,1940)" to="(280,1940)"/> <wire from="(110,250)" to="(310,250)"/> <wire from="(390,850)" to="(390,920)"/> <wire from="(390,1010)" to="(390,1080)"/> <wire from="(390,1170)" to="(390,1240)"/> <wire from="(390,1330)" to="(390,1400)"/> <wire from="(390,1490)" to="(390,1560)"/> <wire from="(390,1650)" to="(390,1720)"/> <wire from="(390,1810)" to="(390,1880)"/> <wire from="(390,1970)" to="(390,2040)"/> <wire from="(770,830)" to="(770,1430)"/> <wire from="(460,660)" to="(500,660)"/> <wire from="(460,340)" to="(500,340)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(460,500)" to="(500,500)"/> <wire from="(460,820)" to="(500,820)"/> <wire from="(460,980)" to="(500,980)"/> <wire from="(460,1140)" to="(500,1140)"/> <wire from="(460,1300)" to="(500,1300)"/> <wire from="(460,1460)" to="(500,1460)"/> <wire from="(460,1620)" to="(500,1620)"/> <wire from="(460,1780)" to="(500,1780)"/> <wire from="(460,1940)" to="(500,1940)"/> <wire from="(280,1270)" to="(760,1270)"/> <wire from="(440,430)" to="(500,430)"/> <wire from="(440,270)" to="(500,270)"/> <wire from="(440,590)" to="(500,590)"/> <wire from="(440,1230)" to="(500,1230)"/> <wire from="(440,750)" to="(500,750)"/> <wire from="(440,910)" to="(500,910)"/> <wire from="(440,1070)" to="(500,1070)"/> <wire from="(440,1390)" to="(500,1390)"/> <wire from="(440,1550)" to="(500,1550)"/> <wire from="(440,1710)" to="(500,1710)"/> <wire from="(440,1870)" to="(500,1870)"/> <wire from="(440,2030)" to="(500,2030)"/> <wire from="(360,180)" to="(360,340)"/> <wire from="(360,340)" to="(360,500)"/> <wire from="(360,980)" to="(360,1140)"/> <wire from="(360,500)" to="(360,660)"/> <wire from="(360,660)" to="(360,820)"/> <wire from="(360,820)" to="(360,980)"/> <wire from="(360,1140)" to="(360,1300)"/> <wire from="(360,1300)" to="(360,1460)"/> <wire from="(360,1460)" to="(360,1620)"/> <wire from="(360,1620)" to="(360,1780)"/> <wire from="(360,1780)" to="(360,1940)"/> <wire from="(240,910)" to="(260,910)"/> <wire from="(240,1070)" to="(260,1070)"/> <wire from="(240,1230)" to="(260,1230)"/> <wire from="(240,1390)" to="(260,1390)"/> <wire from="(240,1550)" to="(260,1550)"/> <wire from="(240,1710)" to="(260,1710)"/> <wire from="(240,1870)" to="(260,1870)"/> <wire from="(240,2030)" to="(260,2030)"/> <wire from="(420,360)" to="(500,360)"/> <wire from="(420,200)" to="(500,200)"/> <wire from="(420,520)" to="(500,520)"/> <wire from="(420,1160)" to="(500,1160)"/> <wire from="(420,1000)" to="(500,1000)"/> <wire from="(420,680)" to="(500,680)"/> <wire from="(420,840)" to="(500,840)"/> <wire from="(420,1320)" to="(500,1320)"/> <wire from="(420,1480)" to="(500,1480)"/> <wire from="(420,1640)" to="(500,1640)"/> <wire from="(420,1800)" to="(500,1800)"/> <wire from="(420,1960)" to="(500,1960)"/> <wire from="(540,740)" to="(550,740)"/> <wire from="(540,420)" to="(550,420)"/> <wire from="(540,260)" to="(550,260)"/> <wire from="(540,580)" to="(550,580)"/> <wire from="(540,900)" to="(550,900)"/> <wire from="(540,1060)" to="(550,1060)"/> <wire from="(540,1220)" to="(550,1220)"/> <wire from="(540,1380)" to="(550,1380)"/> <wire from="(540,1540)" to="(550,1540)"/> <wire from="(540,1700)" to="(550,1700)"/> <wire from="(540,1860)" to="(550,1860)"/> <wire from="(540,670)" to="(590,670)"/> <wire from="(540,190)" to="(590,190)"/> <wire from="(540,350)" to="(590,350)"/> <wire from="(540,830)" to="(590,830)"/> <wire from="(540,510)" to="(590,510)"/> <wire from="(540,990)" to="(590,990)"/> <wire from="(540,1470)" to="(590,1470)"/> <wire from="(540,1630)" to="(590,1630)"/> <wire from="(540,1150)" to="(590,1150)"/> <wire from="(540,1310)" to="(590,1310)"/> <wire from="(540,1790)" to="(590,1790)"/> <wire from="(540,1950)" to="(590,1950)"/> <wire from="(780,840)" to="(780,1590)"/> <wire from="(750,810)" to="(840,810)"/> <wire from="(460,160)" to="(460,180)"/> <wire from="(650,190)" to="(650,230)"/> <wire from="(650,1150)" to="(650,1190)"/> <wire from="(650,1790)" to="(650,1830)"/> <wire from="(650,1950)" to="(650,1990)"/> <wire from="(650,830)" to="(650,870)"/> <wire from="(650,1310)" to="(650,1350)"/> <wire from="(650,990)" to="(650,1030)"/> <wire from="(650,1630)" to="(650,1670)"/> <wire from="(650,1470)" to="(650,1510)"/> <wire from="(650,350)" to="(650,390)"/> <wire from="(650,510)" to="(650,550)"/> <wire from="(650,670)" to="(650,710)"/> <wire from="(570,170)" to="(570,330)"/> <wire from="(570,330)" to="(570,490)"/> <wire from="(570,650)" to="(570,810)"/> <wire from="(570,490)" to="(570,650)"/> <wire from="(570,970)" to="(570,1130)"/> <wire from="(570,810)" to="(570,970)"/> <wire from="(570,1770)" to="(570,1930)"/> <wire from="(570,1450)" to="(570,1610)"/> <wire from="(570,1130)" to="(570,1290)"/> <wire from="(570,1290)" to="(570,1450)"/> <wire from="(570,1610)" to="(570,1770)"/> <wire from="(240,280)" to="(320,280)"/> <wire from="(210,310)" to="(210,870)"/> <wire from="(280,1910)" to="(800,1910)"/> <wire from="(350,890)" to="(410,890)"/> <wire from="(350,1050)" to="(410,1050)"/> <wire from="(350,1210)" to="(410,1210)"/> <wire from="(350,1370)" to="(410,1370)"/> <wire from="(350,1530)" to="(410,1530)"/> <wire from="(350,1690)" to="(410,1690)"/> <wire from="(350,1850)" to="(410,1850)"/> <wire from="(350,2010)" to="(410,2010)"/> <wire from="(780,840)" to="(840,840)"/> <wire from="(370,1320)" to="(370,1350)"/> <wire from="(370,840)" to="(370,870)"/> <wire from="(370,1000)" to="(370,1030)"/> <wire from="(370,1160)" to="(370,1190)"/> <wire from="(370,1480)" to="(370,1510)"/> <wire from="(370,1640)" to="(370,1670)"/> <wire from="(370,1800)" to="(370,1830)"/> <wire from="(370,1960)" to="(370,1990)"/> <wire from="(290,920)" to="(390,920)"/> <wire from="(290,1080)" to="(390,1080)"/> <wire from="(290,1240)" to="(390,1240)"/> <wire from="(290,1400)" to="(390,1400)"/> <wire from="(290,1560)" to="(390,1560)"/> <wire from="(290,1720)" to="(390,1720)"/> <wire from="(290,1880)" to="(390,1880)"/> <wire from="(290,2040)" to="(390,2040)"/> <wire from="(370,680)" to="(370,710)"/> <wire from="(370,360)" to="(370,390)"/> <wire from="(370,200)" to="(370,230)"/> <wire from="(370,520)" to="(370,550)"/> <wire from="(460,1100)" to="(550,1100)"/> <wire from="(460,1260)" to="(550,1260)"/> <wire from="(460,780)" to="(550,780)"/> <wire from="(460,620)" to="(550,620)"/> <wire from="(460,300)" to="(550,300)"/> <wire from="(460,460)" to="(550,460)"/> <wire from="(460,940)" to="(550,940)"/> <wire from="(460,1420)" to="(550,1420)"/> <wire from="(460,1580)" to="(550,1580)"/> <wire from="(460,1740)" to="(550,1740)"/> <wire from="(460,1900)" to="(550,1900)"/> <wire from="(130,820)" to="(130,980)"/> <wire from="(130,980)" to="(130,1140)"/> <wire from="(130,1140)" to="(130,1300)"/> <wire from="(130,1300)" to="(130,1460)"/> <wire from="(130,1460)" to="(130,1620)"/> <wire from="(130,1620)" to="(130,1780)"/> <wire from="(130,1780)" to="(130,1940)"/> <wire from="(460,1210)" to="(470,1210)"/> <wire from="(460,1530)" to="(470,1530)"/> <wire from="(460,1050)" to="(470,1050)"/> <wire from="(460,890)" to="(470,890)"/> <wire from="(460,1690)" to="(470,1690)"/> <wire from="(460,1370)" to="(470,1370)"/> <wire from="(460,1850)" to="(470,1850)"/> <wire from="(460,2010)" to="(470,2010)"/> <wire from="(460,730)" to="(470,730)"/> <wire from="(460,570)" to="(470,570)"/> <wire from="(460,410)" to="(470,410)"/> <wire from="(460,250)" to="(470,250)"/> <wire from="(110,180)" to="(360,180)"/> <wire from="(790,850)" to="(790,1750)"/> <wire from="(410,690)" to="(410,700)"/> <wire from="(280,1430)" to="(770,1430)"/> <wire from="(210,870)" to="(210,1030)"/> <wire from="(210,1030)" to="(210,1190)"/> <wire from="(210,1190)" to="(210,1350)"/> <wire from="(210,1350)" to="(210,1510)"/> <wire from="(210,1510)" to="(210,1670)"/> <wire from="(210,1670)" to="(210,1840)"/> <wire from="(410,850)" to="(410,890)"/> <wire from="(410,1010)" to="(410,1050)"/> <wire from="(410,1170)" to="(410,1210)"/> <wire from="(410,1330)" to="(410,1370)"/> <wire from="(410,1490)" to="(410,1530)"/> <wire from="(410,1650)" to="(410,1690)"/> <wire from="(410,1810)" to="(410,1850)"/> <wire from="(410,1970)" to="(410,2010)"/> <wire from="(490,1050)" to="(500,1050)"/> <wire from="(490,570)" to="(500,570)"/> <wire from="(490,730)" to="(500,730)"/> <wire from="(490,890)" to="(500,890)"/> <wire from="(490,410)" to="(500,410)"/> <wire from="(490,250)" to="(500,250)"/> <wire from="(490,1370)" to="(500,1370)"/> <wire from="(490,1210)" to="(500,1210)"/> <wire from="(490,1850)" to="(500,1850)"/> <wire from="(490,1530)" to="(500,1530)"/> <wire from="(490,1690)" to="(500,1690)"/> <wire from="(490,2010)" to="(500,2010)"/> <wire from="(410,210)" to="(410,290)"/> <wire from="(630,830)" to="(650,830)"/> <wire from="(630,670)" to="(650,670)"/> <wire from="(630,350)" to="(650,350)"/> <wire from="(630,510)" to="(650,510)"/> <wire from="(630,190)" to="(650,190)"/> <wire from="(630,1150)" to="(650,1150)"/> <wire from="(630,1310)" to="(650,1310)"/> <wire from="(630,990)" to="(650,990)"/> <wire from="(630,1470)" to="(650,1470)"/> <wire from="(630,1630)" to="(650,1630)"/> <wire from="(630,1950)" to="(650,1950)"/> <wire from="(630,1790)" to="(650,1790)"/> <wire from="(280,950)" to="(740,950)"/> <wire from="(240,280)" to="(240,910)"/> <wire from="(280,790)" to="(840,790)"/> <wire from="(800,860)" to="(800,1910)"/> <wire from="(740,800)" to="(840,800)"/> <wire from="(410,370)" to="(410,530)"/> <wire from="(410,530)" to="(410,690)"/> <wire from="(350,290)" to="(410,290)"/> <wire from="(280,820)" to="(280,890)"/> <wire from="(280,980)" to="(280,1050)"/> <wire from="(280,1140)" to="(280,1210)"/> <wire from="(280,1300)" to="(280,1370)"/> <wire from="(280,1460)" to="(280,1530)"/> <wire from="(280,1620)" to="(280,1690)"/> <wire from="(280,1780)" to="(280,1850)"/> <wire from="(280,1940)" to="(280,2010)"/> <wire from="(280,950)" to="(280,980)"/> <wire from="(280,790)" to="(280,820)"/> <wire from="(280,1110)" to="(280,1140)"/> <wire from="(280,1270)" to="(280,1300)"/> <wire from="(280,1430)" to="(280,1460)"/> <wire from="(280,1590)" to="(280,1620)"/> <wire from="(280,1750)" to="(280,1780)"/> <wire from="(280,1910)" to="(280,1940)"/> <wire from="(440,500)" to="(440,590)"/> <wire from="(440,660)" to="(440,750)"/> <wire from="(440,180)" to="(440,270)"/> <wire from="(440,340)" to="(440,430)"/> <wire from="(440,980)" to="(440,1070)"/> <wire from="(440,1140)" to="(440,1230)"/> <wire from="(440,820)" to="(440,910)"/> <wire from="(440,1460)" to="(440,1550)"/> <wire from="(440,1940)" to="(440,2030)"/> <wire from="(440,1620)" to="(440,1710)"/> <wire from="(440,1300)" to="(440,1390)"/> <wire from="(440,1780)" to="(440,1870)"/> <wire from="(550,260)" to="(550,300)"/> <wire from="(550,420)" to="(550,460)"/> <wire from="(550,580)" to="(550,620)"/> <wire from="(550,1060)" to="(550,1100)"/> <wire from="(550,900)" to="(550,940)"/> <wire from="(550,1220)" to="(550,1260)"/> <wire from="(550,1380)" to="(550,1420)"/> <wire from="(550,740)" to="(550,780)"/> <wire from="(550,1540)" to="(550,1580)"/> <wire from="(550,1700)" to="(550,1740)"/> <wire from="(550,1860)" to="(550,1900)"/> <wire from="(310,880)" to="(310,1040)"/> <wire from="(310,1040)" to="(310,1200)"/> <wire from="(310,1200)" to="(310,1360)"/> <wire from="(310,1360)" to="(310,1520)"/> <wire from="(310,1520)" to="(310,1680)"/> <wire from="(310,1680)" to="(310,1840)"/> <wire from="(310,1840)" to="(310,2000)"/> <wire from="(290,900)" to="(320,900)"/> <wire from="(290,1060)" to="(320,1060)"/> <wire from="(290,1220)" to="(320,1220)"/> <wire from="(290,1380)" to="(320,1380)"/> <wire from="(290,1540)" to="(320,1540)"/> <wire from="(290,1700)" to="(320,1700)"/> <wire from="(290,1860)" to="(320,1860)"/> <wire from="(290,2020)" to="(320,2020)"/> <wire from="(360,980)" to="(380,980)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,660)" to="(380,660)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(360,1300)" to="(380,1300)"/> <wire from="(360,1780)" to="(380,1780)"/> <wire from="(360,1940)" to="(380,1940)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(360,1460)" to="(380,1460)"/> <wire from="(360,1620)" to="(380,1620)"/> <wire from="(370,1480)" to="(380,1480)"/> <wire from="(370,1160)" to="(380,1160)"/> <wire from="(370,1000)" to="(380,1000)"/> <wire from="(370,840)" to="(380,840)"/> <wire from="(370,1320)" to="(380,1320)"/> <wire from="(370,1960)" to="(380,1960)"/> <wire from="(370,1640)" to="(380,1640)"/> <wire from="(370,1800)" to="(380,1800)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(370,200)" to="(380,200)"/> <wire from="(370,680)" to="(380,680)"/> <wire from="(370,360)" to="(380,360)"/> <wire from="(370,520)" to="(380,520)"/> <wire from="(770,830)" to="(840,830)"/> <comp lib="4" loc="(190,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,830)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC0"/> </comp> <comp lib="1" loc="(490,890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1540)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(190,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(490,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,1450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,890)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,1210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,670)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(540,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,2010)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC3"/> </comp> <comp lib="1" loc="(540,1950)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(920,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC5"/> </comp> <comp lib="4" loc="(190,1780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="1" loc="(540,1150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1310)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="1" loc="(350,1530)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(860,780)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(130,220)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(190,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(260,1710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(260,1070)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(260,1390)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(490,1690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(460,160)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(630,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,1370)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC2"/> </comp> <comp lib="1" loc="(540,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(260,2030)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(420,180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,1690)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,1850)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,1050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(260,910)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC1"/> </comp> <comp lib="1" loc="(540,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1470)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4013"/> </comp> <comp lib="4" loc="(420,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(490,1850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,2010)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC6"/> </comp> <comp lib="1" loc="(350,1050)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,1960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC7"/> </comp> <comp lib="4" loc="(630,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC4"/> </comp> <comp lib="1" loc="(540,1860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1790)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(260,1870)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,1060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(670,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DPCM_ADDRESS_COUNTER"> <a name="circuit" val="DPCM_ADDRESS_COUNTER"/> <a name="clabel" val="ADDRESS COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M67,51 Q71,61 75,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ced8ff" height="320" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="74">DMCA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="94">DMCA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="114">DMCA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="134">DMCA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="155">DMCA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="174">DMCA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="194">DMCA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="214">DMCA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="234">DMCA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="254">DMCA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="274">DMCA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="294">DMCA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="313">DMCA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="334">DMCA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="354">DMCA14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="134">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="154">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="214">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="235">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="254">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="274">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="295">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="314">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="335">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="354">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="175">W4012</text> <circ-port height="8" pin="120,30" width="8" x="46" y="66"/> <circ-port height="8" pin="120,170" width="8" x="46" y="126"/> <circ-port height="8" pin="120,110" width="8" x="46" y="146"/> <circ-port height="8" pin="120,210" width="8" x="46" y="106"/> <circ-port height="8" pin="120,1150" width="8" x="46" y="206"/> <circ-port height="8" pin="120,1320" width="8" x="46" y="226"/> <circ-port height="8" pin="120,1490" width="8" x="46" y="246"/> <circ-port height="8" pin="120,1660" width="8" x="46" y="266"/> <circ-port height="8" pin="120,1830" width="8" x="46" y="286"/> <circ-port height="8" pin="120,2000" width="8" x="46" y="306"/> <circ-port height="8" pin="120,2170" width="8" x="46" y="326"/> <circ-port height="8" pin="120,2340" width="8" x="46" y="346"/> <circ-port height="10" pin="720,60" width="10" x="185" y="65"/> <circ-port height="10" pin="720,230" width="10" x="185" y="85"/> <circ-port height="10" pin="720,400" width="10" x="185" y="105"/> <circ-port height="10" pin="720,570" width="10" x="185" y="125"/> <circ-port height="10" pin="720,740" width="10" x="185" y="145"/> <circ-port height="10" pin="720,910" width="10" x="185" y="165"/> <circ-port height="10" pin="720,1080" width="10" x="185" y="185"/> <circ-port height="10" pin="720,1250" width="10" x="185" y="205"/> <circ-port height="10" pin="720,1420" width="10" x="185" y="225"/> <circ-port height="10" pin="720,1590" width="10" x="185" y="245"/> <circ-port height="10" pin="720,1760" width="10" x="185" y="265"/> <circ-port height="10" pin="720,1930" width="10" x="185" y="285"/> <circ-port height="10" pin="720,2100" width="10" x="185" y="305"/> <circ-port height="10" pin="720,2270" width="10" x="185" y="325"/> <circ-port height="10" pin="720,2440" width="10" x="185" y="345"/> <circ-port height="8" pin="120,1010" width="8" x="46" y="166"/> <circ-port height="10" pin="1000,1050" width="10" x="185" y="155"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(490,880)" to="(550,880)"/> <wire from="(120,1150)" to="(180,1150)"/> <wire from="(490,2000)" to="(550,2000)"/> <wire from="(590,1140)" to="(650,1140)"/> <wire from="(490,1320)" to="(490,1390)"/> <wire from="(510,1980)" to="(510,2050)"/> <wire from="(490,1420)" to="(720,1420)"/> <wire from="(330,2240)" to="(440,2240)"/> <wire from="(510,1950)" to="(610,1950)"/> <wire from="(510,1950)" to="(510,1980)"/> <wire from="(200,1160)" to="(200,1180)"/> <wire from="(220,1980)" to="(320,1980)"/> <wire from="(420,2540)" to="(710,2540)"/> <wire from="(420,2340)" to="(420,2370)"/> <wire from="(200,2370)" to="(240,2370)"/> <wire from="(510,280)" to="(550,280)"/> <wire from="(630,1970)" to="(630,2140)"/> <wire from="(710,1990)" to="(710,2030)"/> <wire from="(470,2340)" to="(490,2340)"/> <wire from="(590,700)" to="(610,700)"/> <wire from="(630,100)" to="(650,100)"/> <wire from="(690,800)" to="(710,800)"/> <wire from="(330,1710)" to="(360,1710)"/> <wire from="(160,1980)" to="(160,2150)"/> <wire from="(410,1640)" to="(430,1640)"/> <wire from="(410,790)" to="(410,960)"/> <wire from="(350,1690)" to="(350,1860)"/> <wire from="(850,1070)" to="(850,1230)"/> <wire from="(420,1660)" to="(430,1660)"/> <wire from="(610,1890)" to="(610,1950)"/> <wire from="(490,1930)" to="(490,1980)"/> <wire from="(460,140)" to="(460,200)"/> <wire from="(440,2520)" to="(440,2580)"/> <wire from="(390,1700)" to="(460,1700)"/> <wire from="(540,180)" to="(550,180)"/> <wire from="(510,2390)" to="(520,2390)"/> <wire from="(490,810)" to="(490,880)"/> <wire from="(490,370)" to="(550,370)"/> <wire from="(320,2080)" to="(320,2150)"/> <wire from="(490,1490)" to="(550,1490)"/> <wire from="(590,630)" to="(650,630)"/> <wire from="(510,1470)" to="(510,1540)"/> <wire from="(510,2490)" to="(550,2490)"/> <wire from="(510,1440)" to="(610,1440)"/> <wire from="(350,2550)" to="(460,2550)"/> <wire from="(510,1440)" to="(510,1470)"/> <wire from="(460,2350)" to="(460,2380)"/> <wire from="(910,1130)" to="(950,1130)"/> <wire from="(330,1730)" to="(440,1730)"/> <wire from="(220,1470)" to="(320,1470)"/> <wire from="(420,1830)" to="(420,1860)"/> <wire from="(420,2030)" to="(710,2030)"/> <wire from="(200,1860)" to="(240,1860)"/> <wire from="(490,910)" to="(720,910)"/> <wire from="(630,1460)" to="(630,1630)"/> <wire from="(320,1400)" to="(860,1400)"/> <wire from="(710,1480)" to="(710,1520)"/> <wire from="(470,1830)" to="(490,1830)"/> <wire from="(470,2150)" to="(490,2150)"/> <wire from="(590,190)" to="(610,190)"/> <wire from="(690,290)" to="(710,290)"/> <wire from="(630,2310)" to="(650,2310)"/> <wire from="(330,1200)" to="(360,1200)"/> <wire from="(160,1470)" to="(160,1640)"/> <wire from="(410,1130)" to="(430,1130)"/> <wire from="(410,280)" to="(410,450)"/> <wire from="(460,650)" to="(460,820)"/> <wire from="(240,2030)" to="(240,2200)"/> <wire from="(350,1180)" to="(350,1350)"/> <wire from="(280,2230)" to="(280,2400)"/> <wire from="(160,2320)" to="(180,2320)"/> <wire from="(420,1150)" to="(430,1150)"/> <wire from="(350,2200)" to="(360,2200)"/> <wire from="(610,1380)" to="(610,1440)"/> <wire from="(490,1420)" to="(490,1470)"/> <wire from="(440,2010)" to="(440,2070)"/> <wire from="(390,1190)" to="(460,1190)"/> <wire from="(510,1880)" to="(520,1880)"/> <wire from="(540,2390)" to="(550,2390)"/> <wire from="(490,300)" to="(490,370)"/> <wire from="(490,980)" to="(550,980)"/> <wire from="(320,1570)" to="(320,1640)"/> <wire from="(490,2580)" to="(550,2580)"/> <wire from="(590,120)" to="(650,120)"/> <wire from="(510,960)" to="(510,1030)"/> <wire from="(510,1980)" to="(550,1980)"/> <wire from="(510,930)" to="(610,930)"/> <wire from="(510,930)" to="(510,960)"/> <wire from="(330,1220)" to="(440,1220)"/> <wire from="(460,1840)" to="(460,1870)"/> <wire from="(420,1320)" to="(420,1350)"/> <wire from="(420,1520)" to="(710,1520)"/> <wire from="(200,1350)" to="(240,1350)"/> <wire from="(490,400)" to="(720,400)"/> <wire from="(630,950)" to="(630,1120)"/> <wire from="(710,970)" to="(710,1010)"/> <wire from="(630,1800)" to="(650,1800)"/> <wire from="(590,2400)" to="(610,2400)"/> <wire from="(690,2500)" to="(710,2500)"/> <wire from="(160,30)" to="(630,30)"/> <wire from="(410,620)" to="(430,620)"/> <wire from="(470,1320)" to="(490,1320)"/> <wire from="(470,1640)" to="(490,1640)"/> <wire from="(240,1520)" to="(240,1690)"/> <wire from="(280,1720)" to="(280,1890)"/> <wire from="(160,1810)" to="(180,1810)"/> <wire from="(420,640)" to="(430,640)"/> <wire from="(350,1690)" to="(360,1690)"/> <wire from="(320,2250)" to="(910,2250)"/> <wire from="(490,910)" to="(490,960)"/> <wire from="(610,870)" to="(610,930)"/> <wire from="(440,1500)" to="(440,1560)"/> <wire from="(390,200)" to="(460,200)"/> <wire from="(510,1370)" to="(520,1370)"/> <wire from="(540,1880)" to="(550,1880)"/> <wire from="(510,450)" to="(510,520)"/> <wire from="(490,470)" to="(550,470)"/> <wire from="(320,1060)" to="(320,1130)"/> <wire from="(120,2340)" to="(180,2340)"/> <wire from="(490,2070)" to="(550,2070)"/> <wire from="(510,100)" to="(510,110)"/> <wire from="(860,1080)" to="(860,1400)"/> <wire from="(490,2510)" to="(490,2580)"/> <wire from="(590,2330)" to="(650,2330)"/> <wire from="(320,1060)" to="(950,1060)"/> <wire from="(510,1470)" to="(550,1470)"/> <wire from="(200,2350)" to="(200,2370)"/> <wire from="(420,810)" to="(420,840)"/> <wire from="(420,1010)" to="(710,1010)"/> <wire from="(510,420)" to="(510,450)"/> <wire from="(460,1330)" to="(460,1360)"/> <wire from="(510,420)" to="(610,420)"/> <wire from="(710,460)" to="(710,500)"/> <wire from="(630,440)" to="(630,610)"/> <wire from="(590,1890)" to="(610,1890)"/> <wire from="(630,1290)" to="(650,1290)"/> <wire from="(160,70)" to="(160,1130)"/> <wire from="(690,1990)" to="(710,1990)"/> <wire from="(280,2060)" to="(300,2060)"/> <wire from="(410,110)" to="(430,110)"/> <wire from="(470,1130)" to="(490,1130)"/> <wire from="(470,810)" to="(490,810)"/> <wire from="(410,1980)" to="(410,2150)"/> <wire from="(280,1210)" to="(280,1380)"/> <wire from="(240,1010)" to="(240,1180)"/> <wire from="(160,1300)" to="(180,1300)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(350,1180)" to="(360,1180)"/> <wire from="(490,400)" to="(490,450)"/> <wire from="(610,360)" to="(610,420)"/> <wire from="(320,2150)" to="(320,2210)"/> <wire from="(510,860)" to="(520,860)"/> <wire from="(540,1370)" to="(550,1370)"/> <wire from="(120,1830)" to="(180,1830)"/> <wire from="(490,1560)" to="(550,1560)"/> <wire from="(590,1820)" to="(650,1820)"/> <wire from="(490,2000)" to="(490,2070)"/> <wire from="(510,960)" to="(550,960)"/> <wire from="(490,2100)" to="(720,2100)"/> <wire from="(200,1840)" to="(200,1860)"/> <wire from="(420,500)" to="(710,500)"/> <wire from="(420,300)" to="(420,330)"/> <wire from="(330,2390)" to="(360,2390)"/> <wire from="(630,780)" to="(650,780)"/> <wire from="(590,1380)" to="(610,1380)"/> <wire from="(690,1480)" to="(710,1480)"/> <wire from="(280,1550)" to="(300,1550)"/> <wire from="(470,620)" to="(490,620)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(410,2320)" to="(430,2320)"/> <wire from="(410,1470)" to="(410,1640)"/> <wire from="(510,350)" to="(520,350)"/> <wire from="(420,2340)" to="(430,2340)"/> <wire from="(350,2370)" to="(350,2550)"/> <wire from="(320,1640)" to="(320,1700)"/> <wire from="(390,2380)" to="(460,2380)"/> <wire from="(870,1090)" to="(950,1090)"/> <wire from="(540,860)" to="(550,860)"/> <wire from="(490,1050)" to="(550,1050)"/> <wire from="(120,1320)" to="(180,1320)"/> <wire from="(490,2170)" to="(550,2170)"/> <wire from="(590,1310)" to="(650,1310)"/> <wire from="(490,1490)" to="(490,1560)"/> <wire from="(510,2150)" to="(510,2220)"/> <wire from="(630,30)" to="(630,100)"/> <wire from="(490,1590)" to="(720,1590)"/> <wire from="(330,2410)" to="(440,2410)"/> <wire from="(510,2120)" to="(610,2120)"/> <wire from="(320,1740)" to="(880,1740)"/> <wire from="(510,2120)" to="(510,2150)"/> <wire from="(200,1330)" to="(200,1350)"/> <wire from="(220,2150)" to="(320,2150)"/> <wire from="(420,2510)" to="(420,2540)"/> <wire from="(510,450)" to="(550,450)"/> <wire from="(630,2140)" to="(630,2310)"/> <wire from="(710,2160)" to="(710,2200)"/> <wire from="(470,2510)" to="(490,2510)"/> <wire from="(590,870)" to="(610,870)"/> <wire from="(630,270)" to="(650,270)"/> <wire from="(690,970)" to="(710,970)"/> <wire from="(330,1880)" to="(360,1880)"/> <wire from="(160,2150)" to="(160,2320)"/> <wire from="(470,110)" to="(490,110)"/> <wire from="(410,1810)" to="(430,1810)"/> <wire from="(410,960)" to="(410,1130)"/> <wire from="(350,1860)" to="(350,2030)"/> <wire from="(870,1090)" to="(870,1570)"/> <wire from="(420,1830)" to="(430,1830)"/> <wire from="(610,2060)" to="(610,2120)"/> <wire from="(320,1130)" to="(320,1190)"/> <wire from="(490,2100)" to="(490,2150)"/> <wire from="(390,1870)" to="(460,1870)"/> <wire from="(540,350)" to="(550,350)"/> <wire from="(510,2560)" to="(520,2560)"/> <wire from="(280,170)" to="(340,170)"/> <wire from="(900,1120)" to="(950,1120)"/> <wire from="(490,980)" to="(490,1050)"/> <wire from="(490,540)" to="(550,540)"/> <wire from="(320,2250)" to="(320,2320)"/> <wire from="(490,1660)" to="(550,1660)"/> <wire from="(590,800)" to="(650,800)"/> <wire from="(510,1640)" to="(510,1710)"/> <wire from="(490,1080)" to="(720,1080)"/> <wire from="(510,1610)" to="(610,1610)"/> <wire from="(510,1610)" to="(510,1640)"/> <wire from="(460,2520)" to="(460,2550)"/> <wire from="(330,1900)" to="(440,1900)"/> <wire from="(220,1640)" to="(320,1640)"/> <wire from="(420,2000)" to="(420,2030)"/> <wire from="(420,2200)" to="(710,2200)"/> <wire from="(120,30)" to="(160,30)"/> <wire from="(200,2030)" to="(240,2030)"/> <wire from="(630,1630)" to="(630,1800)"/> <wire from="(120,170)" to="(280,170)"/> <wire from="(710,1650)" to="(710,1690)"/> <wire from="(470,2000)" to="(490,2000)"/> <wire from="(470,2320)" to="(490,2320)"/> <wire from="(590,360)" to="(610,360)"/> <wire from="(690,460)" to="(710,460)"/> <wire from="(630,2480)" to="(650,2480)"/> <wire from="(330,1370)" to="(360,1370)"/> <wire from="(160,1640)" to="(160,1810)"/> <wire from="(410,1300)" to="(430,1300)"/> <wire from="(410,450)" to="(410,620)"/> <wire from="(460,820)" to="(460,990)"/> <wire from="(970,1050)" to="(1000,1050)"/> <wire from="(240,2200)" to="(240,2370)"/> <wire from="(350,1350)" to="(350,1520)"/> <wire from="(350,2370)" to="(360,2370)"/> <wire from="(420,1320)" to="(430,1320)"/> <wire from="(280,2400)" to="(280,2580)"/> <wire from="(610,1550)" to="(610,1610)"/> <wire from="(490,1590)" to="(490,1640)"/> <wire from="(440,2180)" to="(440,2240)"/> <wire from="(390,1360)" to="(460,1360)"/> <wire from="(510,2050)" to="(520,2050)"/> <wire from="(540,2560)" to="(550,2560)"/> <wire from="(490,470)" to="(490,540)"/> <wire from="(320,1740)" to="(320,1810)"/> <wire from="(120,1010)" to="(240,1010)"/> <wire from="(490,1150)" to="(550,1150)"/> <wire from="(590,290)" to="(650,290)"/> <wire from="(510,1130)" to="(510,1200)"/> <wire from="(510,2150)" to="(550,2150)"/> <wire from="(510,1100)" to="(610,1100)"/> <wire from="(510,1100)" to="(510,1130)"/> <wire from="(330,1390)" to="(440,1390)"/> <wire from="(460,2010)" to="(460,2040)"/> <wire from="(420,1490)" to="(420,1520)"/> <wire from="(420,1690)" to="(710,1690)"/> <wire from="(200,1520)" to="(240,1520)"/> <wire from="(120,110)" to="(410,110)"/> <wire from="(490,570)" to="(720,570)"/> <wire from="(220,1130)" to="(320,1130)"/> <wire from="(630,1120)" to="(630,1290)"/> <wire from="(710,1140)" to="(710,1180)"/> <wire from="(470,1810)" to="(490,1810)"/> <wire from="(630,1970)" to="(650,1970)"/> <wire from="(590,2570)" to="(610,2570)"/> <wire from="(160,1130)" to="(160,1300)"/> <wire from="(410,790)" to="(430,790)"/> <wire from="(470,1490)" to="(490,1490)"/> <wire from="(320,1230)" to="(850,1230)"/> <wire from="(460,310)" to="(460,480)"/> <wire from="(240,1690)" to="(240,1860)"/> <wire from="(280,1890)" to="(280,2060)"/> <wire from="(160,1980)" to="(180,1980)"/> <wire from="(420,810)" to="(430,810)"/> <wire from="(350,1860)" to="(360,1860)"/> <wire from="(490,1080)" to="(490,1130)"/> <wire from="(610,1040)" to="(610,1100)"/> <wire from="(440,1670)" to="(440,1730)"/> <wire from="(510,1540)" to="(520,1540)"/> <wire from="(540,2050)" to="(550,2050)"/> <wire from="(490,640)" to="(550,640)"/> <wire from="(320,1230)" to="(320,1300)"/> <wire from="(490,2240)" to="(550,2240)"/> <wire from="(880,1100)" to="(880,1740)"/> <wire from="(510,620)" to="(510,690)"/> <wire from="(590,2500)" to="(650,2500)"/> <wire from="(510,1640)" to="(550,1640)"/> <wire from="(510,590)" to="(610,590)"/> <wire from="(510,590)" to="(510,620)"/> <wire from="(420,980)" to="(420,1010)"/> <wire from="(420,1180)" to="(710,1180)"/> <wire from="(460,1500)" to="(460,1530)"/> <wire from="(490,60)" to="(720,60)"/> <wire from="(710,630)" to="(710,670)"/> <wire from="(630,610)" to="(630,780)"/> <wire from="(590,2060)" to="(610,2060)"/> <wire from="(630,1460)" to="(650,1460)"/> <wire from="(690,2160)" to="(710,2160)"/> <wire from="(280,2230)" to="(300,2230)"/> <wire from="(410,280)" to="(430,280)"/> <wire from="(470,980)" to="(490,980)"/> <wire from="(470,1300)" to="(490,1300)"/> <wire from="(410,2150)" to="(410,2320)"/> <wire from="(280,1380)" to="(280,1550)"/> <wire from="(240,1180)" to="(240,1350)"/> <wire from="(160,1470)" to="(180,1470)"/> <wire from="(420,300)" to="(430,300)"/> <wire from="(350,1350)" to="(360,1350)"/> <wire from="(490,570)" to="(490,620)"/> <wire from="(610,530)" to="(610,590)"/> <wire from="(320,2320)" to="(320,2380)"/> <wire from="(320,2080)" to="(900,2080)"/> <wire from="(440,1160)" to="(440,1220)"/> <wire from="(510,1030)" to="(520,1030)"/> <wire from="(540,1540)" to="(550,1540)"/> <wire from="(510,110)" to="(510,180)"/> <wire from="(490,130)" to="(550,130)"/> <wire from="(120,2000)" to="(180,2000)"/> <wire from="(490,1730)" to="(550,1730)"/> <wire from="(590,1990)" to="(650,1990)"/> <wire from="(460,990)" to="(460,1000)"/> <wire from="(490,2170)" to="(490,2240)"/> <wire from="(350,210)" to="(350,1180)"/> <wire from="(510,1130)" to="(550,1130)"/> <wire from="(200,2010)" to="(200,2030)"/> <wire from="(490,2270)" to="(720,2270)"/> <wire from="(280,170)" to="(280,1210)"/> <wire from="(420,470)" to="(420,500)"/> <wire from="(420,670)" to="(710,670)"/> <wire from="(710,120)" to="(710,160)"/> <wire from="(630,100)" to="(630,270)"/> <wire from="(590,1550)" to="(610,1550)"/> <wire from="(630,950)" to="(650,950)"/> <wire from="(690,1650)" to="(710,1650)"/> <wire from="(280,1720)" to="(300,1720)"/> <wire from="(470,790)" to="(490,790)"/> <wire from="(470,470)" to="(490,470)"/> <wire from="(410,2490)" to="(430,2490)"/> <wire from="(860,1080)" to="(950,1080)"/> <wire from="(410,1640)" to="(410,1810)"/> <wire from="(510,520)" to="(520,520)"/> <wire from="(420,2510)" to="(430,2510)"/> <wire from="(490,60)" to="(490,110)"/> <wire from="(320,1810)" to="(320,1870)"/> <wire from="(540,1030)" to="(550,1030)"/> <wire from="(120,1490)" to="(180,1490)"/> <wire from="(490,1220)" to="(550,1220)"/> <wire from="(490,2340)" to="(550,2340)"/> <wire from="(590,1480)" to="(650,1480)"/> <wire from="(490,1660)" to="(490,1730)"/> <wire from="(510,2320)" to="(510,2390)"/> <wire from="(510,620)" to="(550,620)"/> <wire from="(490,1760)" to="(720,1760)"/> <wire from="(510,2290)" to="(610,2290)"/> <wire from="(510,2290)" to="(510,2320)"/> <wire from="(200,1500)" to="(200,1520)"/> <wire from="(420,160)" to="(710,160)"/> <wire from="(220,2320)" to="(320,2320)"/> <wire from="(630,2310)" to="(630,2480)"/> <wire from="(710,2330)" to="(710,2370)"/> <wire from="(330,2050)" to="(360,2050)"/> <wire from="(630,440)" to="(650,440)"/> <wire from="(590,1040)" to="(610,1040)"/> <wire from="(690,1140)" to="(710,1140)"/> <wire from="(280,1210)" to="(300,1210)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(410,1980)" to="(430,1980)"/> <wire from="(410,1130)" to="(410,1300)"/> <wire from="(350,2030)" to="(350,2200)"/> <wire from="(890,1110)" to="(890,1910)"/> <wire from="(420,2000)" to="(430,2000)"/> <wire from="(610,2230)" to="(610,2290)"/> <wire from="(320,1300)" to="(320,1360)"/> <wire from="(490,2270)" to="(490,2320)"/> <wire from="(390,2040)" to="(460,2040)"/> <wire from="(540,520)" to="(550,520)"/> <wire from="(490,1150)" to="(490,1220)"/> <wire from="(490,710)" to="(550,710)"/> <wire from="(890,1110)" to="(950,1110)"/> <wire from="(490,1830)" to="(550,1830)"/> <wire from="(590,970)" to="(650,970)"/> <wire from="(510,1810)" to="(510,1880)"/> <wire from="(340,170)" to="(340,190)"/> <wire from="(490,1250)" to="(720,1250)"/> <wire from="(330,2070)" to="(440,2070)"/> <wire from="(510,1780)" to="(610,1780)"/> <wire from="(510,1780)" to="(510,1810)"/> <wire from="(220,1810)" to="(320,1810)"/> <wire from="(420,2170)" to="(420,2200)"/> <wire from="(420,2370)" to="(710,2370)"/> <wire from="(200,2200)" to="(240,2200)"/> <wire from="(510,110)" to="(550,110)"/> <wire from="(320,1570)" to="(870,1570)"/> <wire from="(630,1800)" to="(630,1970)"/> <wire from="(710,1820)" to="(710,1860)"/> <wire from="(470,2170)" to="(490,2170)"/> <wire from="(470,2490)" to="(490,2490)"/> <wire from="(590,530)" to="(610,530)"/> <wire from="(280,2580)" to="(440,2580)"/> <wire from="(690,630)" to="(710,630)"/> <wire from="(330,1540)" to="(360,1540)"/> <wire from="(160,1810)" to="(160,1980)"/> <wire from="(410,1470)" to="(430,1470)"/> <wire from="(410,620)" to="(410,790)"/> <wire from="(350,1520)" to="(350,1690)"/> <wire from="(420,1490)" to="(430,1490)"/> <wire from="(610,1720)" to="(610,1780)"/> <wire from="(490,1760)" to="(490,1810)"/> <wire from="(440,2350)" to="(440,2410)"/> <wire from="(390,1530)" to="(460,1530)"/> <wire from="(510,2220)" to="(520,2220)"/> <wire from="(490,640)" to="(490,710)"/> <wire from="(490,200)" to="(550,200)"/> <wire from="(320,1910)" to="(320,1980)"/> <wire from="(490,1320)" to="(550,1320)"/> <wire from="(590,460)" to="(650,460)"/> <wire from="(510,1300)" to="(510,1370)"/> <wire from="(510,2320)" to="(550,2320)"/> <wire from="(510,1270)" to="(610,1270)"/> <wire from="(510,1270)" to="(510,1300)"/> <wire from="(460,2180)" to="(460,2210)"/> <wire from="(330,1560)" to="(440,1560)"/> <wire from="(120,210)" to="(350,210)"/> <wire from="(220,1300)" to="(320,1300)"/> <wire from="(420,1660)" to="(420,1690)"/> <wire from="(420,1860)" to="(710,1860)"/> <wire from="(200,1690)" to="(240,1690)"/> <wire from="(490,740)" to="(720,740)"/> <wire from="(630,1290)" to="(630,1460)"/> <wire from="(710,1310)" to="(710,1350)"/> <wire from="(470,1980)" to="(490,1980)"/> <wire from="(690,120)" to="(710,120)"/> <wire from="(630,2140)" to="(650,2140)"/> <wire from="(160,1300)" to="(160,1470)"/> <wire from="(410,960)" to="(430,960)"/> <wire from="(470,1660)" to="(490,1660)"/> <wire from="(410,110)" to="(410,280)"/> <wire from="(460,480)" to="(460,650)"/> <wire from="(240,1860)" to="(240,2030)"/> <wire from="(280,2060)" to="(280,2230)"/> <wire from="(160,2150)" to="(180,2150)"/> <wire from="(420,980)" to="(430,980)"/> <wire from="(350,2030)" to="(360,2030)"/> <wire from="(610,1210)" to="(610,1270)"/> <wire from="(490,1250)" to="(490,1300)"/> <wire from="(440,1840)" to="(440,1900)"/> <wire from="(510,1710)" to="(520,1710)"/> <wire from="(540,2220)" to="(550,2220)"/> <wire from="(490,130)" to="(490,200)"/> <wire from="(490,810)" to="(550,810)"/> <wire from="(320,1400)" to="(320,1470)"/> <wire from="(490,2410)" to="(550,2410)"/> <wire from="(510,790)" to="(510,860)"/> <wire from="(900,1120)" to="(900,2080)"/> <wire from="(510,1810)" to="(550,1810)"/> <wire from="(510,760)" to="(610,760)"/> <wire from="(510,760)" to="(510,790)"/> <wire from="(420,1150)" to="(420,1180)"/> <wire from="(460,1670)" to="(460,1700)"/> <wire from="(420,1350)" to="(710,1350)"/> <wire from="(200,1180)" to="(240,1180)"/> <wire from="(490,230)" to="(720,230)"/> <wire from="(710,800)" to="(710,840)"/> <wire from="(630,780)" to="(630,950)"/> <wire from="(630,1630)" to="(650,1630)"/> <wire from="(590,2230)" to="(610,2230)"/> <wire from="(690,2330)" to="(710,2330)"/> <wire from="(280,2400)" to="(300,2400)"/> <wire from="(410,450)" to="(430,450)"/> <wire from="(470,1150)" to="(490,1150)"/> <wire from="(470,1470)" to="(490,1470)"/> <wire from="(410,2320)" to="(410,2490)"/> <wire from="(280,1550)" to="(280,1720)"/> <wire from="(240,1350)" to="(240,1520)"/> <wire from="(160,1640)" to="(180,1640)"/> <wire from="(420,470)" to="(430,470)"/> <wire from="(350,1520)" to="(360,1520)"/> <wire from="(490,740)" to="(490,790)"/> <wire from="(610,700)" to="(610,760)"/> <wire from="(440,1330)" to="(440,1390)"/> <wire from="(510,1200)" to="(520,1200)"/> <wire from="(540,1710)" to="(550,1710)"/> <wire from="(510,280)" to="(510,350)"/> <wire from="(490,300)" to="(550,300)"/> <wire from="(120,2170)" to="(180,2170)"/> <wire from="(490,1900)" to="(550,1900)"/> <wire from="(490,2340)" to="(490,2410)"/> <wire from="(590,2160)" to="(650,2160)"/> <wire from="(510,1300)" to="(550,1300)"/> <wire from="(200,2180)" to="(200,2200)"/> <wire from="(850,1070)" to="(950,1070)"/> <wire from="(490,2440)" to="(720,2440)"/> <wire from="(420,640)" to="(420,670)"/> <wire from="(420,840)" to="(710,840)"/> <wire from="(510,250)" to="(510,280)"/> <wire from="(460,1160)" to="(460,1190)"/> <wire from="(510,250)" to="(610,250)"/> <wire from="(710,290)" to="(710,330)"/> <wire from="(630,270)" to="(630,440)"/> <wire from="(590,1720)" to="(610,1720)"/> <wire from="(630,1120)" to="(650,1120)"/> <wire from="(690,1820)" to="(710,1820)"/> <wire from="(340,190)" to="(360,190)"/> <wire from="(280,1890)" to="(300,1890)"/> <wire from="(470,960)" to="(490,960)"/> <wire from="(470,640)" to="(490,640)"/> <wire from="(410,1810)" to="(410,1980)"/> <wire from="(160,1130)" to="(180,1130)"/> <wire from="(350,210)" to="(360,210)"/> <wire from="(490,230)" to="(490,280)"/> <wire from="(610,190)" to="(610,250)"/> <wire from="(320,1980)" to="(320,2040)"/> <wire from="(510,690)" to="(520,690)"/> <wire from="(540,1200)" to="(550,1200)"/> <wire from="(320,1910)" to="(890,1910)"/> <wire from="(120,1660)" to="(180,1660)"/> <wire from="(490,1390)" to="(550,1390)"/> <wire from="(490,2510)" to="(550,2510)"/> <wire from="(590,1650)" to="(650,1650)"/> <wire from="(490,1830)" to="(490,1900)"/> <wire from="(510,2490)" to="(510,2560)"/> <wire from="(510,790)" to="(550,790)"/> <wire from="(490,1930)" to="(720,1930)"/> <wire from="(510,2460)" to="(610,2460)"/> <wire from="(510,2460)" to="(510,2490)"/> <wire from="(160,30)" to="(160,50)"/> <wire from="(200,1670)" to="(200,1690)"/> <wire from="(420,330)" to="(710,330)"/> <wire from="(420,130)" to="(420,160)"/> <wire from="(710,2500)" to="(710,2540)"/> <wire from="(330,2220)" to="(360,2220)"/> <wire from="(630,610)" to="(650,610)"/> <wire from="(590,1210)" to="(610,1210)"/> <wire from="(690,1310)" to="(710,1310)"/> <wire from="(280,1380)" to="(300,1380)"/> <wire from="(460,200)" to="(460,310)"/> <wire from="(470,450)" to="(490,450)"/> <wire from="(470,130)" to="(490,130)"/> <wire from="(410,2150)" to="(430,2150)"/> <wire from="(410,1300)" to="(410,1470)"/> <wire from="(350,2200)" to="(350,2370)"/> <wire from="(910,1130)" to="(910,2250)"/> <wire from="(510,180)" to="(520,180)"/> <wire from="(420,2170)" to="(430,2170)"/> <wire from="(610,2400)" to="(610,2460)"/> <wire from="(880,1100)" to="(950,1100)"/> <wire from="(320,1470)" to="(320,1530)"/> <wire from="(490,2440)" to="(490,2490)"/> <wire from="(390,2210)" to="(460,2210)"/> <wire from="(540,690)" to="(550,690)"/> <comp lib="4" loc="(470,1980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="1" loc="(590,1820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1700)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4012"/> </comp> <comp lib="4" loc="(470,2150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,2390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,2380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1530)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,2170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC12"/> </comp> <comp lib="0" loc="(720,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,1980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(300,1890)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(300,2230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(690,2310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,1760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC9"/> </comp> <comp lib="1" loc="(540,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,70)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,2440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A14"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,100)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,2330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1480)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(300,1380)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(720,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(470,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,2050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,2340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC13"/> </comp> <comp lib="1" loc="(390,1870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(300,1720)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(220,2320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(390,1190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,970)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1360)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A9"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(300,2060)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(220,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(970,1050)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(590,2060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,2270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A13"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,200)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1650)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,2220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(690,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,2160)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,1710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(470,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(300,1210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(690,1800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1000,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(720,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,2230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC7"/> </comp> <comp lib="6" loc="(641,2574)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="4" loc="(690,2140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1030)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,1550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,2490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(590,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,2560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,2500)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC10"/> </comp> <comp lib="0" loc="(510,100)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(590,1040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(300,1550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(590,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,870)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,2570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,2040)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC11"/> </comp> <comp lib="1" loc="(540,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(690,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(220,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,2100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A12"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,120)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="1" loc="(590,2400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,2210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1310)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,800)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC8"/> </comp> <comp lib="4" loc="(220,2150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,1630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A6"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(300,2400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(470,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,2320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,1970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(720,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A11"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,460)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,2480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC6"/> </comp> </circuit> <circuit name="DPCM_OUTPUT_COUNTER"> <a name="circuit" val="DPCM_OUTPUT_COUNTER"/> <a name="clabel" val="OUTPUT COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M110,41 Q114,51 118,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#c4c9ff" height="280" stroke="#000000" stroke-width="2" width="110" x="80" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="104" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="125">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="105">DSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="145">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="304">#BOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="164">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="185">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="204">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="225">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="245">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="264">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="285">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="304">DOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="64">DMC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="94">DMC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="124">DMC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="154">DMC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="185">DMC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="214">DMC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="244">DMC6</text> <circ-port height="8" pin="130,40" width="8" x="76" y="56"/> <circ-port height="8" pin="130,160" width="8" x="76" y="116"/> <circ-port height="8" pin="130,200" width="8" x="76" y="96"/> <circ-port height="8" pin="130,280" width="8" x="76" y="136"/> <circ-port height="8" pin="130,240" width="8" x="76" y="296"/> <circ-port height="8" pin="130,120" width="8" x="76" y="156"/> <circ-port height="8" pin="130,320" width="8" x="76" y="176"/> <circ-port height="8" pin="130,520" width="8" x="76" y="196"/> <circ-port height="8" pin="130,720" width="8" x="76" y="216"/> <circ-port height="8" pin="130,920" width="8" x="76" y="236"/> <circ-port height="8" pin="130,1120" width="8" x="76" y="256"/> <circ-port height="8" pin="130,1320" width="8" x="76" y="276"/> <circ-port height="10" pin="660,80" width="10" x="185" y="55"/> <circ-port height="10" pin="660,280" width="10" x="185" y="85"/> <circ-port height="10" pin="660,480" width="10" x="185" y="115"/> <circ-port height="10" pin="660,680" width="10" x="185" y="145"/> <circ-port height="10" pin="660,880" width="10" x="185" y="175"/> <circ-port height="10" pin="660,1080" width="10" x="185" y="205"/> <circ-port height="10" pin="660,1280" width="10" x="185" y="235"/> <circ-port height="10" pin="660,1410" width="10" x="185" y="295"/> <circ-anchor facing="east" height="6" width="6" x="147" y="37"/> </appear> <wire from="(560,40)" to="(560,310)"/> <wire from="(350,920)" to="(350,1120)"/> <wire from="(350,520)" to="(350,720)"/> <wire from="(130,1320)" to="(240,1320)"/> <wire from="(130,920)" to="(240,920)"/> <wire from="(130,520)" to="(240,520)"/> <wire from="(330,1030)" to="(500,1030)"/> <wire from="(330,630)" to="(500,630)"/> <wire from="(330,1430)" to="(500,1430)"/> <wire from="(320,40)" to="(560,40)"/> <wire from="(540,380)" to="(540,400)"/> <wire from="(540,1180)" to="(540,1200)"/> <wire from="(540,780)" to="(540,800)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(560,910)" to="(580,910)"/> <wire from="(560,1310)" to="(580,1310)"/> <wire from="(620,410)" to="(640,410)"/> <wire from="(620,1210)" to="(640,1210)"/> <wire from="(620,810)" to="(640,810)"/> <wire from="(250,990)" to="(280,990)"/> <wire from="(250,590)" to="(280,590)"/> <wire from="(250,1390)" to="(280,1390)"/> <wire from="(480,480)" to="(480,520)"/> <wire from="(460,940)" to="(460,980)"/> <wire from="(480,1280)" to="(480,1320)"/> <wire from="(460,540)" to="(460,580)"/> <wire from="(460,1340)" to="(460,1380)"/> <wire from="(480,880)" to="(480,920)"/> <wire from="(240,1120)" to="(240,1180)"/> <wire from="(390,550)" to="(390,610)"/> <wire from="(390,1350)" to="(390,1410)"/> <wire from="(390,950)" to="(390,1010)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(240,320)" to="(240,380)"/> <wire from="(270,970)" to="(270,1170)"/> <wire from="(270,570)" to="(270,770)"/> <wire from="(330,1030)" to="(330,1230)"/> <wire from="(330,630)" to="(330,830)"/> <wire from="(540,600)" to="(580,600)"/> <wire from="(540,1400)" to="(580,1400)"/> <wire from="(540,1000)" to="(580,1000)"/> <wire from="(370,340)" to="(370,360)"/> <wire from="(370,740)" to="(370,760)"/> <wire from="(370,1140)" to="(370,1160)"/> <wire from="(460,460)" to="(460,540)"/> <wire from="(460,1260)" to="(460,1340)"/> <wire from="(460,860)" to="(460,940)"/> <wire from="(320,80)" to="(340,80)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,740)" to="(440,740)"/> <wire from="(480,720)" to="(500,720)"/> <wire from="(480,320)" to="(500,320)"/> <wire from="(480,1120)" to="(500,1120)"/> <wire from="(370,940)" to="(380,940)"/> <wire from="(370,1340)" to="(380,1340)"/> <wire from="(370,540)" to="(380,540)"/> <wire from="(370,1360)" to="(640,1360)"/> <wire from="(370,960)" to="(640,960)"/> <wire from="(370,560)" to="(640,560)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(640,610)" to="(640,660)"/> <wire from="(560,910)" to="(560,1110)"/> <wire from="(560,510)" to="(560,710)"/> <wire from="(440,610)" to="(500,610)"/> <wire from="(440,1410)" to="(500,1410)"/> <wire from="(440,1010)" to="(500,1010)"/> <wire from="(210,400)" to="(210,600)"/> <wire from="(210,1200)" to="(210,1400)"/> <wire from="(210,800)" to="(210,1000)"/> <wire from="(540,730)" to="(580,730)"/> <wire from="(540,1130)" to="(580,1130)"/> <wire from="(540,330)" to="(580,330)"/> <wire from="(420,80)" to="(660,80)"/> <wire from="(410,1150)" to="(410,1180)"/> <wire from="(410,350)" to="(410,380)"/> <wire from="(410,750)" to="(410,780)"/> <wire from="(130,120)" to="(360,120)"/> <wire from="(620,510)" to="(640,510)"/> <wire from="(620,910)" to="(640,910)"/> <wire from="(620,1310)" to="(640,1310)"/> <wire from="(270,970)" to="(280,970)"/> <wire from="(270,1370)" to="(280,1370)"/> <wire from="(270,570)" to="(280,570)"/> <wire from="(210,160)" to="(210,400)"/> <wire from="(440,540)" to="(440,610)"/> <wire from="(440,1340)" to="(440,1410)"/> <wire from="(440,940)" to="(440,1010)"/> <wire from="(210,160)" to="(400,160)"/> <wire from="(420,720)" to="(480,720)"/> <wire from="(420,320)" to="(480,320)"/> <wire from="(420,1120)" to="(480,1120)"/> <wire from="(460,1060)" to="(640,1060)"/> <wire from="(480,280)" to="(660,280)"/> <wire from="(480,1080)" to="(660,1080)"/> <wire from="(480,680)" to="(660,680)"/> <wire from="(460,660)" to="(640,660)"/> <wire from="(540,1020)" to="(580,1020)"/> <wire from="(540,1420)" to="(580,1420)"/> <wire from="(540,620)" to="(580,620)"/> <wire from="(310,380)" to="(410,380)"/> <wire from="(310,1180)" to="(410,1180)"/> <wire from="(310,780)" to="(410,780)"/> <wire from="(460,940)" to="(500,940)"/> <wire from="(460,780)" to="(500,780)"/> <wire from="(460,380)" to="(500,380)"/> <wire from="(460,540)" to="(500,540)"/> <wire from="(460,1340)" to="(500,1340)"/> <wire from="(460,1180)" to="(500,1180)"/> <wire from="(520,1180)" to="(540,1180)"/> <wire from="(520,380)" to="(540,380)"/> <wire from="(520,780)" to="(540,780)"/> <wire from="(350,1320)" to="(380,1320)"/> <wire from="(350,520)" to="(380,520)"/> <wire from="(350,920)" to="(380,920)"/> <wire from="(250,1210)" to="(390,1210)"/> <wire from="(250,410)" to="(390,410)"/> <wire from="(250,810)" to="(390,810)"/> <wire from="(210,400)" to="(220,400)"/> <wire from="(210,1200)" to="(220,1200)"/> <wire from="(210,800)" to="(220,800)"/> <wire from="(640,710)" to="(640,760)"/> <wire from="(640,1110)" to="(640,1160)"/> <wire from="(640,310)" to="(640,360)"/> <wire from="(350,320)" to="(350,520)"/> <wire from="(350,1120)" to="(350,1320)"/> <wire from="(350,720)" to="(350,920)"/> <wire from="(130,1120)" to="(240,1120)"/> <wire from="(130,720)" to="(240,720)"/> <wire from="(130,320)" to="(240,320)"/> <wire from="(330,430)" to="(500,430)"/> <wire from="(330,1230)" to="(500,1230)"/> <wire from="(330,830)" to="(500,830)"/> <wire from="(540,580)" to="(540,600)"/> <wire from="(540,1380)" to="(540,1400)"/> <wire from="(540,980)" to="(540,1000)"/> <wire from="(250,390)" to="(280,390)"/> <wire from="(560,710)" to="(580,710)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(560,1110)" to="(580,1110)"/> <wire from="(620,610)" to="(640,610)"/> <wire from="(620,1010)" to="(640,1010)"/> <wire from="(250,1190)" to="(280,1190)"/> <wire from="(250,790)" to="(280,790)"/> <wire from="(320,40)" to="(320,80)"/> <wire from="(460,740)" to="(460,780)"/> <wire from="(480,280)" to="(480,320)"/> <wire from="(480,1080)" to="(480,1120)"/> <wire from="(460,340)" to="(460,380)"/> <wire from="(460,1140)" to="(460,1180)"/> <wire from="(480,680)" to="(480,720)"/> <wire from="(240,1320)" to="(240,1380)"/> <wire from="(240,920)" to="(240,980)"/> <wire from="(390,750)" to="(390,810)"/> <wire from="(390,350)" to="(390,410)"/> <wire from="(390,1150)" to="(390,1210)"/> <wire from="(240,520)" to="(240,580)"/> <wire from="(270,370)" to="(270,570)"/> <wire from="(270,1170)" to="(270,1370)"/> <wire from="(270,770)" to="(270,970)"/> <wire from="(330,430)" to="(330,630)"/> <wire from="(330,1230)" to="(330,1430)"/> <wire from="(330,830)" to="(330,1030)"/> <wire from="(540,400)" to="(580,400)"/> <wire from="(540,1200)" to="(580,1200)"/> <wire from="(540,800)" to="(580,800)"/> <wire from="(370,540)" to="(370,560)"/> <wire from="(370,1340)" to="(370,1360)"/> <wire from="(370,940)" to="(370,960)"/> <wire from="(460,660)" to="(460,740)"/> <wire from="(460,260)" to="(460,340)"/> <wire from="(460,1060)" to="(460,1140)"/> <wire from="(130,200)" to="(350,200)"/> <wire from="(360,80)" to="(380,80)"/> <wire from="(420,540)" to="(440,540)"/> <wire from="(420,940)" to="(440,940)"/> <wire from="(420,1340)" to="(440,1340)"/> <wire from="(480,920)" to="(500,920)"/> <wire from="(480,520)" to="(500,520)"/> <wire from="(480,1320)" to="(500,1320)"/> <wire from="(370,1140)" to="(380,1140)"/> <wire from="(130,160)" to="(210,160)"/> <wire from="(370,340)" to="(380,340)"/> <wire from="(370,740)" to="(380,740)"/> <wire from="(370,760)" to="(640,760)"/> <wire from="(370,1160)" to="(640,1160)"/> <wire from="(370,360)" to="(640,360)"/> <wire from="(640,810)" to="(640,860)"/> <wire from="(640,1210)" to="(640,1260)"/> <wire from="(640,410)" to="(640,460)"/> <wire from="(330,240)" to="(330,430)"/> <wire from="(560,710)" to="(560,910)"/> <wire from="(560,310)" to="(560,510)"/> <wire from="(560,1110)" to="(560,1310)"/> <wire from="(440,410)" to="(500,410)"/> <wire from="(440,1210)" to="(500,1210)"/> <wire from="(440,810)" to="(500,810)"/> <wire from="(210,1000)" to="(210,1200)"/> <wire from="(210,600)" to="(210,800)"/> <wire from="(540,1330)" to="(580,1330)"/> <wire from="(540,530)" to="(580,530)"/> <wire from="(540,930)" to="(580,930)"/> <wire from="(360,100)" to="(360,120)"/> <wire from="(620,1410)" to="(660,1410)"/> <wire from="(410,950)" to="(410,980)"/> <wire from="(410,1350)" to="(410,1380)"/> <wire from="(410,550)" to="(410,580)"/> <wire from="(270,280)" to="(270,370)"/> <wire from="(620,1110)" to="(640,1110)"/> <wire from="(620,310)" to="(640,310)"/> <wire from="(620,710)" to="(640,710)"/> <wire from="(270,770)" to="(280,770)"/> <wire from="(270,1170)" to="(280,1170)"/> <wire from="(270,370)" to="(280,370)"/> <wire from="(130,280)" to="(270,280)"/> <wire from="(350,200)" to="(350,320)"/> <wire from="(440,340)" to="(440,410)"/> <wire from="(130,40)" to="(320,40)"/> <wire from="(440,740)" to="(440,810)"/> <wire from="(440,1140)" to="(440,1210)"/> <wire from="(420,520)" to="(480,520)"/> <wire from="(420,920)" to="(480,920)"/> <wire from="(420,1320)" to="(480,1320)"/> <wire from="(460,860)" to="(640,860)"/> <wire from="(460,1260)" to="(640,1260)"/> <wire from="(480,880)" to="(660,880)"/> <wire from="(460,460)" to="(640,460)"/> <wire from="(480,1280)" to="(660,1280)"/> <wire from="(480,480)" to="(660,480)"/> <wire from="(540,820)" to="(580,820)"/> <wire from="(540,420)" to="(580,420)"/> <wire from="(540,1220)" to="(580,1220)"/> <wire from="(310,580)" to="(410,580)"/> <wire from="(310,980)" to="(410,980)"/> <wire from="(310,1380)" to="(410,1380)"/> <wire from="(460,740)" to="(500,740)"/> <wire from="(460,580)" to="(500,580)"/> <wire from="(460,1380)" to="(500,1380)"/> <wire from="(460,980)" to="(500,980)"/> <wire from="(460,1140)" to="(500,1140)"/> <wire from="(460,340)" to="(500,340)"/> <wire from="(520,980)" to="(540,980)"/> <wire from="(520,1380)" to="(540,1380)"/> <wire from="(520,580)" to="(540,580)"/> <wire from="(350,320)" to="(380,320)"/> <wire from="(350,1120)" to="(380,1120)"/> <wire from="(350,720)" to="(380,720)"/> <wire from="(360,100)" to="(380,100)"/> <wire from="(250,1010)" to="(390,1010)"/> <wire from="(250,610)" to="(390,610)"/> <wire from="(250,1410)" to="(390,1410)"/> <wire from="(400,110)" to="(400,160)"/> <wire from="(210,1000)" to="(220,1000)"/> <wire from="(210,600)" to="(220,600)"/> <wire from="(210,1400)" to="(220,1400)"/> <wire from="(640,1310)" to="(640,1360)"/> <wire from="(640,910)" to="(640,960)"/> <wire from="(130,240)" to="(330,240)"/> <wire from="(640,510)" to="(640,560)"/> <comp lib="0" loc="(130,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSTEP"/> </comp> <comp lib="4" loc="(620,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,730)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(620,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(220,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(660,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(620,1310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(520,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(660,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,1420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,1280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(520,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(620,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(620,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(460,260)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(310,780)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,1380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1020)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(310,380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(620,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,1400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(620,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(420,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(660,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(620,310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(310,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,1200)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(310,1180)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(420,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1130)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#BOUT"/> </comp> <comp lib="1" loc="(310,1380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,800)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(660,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1220)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(220,400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(220,600)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,620)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(620,1110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(540,530)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,1010)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(310,580)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(660,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_SHIFT_REGISTER"> <a name="circuit" val="DPCM_SAMPLE_SHIFT_REGISTER"/> <a name="clabel" val="SAMPLE SHIFT REGISTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M69,41 Q73,51 77,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#60ffd7" height="300" stroke="#000000" stroke-width="2" width="110" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="134" y="64">#BOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="304">PCM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="284">BLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="265">BSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="105">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="125">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="145">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="165">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="185">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="205">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="225">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="245">D7</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,280" width="8" x="46" y="96"/> <circ-port height="8" pin="90,410" width="8" x="46" y="116"/> <circ-port height="8" pin="90,540" width="8" x="46" y="136"/> <circ-port height="8" pin="90,670" width="8" x="46" y="156"/> <circ-port height="8" pin="90,800" width="8" x="46" y="176"/> <circ-port height="8" pin="90,930" width="8" x="46" y="196"/> <circ-port height="8" pin="90,1060" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1190" width="8" x="46" y="236"/> <circ-port height="8" pin="90,110" width="8" x="46" y="256"/> <circ-port height="8" pin="90,190" width="8" x="46" y="276"/> <circ-port height="8" pin="90,150" width="8" x="46" y="316"/> <circ-port height="8" pin="90,230" width="8" x="46" y="296"/> <circ-port height="10" pin="670,260" width="10" x="155" y="55"/> <circ-port height="10" pin="950,40" width="10" x="155" y="65"/> <circ-anchor facing="east" height="6" width="6" x="117" y="37"/> </appear> <wire from="(440,1000)" to="(820,1000)"/> <wire from="(380,1000)" to="(380,1130)"/> <wire from="(450,910)" to="(450,1040)"/> <wire from="(310,450)" to="(310,580)"/> <wire from="(230,1090)" to="(230,1220)"/> <wire from="(560,780)" to="(560,910)"/> <wire from="(380,150)" to="(380,350)"/> <wire from="(430,730)" to="(600,730)"/> <wire from="(350,670)" to="(350,690)"/> <wire from="(470,1010)" to="(640,1010)"/> <wire from="(470,1060)" to="(470,1140)"/> <wire from="(190,1070)" to="(190,1090)"/> <wire from="(190,440)" to="(230,440)"/> <wire from="(620,940)" to="(620,960)"/> <wire from="(360,850)" to="(400,850)"/> <wire from="(450,390)" to="(480,390)"/> <wire from="(310,580)" to="(330,580)"/> <wire from="(380,1130)" to="(400,1130)"/> <wire from="(560,260)" to="(590,260)"/> <wire from="(150,260)" to="(170,260)"/> <wire from="(440,1000)" to="(440,1040)"/> <wire from="(90,670)" to="(170,670)"/> <wire from="(470,670)" to="(480,670)"/> <wire from="(520,1190)" to="(590,1190)"/> <wire from="(210,540)" to="(350,540)"/> <wire from="(640,880)" to="(640,930)"/> <wire from="(360,830)" to="(620,830)"/> <wire from="(600,680)" to="(600,730)"/> <wire from="(790,250)" to="(870,250)"/> <wire from="(630,670)" to="(640,670)"/> <wire from="(150,260)" to="(150,390)"/> <wire from="(380,1130)" to="(380,1260)"/> <wire from="(450,1040)" to="(450,1170)"/> <wire from="(310,580)" to="(310,710)"/> <wire from="(560,910)" to="(560,1040)"/> <wire from="(350,800)" to="(350,820)"/> <wire from="(430,860)" to="(600,860)"/> <wire from="(470,1140)" to="(640,1140)"/> <wire from="(230,230)" to="(230,310)"/> <wire from="(190,1200)" to="(190,1220)"/> <wire from="(210,390)" to="(440,390)"/> <wire from="(190,570)" to="(230,570)"/> <wire from="(620,1070)" to="(620,1090)"/> <wire from="(360,980)" to="(400,980)"/> <wire from="(560,110)" to="(560,260)"/> <wire from="(450,30)" to="(450,260)"/> <wire from="(450,520)" to="(480,520)"/> <wire from="(890,40)" to="(890,210)"/> <wire from="(310,710)" to="(330,710)"/> <wire from="(380,1260)" to="(400,1260)"/> <wire from="(560,390)" to="(590,390)"/> <wire from="(800,260)" to="(800,740)"/> <wire from="(150,390)" to="(170,390)"/> <wire from="(440,1130)" to="(440,1170)"/> <wire from="(90,800)" to="(170,800)"/> <wire from="(470,800)" to="(480,800)"/> <wire from="(520,280)" to="(590,280)"/> <wire from="(90,230)" to="(230,230)"/> <wire from="(210,670)" to="(350,670)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(360,960)" to="(620,960)"/> <wire from="(600,810)" to="(600,860)"/> <wire from="(630,800)" to="(640,800)"/> <wire from="(150,390)" to="(150,520)"/> <wire from="(230,310)" to="(230,440)"/> <wire from="(820,280)" to="(870,280)"/> <wire from="(310,710)" to="(310,840)"/> <wire from="(440,870)" to="(810,870)"/> <wire from="(560,1040)" to="(560,1170)"/> <wire from="(350,930)" to="(350,950)"/> <wire from="(430,990)" to="(600,990)"/> <wire from="(630,260)" to="(670,260)"/> <wire from="(470,280)" to="(470,360)"/> <wire from="(770,230)" to="(870,230)"/> <wire from="(190,290)" to="(190,310)"/> <wire from="(210,520)" to="(440,520)"/> <wire from="(190,700)" to="(230,700)"/> <wire from="(620,1200)" to="(620,1220)"/> <wire from="(360,1110)" to="(400,1110)"/> <wire from="(90,150)" to="(380,150)"/> <wire from="(120,210)" to="(280,210)"/> <wire from="(450,650)" to="(480,650)"/> <wire from="(310,840)" to="(330,840)"/> <wire from="(380,350)" to="(400,350)"/> <wire from="(560,520)" to="(590,520)"/> <wire from="(440,500)" to="(780,500)"/> <wire from="(150,520)" to="(170,520)"/> <wire from="(440,350)" to="(770,350)"/> <wire from="(90,930)" to="(170,930)"/> <wire from="(470,930)" to="(480,930)"/> <wire from="(520,410)" to="(590,410)"/> <wire from="(210,800)" to="(350,800)"/> <wire from="(640,1140)" to="(640,1190)"/> <wire from="(360,1090)" to="(620,1090)"/> <wire from="(600,940)" to="(600,990)"/> <wire from="(350,220)" to="(870,220)"/> <wire from="(630,930)" to="(640,930)"/> <wire from="(150,520)" to="(150,650)"/> <wire from="(230,440)" to="(230,570)"/> <wire from="(450,260)" to="(450,390)"/> <wire from="(310,840)" to="(310,970)"/> <wire from="(380,350)" to="(380,480)"/> <wire from="(350,1060)" to="(350,1080)"/> <wire from="(430,1120)" to="(600,1120)"/> <wire from="(470,360)" to="(640,360)"/> <wire from="(810,270)" to="(810,870)"/> <wire from="(470,410)" to="(470,490)"/> <wire from="(190,420)" to="(190,440)"/> <wire from="(210,650)" to="(440,650)"/> <wire from="(190,830)" to="(230,830)"/> <wire from="(620,290)" to="(620,310)"/> <wire from="(360,1240)" to="(400,1240)"/> <wire from="(450,780)" to="(480,780)"/> <wire from="(310,970)" to="(330,970)"/> <wire from="(380,480)" to="(400,480)"/> <wire from="(560,650)" to="(590,650)"/> <wire from="(150,650)" to="(170,650)"/> <wire from="(440,350)" to="(440,390)"/> <wire from="(90,1060)" to="(170,1060)"/> <wire from="(470,1060)" to="(480,1060)"/> <wire from="(520,540)" to="(590,540)"/> <wire from="(770,230)" to="(770,350)"/> <wire from="(800,260)" to="(870,260)"/> <wire from="(210,930)" to="(350,930)"/> <wire from="(360,1220)" to="(620,1220)"/> <wire from="(600,1070)" to="(600,1120)"/> <wire from="(630,1060)" to="(640,1060)"/> <wire from="(150,650)" to="(150,780)"/> <wire from="(230,570)" to="(230,700)"/> <wire from="(450,390)" to="(450,520)"/> <wire from="(310,970)" to="(310,1100)"/> <wire from="(380,480)" to="(380,610)"/> <wire from="(890,40)" to="(950,40)"/> <wire from="(560,260)" to="(560,390)"/> <wire from="(350,1190)" to="(350,1210)"/> <wire from="(430,1250)" to="(600,1250)"/> <wire from="(470,490)" to="(640,490)"/> <wire from="(470,540)" to="(470,620)"/> <wire from="(190,550)" to="(190,570)"/> <wire from="(210,780)" to="(440,780)"/> <wire from="(190,960)" to="(230,960)"/> <wire from="(150,30)" to="(150,60)"/> <wire from="(620,420)" to="(620,440)"/> <wire from="(360,330)" to="(400,330)"/> <wire from="(440,740)" to="(800,740)"/> <wire from="(120,1270)" to="(280,1270)"/> <wire from="(450,910)" to="(480,910)"/> <wire from="(90,190)" to="(310,190)"/> <wire from="(310,1100)" to="(330,1100)"/> <wire from="(560,780)" to="(590,780)"/> <wire from="(380,610)" to="(400,610)"/> <wire from="(150,780)" to="(170,780)"/> <wire from="(90,1190)" to="(170,1190)"/> <wire from="(520,670)" to="(590,670)"/> <wire from="(210,1060)" to="(350,1060)"/> <wire from="(210,260)" to="(350,260)"/> <wire from="(360,310)" to="(620,310)"/> <wire from="(600,1200)" to="(600,1250)"/> <wire from="(640,360)" to="(640,410)"/> <wire from="(630,1190)" to="(640,1190)"/> <wire from="(150,780)" to="(150,910)"/> <wire from="(230,700)" to="(230,830)"/> <wire from="(380,610)" to="(380,740)"/> <wire from="(450,520)" to="(450,650)"/> <wire from="(310,1100)" to="(310,1230)"/> <wire from="(560,390)" to="(560,520)"/> <wire from="(430,340)" to="(600,340)"/> <wire from="(470,620)" to="(640,620)"/> <wire from="(350,280)" to="(350,300)"/> <wire from="(830,290)" to="(870,290)"/> <wire from="(150,30)" to="(450,30)"/> <wire from="(470,670)" to="(470,750)"/> <wire from="(190,680)" to="(190,700)"/> <wire from="(210,910)" to="(440,910)"/> <wire from="(190,1090)" to="(230,1090)"/> <wire from="(820,280)" to="(820,1000)"/> <wire from="(620,550)" to="(620,570)"/> <wire from="(360,460)" to="(400,460)"/> <wire from="(280,210)" to="(280,1270)"/> <wire from="(450,1040)" to="(480,1040)"/> <wire from="(120,210)" to="(120,1270)"/> <wire from="(310,1230)" to="(330,1230)"/> <wire from="(560,910)" to="(590,910)"/> <wire from="(380,740)" to="(400,740)"/> <wire from="(90,110)" to="(560,110)"/> <wire from="(780,240)" to="(870,240)"/> <wire from="(150,910)" to="(170,910)"/> <wire from="(440,610)" to="(440,650)"/> <wire from="(90,280)" to="(170,280)"/> <wire from="(470,280)" to="(480,280)"/> <wire from="(520,800)" to="(590,800)"/> <wire from="(210,1190)" to="(350,1190)"/> <wire from="(360,440)" to="(620,440)"/> <wire from="(600,290)" to="(600,340)"/> <wire from="(640,490)" to="(640,540)"/> <wire from="(440,1130)" to="(830,1130)"/> <wire from="(150,910)" to="(150,1040)"/> <wire from="(230,830)" to="(230,960)"/> <wire from="(420,1190)" to="(480,1190)"/> <wire from="(380,740)" to="(380,870)"/> <wire from="(450,650)" to="(450,780)"/> <wire from="(310,190)" to="(310,320)"/> <wire from="(560,520)" to="(560,650)"/> <wire from="(780,240)" to="(780,500)"/> <wire from="(430,470)" to="(600,470)"/> <wire from="(470,750)" to="(640,750)"/> <wire from="(350,410)" to="(350,430)"/> <wire from="(440,500)" to="(440,520)"/> <wire from="(470,800)" to="(470,880)"/> <wire from="(190,810)" to="(190,830)"/> <wire from="(210,1040)" to="(440,1040)"/> <wire from="(190,1220)" to="(230,1220)"/> <wire from="(620,680)" to="(620,700)"/> <wire from="(360,590)" to="(400,590)"/> <wire from="(450,1170)" to="(480,1170)"/> <wire from="(440,610)" to="(790,610)"/> <wire from="(310,320)" to="(330,320)"/> <wire from="(560,1040)" to="(590,1040)"/> <wire from="(380,870)" to="(400,870)"/> <wire from="(150,1040)" to="(170,1040)"/> <wire from="(440,740)" to="(440,780)"/> <wire from="(90,410)" to="(170,410)"/> <wire from="(470,410)" to="(480,410)"/> <wire from="(520,930)" to="(590,930)"/> <wire from="(210,280)" to="(350,280)"/> <wire from="(360,570)" to="(620,570)"/> <wire from="(600,420)" to="(600,470)"/> <wire from="(640,620)" to="(640,670)"/> <wire from="(630,410)" to="(640,410)"/> <wire from="(150,1040)" to="(150,1170)"/> <wire from="(230,960)" to="(230,1090)"/> <wire from="(380,870)" to="(380,1000)"/> <wire from="(830,290)" to="(830,1130)"/> <wire from="(450,780)" to="(450,910)"/> <wire from="(90,30)" to="(150,30)"/> <wire from="(310,320)" to="(310,450)"/> <wire from="(810,270)" to="(870,270)"/> <wire from="(560,650)" to="(560,780)"/> <wire from="(430,600)" to="(600,600)"/> <wire from="(350,540)" to="(350,560)"/> <wire from="(470,880)" to="(640,880)"/> <wire from="(470,930)" to="(470,1010)"/> <wire from="(190,940)" to="(190,960)"/> <wire from="(210,1170)" to="(440,1170)"/> <wire from="(190,310)" to="(230,310)"/> <wire from="(620,810)" to="(620,830)"/> <wire from="(360,720)" to="(400,720)"/> <wire from="(450,260)" to="(480,260)"/> <wire from="(790,250)" to="(790,610)"/> <wire from="(310,450)" to="(330,450)"/> <wire from="(380,1000)" to="(400,1000)"/> <wire from="(560,1170)" to="(590,1170)"/> <wire from="(350,220)" to="(350,260)"/> <wire from="(150,1170)" to="(170,1170)"/> <wire from="(440,870)" to="(440,910)"/> <wire from="(90,540)" to="(170,540)"/> <wire from="(470,540)" to="(480,540)"/> <wire from="(520,1060)" to="(590,1060)"/> <wire from="(150,80)" to="(150,260)"/> <wire from="(210,410)" to="(350,410)"/> <wire from="(640,750)" to="(640,800)"/> <wire from="(360,700)" to="(620,700)"/> <wire from="(600,550)" to="(600,600)"/> <wire from="(630,540)" to="(640,540)"/> <comp lib="2" loc="(330,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(420,1190)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(520,270)" name="D-latch"/> <comp lib="4" loc="(630,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,920)" name="D-latch"/> <comp lib="4" loc="(210,260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,1250)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(520,400)" name="D-latch"/> <comp lib="4" loc="(630,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(950,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(430,600)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,530)" name="D-latch"/> <comp loc="(520,1180)" name="D-latch"/> <comp lib="1" loc="(430,340)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(210,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,1050)" name="D-latch"/> <comp lib="4" loc="(630,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(199,1250)" name="Text"> <a name="text" val="SAMPLE REGISTER"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="0" loc="(90,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(90,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="1" loc="(430,990)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(210,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BSTEP"/> </comp> <comp lib="4" loc="(630,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,450)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(330,1100)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(430,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(330,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="4" loc="(210,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,970)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(330,710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#BOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(210,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(890,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(630,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,80)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,1120)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLOAD"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCM"/> </comp> <comp lib="2" loc="(330,320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(520,790)" name="D-latch"/> <comp lib="1" loc="(430,860)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(210,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,660)" name="D-latch"/> <comp lib="1" loc="(430,470)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="SPRITE_DMA"> <a name="circuit" val="SPRITE_DMA"/> <a name="clabel" val="SPRITE DMA"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M81,51 Q85,61 89,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b4ff58" height="550" stroke="#000000" stroke-width="2" width="520" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="189" y="83">DMCA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="120" y="67">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="66">14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="499">CPUA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="60" y="424">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="574">15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="344">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="273">DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="174">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="154">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="339" y="68">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="68">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="464" y="68">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="74">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="134">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="365">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="405">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="558" y="214">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="556" y="364">15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="514" y="292">ADDRESS BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="538" y="74">R/W EXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="553" y="114">WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="550" y="544">RDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="160" y="590">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="590">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="588">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="401" y="588">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="194" y="570">DMA DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="569">DMA DATA OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="281" y="540">SPRITE DMA BUFFER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="385">/DBGRD</text> <circ-port height="8" pin="90,80" width="8" x="46" y="66"/> <circ-port height="8" pin="90,110" width="8" x="46" y="86"/> <circ-port height="8" pin="90,20" width="8" x="46" y="106"/> <circ-port height="8" pin="90,50" width="8" x="46" y="126"/> <circ-port height="8" pin="90,150" width="8" x="46" y="356"/> <circ-port height="8" pin="90,510" width="8" x="46" y="396"/> <circ-port height="8" pin="90,330" width="8" x="46" y="196"/> <circ-port height="8" pin="90,350" width="8" x="46" y="216"/> <circ-port height="8" pin="90,370" width="8" x="46" y="236"/> <circ-port height="8" pin="90,390" width="8" x="46" y="256"/> <circ-port height="8" pin="90,410" width="8" x="46" y="276"/> <circ-port height="8" pin="90,430" width="8" x="46" y="296"/> <circ-port height="8" pin="90,450" width="8" x="46" y="316"/> <circ-port height="8" pin="90,470" width="8" x="46" y="336"/> <circ-port height="8" pin="90,820" width="8" x="456" y="46"/> <circ-port height="8" pin="90,840" width="8" x="396" y="46"/> <circ-port height="8" pin="90,930" width="8" x="336" y="46"/> <circ-port height="8" pin="90,230" width="8" x="46" y="146"/> <circ-port height="8" pin="90,600" width="8" x="46" y="166"/> <circ-port height="8" pin="90,970" width="8" x="46" y="416"/> <circ-port height="8" pin="90,990" width="8" x="46" y="426"/> <circ-port height="8" pin="90,1010" width="8" x="46" y="436"/> <circ-port height="8" pin="90,1030" width="8" x="46" y="446"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="456"/> <circ-port height="8" pin="90,1070" width="8" x="46" y="466"/> <circ-port height="8" pin="90,1090" width="8" x="46" y="476"/> <circ-port height="8" pin="90,1110" width="8" x="46" y="486"/> <circ-port height="8" pin="90,1130" width="8" x="46" y="496"/> <circ-port height="8" pin="90,1150" width="8" x="46" y="506"/> <circ-port height="8" pin="90,1170" width="8" x="46" y="516"/> <circ-port height="8" pin="90,1190" width="8" x="46" y="526"/> <circ-port height="8" pin="90,1210" width="8" x="46" y="536"/> <circ-port height="8" pin="90,1230" width="8" x="46" y="546"/> <circ-port height="8" pin="90,1250" width="8" x="46" y="556"/> <circ-port height="8" pin="90,1270" width="8" x="46" y="566"/> <circ-port height="8" pin="90,1310" width="8" x="116" y="46"/> <circ-port height="8" pin="90,1330" width="8" x="126" y="46"/> <circ-port height="8" pin="90,1350" width="8" x="136" y="46"/> <circ-port height="8" pin="90,1370" width="8" x="146" y="46"/> <circ-port height="8" pin="90,1390" width="8" x="156" y="46"/> <circ-port height="8" pin="90,1410" width="8" x="166" y="46"/> <circ-port height="8" pin="90,1430" width="8" x="176" y="46"/> <circ-port height="8" pin="90,1450" width="8" x="186" y="46"/> <circ-port height="8" pin="90,1470" width="8" x="196" y="46"/> <circ-port height="8" pin="90,1490" width="8" x="206" y="46"/> <circ-port height="8" pin="90,1510" width="8" x="216" y="46"/> <circ-port height="8" pin="90,1530" width="8" x="226" y="46"/> <circ-port height="8" pin="90,1550" width="8" x="236" y="46"/> <circ-port height="8" pin="90,1570" width="8" x="246" y="46"/> <circ-port height="8" pin="90,1590" width="8" x="256" y="46"/> <circ-port height="10" pin="1080,700" width="10" x="565" y="65"/> <circ-port height="10" pin="1080,640" width="10" x="565" y="105"/> <circ-port height="10" pin="1080,980" width="10" x="565" y="535"/> <circ-port height="10" pin="1080,1110" width="10" x="565" y="205"/> <circ-port height="10" pin="1080,1140" width="10" x="565" y="215"/> <circ-port height="10" pin="1080,1170" width="10" x="565" y="225"/> <circ-port height="10" pin="1080,1200" width="10" x="565" y="235"/> <circ-port height="10" pin="1080,1230" width="10" x="565" y="245"/> <circ-port height="10" pin="1080,1260" width="10" x="565" y="255"/> <circ-port height="10" pin="1080,1290" width="10" x="565" y="265"/> <circ-port height="10" pin="1080,1320" width="10" x="565" y="275"/> <circ-port height="10" pin="1080,1350" width="10" x="565" y="285"/> <circ-port height="10" pin="1080,1380" width="10" x="565" y="295"/> <circ-port height="10" pin="1080,1410" width="10" x="565" y="305"/> <circ-port height="10" pin="1080,1440" width="10" x="565" y="315"/> <circ-port height="10" pin="1080,1470" width="10" x="565" y="325"/> <circ-port height="10" pin="1080,1500" width="10" x="565" y="335"/> <circ-port height="10" pin="1080,1530" width="10" x="565" y="345"/> <circ-port height="10" pin="1080,1560" width="10" x="565" y="355"/> <circ-port height="10" pin="1080,130" width="10" x="325" y="595"/> <circ-port height="8" pin="1080,730" width="8" x="156" y="596"/> <circ-port height="10" pin="1080,190" width="10" x="335" y="595"/> <circ-port height="8" pin="1080,760" width="8" x="166" y="596"/> <circ-port height="10" pin="1080,250" width="10" x="345" y="595"/> <circ-port height="8" pin="1080,790" width="8" x="176" y="596"/> <circ-port height="10" pin="1080,310" width="10" x="355" y="595"/> <circ-port height="8" pin="1080,820" width="8" x="186" y="596"/> <circ-port height="10" pin="1080,370" width="10" x="365" y="595"/> <circ-port height="8" pin="1080,850" width="8" x="196" y="596"/> <circ-port height="10" pin="1080,430" width="10" x="375" y="595"/> <circ-port height="8" pin="1080,880" width="8" x="206" y="596"/> <circ-port height="10" pin="1080,490" width="10" x="385" y="595"/> <circ-port height="8" pin="1080,910" width="8" x="216" y="596"/> <circ-port height="10" pin="1080,550" width="10" x="395" y="595"/> <circ-port height="8" pin="1080,940" width="8" x="226" y="596"/> <circ-port height="8" pin="90,190" width="8" x="46" y="376"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(900,310)" to="(1080,310)"/> <wire from="(900,550)" to="(1080,550)"/> <wire from="(90,450)" to="(280,450)"/> <wire from="(470,460)" to="(530,460)"/> <wire from="(90,370)" to="(280,370)"/> <wire from="(680,1080)" to="(730,1080)"/> <wire from="(680,1320)" to="(730,1320)"/> <wire from="(130,1480)" to="(190,1480)"/> <wire from="(440,520)" to="(490,520)"/> <wire from="(130,1090)" to="(130,1100)"/> <wire from="(1020,730)" to="(1020,800)"/> <wire from="(90,1370)" to="(140,1370)"/> <wire from="(90,1530)" to="(140,1530)"/> <wire from="(630,1040)" to="(670,1040)"/> <wire from="(630,1280)" to="(670,1280)"/> <wire from="(450,1090)" to="(450,1110)"/> <wire from="(480,400)" to="(480,420)"/> <wire from="(1000,1380)" to="(1000,1530)"/> <wire from="(1070,1310)" to="(1070,1320)"/> <wire from="(90,970)" to="(190,970)"/> <wire from="(90,1450)" to="(190,1450)"/> <wire from="(800,110)" to="(820,110)"/> <wire from="(800,350)" to="(820,350)"/> <wire from="(860,490)" to="(880,490)"/> <wire from="(860,250)" to="(880,250)"/> <wire from="(440,620)" to="(470,620)"/> <wire from="(990,1560)" to="(1080,1560)"/> <wire from="(410,200)" to="(430,200)"/> <wire from="(990,1250)" to="(1020,1250)"/> <wire from="(210,1120)" to="(230,1120)"/> <wire from="(840,200)" to="(840,260)"/> <wire from="(840,440)" to="(840,500)"/> <wire from="(150,1350)" to="(150,1400)"/> <wire from="(440,800)" to="(450,800)"/> <wire from="(90,1230)" to="(170,1230)"/> <wire from="(90,1310)" to="(170,1310)"/> <wire from="(1050,1230)" to="(1080,1230)"/> <wire from="(180,1180)" to="(190,1180)"/> <wire from="(90,50)" to="(100,50)"/> <wire from="(120,1430)" to="(190,1430)"/> <wire from="(260,660)" to="(460,660)"/> <wire from="(1030,760)" to="(1080,760)"/> <wire from="(90,150)" to="(410,150)"/> <wire from="(470,430)" to="(530,430)"/> <wire from="(90,820)" to="(280,820)"/> <wire from="(680,1210)" to="(730,1210)"/> <wire from="(130,1130)" to="(190,1130)"/> <wire from="(730,1320)" to="(730,1460)"/> <wire from="(730,1080)" to="(730,1210)"/> <wire from="(1030,1350)" to="(1030,1440)"/> <wire from="(160,510)" to="(280,510)"/> <wire from="(1040,850)" to="(1040,880)"/> <wire from="(660,320)" to="(700,320)"/> <wire from="(670,1280)" to="(670,1310)"/> <wire from="(1020,1140)" to="(1080,1140)"/> <wire from="(670,1040)" to="(670,1070)"/> <wire from="(340,1510)" to="(770,1510)"/> <wire from="(140,1070)" to="(140,1090)"/> <wire from="(1040,1200)" to="(1040,1270)"/> <wire from="(720,130)" to="(820,130)"/> <wire from="(490,380)" to="(490,410)"/> <wire from="(90,1510)" to="(130,1510)"/> <wire from="(440,500)" to="(480,500)"/> <wire from="(160,1510)" to="(190,1510)"/> <wire from="(120,880)" to="(280,880)"/> <wire from="(190,230)" to="(350,230)"/> <wire from="(730,1210)" to="(730,1320)"/> <wire from="(500,490)" to="(530,490)"/> <wire from="(1070,1320)" to="(1080,1320)"/> <wire from="(800,290)" to="(800,350)"/> <wire from="(680,90)" to="(680,660)"/> <wire from="(890,380)" to="(890,440)"/> <wire from="(890,140)" to="(890,200)"/> <wire from="(1050,640)" to="(1080,640)"/> <wire from="(270,280)" to="(280,280)"/> <wire from="(110,1460)" to="(190,1460)"/> <wire from="(90,20)" to="(100,20)"/> <wire from="(750,320)" to="(750,370)"/> <wire from="(90,110)" to="(800,110)"/> <wire from="(90,1210)" to="(160,1210)"/> <wire from="(1030,760)" to="(1030,810)"/> <wire from="(990,1300)" to="(1070,1300)"/> <wire from="(160,1330)" to="(160,1390)"/> <wire from="(900,250)" to="(1080,250)"/> <wire from="(900,490)" to="(1080,490)"/> <wire from="(90,390)" to="(280,390)"/> <wire from="(90,470)" to="(280,470)"/> <wire from="(720,350)" to="(720,550)"/> <wire from="(130,1100)" to="(190,1100)"/> <wire from="(130,1420)" to="(190,1420)"/> <wire from="(440,380)" to="(490,380)"/> <wire from="(480,420)" to="(530,420)"/> <wire from="(160,800)" to="(280,800)"/> <wire from="(1060,1320)" to="(1060,1350)"/> <wire from="(90,1070)" to="(140,1070)"/> <wire from="(230,1210)" to="(660,1210)"/> <wire from="(990,1260)" to="(1030,1260)"/> <wire from="(670,1120)" to="(670,1200)"/> <wire from="(150,1050)" to="(150,1080)"/> <wire from="(800,530)" to="(820,530)"/> <wire from="(90,1410)" to="(120,1410)"/> <wire from="(800,290)" to="(820,290)"/> <wire from="(90,1490)" to="(120,1490)"/> <wire from="(860,430)" to="(880,430)"/> <wire from="(160,1160)" to="(190,1160)"/> <wire from="(860,190)" to="(880,190)"/> <wire from="(670,1410)" to="(670,1450)"/> <wire from="(1050,1230)" to="(1050,1280)"/> <wire from="(450,1410)" to="(670,1410)"/> <wire from="(440,480)" to="(470,480)"/> <wire from="(990,1390)" to="(990,1560)"/> <wire from="(1070,1290)" to="(1080,1290)"/> <wire from="(720,290)" to="(740,290)"/> <wire from="(640,680)" to="(1050,680)"/> <wire from="(500,360)" to="(500,400)"/> <wire from="(840,140)" to="(840,200)"/> <wire from="(840,380)" to="(840,440)"/> <wire from="(260,1170)" to="(400,1170)"/> <wire from="(90,1010)" to="(170,1010)"/> <wire from="(1050,850)" to="(1080,850)"/> <wire from="(260,930)" to="(260,1170)"/> <wire from="(440,320)" to="(520,320)"/> <wire from="(210,1460)" to="(660,1460)"/> <wire from="(1060,1350)" to="(1080,1350)"/> <wire from="(620,980)" to="(1080,980)"/> <wire from="(90,840)" to="(280,840)"/> <wire from="(90,1190)" to="(150,1190)"/> <wire from="(170,1310)" to="(170,1380)"/> <wire from="(90,1350)" to="(150,1350)"/> <wire from="(610,1320)" to="(660,1320)"/> <wire from="(1040,880)" to="(1080,880)"/> <wire from="(110,1460)" to="(110,1470)"/> <wire from="(1040,1200)" to="(1080,1200)"/> <wire from="(480,470)" to="(530,470)"/> <wire from="(140,1090)" to="(190,1090)"/> <wire from="(140,1410)" to="(190,1410)"/> <wire from="(140,1490)" to="(190,1490)"/> <wire from="(460,450)" to="(460,460)"/> <wire from="(1040,790)" to="(1040,820)"/> <wire from="(470,460)" to="(470,480)"/> <wire from="(120,1470)" to="(120,1490)"/> <wire from="(720,310)" to="(820,310)"/> <wire from="(720,550)" to="(820,550)"/> <wire from="(480,470)" to="(480,500)"/> <wire from="(730,1320)" to="(970,1320)"/> <wire from="(130,1480)" to="(130,1510)"/> <wire from="(240,720)" to="(280,720)"/> <wire from="(720,130)" to="(720,280)"/> <wire from="(490,410)" to="(530,410)"/> <wire from="(160,510)" to="(160,800)"/> <wire from="(440,600)" to="(530,600)"/> <wire from="(440,440)" to="(530,440)"/> <wire from="(140,230)" to="(170,230)"/> <wire from="(1030,860)" to="(1030,910)"/> <wire from="(180,680)" to="(180,780)"/> <wire from="(440,460)" to="(460,460)"/> <wire from="(160,1030)" to="(160,1070)"/> <wire from="(140,1490)" to="(140,1530)"/> <wire from="(430,1090)" to="(450,1090)"/> <wire from="(450,1110)" to="(470,1110)"/> <wire from="(730,490)" to="(820,490)"/> <wire from="(90,1470)" to="(110,1470)"/> <wire from="(490,480)" to="(490,520)"/> <wire from="(340,1020)" to="(340,1510)"/> <wire from="(800,230)" to="(800,290)"/> <wire from="(800,470)" to="(800,530)"/> <wire from="(890,320)" to="(890,380)"/> <wire from="(750,370)" to="(820,370)"/> <wire from="(150,1500)" to="(150,1550)"/> <wire from="(890,560)" to="(890,620)"/> <wire from="(1050,1380)" to="(1080,1380)"/> <wire from="(1050,820)" to="(1080,820)"/> <wire from="(1010,1110)" to="(1080,1110)"/> <wire from="(500,490)" to="(500,540)"/> <wire from="(510,340)" to="(510,390)"/> <wire from="(140,860)" to="(280,860)"/> <wire from="(450,1170)" to="(450,1410)"/> <wire from="(1050,640)" to="(1050,680)"/> <wire from="(1020,810)" to="(1030,810)"/> <wire from="(740,190)" to="(820,190)"/> <wire from="(90,510)" to="(160,510)"/> <wire from="(510,500)" to="(510,560)"/> <wire from="(740,430)" to="(820,430)"/> <wire from="(470,620)" to="(470,680)"/> <wire from="(1020,1360)" to="(1020,1470)"/> <wire from="(160,1510)" to="(160,1570)"/> <wire from="(680,660)" to="(990,660)"/> <wire from="(900,190)" to="(1080,190)"/> <wire from="(990,1270)" to="(1040,1270)"/> <wire from="(900,430)" to="(1080,430)"/> <wire from="(90,330)" to="(280,330)"/> <wire from="(90,410)" to="(280,410)"/> <wire from="(170,1520)" to="(170,1590)"/> <wire from="(830,620)" to="(890,620)"/> <wire from="(120,1120)" to="(120,1130)"/> <wire from="(110,1430)" to="(110,1440)"/> <wire from="(1040,1410)" to="(1080,1410)"/> <wire from="(1020,730)" to="(1080,730)"/> <wire from="(440,770)" to="(620,770)"/> <wire from="(140,1140)" to="(190,1140)"/> <wire from="(1010,1110)" to="(1010,1240)"/> <wire from="(1060,1260)" to="(1060,1290)"/> <wire from="(520,510)" to="(520,580)"/> <wire from="(90,1170)" to="(140,1170)"/> <wire from="(840,560)" to="(840,590)"/> <wire from="(130,1130)" to="(130,1150)"/> <wire from="(340,1020)" to="(770,1020)"/> <wire from="(530,520)" to="(530,600)"/> <wire from="(150,1080)" to="(190,1080)"/> <wire from="(150,1400)" to="(190,1400)"/> <wire from="(120,600)" to="(120,880)"/> <wire from="(140,1140)" to="(140,1170)"/> <wire from="(1030,910)" to="(1080,910)"/> <wire from="(430,1120)" to="(470,1120)"/> <wire from="(180,780)" to="(280,780)"/> <wire from="(800,470)" to="(820,470)"/> <wire from="(800,230)" to="(820,230)"/> <wire from="(860,370)" to="(880,370)"/> <wire from="(860,130)" to="(880,130)"/> <wire from="(1050,1330)" to="(1050,1380)"/> <wire from="(1020,850)" to="(1040,850)"/> <wire from="(440,420)" to="(470,420)"/> <wire from="(500,400)" to="(530,400)"/> <wire from="(770,1020)" to="(770,1510)"/> <wire from="(720,300)" to="(750,300)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(150,1150)" to="(150,1190)"/> <wire from="(510,500)" to="(530,500)"/> <wire from="(260,620)" to="(260,660)"/> <wire from="(1020,840)" to="(1050,840)"/> <wire from="(740,330)" to="(740,430)"/> <wire from="(450,1130)" to="(450,1170)"/> <wire from="(170,1520)" to="(190,1520)"/> <wire from="(160,1160)" to="(160,1210)"/> <wire from="(840,320)" to="(840,380)"/> <wire from="(170,1010)" to="(170,1060)"/> <wire from="(90,1590)" to="(170,1590)"/> <wire from="(520,320)" to="(520,380)"/> <wire from="(440,580)" to="(520,580)"/> <wire from="(120,1470)" to="(190,1470)"/> <wire from="(1020,860)" to="(1030,860)"/> <wire from="(830,590)" to="(840,590)"/> <wire from="(460,450)" to="(530,450)"/> <wire from="(170,1170)" to="(170,1230)"/> <wire from="(440,360)" to="(500,360)"/> <wire from="(180,1180)" to="(180,1250)"/> <wire from="(90,1050)" to="(150,1050)"/> <wire from="(1020,940)" to="(1080,940)"/> <wire from="(190,1190)" to="(190,1270)"/> <wire from="(120,1410)" to="(120,1430)"/> <wire from="(460,660)" to="(460,740)"/> <wire from="(90,1150)" to="(130,1150)"/> <wire from="(1050,820)" to="(1050,830)"/> <wire from="(90,1390)" to="(130,1390)"/> <wire from="(1030,1440)" to="(1080,1440)"/> <wire from="(440,300)" to="(530,300)"/> <wire from="(160,1070)" to="(190,1070)"/> <wire from="(160,1390)" to="(190,1390)"/> <wire from="(1020,1140)" to="(1020,1250)"/> <wire from="(120,600)" to="(280,600)"/> <wire from="(1020,820)" to="(1040,820)"/> <wire from="(90,600)" to="(120,600)"/> <wire from="(420,1170)" to="(450,1170)"/> <wire from="(90,990)" to="(180,990)"/> <wire from="(260,620)" to="(280,620)"/> <wire from="(330,210)" to="(350,210)"/> <wire from="(510,390)" to="(530,390)"/> <wire from="(450,1130)" to="(470,1130)"/> <wire from="(170,1170)" to="(190,1170)"/> <wire from="(800,170)" to="(800,230)"/> <wire from="(800,410)" to="(800,470)"/> <wire from="(890,260)" to="(890,320)"/> <wire from="(890,500)" to="(890,560)"/> <wire from="(120,1120)" to="(190,1120)"/> <wire from="(90,1570)" to="(160,1570)"/> <wire from="(90,1330)" to="(160,1330)"/> <wire from="(440,560)" to="(510,560)"/> <wire from="(1060,1260)" to="(1080,1260)"/> <wire from="(180,990)" to="(180,1050)"/> <wire from="(900,130)" to="(1080,130)"/> <wire from="(900,370)" to="(1080,370)"/> <wire from="(660,320)" to="(660,840)"/> <wire from="(90,430)" to="(280,430)"/> <wire from="(90,350)" to="(280,350)"/> <wire from="(680,1460)" to="(730,1460)"/> <wire from="(1040,790)" to="(1080,790)"/> <wire from="(1020,870)" to="(1020,940)"/> <wire from="(990,1280)" to="(1050,1280)"/> <wire from="(1010,1370)" to="(1010,1500)"/> <wire from="(530,300)" to="(530,370)"/> <wire from="(90,230)" to="(140,230)"/> <wire from="(470,190)" to="(640,190)"/> <wire from="(1020,1470)" to="(1080,1470)"/> <wire from="(90,930)" to="(260,930)"/> <wire from="(410,150)" to="(410,180)"/> <wire from="(1070,1290)" to="(1070,1300)"/> <wire from="(550,1080)" to="(660,1080)"/> <wire from="(150,1500)" to="(190,1500)"/> <wire from="(620,770)" to="(620,980)"/> <wire from="(130,1390)" to="(130,1420)"/> <wire from="(180,680)" to="(470,680)"/> <wire from="(90,1110)" to="(190,1110)"/> <wire from="(90,1270)" to="(190,1270)"/> <wire from="(1030,1170)" to="(1080,1170)"/> <wire from="(230,1120)" to="(230,1210)"/> <wire from="(490,480)" to="(530,480)"/> <wire from="(800,410)" to="(820,410)"/> <wire from="(800,170)" to="(820,170)"/> <wire from="(860,310)" to="(880,310)"/> <wire from="(860,550)" to="(880,550)"/> <wire from="(640,190)" to="(640,680)"/> <wire from="(90,1130)" to="(120,1130)"/> <wire from="(990,1240)" to="(1010,1240)"/> <wire from="(660,840)" to="(1000,840)"/> <wire from="(720,330)" to="(740,330)"/> <wire from="(410,220)" to="(620,220)"/> <wire from="(510,1120)" to="(670,1120)"/> <wire from="(720,320)" to="(750,320)"/> <wire from="(410,180)" to="(430,180)"/> <wire from="(1010,1500)" to="(1080,1500)"/> <wire from="(90,190)" to="(430,190)"/> <wire from="(550,530)" to="(550,1080)"/> <wire from="(170,1060)" to="(190,1060)"/> <wire from="(170,1380)" to="(190,1380)"/> <wire from="(740,190)" to="(740,290)"/> <wire from="(840,500)" to="(840,560)"/> <wire from="(840,260)" to="(840,320)"/> <wire from="(190,1530)" to="(190,1580)"/> <wire from="(140,230)" to="(140,860)"/> <wire from="(990,90)" to="(990,660)"/> <wire from="(990,1320)" to="(1060,1320)"/> <wire from="(240,740)" to="(250,740)"/> <wire from="(750,250)" to="(750,300)"/> <wire from="(720,340)" to="(730,340)"/> <wire from="(620,700)" to="(1080,700)"/> <wire from="(520,380)" to="(530,380)"/> <wire from="(990,1310)" to="(1070,1310)"/> <wire from="(680,90)" to="(990,90)"/> <wire from="(990,1340)" to="(1040,1340)"/> <wire from="(440,540)" to="(500,540)"/> <wire from="(190,970)" to="(190,1040)"/> <wire from="(90,1550)" to="(150,1550)"/> <wire from="(1030,1170)" to="(1030,1260)"/> <wire from="(990,1330)" to="(1050,1330)"/> <wire from="(470,420)" to="(470,430)"/> <wire from="(410,200)" to="(410,220)"/> <wire from="(1040,1340)" to="(1040,1410)"/> <wire from="(990,1350)" to="(1030,1350)"/> <wire from="(90,1090)" to="(130,1090)"/> <wire from="(1050,840)" to="(1050,850)"/> <wire from="(150,1150)" to="(190,1150)"/> <wire from="(240,760)" to="(280,760)"/> <wire from="(730,340)" to="(730,490)"/> <wire from="(440,400)" to="(480,400)"/> <wire from="(990,1370)" to="(1010,1370)"/> <wire from="(90,1250)" to="(180,1250)"/> <wire from="(620,220)" to="(620,700)"/> <wire from="(140,1370)" to="(140,1410)"/> <wire from="(440,740)" to="(460,740)"/> <wire from="(990,1360)" to="(1020,1360)"/> <wire from="(1020,830)" to="(1050,830)"/> <wire from="(90,1430)" to="(110,1430)"/> <wire from="(800,110)" to="(800,170)"/> <wire from="(800,350)" to="(800,410)"/> <wire from="(890,200)" to="(890,260)"/> <wire from="(750,250)" to="(820,250)"/> <wire from="(440,830)" to="(450,830)"/> <wire from="(890,440)" to="(890,500)"/> <wire from="(110,1440)" to="(190,1440)"/> <wire from="(270,740)" to="(280,740)"/> <wire from="(990,1290)" to="(1060,1290)"/> <wire from="(180,1050)" to="(190,1050)"/> <wire from="(90,80)" to="(100,80)"/> <wire from="(990,1380)" to="(1000,1380)"/> <wire from="(90,1030)" to="(160,1030)"/> <wire from="(440,340)" to="(510,340)"/> <wire from="(520,510)" to="(530,510)"/> <wire from="(1000,1530)" to="(1080,1530)"/> <comp lib="0" loc="(90,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA12"/> </comp> <comp lib="0" loc="(90,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC10"/> </comp> <comp lib="1" loc="(900,130)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(900,490)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(630,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(240,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(210,1460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,1410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC5"/> </comp> <comp lib="1" loc="(680,1080)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="4" loc="(860,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1080,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA4"/> </comp> <comp lib="0" loc="(90,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA10"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(90,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA9"/> </comp> <comp lib="0" loc="(1080,1170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA11"/> </comp> <comp lib="0" loc="(90,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA3"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA14"/> </comp> <comp lib="4" loc="(860,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(830,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="4" loc="(860,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1080,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(510,1120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1080,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC7"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(1080,880)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(590,1358)" name="Text"> <a name="text" val="$2004"/> </comp> <comp lib="6" loc="(841,72)" name="Text"> <a name="text" val="If /R4015 (read 4015) then disable data buffer (2a03 databus become Z)"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(680,1210)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(430,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="1" loc="(900,310)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,1460)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC4"/> </comp> <comp lib="6" loc="(551,1497)" name="Text"> <a name="text" val="ADDRESS MUX"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(900,430)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,730)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(610,1320)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x2004"/> </comp> <comp lib="0" loc="(1080,760)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA1"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="6" loc="(834,653)" name="Text"> <a name="text" val="SPRITE DMA BUFFER"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="0" loc="(700,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(1080,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(270,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA2"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBGRD"/> </comp> <comp lib="0" loc="(90,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA8"/> </comp> <comp lib="0" loc="(630,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(100,80)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="4" loc="(860,470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(330,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="1" loc="(390,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(830,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(1080,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(900,550)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(190,1580)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(90,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA6"/> </comp> <comp lib="6" loc="(489,1094)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="0" loc="(1080,850)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA7"/> </comp> <comp lib="0" loc="(1080,940)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(860,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1000,840)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC12"/> </comp> <comp lib="0" loc="(1080,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A15"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#DMC/AB"/> </comp> <comp lib="0" loc="(100,20)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(420,1170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(860,350)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="4" loc="(860,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1080,1110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA15"/> </comp> <comp lib="1" loc="(680,1320)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,50)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(594,1345)" name="Text"> <a name="text" val="0010000000000100"/> </comp> <comp lib="0" loc="(1080,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A14"/> <a name="labelloc" val="east"/> </comp> <comp loc="(350,710)" name="DMA_CONTROL"/> <comp lib="0" loc="(1080,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(210,1120)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W (CPU)"/> </comp> <comp lib="6" loc="(408,1158)" name="Text"> <a name="text" val="INV1"/> </comp> <comp lib="0" loc="(1080,820)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA13"/> </comp> <comp lib="0" loc="(1080,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC14"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC2"/> </comp> <comp lib="0" loc="(90,1470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC8"/> </comp> <comp lib="0" loc="(90,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC3"/> </comp> <comp lib="0" loc="(450,830)" name="Tunnel"> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(1080,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC9"/> </comp> <comp lib="0" loc="(1080,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R/W (to R/W ic pin)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(90,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA0"/> </comp> <comp lib="1" loc="(900,190)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,910)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(550,530)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(900,250)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,790)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(860,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1080,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,260)" name="DMA_ADDRESS_COUNTER"/> <comp lib="0" loc="(1080,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(900,370)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,1530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC11"/> </comp> <comp lib="0" loc="(1080,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,800)" name="Tunnel"> <a name="label" val="SPR/PPU"/> </comp> <comp lib="0" loc="(90,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC0"/> </comp> <comp lib="0" loc="(90,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC13"/> </comp> <comp lib="1" loc="(190,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC1"/> </comp> <comp lib="0" loc="(970,1320)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(240,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC RDY"/> </comp> <comp lib="0" loc="(90,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA5"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1080,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="0" loc="(430,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(270,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC6"/> </comp> <comp lib="0" loc="(240,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1080,1320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(470,190)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> </circuit> <circuit name="DMA_ADDRESS_COUNTER"> <a name="circuit" val="DMA_ADDRESS_COUNTER"/> <a name="clabel" val="DMA ADDRESS COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M150,71 Q154,81 158,71" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b2ff43" height="380" stroke="#000000" stroke-width="2" width="160" x="100" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="124" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="128" y="324">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="144">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="164">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="184">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="224">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="244">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="264">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="120" y="414">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="124" y="435">SPRS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="434">SPRE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="114">SPRA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="135">SPRA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="155">SPRA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="175">SPRA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="194">SPRA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="215">SPRA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="235">SPRA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="255">SPRA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="274">SPRA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="294">SPRA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="315">SPRA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="334">SPRA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="354">SPRA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="374">SPRA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="394">SPRA14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="414">SPRA15</text> <circ-port height="8" pin="90,60" width="8" x="96" y="86"/> <circ-port height="8" pin="90,140" width="8" x="96" y="426"/> <circ-port height="8" pin="90,220" width="8" x="96" y="316"/> <circ-port height="8" pin="90,180" width="8" x="96" y="406"/> <circ-port height="8" pin="90,1250" width="8" x="96" y="136"/> <circ-port height="8" pin="90,1320" width="8" x="96" y="156"/> <circ-port height="8" pin="90,1390" width="8" x="96" y="176"/> <circ-port height="8" pin="90,1460" width="8" x="96" y="196"/> <circ-port height="8" pin="90,1530" width="8" x="96" y="216"/> <circ-port height="8" pin="90,1600" width="8" x="96" y="236"/> <circ-port height="8" pin="90,1670" width="8" x="96" y="256"/> <circ-port height="8" pin="90,1740" width="8" x="96" y="276"/> <circ-port height="10" pin="530,110" width="10" x="255" y="105"/> <circ-port height="10" pin="530,250" width="10" x="255" y="125"/> <circ-port height="10" pin="530,390" width="10" x="255" y="145"/> <circ-port height="10" pin="530,530" width="10" x="255" y="165"/> <circ-port height="10" pin="530,670" width="10" x="255" y="185"/> <circ-port height="10" pin="530,810" width="10" x="255" y="205"/> <circ-port height="10" pin="530,950" width="10" x="255" y="225"/> <circ-port height="10" pin="530,1090" width="10" x="255" y="245"/> <circ-port height="10" pin="530,1230" width="10" x="255" y="265"/> <circ-port height="10" pin="530,1300" width="10" x="255" y="285"/> <circ-port height="10" pin="530,1370" width="10" x="255" y="305"/> <circ-port height="10" pin="530,1440" width="10" x="255" y="325"/> <circ-port height="10" pin="530,1510" width="10" x="255" y="345"/> <circ-port height="10" pin="530,1580" width="10" x="255" y="365"/> <circ-port height="10" pin="530,1650" width="10" x="255" y="385"/> <circ-port height="10" pin="530,1720" width="10" x="255" y="405"/> <circ-port height="10" pin="530,1770" width="10" x="255" y="425"/> <circ-anchor facing="east" height="6" width="6" x="177" y="67"/> </appear> <wire from="(290,1000)" to="(350,1000)"/> <wire from="(290,440)" to="(350,440)"/> <wire from="(520,150)" to="(520,220)"/> <wire from="(130,1440)" to="(130,1510)"/> <wire from="(90,1600)" to="(150,1600)"/> <wire from="(170,1610)" to="(170,1620)"/> <wire from="(520,710)" to="(520,780)"/> <wire from="(220,280)" to="(220,420)"/> <wire from="(220,840)" to="(220,980)"/> <wire from="(320,790)" to="(430,790)"/> <wire from="(320,230)" to="(430,230)"/> <wire from="(310,390)" to="(310,420)"/> <wire from="(310,950)" to="(310,980)"/> <wire from="(170,1620)" to="(210,1620)"/> <wire from="(420,430)" to="(460,430)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(220,1120)" to="(250,1120)"/> <wire from="(220,560)" to="(250,560)"/> <wire from="(310,530)" to="(530,530)"/> <wire from="(310,1090)" to="(530,1090)"/> <wire from="(290,560)" to="(310,560)"/> <wire from="(290,1120)" to="(310,1120)"/> <wire from="(420,1170)" to="(440,1170)"/> <wire from="(440,550)" to="(460,550)"/> <wire from="(440,1110)" to="(460,1110)"/> <wire from="(500,850)" to="(520,850)"/> <wire from="(500,290)" to="(520,290)"/> <wire from="(430,750)" to="(430,790)"/> <wire from="(430,190)" to="(430,230)"/> <wire from="(130,1440)" to="(150,1440)"/> <wire from="(190,1510)" to="(530,1510)"/> <wire from="(240,1000)" to="(250,1000)"/> <wire from="(160,200)" to="(170,200)"/> <wire from="(240,440)" to="(250,440)"/> <wire from="(320,1120)" to="(320,1180)"/> <wire from="(320,560)" to="(320,620)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(240,160)" to="(240,220)"/> <wire from="(320,840)" to="(380,840)"/> <wire from="(320,280)" to="(380,280)"/> <wire from="(130,1650)" to="(130,1720)"/> <wire from="(210,1410)" to="(210,1480)"/> <wire from="(90,1250)" to="(150,1250)"/> <wire from="(280,870)" to="(280,1010)"/> <wire from="(280,310)" to="(280,450)"/> <wire from="(170,1260)" to="(170,1270)"/> <wire from="(440,550)" to="(440,690)"/> <wire from="(160,1170)" to="(210,1170)"/> <wire from="(280,170)" to="(280,190)"/> <wire from="(350,160)" to="(350,180)"/> <wire from="(350,720)" to="(350,740)"/> <wire from="(170,1270)" to="(210,1270)"/> <wire from="(350,580)" to="(380,580)"/> <wire from="(350,740)" to="(380,740)"/> <wire from="(350,180)" to="(380,180)"/> <wire from="(350,1140)" to="(380,1140)"/> <wire from="(210,1170)" to="(210,1270)"/> <wire from="(360,760)" to="(380,760)"/> <wire from="(320,1040)" to="(340,1040)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(320,480)" to="(340,480)"/> <wire from="(240,500)" to="(520,500)"/> <wire from="(240,1060)" to="(520,1060)"/> <wire from="(130,1650)" to="(150,1650)"/> <wire from="(190,1720)" to="(530,1720)"/> <wire from="(420,190)" to="(430,190)"/> <wire from="(420,750)" to="(430,750)"/> <wire from="(200,190)" to="(280,190)"/> <wire from="(320,930)" to="(320,980)"/> <wire from="(320,370)" to="(320,420)"/> <wire from="(290,300)" to="(350,300)"/> <wire from="(290,860)" to="(350,860)"/> <wire from="(130,1300)" to="(130,1370)"/> <wire from="(210,1620)" to="(210,1690)"/> <wire from="(90,1460)" to="(150,1460)"/> <wire from="(170,1470)" to="(170,1480)"/> <wire from="(520,570)" to="(520,640)"/> <wire from="(520,1130)" to="(520,1200)"/> <wire from="(220,700)" to="(220,840)"/> <wire from="(220,140)" to="(220,280)"/> <wire from="(320,650)" to="(430,650)"/> <wire from="(310,250)" to="(310,280)"/> <wire from="(310,810)" to="(310,840)"/> <wire from="(170,1480)" to="(210,1480)"/> <wire from="(420,850)" to="(460,850)"/> <wire from="(420,290)" to="(460,290)"/> <wire from="(310,390)" to="(530,390)"/> <wire from="(220,420)" to="(250,420)"/> <wire from="(220,980)" to="(250,980)"/> <wire from="(310,950)" to="(530,950)"/> <wire from="(290,980)" to="(310,980)"/> <wire from="(290,420)" to="(310,420)"/> <wire from="(440,410)" to="(460,410)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(500,710)" to="(520,710)"/> <wire from="(500,150)" to="(520,150)"/> <wire from="(90,220)" to="(110,220)"/> <wire from="(430,610)" to="(430,650)"/> <wire from="(130,1300)" to="(150,1300)"/> <wire from="(190,1370)" to="(530,1370)"/> <wire from="(240,860)" to="(250,860)"/> <wire from="(240,300)" to="(250,300)"/> <wire from="(240,1140)" to="(240,1200)"/> <wire from="(320,420)" to="(320,480)"/> <wire from="(320,980)" to="(320,1040)"/> <wire from="(240,580)" to="(240,640)"/> <wire from="(320,140)" to="(380,140)"/> <wire from="(440,60)" to="(440,130)"/> <wire from="(320,700)" to="(380,700)"/> <wire from="(130,1510)" to="(130,1580)"/> <wire from="(210,1270)" to="(210,1340)"/> <wire from="(90,1670)" to="(150,1670)"/> <wire from="(280,730)" to="(280,870)"/> <wire from="(160,200)" to="(160,1170)"/> <wire from="(130,60)" to="(440,60)"/> <wire from="(170,1680)" to="(170,1690)"/> <wire from="(440,410)" to="(440,550)"/> <wire from="(440,970)" to="(440,1110)"/> <wire from="(280,1150)" to="(280,1160)"/> <wire from="(350,580)" to="(350,600)"/> <wire from="(350,1140)" to="(350,1160)"/> <wire from="(170,1690)" to="(210,1690)"/> <wire from="(350,1000)" to="(380,1000)"/> <wire from="(350,1160)" to="(380,1160)"/> <wire from="(350,440)" to="(380,440)"/> <wire from="(350,600)" to="(380,600)"/> <wire from="(320,340)" to="(340,340)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(320,900)" to="(340,900)"/> <wire from="(360,1180)" to="(380,1180)"/> <wire from="(240,360)" to="(520,360)"/> <wire from="(240,920)" to="(520,920)"/> <wire from="(130,1510)" to="(150,1510)"/> <wire from="(190,1580)" to="(530,1580)"/> <wire from="(420,610)" to="(430,610)"/> <wire from="(90,180)" to="(170,180)"/> <wire from="(320,230)" to="(320,280)"/> <wire from="(320,790)" to="(320,840)"/> <wire from="(290,720)" to="(350,720)"/> <wire from="(290,160)" to="(350,160)"/> <wire from="(210,1480)" to="(210,1550)"/> <wire from="(90,1320)" to="(150,1320)"/> <wire from="(170,1330)" to="(170,1340)"/> <wire from="(520,430)" to="(520,500)"/> <wire from="(520,990)" to="(520,1060)"/> <wire from="(220,560)" to="(220,700)"/> <wire from="(320,510)" to="(430,510)"/> <wire from="(320,1070)" to="(430,1070)"/> <wire from="(90,60)" to="(130,60)"/> <wire from="(310,110)" to="(310,140)"/> <wire from="(310,670)" to="(310,700)"/> <wire from="(170,1340)" to="(210,1340)"/> <wire from="(420,150)" to="(460,150)"/> <wire from="(420,710)" to="(460,710)"/> <wire from="(310,250)" to="(530,250)"/> <wire from="(220,840)" to="(250,840)"/> <wire from="(220,280)" to="(250,280)"/> <wire from="(310,810)" to="(530,810)"/> <wire from="(440,1770)" to="(530,1770)"/> <wire from="(500,1130)" to="(520,1130)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(290,840)" to="(310,840)"/> <wire from="(440,270)" to="(460,270)"/> <wire from="(440,830)" to="(460,830)"/> <wire from="(500,570)" to="(520,570)"/> <wire from="(430,470)" to="(430,510)"/> <wire from="(130,1720)" to="(150,1720)"/> <wire from="(430,1030)" to="(430,1070)"/> <wire from="(190,1230)" to="(530,1230)"/> <wire from="(240,720)" to="(250,720)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(320,280)" to="(320,340)"/> <wire from="(240,1000)" to="(240,1060)"/> <wire from="(320,840)" to="(320,900)"/> <wire from="(280,190)" to="(280,310)"/> <wire from="(240,440)" to="(240,500)"/> <wire from="(320,560)" to="(380,560)"/> <wire from="(320,1120)" to="(380,1120)"/> <wire from="(210,1690)" to="(210,1760)"/> <wire from="(130,1370)" to="(130,1440)"/> <wire from="(90,1530)" to="(150,1530)"/> <wire from="(280,590)" to="(280,730)"/> <wire from="(170,1540)" to="(170,1550)"/> <wire from="(440,270)" to="(440,410)"/> <wire from="(440,830)" to="(440,970)"/> <wire from="(110,200)" to="(160,200)"/> <wire from="(350,1000)" to="(350,1020)"/> <wire from="(350,440)" to="(350,460)"/> <wire from="(110,200)" to="(110,220)"/> <wire from="(170,1550)" to="(210,1550)"/> <wire from="(130,60)" to="(130,90)"/> <wire from="(350,300)" to="(380,300)"/> <wire from="(350,460)" to="(380,460)"/> <wire from="(350,860)" to="(380,860)"/> <wire from="(350,1020)" to="(380,1020)"/> <wire from="(320,200)" to="(340,200)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(320,760)" to="(340,760)"/> <wire from="(360,1040)" to="(380,1040)"/> <wire from="(240,220)" to="(520,220)"/> <wire from="(240,780)" to="(520,780)"/> <wire from="(130,1370)" to="(150,1370)"/> <wire from="(190,1440)" to="(530,1440)"/> <wire from="(420,1030)" to="(430,1030)"/> <wire from="(420,470)" to="(430,470)"/> <wire from="(320,90)" to="(320,140)"/> <wire from="(320,650)" to="(320,700)"/> <wire from="(290,1140)" to="(350,1140)"/> <wire from="(290,580)" to="(350,580)"/> <wire from="(130,1580)" to="(130,1650)"/> <wire from="(210,1340)" to="(210,1410)"/> <wire from="(90,1740)" to="(150,1740)"/> <wire from="(170,1750)" to="(170,1760)"/> <wire from="(520,290)" to="(520,360)"/> <wire from="(520,850)" to="(520,920)"/> <wire from="(220,420)" to="(220,560)"/> <wire from="(220,980)" to="(220,1120)"/> <wire from="(320,930)" to="(430,930)"/> <wire from="(320,370)" to="(430,370)"/> <wire from="(310,530)" to="(310,560)"/> <wire from="(310,1090)" to="(310,1120)"/> <wire from="(170,1760)" to="(210,1760)"/> <wire from="(420,1130)" to="(460,1130)"/> <wire from="(420,570)" to="(460,570)"/> <wire from="(440,1170)" to="(440,1770)"/> <wire from="(310,110)" to="(530,110)"/> <wire from="(220,140)" to="(250,140)"/> <wire from="(220,700)" to="(250,700)"/> <wire from="(310,670)" to="(530,670)"/> <wire from="(500,990)" to="(520,990)"/> <wire from="(290,700)" to="(310,700)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(440,130)" to="(460,130)"/> <wire from="(440,690)" to="(460,690)"/> <wire from="(500,430)" to="(520,430)"/> <wire from="(430,890)" to="(430,930)"/> <wire from="(430,330)" to="(430,370)"/> <wire from="(130,1580)" to="(150,1580)"/> <wire from="(190,1650)" to="(530,1650)"/> <wire from="(240,1140)" to="(250,1140)"/> <wire from="(240,580)" to="(250,580)"/> <wire from="(320,140)" to="(320,200)"/> <wire from="(240,860)" to="(240,920)"/> <wire from="(320,700)" to="(320,760)"/> <wire from="(240,300)" to="(240,360)"/> <wire from="(320,980)" to="(380,980)"/> <wire from="(320,420)" to="(380,420)"/> <wire from="(130,1230)" to="(130,1300)"/> <wire from="(210,1550)" to="(210,1620)"/> <wire from="(90,1390)" to="(150,1390)"/> <wire from="(280,1010)" to="(280,1150)"/> <wire from="(280,450)" to="(280,590)"/> <wire from="(170,1400)" to="(170,1410)"/> <wire from="(440,130)" to="(440,270)"/> <wire from="(440,690)" to="(440,830)"/> <wire from="(350,300)" to="(350,320)"/> <wire from="(350,860)" to="(350,880)"/> <wire from="(170,1410)" to="(210,1410)"/> <wire from="(130,110)" to="(130,1230)"/> <wire from="(350,720)" to="(380,720)"/> <wire from="(350,880)" to="(380,880)"/> <wire from="(350,160)" to="(380,160)"/> <wire from="(350,320)" to="(380,320)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(320,1180)" to="(340,1180)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(320,620)" to="(340,620)"/> <wire from="(240,640)" to="(520,640)"/> <wire from="(240,1200)" to="(520,1200)"/> <wire from="(130,1230)" to="(150,1230)"/> <wire from="(190,1300)" to="(530,1300)"/> <wire from="(420,330)" to="(430,330)"/> <wire from="(420,890)" to="(430,890)"/> <wire from="(320,1070)" to="(320,1120)"/> <wire from="(320,510)" to="(320,560)"/> <wire from="(90,140)" to="(220,140)"/> <comp lib="4" loc="(290,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(130,110)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(530,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(530,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(420,850)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(530,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(290,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(530,1580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(190,1440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(190,1720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(290,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPRS"/> </comp> <comp lib="1" loc="(420,570)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(530,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(530,1770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRE"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(500,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(500,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,710)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,1170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(530,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(500,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(530,1720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA15"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(530,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(500,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(290,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(500,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,1510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(530,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(500,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(530,1650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA14"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(320,90)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(500,1110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(420,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(290,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(530,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(530,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(420,1130)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(500,550)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> </circuit> <circuit name="DMA_CONTROL"> <a name="circuit" val="DMA_CONTROL"/> <a name="clabel" val="DMA CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M141,51 Q145,61 149,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#cbff8e" height="201" stroke="#000000" stroke-width="2" width="160" x="80" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="107" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="84">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="107" y="144">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="114" y="164">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="114" y="184">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="204">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="224">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="104" y="124">SPRE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="216" y="84">SPRS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="220" y="114">RDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="207" y="144">SPR/PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="207" y="174">SPR/CPU</text> <circ-port height="8" pin="130,40" width="8" x="76" y="76"/> <circ-port height="8" pin="130,720" width="8" x="76" y="96"/> <circ-port height="8" pin="130,180" width="8" x="76" y="56"/> <circ-port height="8" pin="130,600" width="8" x="76" y="136"/> <circ-port height="8" pin="130,310" width="8" x="76" y="116"/> <circ-port height="8" pin="130,230" width="8" x="76" y="156"/> <circ-port height="8" pin="130,800" width="8" x="76" y="176"/> <circ-port height="8" pin="130,760" width="8" x="76" y="196"/> <circ-port height="8" pin="130,490" width="8" x="76" y="216"/> <circ-port height="10" pin="600,240" width="10" x="235" y="75"/> <circ-port height="10" pin="600,790" width="10" x="235" y="105"/> <circ-port height="10" pin="600,60" width="10" x="235" y="135"/> <circ-port height="10" pin="600,160" width="10" x="235" y="165"/> <circ-anchor facing="east" height="6" width="6" x="147" y="47"/> </appear> <wire from="(130,40)" to="(190,40)"/> <wire from="(190,40)" to="(190,250)"/> <wire from="(270,430)" to="(510,430)"/> <wire from="(370,160)" to="(370,240)"/> <wire from="(440,240)" to="(440,270)"/> <wire from="(510,350)" to="(510,380)"/> <wire from="(270,550)" to="(270,580)"/> <wire from="(350,670)" to="(350,700)"/> <wire from="(350,60)" to="(350,150)"/> <wire from="(190,670)" to="(290,670)"/> <wire from="(130,600)" to="(290,600)"/> <wire from="(130,760)" to="(290,760)"/> <wire from="(240,90)" to="(330,90)"/> <wire from="(130,230)" to="(350,230)"/> <wire from="(190,250)" to="(190,670)"/> <wire from="(330,590)" to="(360,590)"/> <wire from="(300,50)" to="(320,50)"/> <wire from="(270,740)" to="(290,740)"/> <wire from="(270,500)" to="(290,500)"/> <wire from="(270,580)" to="(290,580)"/> <wire from="(370,240)" to="(390,240)"/> <wire from="(370,160)" to="(390,160)"/> <wire from="(350,700)" to="(370,700)"/> <wire from="(440,270)" to="(460,270)"/> <wire from="(410,480)" to="(430,480)"/> <wire from="(430,780)" to="(450,780)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(270,390)" to="(270,430)"/> <wire from="(230,740)" to="(250,740)"/> <wire from="(270,450)" to="(350,450)"/> <wire from="(220,490)" to="(290,490)"/> <wire from="(330,170)" to="(390,170)"/> <wire from="(240,290)" to="(290,290)"/> <wire from="(240,370)" to="(290,370)"/> <wire from="(430,60)" to="(600,60)"/> <wire from="(370,240)" to="(370,390)"/> <wire from="(330,90)" to="(330,170)"/> <wire from="(350,150)" to="(350,230)"/> <wire from="(230,720)" to="(230,740)"/> <wire from="(510,400)" to="(510,430)"/> <wire from="(350,720)" to="(350,750)"/> <wire from="(240,130)" to="(240,160)"/> <wire from="(330,390)" to="(370,390)"/> <wire from="(270,530)" to="(360,530)"/> <wire from="(300,170)" to="(330,170)"/> <wire from="(440,240)" to="(600,240)"/> <wire from="(270,390)" to="(290,390)"/> <wire from="(330,370)" to="(350,370)"/> <wire from="(330,490)" to="(350,490)"/> <wire from="(350,470)" to="(370,470)"/> <wire from="(570,440)" to="(600,440)"/> <wire from="(430,480)" to="(430,780)"/> <wire from="(510,350)" to="(530,350)"/> <wire from="(510,430)" to="(530,430)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(430,240)" to="(440,240)"/> <wire from="(510,280)" to="(510,330)"/> <wire from="(360,530)" to="(360,590)"/> <wire from="(130,800)" to="(450,800)"/> <wire from="(510,450)" to="(510,710)"/> <wire from="(220,340)" to="(530,340)"/> <wire from="(130,180)" to="(240,180)"/> <wire from="(350,450)" to="(350,470)"/> <wire from="(240,290)" to="(240,370)"/> <wire from="(320,50)" to="(320,130)"/> <wire from="(220,340)" to="(220,490)"/> <wire from="(270,450)" to="(270,480)"/> <wire from="(410,710)" to="(510,710)"/> <wire from="(240,60)" to="(240,90)"/> <wire from="(350,60)" to="(390,60)"/> <wire from="(510,380)" to="(600,380)"/> <wire from="(570,340)" to="(590,340)"/> <wire from="(580,790)" to="(600,790)"/> <wire from="(270,480)" to="(290,480)"/> <wire from="(350,720)" to="(370,720)"/> <wire from="(270,550)" to="(350,550)"/> <wire from="(600,380)" to="(600,440)"/> <wire from="(190,40)" to="(260,40)"/> <wire from="(250,630)" to="(250,690)"/> <wire from="(350,490)" to="(350,550)"/> <wire from="(330,290)" to="(460,290)"/> <wire from="(320,50)" to="(390,50)"/> <wire from="(320,250)" to="(390,250)"/> <wire from="(430,160)" to="(600,160)"/> <wire from="(190,250)" to="(300,250)"/> <wire from="(350,370)" to="(350,450)"/> <wire from="(250,630)" to="(360,630)"/> <wire from="(270,500)" to="(270,530)"/> <wire from="(250,690)" to="(290,690)"/> <wire from="(350,230)" to="(390,230)"/> <wire from="(350,150)" to="(390,150)"/> <wire from="(130,720)" to="(230,720)"/> <wire from="(370,70)" to="(370,160)"/> <wire from="(130,310)" to="(290,310)"/> <wire from="(130,490)" to="(220,490)"/> <wire from="(370,70)" to="(390,70)"/> <wire from="(350,490)" to="(370,490)"/> <wire from="(330,750)" to="(350,750)"/> <wire from="(330,670)" to="(350,670)"/> <wire from="(510,330)" to="(530,330)"/> <wire from="(510,450)" to="(530,450)"/> <wire from="(240,180)" to="(240,290)"/> <wire from="(360,590)" to="(360,630)"/> <wire from="(240,180)" to="(260,180)"/> <wire from="(240,60)" to="(260,60)"/> <wire from="(240,130)" to="(320,130)"/> <wire from="(590,340)" to="(590,400)"/> <wire from="(510,400)" to="(590,400)"/> <wire from="(490,790)" to="(560,790)"/> <comp lib="6" loc="(521,320)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(430,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(568,781)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="1" loc="(300,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="1" loc="(430,60)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="17"/> </comp> <comp loc="(330,380)" name="D-latch"/> <comp lib="6" loc="(548,394)" name="Text"> <a name="text" val="STOP DMA"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(580,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(600,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR/CPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(274,28)" name="Text"> <a name="text" val="RS3"/> </comp> <comp lib="6" loc="(277,685)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="1" loc="(490,790)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(570,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(305,544)" name="Text"> <a name="text" val="START DMA"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(250,544)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="1" loc="(330,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(270,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,50)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp lib="6" loc="(256,730)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="6" loc="(395,390)" name="Text"> <a name="text" val="NO Spr"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPRE"/> </comp> <comp lib="6" loc="(573,460)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(281,384)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(320,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(570,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(280,304)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(335,608)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="1" loc="(330,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="1" loc="(410,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(526,234)" name="Text"> <a name="text" val="INCREMENT DMA ADR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(520,469)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(600,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(493,394)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(330,750)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="6" loc="(575,329)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="6" loc="(280,616)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(410,710)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(334,482)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="1" loc="(430,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="18"/> </comp> <comp lib="1" loc="(490,280)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(260,114)" name="Text"> <a name="text" val="DMA DIR TOGGLE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(330,680)" name="D-latch"/> <comp lib="0" loc="(600,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRS"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,300)" name="D-latch"/> <comp lib="6" loc="(282,472)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(130,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> <comp lib="6" loc="(480,704)" name="Text"> <a name="text" val="DO Spr"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(130,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(600,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR/PPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMCRDY"/> </comp> </circuit> <circuit name="LENGTH_TABLE"> <a name="circuit" val="LENGTH_TABLE"/> <a name="clabel" val="LENGTH TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M69,51 Q73,61 77,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffd840" height="180" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="74">LC7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="94">LC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="114">LC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="134">LC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="154">LC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="174">LC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="194">LC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="214">LC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="74">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="94">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="114">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="134">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="154">D7</text> <circ-port height="8" pin="50,540" width="8" x="46" y="66"/> <circ-port height="8" pin="50,590" width="8" x="46" y="86"/> <circ-port height="8" pin="50,640" width="8" x="46" y="106"/> <circ-port height="8" pin="50,690" width="8" x="46" y="126"/> <circ-port height="8" pin="50,740" width="8" x="46" y="146"/> <circ-port height="10" pin="260,330" width="10" x="125" y="65"/> <circ-port height="10" pin="260,300" width="10" x="125" y="85"/> <circ-port height="10" pin="260,270" width="10" x="125" y="105"/> <circ-port height="10" pin="260,240" width="10" x="125" y="125"/> <circ-port height="10" pin="260,210" width="10" x="125" y="145"/> <circ-port height="10" pin="260,180" width="10" x="125" y="165"/> <circ-port height="10" pin="260,150" width="10" x="125" y="185"/> <circ-port height="10" pin="260,120" width="10" x="125" y="205"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(70,260)" to="(130,260)"/> <wire from="(70,280)" to="(130,280)"/> <wire from="(70,200)" to="(130,200)"/> <wire from="(70,180)" to="(130,180)"/> <wire from="(70,160)" to="(130,160)"/> <wire from="(70,140)" to="(130,140)"/> <wire from="(70,120)" to="(130,120)"/> <wire from="(70,100)" to="(130,100)"/> <wire from="(70,80)" to="(130,80)"/> <wire from="(50,640)" to="(110,640)"/> <wire from="(70,220)" to="(130,220)"/> <wire from="(70,240)" to="(130,240)"/> <wire from="(70,340)" to="(130,340)"/> <wire from="(70,320)" to="(130,320)"/> <wire from="(70,300)" to="(130,300)"/> <wire from="(70,360)" to="(130,360)"/> <wire from="(70,380)" to="(130,380)"/> <wire from="(210,120)" to="(210,190)"/> <wire from="(210,260)" to="(210,330)"/> <wire from="(210,330)" to="(260,330)"/> <wire from="(90,540)" to="(90,620)"/> <wire from="(90,660)" to="(90,740)"/> <wire from="(50,540)" to="(90,540)"/> <wire from="(50,740)" to="(90,740)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(210,230)" to="(240,230)"/> <wire from="(230,270)" to="(260,270)"/> <wire from="(70,650)" to="(70,690)"/> <wire from="(70,590)" to="(70,630)"/> <wire from="(90,620)" to="(110,620)"/> <wire from="(90,660)" to="(110,660)"/> <wire from="(210,240)" to="(230,240)"/> <wire from="(240,210)" to="(260,210)"/> <wire from="(220,610)" to="(240,610)"/> <wire from="(220,510)" to="(240,510)"/> <wire from="(220,460)" to="(220,510)"/> <wire from="(220,560)" to="(220,610)"/> <wire from="(210,250)" to="(220,250)"/> <wire from="(240,210)" to="(240,220)"/> <wire from="(240,230)" to="(240,240)"/> <wire from="(210,120)" to="(260,120)"/> <wire from="(70,650)" to="(110,650)"/> <wire from="(70,630)" to="(110,630)"/> <wire from="(220,300)" to="(260,300)"/> <wire from="(230,240)" to="(230,270)"/> <wire from="(230,180)" to="(230,210)"/> <wire from="(150,390)" to="(150,610)"/> <wire from="(230,180)" to="(260,180)"/> <wire from="(210,220)" to="(240,220)"/> <wire from="(110,290)" to="(130,290)"/> <wire from="(110,230)" to="(130,230)"/> <wire from="(110,310)" to="(130,310)"/> <wire from="(110,330)" to="(130,330)"/> <wire from="(110,350)" to="(130,350)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(110,270)" to="(130,270)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(110,190)" to="(130,190)"/> <wire from="(110,170)" to="(130,170)"/> <wire from="(110,150)" to="(130,150)"/> <wire from="(110,130)" to="(130,130)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(110,90)" to="(130,90)"/> <wire from="(110,70)" to="(130,70)"/> <wire from="(50,690)" to="(70,690)"/> <wire from="(50,590)" to="(70,590)"/> <wire from="(170,230)" to="(190,230)"/> <wire from="(130,610)" to="(150,610)"/> <wire from="(240,240)" to="(260,240)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(220,460)" to="(240,460)"/> <wire from="(220,660)" to="(240,660)"/> <wire from="(220,560)" to="(240,560)"/> <wire from="(220,150)" to="(220,200)"/> <wire from="(220,250)" to="(220,300)"/> <wire from="(220,610)" to="(220,660)"/> <wire from="(220,510)" to="(220,560)"/> <wire from="(210,200)" to="(220,200)"/> <wire from="(210,460)" to="(220,460)"/> <comp lib="0" loc="(110,110)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x27"/> </comp> <comp lib="0" loc="(110,290)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x5f"/> </comp> <comp loc="(280,570)" name="D-latch"/> <comp lib="0" loc="(110,210)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x19"/> </comp> <comp lib="0" loc="(70,320)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x17"/> </comp> <comp lib="0" loc="(130,610)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(70,140)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x5"/> </comp> <comp lib="0" loc="(260,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,80)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xfd"/> </comp> <comp loc="(280,470)" name="D-latch"/> <comp lib="0" loc="(110,130)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x4f"/> </comp> <comp lib="0" loc="(260,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,180)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(260,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(210,460)" name="Constant"/> <comp lib="0" loc="(110,70)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(70,340)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x19"/> </comp> <comp lib="0" loc="(110,90)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x13"/> </comp> <comp lib="0" loc="(110,310)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xbf"/> </comp> <comp lib="0" loc="(50,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(260,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,240)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xf"/> </comp> <comp lib="0" loc="(70,360)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1b"/> </comp> <comp lib="0" loc="(50,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(70,120)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x3"/> </comp> <comp lib="0" loc="(70,260)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x11"/> </comp> <comp lib="0" loc="(70,220)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xd"/> </comp> <comp lib="0" loc="(110,170)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x3b"/> </comp> <comp lib="0" loc="(70,300)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x15"/> </comp> <comp lib="0" loc="(260,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(170,230)" name="Multiplexer"> <a name="select" val="5"/> <a name="width" val="8"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp loc="(280,620)" name="D-latch"/> <comp lib="0" loc="(110,150)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9f"/> </comp> <comp lib="0" loc="(110,190)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xd"/> </comp> <comp lib="0" loc="(110,370)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1f"/> </comp> <comp lib="0" loc="(50,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp loc="(280,520)" name="D-latch"/> <comp lib="0" loc="(260,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,230)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xb"/> </comp> <comp lib="0" loc="(50,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(70,380)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1d"/> </comp> <comp lib="0" loc="(70,200)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xb"/> </comp> <comp lib="0" loc="(70,280)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x13"/> </comp> <comp lib="0" loc="(110,250)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x17"/> </comp> <comp lib="0" loc="(70,100)" name="Constant"> <a name="width" val="8"/> </comp> <comp loc="(280,670)" name="D-latch"/> <comp lib="0" loc="(190,230)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(110,270)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x2f"/> </comp> <comp lib="0" loc="(50,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(110,330)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x47"/> </comp> <comp lib="0" loc="(260,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(150,36)" name="Text"> <a name="text" val="NTSC = PAL"/> </comp> <comp lib="0" loc="(110,350)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xf"/> </comp> <comp lib="0" loc="(70,160)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x7"/> </comp> </circuit> <circuit name="LENGTH_DOWN_COUNTER"> <a name="circuit" val="LENGTH_DOWN_COUNTER"/> <a name="clabel" val="LENGTH DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M234,31 Q230,41 226,31" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8c92" height="390" stroke="#000000" stroke-width="2" width="120" x="180" y="20"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="374">HALT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="207" y="44">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="134">W400x</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="335">LC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="315">LC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="293">LC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="274">LC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="254">LC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="234">LC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="214">LC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="194">LC7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="354">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="274" y="133">NOxxx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="154">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="193" y="114">Dx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="203" y="394">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="174">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="276" y="104">Dx --&gt;</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="84">ACLK4</text> <circ-port height="8" pin="80,40" width="8" x="176" y="36"/> <circ-port height="8" pin="80,320" width="8" x="176" y="126"/> <circ-port height="8" pin="80,1560" width="8" x="176" y="186"/> <circ-port height="8" pin="80,1400" width="8" x="176" y="206"/> <circ-port height="8" pin="80,1240" width="8" x="176" y="226"/> <circ-port height="8" pin="80,1080" width="8" x="176" y="246"/> <circ-port height="8" pin="80,920" width="8" x="176" y="266"/> <circ-port height="8" pin="80,760" width="8" x="176" y="286"/> <circ-port height="8" pin="80,600" width="8" x="176" y="306"/> <circ-port height="8" pin="80,440" width="8" x="176" y="326"/> <circ-port height="8" pin="80,400" width="8" x="176" y="366"/> <circ-port height="10" pin="520,140" width="10" x="295" y="125"/> <circ-port height="8" pin="80,160" width="8" x="176" y="146"/> <circ-port height="10" pin="520,180" width="10" x="295" y="95"/> <circ-port height="8" pin="80,200" width="8" x="176" y="106"/> <circ-port height="8" pin="80,360" width="8" x="176" y="346"/> <circ-port height="8" pin="80,240" width="8" x="176" y="386"/> <circ-port height="8" pin="80,280" width="8" x="176" y="166"/> <circ-port height="8" pin="80,120" width="8" x="176" y="76"/> <circ-anchor facing="east" height="6" width="6" x="247" y="17"/> </appear> <wire from="(190,260)" to="(250,260)"/> <wire from="(310,470)" to="(310,500)"/> <wire from="(310,630)" to="(310,660)"/> <wire from="(310,950)" to="(310,980)"/> <wire from="(310,1270)" to="(310,1300)"/> <wire from="(310,1590)" to="(310,1620)"/> <wire from="(310,790)" to="(310,820)"/> <wire from="(310,1110)" to="(310,1140)"/> <wire from="(310,1430)" to="(310,1460)"/> <wire from="(190,1130)" to="(190,1290)"/> <wire from="(190,970)" to="(190,1130)"/> <wire from="(190,1290)" to="(190,1450)"/> <wire from="(190,1450)" to="(190,1610)"/> <wire from="(190,810)" to="(190,970)"/> <wire from="(190,650)" to="(190,810)"/> <wire from="(190,490)" to="(190,650)"/> <wire from="(430,220)" to="(450,220)"/> <wire from="(390,670)" to="(400,670)"/> <wire from="(390,1150)" to="(400,1150)"/> <wire from="(390,510)" to="(400,510)"/> <wire from="(390,1310)" to="(400,1310)"/> <wire from="(390,830)" to="(400,830)"/> <wire from="(390,990)" to="(400,990)"/> <wire from="(390,1470)" to="(400,1470)"/> <wire from="(390,1630)" to="(400,1630)"/> <wire from="(210,40)" to="(470,40)"/> <wire from="(360,1240)" to="(360,1310)"/> <wire from="(360,1400)" to="(360,1470)"/> <wire from="(360,1560)" to="(360,1630)"/> <wire from="(360,1080)" to="(360,1150)"/> <wire from="(360,920)" to="(360,990)"/> <wire from="(360,440)" to="(360,510)"/> <wire from="(360,600)" to="(360,670)"/> <wire from="(360,760)" to="(360,830)"/> <wire from="(80,360)" to="(190,360)"/> <wire from="(530,1090)" to="(550,1090)"/> <wire from="(160,220)" to="(250,220)"/> <wire from="(530,1410)" to="(550,1410)"/> <wire from="(530,930)" to="(550,930)"/> <wire from="(530,770)" to="(550,770)"/> <wire from="(530,1570)" to="(550,1570)"/> <wire from="(530,610)" to="(550,610)"/> <wire from="(530,1250)" to="(550,1250)"/> <wire from="(530,450)" to="(550,450)"/> <wire from="(120,1160)" to="(140,1160)"/> <wire from="(120,840)" to="(140,840)"/> <wire from="(120,1000)" to="(140,1000)"/> <wire from="(120,1320)" to="(140,1320)"/> <wire from="(120,1480)" to="(140,1480)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(120,1640)" to="(140,1640)"/> <wire from="(230,280)" to="(230,330)"/> <wire from="(170,240)" to="(250,240)"/> <wire from="(80,160)" to="(250,160)"/> <wire from="(210,80)" to="(250,80)"/> <wire from="(430,140)" to="(520,140)"/> <wire from="(120,1320)" to="(120,1480)"/> <wire from="(120,1160)" to="(120,1320)"/> <wire from="(120,1000)" to="(120,1160)"/> <wire from="(120,840)" to="(120,1000)"/> <wire from="(120,680)" to="(120,840)"/> <wire from="(120,520)" to="(120,680)"/> <wire from="(120,1480)" to="(120,1640)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(80,280)" to="(160,280)"/> <wire from="(80,1400)" to="(160,1400)"/> <wire from="(80,1240)" to="(160,1240)"/> <wire from="(80,1080)" to="(160,1080)"/> <wire from="(80,920)" to="(160,920)"/> <wire from="(80,760)" to="(160,760)"/> <wire from="(80,600)" to="(160,600)"/> <wire from="(80,440)" to="(160,440)"/> <wire from="(80,1560)" to="(160,1560)"/> <wire from="(290,470)" to="(290,530)"/> <wire from="(290,630)" to="(290,690)"/> <wire from="(290,790)" to="(290,850)"/> <wire from="(290,950)" to="(290,1010)"/> <wire from="(290,1110)" to="(290,1170)"/> <wire from="(290,1270)" to="(290,1330)"/> <wire from="(290,1430)" to="(290,1490)"/> <wire from="(290,1590)" to="(290,1650)"/> <wire from="(80,40)" to="(210,40)"/> <wire from="(140,200)" to="(250,200)"/> <wire from="(260,360)" to="(260,440)"/> <wire from="(80,320)" to="(120,320)"/> <wire from="(360,440)" to="(400,440)"/> <wire from="(360,600)" to="(400,600)"/> <wire from="(360,760)" to="(400,760)"/> <wire from="(360,1080)" to="(400,1080)"/> <wire from="(360,920)" to="(400,920)"/> <wire from="(360,1240)" to="(400,1240)"/> <wire from="(360,1400)" to="(400,1400)"/> <wire from="(360,1560)" to="(400,1560)"/> <wire from="(340,1560)" to="(340,1650)"/> <wire from="(340,1240)" to="(340,1330)"/> <wire from="(340,920)" to="(340,1010)"/> <wire from="(340,440)" to="(340,530)"/> <wire from="(340,600)" to="(340,690)"/> <wire from="(340,760)" to="(340,850)"/> <wire from="(340,1080)" to="(340,1170)"/> <wire from="(340,1400)" to="(340,1490)"/> <wire from="(260,1240)" to="(280,1240)"/> <wire from="(260,920)" to="(280,920)"/> <wire from="(260,600)" to="(280,600)"/> <wire from="(260,760)" to="(280,760)"/> <wire from="(260,1400)" to="(280,1400)"/> <wire from="(260,1080)" to="(280,1080)"/> <wire from="(260,440)" to="(280,440)"/> <wire from="(260,1560)" to="(280,1560)"/> <wire from="(210,40)" to="(210,80)"/> <wire from="(450,680)" to="(450,720)"/> <wire from="(450,840)" to="(450,880)"/> <wire from="(450,520)" to="(450,560)"/> <wire from="(450,1000)" to="(450,1040)"/> <wire from="(450,1160)" to="(450,1200)"/> <wire from="(450,1320)" to="(450,1360)"/> <wire from="(450,1480)" to="(450,1520)"/> <wire from="(270,1260)" to="(280,1260)"/> <wire from="(270,940)" to="(280,940)"/> <wire from="(270,460)" to="(280,460)"/> <wire from="(270,1100)" to="(280,1100)"/> <wire from="(270,620)" to="(280,620)"/> <wire from="(270,780)" to="(280,780)"/> <wire from="(270,1420)" to="(280,1420)"/> <wire from="(270,1580)" to="(280,1580)"/> <wire from="(240,500)" to="(310,500)"/> <wire from="(240,660)" to="(310,660)"/> <wire from="(240,1140)" to="(310,1140)"/> <wire from="(240,1460)" to="(310,1460)"/> <wire from="(240,1620)" to="(310,1620)"/> <wire from="(240,1300)" to="(310,1300)"/> <wire from="(240,820)" to="(310,820)"/> <wire from="(240,980)" to="(310,980)"/> <wire from="(340,1010)" to="(400,1010)"/> <wire from="(340,530)" to="(400,530)"/> <wire from="(340,690)" to="(400,690)"/> <wire from="(340,850)" to="(400,850)"/> <wire from="(340,1170)" to="(400,1170)"/> <wire from="(340,1330)" to="(400,1330)"/> <wire from="(340,1490)" to="(400,1490)"/> <wire from="(340,1650)" to="(400,1650)"/> <wire from="(120,320)" to="(170,320)"/> <wire from="(170,240)" to="(170,320)"/> <wire from="(570,330)" to="(570,1640)"/> <wire from="(260,1240)" to="(260,1400)"/> <wire from="(260,1080)" to="(260,1240)"/> <wire from="(260,1400)" to="(260,1560)"/> <wire from="(260,920)" to="(260,1080)"/> <wire from="(260,760)" to="(260,920)"/> <wire from="(260,600)" to="(260,760)"/> <wire from="(260,440)" to="(260,600)"/> <wire from="(190,260)" to="(190,360)"/> <wire from="(360,560)" to="(360,600)"/> <wire from="(360,720)" to="(360,760)"/> <wire from="(360,880)" to="(360,920)"/> <wire from="(360,1040)" to="(360,1080)"/> <wire from="(360,400)" to="(360,440)"/> <wire from="(360,1520)" to="(360,1560)"/> <wire from="(360,1360)" to="(360,1400)"/> <wire from="(360,1200)" to="(360,1240)"/> <wire from="(440,520)" to="(450,520)"/> <wire from="(440,680)" to="(450,680)"/> <wire from="(440,1000)" to="(450,1000)"/> <wire from="(440,1160)" to="(450,1160)"/> <wire from="(440,1320)" to="(450,1320)"/> <wire from="(440,1480)" to="(450,1480)"/> <wire from="(440,840)" to="(450,840)"/> <wire from="(320,620)" to="(400,620)"/> <wire from="(320,1260)" to="(400,1260)"/> <wire from="(320,460)" to="(400,460)"/> <wire from="(320,780)" to="(400,780)"/> <wire from="(320,1420)" to="(400,1420)"/> <wire from="(320,940)" to="(400,940)"/> <wire from="(320,1100)" to="(400,1100)"/> <wire from="(320,1580)" to="(400,1580)"/> <wire from="(160,1080)" to="(160,1140)"/> <wire from="(160,920)" to="(160,980)"/> <wire from="(160,760)" to="(160,820)"/> <wire from="(160,600)" to="(160,660)"/> <wire from="(160,440)" to="(160,500)"/> <wire from="(120,180)" to="(250,180)"/> <wire from="(160,1560)" to="(160,1620)"/> <wire from="(160,1400)" to="(160,1460)"/> <wire from="(160,1240)" to="(160,1300)"/> <wire from="(80,240)" to="(140,240)"/> <wire from="(440,450)" to="(490,450)"/> <wire from="(440,610)" to="(490,610)"/> <wire from="(440,930)" to="(490,930)"/> <wire from="(440,1410)" to="(490,1410)"/> <wire from="(440,770)" to="(490,770)"/> <wire from="(440,1090)" to="(490,1090)"/> <wire from="(440,1250)" to="(490,1250)"/> <wire from="(440,1570)" to="(490,1570)"/> <wire from="(170,510)" to="(210,510)"/> <wire from="(170,670)" to="(210,670)"/> <wire from="(170,830)" to="(210,830)"/> <wire from="(170,1310)" to="(210,1310)"/> <wire from="(170,990)" to="(210,990)"/> <wire from="(170,1150)" to="(210,1150)"/> <wire from="(170,1470)" to="(210,1470)"/> <wire from="(170,1630)" to="(210,1630)"/> <wire from="(320,1080)" to="(340,1080)"/> <wire from="(320,440)" to="(340,440)"/> <wire from="(320,1400)" to="(340,1400)"/> <wire from="(320,600)" to="(340,600)"/> <wire from="(320,1240)" to="(340,1240)"/> <wire from="(320,760)" to="(340,760)"/> <wire from="(320,920)" to="(340,920)"/> <wire from="(320,1560)" to="(340,1560)"/> <wire from="(470,1230)" to="(490,1230)"/> <wire from="(470,1070)" to="(490,1070)"/> <wire from="(470,1550)" to="(490,1550)"/> <wire from="(470,1390)" to="(490,1390)"/> <wire from="(470,750)" to="(490,750)"/> <wire from="(470,910)" to="(490,910)"/> <wire from="(470,430)" to="(490,430)"/> <wire from="(470,590)" to="(490,590)"/> <wire from="(270,970)" to="(550,970)"/> <wire from="(270,490)" to="(550,490)"/> <wire from="(270,650)" to="(550,650)"/> <wire from="(270,1130)" to="(550,1130)"/> <wire from="(270,810)" to="(550,810)"/> <wire from="(270,1290)" to="(550,1290)"/> <wire from="(270,1450)" to="(550,1450)"/> <wire from="(270,1610)" to="(550,1610)"/> <wire from="(260,360)" to="(450,360)"/> <wire from="(170,530)" to="(290,530)"/> <wire from="(170,690)" to="(290,690)"/> <wire from="(170,1330)" to="(290,1330)"/> <wire from="(170,1490)" to="(290,1490)"/> <wire from="(170,850)" to="(290,850)"/> <wire from="(170,1010)" to="(290,1010)"/> <wire from="(170,1170)" to="(290,1170)"/> <wire from="(170,1650)" to="(290,1650)"/> <wire from="(120,180)" to="(120,200)"/> <wire from="(80,120)" to="(250,120)"/> <wire from="(430,180)" to="(520,180)"/> <wire from="(550,610)" to="(550,650)"/> <wire from="(550,450)" to="(550,490)"/> <wire from="(550,1090)" to="(550,1130)"/> <wire from="(550,770)" to="(550,810)"/> <wire from="(550,930)" to="(550,970)"/> <wire from="(550,1250)" to="(550,1290)"/> <wire from="(550,1410)" to="(550,1450)"/> <wire from="(550,1570)" to="(550,1610)"/> <wire from="(470,1230)" to="(470,1390)"/> <wire from="(470,1070)" to="(470,1230)"/> <wire from="(470,1390)" to="(470,1550)"/> <wire from="(470,910)" to="(470,1070)"/> <wire from="(470,750)" to="(470,910)"/> <wire from="(470,590)" to="(470,750)"/> <wire from="(470,430)" to="(470,590)"/> <wire from="(140,200)" to="(140,240)"/> <wire from="(230,330)" to="(570,330)"/> <wire from="(440,1640)" to="(570,1640)"/> <wire from="(160,220)" to="(160,280)"/> <wire from="(470,40)" to="(470,430)"/> <wire from="(190,360)" to="(190,490)"/> <wire from="(120,320)" to="(120,520)"/> <wire from="(450,220)" to="(450,360)"/> <wire from="(80,200)" to="(120,200)"/> <wire from="(270,1260)" to="(270,1290)"/> <wire from="(270,940)" to="(270,970)"/> <wire from="(270,460)" to="(270,490)"/> <wire from="(270,1100)" to="(270,1130)"/> <wire from="(270,620)" to="(270,650)"/> <wire from="(270,780)" to="(270,810)"/> <wire from="(270,1420)" to="(270,1450)"/> <wire from="(270,1580)" to="(270,1610)"/> <wire from="(360,1520)" to="(450,1520)"/> <wire from="(360,1360)" to="(450,1360)"/> <wire from="(360,1200)" to="(450,1200)"/> <wire from="(360,880)" to="(450,880)"/> <wire from="(360,1040)" to="(450,1040)"/> <wire from="(360,720)" to="(450,720)"/> <wire from="(360,560)" to="(450,560)"/> <wire from="(80,400)" to="(360,400)"/> <wire from="(190,970)" to="(210,970)"/> <wire from="(190,1290)" to="(210,1290)"/> <wire from="(190,810)" to="(210,810)"/> <wire from="(190,1130)" to="(210,1130)"/> <wire from="(190,650)" to="(210,650)"/> <wire from="(190,490)" to="(210,490)"/> <wire from="(190,1610)" to="(210,1610)"/> <wire from="(190,1450)" to="(210,1450)"/> <wire from="(360,1310)" to="(370,1310)"/> <wire from="(360,1470)" to="(370,1470)"/> <wire from="(360,1630)" to="(370,1630)"/> <wire from="(360,1150)" to="(370,1150)"/> <wire from="(360,990)" to="(370,990)"/> <wire from="(360,510)" to="(370,510)"/> <wire from="(360,670)" to="(370,670)"/> <wire from="(360,830)" to="(370,830)"/> <comp lib="0" loc="(80,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC2"/> </comp> <comp lib="1" loc="(390,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,450)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,1080)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dx"/> </comp> <comp lib="4" loc="(530,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp lib="1" loc="(440,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(390,1630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,770)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,520)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(390,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,1480)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC5"/> </comp> <comp lib="0" loc="(80,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="2" loc="(140,1320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(240,1460)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,1140)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,1160)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(530,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,840)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC1"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="1" loc="(390,1470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(320,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,430)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1640)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(320,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(320,1400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="4" loc="(530,1550)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(520,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NOxxx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC4"/> </comp> <comp lib="4" loc="(320,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1410)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1000)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,500)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,510)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1620)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK4"/> </comp> <comp lib="4" loc="(530,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC0"/> </comp> <comp lib="2" loc="(140,680)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,1570)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,1240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,1300)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,60)" name="LENGTH_CONTROL"/> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HALT"/> </comp> <comp lib="1" loc="(240,660)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(520,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Dx --&gt;"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(320,1560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC3"/> </comp> <comp lib="1" loc="(440,1090)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,610)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC6"/> </comp> <comp lib="1" loc="(440,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(80,1560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC7"/> </comp> </circuit> <circuit name="LENGTH_CONTROL"> <a name="circuit" val="LENGTH_CONTROL"/> <a name="clabel" val="LENGTH CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M193,91 Q197,101 201,91" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff2097" height="240" stroke="#000000" stroke-width="2" width="180" x="160" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="254">W400x</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="294">C_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="175">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="194">Dx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="274">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="184" y="214">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="234">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="314" y="154">NOxxx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="193">Dx --&gt;</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="234">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="134">ACLK4</text> <circ-port height="8" pin="100,70" width="8" x="156" y="86"/> <circ-port height="8" pin="100,120" width="8" x="156" y="286"/> <circ-port height="8" pin="100,270" width="8" x="156" y="166"/> <circ-port height="8" pin="100,210" width="8" x="156" y="186"/> <circ-port height="8" pin="100,240" width="8" x="156" y="266"/> <circ-port height="8" pin="100,330" width="8" x="156" y="206"/> <circ-port height="8" pin="100,420" width="8" x="156" y="226"/> <circ-port height="8" pin="100,380" width="8" x="156" y="246"/> <circ-port height="10" pin="680,130" width="10" x="335" y="145"/> <circ-port height="10" pin="680,170" width="10" x="335" y="185"/> <circ-port height="10" pin="680,70" width="10" x="335" y="225"/> <circ-port height="8" pin="100,30" width="8" x="156" y="126"/> <circ-anchor facing="east" height="6" width="6" x="247" y="67"/> </appear> <wire from="(340,190)" to="(400,190)"/> <wire from="(620,220)" to="(620,360)"/> <wire from="(250,210)" to="(300,210)"/> <wire from="(590,420)" to="(650,420)"/> <wire from="(600,130)" to="(640,130)"/> <wire from="(380,70)" to="(680,70)"/> <wire from="(100,210)" to="(210,210)"/> <wire from="(510,150)" to="(510,170)"/> <wire from="(190,170)" to="(190,190)"/> <wire from="(240,220)" to="(240,240)"/> <wire from="(360,280)" to="(360,310)"/> <wire from="(360,170)" to="(400,170)"/> <wire from="(280,190)" to="(280,280)"/> <wire from="(510,180)" to="(600,180)"/> <wire from="(470,140)" to="(470,240)"/> <wire from="(580,130)" to="(600,130)"/> <wire from="(380,120)" to="(380,280)"/> <wire from="(620,170)" to="(640,170)"/> <wire from="(660,130)" to="(680,130)"/> <wire from="(660,170)" to="(680,170)"/> <wire from="(100,70)" to="(190,70)"/> <wire from="(280,190)" to="(300,190)"/> <wire from="(280,360)" to="(620,360)"/> <wire from="(430,180)" to="(450,180)"/> <wire from="(440,280)" to="(440,320)"/> <wire from="(510,150)" to="(520,150)"/> <wire from="(280,300)" to="(280,360)"/> <wire from="(100,120)" to="(300,120)"/> <wire from="(650,180)" to="(650,420)"/> <wire from="(100,380)" to="(490,380)"/> <wire from="(450,120)" to="(520,120)"/> <wire from="(100,30)" to="(360,30)"/> <wire from="(340,100)" to="(400,100)"/> <wire from="(380,280)" to="(440,280)"/> <wire from="(360,30)" to="(360,170)"/> <wire from="(470,140)" to="(520,140)"/> <wire from="(490,240)" to="(490,380)"/> <wire from="(580,220)" to="(620,220)"/> <wire from="(190,70)" to="(190,150)"/> <wire from="(510,180)" to="(510,200)"/> <wire from="(510,170)" to="(620,170)"/> <wire from="(240,240)" to="(470,240)"/> <wire from="(280,70)" to="(280,100)"/> <wire from="(280,100)" to="(280,190)"/> <wire from="(100,330)" to="(390,330)"/> <wire from="(430,110)" to="(520,110)"/> <wire from="(190,70)" to="(280,70)"/> <wire from="(490,240)" to="(520,240)"/> <wire from="(360,310)" to="(390,310)"/> <wire from="(280,100)" to="(300,100)"/> <wire from="(280,280)" to="(300,280)"/> <wire from="(280,300)" to="(300,300)"/> <wire from="(380,120)" to="(400,120)"/> <wire from="(340,280)" to="(360,280)"/> <wire from="(100,420)" to="(570,420)"/> <wire from="(190,190)" to="(210,190)"/> <wire from="(430,320)" to="(440,320)"/> <wire from="(230,220)" to="(230,270)"/> <wire from="(510,200)" to="(520,200)"/> <wire from="(100,240)" to="(240,240)"/> <wire from="(380,70)" to="(380,120)"/> <wire from="(450,120)" to="(450,180)"/> <wire from="(600,130)" to="(600,180)"/> <wire from="(620,170)" to="(620,220)"/> <wire from="(100,270)" to="(230,270)"/> <comp lib="0" loc="(100,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(250,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(658,158)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="1" loc="(430,180)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="1" loc="(660,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Carry In"/> </comp> <comp loc="(340,290)" name="D-latch"/> <comp lib="6" loc="(504,256)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="1" loc="(580,130)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(590,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(293,203)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="6" loc="(200,204)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp lib="6" loc="(290,293)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(680,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="STEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(649,121)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(100,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp loc="(340,200)" name="D-latch"/> <comp lib="1" loc="(430,110)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(680,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Dx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(680,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NOSQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dx"/> </comp> <comp lib="0" loc="(100,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="6" loc="(499,101)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="1" loc="(660,170)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(291,114)" name="Text"> <a name="text" val="7"/> </comp> <comp loc="(340,110)" name="D-latch"/> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK4"/> </comp> <comp lib="1" loc="(430,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(639,158)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(580,220)" name="NOR Gate"> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(601,237)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="6" loc="(600,120)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(231,175)" name="Text"> <a name="text" val="DFF1"/> </comp> <comp lib="1" loc="(190,170)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> </circuit> <circuit name="IO_CONTROL"> <a name="circuit" val="IO_CONTROL"/> <a name="clabel" val="IO CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M258,51 Q262,61 266,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#e6ff3c" height="402" stroke="#000000" stroke-width="2" width="250" x="210" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="54">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="104">W4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="135">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="154">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="175">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="428" y="344">/RES PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="255">R/W INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="194">/R4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="214">/R4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="275">/NMI INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="295">/IRQ INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="315">INT APU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="234"> #CLK INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="74">OUT0 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="104">OUT1 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="134">OUT2 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="334">MASTER RESET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="254">R/W PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="164">IN 0 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="194">IN 1 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="284">/NMI PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="314">/IRQ PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="224">CLK PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="434" y="374">M2 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="229" y="355">#M2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="374">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="414">APU Ax</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="445" y="414">Ax</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="84">ACLK1</text> <circ-port height="8" pin="170,60" width="8" x="206" y="46"/> <circ-port height="8" pin="170,310" width="8" x="206" y="96"/> <circ-port height="8" pin="170,130" width="8" x="206" y="126"/> <circ-port height="8" pin="170,200" width="8" x="206" y="146"/> <circ-port height="8" pin="170,270" width="8" x="206" y="166"/> <circ-port height="8" pin="490,350" width="8" x="456" y="336"/> <circ-port height="8" pin="170,500" width="8" x="206" y="246"/> <circ-port height="8" pin="170,560" width="8" x="206" y="186"/> <circ-port height="8" pin="170,620" width="8" x="206" y="206"/> <circ-port height="10" pin="170,770" width="10" x="205" y="265"/> <circ-port height="10" pin="170,820" width="10" x="205" y="285"/> <circ-port height="8" pin="490,850" width="8" x="206" y="306"/> <circ-port height="10" pin="170,890" width="10" x="205" y="225"/> <circ-port height="10" pin="490,90" width="10" x="455" y="65"/> <circ-port height="10" pin="490,160" width="10" x="455" y="95"/> <circ-port height="10" pin="490,230" width="10" x="455" y="125"/> <circ-port height="10" pin="170,350" width="10" x="205" y="325"/> <circ-port height="10" pin="490,500" width="10" x="455" y="245"/> <circ-port height="10" pin="490,560" width="10" x="455" y="155"/> <circ-port height="10" pin="490,620" width="10" x="455" y="185"/> <circ-port height="8" pin="490,770" width="8" x="456" y="276"/> <circ-port height="8" pin="490,810" width="8" x="456" y="306"/> <circ-port height="8" pin="490,890" width="8" x="456" y="216"/> <circ-port height="8" pin="170,720" width="8" x="206" y="346"/> <circ-port height="10" pin="490,720" width="10" x="455" y="365"/> <circ-port height="8" pin="170,690" width="8" x="206" y="366"/> <circ-port height="10" pin="490,420" width="10" x="455" y="405"/> <circ-port height="8" pin="170,420" width="8" x="206" y="406"/> <circ-port height="8" pin="170,90" width="8" x="206" y="76"/> <circ-anchor facing="east" height="6" width="6" x="287" y="47"/> </appear> <wire from="(450,100)" to="(450,170)"/> <wire from="(310,220)" to="(310,290)"/> <wire from="(360,90)" to="(360,160)"/> <wire from="(230,180)" to="(230,250)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(310,290)" to="(310,310)"/> <wire from="(390,830)" to="(390,850)"/> <wire from="(170,690)" to="(340,690)"/> <wire from="(330,720)" to="(440,720)"/> <wire from="(230,90)" to="(230,110)"/> <wire from="(450,610)" to="(450,640)"/> <wire from="(390,850)" to="(490,850)"/> <wire from="(360,60)" to="(360,90)"/> <wire from="(270,220)" to="(310,220)"/> <wire from="(290,180)" to="(380,180)"/> <wire from="(170,820)" to="(330,820)"/> <wire from="(420,680)" to="(450,680)"/> <wire from="(460,160)" to="(490,160)"/> <wire from="(460,560)" to="(490,560)"/> <wire from="(460,720)" to="(490,720)"/> <wire from="(460,620)" to="(490,620)"/> <wire from="(460,500)" to="(490,500)"/> <wire from="(460,420)" to="(490,420)"/> <wire from="(310,670)" to="(340,670)"/> <wire from="(450,240)" to="(450,350)"/> <wire from="(360,230)" to="(380,230)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(420,90)" to="(440,90)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(170,60)" to="(190,60)"/> <wire from="(450,570)" to="(450,610)"/> <wire from="(230,180)" to="(250,180)"/> <wire from="(310,640)" to="(450,640)"/> <wire from="(170,350)" to="(250,350)"/> <wire from="(170,270)" to="(250,270)"/> <wire from="(170,130)" to="(250,130)"/> <wire from="(170,720)" to="(310,720)"/> <wire from="(450,350)" to="(450,410)"/> <wire from="(450,510)" to="(450,570)"/> <wire from="(450,170)" to="(450,240)"/> <wire from="(310,150)" to="(310,220)"/> <wire from="(360,160)" to="(360,230)"/> <wire from="(230,110)" to="(230,180)"/> <wire from="(270,350)" to="(450,350)"/> <wire from="(270,280)" to="(270,290)"/> <wire from="(270,140)" to="(270,150)"/> <wire from="(330,770)" to="(440,770)"/> <wire from="(450,680)" to="(450,710)"/> <wire from="(310,640)" to="(310,670)"/> <wire from="(270,290)" to="(310,290)"/> <wire from="(270,150)" to="(310,150)"/> <wire from="(450,350)" to="(490,350)"/> <wire from="(290,110)" to="(380,110)"/> <wire from="(290,250)" to="(380,250)"/> <wire from="(450,410)" to="(450,510)"/> <wire from="(460,90)" to="(490,90)"/> <wire from="(460,770)" to="(490,770)"/> <wire from="(460,810)" to="(490,810)"/> <wire from="(330,890)" to="(490,890)"/> <wire from="(460,230)" to="(490,230)"/> <wire from="(360,160)" to="(380,160)"/> <wire from="(210,60)" to="(360,60)"/> <wire from="(420,160)" to="(440,160)"/> <wire from="(380,680)" to="(400,680)"/> <wire from="(370,830)" to="(390,830)"/> <wire from="(170,90)" to="(190,90)"/> <wire from="(230,110)" to="(250,110)"/> <wire from="(210,90)" to="(230,90)"/> <wire from="(230,250)" to="(250,250)"/> <wire from="(170,560)" to="(440,560)"/> <wire from="(170,420)" to="(440,420)"/> <wire from="(170,500)" to="(440,500)"/> <wire from="(170,620)" to="(440,620)"/> <wire from="(170,200)" to="(250,200)"/> <wire from="(170,310)" to="(310,310)"/> <wire from="(170,890)" to="(310,890)"/> <wire from="(170,770)" to="(310,770)"/> <wire from="(370,810)" to="(440,810)"/> <comp lib="1" loc="(420,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,350)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/RES PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,250)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(170,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(490,770)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/NMI PIN "/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4016"/> </comp> <comp lib="1" loc="(460,90)" name="Controlled Buffer"/> <comp loc="(420,100)" name="D-latch"/> <comp lib="1" loc="(460,620)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(460,160)" name="Controlled Buffer"/> <comp loc="(420,240)" name="D-latch"/> <comp lib="1" loc="(440,770)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,820)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,810)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4017"/> </comp> <comp lib="1" loc="(330,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R/W PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,890)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,770)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(420,170)" name="D-latch"/> <comp lib="0" loc="(170,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(170,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W int"/> </comp> <comp lib="1" loc="(380,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(490,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="IN1 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,720)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(490,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="label" val="Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,500)" name="Controlled Buffer"/> <comp lib="0" loc="(490,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT2 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="M2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(490,810)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,420)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(490,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="IN0 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,560)" name="Controlled Buffer"/> <comp lib="0" loc="(170,350)" name="Pin"> <a name="output" val="true"/> <a name="label" val="MASTER RESET"/> </comp> <comp lib="0" loc="(490,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT0 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(338,53)" name="Text"> <a name="text" val="ACLK15"/> </comp> <comp lib="0" loc="(170,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#M2"/> </comp> <comp lib="0" loc="(170,820)" name="Pin"> <a name="output" val="true"/> <a name="label" val="/IRQ INT"/> </comp> <comp lib="1" loc="(460,230)" name="Controlled Buffer"/> <comp lib="0" loc="(170,420)" name="Pin"> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="APU Ax"/> </comp> <comp lib="0" loc="(490,890)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CLK PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,890)" name="Pin"> <a name="output" val="true"/> <a name="label" val="#CLK INT"/> </comp> <comp lib="0" loc="(170,770)" name="Pin"> <a name="output" val="true"/> <a name="label" val="/NMI INT"/> </comp> <comp lib="0" loc="(490,850)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="INT(from apu)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(170,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(490,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT1 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(290,180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(210,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(290,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(210,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(250,350)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="3.7.2" version="1.0"> This file is intended to be loaded by Logisim-evolution v3.7.2(https://github.com/logisim-evolution/). <lib desc="#Wiring" name="0"> <tool name="Pin"> <a name="appearance" val="classic"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"/> <lib desc="#I/O" name="5"/> <lib desc="#TTL" name="6"/> <lib desc="#TCL" name="7"/> <lib desc="#Base" name="8"/> <lib desc="#BFH-Praktika" name="9"/> <lib desc="#Input/Output-Extra" name="10"/> <lib desc="#Soc" name="11"/> <main name="main"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="8" map="Button2" name="Menu Tool"/> <tool lib="8" map="Button3" name="Menu Tool"/> <tool lib="8" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="8" name="Poke Tool"/> <tool lib="8" name="Edit Tool"/> <tool lib="8" name="Wiring Tool"/> <tool lib="8" name="Text Tool"/> <sep/> <tool lib="0" name="Pin"/> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> </tool> <sep/> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> <tool lib="1" name="XOR Gate"/> <tool lib="1" name="NAND Gate"/> <tool lib="1" name="NOR Gate"/> <sep/> <tool lib="4" name="D Flip-Flop"/> <tool lib="4" name="Register"/> </toolbar> <circuit name="main"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="main"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> </circuit> <circuit name="PlexedTranspLatch"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PlexedTranspLatch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sel_B"/> </comp> <comp lib="0" loc="(110,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="B"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sel_C"/> </comp> <comp lib="0" loc="(110,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="C"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sel_A"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="A"/> </comp> <comp lib="0" loc="(120,120)" name="Tunnel"> <a name="label" val="sel_B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(120,150)" name="Tunnel"> <a name="label" val="B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(120,180)" name="Tunnel"> <a name="label" val="sel_C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(120,210)" name="Tunnel"> <a name="label" val="C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(120,60)" name="Tunnel"> <a name="label" val="sel_A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(120,90)" name="Tunnel"> <a name="label" val="A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="C"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="sel_A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(290,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="A"/> <a name="labelfont" val="SansSerif bold 11"/> </comp> <comp lib="0" loc="(330,290)" name="NoConnect"/> <comp lib="0" loc="(340,90)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(390,150)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,480)" name="Constant"/> <comp lib="0" loc="(530,190)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(530,230)" name="Transistor"> <a name="facing" val="south"/> <a name="selloc" val="bl"/> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="value_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_value_out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(370,300)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(420,370)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(470,440)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(500,430)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(529,413)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Transparent Latch"/> </comp> <comp lib="8" loc="(545,171)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Transparent Latch"/> </comp> <wire from="(110,120)" to="(120,120)"/> <wire from="(110,150)" to="(120,150)"/> <wire from="(110,180)" to="(120,180)"/> <wire from="(110,210)" to="(120,210)"/> <wire from="(110,60)" to="(120,60)"/> <wire from="(110,90)" to="(120,90)"/> <wire from="(290,120)" to="(370,120)"/> <wire from="(290,150)" to="(350,150)"/> <wire from="(290,180)" to="(420,180)"/> <wire from="(290,210)" to="(400,210)"/> <wire from="(290,270)" to="(350,270)"/> <wire from="(290,310)" to="(340,310)"/> <wire from="(290,340)" to="(400,340)"/> <wire from="(290,380)" to="(390,380)"/> <wire from="(290,410)" to="(450,410)"/> <wire from="(290,450)" to="(440,450)"/> <wire from="(290,60)" to="(320,60)"/> <wire from="(290,90)" to="(300,90)"/> <wire from="(320,60)" to="(320,70)"/> <wire from="(330,290)" to="(340,290)"/> <wire from="(340,90)" to="(470,90)"/> <wire from="(350,270)" to="(350,280)"/> <wire from="(370,120)" to="(370,130)"/> <wire from="(370,300)" to="(380,300)"/> <wire from="(380,300)" to="(380,360)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(390,150)" to="(470,150)"/> <wire from="(400,340)" to="(400,350)"/> <wire from="(420,180)" to="(420,190)"/> <wire from="(420,370)" to="(430,370)"/> <wire from="(430,370)" to="(430,430)"/> <wire from="(430,430)" to="(440,430)"/> <wire from="(440,210)" to="(470,210)"/> <wire from="(450,410)" to="(450,420)"/> <wire from="(470,150)" to="(470,210)"/> <wire from="(470,210)" to="(510,210)"/> <wire from="(470,440)" to="(490,440)"/> <wire from="(470,90)" to="(470,150)"/> <wire from="(530,230)" to="(560,230)"/> <wire from="(550,440)" to="(560,440)"/> <wire from="(550,480)" to="(560,480)"/> </circuit> <circuit name="AOI"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="AOI"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(210,110)" name="Ground"/> <comp lib="0" loc="(220,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(240,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(240,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(240,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(250,110)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(260,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(290,110)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(300,80)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(330,110)" name="Transistor"> <a name="facing" val="west"/> <a name="type" val="n"/> </comp> <comp lib="0" loc="(330,160)" name="Tunnel"> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(360,230)" name="Tunnel"> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(370,110)" name="Ground"/> <comp lib="0" loc="(500,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(500,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,110)" name="Tunnel"> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,50)" name="Tunnel"> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,80)" name="Tunnel"> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(280,210)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <wire from="(220,80)" to="(230,80)"/> <wire from="(230,80)" to="(230,90)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(240,220)" to="(250,220)"/> <wire from="(240,250)" to="(290,250)"/> <wire from="(260,80)" to="(270,80)"/> <wire from="(270,80)" to="(270,90)"/> <wire from="(280,210)" to="(290,210)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(290,210)" to="(290,220)"/> <wire from="(290,220)" to="(310,220)"/> <wire from="(290,240)" to="(290,250)"/> <wire from="(290,240)" to="(310,240)"/> <wire from="(300,110)" to="(300,160)"/> <wire from="(300,110)" to="(330,110)"/> <wire from="(300,160)" to="(330,160)"/> <wire from="(300,80)" to="(300,110)"/> <wire from="(340,80)" to="(350,80)"/> <wire from="(350,230)" to="(360,230)"/> <wire from="(350,80)" to="(350,90)"/> </circuit> <circuit name="OAI"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAI"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(220,150)" name="Ground"/> <comp lib="0" loc="(220,80)" name="Ground"/> <comp lib="0" loc="(230,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(260,150)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(260,80)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,150)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(360,150)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(360,250)" name="Tunnel"> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(380,150)" name="Tunnel"> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(500,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(500,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="x"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,110)" name="Tunnel"> <a name="label" val="c"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,50)" name="Tunnel"> <a name="label" val="a"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="NewPins"/> </comp> <comp lib="0" loc="(90,80)" name="Tunnel"> <a name="label" val="b"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(270,230)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,250)" name="NAND Gate"> <a name="size" val="30"/> </comp> <wire from="(230,120)" to="(240,120)"/> <wire from="(230,220)" to="(240,220)"/> <wire from="(230,240)" to="(240,240)"/> <wire from="(230,270)" to="(290,270)"/> <wire from="(230,50)" to="(240,50)"/> <wire from="(240,120)" to="(240,130)"/> <wire from="(240,50)" to="(240,60)"/> <wire from="(260,150)" to="(280,150)"/> <wire from="(260,80)" to="(280,80)"/> <wire from="(270,230)" to="(290,230)"/> <wire from="(280,150)" to="(300,150)"/> <wire from="(280,80)" to="(280,150)"/> <wire from="(290,230)" to="(290,240)"/> <wire from="(290,240)" to="(310,240)"/> <wire from="(290,260)" to="(290,270)"/> <wire from="(290,260)" to="(310,260)"/> <wire from="(310,120)" to="(320,120)"/> <wire from="(320,120)" to="(320,130)"/> <wire from="(340,150)" to="(360,150)"/> <wire from="(350,250)" to="(360,250)"/> <wire from="(360,150)" to="(380,150)"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="Shift Register"> <a name="length" val="1"/> </tool> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <main name="2A03_APU"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="2A03_APU"> <a name="circuit" val="2A03_APU"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif bold 12"/> <appear> <rect fill="#ffc246" height="390" stroke="#000000" stroke-width="2" width="240" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="123">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="257" y="273">DB_out</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="275">DB_in</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="425">AUX B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="247" y="94">PHI0 to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="254">DB from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="270" y="193">AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="194">Addr from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="254">DB to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="225">R/W from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="247" y="303">RDY to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="334">OUT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="345">OUT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="355">OUT2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="365">/RDP0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="375">/RDP1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="413">AUX A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="84">PHI1 from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="96">PHI2 from Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="305">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="134">/IRQ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="145">/NMI</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="267" y="224">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="83">M2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="249" y="143">/NMI to Core</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="234">/IRQ to Core</text> <text font-family="SansSerif" font-size="24" font-weight="bold" text-anchor="middle" x="168" y="43">2A03-G APU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="74">CLK</text> <circ-port height="8" pin="3630,1640" width="8" x="46" y="116"/> <circ-port height="10" pin="2940,2050" width="10" x="285" y="295"/> <circ-port height="8" pin="2940,1990" width="8" x="46" y="216"/> <circ-port height="10" pin="2940,1890" width="10" x="285" y="225"/> <circ-port height="10" pin="2940,1940" width="10" x="285" y="135"/> <circ-port height="8" pin="3630,1580" width="8" x="46" y="136"/> <circ-port height="10" pin="3630,1550" width="10" x="285" y="215"/> <circ-port height="10" pin="3630,1370" width="10" x="285" y="325"/> <circ-port height="10" pin="3630,1400" width="10" x="285" y="335"/> <circ-port height="10" pin="3630,1430" width="10" x="285" y="345"/> <circ-port height="10" pin="3630,1460" width="10" x="285" y="355"/> <circ-port height="10" pin="3630,1490" width="10" x="285" y="365"/> <circ-port height="8" pin="3630,1280" width="8" x="46" y="296"/> <circ-port height="10" pin="3630,1670" width="10" x="285" y="75"/> <circ-port height="10" pin="3470,1860" width="10" x="285" y="85"/> <circ-port height="8" pin="3630,1610" width="8" x="46" y="126"/> <circ-port height="10" pin="3030,2210" width="10" x="285" y="245"/> <circ-port height="8" pin="3030,2170" width="8" x="46" y="246"/> <circ-port height="10" pin="140,240" width="10" x="285" y="405"/> <circ-port height="10" pin="130,1840" width="10" x="285" y="415"/> <circ-port height="8" pin="2950,2100" width="8" x="46" y="186"/> <circ-port height="10" pin="3630,1710" width="10" x="285" y="185"/> <circ-port height="8" pin="3630,1780" width="8" x="46" y="266"/> <circ-port height="10" pin="3630,1750" width="10" x="285" y="265"/> <circ-port height="8" pin="3430,1930" width="8" x="46" y="76"/> <circ-port height="8" pin="3430,1980" width="8" x="46" y="86"/> <circ-port height="8" pin="3630,1520" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(1830,1030)" to="(1930,1030)"/> <wire from="(2910,1590)" to="(2910,1890)"/> <wire from="(1070,2380)" to="(1370,2380)"/> <wire from="(2040,740)" to="(2040,2430)"/> <wire from="(3150,1510)" to="(3160,1510)"/> <wire from="(3170,410)" to="(3180,410)"/> <wire from="(2480,990)" to="(2500,990)"/> <wire from="(1270,1840)" to="(1310,1840)"/> <wire from="(3150,530)" to="(3180,530)"/> <wire from="(2910,1890)" to="(2940,1890)"/> <wire from="(3330,870)" to="(3360,870)"/> <wire from="(3030,1530)" to="(3160,1530)"/> <wire from="(560,2570)" to="(600,2570)"/> <wire from="(2440,1600)" to="(2450,1600)"/> <wire from="(1000,580)" to="(1170,580)"/> <wire from="(3300,370)" to="(3320,370)"/> <wire from="(2660,1340)" to="(2670,1340)"/> <wire from="(160,480)" to="(260,480)"/> <wire from="(2660,1820)" to="(2670,1820)"/> <wire from="(2660,1500)" to="(2670,1500)"/> <wire from="(2660,1660)" to="(2670,1660)"/> <wire from="(1950,1520)" to="(1950,2030)"/> <wire from="(920,390)" to="(940,390)"/> <wire from="(1300,1580)" to="(1310,1580)"/> <wire from="(70,1380)" to="(1890,1380)"/> <wire from="(230,1130)" to="(260,1130)"/> <wire from="(3140,2210)" to="(3140,2300)"/> <wire from="(1950,2030)" to="(2860,2030)"/> <wire from="(680,2610)" to="(770,2610)"/> <wire from="(130,1840)" to="(150,1840)"/> <wire from="(1040,500)" to="(1170,500)"/> <wire from="(2450,1490)" to="(2450,1500)"/> <wire from="(1830,1620)" to="(1850,1620)"/> <wire from="(1830,980)" to="(1850,980)"/> <wire from="(1070,1610)" to="(1070,1770)"/> <wire from="(1850,1160)" to="(1870,1160)"/> <wire from="(1020,2410)" to="(1040,2410)"/> <wire from="(3140,1750)" to="(3140,2210)"/> <wire from="(950,1270)" to="(950,1320)"/> <wire from="(1830,1130)" to="(1860,1130)"/> <wire from="(1390,1290)" to="(1390,1460)"/> <wire from="(1370,2490)" to="(1670,2490)"/> <wire from="(1870,1200)" to="(1870,1230)"/> <wire from="(1370,2650)" to="(1670,2650)"/> <wire from="(1070,2510)" to="(1370,2510)"/> <wire from="(3130,1460)" to="(3140,1460)"/> <wire from="(920,1670)" to="(1040,1670)"/> <wire from="(1860,1190)" to="(1860,1210)"/> <wire from="(150,1080)" to="(150,1090)"/> <wire from="(120,1050)" to="(120,1060)"/> <wire from="(1270,1970)" to="(1310,1970)"/> <wire from="(1330,2670)" to="(1370,2670)"/> <wire from="(3330,840)" to="(3360,840)"/> <wire from="(920,660)" to="(960,660)"/> <wire from="(1850,1180)" to="(1850,1190)"/> <wire from="(770,2530)" to="(1070,2530)"/> <wire from="(1000,1190)" to="(1170,1190)"/> <wire from="(770,2690)" to="(1070,2690)"/> <wire from="(1600,1420)" to="(1920,1420)"/> <wire from="(3320,1160)" to="(3340,1160)"/> <wire from="(2890,1570)" to="(2890,1940)"/> <wire from="(2440,1520)" to="(2500,1520)"/> <wire from="(920,680)" to="(940,680)"/> <wire from="(1360,2410)" to="(1370,2410)"/> <wire from="(920,1610)" to="(1070,1610)"/> <wire from="(1160,1250)" to="(1170,1250)"/> <wire from="(1190,2400)" to="(1200,2400)"/> <wire from="(1060,2430)" to="(1070,2430)"/> <wire from="(1860,1150)" to="(1870,1150)"/> <wire from="(1020,220)" to="(1020,320)"/> <wire from="(2480,1650)" to="(2480,1660)"/> <wire from="(1040,1110)" to="(1170,1110)"/> <wire from="(920,640)" to="(1080,640)"/> <wire from="(2450,1460)" to="(2450,1470)"/> <wire from="(2260,1640)" to="(2260,2100)"/> <wire from="(1830,1750)" to="(1850,1750)"/> <wire from="(1830,950)" to="(1850,950)"/> <wire from="(2440,970)" to="(2440,990)"/> <wire from="(1030,1690)" to="(1310,1690)"/> <wire from="(760,2450)" to="(770,2450)"/> <wire from="(1420,1290)" to="(1420,1460)"/> <wire from="(1070,1610)" to="(1310,1610)"/> <wire from="(1430,2010)" to="(1430,2030)"/> <wire from="(2200,1480)" to="(2420,1480)"/> <wire from="(130,1670)" to="(130,1680)"/> <wire from="(160,420)" to="(160,430)"/> <wire from="(240,2210)" to="(1250,2210)"/> <wire from="(1270,1940)" to="(1310,1940)"/> <wire from="(1530,2300)" to="(1830,2300)"/> <wire from="(1590,2010)" to="(1590,2030)"/> <wire from="(2800,1710)" to="(2800,1960)"/> <wire from="(920,540)" to="(1020,540)"/> <wire from="(2150,2240)" to="(3120,2240)"/> <wire from="(1850,1150)" to="(1850,1160)"/> <wire from="(1920,420)" to="(1920,430)"/> <wire from="(770,2340)" to="(1070,2340)"/> <wire from="(3090,1240)" to="(3420,1240)"/> <wire from="(1250,2100)" to="(2260,2100)"/> <wire from="(3140,1430)" to="(3160,1430)"/> <wire from="(3140,1750)" to="(3160,1750)"/> <wire from="(2060,720)" to="(2060,2770)"/> <wire from="(2660,1440)" to="(2670,1440)"/> <wire from="(160,420)" to="(260,420)"/> <wire from="(2660,1760)" to="(2670,1760)"/> <wire from="(2660,1600)" to="(2670,1600)"/> <wire from="(2660,1920)" to="(2670,1920)"/> <wire from="(2440,1010)" to="(2500,1010)"/> <wire from="(1300,1520)" to="(1310,1520)"/> <wire from="(1220,2400)" to="(1230,2400)"/> <wire from="(580,2550)" to="(600,2550)"/> <wire from="(2840,1550)" to="(2840,2010)"/> <wire from="(1100,1230)" to="(1170,1230)"/> <wire from="(2480,1620)" to="(2480,1630)"/> <wire from="(680,2550)" to="(770,2550)"/> <wire from="(1920,1050)" to="(1920,1420)"/> <wire from="(920,480)" to="(1050,480)"/> <wire from="(1830,1720)" to="(1850,1720)"/> <wire from="(520,2410)" to="(520,2530)"/> <wire from="(2520,1020)" to="(2520,1040)"/> <wire from="(180,460)" to="(260,460)"/> <wire from="(120,1110)" to="(260,1110)"/> <wire from="(920,980)" to="(930,980)"/> <wire from="(920,1780)" to="(930,1780)"/> <wire from="(1530,2300)" to="(1530,2400)"/> <wire from="(1450,1290)" to="(1450,1460)"/> <wire from="(120,280)" to="(120,470)"/> <wire from="(1370,2590)" to="(1670,2590)"/> <wire from="(3030,980)" to="(3370,980)"/> <wire from="(1460,2010)" to="(1460,2030)"/> <wire from="(2470,1680)" to="(2500,1680)"/> <wire from="(1020,2240)" to="(1320,2240)"/> <wire from="(1070,2450)" to="(1370,2450)"/> <wire from="(1070,2610)" to="(1370,2610)"/> <wire from="(1250,2210)" to="(1250,2430)"/> <wire from="(1860,1130)" to="(1860,1150)"/> <wire from="(1870,1780)" to="(1870,1800)"/> <wire from="(1630,2050)" to="(1630,2130)"/> <wire from="(1270,1910)" to="(1310,1910)"/> <wire from="(1620,2010)" to="(1620,2030)"/> <wire from="(2450,1560)" to="(2450,1600)"/> <wire from="(920,1150)" to="(1020,1150)"/> <wire from="(1490,2430)" to="(1550,2430)"/> <wire from="(1020,220)" to="(1060,220)"/> <wire from="(770,2470)" to="(1070,2470)"/> <wire from="(770,2630)" to="(1070,2630)"/> <wire from="(560,2550)" to="(560,2570)"/> <wire from="(750,2690)" to="(770,2690)"/> <wire from="(1300,1810)" to="(1310,1810)"/> <wire from="(1160,1030)" to="(1170,1030)"/> <wire from="(3030,840)" to="(3150,840)"/> <wire from="(90,1100)" to="(90,1780)"/> <wire from="(2230,780)" to="(3370,780)"/> <wire from="(1830,1690)" to="(1850,1690)"/> <wire from="(920,1090)" to="(1050,1090)"/> <wire from="(250,1720)" to="(260,1720)"/> <wire from="(1100,1230)" to="(1100,1400)"/> <wire from="(1480,1290)" to="(1480,1460)"/> <wire from="(1150,370)" to="(1170,370)"/> <wire from="(1250,1990)" to="(1250,2100)"/> <wire from="(240,1320)" to="(950,1320)"/> <wire from="(580,2540)" to="(580,2550)"/> <wire from="(1870,1110)" to="(1870,1140)"/> <wire from="(1490,2010)" to="(1490,2030)"/> <wire from="(920,300)" to="(1040,300)"/> <wire from="(3170,610)" to="(3180,610)"/> <wire from="(3170,450)" to="(3180,450)"/> <wire from="(2440,1620)" to="(2470,1620)"/> <wire from="(2440,990)" to="(2460,990)"/> <wire from="(1270,1880)" to="(1310,1880)"/> <wire from="(1930,1030)" to="(1930,1430)"/> <wire from="(3150,570)" to="(3180,570)"/> <wire from="(2970,520)" to="(3130,520)"/> <wire from="(1650,2010)" to="(1650,2030)"/> <wire from="(1720,1440)" to="(1720,1460)"/> <wire from="(3410,1670)" to="(3630,1670)"/> <wire from="(3370,490)" to="(3370,780)"/> <wire from="(3470,1120)" to="(3470,1860)"/> <wire from="(920,320)" to="(1020,320)"/> <wire from="(2660,1380)" to="(2670,1380)"/> <wire from="(2660,1700)" to="(2670,1700)"/> <wire from="(2660,1540)" to="(2670,1540)"/> <wire from="(2660,1860)" to="(2670,1860)"/> <wire from="(920,1230)" to="(940,1230)"/> <wire from="(1890,650)" to="(3180,650)"/> <wire from="(1100,1400)" to="(2320,1400)"/> <wire from="(680,2490)" to="(770,2490)"/> <wire from="(220,2770)" to="(1330,2770)"/> <wire from="(1830,1660)" to="(1850,1660)"/> <wire from="(1620,2410)" to="(1640,2410)"/> <wire from="(120,1050)" to="(260,1050)"/> <wire from="(920,1560)" to="(930,1560)"/> <wire from="(1020,2240)" to="(1020,2410)"/> <wire from="(1030,520)" to="(1170,520)"/> <wire from="(1510,1290)" to="(1510,1460)"/> <wire from="(1830,440)" to="(1920,440)"/> <wire from="(580,2510)" to="(580,2520)"/> <wire from="(1030,2670)" to="(1030,2750)"/> <wire from="(1370,2690)" to="(1670,2690)"/> <wire from="(1370,2530)" to="(1670,2530)"/> <wire from="(1070,2550)" to="(1370,2550)"/> <wire from="(3150,1360)" to="(3160,1360)"/> <wire from="(960,840)" to="(960,910)"/> <wire from="(3070,1650)" to="(3160,1650)"/> <wire from="(1070,440)" to="(1170,440)"/> <wire from="(1270,1850)" to="(1310,1850)"/> <wire from="(1040,2180)" to="(1460,2180)"/> <wire from="(1020,1710)" to="(1310,1710)"/> <wire from="(2970,520)" to="(2970,1450)"/> <wire from="(3410,1640)" to="(3630,1640)"/> <wire from="(70,1380)" to="(70,1780)"/> <wire from="(1860,520)" to="(1860,720)"/> <wire from="(120,1090)" to="(120,1110)"/> <wire from="(1880,450)" to="(1880,460)"/> <wire from="(770,2570)" to="(1070,2570)"/> <wire from="(180,190)" to="(180,220)"/> <wire from="(560,2490)" to="(560,2510)"/> <wire from="(3070,1220)" to="(3340,1220)"/> <wire from="(920,600)" to="(1130,600)"/> <wire from="(1160,970)" to="(1170,970)"/> <wire from="(1030,1130)" to="(1170,1130)"/> <wire from="(3120,1780)" to="(3160,1780)"/> <wire from="(1860,1190)" to="(1870,1190)"/> <wire from="(1790,2400)" to="(1800,2400)"/> <wire from="(2910,1590)" to="(3160,1590)"/> <wire from="(1660,2430)" to="(1670,2430)"/> <wire from="(1830,1630)" to="(1850,1630)"/> <wire from="(1830,1150)" to="(1850,1150)"/> <wire from="(1940,1010)" to="(1940,1440)"/> <wire from="(120,1660)" to="(260,1660)"/> <wire from="(1460,2180)" to="(1620,2180)"/> <wire from="(2460,1670)" to="(2460,1700)"/> <wire from="(1830,1050)" to="(1920,1050)"/> <wire from="(130,1680)" to="(260,1680)"/> <wire from="(1040,250)" to="(1040,300)"/> <wire from="(250,2670)" to="(770,2670)"/> <wire from="(920,1750)" to="(1000,1750)"/> <wire from="(1380,1290)" to="(1380,1460)"/> <wire from="(1370,2340)" to="(1670,2340)"/> <wire from="(2020,770)" to="(2020,2270)"/> <wire from="(3150,1490)" to="(3160,1490)"/> <wire from="(1920,460)" to="(1920,480)"/> <wire from="(60,1800)" to="(60,1810)"/> <wire from="(1070,1050)" to="(1170,1050)"/> <wire from="(1270,1980)" to="(1310,1980)"/> <wire from="(3410,1610)" to="(3630,1610)"/> <wire from="(3030,1030)" to="(3160,1030)"/> <wire from="(3130,1450)" to="(3160,1450)"/> <wire from="(1060,1630)" to="(1310,1630)"/> <wire from="(160,460)" to="(160,480)"/> <wire from="(80,1690)" to="(80,1780)"/> <wire from="(770,2380)" to="(1070,2380)"/> <wire from="(3140,1470)" to="(3160,1470)"/> <wire from="(920,1690)" to="(1030,1690)"/> <wire from="(2660,1480)" to="(2670,1480)"/> <wire from="(2660,1640)" to="(2670,1640)"/> <wire from="(2660,1800)" to="(2670,1800)"/> <wire from="(920,370)" to="(940,370)"/> <wire from="(1860,720)" to="(2060,720)"/> <wire from="(520,2530)" to="(540,2530)"/> <wire from="(520,2410)" to="(730,2410)"/> <wire from="(60,1810)" to="(150,1810)"/> <wire from="(1820,2400)" to="(1830,2400)"/> <wire from="(2840,1550)" to="(3160,1550)"/> <wire from="(680,2590)" to="(770,2590)"/> <wire from="(1830,1760)" to="(1850,1760)"/> <wire from="(1600,1420)" to="(1600,1460)"/> <wire from="(3120,2170)" to="(3120,2240)"/> <wire from="(920,1500)" to="(930,1500)"/> <wire from="(920,1820)" to="(930,1820)"/> <wire from="(920,1020)" to="(930,1020)"/> <wire from="(920,1630)" to="(1060,1630)"/> <wire from="(1410,1290)" to="(1410,1460)"/> <wire from="(1420,2010)" to="(1420,2030)"/> <wire from="(1370,2630)" to="(1670,2630)"/> <wire from="(1370,2470)" to="(1670,2470)"/> <wire from="(2260,1640)" to="(2420,1640)"/> <wire from="(1830,1230)" to="(1870,1230)"/> <wire from="(1070,2650)" to="(1370,2650)"/> <wire from="(1070,2490)" to="(1370,2490)"/> <wire from="(3130,1440)" to="(3140,1440)"/> <wire from="(1030,2670)" to="(1070,2670)"/> <wire from="(180,450)" to="(180,460)"/> <wire from="(920,620)" to="(980,620)"/> <wire from="(1270,1950)" to="(1310,1950)"/> <wire from="(3410,1580)" to="(3630,1580)"/> <wire from="(770,2510)" to="(1070,2510)"/> <wire from="(1000,1750)" to="(1000,1770)"/> <wire from="(750,2410)" to="(770,2410)"/> <wire from="(560,2540)" to="(580,2540)"/> <wire from="(1890,650)" to="(1890,900)"/> <wire from="(1060,2410)" to="(1070,2410)"/> <wire from="(920,560)" to="(1010,560)"/> <wire from="(1000,580)" to="(1000,1190)"/> <wire from="(1830,1730)" to="(1850,1730)"/> <wire from="(2320,1990)" to="(2940,1990)"/> <wire from="(890,2400)" to="(900,2400)"/> <wire from="(760,2430)" to="(770,2430)"/> <wire from="(1440,1290)" to="(1440,1460)"/> <wire from="(1150,410)" to="(1170,410)"/> <wire from="(1100,840)" to="(1120,840)"/> <wire from="(2460,1700)" to="(2500,1700)"/> <wire from="(1000,1190)" to="(1000,1750)"/> <wire from="(2420,1280)" to="(2420,1370)"/> <wire from="(3370,980)" to="(3370,1120)"/> <wire from="(1450,2010)" to="(1450,2030)"/> <wire from="(1880,450)" to="(1920,450)"/> <wire from="(920,500)" to="(1040,500)"/> <wire from="(3170,330)" to="(3180,330)"/> <wire from="(1230,2300)" to="(1530,2300)"/> <wire from="(2440,1660)" to="(2470,1660)"/> <wire from="(120,1640)" to="(120,1650)"/> <wire from="(2440,1670)" to="(2460,1670)"/> <wire from="(2150,520)" to="(2150,1010)"/> <wire from="(1270,1920)" to="(1310,1920)"/> <wire from="(1610,2010)" to="(1610,2030)"/> <wire from="(3410,1550)" to="(3630,1550)"/> <wire from="(3410,1710)" to="(3630,1710)"/> <wire from="(560,2490)" to="(600,2490)"/> <wire from="(2440,1680)" to="(2450,1680)"/> <wire from="(2150,1010)" to="(2420,1010)"/> <wire from="(920,770)" to="(960,770)"/> <wire from="(1850,970)" to="(1850,980)"/> <wire from="(3090,1240)" to="(3090,1610)"/> <wire from="(2660,1420)" to="(2670,1420)"/> <wire from="(2660,1580)" to="(2670,1580)"/> <wire from="(2660,1900)" to="(2670,1900)"/> <wire from="(2660,1740)" to="(2670,1740)"/> <wire from="(750,2380)" to="(770,2380)"/> <wire from="(1300,1500)" to="(1310,1500)"/> <wire from="(920,440)" to="(1070,440)"/> <wire from="(1020,540)" to="(1170,540)"/> <wire from="(1620,2180)" to="(1620,2240)"/> <wire from="(920,1170)" to="(1010,1170)"/> <wire from="(1130,600)" to="(1130,720)"/> <wire from="(1010,560)" to="(1010,1170)"/> <wire from="(680,2530)" to="(770,2530)"/> <wire from="(120,470)" to="(140,470)"/> <wire from="(1830,1700)" to="(1850,1700)"/> <wire from="(1100,1400)" to="(1100,1560)"/> <wire from="(1620,2240)" to="(1620,2410)"/> <wire from="(2150,1010)" to="(2150,2180)"/> <wire from="(1830,2130)" to="(1830,2300)"/> <wire from="(3120,1780)" to="(3120,2170)"/> <wire from="(1230,2300)" to="(1230,2400)"/> <wire from="(1620,2180)" to="(2150,2180)"/> <wire from="(1010,1730)" to="(1010,1770)"/> <wire from="(2460,1580)" to="(2460,1610)"/> <wire from="(920,960)" to="(930,960)"/> <wire from="(920,2400)" to="(930,2400)"/> <wire from="(3140,1460)" to="(3140,1470)"/> <wire from="(3150,510)" to="(3150,530)"/> <wire from="(1940,190)" to="(1940,420)"/> <wire from="(1470,1290)" to="(1470,1460)"/> <wire from="(2440,1650)" to="(2480,1650)"/> <wire from="(1830,480)" to="(1920,480)"/> <wire from="(1830,1210)" to="(1860,1210)"/> <wire from="(1010,1170)" to="(1010,1730)"/> <wire from="(3070,1220)" to="(3070,1650)"/> <wire from="(1060,460)" to="(1170,460)"/> <wire from="(1370,2570)" to="(1670,2570)"/> <wire from="(1480,2010)" to="(1480,2030)"/> <wire from="(1830,1170)" to="(1870,1170)"/> <wire from="(1010,1730)" to="(1310,1730)"/> <wire from="(2490,1040)" to="(2520,1040)"/> <wire from="(1070,2590)" to="(1370,2590)"/> <wire from="(920,1110)" to="(1040,1110)"/> <wire from="(3150,1400)" to="(3160,1400)"/> <wire from="(220,520)" to="(220,2770)"/> <wire from="(1270,1890)" to="(1310,1890)"/> <wire from="(1640,2010)" to="(1640,2030)"/> <wire from="(3410,1520)" to="(3630,1520)"/> <wire from="(2440,1490)" to="(2450,1490)"/> <wire from="(1460,2050)" to="(1460,2180)"/> <wire from="(2420,1370)" to="(2500,1370)"/> <wire from="(1190,2430)" to="(1250,2430)"/> <wire from="(2440,1690)" to="(2440,1740)"/> <wire from="(770,2450)" to="(1070,2450)"/> <wire from="(1830,1950)" to="(1890,1950)"/> <wire from="(770,2610)" to="(1070,2610)"/> <wire from="(1790,2430)" to="(2040,2430)"/> <wire from="(220,520)" to="(260,520)"/> <wire from="(1020,1150)" to="(1020,1710)"/> <wire from="(2440,1440)" to="(2500,1440)"/> <wire from="(1300,1790)" to="(1310,1790)"/> <wire from="(180,190)" to="(1940,190)"/> <wire from="(920,1050)" to="(1070,1050)"/> <wire from="(1160,1010)" to="(1170,1010)"/> <wire from="(2450,1460)" to="(2500,1460)"/> <wire from="(1050,1650)" to="(1310,1650)"/> <wire from="(1020,1710)" to="(1020,1770)"/> <wire from="(1020,540)" to="(1020,1150)"/> <wire from="(1830,1190)" to="(1850,1190)"/> <wire from="(1830,1670)" to="(1850,1670)"/> <wire from="(180,230)" to="(180,280)"/> <wire from="(2800,1670)" to="(3160,1670)"/> <wire from="(1830,1480)" to="(1980,1480)"/> <wire from="(120,1700)" to="(260,1700)"/> <wire from="(3300,450)" to="(3420,450)"/> <wire from="(1020,1150)" to="(1170,1150)"/> <wire from="(3140,1430)" to="(3140,1440)"/> <wire from="(1630,2670)" to="(1630,2770)"/> <wire from="(1150,350)" to="(1170,350)"/> <wire from="(1500,1290)" to="(1500,1460)"/> <wire from="(240,1320)" to="(240,2210)"/> <wire from="(1370,2380)" to="(1670,2380)"/> <wire from="(1060,1070)" to="(1170,1070)"/> <wire from="(2200,1800)" to="(2200,1960)"/> <wire from="(1080,620)" to="(1080,640)"/> <wire from="(1630,2770)" to="(2060,2770)"/> <wire from="(1130,600)" to="(1170,600)"/> <wire from="(2440,1610)" to="(2460,1610)"/> <wire from="(2200,1960)" to="(2800,1960)"/> <wire from="(1270,1860)" to="(1310,1860)"/> <wire from="(3410,1490)" to="(3630,1490)"/> <wire from="(2430,970)" to="(2440,970)"/> <wire from="(2660,1360)" to="(2670,1360)"/> <wire from="(2660,1520)" to="(2670,1520)"/> <wire from="(2660,1840)" to="(2670,1840)"/> <wire from="(2660,1680)" to="(2670,1680)"/> <wire from="(1030,1130)" to="(1030,1690)"/> <wire from="(1630,2130)" to="(1830,2130)"/> <wire from="(920,410)" to="(940,410)"/> <wire from="(920,1210)" to="(940,1210)"/> <wire from="(1020,320)" to="(1170,320)"/> <wire from="(2800,1280)" to="(3630,1280)"/> <wire from="(1030,520)" to="(1030,1130)"/> <wire from="(680,2630)" to="(770,2630)"/> <wire from="(160,450)" to="(180,450)"/> <wire from="(1830,1640)" to="(1850,1640)"/> <wire from="(1850,1180)" to="(1870,1180)"/> <wire from="(2440,1500)" to="(2440,1520)"/> <wire from="(1140,620)" to="(1170,620)"/> <wire from="(1550,2270)" to="(1550,2430)"/> <wire from="(920,1540)" to="(930,1540)"/> <wire from="(1320,2410)" to="(1340,2410)"/> <wire from="(1830,420)" to="(1920,420)"/> <wire from="(1030,1690)" to="(1030,1770)"/> <wire from="(1630,2670)" to="(1670,2670)"/> <wire from="(1370,2510)" to="(1670,2510)"/> <wire from="(1830,1110)" to="(1870,1110)"/> <wire from="(2470,1600)" to="(2500,1600)"/> <wire from="(1070,2530)" to="(1370,2530)"/> <wire from="(1070,2690)" to="(1370,2690)"/> <wire from="(2480,1620)" to="(2500,1620)"/> <wire from="(950,1850)" to="(950,2430)"/> <wire from="(1270,1830)" to="(1310,1830)"/> <wire from="(1830,1010)" to="(1940,1010)"/> <wire from="(150,1090)" to="(260,1090)"/> <wire from="(230,1130)" to="(230,2750)"/> <wire from="(3410,1460)" to="(3630,1460)"/> <wire from="(3410,1780)" to="(3630,1780)"/> <wire from="(2230,2300)" to="(3140,2300)"/> <wire from="(920,1710)" to="(1020,1710)"/> <wire from="(1830,460)" to="(1880,460)"/> <wire from="(920,840)" to="(960,840)"/> <wire from="(2970,1450)" to="(3110,1450)"/> <wire from="(770,2550)" to="(1070,2550)"/> <wire from="(3140,1160)" to="(3160,1160)"/> <wire from="(1040,1110)" to="(1040,1670)"/> <wire from="(960,660)" to="(960,770)"/> <wire from="(1490,2400)" to="(1500,2400)"/> <wire from="(2440,1540)" to="(2500,1540)"/> <wire from="(3030,840)" to="(3030,980)"/> <wire from="(1360,2430)" to="(1370,2430)"/> <wire from="(1160,950)" to="(1170,950)"/> <wire from="(1160,1270)" to="(1170,1270)"/> <wire from="(2450,1720)" to="(2500,1720)"/> <wire from="(2450,1560)" to="(2500,1560)"/> <wire from="(1660,2410)" to="(1670,2410)"/> <wire from="(1040,500)" to="(1040,1110)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(1140,740)" to="(2040,740)"/> <wire from="(2320,1400)" to="(2500,1400)"/> <wire from="(3370,1120)" to="(3470,1120)"/> <wire from="(920,1650)" to="(1050,1650)"/> <wire from="(1830,1770)" to="(1850,1770)"/> <wire from="(2470,1660)" to="(2470,1680)"/> <wire from="(1550,2270)" to="(2020,2270)"/> <wire from="(120,1670)" to="(130,1670)"/> <wire from="(120,1640)" to="(260,1640)"/> <wire from="(760,2470)" to="(770,2470)"/> <wire from="(3030,2210)" to="(3140,2210)"/> <wire from="(2460,1580)" to="(2500,1580)"/> <wire from="(1400,1290)" to="(1400,1460)"/> <wire from="(1100,1560)" to="(1310,1560)"/> <wire from="(920,930)" to="(1100,930)"/> <wire from="(1870,970)" to="(2230,970)"/> <wire from="(1070,2340)" to="(1370,2340)"/> <wire from="(3150,1630)" to="(3160,1630)"/> <wire from="(3170,370)" to="(3180,370)"/> <wire from="(1270,1960)" to="(1310,1960)"/> <wire from="(3150,490)" to="(3180,490)"/> <wire from="(710,2340)" to="(770,2340)"/> <wire from="(3410,1430)" to="(3630,1430)"/> <wire from="(3410,1750)" to="(3630,1750)"/> <wire from="(560,2530)" to="(600,2530)"/> <wire from="(120,1680)" to="(120,1700)"/> <wire from="(1830,900)" to="(1890,900)"/> <wire from="(2660,1460)" to="(2670,1460)"/> <wire from="(3300,490)" to="(3320,490)"/> <wire from="(3300,330)" to="(3320,330)"/> <wire from="(160,440)" to="(260,440)"/> <wire from="(2660,1780)" to="(2670,1780)"/> <wire from="(2660,1620)" to="(2670,1620)"/> <wire from="(1050,1090)" to="(1050,1650)"/> <wire from="(960,910)" to="(1170,910)"/> <wire from="(920,350)" to="(940,350)"/> <wire from="(1300,1540)" to="(1310,1540)"/> <wire from="(710,2380)" to="(730,2380)"/> <wire from="(1120,720)" to="(1130,720)"/> <wire from="(1870,1800)" to="(2200,1800)"/> <wire from="(1100,930)" to="(1170,930)"/> <wire from="(1830,2300)" to="(2230,2300)"/> <wire from="(680,2570)" to="(770,2570)"/> <wire from="(1520,2400)" to="(1530,2400)"/> <wire from="(1010,560)" to="(1170,560)"/> <wire from="(1830,1740)" to="(1850,1740)"/> <wire from="(1040,300)" to="(1170,300)"/> <wire from="(2440,1440)" to="(2440,1460)"/> <wire from="(1050,480)" to="(1050,1090)"/> <wire from="(1040,1670)" to="(1040,1770)"/> <wire from="(920,1000)" to="(930,1000)"/> <wire from="(1830,2300)" to="(1830,2400)"/> <wire from="(920,1480)" to="(930,1480)"/> <wire from="(920,1800)" to="(930,1800)"/> <wire from="(1890,2050)" to="(2940,2050)"/> <wire from="(2860,1730)" to="(3160,1730)"/> <wire from="(1430,1290)" to="(1430,1460)"/> <wire from="(3320,1120)" to="(3370,1120)"/> <wire from="(920,580)" to="(1000,580)"/> <wire from="(1320,2240)" to="(1620,2240)"/> <wire from="(1370,2450)" to="(1670,2450)"/> <wire from="(1440,2010)" to="(1440,2030)"/> <wire from="(1370,2610)" to="(1670,2610)"/> <wire from="(3130,930)" to="(3150,930)"/> <wire from="(1070,2470)" to="(1370,2470)"/> <wire from="(1070,2630)" to="(1370,2630)"/> <wire from="(120,280)" to="(180,280)"/> <wire from="(1660,1430)" to="(1660,1460)"/> <wire from="(3030,2170)" to="(3120,2170)"/> <wire from="(1270,1930)" to="(1310,1930)"/> <wire from="(1600,2010)" to="(1600,2030)"/> <wire from="(3410,1400)" to="(3630,1400)"/> <wire from="(3340,490)" to="(3370,490)"/> <wire from="(2540,990)" to="(2550,990)"/> <wire from="(940,680)" to="(1170,680)"/> <wire from="(2530,1020)" to="(2530,1070)"/> <wire from="(3090,1610)" to="(3160,1610)"/> <wire from="(1040,1790)" to="(1040,2180)"/> <wire from="(1050,480)" to="(1170,480)"/> <wire from="(770,2490)" to="(1070,2490)"/> <wire from="(770,2650)" to="(1070,2650)"/> <wire from="(1000,1750)" to="(1310,1750)"/> <wire from="(920,520)" to="(1030,520)"/> <wire from="(2230,780)" to="(2230,970)"/> <wire from="(1060,1070)" to="(1060,1630)"/> <wire from="(2440,1640)" to="(2500,1640)"/> <wire from="(2440,1480)" to="(2500,1480)"/> <wire from="(1040,1670)" to="(1310,1670)"/> <wire from="(2200,1480)" to="(2200,1800)"/> <wire from="(2890,1940)" to="(2940,1940)"/> <wire from="(1160,1210)" to="(1170,1210)"/> <wire from="(560,2520)" to="(580,2520)"/> <wire from="(1160,890)" to="(1170,890)"/> <wire from="(1050,1650)" to="(1050,1770)"/> <wire from="(1140,620)" to="(1140,740)"/> <wire from="(2450,1500)" to="(2500,1500)"/> <wire from="(920,1270)" to="(950,1270)"/> <wire from="(2320,1400)" to="(2320,1990)"/> <wire from="(1010,1170)" to="(1170,1170)"/> <wire from="(1830,1710)" to="(1850,1710)"/> <wire from="(250,1720)" to="(250,2670)"/> <wire from="(2470,1600)" to="(2470,1620)"/> <wire from="(1060,460)" to="(1060,1070)"/> <wire from="(2800,1710)" to="(3160,1710)"/> <wire from="(90,1100)" to="(100,1100)"/> <wire from="(920,460)" to="(1060,460)"/> <wire from="(1460,1290)" to="(1460,1460)"/> <wire from="(1150,390)" to="(1170,390)"/> <wire from="(920,1190)" to="(1000,1190)"/> <wire from="(2490,1070)" to="(2530,1070)"/> <wire from="(1470,2010)" to="(1470,2030)"/> <wire from="(520,2240)" to="(1020,2240)"/> <wire from="(1270,1900)" to="(1310,1900)"/> <wire from="(1980,1480)" to="(1980,2010)"/> <wire from="(1630,2010)" to="(1630,2030)"/> <wire from="(3340,1160)" to="(3340,1220)"/> <wire from="(3410,1370)" to="(3630,1370)"/> <wire from="(3330,930)" to="(3360,930)"/> <wire from="(2230,970)" to="(2230,2300)"/> <wire from="(920,910)" to="(960,910)"/> <wire from="(1850,950)" to="(1850,960)"/> <wire from="(2440,1540)" to="(2440,1590)"/> <wire from="(1050,1090)" to="(1170,1090)"/> <wire from="(980,620)" to="(980,770)"/> <wire from="(930,2300)" to="(1230,2300)"/> <wire from="(920,1130)" to="(1030,1130)"/> <wire from="(150,1810)" to="(150,1840)"/> <wire from="(2660,1400)" to="(2670,1400)"/> <wire from="(2890,1570)" to="(3160,1570)"/> <wire from="(2660,1720)" to="(2670,1720)"/> <wire from="(2660,1560)" to="(2670,1560)"/> <wire from="(2660,1880)" to="(2670,1880)"/> <wire from="(120,1080)" to="(150,1080)"/> <wire from="(1070,1050)" to="(1070,1610)"/> <wire from="(2420,1280)" to="(2800,1280)"/> <wire from="(920,1250)" to="(940,1250)"/> <wire from="(520,2240)" to="(520,2410)"/> <wire from="(1300,1480)" to="(1310,1480)"/> <wire from="(1040,250)" to="(1060,250)"/> <wire from="(3150,490)" to="(3150,500)"/> <wire from="(580,2510)" to="(600,2510)"/> <wire from="(1080,620)" to="(1090,620)"/> <wire from="(930,2300)" to="(930,2400)"/> <wire from="(3430,1980)" to="(3470,1980)"/> <wire from="(680,2510)" to="(770,2510)"/> <wire from="(2150,520)" to="(2970,520)"/> <wire from="(2800,1280)" to="(2800,1670)"/> <wire from="(2260,2100)" to="(2950,2100)"/> <wire from="(80,1690)" to="(100,1690)"/> <wire from="(1830,1680)" to="(1850,1680)"/> <wire from="(1070,440)" to="(1070,1050)"/> <wire from="(940,680)" to="(940,740)"/> <wire from="(120,1070)" to="(260,1070)"/> <wire from="(1890,1210)" to="(1890,1380)"/> <wire from="(920,1580)" to="(930,1580)"/> <wire from="(920,1070)" to="(1060,1070)"/> <wire from="(1490,1290)" to="(1490,1460)"/> <wire from="(2440,1630)" to="(2480,1630)"/> <wire from="(1720,1440)" to="(1940,1440)"/> <wire from="(1320,2240)" to="(1320,2410)"/> <wire from="(980,770)" to="(2020,770)"/> <wire from="(2860,1730)" to="(2860,2030)"/> <wire from="(1370,2550)" to="(1670,2550)"/> <wire from="(1070,2570)" to="(1370,2570)"/> <wire from="(3150,1380)" to="(3160,1380)"/> <wire from="(2480,1340)" to="(2500,1340)"/> <wire from="(2480,1660)" to="(2500,1660)"/> <wire from="(890,2430)" to="(950,2430)"/> <wire from="(1100,840)" to="(1100,930)"/> <wire from="(1270,1870)" to="(1310,1870)"/> <wire from="(2450,1680)" to="(2450,1720)"/> <wire from="(1660,2010)" to="(1660,2030)"/> <wire from="(3330,900)" to="(3360,900)"/> <wire from="(2440,1470)" to="(2450,1470)"/> <wire from="(1830,1520)" to="(1950,1520)"/> <wire from="(770,2590)" to="(1070,2590)"/> <wire from="(3030,1030)" to="(3030,1530)"/> <wire from="(1060,1630)" to="(1060,1770)"/> <wire from="(2150,2180)" to="(2150,2240)"/> <wire from="(960,660)" to="(1170,660)"/> <wire from="(750,2650)" to="(770,2650)"/> <wire from="(2440,1740)" to="(2500,1740)"/> <wire from="(920,740)" to="(940,740)"/> <wire from="(1300,1770)" to="(1310,1770)"/> <wire from="(1160,990)" to="(1170,990)"/> <wire from="(230,2750)" to="(1030,2750)"/> <wire from="(3420,450)" to="(3420,1240)"/> <wire from="(1660,1430)" to="(1930,1430)"/> <wire from="(920,1850)" to="(950,1850)"/> <wire from="(1830,1650)" to="(1850,1650)"/> <wire from="(1330,2670)" to="(1330,2770)"/> <wire from="(1080,640)" to="(1170,640)"/> <wire from="(1830,520)" to="(1860,520)"/> <wire from="(1890,1950)" to="(1890,2050)"/> <wire from="(1980,2010)" to="(2840,2010)"/> <wire from="(1520,1290)" to="(1520,1460)"/> <comp lib="6" loc="(1733,2730)" name="Text"> <a name="text" val="LENGTH COUNTER SQUARE 0"/> </comp> <comp lib="0" loc="(2670,1860)" name="Tunnel"> <a name="label" val="/R4019"/> </comp> <comp lib="0" loc="(2670,1420)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(2670,1920)" name="Tunnel"> <a name="label" val="/DBGRD"/> </comp> <comp lib="0" loc="(3170,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1300,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(2490,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(1640,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="6" loc="(3358,1891)" name="Text"> <a name="text" val="CLOCK 6502"/> </comp> <comp lib="0" loc="(2940,2050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY (CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1160,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(2670,1540)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(2670,1360)" name="Tunnel"> <a name="label" val="W4001"/> </comp> <comp lib="0" loc="(2670,1440)" name="Tunnel"> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(3630,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IN0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3630,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,240)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AUX_A"/> </comp> <comp lib="0" loc="(1300,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(930,1580)" name="Tunnel"> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(920,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(2420,1480)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> </comp> <comp lib="0" loc="(2670,1580)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(130,1840)" name="Pin"> <a name="output" val="true"/> <a name="width" val="15"/> <a name="tristate" val="false"/> <a name="label" val="AUX_B"/> </comp> <comp lib="0" loc="(2480,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(2550,990)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(3110,1450)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(920,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(750,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3130,520)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(760,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(3630,1780)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="8"/> <a name="label" val="DB_in"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(287,1373)" name="Text"> <a name="text" val="DMC[6:0]"/> </comp> <comp lib="0" loc="(3630,1280)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="DBG (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1460)" name="Tunnel"> <a name="label" val="W4006"/> </comp> <comp loc="(2550,1320)" name="REGISTER_SELECT"/> <comp lib="0" loc="(3630,1670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="M2 (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1780)" name="Tunnel"> <a name="label" val="/R4015"/> </comp> <comp loc="(1740,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(3430,1980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2_FromCore"/> </comp> <comp lib="0" loc="(2670,1400)" name="Tunnel"> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(100,1100)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(3360,900)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(2940,1940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/NMI(CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3630,1430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(2540,990)" name="D Flip-Flop"> <a name="trigger" val="low"/> </comp> <comp lib="0" loc="(940,1230)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(256,148)" name="Text"> <a name="text" val="2A03 APU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(1160,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(3150,1380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(750,2380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(2521,966)" name="Text"> <a name="text" val="LOCK FF"/> </comp> <comp lib="0" loc="(1160,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(2670,1380)" name="Tunnel"> <a name="label" val="W4002"/> </comp> <comp lib="0" loc="(1060,220)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(930,1560)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(760,2470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(3430,1930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1_FromCore"/> </comp> <comp lib="0" loc="(3470,1860)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI0 (CPU)"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,870)" name="DPCM_CHANNEL"/> <comp lib="0" loc="(2670,1600)" name="Tunnel"> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(2490,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(930,1480)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1040,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp loc="(3220,1000)" name="CLK_DIVIDER"/> <comp lib="0" loc="(1870,1780)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(730,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(1820,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(1340,2410)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(930,1540)" name="Tunnel"> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(920,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(1300,1580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp loc="(3240,1350)" name="IO_CONTROL"/> <comp lib="0" loc="(3630,1400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1620)" name="Tunnel"> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(930,1020)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(3320,330)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(3150,1400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(1300,1480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1040,1790)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(3360,870)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(3470,1980)" name="Tunnel"> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="0" loc="(930,1780)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(1060,250)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(1130,2730)" name="Text"> <a name="text" val="LENGTH COUNTER TRIANGLE"/> </comp> <comp lib="0" loc="(1160,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(2670,1680)" name="Tunnel"> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(710,2340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(350,870)" name="TRIANGLE_CHANNEL"/> <comp lib="0" loc="(1160,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3630,1550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="R/W (EXT)"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1440,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(930,1500)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1160,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(3360,930)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1520,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(940,1210)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(2670,1880)" name="Tunnel"> <a name="label" val="/R401A"/> </comp> <comp loc="(650,2470)" name="LENGTH_TABLE"/> <comp lib="0" loc="(100,1690)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="6" loc="(2989,2135)" name="Text"> <a name="text" val="CPU ADDRESS BUS"/> </comp> <comp lib="0" loc="(3630,1710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="label" val="AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,240)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> </comp> <comp loc="(3270,810)" name="ACLK"/> <comp lib="0" loc="(1120,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(2670,1700)" name="Tunnel"> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(2670,1900)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(2670,1520)" name="Tunnel"> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(1060,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(930,1820)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(2670,1720)" name="Tunnel"> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(930,1000)" name="Tunnel"> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(1090,620)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1940,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1220,2400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2430,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(2670,1760)" name="Tunnel"> <a name="label" val="W4017"/> </comp> <comp lib="0" loc="(3150,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1890,1210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2670,1340)" name="Tunnel"> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(3630,1490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IN1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(3250,300)" name="LFO"/> <comp lib="0" loc="(2670,1800)" name="Tunnel"> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(940,410)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(1660,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(2420,1640)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="1"/> <a name="bit7" val="2"/> <a name="bit8" val="3"/> <a name="bit9" val="4"/> <a name="bit10" val="5"/> <a name="bit11" val="6"/> <a name="bit12" val="7"/> <a name="bit13" val="8"/> <a name="bit14" val="9"/> <a name="bit15" val="10"/> </comp> <comp lib="0" loc="(710,2380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(3150,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(3630,1580)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/NMI PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2950,2100)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="CPU Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1160,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(3130,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1300,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBGRD"/> </comp> <comp lib="0" loc="(60,1800)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> </comp> <comp lib="0" loc="(1300,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(2670,1840)" name="Tunnel"> <a name="label" val="/R4018"/> </comp> <comp lib="0" loc="(930,1800)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(920,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1300,1500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2 CPU"/> </comp> <comp loc="(840,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(540,2530)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> <a name="bit6" val="3"/> <a name="bit7" val="4"/> </comp> <comp lib="0" loc="(750,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/LFO2"/> </comp> <comp lib="6" loc="(1433,2731)" name="Text"> <a name="text" val="LENGTH COUNTER SQUARE 1"/> </comp> <comp lib="0" loc="(1160,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(3140,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="0" loc="(3030,2210)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="Data to CPU"/> </comp> <comp lib="0" loc="(940,1250)" name="Tunnel"> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(3360,840)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(2670,1480)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(1460,2050)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1630,2050)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="6" loc="(3850,1719)" name="Text"> <a name="text" val="EXTERNAL ADDRESS BUS"/> </comp> <comp loc="(350,1460)" name="NOISE_CHANNEL"/> <comp lib="0" loc="(3170,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1150,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4001"/> </comp> <comp lib="0" loc="(3630,1640)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/RES PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3320,370)" name="Tunnel"> <a name="label" val="/LFO2"/> </comp> <comp loc="(1330,280)" name="SQUARE_CHANNEL_0"/> <comp loc="(1140,2320)" name="LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(1870,970)" name="Splitter"> <a name="facing" val="west"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(1360,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="6" loc="(832,2730)" name="Text"> <a name="text" val="LENGTH COUNTER NOISE"/> </comp> <comp lib="0" loc="(1150,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4002"/> </comp> <comp lib="0" loc="(3030,2170)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="Data from CPU"/> </comp> <comp lib="1" loc="(2480,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1120,840)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(140,470)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2420,1010)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(3630,1520)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3170,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(2940,1890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ(CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(3837,1773)" name="Text"> <a name="text" val="EXTERNAL DATA BUS"/> </comp> <comp lib="0" loc="(940,390)" name="Tunnel"> <a name="label" val="W4006"/> </comp> <comp lib="0" loc="(2670,1740)" name="Tunnel"> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(1300,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(2940,1990)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="R/W (CPU)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,370)" name="Tunnel"> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(2670,1560)" name="Tunnel"> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(2670,1660)" name="Tunnel"> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(2670,1820)" name="Tunnel"> <a name="label" val="/R4017"/> </comp> <comp lib="0" loc="(3170,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1150,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(1250,1990)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp loc="(1380,1460)" name="SPRITE_DMA"/> <comp lib="0" loc="(1150,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp loc="(350,280)" name="SQUARE_CHANNEL_1"/> <comp lib="0" loc="(930,980)" name="Tunnel"> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(1160,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(760,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(3150,1490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(2670,1500)" name="Tunnel"> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(3630,1610)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(930,960)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(3150,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(940,350)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(3630,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2670,1640)" name="Tunnel"> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(3340,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3170,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4017"/> </comp> <comp lib="0" loc="(3150,1510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R4017"/> </comp> </circuit> <circuit name="D-latch"> <a name="circuit" val="D-latch"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="46">DLATCH</text> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <rect fill="#46ff68" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="55,57 55,64" stroke="#000000" stroke-width="2"/> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="60,40" width="8" x="46" y="56"/> <circ-port height="8" pin="60,100" width="8" x="46" y="76"/> <circ-port height="10" pin="180,40" width="10" x="85" y="55"/> <circ-port height="10" pin="180,100" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(80,80)" to="(80,100)"/> <wire from="(80,40)" to="(80,60)"/> <wire from="(160,80)" to="(160,100)"/> <wire from="(160,40)" to="(160,60)"/> <wire from="(60,100)" to="(80,100)"/> <wire from="(60,40)" to="(80,40)"/> <wire from="(80,60)" to="(100,60)"/> <wire from="(80,80)" to="(100,80)"/> <wire from="(140,60)" to="(160,60)"/> <wire from="(140,80)" to="(160,80)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,40)" to="(180,40)"/> <comp lib="0" loc="(180,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> <comp lib="0" loc="(60,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(180,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NOT_Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(140,60)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="LFO"> <a name="circuit" val="LFO"/> <a name="clabel" val="LFO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffac51" height="430" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="146" y="84">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="145" y="124">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="153" y="203">INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="153" y="244">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="124">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="164">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="404">DMCINT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="364">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="244">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="204">W4017</text> <circ-port height="8" pin="90,1740" width="8" x="46" y="196"/> <circ-port height="8" pin="90,1860" width="8" x="46" y="276"/> <circ-port height="8" pin="90,1930" width="8" x="46" y="236"/> <circ-port height="8" pin="90,2000" width="8" x="46" y="316"/> <circ-port height="8" pin="90,2070" width="8" x="46" y="356"/> <circ-port height="8" pin="90,2100" width="8" x="46" y="396"/> <circ-port height="10" pin="1210,850" width="10" x="165" y="75"/> <circ-port height="10" pin="1210,1020" width="10" x="165" y="115"/> <circ-port height="10" pin="1140,1930" width="10" x="165" y="195"/> <circ-port height="10" pin="1140,1790" width="10" x="165" y="235"/> <circ-port height="8" pin="90,2030" width="8" x="46" y="76"/> <circ-port height="8" pin="90,110" width="8" x="46" y="156"/> <circ-port height="8" pin="90,50" width="8" x="46" y="116"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(960,880)" to="(1010,880)"/> <wire from="(960,1040)" to="(1010,1040)"/> <wire from="(150,470)" to="(150,480)"/> <wire from="(750,1140)" to="(810,1140)"/> <wire from="(740,490)" to="(800,490)"/> <wire from="(720,630)" to="(780,630)"/> <wire from="(160,480)" to="(160,500)"/> <wire from="(530,720)" to="(530,800)"/> <wire from="(530,400)" to="(530,480)"/> <wire from="(530,1040)" to="(530,1120)"/> <wire from="(530,880)" to="(530,960)"/> <wire from="(530,560)" to="(530,640)"/> <wire from="(530,1200)" to="(530,1280)"/> <wire from="(530,240)" to="(530,320)"/> <wire from="(170,490)" to="(170,520)"/> <wire from="(140,400)" to="(170,400)"/> <wire from="(780,570)" to="(800,570)"/> <wire from="(760,760)" to="(760,800)"/> <wire from="(530,960)" to="(550,960)"/> <wire from="(530,640)" to="(550,640)"/> <wire from="(530,1280)" to="(550,1280)"/> <wire from="(530,320)" to="(550,320)"/> <wire from="(530,480)" to="(550,480)"/> <wire from="(530,1120)" to="(550,1120)"/> <wire from="(530,160)" to="(550,160)"/> <wire from="(530,800)" to="(550,800)"/> <wire from="(720,1470)" to="(740,1470)"/> <wire from="(310,1860)" to="(330,1860)"/> <wire from="(770,230)" to="(800,230)"/> <wire from="(180,500)" to="(180,540)"/> <wire from="(140,1580)" to="(140,1630)"/> <wire from="(190,510)" to="(190,560)"/> <wire from="(310,1680)" to="(450,1680)"/> <wire from="(790,910)" to="(800,910)"/> <wire from="(790,110)" to="(800,110)"/> <wire from="(720,200)" to="(730,200)"/> <wire from="(770,1410)" to="(770,1460)"/> <wire from="(200,520)" to="(200,580)"/> <wire from="(760,1130)" to="(810,1130)"/> <wire from="(210,530)" to="(210,600)"/> <wire from="(720,1410)" to="(770,1410)"/> <wire from="(720,610)" to="(770,610)"/> <wire from="(750,480)" to="(800,480)"/> <wire from="(140,340)" to="(200,340)"/> <wire from="(150,440)" to="(150,450)"/> <wire from="(610,740)" to="(610,770)"/> <wire from="(610,420)" to="(610,450)"/> <wire from="(610,1060)" to="(610,1090)"/> <wire from="(610,900)" to="(610,930)"/> <wire from="(610,1220)" to="(610,1250)"/> <wire from="(610,580)" to="(610,610)"/> <wire from="(610,260)" to="(610,290)"/> <wire from="(430,1460)" to="(460,1460)"/> <wire from="(720,800)" to="(740,800)"/> <wire from="(300,220)" to="(320,220)"/> <wire from="(720,1110)" to="(750,1110)"/> <wire from="(420,660)" to="(440,660)"/> <wire from="(420,980)" to="(440,980)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,820)" to="(440,820)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,1300)" to="(440,1300)"/> <wire from="(710,1810)" to="(800,1810)"/> <wire from="(980,1050)" to="(1010,1050)"/> <wire from="(980,890)" to="(1010,890)"/> <wire from="(1500,50)" to="(1500,490)"/> <wire from="(780,1390)" to="(780,1450)"/> <wire from="(890,1880)" to="(890,2070)"/> <wire from="(1060,1930)" to="(1090,1930)"/> <wire from="(150,470)" to="(220,470)"/> <wire from="(720,1510)" to="(800,1510)"/> <wire from="(720,490)" to="(730,490)"/> <wire from="(1090,1010)" to="(1110,1010)"/> <wire from="(880,1510)" to="(960,1510)"/> <wire from="(770,740)" to="(770,790)"/> <wire from="(730,1150)" to="(730,1160)"/> <wire from="(730,190)" to="(730,200)"/> <wire from="(250,1660)" to="(250,1730)"/> <wire from="(720,740)" to="(770,740)"/> <wire from="(220,1680)" to="(270,1680)"/> <wire from="(720,1050)" to="(780,1050)"/> <wire from="(720,590)" to="(760,590)"/> <wire from="(760,470)" to="(800,470)"/> <wire from="(720,430)" to="(760,430)"/> <wire from="(770,1120)" to="(810,1120)"/> <wire from="(750,210)" to="(750,240)"/> <wire from="(160,420)" to="(160,440)"/> <wire from="(510,2050)" to="(510,2070)"/> <wire from="(740,200)" to="(740,220)"/> <wire from="(780,1790)" to="(800,1790)"/> <wire from="(760,220)" to="(760,260)"/> <wire from="(610,180)" to="(630,180)"/> <wire from="(610,340)" to="(630,340)"/> <wire from="(610,500)" to="(630,500)"/> <wire from="(610,660)" to="(630,660)"/> <wire from="(610,820)" to="(630,820)"/> <wire from="(610,980)" to="(630,980)"/> <wire from="(610,1140)" to="(630,1140)"/> <wire from="(720,120)" to="(750,120)"/> <wire from="(780,720)" to="(780,780)"/> <wire from="(730,1500)" to="(800,1500)"/> <wire from="(720,1650)" to="(790,1650)"/> <wire from="(720,370)" to="(790,370)"/> <wire from="(250,1810)" to="(330,1810)"/> <wire from="(780,240)" to="(780,300)"/> <wire from="(770,230)" to="(770,280)"/> <wire from="(630,1870)" to="(710,1870)"/> <wire from="(720,840)" to="(800,840)"/> <wire from="(370,180)" to="(440,180)"/> <wire from="(730,160)" to="(730,170)"/> <wire from="(750,1540)" to="(800,1540)"/> <wire from="(420,690)" to="(610,690)"/> <wire from="(420,370)" to="(610,370)"/> <wire from="(420,1010)" to="(610,1010)"/> <wire from="(420,530)" to="(610,530)"/> <wire from="(420,850)" to="(610,850)"/> <wire from="(420,210)" to="(610,210)"/> <wire from="(420,1170)" to="(610,1170)"/> <wire from="(790,1370)" to="(790,1440)"/> <wire from="(790,250)" to="(790,320)"/> <wire from="(90,2000)" to="(140,2000)"/> <wire from="(720,60)" to="(780,60)"/> <wire from="(750,1210)" to="(810,1210)"/> <wire from="(630,1820)" to="(630,1850)"/> <wire from="(180,500)" to="(220,500)"/> <wire from="(170,400)" to="(170,430)"/> <wire from="(140,1650)" to="(140,1680)"/> <wire from="(740,1130)" to="(740,1150)"/> <wire from="(720,570)" to="(750,570)"/> <wire from="(770,460)" to="(800,460)"/> <wire from="(780,1110)" to="(810,1110)"/> <wire from="(720,980)" to="(790,980)"/> <wire from="(730,830)" to="(800,830)"/> <wire from="(730,190)" to="(800,190)"/> <wire from="(320,190)" to="(330,190)"/> <wire from="(460,1650)" to="(460,1700)"/> <wire from="(480,740)" to="(550,740)"/> <wire from="(480,1060)" to="(550,1060)"/> <wire from="(480,580)" to="(550,580)"/> <wire from="(480,900)" to="(550,900)"/> <wire from="(480,1220)" to="(550,1220)"/> <wire from="(480,420)" to="(550,420)"/> <wire from="(480,260)" to="(550,260)"/> <wire from="(1150,850)" to="(1170,850)"/> <wire from="(230,140)" to="(230,210)"/> <wire from="(750,870)" to="(800,870)"/> <wire from="(790,700)" to="(790,770)"/> <wire from="(510,2070)" to="(890,2070)"/> <wire from="(720,1630)" to="(780,1630)"/> <wire from="(740,1490)" to="(800,1490)"/> <wire from="(740,530)" to="(800,530)"/> <wire from="(590,240)" to="(630,240)"/> <wire from="(590,400)" to="(630,400)"/> <wire from="(590,560)" to="(630,560)"/> <wire from="(590,720)" to="(630,720)"/> <wire from="(590,880)" to="(630,880)"/> <wire from="(590,1040)" to="(630,1040)"/> <wire from="(590,1200)" to="(630,1200)"/> <wire from="(750,1110)" to="(750,1140)"/> <wire from="(190,1570)" to="(360,1570)"/> <wire from="(740,140)" to="(740,160)"/> <wire from="(790,1100)" to="(810,1100)"/> <wire from="(780,1570)" to="(800,1570)"/> <wire from="(780,450)" to="(800,450)"/> <wire from="(520,1790)" to="(540,1790)"/> <wire from="(590,1220)" to="(610,1220)"/> <wire from="(590,900)" to="(610,900)"/> <wire from="(590,260)" to="(610,260)"/> <wire from="(590,580)" to="(610,580)"/> <wire from="(590,420)" to="(610,420)"/> <wire from="(590,740)" to="(610,740)"/> <wire from="(590,1060)" to="(610,1060)"/> <wire from="(720,550)" to="(740,550)"/> <wire from="(250,1840)" to="(270,1840)"/> <wire from="(180,380)" to="(180,420)"/> <wire from="(590,1940)" to="(590,2040)"/> <wire from="(780,1240)" to="(810,1240)"/> <wire from="(240,1840)" to="(250,1840)"/> <wire from="(140,1580)" to="(150,1580)"/> <wire from="(210,530)" to="(220,530)"/> <wire from="(510,1930)" to="(640,1930)"/> <wire from="(330,1810)" to="(330,1860)"/> <wire from="(1190,1020)" to="(1210,1020)"/> <wire from="(750,1480)" to="(800,1480)"/> <wire from="(720,1610)" to="(770,1610)"/> <wire from="(390,480)" to="(440,480)"/> <wire from="(390,160)" to="(440,160)"/> <wire from="(390,1120)" to="(440,1120)"/> <wire from="(390,800)" to="(440,800)"/> <wire from="(390,320)" to="(440,320)"/> <wire from="(390,960)" to="(440,960)"/> <wire from="(390,640)" to="(440,640)"/> <wire from="(390,1280)" to="(440,1280)"/> <wire from="(470,1680)" to="(520,1680)"/> <wire from="(140,2000)" to="(510,2000)"/> <wire from="(740,820)" to="(800,820)"/> <wire from="(720,960)" to="(780,960)"/> <wire from="(760,220)" to="(800,220)"/> <wire from="(750,120)" to="(750,150)"/> <wire from="(380,1380)" to="(380,1460)"/> <wire from="(500,1340)" to="(800,1340)"/> <wire from="(1620,50)" to="(1620,490)"/> <wire from="(780,900)" to="(800,900)"/> <wire from="(190,1740)" to="(220,1740)"/> <wire from="(760,1090)" to="(760,1130)"/> <wire from="(780,1750)" to="(780,1790)"/> <wire from="(520,1680)" to="(520,1790)"/> <wire from="(770,560)" to="(800,560)"/> <wire from="(140,420)" to="(160,420)"/> <wire from="(980,890)" to="(980,1050)"/> <wire from="(90,2100)" to="(1000,2100)"/> <wire from="(190,360)" to="(190,410)"/> <wire from="(960,1510)" to="(960,1700)"/> <wire from="(790,440)" to="(800,440)"/> <wire from="(1090,840)" to="(1090,1010)"/> <wire from="(720,1490)" to="(730,1490)"/> <wire from="(720,530)" to="(730,530)"/> <wire from="(740,1200)" to="(740,1210)"/> <wire from="(120,1890)" to="(120,1960)"/> <wire from="(720,940)" to="(770,940)"/> <wire from="(750,810)" to="(800,810)"/> <wire from="(140,360)" to="(190,360)"/> <wire from="(720,1850)" to="(720,1920)"/> <wire from="(460,1460)" to="(460,1610)"/> <wire from="(590,1300)" to="(630,1300)"/> <wire from="(290,1870)" to="(290,1890)"/> <wire from="(760,1220)" to="(760,1250)"/> <wire from="(720,1590)" to="(760,1590)"/> <wire from="(720,1430)" to="(760,1430)"/> <wire from="(760,1470)" to="(800,1470)"/> <wire from="(390,1040)" to="(390,1120)"/> <wire from="(390,400)" to="(390,480)"/> <wire from="(390,720)" to="(390,800)"/> <wire from="(390,880)" to="(390,960)"/> <wire from="(390,560)" to="(390,640)"/> <wire from="(390,240)" to="(390,320)"/> <wire from="(390,1200)" to="(390,1280)"/> <wire from="(320,140)" to="(320,170)"/> <wire from="(230,140)" to="(270,140)"/> <wire from="(400,1430)" to="(440,1430)"/> <wire from="(750,1210)" to="(750,1230)"/> <wire from="(760,100)" to="(760,140)"/> <wire from="(770,1230)" to="(770,1270)"/> <wire from="(720,1130)" to="(740,1130)"/> <wire from="(250,1620)" to="(270,1620)"/> <wire from="(720,1190)" to="(810,1190)"/> <wire from="(790,1250)" to="(790,1310)"/> <wire from="(720,1370)" to="(790,1370)"/> <wire from="(140,460)" to="(220,460)"/> <wire from="(610,1970)" to="(740,1970)"/> <wire from="(440,1380)" to="(440,1430)"/> <wire from="(390,1720)" to="(980,1720)"/> <wire from="(710,1810)" to="(710,1870)"/> <wire from="(790,250)" to="(800,250)"/> <wire from="(720,820)" to="(730,820)"/> <wire from="(780,1240)" to="(780,1290)"/> <wire from="(770,1070)" to="(770,1120)"/> <wire from="(200,340)" to="(200,400)"/> <wire from="(730,520)" to="(730,530)"/> <wire from="(330,1590)" to="(330,1660)"/> <wire from="(720,1070)" to="(770,1070)"/> <wire from="(510,1930)" to="(510,2000)"/> <wire from="(760,800)" to="(800,800)"/> <wire from="(720,760)" to="(760,760)"/> <wire from="(720,920)" to="(760,920)"/> <wire from="(910,1790)" to="(1140,1790)"/> <wire from="(120,1890)" to="(290,1890)"/> <wire from="(750,540)" to="(750,570)"/> <wire from="(450,270)" to="(450,350)"/> <wire from="(450,1230)" to="(450,1310)"/> <wire from="(450,1070)" to="(450,1150)"/> <wire from="(450,910)" to="(450,990)"/> <wire from="(450,750)" to="(450,830)"/> <wire from="(450,590)" to="(450,670)"/> <wire from="(450,430)" to="(450,510)"/> <wire from="(800,1260)" to="(800,1340)"/> <wire from="(740,530)" to="(740,550)"/> <wire from="(90,1740)" to="(120,1740)"/> <wire from="(760,550)" to="(760,590)"/> <wire from="(530,110)" to="(550,110)"/> <wire from="(720,140)" to="(740,140)"/> <wire from="(250,1750)" to="(270,1750)"/> <wire from="(250,1910)" to="(270,1910)"/> <wire from="(720,1570)" to="(750,1570)"/> <wire from="(720,450)" to="(750,450)"/> <wire from="(770,1460)" to="(800,1460)"/> <wire from="(250,150)" to="(270,150)"/> <wire from="(780,1050)" to="(780,1110)"/> <wire from="(780,570)" to="(780,630)"/> <wire from="(740,1200)" to="(810,1200)"/> <wire from="(720,700)" to="(790,700)"/> <wire from="(890,1800)" to="(890,1860)"/> <wire from="(420,690)" to="(420,740)"/> <wire from="(420,370)" to="(420,420)"/> <wire from="(420,1010)" to="(420,1060)"/> <wire from="(420,530)" to="(420,580)"/> <wire from="(420,850)" to="(420,900)"/> <wire from="(420,210)" to="(420,260)"/> <wire from="(420,1170)" to="(420,1220)"/> <wire from="(140,1650)" to="(150,1650)"/> <wire from="(1040,50)" to="(1040,490)"/> <wire from="(140,600)" to="(210,600)"/> <wire from="(150,450)" to="(220,450)"/> <wire from="(770,560)" to="(770,610)"/> <wire from="(770,80)" to="(770,130)"/> <wire from="(730,490)" to="(730,500)"/> <wire from="(720,80)" to="(770,80)"/> <wire from="(210,320)" to="(210,390)"/> <wire from="(790,580)" to="(790,650)"/> <wire from="(170,490)" to="(220,490)"/> <wire from="(740,1530)" to="(800,1530)"/> <wire from="(720,390)" to="(780,390)"/> <wire from="(530,640)" to="(530,720)"/> <wire from="(530,480)" to="(530,560)"/> <wire from="(530,1120)" to="(530,1200)"/> <wire from="(530,320)" to="(530,400)"/> <wire from="(530,160)" to="(530,240)"/> <wire from="(530,960)" to="(530,1040)"/> <wire from="(530,800)" to="(530,880)"/> <wire from="(450,1650)" to="(450,1680)"/> <wire from="(920,510)" to="(920,850)"/> <wire from="(780,1450)" to="(800,1450)"/> <wire from="(120,1740)" to="(150,1740)"/> <wire from="(530,560)" to="(550,560)"/> <wire from="(530,1200)" to="(550,1200)"/> <wire from="(530,400)" to="(550,400)"/> <wire from="(530,1040)" to="(550,1040)"/> <wire from="(530,240)" to="(550,240)"/> <wire from="(530,880)" to="(550,880)"/> <wire from="(530,720)" to="(550,720)"/> <wire from="(570,2040)" to="(590,2040)"/> <wire from="(720,1550)" to="(740,1550)"/> <wire from="(920,1010)" to="(1010,1010)"/> <wire from="(920,850)" to="(1010,850)"/> <wire from="(720,900)" to="(750,900)"/> <wire from="(770,790)" to="(800,790)"/> <wire from="(1000,1940)" to="(1000,2100)"/> <wire from="(720,1310)" to="(790,1310)"/> <wire from="(730,520)" to="(800,520)"/> <wire from="(140,1680)" to="(220,1680)"/> <wire from="(1110,1930)" to="(1140,1930)"/> <wire from="(610,1750)" to="(740,1750)"/> <wire from="(780,60)" to="(780,120)"/> <wire from="(140,1750)" to="(140,2000)"/> <wire from="(720,180)" to="(800,180)"/> <wire from="(1150,1020)" to="(1170,1020)"/> <wire from="(890,1180)" to="(940,1180)"/> <wire from="(160,440)" to="(220,440)"/> <wire from="(140,580)" to="(200,580)"/> <wire from="(790,1030)" to="(790,1100)"/> <wire from="(360,1430)" to="(360,1570)"/> <wire from="(740,860)" to="(800,860)"/> <wire from="(290,1940)" to="(290,1960)"/> <wire from="(770,1230)" to="(810,1230)"/> <wire from="(610,820)" to="(610,850)"/> <wire from="(610,980)" to="(610,1010)"/> <wire from="(610,500)" to="(610,530)"/> <wire from="(610,340)" to="(610,370)"/> <wire from="(610,180)" to="(610,210)"/> <wire from="(610,660)" to="(610,690)"/> <wire from="(610,1140)" to="(610,1170)"/> <wire from="(230,210)" to="(270,210)"/> <wire from="(310,1730)" to="(350,1730)"/> <wire from="(90,2070)" to="(510,2070)"/> <wire from="(720,1920)" to="(1020,1920)"/> <wire from="(740,470)" to="(740,490)"/> <wire from="(780,780)" to="(800,780)"/> <wire from="(690,1810)" to="(710,1810)"/> <wire from="(720,880)" to="(740,880)"/> <wire from="(300,460)" to="(320,460)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(420,260)" to="(440,260)"/> <wire from="(420,900)" to="(440,900)"/> <wire from="(420,1060)" to="(440,1060)"/> <wire from="(420,740)" to="(440,740)"/> <wire from="(420,420)" to="(440,420)"/> <wire from="(420,1220)" to="(440,1220)"/> <wire from="(330,1810)" to="(540,1810)"/> <wire from="(1620,490)" to="(2080,490)"/> <wire from="(770,1560)" to="(800,1560)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(200,520)" to="(220,520)"/> <wire from="(720,320)" to="(790,320)"/> <wire from="(730,170)" to="(800,170)"/> <wire from="(320,170)" to="(330,170)"/> <wire from="(140,1750)" to="(150,1750)"/> <wire from="(940,1020)" to="(1010,1020)"/> <wire from="(330,1660)" to="(330,1710)"/> <wire from="(790,1440)" to="(800,1440)"/> <wire from="(320,270)" to="(320,460)"/> <wire from="(720,1530)" to="(730,1530)"/> <wire from="(750,210)" to="(800,210)"/> <wire from="(1070,860)" to="(1110,860)"/> <wire from="(140,560)" to="(190,560)"/> <wire from="(170,430)" to="(220,430)"/> <wire from="(790,40)" to="(790,110)"/> <wire from="(720,1290)" to="(780,1290)"/> <wire from="(500,1340)" to="(500,1750)"/> <wire from="(760,550)" to="(800,550)"/> <wire from="(120,1960)" to="(290,1960)"/> <wire from="(750,450)" to="(750,480)"/> <wire from="(880,510)" to="(920,510)"/> <wire from="(360,1430)" to="(400,1430)"/> <wire from="(1090,790)" to="(1090,840)"/> <wire from="(90,50)" to="(120,50)"/> <wire from="(380,1460)" to="(410,1460)"/> <wire from="(610,260)" to="(630,260)"/> <wire from="(610,420)" to="(630,420)"/> <wire from="(610,580)" to="(630,580)"/> <wire from="(610,740)" to="(630,740)"/> <wire from="(610,900)" to="(630,900)"/> <wire from="(610,1060)" to="(630,1060)"/> <wire from="(610,1220)" to="(630,1220)"/> <wire from="(170,270)" to="(320,270)"/> <wire from="(250,1660)" to="(270,1660)"/> <wire from="(340,1430)" to="(360,1430)"/> <wire from="(770,890)" to="(800,890)"/> <wire from="(940,1020)" to="(940,1180)"/> <wire from="(960,880)" to="(960,1040)"/> <wire from="(880,840)" to="(1010,840)"/> <wire from="(400,1380)" to="(400,1430)"/> <wire from="(140,440)" to="(150,440)"/> <wire from="(940,830)" to="(1010,830)"/> <wire from="(220,1680)" to="(220,1740)"/> <wire from="(800,1260)" to="(810,1260)"/> <wire from="(790,770)" to="(800,770)"/> <wire from="(720,860)" to="(730,860)"/> <wire from="(730,1520)" to="(730,1530)"/> <wire from="(420,770)" to="(610,770)"/> <wire from="(420,450)" to="(610,450)"/> <wire from="(420,1090)" to="(610,1090)"/> <wire from="(420,930)" to="(610,930)"/> <wire from="(420,610)" to="(610,610)"/> <wire from="(420,290)" to="(610,290)"/> <wire from="(720,1270)" to="(770,1270)"/> <wire from="(420,1250)" to="(610,1250)"/> <wire from="(590,1940)" to="(640,1940)"/> <wire from="(740,160)" to="(800,160)"/> <wire from="(720,300)" to="(780,300)"/> <wire from="(750,1540)" to="(750,1570)"/> <wire from="(140,380)" to="(180,380)"/> <wire from="(180,420)" to="(220,420)"/> <wire from="(140,540)" to="(180,540)"/> <wire from="(740,1530)" to="(740,1550)"/> <wire from="(760,430)" to="(760,470)"/> <wire from="(760,1550)" to="(760,1590)"/> <wire from="(1040,490)" to="(1500,490)"/> <wire from="(510,2050)" to="(530,2050)"/> <wire from="(700,1920)" to="(720,1920)"/> <wire from="(780,240)" to="(800,240)"/> <wire from="(720,1450)" to="(750,1450)"/> <wire from="(330,1710)" to="(350,1710)"/> <wire from="(780,1570)" to="(780,1630)"/> <wire from="(140,320)" to="(210,320)"/> <wire from="(790,580)" to="(800,580)"/> <wire from="(480,820)" to="(550,820)"/> <wire from="(480,1140)" to="(550,1140)"/> <wire from="(480,500)" to="(550,500)"/> <wire from="(480,340)" to="(550,340)"/> <wire from="(480,180)" to="(550,180)"/> <wire from="(480,660)" to="(550,660)"/> <wire from="(480,980)" to="(550,980)"/> <wire from="(720,1150)" to="(730,1150)"/> <wire from="(480,1300)" to="(550,1300)"/> <wire from="(770,1560)" to="(770,1610)"/> <wire from="(210,1640)" to="(210,1700)"/> <wire from="(730,1490)" to="(730,1500)"/> <wire from="(730,850)" to="(730,860)"/> <wire from="(250,1840)" to="(250,1910)"/> <wire from="(720,280)" to="(770,280)"/> <wire from="(750,150)" to="(800,150)"/> <wire from="(310,1750)" to="(500,1750)"/> <wire from="(790,1580)" to="(790,1650)"/> <wire from="(90,1860)" to="(270,1860)"/> <wire from="(720,1390)" to="(780,1390)"/> <wire from="(740,1750)" to="(740,1970)"/> <wire from="(590,160)" to="(630,160)"/> <wire from="(590,320)" to="(630,320)"/> <wire from="(590,480)" to="(630,480)"/> <wire from="(590,640)" to="(630,640)"/> <wire from="(590,800)" to="(630,800)"/> <wire from="(590,960)" to="(630,960)"/> <wire from="(590,1120)" to="(630,1120)"/> <wire from="(590,1280)" to="(630,1280)"/> <wire from="(720,1090)" to="(760,1090)"/> <wire from="(720,1250)" to="(760,1250)"/> <wire from="(630,1870)" to="(630,1900)"/> <wire from="(120,1740)" to="(120,1890)"/> <wire from="(750,870)" to="(750,900)"/> <wire from="(140,1700)" to="(140,1730)"/> <wire from="(170,130)" to="(270,130)"/> <wire from="(740,860)" to="(740,880)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(190,410)" to="(220,410)"/> <wire from="(760,880)" to="(760,920)"/> <wire from="(590,340)" to="(610,340)"/> <wire from="(590,980)" to="(610,980)"/> <wire from="(590,660)" to="(610,660)"/> <wire from="(590,1140)" to="(610,1140)"/> <wire from="(590,180)" to="(610,180)"/> <wire from="(590,820)" to="(610,820)"/> <wire from="(590,500)" to="(610,500)"/> <wire from="(630,1820)" to="(650,1820)"/> <wire from="(720,470)" to="(740,470)"/> <wire from="(720,780)" to="(750,780)"/> <wire from="(310,1660)" to="(330,1660)"/> <wire from="(720,1170)" to="(810,1170)"/> <wire from="(780,900)" to="(780,960)"/> <wire from="(730,1520)" to="(800,1520)"/> <wire from="(720,1030)" to="(790,1030)"/> <wire from="(770,410)" to="(770,460)"/> <wire from="(720,160)" to="(730,160)"/> <wire from="(1090,840)" to="(1110,840)"/> <wire from="(770,890)" to="(770,940)"/> <wire from="(730,820)" to="(730,830)"/> <wire from="(720,410)" to="(770,410)"/> <wire from="(160,480)" to="(220,480)"/> <wire from="(390,1200)" to="(440,1200)"/> <wire from="(390,240)" to="(440,240)"/> <wire from="(390,560)" to="(440,560)"/> <wire from="(390,880)" to="(440,880)"/> <wire from="(390,400)" to="(440,400)"/> <wire from="(390,1040)" to="(440,1040)"/> <wire from="(390,720)" to="(440,720)"/> <wire from="(790,910)" to="(790,980)"/> <wire from="(720,720)" to="(780,720)"/> <wire from="(980,1050)" to="(980,1720)"/> <wire from="(720,100)" to="(760,100)"/> <wire from="(760,140)" to="(800,140)"/> <wire from="(720,260)" to="(760,260)"/> <wire from="(610,1750)" to="(610,1970)"/> <wire from="(460,1380)" to="(460,1460)"/> <wire from="(210,230)" to="(250,230)"/> <wire from="(740,1470)" to="(740,1490)"/> <wire from="(250,1730)" to="(270,1730)"/> <wire from="(720,1230)" to="(750,1230)"/> <wire from="(250,1620)" to="(250,1660)"/> <wire from="(630,1850)" to="(720,1850)"/> <wire from="(1620,50)" to="(2080,50)"/> <wire from="(140,500)" to="(160,500)"/> <wire from="(200,400)" to="(220,400)"/> <wire from="(200,1840)" to="(220,1840)"/> <wire from="(720,40)" to="(790,40)"/> <wire from="(730,850)" to="(800,850)"/> <wire from="(140,1630)" to="(150,1630)"/> <wire from="(780,390)" to="(780,450)"/> <wire from="(140,1700)" to="(210,1700)"/> <wire from="(570,1800)" to="(650,1800)"/> <wire from="(390,1280)" to="(390,1340)"/> <wire from="(730,1160)" to="(810,1160)"/> <wire from="(720,510)" to="(800,510)"/> <wire from="(1070,790)" to="(1090,790)"/> <wire from="(760,1220)" to="(810,1220)"/> <wire from="(460,1700)" to="(960,1700)"/> <wire from="(940,180)" to="(940,830)"/> <wire from="(170,130)" to="(170,270)"/> <wire from="(750,1450)" to="(750,1480)"/> <wire from="(760,1550)" to="(800,1550)"/> <wire from="(390,160)" to="(390,240)"/> <wire from="(840,1790)" to="(880,1790)"/> <wire from="(390,1120)" to="(390,1200)"/> <wire from="(390,480)" to="(390,560)"/> <wire from="(390,800)" to="(390,880)"/> <wire from="(390,960)" to="(390,1040)"/> <wire from="(390,320)" to="(390,400)"/> <wire from="(390,640)" to="(390,720)"/> <wire from="(450,1310)" to="(450,1340)"/> <wire from="(470,1650)" to="(470,1680)"/> <wire from="(740,800)" to="(740,820)"/> <wire from="(780,1750)" to="(800,1750)"/> <wire from="(190,510)" to="(220,510)"/> <wire from="(720,1210)" to="(740,1210)"/> <wire from="(720,240)" to="(750,240)"/> <wire from="(770,130)" to="(800,130)"/> <wire from="(190,1640)" to="(210,1640)"/> <wire from="(740,1150)" to="(810,1150)"/> <wire from="(720,650)" to="(790,650)"/> <wire from="(730,500)" to="(800,500)"/> <wire from="(140,480)" to="(150,480)"/> <wire from="(940,870)" to="(1010,870)"/> <wire from="(210,390)" to="(220,390)"/> <wire from="(250,1750)" to="(250,1810)"/> <wire from="(530,110)" to="(530,160)"/> <wire from="(750,540)" to="(800,540)"/> <wire from="(1070,1030)" to="(1110,1030)"/> <wire from="(90,110)" to="(530,110)"/> <wire from="(880,180)" to="(940,180)"/> <wire from="(90,2030)" to="(530,2030)"/> <wire from="(790,370)" to="(790,440)"/> <wire from="(90,1930)" to="(270,1930)"/> <wire from="(740,200)" to="(800,200)"/> <wire from="(250,150)" to="(250,230)"/> <wire from="(760,880)" to="(800,880)"/> <wire from="(520,1680)" to="(940,1680)"/> <wire from="(750,780)" to="(750,810)"/> <wire from="(450,350)" to="(450,430)"/> <wire from="(450,190)" to="(450,270)"/> <wire from="(450,1150)" to="(450,1230)"/> <wire from="(450,990)" to="(450,1070)"/> <wire from="(450,830)" to="(450,910)"/> <wire from="(450,670)" to="(450,750)"/> <wire from="(450,510)" to="(450,590)"/> <wire from="(940,870)" to="(940,1020)"/> <wire from="(960,1040)" to="(960,1510)"/> <wire from="(320,190)" to="(320,220)"/> <wire from="(790,1250)" to="(810,1250)"/> <wire from="(760,1430)" to="(760,1470)"/> <wire from="(2080,50)" to="(2080,490)"/> <wire from="(780,120)" to="(800,120)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(920,850)" to="(920,1010)"/> <wire from="(250,230)" to="(270,230)"/> <wire from="(310,140)" to="(320,140)"/> <wire from="(310,1910)" to="(640,1910)"/> <wire from="(420,770)" to="(420,820)"/> <wire from="(420,450)" to="(420,500)"/> <wire from="(420,1090)" to="(420,1140)"/> <wire from="(420,1250)" to="(420,1300)"/> <wire from="(420,290)" to="(420,340)"/> <wire from="(420,930)" to="(420,980)"/> <wire from="(420,610)" to="(420,660)"/> <wire from="(140,1730)" to="(150,1730)"/> <wire from="(190,1590)" to="(330,1590)"/> <wire from="(790,1580)" to="(800,1580)"/> <wire from="(940,1180)" to="(940,1680)"/> <wire from="(1040,50)" to="(1500,50)"/> <wire from="(630,1900)" to="(640,1900)"/> <wire from="(1000,1940)" to="(1020,1940)"/> <wire from="(1190,850)" to="(1210,850)"/> <comp lib="1" loc="(240,1840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1940,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="1" loc="(390,1340)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1700,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1440,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="6" loc="(136,1390)" name="Text"> <a name="text" val="Nor3=11184 X3"/> </comp> <comp lib="0" loc="(1860,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="4" loc="(590,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(603,1036)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="0" loc="(720,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1200,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="4" loc="(480,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,480)" name="Tunnel"> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(340,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(720,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(720,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(630,340)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="6" loc="(605,1275)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="0" loc="(1120,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1860,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="6" loc="(605,635)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(720,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="4" loc="(480,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(606,556)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(460,1610)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1440,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1940,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,1390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(674,1780)" name="Text"> <a name="text" val="INT FLAG"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(1440,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="1" loc="(700,1920)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(720,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(421,1805)" name="Text"> <a name="text" val="4 OR 5 STEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(590,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1854,95)" name="Text"> <a name="text" val="PAL NOR CONFIGURATION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(720,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1940,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(291,601)" name="Text"> <a name="text" val="NOR 5 NTSC = NOR5 PAL"/> </comp> <comp lib="0" loc="(1440,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1440,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="1" loc="(190,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(480,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1280,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1360,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="6" loc="(128,1632)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="0" loc="(140,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1780,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(720,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(90,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4017"/> </comp> <comp lib="1" loc="(890,1860)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(630,160)" name="Tunnel"> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1940,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(1700,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(720,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(140,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="4" loc="(590,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(421,1714)" name="Text"> <a name="text" val="Z2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1360,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="6" loc="(168,1673)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="6" loc="(602,1115)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="0" loc="(630,560)" name="Tunnel"> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(720,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1440,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="0" loc="(2020,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="4" loc="(590,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1190,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1120,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="6" loc="(289,1774)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="0" loc="(140,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(140,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(720,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(720,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1200,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(720,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="6" loc="(603,956)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(390,1720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(880,180)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor0"/> </comp> <comp lib="6" loc="(290,1826)" name="Text"> <a name="text" val="MODE FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(630,960)" name="Tunnel"> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(1360,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1280,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(720,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(2020,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="0" loc="(2020,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="4" loc="(590,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="4" loc="(590,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="6" loc="(1264,91)" name="Text"> <a name="text" val="NTSC NOR CONFIGURATION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(720,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(753,1797)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(2020,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(630,820)" name="Tunnel"> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1200,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(1110,1930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1210,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/LFO1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1860,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1780,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(1780,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="1" loc="(1150,1020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(480,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(1360,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1360,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(720,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="1" loc="(880,510)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor1"/> </comp> <comp lib="0" loc="(630,180)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1280,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(1860,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="4" loc="(590,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,800)" name="Tunnel"> <a name="label" val="/8"/> </comp> <comp lib="6" loc="(170,1718)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="0" loc="(1700,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="1" loc="(1060,1930)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1340)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1200,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1860,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(630,1040)" name="Tunnel"> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1360,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="4" loc="(480,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1940,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1940,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(720,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="4" loc="(310,1840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1070,1030)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="4" loc="(590,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(210,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="6" loc="(604,316)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(720,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(140,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(136,1405)" name="Text"> <a name="text" val="Nor2=14914 X4"/> </comp> <comp lib="0" loc="(720,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(720,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(720,1410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="4" loc="(590,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="6" loc="(604,874)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(290,1705)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="6" loc="(661,1864)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="6" loc="(126,1729)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(310,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(720,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="6" loc="(662,1884)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="4" loc="(590,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(480,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(605,796)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="0" loc="(2020,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(1700,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(370,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1360,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(720,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1280,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(720,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1700,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1280,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1780,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(1200,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1200,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="1" loc="(410,1460)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(605,475)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(597,1792)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="0" loc="(720,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1120,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1700,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="4" loc="(480,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1120,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1120,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/5"/> </comp> <comp lib="6" loc="(1925,451)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(2020,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(630,400)" name="Tunnel"> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(2020,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="6" loc="(1846,451)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(90,1930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(720,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(754,1910)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(720,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(720,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1120,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(630,900)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="6" loc="(419,1905)" name="Text"> <a name="text" val="IRQ DISABLE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(604,233)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(305,1788)" name="Text"> <a name="text" val="MD_Latch"/> </comp> <comp lib="6" loc="(1685,451)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(1360,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1700,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1120,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="1" loc="(880,840)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor2"/> </comp> <comp lib="4" loc="(590,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,1060)" name="Tunnel"> <a name="label" val="11"/> </comp> <comp lib="0" loc="(720,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="4" loc="(480,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1070,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(880,1510)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor4"/> </comp> <comp lib="4" loc="(310,1910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,240)" name="Tunnel"> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(630,1140)" name="Tunnel"> <a name="label" val="12"/> </comp> <comp lib="0" loc="(200,1840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1780,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(2020,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1200,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(720,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1780,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1360,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(191,1762)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(630,1200)" name="Tunnel"> <a name="label" val="/13"/> </comp> <comp lib="1" loc="(570,1800)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(210,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1780,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1700,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1280,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1440,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1200,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(2020,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(720,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="6" loc="(173,1435)" name="Text"> <a name="text" val="Nor0=16384 CARRY COUNT"/> </comp> <comp lib="0" loc="(1440,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(1200,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(720,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(1700,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1940,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(720,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1120,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(117,1693)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="0" loc="(720,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(604,153)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="6" loc="(132,1360)" name="Text"> <a name="text" val="Nor5=3728 X1"/> </comp> <comp lib="0" loc="(630,420)" name="Tunnel"> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1280,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(90,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(720,1590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1860,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(2020,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(720,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(90,2100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMCINT"/> </comp> <comp lib="0" loc="(1780,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(90,2070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(720,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="1" loc="(890,1180)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="16"/> <a name="label" val="Nor3"/> </comp> <comp lib="0" loc="(720,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(630,1220)" name="Tunnel"> <a name="label" val="13"/> </comp> <comp lib="4" loc="(480,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(1120,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(190,1740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(1560,525)" name="Text"> <a name="text" val="NOR 5 NTSC = NOR5 PAL"/> </comp> <comp lib="0" loc="(1210,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/LFO2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1440,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(173,1559)" name="Text"> <a name="text" val="NOR6"/> </comp> <comp lib="6" loc="(292,1976)" name="Text"> <a name="text" val="RESET INT FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,1610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="6" loc="(1764,450)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(720,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1280,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(140,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1440,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(720,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="4" loc="(480,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,260)" name="Tunnel"> <a name="label" val="1"/> </comp> <comp lib="0" loc="(1940,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1280,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(661,1841)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="0" loc="(1860,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(2020,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1360,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1200,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1940,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(1140,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="INT"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(480,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(590,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1940,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(603,395)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="4" loc="(480,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1780,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(630,580)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="0" loc="(270,1620)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(1070,860)" name="NOR Gate"> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(720,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="6" loc="(1105,450)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(1360,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="4" loc="(480,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2020,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/2"/> </comp> <comp lib="6" loc="(170,1695)" name="Text"> <a name="text" val="CLEAR LFO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1700,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="0" loc="(630,320)" name="Tunnel"> <a name="label" val="/2"/> </comp> <comp lib="0" loc="(1700,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(630,1300)" name="Tunnel"> <a name="label" val="14"/> </comp> <comp lib="1" loc="(300,460)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="Nor5"/> </comp> <comp lib="0" loc="(1200,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(630,740)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="0" loc="(630,1120)" name="Tunnel"> <a name="label" val="/12"/> </comp> <comp lib="0" loc="(720,1510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(1780,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1120,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(2020,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(1940,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/11"/> </comp> <comp lib="0" loc="(1200,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1440,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/8"/> </comp> <comp lib="6" loc="(1345,450)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(1360,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="1" loc="(690,1810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(1200,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="4" loc="(590,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(605,716)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(1860,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1120,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(140,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(120,50)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1120,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="1" loc="(300,220)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1360,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(140,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1120,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(1190,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/14"/> </comp> <comp lib="0" loc="(720,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(630,1280)" name="Tunnel"> <a name="label" val="/14"/> </comp> <comp lib="0" loc="(1860,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(1440,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1200,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/10"/> </comp> <comp lib="0" loc="(720,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(720,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(720,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(630,980)" name="Tunnel"> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1120,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(2005,450)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(720,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1940,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1860,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="6" loc="(421,1675)" name="Text"> <a name="text" val="Z1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(191,1631)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(1440,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(630,640)" name="Tunnel"> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(1780,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(140,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(595,1901)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="4" loc="(480,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1780,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(140,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(550,110)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1360,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(1940,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="4" loc="(590,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1700,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="6" loc="(136,1421)" name="Text"> <a name="text" val="Nor1=18640 X5"/> </comp> <comp lib="0" loc="(140,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="0" loc="(1780,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(570,2040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(480,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1120,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(720,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1140,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6 State"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1940,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(630,880)" name="Tunnel"> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(720,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/12"/> </comp> <comp lib="1" loc="(150,1580)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1700,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/6"/> </comp> <comp lib="0" loc="(720,40)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/0"/> </comp> <comp lib="0" loc="(140,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(2020,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1440,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(1184,449)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(1280,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(90,2030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(800,1750)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1200,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(720,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(630,500)" name="Tunnel"> <a name="label" val="4"/> </comp> <comp lib="0" loc="(630,660)" name="Tunnel"> <a name="label" val="6"/> </comp> <comp loc="(310,1740)" name="D-latch"/> <comp lib="0" loc="(720,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(720,1490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1860,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/3"/> </comp> <comp lib="0" loc="(1780,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/9"/> </comp> <comp lib="0" loc="(1280,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/1"/> </comp> <comp lib="0" loc="(1280,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(1860,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1440,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/13"/> </comp> <comp lib="0" loc="(720,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(132,1375)" name="Text"> <a name="text" val="Nor4=7456 X2"/> </comp> <comp loc="(840,1800)" name="D-latch"/> <comp lib="1" loc="(910,1790)" name="Controlled Inverter"/> <comp lib="0" loc="(1860,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(1700,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/7"/> </comp> <comp lib="6" loc="(603,1195)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(720,1470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="1" loc="(1150,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1360,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/4"/> </comp> <comp lib="0" loc="(140,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1860,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(1425,449)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(630,720)" name="Tunnel"> <a name="label" val="/7"/> </comp> <comp lib="0" loc="(1940,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp loc="(310,1670)" name="D-latch"/> <comp lib="0" loc="(2020,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="13"/> </comp> <comp lib="4" loc="(590,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(820,1834)" name="Text"> <a name="text" val="INT STATUS"/> </comp> <comp lib="0" loc="(1780,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(1266,450)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(720,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(1700,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1860,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1280,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> </circuit> <circuit name="ACLK"> <a name="circuit" val="ACLK"/> <a name="clabel" val="ACLK"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M111,61 Q115,71 119,61" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#3ae9ff" height="150" stroke="#000000" stroke-width="2" width="180" x="50" y="60"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">PHI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="184">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="94">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="125">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="199" y="153">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="201" y="185">ACLK1</text> <circ-port height="8" pin="80,40" width="8" x="46" y="86"/> <circ-port height="8" pin="80,120" width="8" x="46" y="176"/> <circ-port height="10" pin="580,40" width="10" x="225" y="85"/> <circ-port height="10" pin="580,90" width="10" x="225" y="115"/> <circ-port height="10" pin="580,260" width="10" x="225" y="145"/> <circ-port height="10" pin="580,340" width="10" x="225" y="175"/> <circ-anchor facing="east" height="6" width="6" x="167" y="57"/> </appear> <wire from="(320,670)" to="(380,670)"/> <wire from="(400,670)" to="(460,670)"/> <wire from="(240,670)" to="(300,670)"/> <wire from="(260,270)" to="(440,270)"/> <wire from="(190,270)" to="(240,270)"/> <wire from="(290,90)" to="(580,90)"/> <wire from="(80,120)" to="(370,120)"/> <wire from="(370,190)" to="(370,350)"/> <wire from="(280,590)" to="(300,590)"/> <wire from="(320,590)" to="(340,590)"/> <wire from="(360,590)" to="(380,590)"/> <wire from="(400,590)" to="(420,590)"/> <wire from="(440,590)" to="(460,590)"/> <wire from="(510,260)" to="(530,260)"/> <wire from="(480,590)" to="(500,590)"/> <wire from="(220,500)" to="(220,540)"/> <wire from="(300,500)" to="(300,540)"/> <wire from="(240,840)" to="(240,880)"/> <wire from="(280,760)" to="(280,800)"/> <wire from="(260,500)" to="(260,540)"/> <wire from="(320,840)" to="(320,880)"/> <wire from="(360,760)" to="(360,800)"/> <wire from="(340,500)" to="(340,540)"/> <wire from="(380,500)" to="(380,540)"/> <wire from="(420,500)" to="(420,540)"/> <wire from="(400,840)" to="(400,880)"/> <wire from="(440,760)" to="(440,800)"/> <wire from="(240,590)" to="(260,590)"/> <wire from="(460,500)" to="(460,540)"/> <wire from="(500,500)" to="(500,540)"/> <wire from="(480,840)" to="(480,880)"/> <wire from="(200,590)" to="(220,590)"/> <wire from="(200,670)" to="(220,670)"/> <wire from="(510,340)" to="(580,340)"/> <wire from="(110,440)" to="(110,950)"/> <wire from="(280,800)" to="(340,800)"/> <wire from="(240,880)" to="(300,880)"/> <wire from="(320,880)" to="(380,880)"/> <wire from="(360,800)" to="(420,800)"/> <wire from="(400,880)" to="(460,880)"/> <wire from="(440,800)" to="(500,800)"/> <wire from="(200,800)" to="(260,800)"/> <wire from="(110,90)" to="(290,90)"/> <wire from="(290,90)" to="(290,170)"/> <wire from="(190,170)" to="(230,170)"/> <wire from="(440,270)" to="(470,270)"/> <wire from="(290,170)" to="(310,170)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(300,500)" to="(320,500)"/> <wire from="(370,170)" to="(390,170)"/> <wire from="(340,500)" to="(360,500)"/> <wire from="(350,190)" to="(370,190)"/> <wire from="(380,500)" to="(400,500)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(550,260)" to="(580,260)"/> <wire from="(220,670)" to="(220,710)"/> <wire from="(500,500)" to="(520,500)"/> <wire from="(220,590)" to="(220,630)"/> <wire from="(460,500)" to="(480,500)"/> <wire from="(260,590)" to="(260,630)"/> <wire from="(300,590)" to="(300,630)"/> <wire from="(300,670)" to="(300,710)"/> <wire from="(340,590)" to="(340,630)"/> <wire from="(380,590)" to="(380,630)"/> <wire from="(380,670)" to="(380,710)"/> <wire from="(420,590)" to="(420,630)"/> <wire from="(460,590)" to="(460,630)"/> <wire from="(460,670)" to="(460,710)"/> <wire from="(500,590)" to="(500,630)"/> <wire from="(220,500)" to="(240,500)"/> <wire from="(200,880)" to="(220,880)"/> <wire from="(110,40)" to="(110,90)"/> <wire from="(190,40)" to="(580,40)"/> <wire from="(370,350)" to="(470,350)"/> <wire from="(480,670)" to="(520,670)"/> <wire from="(160,40)" to="(190,40)"/> <wire from="(80,40)" to="(110,40)"/> <wire from="(300,710)" to="(320,710)"/> <wire from="(260,630)" to="(280,630)"/> <wire from="(300,630)" to="(320,630)"/> <wire from="(340,630)" to="(360,630)"/> <wire from="(380,630)" to="(400,630)"/> <wire from="(380,710)" to="(400,710)"/> <wire from="(420,630)" to="(440,630)"/> <wire from="(460,630)" to="(480,630)"/> <wire from="(460,710)" to="(480,710)"/> <wire from="(220,840)" to="(220,880)"/> <wire from="(240,500)" to="(240,540)"/> <wire from="(500,630)" to="(520,630)"/> <wire from="(280,500)" to="(280,540)"/> <wire from="(260,760)" to="(260,800)"/> <wire from="(300,840)" to="(300,880)"/> <wire from="(360,500)" to="(360,540)"/> <wire from="(340,760)" to="(340,800)"/> <wire from="(320,500)" to="(320,540)"/> <wire from="(380,840)" to="(380,880)"/> <wire from="(420,760)" to="(420,800)"/> <wire from="(400,500)" to="(400,540)"/> <wire from="(440,500)" to="(440,540)"/> <wire from="(480,500)" to="(480,540)"/> <wire from="(220,710)" to="(240,710)"/> <wire from="(220,630)" to="(240,630)"/> <wire from="(460,840)" to="(460,880)"/> <wire from="(500,760)" to="(500,800)"/> <wire from="(110,950)" to="(570,950)"/> <wire from="(570,440)" to="(570,950)"/> <wire from="(210,190)" to="(210,250)"/> <wire from="(440,180)" to="(440,250)"/> <wire from="(190,40)" to="(190,170)"/> <wire from="(210,250)" to="(440,250)"/> <wire from="(270,190)" to="(310,190)"/> <wire from="(480,880)" to="(520,880)"/> <wire from="(110,40)" to="(140,40)"/> <wire from="(440,250)" to="(470,250)"/> <wire from="(440,330)" to="(470,330)"/> <wire from="(190,170)" to="(190,270)"/> <wire from="(300,840)" to="(320,840)"/> <wire from="(260,760)" to="(280,760)"/> <wire from="(280,540)" to="(300,540)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(320,540)" to="(340,540)"/> <wire from="(340,760)" to="(360,760)"/> <wire from="(370,190)" to="(390,190)"/> <wire from="(400,540)" to="(420,540)"/> <wire from="(380,840)" to="(400,840)"/> <wire from="(420,760)" to="(440,760)"/> <wire from="(440,540)" to="(460,540)"/> <wire from="(460,840)" to="(480,840)"/> <wire from="(480,540)" to="(500,540)"/> <wire from="(500,760)" to="(520,760)"/> <wire from="(240,590)" to="(240,630)"/> <wire from="(240,670)" to="(240,710)"/> <wire from="(280,590)" to="(280,630)"/> <wire from="(320,590)" to="(320,630)"/> <wire from="(320,670)" to="(320,710)"/> <wire from="(360,590)" to="(360,630)"/> <wire from="(400,590)" to="(400,630)"/> <wire from="(400,670)" to="(400,710)"/> <wire from="(440,590)" to="(440,630)"/> <wire from="(210,190)" to="(230,190)"/> <wire from="(220,840)" to="(240,840)"/> <wire from="(480,670)" to="(480,710)"/> <wire from="(200,540)" to="(220,540)"/> <wire from="(480,590)" to="(480,630)"/> <wire from="(240,540)" to="(260,540)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(110,440)" to="(570,440)"/> <wire from="(370,120)" to="(370,170)"/> <wire from="(440,270)" to="(440,330)"/> <comp lib="6" loc="(162,782)" name="Text"> <a name="text" val="ACLK1"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(550,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(159,865)" name="Text"> <a name="text" val="ACLK2"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(163,618)" name="Text"> <a name="text" val="PHI2"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(430,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(160,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(488,316)" name="Text"> <a name="text" val="NOR3"/> </comp> <comp lib="0" loc="(580,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ACLK1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(580,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> </comp> <comp lib="1" loc="(510,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(167,528)" name="Text"> <a name="text" val="PHI1"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="4" loc="(350,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(580,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(249,216)" name="Text"> <a name="text" val="DL1"/> </comp> <comp lib="6" loc="(327,216)" name="Text"> <a name="text" val="DL2"/> </comp> <comp lib="6" loc="(486,235)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp lib="0" loc="(580,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ACLK2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(510,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(406,160)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="1" loc="(260,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(250,293)" name="Text"> <a name="text" val="INV1"/> </comp> <comp lib="4" loc="(270,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(156,701)" name="Text"> <a name="text" val="/ACLK2"/> <a name="font" val="SansSerif bold 20"/> </comp> </circuit> <circuit name="CLK_DIVIDER"> <a name="circuit" val="CLK_DIVIDER"/> <a name="clabel" val="CLK DIVIDER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#42ff2e" height="200" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="84">#CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="214">PHI2 CPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="174">PHI0 CPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="191" y="214">#M2</text> <circ-port height="8" pin="110,50" width="8" x="46" y="76"/> <circ-port height="8" pin="110,440" width="8" x="46" y="206"/> <circ-port height="10" pin="670,240" width="10" x="205" y="165"/> <circ-port height="10" pin="670,430" width="10" x="205" y="205"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(2000,80)" to="(2000,110)"/> <wire from="(2080,80)" to="(2080,110)"/> <wire from="(1180,180)" to="(1420,180)"/> <wire from="(1900,220)" to="(1900,250)"/> <wire from="(1920,80)" to="(1920,110)"/> <wire from="(1760,80)" to="(1760,110)"/> <wire from="(1840,80)" to="(1840,110)"/> <wire from="(1580,220)" to="(1580,250)"/> <wire from="(1600,80)" to="(1600,110)"/> <wire from="(1680,80)" to="(1680,110)"/> <wire from="(380,360)" to="(380,500)"/> <wire from="(1520,80)" to="(1520,110)"/> <wire from="(1660,180)" to="(1900,180)"/> <wire from="(1360,80)" to="(1360,110)"/> <wire from="(1440,80)" to="(1440,110)"/> <wire from="(1200,80)" to="(1200,110)"/> <wire from="(1280,80)" to="(1280,110)"/> <wire from="(1260,220)" to="(1260,250)"/> <wire from="(1120,80)" to="(1120,110)"/> <wire from="(960,80)" to="(960,110)"/> <wire from="(630,240)" to="(670,240)"/> <wire from="(1040,80)" to="(1040,110)"/> <wire from="(560,640)" to="(560,670)"/> <wire from="(280,1000)" to="(710,1000)"/> <wire from="(280,520)" to="(280,550)"/> <wire from="(480,750)" to="(480,840)"/> <wire from="(250,680)" to="(250,770)"/> <wire from="(380,950)" to="(420,950)"/> <wire from="(460,950)" to="(500,950)"/> <wire from="(540,490)" to="(560,490)"/> <wire from="(280,790)" to="(300,790)"/> <wire from="(480,750)" to="(500,750)"/> <wire from="(280,730)" to="(560,730)"/> <wire from="(380,60)" to="(380,100)"/> <wire from="(480,240)" to="(630,240)"/> <wire from="(340,520)" to="(420,520)"/> <wire from="(480,320)" to="(480,380)"/> <wire from="(480,240)" to="(480,300)"/> <wire from="(2160,80)" to="(2160,110)"/> <wire from="(2220,220)" to="(2220,250)"/> <wire from="(340,380)" to="(400,380)"/> <wire from="(1420,150)" to="(1660,150)"/> <wire from="(250,860)" to="(300,860)"/> <wire from="(1900,150)" to="(2140,150)"/> <wire from="(2160,80)" to="(2180,80)"/> <wire from="(2220,220)" to="(2240,220)"/> <wire from="(250,360)" to="(250,500)"/> <wire from="(250,130)" to="(360,130)"/> <wire from="(690,660)" to="(790,660)"/> <wire from="(480,400)" to="(480,480)"/> <wire from="(280,970)" to="(280,1000)"/> <wire from="(790,660)" to="(790,810)"/> <wire from="(380,860)" to="(380,950)"/> <wire from="(480,480)" to="(480,570)"/> <wire from="(380,360)" to="(420,360)"/> <wire from="(380,680)" to="(420,680)"/> <wire from="(940,150)" to="(1180,150)"/> <wire from="(460,680)" to="(500,680)"/> <wire from="(960,80)" to="(980,80)"/> <wire from="(1040,80)" to="(1060,80)"/> <wire from="(540,940)" to="(560,940)"/> <wire from="(280,520)" to="(300,520)"/> <wire from="(460,380)" to="(480,380)"/> <wire from="(480,480)" to="(500,480)"/> <wire from="(480,320)" to="(500,320)"/> <wire from="(280,460)" to="(560,460)"/> <wire from="(1920,80)" to="(1940,80)"/> <wire from="(2000,80)" to="(2020,80)"/> <wire from="(2080,80)" to="(2100,80)"/> <wire from="(1600,80)" to="(1620,80)"/> <wire from="(340,970)" to="(420,970)"/> <wire from="(1680,80)" to="(1700,80)"/> <wire from="(1760,80)" to="(1780,80)"/> <wire from="(1840,80)" to="(1860,80)"/> <wire from="(110,440)" to="(500,440)"/> <wire from="(1360,80)" to="(1380,80)"/> <wire from="(1440,80)" to="(1460,80)"/> <wire from="(1520,80)" to="(1540,80)"/> <wire from="(1120,80)" to="(1140,80)"/> <wire from="(1200,80)" to="(1220,80)"/> <wire from="(1280,80)" to="(1300,80)"/> <wire from="(1980,80)" to="(1980,110)"/> <wire from="(2060,80)" to="(2060,110)"/> <wire from="(1900,80)" to="(1900,110)"/> <wire from="(1740,80)" to="(1740,110)"/> <wire from="(1820,80)" to="(1820,110)"/> <wire from="(1660,80)" to="(1660,110)"/> <wire from="(1500,80)" to="(1500,110)"/> <wire from="(1580,80)" to="(1580,110)"/> <wire from="(250,590)" to="(300,590)"/> <wire from="(1340,80)" to="(1340,110)"/> <wire from="(1420,80)" to="(1420,110)"/> <wire from="(2140,110)" to="(2160,110)"/> <wire from="(1260,80)" to="(1260,110)"/> <wire from="(2220,110)" to="(2240,110)"/> <wire from="(1100,80)" to="(1100,110)"/> <wire from="(1180,80)" to="(1180,110)"/> <wire from="(1020,80)" to="(1020,110)"/> <wire from="(1260,250)" to="(1580,250)"/> <wire from="(400,420)" to="(500,420)"/> <wire from="(280,700)" to="(280,730)"/> <wire from="(380,590)" to="(380,680)"/> <wire from="(1900,250)" to="(2220,250)"/> <wire from="(250,860)" to="(250,950)"/> <wire from="(940,110)" to="(960,110)"/> <wire from="(1020,110)" to="(1040,110)"/> <wire from="(540,670)" to="(560,670)"/> <wire from="(280,970)" to="(300,970)"/> <wire from="(480,930)" to="(500,930)"/> <wire from="(630,670)" to="(660,670)"/> <wire from="(280,910)" to="(560,910)"/> <wire from="(1900,110)" to="(1920,110)"/> <wire from="(1980,110)" to="(2000,110)"/> <wire from="(220,180)" to="(300,180)"/> <wire from="(2060,110)" to="(2080,110)"/> <wire from="(340,700)" to="(420,700)"/> <wire from="(1660,110)" to="(1680,110)"/> <wire from="(1740,110)" to="(1760,110)"/> <wire from="(1820,110)" to="(1840,110)"/> <wire from="(1340,110)" to="(1360,110)"/> <wire from="(1420,110)" to="(1440,110)"/> <wire from="(1500,110)" to="(1520,110)"/> <wire from="(1580,110)" to="(1600,110)"/> <wire from="(170,50)" to="(300,50)"/> <wire from="(1100,110)" to="(1120,110)"/> <wire from="(1180,110)" to="(1200,110)"/> <wire from="(2140,80)" to="(2140,110)"/> <wire from="(1260,110)" to="(1280,110)"/> <wire from="(2220,80)" to="(2220,110)"/> <wire from="(610,810)" to="(790,810)"/> <wire from="(250,240)" to="(300,240)"/> <wire from="(940,220)" to="(1260,220)"/> <wire from="(280,380)" to="(280,460)"/> <wire from="(560,550)" to="(560,580)"/> <wire from="(1580,220)" to="(1900,220)"/> <wire from="(480,660)" to="(480,750)"/> <wire from="(250,590)" to="(250,680)"/> <wire from="(380,860)" to="(420,860)"/> <wire from="(460,860)" to="(500,860)"/> <wire from="(170,180)" to="(200,180)"/> <wire from="(630,240)" to="(630,670)"/> <wire from="(280,380)" to="(300,380)"/> <wire from="(280,700)" to="(300,700)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(480,660)" to="(500,660)"/> <wire from="(280,640)" to="(560,640)"/> <wire from="(110,50)" to="(130,50)"/> <wire from="(380,240)" to="(380,360)"/> <wire from="(2040,80)" to="(2040,110)"/> <wire from="(1880,80)" to="(1880,110)"/> <wire from="(1960,80)" to="(1960,110)"/> <wire from="(1720,80)" to="(1720,110)"/> <wire from="(1800,80)" to="(1800,110)"/> <wire from="(1640,80)" to="(1640,110)"/> <wire from="(1480,80)" to="(1480,110)"/> <wire from="(1560,80)" to="(1560,110)"/> <wire from="(250,770)" to="(300,770)"/> <wire from="(1320,80)" to="(1320,110)"/> <wire from="(1400,80)" to="(1400,110)"/> <wire from="(1240,80)" to="(1240,110)"/> <wire from="(1080,80)" to="(1080,110)"/> <wire from="(1160,80)" to="(1160,110)"/> <wire from="(1000,80)" to="(1000,110)"/> <wire from="(560,310)" to="(560,400)"/> <wire from="(280,880)" to="(280,910)"/> <wire from="(380,770)" to="(380,860)"/> <wire from="(630,830)" to="(630,850)"/> <wire from="(380,590)" to="(420,590)"/> <wire from="(460,590)" to="(500,590)"/> <wire from="(690,680)" to="(710,680)"/> <wire from="(340,170)" to="(360,170)"/> <wire from="(340,880)" to="(420,880)"/> <wire from="(250,240)" to="(250,360)"/> <wire from="(280,320)" to="(480,320)"/> <wire from="(2140,180)" to="(2240,180)"/> <wire from="(2120,80)" to="(2120,110)"/> <wire from="(2200,80)" to="(2200,110)"/> <wire from="(1900,150)" to="(1900,180)"/> <wire from="(1660,150)" to="(1660,180)"/> <wire from="(250,500)" to="(300,500)"/> <wire from="(1420,150)" to="(1420,180)"/> <wire from="(2120,80)" to="(2140,80)"/> <wire from="(2200,80)" to="(2220,80)"/> <wire from="(1180,150)" to="(1180,180)"/> <wire from="(560,730)" to="(560,760)"/> <wire from="(280,610)" to="(280,640)"/> <wire from="(380,240)" to="(420,240)"/> <wire from="(480,840)" to="(480,930)"/> <wire from="(250,770)" to="(250,860)"/> <wire from="(380,500)" to="(380,590)"/> <wire from="(1000,80)" to="(1020,80)"/> <wire from="(540,580)" to="(560,580)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(280,880)" to="(300,880)"/> <wire from="(480,840)" to="(500,840)"/> <wire from="(250,130)" to="(250,240)"/> <wire from="(360,130)" to="(360,170)"/> <wire from="(1880,80)" to="(1900,80)"/> <wire from="(1960,80)" to="(1980,80)"/> <wire from="(2040,80)" to="(2060,80)"/> <wire from="(1640,80)" to="(1660,80)"/> <wire from="(340,610)" to="(420,610)"/> <wire from="(1720,80)" to="(1740,80)"/> <wire from="(1800,80)" to="(1820,80)"/> <wire from="(1320,80)" to="(1340,80)"/> <wire from="(1400,80)" to="(1420,80)"/> <wire from="(1480,80)" to="(1500,80)"/> <wire from="(1560,80)" to="(1580,80)"/> <wire from="(1080,80)" to="(1100,80)"/> <wire from="(1160,80)" to="(1180,80)"/> <wire from="(1240,80)" to="(1260,80)"/> <wire from="(2140,150)" to="(2140,180)"/> <wire from="(170,50)" to="(170,180)"/> <wire from="(2020,80)" to="(2020,110)"/> <wire from="(2100,80)" to="(2100,110)"/> <wire from="(1860,80)" to="(1860,110)"/> <wire from="(1940,80)" to="(1940,110)"/> <wire from="(1780,80)" to="(1780,110)"/> <wire from="(1620,80)" to="(1620,110)"/> <wire from="(1700,80)" to="(1700,110)"/> <wire from="(1460,80)" to="(1460,110)"/> <wire from="(380,100)" to="(380,240)"/> <wire from="(1540,80)" to="(1540,110)"/> <wire from="(250,950)" to="(300,950)"/> <wire from="(1380,80)" to="(1380,110)"/> <wire from="(710,680)" to="(710,1000)"/> <wire from="(1220,80)" to="(1220,110)"/> <wire from="(250,70)" to="(300,70)"/> <wire from="(1300,80)" to="(1300,110)"/> <wire from="(2180,110)" to="(2200,110)"/> <wire from="(1060,80)" to="(1060,110)"/> <wire from="(1140,80)" to="(1140,110)"/> <wire from="(980,80)" to="(980,110)"/> <wire from="(560,460)" to="(560,490)"/> <wire from="(280,100)" to="(380,100)"/> <wire from="(480,570)" to="(480,660)"/> <wire from="(250,500)" to="(250,590)"/> <wire from="(380,770)" to="(420,770)"/> <wire from="(460,770)" to="(500,770)"/> <wire from="(980,110)" to="(1000,110)"/> <wire from="(540,310)" to="(560,310)"/> <wire from="(280,610)" to="(300,610)"/> <wire from="(480,570)" to="(500,570)"/> <wire from="(280,550)" to="(560,550)"/> <wire from="(400,380)" to="(400,420)"/> <wire from="(540,850)" to="(630,850)"/> <wire from="(1860,110)" to="(1880,110)"/> <wire from="(1940,110)" to="(1960,110)"/> <wire from="(2020,110)" to="(2040,110)"/> <wire from="(2100,110)" to="(2120,110)"/> <wire from="(1620,110)" to="(1640,110)"/> <wire from="(340,260)" to="(420,260)"/> <wire from="(1700,110)" to="(1720,110)"/> <wire from="(480,400)" to="(560,400)"/> <wire from="(1780,110)" to="(1800,110)"/> <wire from="(280,100)" to="(280,160)"/> <wire from="(280,260)" to="(280,320)"/> <wire from="(1380,110)" to="(1400,110)"/> <wire from="(1460,110)" to="(1480,110)"/> <wire from="(1540,110)" to="(1560,110)"/> <wire from="(1060,110)" to="(1080,110)"/> <wire from="(1140,110)" to="(1160,110)"/> <wire from="(1220,110)" to="(1240,110)"/> <wire from="(250,70)" to="(250,130)"/> <wire from="(1300,110)" to="(1320,110)"/> <wire from="(2180,80)" to="(2180,110)"/> <wire from="(250,680)" to="(300,680)"/> <wire from="(680,580)" to="(680,650)"/> <wire from="(250,360)" to="(300,360)"/> <wire from="(280,820)" to="(580,820)"/> <wire from="(560,910)" to="(560,940)"/> <wire from="(280,790)" to="(280,820)"/> <wire from="(380,680)" to="(380,770)"/> <wire from="(340,60)" to="(380,60)"/> <wire from="(380,500)" to="(420,500)"/> <wire from="(460,500)" to="(500,500)"/> <wire from="(540,760)" to="(560,760)"/> <wire from="(610,830)" to="(630,830)"/> <wire from="(280,260)" to="(300,260)"/> <wire from="(400,380)" to="(420,380)"/> <wire from="(480,300)" to="(500,300)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(680,580)" to="(750,580)"/> <wire from="(340,790)" to="(420,790)"/> <wire from="(540,430)" to="(670,430)"/> <comp lib="1" loc="(340,60)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,600)" name="D-latch"/> <comp lib="1" loc="(220,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(732,537)" name="Text"> <a name="text" val="0 NTSC"/> </comp> <comp lib="6" loc="(214,169)" name="Text"> <a name="text" val="INV2"/> </comp> <comp loc="(460,250)" name="D-latch"/> <comp loc="(460,960)" name="D-latch"/> <comp loc="(340,510)" name="D-latch"/> <comp lib="2" loc="(660,670)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(884,177)" name="Text"> <a name="text" val="PHI0 NTSC"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="1" loc="(540,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(150,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(340,870)" name="D-latch"/> <comp lib="6" loc="(908,111)" name="Text"> <a name="text" val="#CLK"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp loc="(460,870)" name="D-latch"/> <comp lib="6" loc="(727,557)" name="Text"> <a name="text" val="1 PAL"/> </comp> <comp lib="6" loc="(317,200)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp loc="(340,370)" name="D-latch"/> <comp lib="0" loc="(110,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2 CPU"/> </comp> <comp lib="0" loc="(670,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PHI0 CPU"/> <a name="labelloc" val="east"/> </comp> <comp loc="(340,780)" name="D-latch"/> <comp lib="1" loc="(540,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,960)" name="D-latch"/> <comp loc="(460,780)" name="D-latch"/> <comp loc="(460,600)" name="D-latch"/> <comp lib="1" loc="(540,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(670,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#M2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(340,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(460,510)" name="D-latch"/> <comp lib="6" loc="(891,248)" name="Text"> <a name="text" val="PHI0 PAL"/> <a name="font" val="SansSerif plain 18"/> </comp> <comp loc="(340,690)" name="D-latch"/> <comp lib="0" loc="(110,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#CLK"/> </comp> <comp lib="0" loc="(750,580)" name="Constant"> <a name="facing" val="west"/> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(540,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(340,250)" name="D-latch"/> <comp lib="1" loc="(540,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(317,39)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="1" loc="(540,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(460,690)" name="D-latch"/> <comp loc="(460,370)" name="D-latch"/> <comp lib="1" loc="(580,820)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="REGISTER_SELECT"> <a name="circuit" val="REGISTER_SELECT"/> <a name="clabel" val="REGISTER SELECT"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7d1a" height="621" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="75">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="134">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="474">A15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="454">A14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="434">A13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="414">A12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="394">A11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="374">A10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="354">A9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="334">A8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">A7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="294">A6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="274">A5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="254">A4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="234">A3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="214">A2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="195">A1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="174">A0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="75">W4000</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="95">W4001</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="114">W4002</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="134">W4003</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="155">W4004</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="174">W4005</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="194">W4006</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="215">W4007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="235">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="254">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="274">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="295">W400C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="315">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="334">W400F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="354">W4010</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="374">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="394">W4012</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="415">W4013</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="434">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="454">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="474">W4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="494">W4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="554">/R4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="515">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="535">/R4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="574">/R4018</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="594">/R4019</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="614">/R401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="634"> W401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="654">/DBGRD</text> <circ-port height="8" pin="90,430" width="8" x="46" y="66"/> <circ-port height="8" pin="90,530" width="8" x="46" y="126"/> <circ-port height="8" pin="90,570" width="8" x="46" y="466"/> <circ-port height="8" pin="90,600" width="8" x="46" y="446"/> <circ-port height="8" pin="90,630" width="8" x="46" y="426"/> <circ-port height="8" pin="90,660" width="8" x="46" y="406"/> <circ-port height="8" pin="90,690" width="8" x="46" y="386"/> <circ-port height="8" pin="90,720" width="8" x="46" y="366"/> <circ-port height="8" pin="90,750" width="8" x="46" y="346"/> <circ-port height="8" pin="90,780" width="8" x="46" y="326"/> <circ-port height="8" pin="90,810" width="8" x="46" y="306"/> <circ-port height="8" pin="90,840" width="8" x="46" y="286"/> <circ-port height="8" pin="90,870" width="8" x="46" y="266"/> <circ-port height="8" pin="90,900" width="8" x="46" y="246"/> <circ-port height="8" pin="90,930" width="8" x="46" y="226"/> <circ-port height="8" pin="90,960" width="8" x="46" y="206"/> <circ-port height="8" pin="90,990" width="8" x="46" y="186"/> <circ-port height="8" pin="90,1020" width="8" x="46" y="166"/> <circ-port height="10" pin="700,30" width="10" x="205" y="65"/> <circ-port height="10" pin="700,60" width="10" x="205" y="85"/> <circ-port height="10" pin="700,90" width="10" x="205" y="105"/> <circ-port height="10" pin="700,120" width="10" x="205" y="125"/> <circ-port height="10" pin="700,150" width="10" x="205" y="145"/> <circ-port height="10" pin="700,180" width="10" x="205" y="165"/> <circ-port height="10" pin="700,210" width="10" x="205" y="185"/> <circ-port height="10" pin="700,240" width="10" x="205" y="205"/> <circ-port height="10" pin="700,270" width="10" x="205" y="225"/> <circ-port height="10" pin="700,300" width="10" x="205" y="245"/> <circ-port height="10" pin="700,330" width="10" x="205" y="265"/> <circ-port height="10" pin="700,360" width="10" x="205" y="285"/> <circ-port height="10" pin="700,390" width="10" x="205" y="305"/> <circ-port height="10" pin="700,420" width="10" x="205" y="325"/> <circ-port height="10" pin="700,450" width="10" x="205" y="345"/> <circ-port height="10" pin="700,480" width="10" x="205" y="365"/> <circ-port height="10" pin="700,510" width="10" x="205" y="385"/> <circ-port height="10" pin="700,540" width="10" x="205" y="405"/> <circ-port height="10" pin="700,570" width="10" x="205" y="425"/> <circ-port height="10" pin="700,600" width="10" x="205" y="445"/> <circ-port height="10" pin="700,630" width="10" x="205" y="465"/> <circ-port height="10" pin="700,660" width="10" x="205" y="485"/> <circ-port height="10" pin="700,990" width="10" x="205" y="505"/> <circ-port height="10" pin="700,1040" width="10" x="205" y="525"/> <circ-port height="10" pin="700,1090" width="10" x="205" y="545"/> <circ-port height="10" pin="700,1140" width="10" x="205" y="565"/> <circ-port height="10" pin="700,1190" width="10" x="205" y="585"/> <circ-port height="10" pin="700,1240" width="10" x="205" y="605"/> <circ-port height="10" pin="700,690" width="10" x="205" y="625"/> <circ-port height="8" pin="90,1250" width="8" x="46" y="96"/> <circ-port height="10" pin="700,1300" width="10" x="205" y="645"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(580,120)" to="(700,120)"/> <wire from="(650,690)" to="(700,690)"/> <wire from="(650,330)" to="(700,330)"/> <wire from="(650,1090)" to="(700,1090)"/> <wire from="(600,180)" to="(600,320)"/> <wire from="(140,730)" to="(200,730)"/> <wire from="(560,990)" to="(620,990)"/> <wire from="(560,1230)" to="(620,1230)"/> <wire from="(90,690)" to="(140,690)"/> <wire from="(170,760)" to="(170,840)"/> <wire from="(170,600)" to="(170,680)"/> <wire from="(660,1190)" to="(700,1190)"/> <wire from="(90,720)" to="(200,720)"/> <wire from="(510,830)" to="(510,860)"/> <wire from="(580,1100)" to="(580,1130)"/> <wire from="(560,990)" to="(560,1070)"/> <wire from="(150,960)" to="(380,960)"/> <wire from="(90,1020)" to="(130,1020)"/> <wire from="(90,900)" to="(130,900)"/> <wire from="(90,430)" to="(450,430)"/> <wire from="(160,690)" to="(200,690)"/> <wire from="(670,430)" to="(670,450)"/> <wire from="(670,390)" to="(670,410)"/> <wire from="(140,600)" to="(170,600)"/> <wire from="(550,30)" to="(700,30)"/> <wire from="(600,1150)" to="(620,1150)"/> <wire from="(180,570)" to="(180,670)"/> <wire from="(180,770)" to="(180,870)"/> <wire from="(670,450)" to="(700,450)"/> <wire from="(600,500)" to="(600,660)"/> <wire from="(530,1070)" to="(560,1070)"/> <wire from="(530,340)" to="(620,340)"/> <wire from="(180,770)" to="(200,770)"/> <wire from="(530,320)" to="(600,320)"/> <wire from="(530,390)" to="(660,390)"/> <wire from="(650,450)" to="(650,510)"/> <wire from="(650,330)" to="(650,380)"/> <wire from="(620,240)" to="(700,240)"/> <wire from="(620,600)" to="(700,600)"/> <wire from="(350,800)" to="(350,1310)"/> <wire from="(600,1200)" to="(600,1250)"/> <wire from="(580,120)" to="(580,300)"/> <wire from="(530,300)" to="(580,300)"/> <wire from="(530,1100)" to="(580,1100)"/> <wire from="(570,1180)" to="(620,1180)"/> <wire from="(600,700)" to="(600,1150)"/> <wire from="(560,680)" to="(620,680)"/> <wire from="(530,1110)" to="(570,1110)"/> <wire from="(580,1040)" to="(620,1040)"/> <wire from="(660,1240)" to="(700,1240)"/> <wire from="(660,480)" to="(700,480)"/> <wire from="(660,360)" to="(700,360)"/> <wire from="(560,60)" to="(560,280)"/> <wire from="(630,270)" to="(630,350)"/> <wire from="(530,370)" to="(640,370)"/> <wire from="(510,1310)" to="(620,1310)"/> <wire from="(590,150)" to="(700,150)"/> <wire from="(170,680)" to="(200,680)"/> <wire from="(170,760)" to="(200,760)"/> <wire from="(600,1250)" to="(600,1290)"/> <wire from="(90,600)" to="(120,600)"/> <wire from="(600,1200)" to="(620,1200)"/> <wire from="(90,870)" to="(180,870)"/> <wire from="(560,1120)" to="(560,1230)"/> <wire from="(280,720)" to="(300,720)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(130,980)" to="(130,1020)"/> <wire from="(530,280)" to="(560,280)"/> <wire from="(530,1120)" to="(560,1120)"/> <wire from="(130,900)" to="(130,940)"/> <wire from="(470,430)" to="(490,430)"/> <wire from="(630,470)" to="(630,570)"/> <wire from="(90,930)" to="(110,930)"/> <wire from="(110,950)" to="(130,950)"/> <wire from="(610,630)" to="(700,630)"/> <wire from="(350,800)" to="(500,800)"/> <wire from="(350,640)" to="(500,640)"/> <wire from="(610,210)" to="(610,330)"/> <wire from="(90,840)" to="(170,840)"/> <wire from="(630,270)" to="(700,270)"/> <wire from="(500,590)" to="(500,640)"/> <wire from="(530,440)" to="(660,440)"/> <wire from="(90,810)" to="(160,810)"/> <wire from="(560,60)" to="(700,60)"/> <wire from="(530,430)" to="(670,430)"/> <wire from="(530,450)" to="(650,450)"/> <wire from="(350,640)" to="(350,710)"/> <wire from="(650,510)" to="(700,510)"/> <wire from="(650,990)" to="(700,990)"/> <wire from="(610,490)" to="(610,630)"/> <wire from="(90,780)" to="(150,780)"/> <wire from="(90,660)" to="(150,660)"/> <wire from="(140,710)" to="(200,710)"/> <wire from="(90,750)" to="(140,750)"/> <wire from="(580,1130)" to="(620,1130)"/> <wire from="(660,360)" to="(660,390)"/> <wire from="(530,470)" to="(630,470)"/> <wire from="(530,350)" to="(630,350)"/> <wire from="(600,660)" to="(700,660)"/> <wire from="(600,180)" to="(700,180)"/> <wire from="(110,970)" to="(110,990)"/> <wire from="(110,930)" to="(110,950)"/> <wire from="(90,960)" to="(130,960)"/> <wire from="(530,460)" to="(640,460)"/> <wire from="(160,750)" to="(200,750)"/> <wire from="(580,1040)" to="(580,1080)"/> <wire from="(660,440)" to="(660,480)"/> <wire from="(600,1250)" to="(620,1250)"/> <wire from="(600,1290)" to="(620,1290)"/> <wire from="(670,390)" to="(700,390)"/> <wire from="(590,150)" to="(590,310)"/> <wire from="(530,530)" to="(560,530)"/> <wire from="(530,480)" to="(620,480)"/> <wire from="(180,670)" to="(200,670)"/> <wire from="(530,500)" to="(600,500)"/> <wire from="(570,90)" to="(700,90)"/> <wire from="(530,330)" to="(610,330)"/> <wire from="(530,490)" to="(610,490)"/> <wire from="(500,800)" to="(500,860)"/> <wire from="(530,380)" to="(650,380)"/> <wire from="(570,90)" to="(570,290)"/> <wire from="(90,1250)" to="(600,1250)"/> <wire from="(350,730)" to="(350,800)"/> <wire from="(650,1040)" to="(700,1040)"/> <wire from="(380,830)" to="(380,960)"/> <wire from="(530,1080)" to="(580,1080)"/> <wire from="(150,700)" to="(200,700)"/> <wire from="(530,310)" to="(590,310)"/> <wire from="(150,740)" to="(200,740)"/> <wire from="(640,540)" to="(700,540)"/> <wire from="(640,300)" to="(700,300)"/> <wire from="(570,1110)" to="(570,1180)"/> <wire from="(640,300)" to="(640,370)"/> <wire from="(530,290)" to="(570,290)"/> <wire from="(660,1140)" to="(700,1140)"/> <wire from="(660,1300)" to="(700,1300)"/> <wire from="(140,730)" to="(140,750)"/> <wire from="(140,690)" to="(140,710)"/> <wire from="(640,460)" to="(640,540)"/> <wire from="(90,530)" to="(320,530)"/> <wire from="(560,530)" to="(560,680)"/> <wire from="(530,420)" to="(700,420)"/> <wire from="(530,270)" to="(550,270)"/> <wire from="(600,700)" to="(620,700)"/> <wire from="(90,570)" to="(180,570)"/> <wire from="(330,710)" to="(350,710)"/> <wire from="(150,740)" to="(150,780)"/> <wire from="(150,660)" to="(150,700)"/> <wire from="(620,240)" to="(620,340)"/> <wire from="(90,990)" to="(110,990)"/> <wire from="(110,970)" to="(130,970)"/> <wire from="(530,1090)" to="(620,1090)"/> <wire from="(610,210)" to="(700,210)"/> <wire from="(320,530)" to="(320,700)"/> <wire from="(620,480)" to="(620,600)"/> <wire from="(350,1310)" to="(490,1310)"/> <wire from="(630,570)" to="(700,570)"/> <wire from="(550,30)" to="(550,270)"/> <wire from="(380,830)" to="(510,830)"/> <wire from="(510,590)" to="(510,830)"/> <wire from="(90,630)" to="(160,630)"/> <wire from="(600,1150)" to="(600,1200)"/> <wire from="(530,410)" to="(670,410)"/> <wire from="(160,750)" to="(160,810)"/> <wire from="(160,630)" to="(160,690)"/> <comp lib="0" loc="(700,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W401A"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(700,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/DBGRD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4004"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A10"/> </comp> <comp lib="0" loc="(700,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4008"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(452,782)" name="Text"> <a name="text" val="REGRD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400B"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(140,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(451,794)" name="Text"> <a name="text" val="Enable read ports"/> </comp> <comp lib="0" loc="(90,960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A2"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A6"/> </comp> <comp lib="1" loc="(510,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A3"/> </comp> <comp lib="0" loc="(700,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4006"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(510,860)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="5"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(150,960)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> </comp> <comp lib="0" loc="(90,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(700,1240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R401A"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(449,669)" name="Text"> <a name="text" val="Enable write ports"/> </comp> <comp lib="0" loc="(90,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A12"/> </comp> <comp lib="1" loc="(660,1190)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400E"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400F"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4019"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4001"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,990)" name="NOT Gate"/> <comp lib="0" loc="(90,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A4"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A1"/> </comp> <comp lib="0" loc="(700,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4015"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4010"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A13"/> </comp> <comp lib="0" loc="(90,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A9"/> </comp> <comp lib="0" loc="(700,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4014"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4000"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4018"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,1040)" name="NOT Gate"/> <comp lib="1" loc="(470,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,1300)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4016"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(451,654)" name="Text"> <a name="text" val="REGWR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4003"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A5"/> </comp> <comp lib="1" loc="(660,1140)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(300,720)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(490,430)" name="Demultiplexer"> <a name="select" val="5"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(700,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400C"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A0"/> </comp> <comp lib="0" loc="(90,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A8"/> </comp> <comp lib="0" loc="(90,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A11"/> </comp> <comp lib="0" loc="(90,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A7"/> </comp> <comp lib="0" loc="(700,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4016"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4012"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4017"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4011"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4015"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,1090)" name="NOT Gate"/> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A15"/> </comp> <comp lib="0" loc="(700,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4017"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(280,720)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="11"/> </comp> <comp lib="1" loc="(660,1240)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4007"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="A14"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(700,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W400A"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,690)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4002"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4005"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="W4013"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="ENVELOPE_GENERATOR"> <a name="circuit" val="ENVELOPE_GENERATOR"/> <a name="clabel" val="ENVELOPE GENERATOR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M71,51 Q75,61 79,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#c2ff58" height="280" stroke="#000000" stroke-width="2" width="200" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="134">W400(0) 4, C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="154">W400(3) 7, F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="234">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="314">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="274">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="84">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="143">V1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="204">V2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="264">V3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="221" y="314">#CH/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="114">CH IN</text> <circ-port height="8" pin="120,70" width="8" x="46" y="66"/> <circ-port height="8" pin="120,210" width="8" x="46" y="126"/> <circ-port height="8" pin="120,1090" width="8" x="46" y="146"/> <circ-port height="8" pin="120,290" width="8" x="46" y="176"/> <circ-port height="8" pin="120,470" width="8" x="46" y="186"/> <circ-port height="8" pin="120,650" width="8" x="46" y="196"/> <circ-port height="8" pin="120,830" width="8" x="46" y="206"/> <circ-port height="8" pin="120,890" width="8" x="46" y="216"/> <circ-port height="8" pin="120,950" width="8" x="46" y="226"/> <circ-port height="8" pin="120,1220" width="8" x="46" y="306"/> <circ-port height="8" pin="120,110" width="8" x="46" y="266"/> <circ-port height="10" pin="1280,970" width="10" x="245" y="75"/> <circ-port height="10" pin="1280,1050" width="10" x="245" y="135"/> <circ-port height="10" pin="1280,1130" width="10" x="245" y="195"/> <circ-port height="10" pin="1280,1210" width="10" x="245" y="255"/> <circ-port height="10" pin="1230,2250" width="10" x="245" y="305"/> <circ-port height="8" pin="120,2280" width="8" x="46" y="106"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(240,950)" to="(300,950)"/> <wire from="(760,1160)" to="(810,1160)"/> <wire from="(750,1950)" to="(800,1950)"/> <wire from="(670,1340)" to="(670,1410)"/> <wire from="(660,690)" to="(660,760)"/> <wire from="(640,510)" to="(640,600)"/> <wire from="(660,660)" to="(660,690)"/> <wire from="(660,660)" to="(760,660)"/> <wire from="(580,1700)" to="(580,1730)"/> <wire from="(950,810)" to="(950,1210)"/> <wire from="(470,400)" to="(510,400)"/> <wire from="(580,950)" to="(860,950)"/> <wire from="(950,2020)" to="(970,2020)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(490,1560)" to="(510,1560)"/> <wire from="(860,700)" to="(860,740)"/> <wire from="(780,1930)" to="(780,2030)"/> <wire from="(420,1760)" to="(420,1930)"/> <wire from="(180,450)" to="(200,450)"/> <wire from="(180,930)" to="(200,930)"/> <wire from="(260,320)" to="(260,500)"/> <wire from="(540,570)" to="(610,570)"/> <wire from="(120,210)" to="(260,210)"/> <wire from="(600,1880)" to="(600,1940)"/> <wire from="(660,980)" to="(660,1040)"/> <wire from="(670,1790)" to="(670,1850)"/> <wire from="(420,2220)" to="(1140,2220)"/> <wire from="(650,1290)" to="(650,1340)"/> <wire from="(670,1750)" to="(680,1750)"/> <wire from="(850,1190)" to="(930,1190)"/> <wire from="(700,1940)" to="(710,1940)"/> <wire from="(570,530)" to="(580,530)"/> <wire from="(1260,1210)" to="(1280,1210)"/> <wire from="(1260,1050)" to="(1280,1050)"/> <wire from="(350,2100)" to="(990,2100)"/> <wire from="(470,420)" to="(590,420)"/> <wire from="(670,1850)" to="(710,1850)"/> <wire from="(460,430)" to="(460,450)"/> <wire from="(620,1710)" to="(620,1740)"/> <wire from="(570,740)" to="(860,740)"/> <wire from="(1010,2020)" to="(1060,2020)"/> <wire from="(780,1500)" to="(800,1500)"/> <wire from="(580,1560)" to="(860,1560)"/> <wire from="(630,1510)" to="(650,1510)"/> <wire from="(670,1450)" to="(760,1450)"/> <wire from="(460,1610)" to="(460,1780)"/> <wire from="(790,1080)" to="(790,1140)"/> <wire from="(490,200)" to="(490,380)"/> <wire from="(590,720)" to="(590,780)"/> <wire from="(600,1370)" to="(600,1430)"/> <wire from="(700,1010)" to="(780,1010)"/> <wire from="(700,1750)" to="(710,1750)"/> <wire from="(1100,2090)" to="(1140,2090)"/> <wire from="(660,150)" to="(660,220)"/> <wire from="(760,410)" to="(760,480)"/> <wire from="(660,690)" to="(700,690)"/> <wire from="(670,1340)" to="(710,1340)"/> <wire from="(420,770)" to="(420,980)"/> <wire from="(570,350)" to="(570,380)"/> <wire from="(220,960)" to="(220,980)"/> <wire from="(220,480)" to="(220,500)"/> <wire from="(380,1190)" to="(380,2050)"/> <wire from="(840,1690)" to="(860,1690)"/> <wire from="(560,2160)" to="(1160,2160)"/> <wire from="(560,1680)" to="(560,1850)"/> <wire from="(860,160)" to="(860,200)"/> <wire from="(620,510)" to="(640,510)"/> <wire from="(420,1590)" to="(440,1590)"/> <wire from="(490,380)" to="(510,380)"/> <wire from="(180,870)" to="(200,870)"/> <wire from="(700,1950)" to="(700,2050)"/> <wire from="(630,1870)" to="(710,1870)"/> <wire from="(850,1070)" to="(860,1070)"/> <wire from="(660,400)" to="(670,400)"/> <wire from="(780,140)" to="(780,320)"/> <wire from="(1200,1140)" to="(1200,1220)"/> <wire from="(1200,980)" to="(1200,1060)"/> <wire from="(750,1860)" to="(800,1860)"/> <wire from="(780,680)" to="(780,1010)"/> <wire from="(850,1150)" to="(910,1150)"/> <wire from="(120,2280)" to="(1200,2280)"/> <wire from="(640,780)" to="(700,780)"/> <wire from="(650,1430)" to="(710,1430)"/> <wire from="(1050,1030)" to="(1110,1030)"/> <wire from="(570,200)" to="(860,200)"/> <wire from="(780,1840)" to="(780,1930)"/> <wire from="(610,360)" to="(610,390)"/> <wire from="(700,2050)" to="(800,2050)"/> <wire from="(490,110)" to="(490,200)"/> <wire from="(870,1930)" to="(870,2010)"/> <wire from="(470,1750)" to="(510,1750)"/> <wire from="(840,700)" to="(860,700)"/> <wire from="(640,980)" to="(660,980)"/> <wire from="(780,320)" to="(800,320)"/> <wire from="(240,450)" to="(460,450)"/> <wire from="(560,1850)" to="(590,1850)"/> <wire from="(420,230)" to="(420,410)"/> <wire from="(590,180)" to="(590,240)"/> <wire from="(180,630)" to="(180,810)"/> <wire from="(540,1910)" to="(620,1910)"/> <wire from="(470,1600)" to="(600,1600)"/> <wire from="(620,710)" to="(700,710)"/> <wire from="(630,1360)" to="(710,1360)"/> <wire from="(750,1420)" to="(760,1420)"/> <wire from="(970,1130)" to="(1110,1130)"/> <wire from="(690,400)" to="(700,400)"/> <wire from="(1200,1220)" to="(1220,1220)"/> <wire from="(1200,1060)" to="(1220,1060)"/> <wire from="(750,1350)" to="(800,1350)"/> <wire from="(120,70)" to="(180,70)"/> <wire from="(220,900)" to="(220,910)"/> <wire from="(350,1260)" to="(350,2100)"/> <wire from="(650,1680)" to="(650,1770)"/> <wire from="(560,1170)" to="(600,1170)"/> <wire from="(660,150)" to="(700,150)"/> <wire from="(760,1760)" to="(760,1790)"/> <wire from="(1120,870)" to="(1120,940)"/> <wire from="(560,690)" to="(560,900)"/> <wire from="(470,760)" to="(510,760)"/> <wire from="(650,1810)" to="(650,1850)"/> <wire from="(490,1390)" to="(490,1560)"/> <wire from="(860,1860)" to="(860,1900)"/> <wire from="(740,410)" to="(760,410)"/> <wire from="(420,410)" to="(440,410)"/> <wire from="(560,1340)" to="(590,1340)"/> <wire from="(260,680)" to="(260,850)"/> <wire from="(180,810)" to="(200,810)"/> <wire from="(840,2030)" to="(910,2030)"/> <wire from="(540,1400)" to="(620,1400)"/> <wire from="(640,1180)" to="(720,1180)"/> <wire from="(700,1240)" to="(780,1240)"/> <wire from="(580,1700)" to="(590,1700)"/> <wire from="(670,1080)" to="(720,1080)"/> <wire from="(1180,960)" to="(1220,960)"/> <wire from="(1180,1120)" to="(1220,1120)"/> <wire from="(670,1510)" to="(670,1580)"/> <wire from="(640,240)" to="(700,240)"/> <wire from="(740,340)" to="(800,340)"/> <wire from="(470,780)" to="(590,780)"/> <wire from="(1160,2030)" to="(1160,2160)"/> <wire from="(460,790)" to="(460,810)"/> <wire from="(240,870)" to="(1120,870)"/> <wire from="(870,1930)" to="(910,1930)"/> <wire from="(580,1870)" to="(580,1900)"/> <wire from="(220,320)" to="(260,320)"/> <wire from="(670,1320)" to="(670,1340)"/> <wire from="(840,160)" to="(860,160)"/> <wire from="(490,1730)" to="(510,1730)"/> <wire from="(860,1350)" to="(860,1390)"/> <wire from="(780,1330)" to="(780,1500)"/> <wire from="(930,900)" to="(930,1190)"/> <wire from="(860,770)" to="(860,930)"/> <wire from="(700,1060)" to="(700,1160)"/> <wire from="(120,470)" to="(200,470)"/> <wire from="(120,950)" to="(200,950)"/> <wire from="(1030,2100)" to="(1060,2100)"/> <wire from="(490,560)" to="(490,740)"/> <wire from="(620,170)" to="(700,170)"/> <wire from="(560,150)" to="(560,330)"/> <wire from="(700,1950)" to="(710,1950)"/> <wire from="(260,910)" to="(260,980)"/> <wire from="(220,840)" to="(220,850)"/> <wire from="(660,510)" to="(660,580)"/> <wire from="(640,330)" to="(640,420)"/> <wire from="(620,1880)" to="(620,1910)"/> <wire from="(660,480)" to="(660,510)"/> <wire from="(350,1260)" to="(910,1260)"/> <wire from="(660,480)" to="(760,480)"/> <wire from="(570,710)" to="(570,740)"/> <wire from="(580,1040)" to="(580,1070)"/> <wire from="(580,1360)" to="(580,1390)"/> <wire from="(470,220)" to="(510,220)"/> <wire from="(790,1200)" to="(810,1200)"/> <wire from="(780,1670)" to="(800,1670)"/> <wire from="(580,1730)" to="(860,1730)"/> <wire from="(890,1950)" to="(890,2250)"/> <wire from="(970,2020)" to="(990,2020)"/> <wire from="(560,330)" to="(580,330)"/> <wire from="(580,990)" to="(600,990)"/> <wire from="(860,520)" to="(860,560)"/> <wire from="(630,1680)" to="(650,1680)"/> <wire from="(970,2080)" to="(1060,2080)"/> <wire from="(490,740)" to="(510,740)"/> <wire from="(670,1620)" to="(760,1620)"/> <wire from="(420,1420)" to="(420,1590)"/> <wire from="(460,1780)" to="(460,1950)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(540,390)" to="(610,390)"/> <wire from="(600,1540)" to="(600,1600)"/> <wire from="(670,1450)" to="(670,1510)"/> <wire from="(780,500)" to="(780,680)"/> <wire from="(670,1410)" to="(680,1410)"/> <wire from="(660,760)" to="(670,760)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(1120,940)" to="(1120,1020)"/> <wire from="(1120,1100)" to="(1120,1180)"/> <wire from="(1070,1110)" to="(1110,1110)"/> <wire from="(490,740)" to="(490,1390)"/> <wire from="(470,240)" to="(590,240)"/> <wire from="(670,1510)" to="(710,1510)"/> <wire from="(460,250)" to="(460,270)"/> <wire from="(620,1370)" to="(620,1400)"/> <wire from="(780,1240)" to="(780,1330)"/> <wire from="(570,560)" to="(860,560)"/> <wire from="(610,720)" to="(610,750)"/> <wire from="(700,1160)" to="(700,1240)"/> <wire from="(660,130)" to="(660,150)"/> <wire from="(780,680)" to="(800,680)"/> <wire from="(240,810)" to="(460,810)"/> <wire from="(840,1860)" to="(860,1860)"/> <wire from="(420,1930)" to="(420,2220)"/> <wire from="(420,1760)" to="(440,1760)"/> <wire from="(180,160)" to="(180,270)"/> <wire from="(580,1020)" to="(670,1020)"/> <wire from="(120,890)" to="(200,890)"/> <wire from="(420,590)" to="(420,770)"/> <wire from="(1030,2040)" to="(1060,2040)"/> <wire from="(590,540)" to="(590,600)"/> <wire from="(260,850)" to="(260,910)"/> <wire from="(690,760)" to="(700,760)"/> <wire from="(700,1410)" to="(710,1410)"/> <wire from="(1140,1040)" to="(1160,1040)"/> <wire from="(1140,1200)" to="(1160,1200)"/> <wire from="(990,1050)" to="(1110,1050)"/> <wire from="(760,230)" to="(760,300)"/> <wire from="(650,1600)" to="(710,1600)"/> <wire from="(650,1290)" to="(1030,1290)"/> <wire from="(470,1920)" to="(510,1920)"/> <wire from="(660,510)" to="(700,510)"/> <wire from="(570,170)" to="(570,200)"/> <wire from="(220,300)" to="(220,320)"/> <wire from="(790,1140)" to="(810,1140)"/> <wire from="(780,1930)" to="(800,1930)"/> <wire from="(840,1350)" to="(860,1350)"/> <wire from="(560,1340)" to="(560,1510)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(420,770)" to="(440,770)"/> <wire from="(260,210)" to="(260,320)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(1010,270)" to="(1010,970)"/> <wire from="(470,1770)" to="(600,1770)"/> <wire from="(630,1530)" to="(710,1530)"/> <wire from="(750,1590)" to="(760,1590)"/> <wire from="(660,220)" to="(670,220)"/> <wire from="(1260,1130)" to="(1280,1130)"/> <wire from="(1260,970)" to="(1280,970)"/> <wire from="(650,1810)" to="(1090,1810)"/> <wire from="(750,1520)" to="(800,1520)"/> <wire from="(740,770)" to="(860,770)"/> <wire from="(640,600)" to="(700,600)"/> <wire from="(740,700)" to="(800,700)"/> <wire from="(300,950)" to="(300,2250)"/> <wire from="(610,180)" to="(610,210)"/> <wire from="(220,680)" to="(260,680)"/> <wire from="(580,950)" to="(580,970)"/> <wire from="(470,1410)" to="(510,1410)"/> <wire from="(840,520)" to="(860,520)"/> <wire from="(910,1150)" to="(910,1260)"/> <wire from="(490,1560)" to="(490,1730)"/> <wire from="(650,1850)" to="(650,1960)"/> <wire from="(780,140)" to="(800,140)"/> <wire from="(240,270)" to="(460,270)"/> <wire from="(560,1510)" to="(590,1510)"/> <wire from="(1030,2040)" to="(1030,2100)"/> <wire from="(120,830)" to="(200,830)"/> <wire from="(180,450)" to="(180,630)"/> <wire from="(540,1570)" to="(620,1570)"/> <wire from="(620,530)" to="(700,530)"/> <wire from="(690,220)" to="(700,220)"/> <wire from="(560,510)" to="(560,690)"/> <wire from="(180,870)" to="(180,930)"/> <wire from="(580,1870)" to="(590,1870)"/> <wire from="(560,1850)" to="(560,2160)"/> <wire from="(760,1180)" to="(810,1180)"/> <wire from="(180,70)" to="(180,140)"/> <wire from="(670,1680)" to="(670,1750)"/> <wire from="(650,1340)" to="(650,1430)"/> <wire from="(640,690)" to="(640,780)"/> <wire from="(760,1420)" to="(760,1450)"/> <wire from="(650,1640)" to="(1070,1640)"/> <wire from="(560,930)" to="(860,930)"/> <wire from="(470,580)" to="(510,580)"/> <wire from="(790,1080)" to="(810,1080)"/> <wire from="(120,1220)" to="(790,1220)"/> <wire from="(780,2030)" to="(800,2030)"/> <wire from="(650,1470)" to="(650,1510)"/> <wire from="(560,690)" to="(580,690)"/> <wire from="(490,1900)" to="(510,1900)"/> <wire from="(860,1520)" to="(860,1560)"/> <wire from="(780,1500)" to="(780,1670)"/> <wire from="(740,230)" to="(760,230)"/> <wire from="(640,1080)" to="(670,1080)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(180,630)" to="(200,630)"/> <wire from="(260,500)" to="(260,680)"/> <wire from="(540,750)" to="(610,750)"/> <wire from="(1200,1220)" to="(1200,2280)"/> <wire from="(1010,2100)" to="(1030,2100)"/> <wire from="(380,1040)" to="(580,1040)"/> <wire from="(570,710)" to="(580,710)"/> <wire from="(580,1360)" to="(590,1360)"/> <wire from="(1200,1060)" to="(1200,1140)"/> <wire from="(740,160)" to="(800,160)"/> <wire from="(470,600)" to="(590,600)"/> <wire from="(460,610)" to="(460,630)"/> <wire from="(990,450)" to="(990,1050)"/> <wire from="(580,1530)" to="(580,1560)"/> <wire from="(460,270)" to="(1010,270)"/> <wire from="(780,1840)" to="(800,1840)"/> <wire from="(580,1900)" to="(860,1900)"/> <wire from="(890,1950)" to="(910,1950)"/> <wire from="(490,1390)" to="(510,1390)"/> <wire from="(630,1850)" to="(650,1850)"/> <wire from="(460,450)" to="(990,450)"/> <wire from="(180,70)" to="(780,70)"/> <wire from="(670,1790)" to="(760,1790)"/> <wire from="(420,1590)" to="(420,1760)"/> <wire from="(120,290)" to="(200,290)"/> <wire from="(490,380)" to="(490,560)"/> <wire from="(600,1710)" to="(600,1770)"/> <wire from="(670,1620)" to="(670,1680)"/> <wire from="(700,1010)" to="(700,1060)"/> <wire from="(650,1470)" to="(1050,1470)"/> <wire from="(670,1580)" to="(680,1580)"/> <wire from="(1090,1190)" to="(1090,1810)"/> <wire from="(1090,1190)" to="(1110,1190)"/> <wire from="(1200,1140)" to="(1220,1140)"/> <wire from="(1200,980)" to="(1220,980)"/> <wire from="(180,810)" to="(180,870)"/> <wire from="(1070,1110)" to="(1070,1640)"/> <wire from="(460,630)" to="(970,630)"/> <wire from="(660,330)" to="(660,400)"/> <wire from="(760,590)" to="(760,660)"/> <wire from="(650,1960)" to="(710,1960)"/> <wire from="(380,1040)" to="(380,1190)"/> <wire from="(460,810)" to="(950,810)"/> <wire from="(670,1680)" to="(710,1680)"/> <wire from="(640,150)" to="(640,240)"/> <wire from="(1010,970)" to="(1110,970)"/> <wire from="(620,1540)" to="(620,1570)"/> <wire from="(660,300)" to="(660,330)"/> <wire from="(660,300)" to="(760,300)"/> <wire from="(570,530)" to="(570,560)"/> <wire from="(220,660)" to="(220,680)"/> <wire from="(220,910)" to="(260,910)"/> <wire from="(780,1330)" to="(800,1330)"/> <wire from="(580,1390)" to="(860,1390)"/> <wire from="(890,2250)" to="(1230,2250)"/> <wire from="(560,150)" to="(580,150)"/> <wire from="(580,970)" to="(600,970)"/> <wire from="(860,340)" to="(860,380)"/> <wire from="(620,690)" to="(640,690)"/> <wire from="(630,1340)" to="(650,1340)"/> <wire from="(1050,1030)" to="(1050,1470)"/> <wire from="(420,1930)" to="(440,1930)"/> <wire from="(490,560)" to="(510,560)"/> <wire from="(460,1440)" to="(460,1610)"/> <wire from="(540,210)" to="(610,210)"/> <wire from="(460,1950)" to="(460,2190)"/> <wire from="(300,2250)" to="(890,2250)"/> <wire from="(560,930)" to="(560,1170)"/> <wire from="(580,1040)" to="(660,1040)"/> <wire from="(660,580)" to="(670,580)"/> <wire from="(700,1580)" to="(710,1580)"/> <wire from="(570,170)" to="(580,170)"/> <wire from="(780,320)" to="(780,500)"/> <wire from="(350,980)" to="(420,980)"/> <wire from="(1030,950)" to="(1030,1290)"/> <wire from="(560,900)" to="(930,900)"/> <wire from="(1180,1040)" to="(1220,1040)"/> <wire from="(1180,1200)" to="(1220,1200)"/> <wire from="(650,1770)" to="(710,1770)"/> <wire from="(1140,2090)" to="(1140,2220)"/> <wire from="(570,380)" to="(860,380)"/> <wire from="(870,2010)" to="(910,2010)"/> <wire from="(580,990)" to="(580,1020)"/> <wire from="(610,540)" to="(610,570)"/> <wire from="(790,1200)" to="(790,1220)"/> <wire from="(780,500)" to="(800,500)"/> <wire from="(240,630)" to="(460,630)"/> <wire from="(840,1520)" to="(860,1520)"/> <wire from="(120,1090)" to="(600,1090)"/> <wire from="(560,1510)" to="(560,1680)"/> <wire from="(700,1060)" to="(720,1060)"/> <wire from="(420,1420)" to="(440,1420)"/> <wire from="(420,410)" to="(420,590)"/> <wire from="(970,2020)" to="(970,2080)"/> <wire from="(590,360)" to="(590,420)"/> <wire from="(470,1940)" to="(600,1940)"/> <wire from="(460,2190)" to="(1180,2190)"/> <wire from="(630,1700)" to="(710,1700)"/> <wire from="(970,630)" to="(970,1130)"/> <wire from="(750,1760)" to="(760,1760)"/> <wire from="(690,580)" to="(700,580)"/> <wire from="(760,1060)" to="(810,1060)"/> <wire from="(750,1690)" to="(800,1690)"/> <wire from="(380,2050)" to="(700,2050)"/> <wire from="(120,110)" to="(490,110)"/> <wire from="(780,70)" to="(780,140)"/> <wire from="(660,330)" to="(700,330)"/> <wire from="(1100,2030)" to="(1160,2030)"/> <wire from="(950,1940)" to="(1180,1940)"/> <wire from="(220,850)" to="(260,850)"/> <wire from="(470,1580)" to="(510,1580)"/> <wire from="(1030,950)" to="(1110,950)"/> <wire from="(490,1730)" to="(490,1900)"/> <wire from="(580,1070)" to="(600,1070)"/> <wire from="(620,150)" to="(640,150)"/> <wire from="(740,590)" to="(760,590)"/> <wire from="(420,590)" to="(440,590)"/> <wire from="(560,1680)" to="(590,1680)"/> <wire from="(860,950)" to="(860,1070)"/> <wire from="(540,1740)" to="(620,1740)"/> <wire from="(470,1430)" to="(600,1430)"/> <wire from="(1120,1020)" to="(1120,1100)"/> <wire from="(640,420)" to="(700,420)"/> <wire from="(740,520)" to="(800,520)"/> <wire from="(650,1510)" to="(650,1600)"/> <wire from="(670,1850)" to="(670,1940)"/> <wire from="(760,1590)" to="(760,1620)"/> <wire from="(220,980)" to="(260,980)"/> <wire from="(220,500)" to="(260,500)"/> <wire from="(350,980)" to="(350,1260)"/> <wire from="(840,340)" to="(860,340)"/> <wire from="(380,1190)" to="(600,1190)"/> <wire from="(650,1640)" to="(650,1680)"/> <wire from="(860,1690)" to="(860,1730)"/> <wire from="(780,1670)" to="(780,1840)"/> <wire from="(700,1160)" to="(720,1160)"/> <wire from="(1180,1940)" to="(1180,2190)"/> <wire from="(950,1210)" to="(1110,1210)"/> <wire from="(840,1930)" to="(870,1930)"/> <wire from="(790,1140)" to="(790,1200)"/> <wire from="(120,650)" to="(200,650)"/> <wire from="(670,1020)" to="(670,1080)"/> <wire from="(180,270)" to="(180,450)"/> <wire from="(620,350)" to="(700,350)"/> <wire from="(560,330)" to="(560,510)"/> <wire from="(1140,1120)" to="(1160,1120)"/> <wire from="(1140,960)" to="(1160,960)"/> <wire from="(670,1940)" to="(680,1940)"/> <wire from="(580,1530)" to="(590,1530)"/> <comp lib="1" loc="(850,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="19"/> </comp> <comp lib="6" loc="(928,620)" name="Text"> <a name="text" val="VOL2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(101,178)" name="Text"> <a name="text" val="W4004 (SQR B)"/> </comp> <comp lib="0" loc="(120,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(540,1740)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(925,802)" name="Text"> <a name="text" val="VOL3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1070,863)" name="Text"> <a name="text" val="ENVDIS"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(440,1420)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1124,2022)" name="Text"> <a name="text" val="ESTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400(3) 7, F"/> </comp> <comp lib="0" loc="(1280,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(1260,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(893,1801)" name="Text"> <a name="text" val="ENV3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1121,2083)" name="Text"> <a name="text" val="ERES"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(440,410)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,1400)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(850,1190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp lib="1" loc="(750,1760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(570,973)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="4" loc="(840,1500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(891,1284)" name="Text"> <a name="text" val="ENV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(103,1052)" name="Text"> <a name="text" val="W4007 (SQR B)"/> </comp> <comp lib="1" loc="(740,160)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(640,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="1" loc="(1180,1120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,2280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CH IN"/> </comp> <comp lib="2" loc="(1140,1200)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1260,1130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400(0) 4, C"/> </comp> <comp lib="6" loc="(873,1142)" name="Text"> <a name="text" val="RLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(620,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(630,1340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1260,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(840,1940)" name="D-latch"/> <comp lib="6" loc="(102,195)" name="Text"> <a name="text" val="W400C (NOISE)"/> </comp> <comp lib="4" loc="(240,630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(1140,1040)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(840,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(817,1974)" name="Text"> <a name="text" val="DL7"/> </comp> <comp lib="1" loc="(740,340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(640,980)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp lib="4" loc="(840,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="6" loc="(892,1463)" name="Text"> <a name="text" val="ENV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1140,1120)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1180,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,1860)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,1420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(440,590)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(840,2040)" name="D-latch"/> <comp lib="4" loc="(840,1840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(640,1080)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(540,570)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,1350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1180,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(840,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(760,1070)" name="D-latch"/> <comp lib="2" loc="(440,1930)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1100,2030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="4" loc="(620,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(240,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(999,2122)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="1" loc="(700,1940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(700,1410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(405,1036)" name="Text"> <a name="text" val="RELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(873,1183)" name="Text"> <a name="text" val="RSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(613,1034)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="6" loc="(739,1206)" name="Text"> <a name="text" val="DL10"/> </comp> <comp lib="4" loc="(840,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(740,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(997,2040)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(690,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(740,520)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(594,97)" name="Text"> <a name="text" val="ENVELOPE DECAY DOWN COUNTER"/> </comp> <comp lib="6" loc="(571,1105)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(740,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1010,2100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(333,942)" name="Text"> <a name="text" val="#SQA(B)(NOISE)/LC"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(931,2096)" name="Text"> <a name="text" val="RLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(840,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1260,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(732,2302)" name="Text"> <a name="text" val="The signal names are shown for the noise channel. For square channels A and B, the designation changes instead of N to A or B, respectively"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(103,1034)" name="Text"> <a name="text" val="W4003 (SQR A)"/> </comp> <comp lib="6" loc="(738,1106)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="4" loc="(630,1850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1280,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="6" loc="(103,1070)" name="Text"> <a name="text" val="W400F (NOISE)"/> </comp> <comp lib="4" loc="(630,1680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(240,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1910)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(740,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="1" loc="(740,700)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(440,1590)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,1590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(99,160)" name="Text"> <a name="text" val="W4000(SQR A)"/> </comp> <comp lib="2" loc="(1140,960)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(950,1940)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="1" loc="(690,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1280,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(440,230)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(760,1170)" name="D-latch"/> <comp lib="1" loc="(750,1520)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,1690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(700,1580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(950,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(965,1935)" name="Text"> <a name="text" val="EIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1280,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="V2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(300,866)" name="Text"> <a name="text" val="ENVDIS"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(440,770)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(893,1634)" name="Text"> <a name="text" val="ENV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(682,1073)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="1" loc="(690,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(240,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(850,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="0" loc="(120,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="6" loc="(679,985)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(820,2074)" name="Text"> <a name="text" val="DL9"/> </comp> <comp lib="0" loc="(660,130)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(630,1510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(931,439)" name="Text"> <a name="text" val="VOL1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(931,260)" name="Text"> <a name="text" val="VOL0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(670,1320)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(1100,2090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(626,1281)" name="Text"> <a name="text" val="ENVELOPE DOWN COUNTER"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(540,750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(620,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(840,1670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(700,1750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,1950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(690,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1230,2250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#CH/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,1570)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(440,1760)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(180,160)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1180,960)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(620,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1010,2020)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="SQUARE_CHANNEL_0"> <a name="circuit" val="SQUARE_CHANNEL_0"/> <a name="clabel" val="SQUARE CHANNEL 0"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M82,41 Q86,51 90,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#dd42ff" height="421" stroke="#000000" stroke-width="2" width="660" x="50" y="39"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="224">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="244">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="264">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="284">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="304">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="324">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="344">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="64">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="384">NOSQA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="404">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="424">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="444">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">W4000</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="135">W4001</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="154">W4002</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="174">W4003</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="184">SQA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="205">SQA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="224">SQA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="244">SQA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="284">#SQA/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="364">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="46" y="56"/> <circ-port height="8" pin="100,80" width="8" x="46" y="76"/> <circ-port height="8" pin="100,150" width="8" x="46" y="106"/> <circ-port height="8" pin="100,900" width="8" x="46" y="126"/> <circ-port height="8" pin="100,190" width="8" x="46" y="146"/> <circ-port height="8" pin="100,120" width="8" x="46" y="166"/> <circ-port height="8" pin="100,230" width="8" x="46" y="196"/> <circ-port height="8" pin="100,260" width="8" x="46" y="216"/> <circ-port height="8" pin="100,290" width="8" x="46" y="236"/> <circ-port height="8" pin="100,320" width="8" x="46" y="256"/> <circ-port height="8" pin="100,350" width="8" x="46" y="276"/> <circ-port height="8" pin="100,380" width="8" x="46" y="296"/> <circ-port height="8" pin="100,410" width="8" x="46" y="316"/> <circ-port height="8" pin="100,440" width="8" x="46" y="336"/> <circ-port height="8" pin="100,1230" width="8" x="46" y="376"/> <circ-port height="8" pin="100,1090" width="8" x="46" y="396"/> <circ-port height="8" pin="100,1270" width="8" x="46" y="416"/> <circ-port height="8" pin="100,1060" width="8" x="46" y="436"/> <circ-port height="10" pin="1230,1000" width="10" x="705" y="175"/> <circ-port height="10" pin="1230,1060" width="10" x="705" y="195"/> <circ-port height="10" pin="1230,1120" width="10" x="705" y="215"/> <circ-port height="10" pin="1230,1180" width="10" x="705" y="235"/> <circ-port height="10" pin="1230,1230" width="10" x="705" y="275"/> <circ-port height="8" pin="100,490" width="8" x="46" y="356"/> <circ-anchor facing="east" height="6" width="6" x="207" y="37"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(520,680)" to="(520,690)"/> <wire from="(690,530)" to="(740,530)"/> <wire from="(890,1030)" to="(1010,1030)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(490,490)" to="(540,490)"/> <wire from="(950,780)" to="(1010,780)"/> <wire from="(650,840)" to="(650,910)"/> <wire from="(190,990)" to="(240,990)"/> <wire from="(540,800)" to="(540,1190)"/> <wire from="(910,840)" to="(1230,840)"/> <wire from="(130,290)" to="(130,320)"/> <wire from="(190,190)" to="(190,220)"/> <wire from="(620,90)" to="(920,90)"/> <wire from="(190,1250)" to="(930,1250)"/> <wire from="(850,480)" to="(870,480)"/> <wire from="(850,560)" to="(870,560)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(990,140)" to="(1010,140)"/> <wire from="(990,380)" to="(1010,380)"/> <wire from="(990,1100)" to="(1010,1100)"/> <wire from="(720,190)" to="(740,190)"/> <wire from="(720,270)" to="(740,270)"/> <wire from="(100,190)" to="(190,190)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(360,550)" to="(380,550)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(410,920)" to="(430,920)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(920,130)" to="(920,360)"/> <wire from="(260,1190)" to="(540,1190)"/> <wire from="(980,760)" to="(1010,760)"/> <wire from="(130,320)" to="(150,320)"/> <wire from="(100,1090)" to="(120,1090)"/> <wire from="(1000,720)" to="(1010,720)"/> <wire from="(310,810)" to="(440,810)"/> <wire from="(310,420)" to="(380,420)"/> <wire from="(1210,1000)" to="(1230,1000)"/> <wire from="(690,580)" to="(740,580)"/> <wire from="(150,230)" to="(150,300)"/> <wire from="(690,500)" to="(740,500)"/> <wire from="(620,90)" to="(620,230)"/> <wire from="(490,540)" to="(540,540)"/> <wire from="(100,230)" to="(150,230)"/> <wire from="(520,90)" to="(520,110)"/> <wire from="(310,660)" to="(310,810)"/> <wire from="(750,880)" to="(750,910)"/> <wire from="(570,940)" to="(670,940)"/> <wire from="(220,1230)" to="(650,1230)"/> <wire from="(480,700)" to="(480,920)"/> <wire from="(570,820)" to="(1190,820)"/> <wire from="(850,530)" to="(870,530)"/> <wire from="(990,350)" to="(1010,350)"/> <wire from="(990,110)" to="(1010,110)"/> <wire from="(990,1150)" to="(1010,1150)"/> <wire from="(830,910)" to="(830,1020)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(920,90)" to="(920,130)"/> <wire from="(450,920)" to="(480,920)"/> <wire from="(240,1210)" to="(910,1210)"/> <wire from="(720,240)" to="(740,240)"/> <wire from="(750,910)" to="(770,910)"/> <wire from="(260,980)" to="(280,980)"/> <wire from="(360,520)" to="(380,520)"/> <wire from="(360,360)" to="(380,360)"/> <wire from="(180,70)" to="(180,110)"/> <wire from="(490,250)" to="(510,250)"/> <wire from="(180,110)" to="(520,110)"/> <wire from="(1190,760)" to="(1190,820)"/> <wire from="(140,310)" to="(150,310)"/> <wire from="(440,810)" to="(440,860)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1190,520)" to="(1190,560)"/> <wire from="(540,800)" to="(870,800)"/> <wire from="(690,550)" to="(740,550)"/> <wire from="(980,760)" to="(980,770)"/> <wire from="(490,510)" to="(540,510)"/> <wire from="(430,930)" to="(430,940)"/> <wire from="(100,440)" to="(150,440)"/> <wire from="(650,950)" to="(650,1230)"/> <wire from="(260,1160)" to="(260,1190)"/> <wire from="(850,580)" to="(870,580)"/> <wire from="(850,500)" to="(870,500)"/> <wire from="(120,1090)" to="(280,1090)"/> <wire from="(100,380)" to="(130,380)"/> <wire from="(990,400)" to="(1010,400)"/> <wire from="(990,160)" to="(1010,160)"/> <wire from="(990,320)" to="(1010,320)"/> <wire from="(990,1120)" to="(1010,1120)"/> <wire from="(720,210)" to="(740,210)"/> <wire from="(970,1230)" to="(970,1270)"/> <wire from="(260,950)" to="(280,950)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,490)" to="(380,490)"/> <wire from="(360,330)" to="(380,330)"/> <wire from="(410,940)" to="(430,940)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(100,150)" to="(120,150)"/> <wire from="(140,360)" to="(150,360)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(550,90)" to="(550,140)"/> <wire from="(910,840)" to="(910,1210)"/> <wire from="(1210,1180)" to="(1230,1180)"/> <wire from="(190,220)" to="(380,220)"/> <wire from="(240,1140)" to="(240,1210)"/> <wire from="(690,520)" to="(740,520)"/> <wire from="(410,880)" to="(460,880)"/> <wire from="(490,480)" to="(540,480)"/> <wire from="(490,560)" to="(540,560)"/> <wire from="(430,900)" to="(430,910)"/> <wire from="(100,260)" to="(140,260)"/> <wire from="(810,910)" to="(830,910)"/> <wire from="(360,620)" to="(360,720)"/> <wire from="(460,140)" to="(550,140)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(990,370)" to="(1010,370)"/> <wire from="(990,130)" to="(1010,130)"/> <wire from="(1090,130)" to="(1230,130)"/> <wire from="(520,700)" to="(540,700)"/> <wire from="(720,180)" to="(740,180)"/> <wire from="(650,910)" to="(670,910)"/> <wire from="(720,260)" to="(740,260)"/> <wire from="(350,200)" to="(380,200)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(260,1160)" to="(280,1160)"/> <wire from="(920,680)" to="(1010,680)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(190,340)" to="(340,340)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(100,40)" to="(120,40)"/> <wire from="(220,1120)" to="(220,1230)"/> <wire from="(270,860)" to="(280,860)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(620,230)" to="(700,230)"/> <wire from="(1000,1190)" to="(1010,1190)"/> <wire from="(1000,230)" to="(1010,230)"/> <wire from="(1210,1230)" to="(1230,1230)"/> <wire from="(690,490)" to="(740,490)"/> <wire from="(690,570)" to="(740,570)"/> <wire from="(190,990)" to="(190,1250)"/> <wire from="(490,530)" to="(540,530)"/> <wire from="(1170,500)" to="(1210,500)"/> <wire from="(120,320)" to="(120,330)"/> <wire from="(570,940)" to="(570,1160)"/> <wire from="(360,720)" to="(460,720)"/> <wire from="(850,520)" to="(870,520)"/> <wire from="(120,340)" to="(150,340)"/> <wire from="(990,340)" to="(1010,340)"/> <wire from="(990,740)" to="(1010,740)"/> <wire from="(990,100)" to="(1010,100)"/> <wire from="(990,1140)" to="(1010,1140)"/> <wire from="(410,1160)" to="(570,1160)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(460,720)" to="(460,880)"/> <wire from="(730,880)" to="(750,880)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(360,510)" to="(380,510)"/> <wire from="(360,350)" to="(380,350)"/> <wire from="(490,240)" to="(510,240)"/> <wire from="(950,770)" to="(980,770)"/> <wire from="(140,260)" to="(140,310)"/> <wire from="(890,590)" to="(890,780)"/> <wire from="(650,840)" to="(910,840)"/> <wire from="(1170,520)" to="(1190,520)"/> <wire from="(310,140)" to="(380,140)"/> <wire from="(1170,760)" to="(1190,760)"/> <wire from="(1210,1120)" to="(1230,1120)"/> <wire from="(920,130)" to="(970,130)"/> <wire from="(690,540)" to="(740,540)"/> <wire from="(490,580)" to="(540,580)"/> <wire from="(490,500)" to="(540,500)"/> <wire from="(190,340)" to="(190,990)"/> <wire from="(1230,130)" to="(1230,840)"/> <wire from="(970,1230)" to="(1010,1230)"/> <wire from="(240,1140)" to="(280,1140)"/> <wire from="(120,1090)" to="(120,1120)"/> <wire from="(940,580)" to="(940,660)"/> <wire from="(850,490)" to="(870,490)"/> <wire from="(850,570)" to="(870,570)"/> <wire from="(100,290)" to="(130,290)"/> <wire from="(990,1110)" to="(1010,1110)"/> <wire from="(990,390)" to="(1010,390)"/> <wire from="(990,150)" to="(1010,150)"/> <wire from="(990,310)" to="(1010,310)"/> <wire from="(520,720)" to="(540,720)"/> <wire from="(720,200)" to="(740,200)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(260,1020)" to="(280,1020)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(360,320)" to="(380,320)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(570,920)" to="(600,920)"/> <wire from="(530,230)" to="(620,230)"/> <wire from="(180,70)" to="(520,70)"/> <wire from="(120,1120)" to="(140,1120)"/> <wire from="(370,180)" to="(380,180)"/> <wire from="(940,660)" to="(1010,660)"/> <wire from="(920,560)" to="(920,680)"/> <wire from="(930,1130)" to="(930,1250)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(870,620)" to="(870,800)"/> <wire from="(1210,500)" to="(1210,580)"/> <wire from="(690,510)" to="(740,510)"/> <wire from="(620,920)" to="(670,920)"/> <wire from="(490,550)" to="(540,550)"/> <wire from="(120,340)" to="(120,350)"/> <wire from="(810,1040)" to="(850,1040)"/> <wire from="(100,1270)" to="(970,1270)"/> <wire from="(100,410)" to="(140,410)"/> <wire from="(130,350)" to="(130,380)"/> <wire from="(290,200)" to="(330,200)"/> <wire from="(310,660)" to="(540,660)"/> <wire from="(340,780)" to="(890,780)"/> <wire from="(850,540)" to="(870,540)"/> <wire from="(850,620)" to="(870,620)"/> <wire from="(990,360)" to="(1010,360)"/> <wire from="(990,120)" to="(1010,120)"/> <wire from="(720,250)" to="(740,250)"/> <wire from="(260,990)" to="(280,990)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,370)" to="(380,370)"/> <wire from="(410,900)" to="(430,900)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(570,820)" to="(570,920)"/> <wire from="(170,340)" to="(190,340)"/> <wire from="(140,360)" to="(140,410)"/> <wire from="(1000,620)" to="(1010,620)"/> <wire from="(1000,700)" to="(1010,700)"/> <wire from="(940,580)" to="(1210,580)"/> <wire from="(920,560)" to="(1190,560)"/> <wire from="(1210,1060)" to="(1230,1060)"/> <wire from="(520,710)" to="(520,720)"/> <wire from="(690,560)" to="(740,560)"/> <wire from="(690,480)" to="(740,480)"/> <wire from="(150,370)" to="(150,440)"/> <wire from="(220,1120)" to="(280,1120)"/> <wire from="(490,520)" to="(540,520)"/> <wire from="(100,1230)" to="(220,1230)"/> <wire from="(550,140)" to="(740,140)"/> <wire from="(100,900)" to="(280,900)"/> <wire from="(100,1060)" to="(280,1060)"/> <wire from="(520,70)" to="(520,90)"/> <wire from="(730,930)" to="(770,930)"/> <wire from="(930,1130)" to="(970,1130)"/> <wire from="(930,790)" to="(930,1130)"/> <wire from="(310,140)" to="(310,420)"/> <wire from="(850,510)" to="(870,510)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(990,1130)" to="(1010,1130)"/> <wire from="(990,410)" to="(1010,410)"/> <wire from="(990,90)" to="(1010,90)"/> <wire from="(990,170)" to="(1010,170)"/> <wire from="(990,330)" to="(1010,330)"/> <wire from="(410,860)" to="(440,860)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(650,950)" to="(670,950)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(260,960)" to="(280,960)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(400,140)" to="(420,140)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(480,700)" to="(500,700)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(130,350)" to="(150,350)"/> <wire from="(100,490)" to="(110,490)"/> <wire from="(1000,990)" to="(1010,990)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(340,590)" to="(340,780)"/> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1230,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1090,130)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="0" loc="(270,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp loc="(340,840)" name="SQUARE_SWEEP_CONTROL"/> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp loc="(1100,600)" name="SQUARE_DUTY_DOWN_COUNTER"/> <comp lib="0" loc="(1230,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQ2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="6" loc="(1115,123)" name="Text"> <a name="text" val="SW_UVF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1000,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(1000,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(1000,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(970,1130)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(170,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1000,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(460,140)" name="Constant"/> <comp lib="1" loc="(890,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4001"/> </comp> <comp lib="6" loc="(452,126)" name="Text"> <a name="text" val="!!!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(450,920)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(500,700)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(370,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(790,120)" name="SQUARE_ADDER"/> <comp lib="0" loc="(890,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1230,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(400,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="6" loc="(349,96)" name="Text"> <a name="text" val="Connect to VCC for square0, connect to inverter for square1"/> </comp> <comp lib="0" loc="(120,150)" name="Tunnel"> <a name="label" val="W4000"/> </comp> <comp lib="0" loc="(1230,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#SQA/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,1120)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(240,990)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(430,160)" name="SQUARE_REGISTER"/> <comp lib="0" loc="(730,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(730,930)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4000"/> </comp> <comp loc="(580,450)" name="SQUARE_BARREL_SHIFTER"/> <comp lib="0" loc="(340,590)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp loc="(810,920)" name="D-latch"/> <comp lib="0" loc="(970,360)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1000,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4002"/> </comp> <comp lib="1" loc="(620,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(370,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(700,230)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1000,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(930,790)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(1000,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(1060,970)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(110,490)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(990,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1230,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(610,905)" name="Text"> <a name="text" val="INV5"/> </comp> <comp lib="0" loc="(1000,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(350,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1070,190)" name="SQUARE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(1000,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(340,340)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQA"/> </comp> <comp lib="0" loc="(530,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(120,120)" name="Tunnel"> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(810,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(970,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="2"/> <a name="bit5" val="3"/> <a name="bit6" val="4"/> <a name="bit7" val="5"/> <a name="bit8" val="6"/> <a name="bit9" val="7"/> <a name="bit10" val="8"/> </comp> <comp lib="0" loc="(290,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> </circuit> <circuit name="SQUARE_CHANNEL_1"> <a name="circuit" val="SQUARE_CHANNEL_1"/> <a name="clabel" val="SQUARE CHANNEL 1"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M81,51 Q85,61 89,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fd2cff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="683" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="75">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="214">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="234">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="254">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="274">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="294">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="314">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="334">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="354">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="681" y="394">NOSQB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="689" y="414">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="434">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="454">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="124">W4004</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="145">W4005</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="164">W4006</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="184">W4007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="194">SQB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="215">SQB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="234">SQB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="255">SQB3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="294">#SQB/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="686" y="375">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="706" y="66"/> <circ-port height="8" pin="100,80" width="8" x="706" y="86"/> <circ-port height="8" pin="100,110" width="8" x="706" y="116"/> <circ-port height="8" pin="100,900" width="8" x="706" y="136"/> <circ-port height="8" pin="100,190" width="8" x="706" y="156"/> <circ-port height="8" pin="100,150" width="8" x="706" y="176"/> <circ-port height="8" pin="100,230" width="8" x="706" y="206"/> <circ-port height="8" pin="100,260" width="8" x="706" y="226"/> <circ-port height="8" pin="100,290" width="8" x="706" y="246"/> <circ-port height="8" pin="100,320" width="8" x="706" y="266"/> <circ-port height="8" pin="100,350" width="8" x="706" y="286"/> <circ-port height="8" pin="100,380" width="8" x="706" y="306"/> <circ-port height="8" pin="100,410" width="8" x="706" y="326"/> <circ-port height="8" pin="100,440" width="8" x="706" y="346"/> <circ-port height="8" pin="100,1230" width="8" x="706" y="386"/> <circ-port height="8" pin="100,1090" width="8" x="706" y="406"/> <circ-port height="8" pin="100,1270" width="8" x="706" y="426"/> <circ-port height="8" pin="100,1060" width="8" x="706" y="446"/> <circ-port height="10" pin="1230,1000" width="10" x="45" y="185"/> <circ-port height="10" pin="1230,1060" width="10" x="45" y="205"/> <circ-port height="10" pin="1230,1120" width="10" x="45" y="225"/> <circ-port height="10" pin="1230,1180" width="10" x="45" y="245"/> <circ-port height="10" pin="1230,1230" width="10" x="45" y="285"/> <circ-port height="8" pin="100,490" width="8" x="706" y="366"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(520,680)" to="(520,690)"/> <wire from="(690,530)" to="(740,530)"/> <wire from="(890,1030)" to="(1010,1030)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(490,490)" to="(540,490)"/> <wire from="(950,780)" to="(1010,780)"/> <wire from="(650,840)" to="(650,910)"/> <wire from="(190,990)" to="(240,990)"/> <wire from="(540,800)" to="(540,1190)"/> <wire from="(910,840)" to="(1230,840)"/> <wire from="(130,290)" to="(130,320)"/> <wire from="(190,190)" to="(190,220)"/> <wire from="(620,90)" to="(920,90)"/> <wire from="(190,1250)" to="(930,1250)"/> <wire from="(850,560)" to="(870,560)"/> <wire from="(850,480)" to="(870,480)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(990,380)" to="(1010,380)"/> <wire from="(990,140)" to="(1010,140)"/> <wire from="(990,1100)" to="(1010,1100)"/> <wire from="(720,190)" to="(740,190)"/> <wire from="(720,270)" to="(740,270)"/> <wire from="(100,190)" to="(190,190)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(360,550)" to="(380,550)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(410,920)" to="(430,920)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(920,130)" to="(920,360)"/> <wire from="(260,1190)" to="(540,1190)"/> <wire from="(980,760)" to="(1010,760)"/> <wire from="(130,320)" to="(150,320)"/> <wire from="(100,1090)" to="(120,1090)"/> <wire from="(1000,720)" to="(1010,720)"/> <wire from="(310,810)" to="(440,810)"/> <wire from="(310,420)" to="(380,420)"/> <wire from="(1210,1000)" to="(1230,1000)"/> <wire from="(690,580)" to="(740,580)"/> <wire from="(150,230)" to="(150,300)"/> <wire from="(690,500)" to="(740,500)"/> <wire from="(620,90)" to="(620,230)"/> <wire from="(490,540)" to="(540,540)"/> <wire from="(100,230)" to="(150,230)"/> <wire from="(310,660)" to="(310,810)"/> <wire from="(520,90)" to="(520,110)"/> <wire from="(570,940)" to="(670,940)"/> <wire from="(750,880)" to="(750,910)"/> <wire from="(220,1230)" to="(650,1230)"/> <wire from="(480,700)" to="(480,920)"/> <wire from="(570,820)" to="(1190,820)"/> <wire from="(850,530)" to="(870,530)"/> <wire from="(990,350)" to="(1010,350)"/> <wire from="(990,110)" to="(1010,110)"/> <wire from="(990,1150)" to="(1010,1150)"/> <wire from="(830,910)" to="(830,1020)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(920,90)" to="(920,130)"/> <wire from="(450,920)" to="(480,920)"/> <wire from="(310,140)" to="(340,140)"/> <wire from="(240,1210)" to="(910,1210)"/> <wire from="(720,240)" to="(740,240)"/> <wire from="(750,910)" to="(770,910)"/> <wire from="(260,980)" to="(280,980)"/> <wire from="(360,520)" to="(380,520)"/> <wire from="(360,360)" to="(380,360)"/> <wire from="(180,70)" to="(180,110)"/> <wire from="(490,250)" to="(510,250)"/> <wire from="(180,110)" to="(520,110)"/> <wire from="(1190,760)" to="(1190,820)"/> <wire from="(140,310)" to="(150,310)"/> <wire from="(440,810)" to="(440,860)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1190,520)" to="(1190,560)"/> <wire from="(540,800)" to="(870,800)"/> <wire from="(690,550)" to="(740,550)"/> <wire from="(980,760)" to="(980,770)"/> <wire from="(490,510)" to="(540,510)"/> <wire from="(430,930)" to="(430,940)"/> <wire from="(100,440)" to="(150,440)"/> <wire from="(650,950)" to="(650,1230)"/> <wire from="(260,1160)" to="(260,1190)"/> <wire from="(850,500)" to="(870,500)"/> <wire from="(850,580)" to="(870,580)"/> <wire from="(120,1090)" to="(280,1090)"/> <wire from="(100,380)" to="(130,380)"/> <wire from="(990,400)" to="(1010,400)"/> <wire from="(990,160)" to="(1010,160)"/> <wire from="(990,320)" to="(1010,320)"/> <wire from="(990,1120)" to="(1010,1120)"/> <wire from="(720,210)" to="(740,210)"/> <wire from="(970,1230)" to="(970,1270)"/> <wire from="(260,950)" to="(280,950)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,490)" to="(380,490)"/> <wire from="(360,330)" to="(380,330)"/> <wire from="(410,940)" to="(430,940)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(100,150)" to="(120,150)"/> <wire from="(140,360)" to="(150,360)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(550,90)" to="(550,140)"/> <wire from="(910,840)" to="(910,1210)"/> <wire from="(1210,1180)" to="(1230,1180)"/> <wire from="(190,220)" to="(380,220)"/> <wire from="(240,1140)" to="(240,1210)"/> <wire from="(690,520)" to="(740,520)"/> <wire from="(410,880)" to="(460,880)"/> <wire from="(490,480)" to="(540,480)"/> <wire from="(490,560)" to="(540,560)"/> <wire from="(430,900)" to="(430,910)"/> <wire from="(100,260)" to="(140,260)"/> <wire from="(810,910)" to="(830,910)"/> <wire from="(360,620)" to="(360,720)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(990,370)" to="(1010,370)"/> <wire from="(990,130)" to="(1010,130)"/> <wire from="(1090,130)" to="(1230,130)"/> <wire from="(520,700)" to="(540,700)"/> <wire from="(720,180)" to="(740,180)"/> <wire from="(650,910)" to="(670,910)"/> <wire from="(720,260)" to="(740,260)"/> <wire from="(350,200)" to="(380,200)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(260,1160)" to="(280,1160)"/> <wire from="(920,680)" to="(1010,680)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(190,340)" to="(340,340)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(100,40)" to="(120,40)"/> <wire from="(220,1120)" to="(220,1230)"/> <wire from="(270,860)" to="(280,860)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(620,230)" to="(700,230)"/> <wire from="(1000,1190)" to="(1010,1190)"/> <wire from="(1000,230)" to="(1010,230)"/> <wire from="(1210,1230)" to="(1230,1230)"/> <wire from="(690,490)" to="(740,490)"/> <wire from="(690,570)" to="(740,570)"/> <wire from="(190,990)" to="(190,1250)"/> <wire from="(490,530)" to="(540,530)"/> <wire from="(1170,500)" to="(1210,500)"/> <wire from="(120,320)" to="(120,330)"/> <wire from="(570,940)" to="(570,1160)"/> <wire from="(360,720)" to="(460,720)"/> <wire from="(850,520)" to="(870,520)"/> <wire from="(120,340)" to="(150,340)"/> <wire from="(990,340)" to="(1010,340)"/> <wire from="(990,740)" to="(1010,740)"/> <wire from="(990,100)" to="(1010,100)"/> <wire from="(990,1140)" to="(1010,1140)"/> <wire from="(410,1160)" to="(570,1160)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(460,720)" to="(460,880)"/> <wire from="(730,880)" to="(750,880)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(360,510)" to="(380,510)"/> <wire from="(360,350)" to="(380,350)"/> <wire from="(490,240)" to="(510,240)"/> <wire from="(950,770)" to="(980,770)"/> <wire from="(140,260)" to="(140,310)"/> <wire from="(890,590)" to="(890,780)"/> <wire from="(650,840)" to="(910,840)"/> <wire from="(1170,520)" to="(1190,520)"/> <wire from="(1170,760)" to="(1190,760)"/> <wire from="(1210,1120)" to="(1230,1120)"/> <wire from="(920,130)" to="(970,130)"/> <wire from="(690,540)" to="(740,540)"/> <wire from="(490,580)" to="(540,580)"/> <wire from="(490,500)" to="(540,500)"/> <wire from="(190,340)" to="(190,990)"/> <wire from="(1230,130)" to="(1230,840)"/> <wire from="(970,1230)" to="(1010,1230)"/> <wire from="(240,1140)" to="(280,1140)"/> <wire from="(120,1090)" to="(120,1120)"/> <wire from="(940,580)" to="(940,660)"/> <wire from="(850,490)" to="(870,490)"/> <wire from="(850,570)" to="(870,570)"/> <wire from="(100,290)" to="(130,290)"/> <wire from="(990,1110)" to="(1010,1110)"/> <wire from="(990,390)" to="(1010,390)"/> <wire from="(990,150)" to="(1010,150)"/> <wire from="(990,310)" to="(1010,310)"/> <wire from="(520,720)" to="(540,720)"/> <wire from="(720,200)" to="(740,200)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(260,1020)" to="(280,1020)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(360,320)" to="(380,320)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(570,920)" to="(600,920)"/> <wire from="(530,230)" to="(620,230)"/> <wire from="(180,70)" to="(520,70)"/> <wire from="(120,1120)" to="(140,1120)"/> <wire from="(370,180)" to="(380,180)"/> <wire from="(940,660)" to="(1010,660)"/> <wire from="(920,560)" to="(920,680)"/> <wire from="(930,1130)" to="(930,1250)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(870,620)" to="(870,800)"/> <wire from="(1210,500)" to="(1210,580)"/> <wire from="(690,510)" to="(740,510)"/> <wire from="(360,140)" to="(550,140)"/> <wire from="(620,920)" to="(670,920)"/> <wire from="(490,550)" to="(540,550)"/> <wire from="(120,340)" to="(120,350)"/> <wire from="(810,1040)" to="(850,1040)"/> <wire from="(100,1270)" to="(970,1270)"/> <wire from="(100,410)" to="(140,410)"/> <wire from="(130,350)" to="(130,380)"/> <wire from="(290,200)" to="(330,200)"/> <wire from="(310,660)" to="(540,660)"/> <wire from="(340,780)" to="(890,780)"/> <wire from="(850,540)" to="(870,540)"/> <wire from="(850,620)" to="(870,620)"/> <wire from="(990,360)" to="(1010,360)"/> <wire from="(990,120)" to="(1010,120)"/> <wire from="(720,250)" to="(740,250)"/> <wire from="(260,990)" to="(280,990)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,370)" to="(380,370)"/> <wire from="(410,900)" to="(430,900)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(100,110)" to="(120,110)"/> <wire from="(570,820)" to="(570,920)"/> <wire from="(170,340)" to="(190,340)"/> <wire from="(140,360)" to="(140,410)"/> <wire from="(1000,620)" to="(1010,620)"/> <wire from="(1000,700)" to="(1010,700)"/> <wire from="(940,580)" to="(1210,580)"/> <wire from="(920,560)" to="(1190,560)"/> <wire from="(1210,1060)" to="(1230,1060)"/> <wire from="(520,710)" to="(520,720)"/> <wire from="(690,560)" to="(740,560)"/> <wire from="(690,480)" to="(740,480)"/> <wire from="(150,370)" to="(150,440)"/> <wire from="(220,1120)" to="(280,1120)"/> <wire from="(490,520)" to="(540,520)"/> <wire from="(100,1230)" to="(220,1230)"/> <wire from="(550,140)" to="(740,140)"/> <wire from="(100,900)" to="(280,900)"/> <wire from="(100,1060)" to="(280,1060)"/> <wire from="(520,70)" to="(520,90)"/> <wire from="(730,930)" to="(770,930)"/> <wire from="(930,1130)" to="(970,1130)"/> <wire from="(930,790)" to="(930,1130)"/> <wire from="(310,140)" to="(310,420)"/> <wire from="(850,510)" to="(870,510)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(990,1130)" to="(1010,1130)"/> <wire from="(990,90)" to="(1010,90)"/> <wire from="(990,170)" to="(1010,170)"/> <wire from="(990,410)" to="(1010,410)"/> <wire from="(990,330)" to="(1010,330)"/> <wire from="(410,860)" to="(440,860)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(650,950)" to="(670,950)"/> <wire from="(720,220)" to="(740,220)"/> <wire from="(260,960)" to="(280,960)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(480,700)" to="(500,700)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(130,350)" to="(150,350)"/> <wire from="(100,490)" to="(110,490)"/> <wire from="(1000,990)" to="(1010,990)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(340,590)" to="(340,780)"/> <comp lib="0" loc="(530,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(810,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> </comp> <comp loc="(1070,190)" name="SQUARE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(240,990)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(730,930)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(1230,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#SQB/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(970,360)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp loc="(430,160)" name="SQUARE_REGISTER"/> <comp lib="0" loc="(1000,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(700,230)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQB"/> </comp> <comp lib="0" loc="(1230,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(349,96)" name="Text"> <a name="text" val="Connect to VCC for square0, connect to inverter for square1"/> </comp> <comp lib="0" loc="(120,150)" name="Tunnel"> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(100,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1230,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1000,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp loc="(1060,970)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(370,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(450,920)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4004"/> </comp> <comp loc="(1100,600)" name="SQUARE_DUTY_DOWN_COUNTER"/> <comp lib="0" loc="(1230,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1000,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(1000,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(340,590)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(340,340)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(370,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4005"/> </comp> <comp lib="0" loc="(120,110)" name="Tunnel"> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(1000,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1000,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(350,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1000,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(110,490)" name="Tunnel"> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4006"/> </comp> <comp lib="0" loc="(1230,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(290,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(360,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1000,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(500,700)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(970,1130)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="6" loc="(348,128)" name="Text"> <a name="text" val="!!!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="2"/> <a name="bit5" val="3"/> <a name="bit6" val="4"/> <a name="bit7" val="5"/> <a name="bit8" val="6"/> <a name="bit9" val="7"/> <a name="bit10" val="8"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(340,840)" name="SQUARE_SWEEP_CONTROL"/> <comp loc="(580,450)" name="SQUARE_BARREL_SHIFTER"/> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(607,906)" name="Text"> <a name="text" val="INV5"/> </comp> <comp lib="1" loc="(890,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(810,920)" name="D-latch"/> <comp lib="0" loc="(270,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(1090,130)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(930,790)" name="Splitter"> <a name="incoming" val="8"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="0" loc="(990,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="6" loc="(1115,123)" name="Text"> <a name="text" val="SW_UVF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(140,1120)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp loc="(790,120)" name="SQUARE_ADDER"/> <comp lib="0" loc="(730,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(1000,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4004"/> </comp> <comp lib="0" loc="(890,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="right"/> </comp> </circuit> <circuit name="SQUARE_REGISTER"> <a name="circuit" val="SQUARE_REGISTER"/> <a name="clabel" val="SQUARE REGISTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M222,121 Q227,131 231,121" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#8bff3c" height="480" stroke="#000000" stroke-width="2" width="110" x="150" y="120"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="145">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="243" y="244">F10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="190" y="584">DO_SWEEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="177" y="144">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="177" y="164">ACLK3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="185">W4002(6)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="183" y="204">W4003(7)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="265">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="334">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="384">D/I</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="444">MU0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="545">MU10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="175" y="444">/SUM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="544">/SUM10</text> <circ-port height="8" pin="100,80" width="8" x="146" y="136"/> <circ-port height="8" pin="100,40" width="8" x="146" y="156"/> <circ-port height="8" pin="100,120" width="8" x="146" y="176"/> <circ-port height="8" pin="100,1740" width="8" x="146" y="196"/> <circ-port height="8" pin="100,180" width="8" x="146" y="256"/> <circ-port height="8" pin="100,320" width="8" x="146" y="266"/> <circ-port height="8" pin="100,460" width="8" x="146" y="276"/> <circ-port height="8" pin="100,600" width="8" x="146" y="286"/> <circ-port height="8" pin="100,740" width="8" x="146" y="296"/> <circ-port height="8" pin="100,880" width="8" x="146" y="306"/> <circ-port height="8" pin="100,1020" width="8" x="146" y="316"/> <circ-port height="8" pin="100,1160" width="8" x="146" y="326"/> <circ-port height="8" pin="100,1780" width="8" x="146" y="376"/> <circ-port height="10" pin="560,160" width="10" x="255" y="135"/> <circ-port height="10" pin="560,230" width="10" x="255" y="435"/> <circ-port height="8" pin="100,230" width="8" x="146" y="436"/> <circ-port height="10" pin="560,300" width="10" x="255" y="145"/> <circ-port height="10" pin="560,370" width="10" x="255" y="445"/> <circ-port height="8" pin="100,370" width="8" x="146" y="446"/> <circ-port height="10" pin="560,440" width="10" x="255" y="155"/> <circ-port height="10" pin="560,510" width="10" x="255" y="455"/> <circ-port height="8" pin="100,510" width="8" x="146" y="456"/> <circ-port height="10" pin="560,580" width="10" x="255" y="165"/> <circ-port height="10" pin="560,650" width="10" x="255" y="465"/> <circ-port height="8" pin="100,650" width="8" x="146" y="466"/> <circ-port height="10" pin="560,720" width="10" x="255" y="175"/> <circ-port height="10" pin="560,790" width="10" x="255" y="475"/> <circ-port height="8" pin="100,790" width="8" x="146" y="476"/> <circ-port height="10" pin="560,860" width="10" x="255" y="185"/> <circ-port height="10" pin="560,930" width="10" x="255" y="485"/> <circ-port height="8" pin="100,930" width="8" x="146" y="486"/> <circ-port height="10" pin="560,1000" width="10" x="255" y="195"/> <circ-port height="10" pin="560,1070" width="10" x="255" y="495"/> <circ-port height="8" pin="100,1070" width="8" x="146" y="496"/> <circ-port height="10" pin="560,1140" width="10" x="255" y="205"/> <circ-port height="10" pin="560,1210" width="10" x="255" y="505"/> <circ-port height="8" pin="100,1210" width="8" x="146" y="506"/> <circ-port height="10" pin="560,1280" width="10" x="255" y="215"/> <circ-port height="10" pin="560,1350" width="10" x="255" y="515"/> <circ-port height="8" pin="100,1350" width="8" x="146" y="516"/> <circ-port height="10" pin="560,1420" width="10" x="255" y="225"/> <circ-port height="10" pin="560,1490" width="10" x="255" y="525"/> <circ-port height="8" pin="100,1490" width="8" x="146" y="526"/> <circ-port height="10" pin="560,1560" width="10" x="255" y="235"/> <circ-port height="10" pin="560,1630" width="10" x="255" y="535"/> <circ-port height="8" pin="100,1680" width="8" x="146" y="576"/> <circ-port height="8" pin="100,1630" width="8" x="146" y="536"/> <circ-anchor facing="east" height="6" width="6" x="197" y="117"/> </appear> <wire from="(290,1230)" to="(290,1370)"/> <wire from="(290,670)" to="(290,810)"/> <wire from="(460,380)" to="(510,380)"/> <wire from="(360,580)" to="(360,720)"/> <wire from="(460,940)" to="(510,940)"/> <wire from="(460,1500)" to="(510,1500)"/> <wire from="(360,1140)" to="(360,1280)"/> <wire from="(460,1080)" to="(460,1220)"/> <wire from="(460,520)" to="(460,660)"/> <wire from="(460,1640)" to="(460,1780)"/> <wire from="(340,660)" to="(390,660)"/> <wire from="(340,1220)" to="(390,1220)"/> <wire from="(100,180)" to="(150,180)"/> <wire from="(210,350)" to="(210,490)"/> <wire from="(210,910)" to="(210,1050)"/> <wire from="(210,1470)" to="(210,1610)"/> <wire from="(330,490)" to="(330,510)"/> <wire from="(330,1610)" to="(330,1630)"/> <wire from="(330,1050)" to="(330,1070)"/> <wire from="(290,1650)" to="(290,1680)"/> <wire from="(400,1050)" to="(440,1050)"/> <wire from="(400,490)" to="(440,490)"/> <wire from="(400,1610)" to="(440,1610)"/> <wire from="(150,180)" to="(150,1300)"/> <wire from="(480,500)" to="(510,500)"/> <wire from="(480,1060)" to="(510,1060)"/> <wire from="(480,1620)" to="(510,1620)"/> <wire from="(100,1740)" to="(440,1740)"/> <wire from="(390,470)" to="(390,520)"/> <wire from="(390,1590)" to="(390,1640)"/> <wire from="(390,1030)" to="(390,1080)"/> <wire from="(480,580)" to="(560,580)"/> <wire from="(480,1140)" to="(560,1140)"/> <wire from="(480,720)" to="(480,780)"/> <wire from="(480,160)" to="(480,220)"/> <wire from="(480,1280)" to="(480,1340)"/> <wire from="(550,510)" to="(560,510)"/> <wire from="(550,1070)" to="(560,1070)"/> <wire from="(550,1630)" to="(560,1630)"/> <wire from="(410,890)" to="(410,960)"/> <wire from="(410,330)" to="(410,400)"/> <wire from="(410,1450)" to="(410,1520)"/> <wire from="(270,1190)" to="(330,1190)"/> <wire from="(270,630)" to="(330,630)"/> <wire from="(210,80)" to="(210,210)"/> <wire from="(420,300)" to="(480,300)"/> <wire from="(420,860)" to="(480,860)"/> <wire from="(420,1420)" to="(480,1420)"/> <wire from="(440,630)" to="(440,770)"/> <wire from="(400,1170)" to="(400,1190)"/> <wire from="(400,610)" to="(400,630)"/> <wire from="(100,320)" to="(140,320)"/> <wire from="(440,120)" to="(440,210)"/> <wire from="(290,530)" to="(310,530)"/> <wire from="(290,1090)" to="(310,1090)"/> <wire from="(360,440)" to="(380,440)"/> <wire from="(360,1000)" to="(380,1000)"/> <wire from="(100,600)" to="(380,600)"/> <wire from="(290,1650)" to="(310,1650)"/> <wire from="(100,1160)" to="(380,1160)"/> <wire from="(360,1560)" to="(380,1560)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(210,770)" to="(230,770)"/> <wire from="(210,1330)" to="(230,1330)"/> <wire from="(100,1210)" to="(230,1210)"/> <wire from="(360,40)" to="(360,160)"/> <wire from="(340,260)" to="(410,260)"/> <wire from="(340,1380)" to="(410,1380)"/> <wire from="(340,820)" to="(410,820)"/> <wire from="(100,650)" to="(230,650)"/> <wire from="(100,1680)" to="(290,1680)"/> <wire from="(290,530)" to="(290,670)"/> <wire from="(290,1090)" to="(290,1230)"/> <wire from="(460,800)" to="(510,800)"/> <wire from="(460,1360)" to="(510,1360)"/> <wire from="(360,1000)" to="(360,1140)"/> <wire from="(460,240)" to="(510,240)"/> <wire from="(360,440)" to="(360,580)"/> <wire from="(460,380)" to="(460,520)"/> <wire from="(460,940)" to="(460,1080)"/> <wire from="(340,1640)" to="(390,1640)"/> <wire from="(460,1500)" to="(460,1640)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(340,1080)" to="(390,1080)"/> <wire from="(100,40)" to="(150,40)"/> <wire from="(210,210)" to="(210,350)"/> <wire from="(210,770)" to="(210,910)"/> <wire from="(210,1330)" to="(210,1470)"/> <wire from="(330,350)" to="(330,370)"/> <wire from="(330,1470)" to="(330,1490)"/> <wire from="(330,910)" to="(330,930)"/> <wire from="(400,910)" to="(440,910)"/> <wire from="(400,350)" to="(440,350)"/> <wire from="(400,1470)" to="(440,1470)"/> <wire from="(100,460)" to="(130,460)"/> <wire from="(480,360)" to="(510,360)"/> <wire from="(480,920)" to="(510,920)"/> <wire from="(480,1480)" to="(510,1480)"/> <wire from="(390,330)" to="(390,380)"/> <wire from="(390,1450)" to="(390,1500)"/> <wire from="(390,890)" to="(390,940)"/> <wire from="(480,440)" to="(560,440)"/> <wire from="(480,1000)" to="(560,1000)"/> <wire from="(480,1560)" to="(560,1560)"/> <wire from="(480,580)" to="(480,640)"/> <wire from="(480,1140)" to="(480,1200)"/> <wire from="(550,370)" to="(560,370)"/> <wire from="(550,930)" to="(560,930)"/> <wire from="(550,1490)" to="(560,1490)"/> <wire from="(170,40)" to="(360,40)"/> <wire from="(410,190)" to="(410,260)"/> <wire from="(270,490)" to="(330,490)"/> <wire from="(410,750)" to="(410,820)"/> <wire from="(410,1310)" to="(410,1380)"/> <wire from="(270,1610)" to="(330,1610)"/> <wire from="(270,1050)" to="(330,1050)"/> <wire from="(420,720)" to="(480,720)"/> <wire from="(420,160)" to="(480,160)"/> <wire from="(420,1280)" to="(480,1280)"/> <wire from="(440,1610)" to="(440,1740)"/> <wire from="(440,490)" to="(440,630)"/> <wire from="(440,1050)" to="(440,1190)"/> <wire from="(400,1030)" to="(400,1050)"/> <wire from="(400,470)" to="(400,490)"/> <wire from="(400,1590)" to="(400,1610)"/> <wire from="(100,80)" to="(210,80)"/> <wire from="(140,320)" to="(140,1440)"/> <wire from="(290,390)" to="(310,390)"/> <wire from="(290,950)" to="(310,950)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(360,860)" to="(380,860)"/> <wire from="(290,1510)" to="(310,1510)"/> <wire from="(100,1020)" to="(380,1020)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(210,630)" to="(230,630)"/> <wire from="(210,1190)" to="(230,1190)"/> <wire from="(100,1630)" to="(230,1630)"/> <wire from="(100,1070)" to="(230,1070)"/> <wire from="(100,510)" to="(230,510)"/> <wire from="(340,680)" to="(410,680)"/> <wire from="(340,1240)" to="(410,1240)"/> <wire from="(290,390)" to="(290,530)"/> <wire from="(290,950)" to="(290,1090)"/> <wire from="(360,300)" to="(360,440)"/> <wire from="(360,860)" to="(360,1000)"/> <wire from="(460,660)" to="(510,660)"/> <wire from="(460,1220)" to="(510,1220)"/> <wire from="(290,1510)" to="(290,1650)"/> <wire from="(360,1420)" to="(360,1560)"/> <wire from="(460,240)" to="(460,380)"/> <wire from="(460,800)" to="(460,940)"/> <wire from="(340,1500)" to="(390,1500)"/> <wire from="(460,1360)" to="(460,1500)"/> <wire from="(340,380)" to="(390,380)"/> <wire from="(340,940)" to="(390,940)"/> <wire from="(210,630)" to="(210,770)"/> <wire from="(210,1190)" to="(210,1330)"/> <wire from="(330,210)" to="(330,230)"/> <wire from="(330,1330)" to="(330,1350)"/> <wire from="(330,770)" to="(330,790)"/> <wire from="(400,770)" to="(440,770)"/> <wire from="(400,210)" to="(440,210)"/> <wire from="(400,1330)" to="(440,1330)"/> <wire from="(480,220)" to="(510,220)"/> <wire from="(480,780)" to="(510,780)"/> <wire from="(480,1340)" to="(510,1340)"/> <wire from="(480,1560)" to="(480,1620)"/> <wire from="(390,1310)" to="(390,1360)"/> <wire from="(390,750)" to="(390,800)"/> <wire from="(480,300)" to="(560,300)"/> <wire from="(480,860)" to="(560,860)"/> <wire from="(480,1420)" to="(560,1420)"/> <wire from="(390,190)" to="(390,240)"/> <wire from="(480,440)" to="(480,500)"/> <wire from="(480,1000)" to="(480,1060)"/> <wire from="(550,790)" to="(560,790)"/> <wire from="(550,230)" to="(560,230)"/> <wire from="(550,1350)" to="(560,1350)"/> <wire from="(270,910)" to="(330,910)"/> <wire from="(270,350)" to="(330,350)"/> <wire from="(410,1170)" to="(410,1240)"/> <wire from="(410,610)" to="(410,680)"/> <wire from="(270,1470)" to="(330,1470)"/> <wire from="(420,580)" to="(480,580)"/> <wire from="(420,1140)" to="(480,1140)"/> <wire from="(440,350)" to="(440,490)"/> <wire from="(440,910)" to="(440,1050)"/> <wire from="(440,1470)" to="(440,1610)"/> <wire from="(400,890)" to="(400,910)"/> <wire from="(400,330)" to="(400,350)"/> <wire from="(400,1450)" to="(400,1470)"/> <wire from="(290,250)" to="(310,250)"/> <wire from="(290,810)" to="(310,810)"/> <wire from="(360,160)" to="(380,160)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(290,1370)" to="(310,1370)"/> <wire from="(100,880)" to="(380,880)"/> <wire from="(360,1280)" to="(380,1280)"/> <wire from="(210,490)" to="(230,490)"/> <wire from="(210,1610)" to="(230,1610)"/> <wire from="(210,1050)" to="(230,1050)"/> <wire from="(100,930)" to="(230,930)"/> <wire from="(100,1490)" to="(230,1490)"/> <wire from="(100,370)" to="(230,370)"/> <wire from="(340,540)" to="(410,540)"/> <wire from="(340,1660)" to="(410,1660)"/> <wire from="(340,1100)" to="(410,1100)"/> <wire from="(130,460)" to="(380,460)"/> <wire from="(130,1580)" to="(380,1580)"/> <wire from="(290,250)" to="(290,390)"/> <wire from="(290,810)" to="(290,950)"/> <wire from="(360,160)" to="(360,300)"/> <wire from="(360,720)" to="(360,860)"/> <wire from="(460,1080)" to="(510,1080)"/> <wire from="(460,520)" to="(510,520)"/> <wire from="(460,1640)" to="(510,1640)"/> <wire from="(290,1370)" to="(290,1510)"/> <wire from="(360,1280)" to="(360,1420)"/> <wire from="(460,660)" to="(460,800)"/> <wire from="(460,1220)" to="(460,1360)"/> <wire from="(340,240)" to="(390,240)"/> <wire from="(340,1360)" to="(390,1360)"/> <wire from="(340,800)" to="(390,800)"/> <wire from="(210,490)" to="(210,630)"/> <wire from="(210,1050)" to="(210,1190)"/> <wire from="(330,1190)" to="(330,1210)"/> <wire from="(330,630)" to="(330,650)"/> <wire from="(140,320)" to="(380,320)"/> <wire from="(140,1440)" to="(380,1440)"/> <wire from="(150,180)" to="(380,180)"/> <wire from="(150,1300)" to="(380,1300)"/> <wire from="(100,1780)" to="(460,1780)"/> <wire from="(400,1190)" to="(440,1190)"/> <wire from="(400,630)" to="(440,630)"/> <wire from="(130,460)" to="(130,1580)"/> <wire from="(480,640)" to="(510,640)"/> <wire from="(480,1200)" to="(510,1200)"/> <wire from="(100,120)" to="(440,120)"/> <wire from="(390,610)" to="(390,660)"/> <wire from="(390,1170)" to="(390,1220)"/> <wire from="(480,720)" to="(560,720)"/> <wire from="(480,160)" to="(560,160)"/> <wire from="(480,1280)" to="(560,1280)"/> <wire from="(480,860)" to="(480,920)"/> <wire from="(480,300)" to="(480,360)"/> <wire from="(480,1420)" to="(480,1480)"/> <wire from="(550,650)" to="(560,650)"/> <wire from="(550,1210)" to="(560,1210)"/> <wire from="(270,210)" to="(330,210)"/> <wire from="(410,470)" to="(410,540)"/> <wire from="(410,1030)" to="(410,1100)"/> <wire from="(410,1590)" to="(410,1660)"/> <wire from="(270,1330)" to="(330,1330)"/> <wire from="(270,770)" to="(330,770)"/> <wire from="(420,440)" to="(480,440)"/> <wire from="(420,1000)" to="(480,1000)"/> <wire from="(420,1560)" to="(480,1560)"/> <wire from="(440,210)" to="(440,350)"/> <wire from="(440,770)" to="(440,910)"/> <wire from="(440,1330)" to="(440,1470)"/> <wire from="(400,750)" to="(400,770)"/> <wire from="(400,190)" to="(400,210)"/> <wire from="(400,1310)" to="(400,1330)"/> <wire from="(290,670)" to="(310,670)"/> <wire from="(290,1230)" to="(310,1230)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(100,740)" to="(380,740)"/> <wire from="(210,350)" to="(230,350)"/> <wire from="(210,910)" to="(230,910)"/> <wire from="(210,1470)" to="(230,1470)"/> <wire from="(100,1350)" to="(230,1350)"/> <wire from="(100,230)" to="(230,230)"/> <wire from="(340,400)" to="(410,400)"/> <wire from="(340,960)" to="(410,960)"/> <wire from="(340,1520)" to="(410,1520)"/> <wire from="(100,790)" to="(230,790)"/> <comp lib="6" loc="(91,146)" name="Text"> <a name="text" val="W4002 SQUARE0"/> </comp> <comp lib="0" loc="(560,930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum9"/> </comp> <comp lib="0" loc="(560,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(560,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,790)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1000)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,670)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4002"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK3"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(420,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,1350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,1630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(170,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(270,350)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,1420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F9"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(310,1650)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,1210)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D/I"/> </comp> <comp lib="0" loc="(100,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum5"/> </comp> <comp lib="2" loc="(310,250)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum8"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum0"/> </comp> <comp lib="0" loc="(560,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(560,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum2"/> </comp> <comp lib="4" loc="(270,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(91,158)" name="Text"> <a name="text" val="W4006 SQUARE1"/> </comp> <comp lib="4" loc="(420,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,950)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(270,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(420,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(286,64)" name="Text"> <a name="text" val="if /sum 1 reset latch"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,1490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU9"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(310,390)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(155,1727)" name="Text"> <a name="text" val="W4007 SQUARE1"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum4"/> </comp> <comp lib="0" loc="(560,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DO_SWEEP"/> </comp> <comp lib="4" loc="(420,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,230)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1370)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="1" loc="(550,650)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(560,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum6"/> </comp> <comp lib="6" loc="(159,25)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,1280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F8"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(550,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU4"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(310,530)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(420,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(550,370)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(289,82)" name="Text"> <a name="text" val="if /sum 0 preset latch"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(310,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(155,1715)" name="Text"> <a name="text" val="W4003 SQUARE0"/> </comp> <comp lib="2" loc="(310,1090)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(560,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,1510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(560,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(550,1070)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(270,1050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(560,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum10"/> </comp> <comp lib="0" loc="(100,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum7"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum1"/> </comp> <comp lib="4" loc="(420,1280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(560,1630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Sum3"/> </comp> <comp lib="0" loc="(560,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="MU1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="F10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,1490)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,810)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> </circuit> <circuit name="SQUARE_BARREL_SHIFTER"> <a name="circuit" val="SQUARE_BARREL_SHIFTER"/> <a name="clabel" val="BARREL SHIFTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M110,110 Q114,120 118,110" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffc8a6" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="110"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="144">S0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="182" y="244">S10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="144">MUI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">MUI10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="324">DEC/INC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="344">SR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="364">SR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="384">SR2</text> <circ-port height="8" pin="80,70" width="8" x="46" y="136"/> <circ-port height="8" pin="80,160" width="8" x="46" y="146"/> <circ-port height="8" pin="80,250" width="8" x="46" y="156"/> <circ-port height="8" pin="80,340" width="8" x="46" y="166"/> <circ-port height="8" pin="80,430" width="8" x="46" y="176"/> <circ-port height="8" pin="80,520" width="8" x="46" y="186"/> <circ-port height="8" pin="80,610" width="8" x="46" y="196"/> <circ-port height="8" pin="80,700" width="8" x="46" y="206"/> <circ-port height="8" pin="80,790" width="8" x="46" y="216"/> <circ-port height="8" pin="80,880" width="8" x="46" y="226"/> <circ-port height="8" pin="80,970" width="8" x="46" y="236"/> <circ-port height="8" pin="80,1040" width="8" x="46" y="316"/> <circ-port height="8" pin="80,1080" width="8" x="46" y="336"/> <circ-port height="8" pin="80,1110" width="8" x="46" y="356"/> <circ-port height="8" pin="80,1140" width="8" x="46" y="376"/> <circ-port height="10" pin="670,100" width="10" x="195" y="135"/> <circ-port height="10" pin="670,190" width="10" x="195" y="145"/> <circ-port height="10" pin="670,280" width="10" x="195" y="155"/> <circ-port height="10" pin="670,370" width="10" x="195" y="165"/> <circ-port height="10" pin="670,460" width="10" x="195" y="175"/> <circ-port height="10" pin="670,550" width="10" x="195" y="185"/> <circ-port height="10" pin="670,640" width="10" x="195" y="195"/> <circ-port height="10" pin="670,730" width="10" x="195" y="205"/> <circ-port height="10" pin="670,820" width="10" x="195" y="215"/> <circ-port height="10" pin="670,910" width="10" x="195" y="225"/> <circ-port height="10" pin="670,1000" width="10" x="195" y="235"/> <circ-anchor facing="east" height="6" width="6" x="87" y="107"/> </appear> <wire from="(110,900)" to="(110,970)"/> <wire from="(420,180)" to="(610,180)"/> <wire from="(110,540)" to="(110,610)"/> <wire from="(110,180)" to="(110,250)"/> <wire from="(420,540)" to="(470,540)"/> <wire from="(550,900)" to="(610,900)"/> <wire from="(490,630)" to="(610,630)"/> <wire from="(620,530)" to="(620,620)"/> <wire from="(620,890)" to="(620,980)"/> <wire from="(620,170)" to="(620,260)"/> <wire from="(590,740)" to="(590,830)"/> <wire from="(510,380)" to="(510,720)"/> <wire from="(420,810)" to="(530,810)"/> <wire from="(140,330)" to="(140,420)"/> <wire from="(140,690)" to="(140,780)"/> <wire from="(160,170)" to="(390,170)"/> <wire from="(400,430)" to="(400,520)"/> <wire from="(400,790)" to="(400,880)"/> <wire from="(160,260)" to="(190,260)"/> <wire from="(210,190)" to="(210,350)"/> <wire from="(80,340)" to="(110,340)"/> <wire from="(80,700)" to="(110,700)"/> <wire from="(290,550)" to="(290,710)"/> <wire from="(160,530)" to="(250,530)"/> <wire from="(590,740)" to="(610,740)"/> <wire from="(640,820)" to="(670,820)"/> <wire from="(160,800)" to="(310,800)"/> <wire from="(370,1000)" to="(390,1000)"/> <wire from="(640,100)" to="(670,100)"/> <wire from="(640,460)" to="(670,460)"/> <wire from="(110,540)" to="(130,540)"/> <wire from="(110,180)" to="(130,180)"/> <wire from="(110,340)" to="(130,340)"/> <wire from="(110,700)" to="(130,700)"/> <wire from="(110,900)" to="(130,900)"/> <wire from="(110,990)" to="(110,1040)"/> <wire from="(140,100)" to="(140,150)"/> <wire from="(470,200)" to="(610,200)"/> <wire from="(530,470)" to="(610,470)"/> <wire from="(330,730)" to="(390,730)"/> <wire from="(330,890)" to="(390,890)"/> <wire from="(420,270)" to="(610,270)"/> <wire from="(80,1080)" to="(140,1080)"/> <wire from="(110,270)" to="(110,340)"/> <wire from="(110,630)" to="(110,700)"/> <wire from="(270,460)" to="(390,460)"/> <wire from="(270,620)" to="(390,620)"/> <wire from="(210,190)" to="(390,190)"/> <wire from="(210,350)" to="(390,350)"/> <wire from="(570,990)" to="(610,990)"/> <wire from="(620,620)" to="(620,710)"/> <wire from="(590,830)" to="(590,920)"/> <wire from="(490,290)" to="(490,630)"/> <wire from="(620,260)" to="(620,350)"/> <wire from="(510,720)" to="(610,720)"/> <wire from="(140,780)" to="(140,870)"/> <wire from="(140,420)" to="(140,510)"/> <wire from="(400,880)" to="(400,970)"/> <wire from="(400,160)" to="(400,250)"/> <wire from="(400,520)" to="(400,610)"/> <wire from="(570,650)" to="(570,990)"/> <wire from="(420,720)" to="(510,720)"/> <wire from="(370,1040)" to="(590,1040)"/> <wire from="(190,100)" to="(190,260)"/> <wire from="(80,790)" to="(110,790)"/> <wire from="(80,430)" to="(110,430)"/> <wire from="(270,460)" to="(270,620)"/> <wire from="(420,450)" to="(450,450)"/> <wire from="(590,830)" to="(610,830)"/> <wire from="(350,820)" to="(350,980)"/> <wire from="(450,450)" to="(610,450)"/> <wire from="(640,910)" to="(670,910)"/> <wire from="(640,550)" to="(670,550)"/> <wire from="(640,190)" to="(670,190)"/> <wire from="(420,990)" to="(570,990)"/> <wire from="(110,270)" to="(130,270)"/> <wire from="(110,430)" to="(130,430)"/> <wire from="(110,630)" to="(130,630)"/> <wire from="(110,990)" to="(130,990)"/> <wire from="(110,790)" to="(130,790)"/> <wire from="(160,440)" to="(230,440)"/> <wire from="(160,710)" to="(290,710)"/> <wire from="(160,980)" to="(350,980)"/> <wire from="(80,1110)" to="(400,1110)"/> <wire from="(110,720)" to="(110,790)"/> <wire from="(420,360)" to="(610,360)"/> <wire from="(110,360)" to="(110,430)"/> <wire from="(550,560)" to="(610,560)"/> <wire from="(490,290)" to="(610,290)"/> <wire from="(620,350)" to="(620,440)"/> <wire from="(620,710)" to="(620,800)"/> <wire from="(590,920)" to="(590,1010)"/> <wire from="(470,200)" to="(470,540)"/> <wire from="(590,1010)" to="(590,1040)"/> <wire from="(140,510)" to="(140,600)"/> <wire from="(290,550)" to="(390,550)"/> <wire from="(290,710)" to="(390,710)"/> <wire from="(140,150)" to="(140,240)"/> <wire from="(140,870)" to="(140,960)"/> <wire from="(400,610)" to="(400,700)"/> <wire from="(550,560)" to="(550,900)"/> <wire from="(400,250)" to="(400,340)"/> <wire from="(350,820)" to="(390,820)"/> <wire from="(350,980)" to="(390,980)"/> <wire from="(80,520)" to="(110,520)"/> <wire from="(230,280)" to="(390,280)"/> <wire from="(250,370)" to="(250,530)"/> <wire from="(230,440)" to="(390,440)"/> <wire from="(80,160)" to="(110,160)"/> <wire from="(80,880)" to="(110,880)"/> <wire from="(80,1040)" to="(110,1040)"/> <wire from="(330,730)" to="(330,890)"/> <wire from="(590,920)" to="(610,920)"/> <wire from="(640,1000)" to="(670,1000)"/> <wire from="(640,640)" to="(670,640)"/> <wire from="(620,980)" to="(620,1140)"/> <wire from="(640,280)" to="(670,280)"/> <wire from="(110,160)" to="(130,160)"/> <wire from="(110,360)" to="(130,360)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(110,720)" to="(130,720)"/> <wire from="(110,880)" to="(130,880)"/> <wire from="(470,540)" to="(610,540)"/> <wire from="(530,810)" to="(610,810)"/> <wire from="(420,900)" to="(550,900)"/> <wire from="(620,120)" to="(620,170)"/> <wire from="(420,630)" to="(490,630)"/> <wire from="(110,1040)" to="(370,1040)"/> <wire from="(110,810)" to="(110,880)"/> <wire from="(420,90)" to="(610,90)"/> <wire from="(110,450)" to="(110,520)"/> <wire from="(110,90)" to="(110,160)"/> <wire from="(400,970)" to="(400,1110)"/> <wire from="(160,350)" to="(210,350)"/> <wire from="(80,70)" to="(130,70)"/> <wire from="(160,620)" to="(270,620)"/> <wire from="(570,650)" to="(610,650)"/> <wire from="(450,110)" to="(450,450)"/> <wire from="(620,800)" to="(620,890)"/> <wire from="(620,440)" to="(620,530)"/> <wire from="(160,890)" to="(330,890)"/> <wire from="(140,240)" to="(140,330)"/> <wire from="(140,600)" to="(140,690)"/> <wire from="(160,80)" to="(390,80)"/> <wire from="(510,380)" to="(610,380)"/> <wire from="(400,340)" to="(400,430)"/> <wire from="(400,700)" to="(400,790)"/> <wire from="(370,910)" to="(370,1000)"/> <wire from="(530,470)" to="(530,810)"/> <wire from="(230,280)" to="(230,440)"/> <wire from="(80,250)" to="(110,250)"/> <wire from="(80,970)" to="(110,970)"/> <wire from="(80,610)" to="(110,610)"/> <wire from="(590,1010)" to="(610,1010)"/> <wire from="(310,640)" to="(310,800)"/> <wire from="(450,110)" to="(610,110)"/> <wire from="(80,1140)" to="(620,1140)"/> <wire from="(640,730)" to="(670,730)"/> <wire from="(370,910)" to="(390,910)"/> <wire from="(640,370)" to="(670,370)"/> <wire from="(110,450)" to="(130,450)"/> <wire from="(110,610)" to="(130,610)"/> <wire from="(110,90)" to="(130,90)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(370,1000)" to="(370,1040)"/> <wire from="(110,810)" to="(130,810)"/> <wire from="(110,970)" to="(130,970)"/> <wire from="(250,370)" to="(390,370)"/> <wire from="(250,530)" to="(390,530)"/> <wire from="(400,110)" to="(400,160)"/> <wire from="(310,640)" to="(390,640)"/> <wire from="(310,800)" to="(390,800)"/> <wire from="(140,960)" to="(140,1080)"/> <wire from="(190,100)" to="(390,100)"/> <wire from="(190,260)" to="(390,260)"/> <comp lib="2" loc="(420,360)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dec/Inc"/> </comp> <comp lib="2" loc="(420,270)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,620)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,900)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI4"/> </comp> <comp lib="2" loc="(160,530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,80)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,800)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI8"/> </comp> <comp lib="2" loc="(640,820)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,170)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,180)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S7"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,980)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,370)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI7"/> </comp> <comp lib="2" loc="(160,350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,90)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S1"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(420,810)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,720)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S5"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI1"/> </comp> <comp lib="2" loc="(640,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI3"/> </comp> <comp lib="2" loc="(420,990)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(670,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR0"/> </comp> <comp lib="2" loc="(640,550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR1"/> </comp> <comp lib="2" loc="(640,190)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR2"/> </comp> <comp lib="2" loc="(420,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,100)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI10"/> </comp> <comp lib="2" loc="(640,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,440)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI6"/> </comp> <comp lib="0" loc="(80,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI9"/> </comp> <comp lib="0" loc="(80,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI0"/> </comp> <comp lib="2" loc="(640,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(640,1000)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(670,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI5"/> </comp> <comp lib="2" loc="(160,260)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(420,450)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MUI2"/> </comp> <comp lib="0" loc="(670,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,890)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(670,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="S8"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="SQUARE_ADDER"> <a name="circuit" val="SQUARE_ADDER"/> <a name="clabel" val="SQUARE ADDER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M220,30 Q224,41 229,31" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#54ff57" height="520" stroke="#000000" stroke-width="2" width="110" x="180" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="55">/CIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="94">FX0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="394">SX0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="264" y="394">/SUM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="264" y="534">/COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="494">/SUM10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="201" y="494">SX10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="201" y="194">FX10</text> <circ-port height="8" pin="90,30" width="8" x="176" y="46"/> <circ-port height="8" pin="90,60" width="8" x="176" y="86"/> <circ-port height="10" pin="390,60" width="10" x="285" y="385"/> <circ-port height="8" pin="90,80" width="8" x="176" y="386"/> <circ-port height="8" pin="90,230" width="8" x="176" y="96"/> <circ-port height="10" pin="390,230" width="10" x="285" y="395"/> <circ-port height="8" pin="90,250" width="8" x="176" y="396"/> <circ-port height="8" pin="90,400" width="8" x="176" y="106"/> <circ-port height="10" pin="390,400" width="10" x="285" y="405"/> <circ-port height="8" pin="90,420" width="8" x="176" y="406"/> <circ-port height="8" pin="90,570" width="8" x="176" y="116"/> <circ-port height="10" pin="390,570" width="10" x="285" y="415"/> <circ-port height="8" pin="90,590" width="8" x="176" y="416"/> <circ-port height="8" pin="90,740" width="8" x="176" y="126"/> <circ-port height="10" pin="390,740" width="10" x="285" y="425"/> <circ-port height="8" pin="90,760" width="8" x="176" y="426"/> <circ-port height="8" pin="90,910" width="8" x="176" y="136"/> <circ-port height="10" pin="390,910" width="10" x="285" y="435"/> <circ-port height="8" pin="90,930" width="8" x="176" y="436"/> <circ-port height="8" pin="90,1080" width="8" x="176" y="146"/> <circ-port height="10" pin="390,1080" width="10" x="285" y="445"/> <circ-port height="8" pin="90,1100" width="8" x="176" y="446"/> <circ-port height="8" pin="90,1250" width="8" x="176" y="156"/> <circ-port height="10" pin="390,1250" width="10" x="285" y="455"/> <circ-port height="8" pin="90,1270" width="8" x="176" y="456"/> <circ-port height="8" pin="90,1420" width="8" x="176" y="166"/> <circ-port height="10" pin="390,1420" width="10" x="285" y="465"/> <circ-port height="8" pin="90,1440" width="8" x="176" y="466"/> <circ-port height="8" pin="90,1590" width="8" x="176" y="176"/> <circ-port height="10" pin="390,1590" width="10" x="285" y="475"/> <circ-port height="8" pin="90,1610" width="8" x="176" y="476"/> <circ-port height="10" pin="390,1850" width="10" x="285" y="525"/> <circ-port height="8" pin="90,1760" width="8" x="176" y="186"/> <circ-port height="8" pin="90,1780" width="8" x="176" y="486"/> <circ-port height="10" pin="390,1760" width="10" x="285" y="485"/> <circ-anchor facing="east" height="6" width="6" x="227" y="27"/> </appear> <wire from="(140,250)" to="(140,320)"/> <wire from="(140,1610)" to="(140,1680)"/> <wire from="(140,1000)" to="(260,1000)"/> <wire from="(90,1610)" to="(140,1610)"/> <wire from="(90,250)" to="(140,250)"/> <wire from="(310,630)" to="(310,650)"/> <wire from="(220,730)" to="(220,810)"/> <wire from="(120,1250)" to="(160,1250)"/> <wire from="(220,390)" to="(260,390)"/> <wire from="(220,470)" to="(260,470)"/> <wire from="(200,1090)" to="(240,1090)"/> <wire from="(220,1750)" to="(260,1750)"/> <wire from="(220,1830)" to="(260,1830)"/> <wire from="(290,1180)" to="(330,1180)"/> <wire from="(220,700)" to="(220,730)"/> <wire from="(90,910)" to="(120,910)"/> <wire from="(220,530)" to="(380,530)"/> <wire from="(290,800)" to="(310,800)"/> <wire from="(240,1470)" to="(260,1470)"/> <wire from="(240,750)" to="(260,750)"/> <wire from="(310,820)" to="(330,820)"/> <wire from="(240,240)" to="(240,280)"/> <wire from="(240,1600)" to="(240,1640)"/> <wire from="(120,1590)" to="(120,1700)"/> <wire from="(140,250)" to="(160,250)"/> <wire from="(140,1610)" to="(160,1610)"/> <wire from="(380,1340)" to="(380,1380)"/> <wire from="(120,230)" to="(120,340)"/> <wire from="(240,110)" to="(260,110)"/> <wire from="(90,30)" to="(170,30)"/> <wire from="(370,490)" to="(380,490)"/> <wire from="(310,570)" to="(390,570)"/> <wire from="(120,850)" to="(260,850)"/> <wire from="(140,1100)" to="(140,1170)"/> <wire from="(140,490)" to="(260,490)"/> <wire from="(140,1850)" to="(260,1850)"/> <wire from="(90,1100)" to="(140,1100)"/> <wire from="(310,120)" to="(310,140)"/> <wire from="(310,1480)" to="(310,1500)"/> <wire from="(220,220)" to="(220,300)"/> <wire from="(220,1580)" to="(220,1660)"/> <wire from="(220,30)" to="(220,50)"/> <wire from="(120,740)" to="(160,740)"/> <wire from="(220,1550)" to="(220,1580)"/> <wire from="(200,580)" to="(240,580)"/> <wire from="(220,1240)" to="(260,1240)"/> <wire from="(220,1320)" to="(260,1320)"/> <wire from="(290,670)" to="(330,670)"/> <wire from="(220,190)" to="(220,220)"/> <wire from="(90,1760)" to="(120,1760)"/> <wire from="(90,400)" to="(120,400)"/> <wire from="(220,1380)" to="(380,1380)"/> <wire from="(240,960)" to="(260,960)"/> <wire from="(290,290)" to="(310,290)"/> <wire from="(310,310)" to="(330,310)"/> <wire from="(240,1600)" to="(260,1600)"/> <wire from="(290,1650)" to="(310,1650)"/> <wire from="(310,1670)" to="(330,1670)"/> <wire from="(240,1090)" to="(240,1130)"/> <wire from="(120,1080)" to="(120,1190)"/> <wire from="(140,1100)" to="(160,1100)"/> <wire from="(380,830)" to="(380,870)"/> <wire from="(240,240)" to="(260,240)"/> <wire from="(370,1340)" to="(380,1340)"/> <wire from="(310,60)" to="(390,60)"/> <wire from="(310,1420)" to="(390,1420)"/> <wire from="(120,340)" to="(260,340)"/> <wire from="(120,1700)" to="(260,1700)"/> <wire from="(140,590)" to="(140,660)"/> <wire from="(140,1340)" to="(260,1340)"/> <wire from="(90,590)" to="(140,590)"/> <wire from="(310,970)" to="(310,990)"/> <wire from="(220,1070)" to="(220,1150)"/> <wire from="(120,230)" to="(160,230)"/> <wire from="(120,1590)" to="(160,1590)"/> <wire from="(200,70)" to="(240,70)"/> <wire from="(220,730)" to="(260,730)"/> <wire from="(220,810)" to="(260,810)"/> <wire from="(200,1430)" to="(240,1430)"/> <wire from="(290,160)" to="(330,160)"/> <wire from="(220,1040)" to="(220,1070)"/> <wire from="(290,1520)" to="(330,1520)"/> <wire from="(90,1250)" to="(120,1250)"/> <wire from="(220,870)" to="(380,870)"/> <wire from="(290,1140)" to="(310,1140)"/> <wire from="(240,1090)" to="(260,1090)"/> <wire from="(240,1810)" to="(260,1810)"/> <wire from="(310,1160)" to="(330,1160)"/> <wire from="(240,580)" to="(240,620)"/> <wire from="(120,570)" to="(120,680)"/> <wire from="(380,320)" to="(380,360)"/> <wire from="(140,590)" to="(160,590)"/> <wire from="(380,1680)" to="(380,1720)"/> <wire from="(240,450)" to="(260,450)"/> <wire from="(370,830)" to="(380,830)"/> <wire from="(310,910)" to="(390,910)"/> <wire from="(120,1190)" to="(260,1190)"/> <wire from="(140,80)" to="(140,150)"/> <wire from="(140,1440)" to="(140,1510)"/> <wire from="(140,830)" to="(260,830)"/> <wire from="(90,1440)" to="(140,1440)"/> <wire from="(90,80)" to="(140,80)"/> <wire from="(310,460)" to="(310,480)"/> <wire from="(310,1820)" to="(310,1840)"/> <wire from="(220,560)" to="(220,640)"/> <wire from="(120,1080)" to="(160,1080)"/> <wire from="(200,920)" to="(240,920)"/> <wire from="(220,220)" to="(260,220)"/> <wire from="(220,300)" to="(260,300)"/> <wire from="(220,1580)" to="(260,1580)"/> <wire from="(220,1660)" to="(260,1660)"/> <wire from="(290,1010)" to="(330,1010)"/> <wire from="(220,530)" to="(220,560)"/> <wire from="(90,740)" to="(120,740)"/> <wire from="(220,360)" to="(380,360)"/> <wire from="(220,1720)" to="(380,1720)"/> <wire from="(290,630)" to="(310,630)"/> <wire from="(240,1300)" to="(260,1300)"/> <wire from="(310,650)" to="(330,650)"/> <wire from="(240,70)" to="(240,110)"/> <wire from="(240,1430)" to="(240,1470)"/> <wire from="(120,1420)" to="(120,1530)"/> <wire from="(140,80)" to="(160,80)"/> <wire from="(140,1440)" to="(160,1440)"/> <wire from="(380,1170)" to="(380,1210)"/> <wire from="(240,580)" to="(260,580)"/> <wire from="(120,60)" to="(120,170)"/> <wire from="(370,1680)" to="(380,1680)"/> <wire from="(370,320)" to="(380,320)"/> <wire from="(310,400)" to="(390,400)"/> <wire from="(310,1760)" to="(390,1760)"/> <wire from="(120,680)" to="(260,680)"/> <wire from="(140,930)" to="(140,1000)"/> <wire from="(140,320)" to="(260,320)"/> <wire from="(140,1680)" to="(260,1680)"/> <wire from="(90,930)" to="(140,930)"/> <wire from="(310,1310)" to="(310,1330)"/> <wire from="(220,50)" to="(220,130)"/> <wire from="(220,1410)" to="(220,1490)"/> <wire from="(120,570)" to="(160,570)"/> <wire from="(220,1380)" to="(220,1410)"/> <wire from="(200,410)" to="(240,410)"/> <wire from="(220,1070)" to="(260,1070)"/> <wire from="(220,1150)" to="(260,1150)"/> <wire from="(200,1770)" to="(240,1770)"/> <wire from="(290,500)" to="(330,500)"/> <wire from="(290,1860)" to="(330,1860)"/> <wire from="(90,1590)" to="(120,1590)"/> <wire from="(90,230)" to="(120,230)"/> <wire from="(220,1210)" to="(380,1210)"/> <wire from="(290,120)" to="(310,120)"/> <wire from="(310,140)" to="(330,140)"/> <wire from="(240,1430)" to="(260,1430)"/> <wire from="(240,790)" to="(260,790)"/> <wire from="(290,1480)" to="(310,1480)"/> <wire from="(310,1500)" to="(330,1500)"/> <wire from="(240,920)" to="(240,960)"/> <wire from="(120,910)" to="(120,1020)"/> <wire from="(140,930)" to="(160,930)"/> <wire from="(380,660)" to="(380,700)"/> <wire from="(240,70)" to="(260,70)"/> <wire from="(370,1170)" to="(380,1170)"/> <wire from="(310,1250)" to="(390,1250)"/> <wire from="(120,170)" to="(260,170)"/> <wire from="(120,1530)" to="(260,1530)"/> <wire from="(140,420)" to="(140,490)"/> <wire from="(140,1780)" to="(140,1850)"/> <wire from="(140,1170)" to="(260,1170)"/> <wire from="(90,1780)" to="(140,1780)"/> <wire from="(90,420)" to="(140,420)"/> <wire from="(310,800)" to="(310,820)"/> <wire from="(220,900)" to="(220,980)"/> <wire from="(120,60)" to="(160,60)"/> <wire from="(120,1420)" to="(160,1420)"/> <wire from="(220,560)" to="(260,560)"/> <wire from="(220,640)" to="(260,640)"/> <wire from="(200,1260)" to="(240,1260)"/> <wire from="(220,870)" to="(220,900)"/> <wire from="(290,1350)" to="(330,1350)"/> <wire from="(90,1080)" to="(120,1080)"/> <wire from="(220,700)" to="(380,700)"/> <wire from="(290,970)" to="(310,970)"/> <wire from="(240,1640)" to="(260,1640)"/> <wire from="(240,920)" to="(260,920)"/> <wire from="(310,990)" to="(330,990)"/> <wire from="(370,1850)" to="(390,1850)"/> <wire from="(240,410)" to="(240,450)"/> <wire from="(240,1770)" to="(240,1810)"/> <wire from="(120,1760)" to="(120,1870)"/> <wire from="(120,400)" to="(120,510)"/> <wire from="(380,150)" to="(380,190)"/> <wire from="(140,420)" to="(160,420)"/> <wire from="(140,1780)" to="(160,1780)"/> <wire from="(380,1510)" to="(380,1550)"/> <wire from="(240,280)" to="(260,280)"/> <wire from="(370,660)" to="(380,660)"/> <wire from="(310,740)" to="(390,740)"/> <wire from="(120,1020)" to="(260,1020)"/> <wire from="(140,1270)" to="(140,1340)"/> <wire from="(140,660)" to="(260,660)"/> <wire from="(90,1270)" to="(140,1270)"/> <wire from="(310,290)" to="(310,310)"/> <wire from="(310,1650)" to="(310,1670)"/> <wire from="(220,390)" to="(220,470)"/> <wire from="(220,1750)" to="(220,1830)"/> <wire from="(120,910)" to="(160,910)"/> <wire from="(220,1720)" to="(220,1750)"/> <wire from="(200,750)" to="(240,750)"/> <wire from="(220,50)" to="(260,50)"/> <wire from="(220,130)" to="(260,130)"/> <wire from="(220,1410)" to="(260,1410)"/> <wire from="(220,1490)" to="(260,1490)"/> <wire from="(290,840)" to="(330,840)"/> <wire from="(220,360)" to="(220,390)"/> <wire from="(190,30)" to="(220,30)"/> <wire from="(90,570)" to="(120,570)"/> <wire from="(220,190)" to="(380,190)"/> <wire from="(220,1550)" to="(380,1550)"/> <wire from="(290,460)" to="(310,460)"/> <wire from="(310,480)" to="(330,480)"/> <wire from="(240,1130)" to="(260,1130)"/> <wire from="(240,1770)" to="(260,1770)"/> <wire from="(290,1820)" to="(310,1820)"/> <wire from="(310,1840)" to="(330,1840)"/> <wire from="(240,1260)" to="(240,1300)"/> <wire from="(120,1250)" to="(120,1360)"/> <wire from="(140,1270)" to="(160,1270)"/> <wire from="(380,1000)" to="(380,1040)"/> <wire from="(240,410)" to="(260,410)"/> <wire from="(370,1510)" to="(380,1510)"/> <wire from="(370,150)" to="(380,150)"/> <wire from="(310,230)" to="(390,230)"/> <wire from="(310,1590)" to="(390,1590)"/> <wire from="(120,510)" to="(260,510)"/> <wire from="(120,1870)" to="(260,1870)"/> <wire from="(140,760)" to="(140,830)"/> <wire from="(140,1510)" to="(260,1510)"/> <wire from="(140,150)" to="(260,150)"/> <wire from="(90,760)" to="(140,760)"/> <wire from="(310,1140)" to="(310,1160)"/> <wire from="(220,1240)" to="(220,1320)"/> <wire from="(120,400)" to="(160,400)"/> <wire from="(120,1760)" to="(160,1760)"/> <wire from="(220,900)" to="(260,900)"/> <wire from="(220,980)" to="(260,980)"/> <wire from="(200,240)" to="(240,240)"/> <wire from="(200,1600)" to="(240,1600)"/> <wire from="(290,330)" to="(330,330)"/> <wire from="(220,1210)" to="(220,1240)"/> <wire from="(290,1690)" to="(330,1690)"/> <wire from="(90,1420)" to="(120,1420)"/> <wire from="(90,60)" to="(120,60)"/> <wire from="(220,1040)" to="(380,1040)"/> <wire from="(240,1260)" to="(260,1260)"/> <wire from="(290,1310)" to="(310,1310)"/> <wire from="(310,1330)" to="(330,1330)"/> <wire from="(240,750)" to="(240,790)"/> <wire from="(120,740)" to="(120,850)"/> <wire from="(380,490)" to="(380,530)"/> <wire from="(140,760)" to="(160,760)"/> <wire from="(240,620)" to="(260,620)"/> <wire from="(370,1000)" to="(380,1000)"/> <wire from="(310,1080)" to="(390,1080)"/> <wire from="(120,1360)" to="(260,1360)"/> <comp lib="0" loc="(390,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(370,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,1590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,800)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,830)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CIN"/> </comp> <comp lib="1" loc="(290,290)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX2"/> </comp> <comp lib="1" loc="(370,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX7"/> </comp> <comp lib="0" loc="(90,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX8"/> </comp> <comp lib="1" loc="(200,70)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX6"/> </comp> <comp lib="1" loc="(310,1080)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,580)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,230)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,1850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/COUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(390,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(390,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX10"/> </comp> <comp lib="0" loc="(90,1760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX10"/> </comp> <comp lib="0" loc="(390,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX4"/> </comp> <comp lib="0" loc="(390,1760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum10"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1860)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,1590)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1520)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1600)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1770)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX9"/> </comp> <comp lib="1" loc="(290,120)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1480)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,750)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,910)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(190,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,1000)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX3"/> </comp> <comp lib="1" loc="(290,1180)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,970)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1090)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX5"/> </comp> <comp lib="1" loc="(290,1820)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,500)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,60)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,460)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX1"/> </comp> <comp lib="0" loc="(90,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX6"/> </comp> <comp lib="0" loc="(90,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX7"/> </comp> <comp lib="0" loc="(90,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX8"/> </comp> <comp lib="1" loc="(370,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,1760)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX9"/> </comp> <comp lib="1" loc="(370,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX0"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX0"/> </comp> <comp lib="1" loc="(310,740)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX3"/> </comp> <comp lib="1" loc="(200,920)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1010)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SX5"/> </comp> <comp lib="1" loc="(200,410)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1350)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1140)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,1420)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(390,1420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,1250)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,630)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX4"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX1"/> </comp> <comp lib="0" loc="(390,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Sum6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1650)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1690)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FX2"/> </comp> <comp lib="1" loc="(200,1260)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,570)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,240)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,400)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="SQUARE_SWEEP_CONTROL"> <a name="circuit" val="SQUARE_SWEEP_CONTROL"/> <a name="clabel" val="SWEEP CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M82,41 Q86,51 90,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff48eb" height="340" stroke="#000000" stroke-width="2" width="130" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="104">W4001(5)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="155">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="224">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="265">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="324">NOSQx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="365">/COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="344">SW_UVF</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="294">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="104">SR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="124">SR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="144">SR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="64">D/I</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="84">DO_SWEEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="147" y="364">SW_OVF</text> <circ-port height="8" pin="140,110" width="8" x="46" y="56"/> <circ-port height="8" pin="140,1440" width="8" x="46" y="96"/> <circ-port height="8" pin="140,250" width="8" x="46" y="146"/> <circ-port height="8" pin="140,320" width="8" x="46" y="156"/> <circ-port height="8" pin="140,390" width="8" x="46" y="166"/> <circ-port height="8" pin="140,460" width="8" x="46" y="176"/> <circ-port height="8" pin="140,760" width="8" x="46" y="186"/> <circ-port height="8" pin="140,900" width="8" x="46" y="196"/> <circ-port height="8" pin="140,1040" width="8" x="46" y="206"/> <circ-port height="8" pin="140,530" width="8" x="46" y="216"/> <circ-port height="8" pin="140,660" width="8" x="46" y="256"/> <circ-port height="8" pin="140,620" width="8" x="46" y="316"/> <circ-port height="8" pin="140,190" width="8" x="46" y="356"/> <circ-port height="8" pin="140,580" width="8" x="46" y="336"/> <circ-port height="8" pin="140,700" width="8" x="46" y="286"/> <circ-port height="10" pin="980,230" width="10" x="175" y="95"/> <circ-port height="10" pin="980,300" width="10" x="175" y="115"/> <circ-port height="10" pin="980,370" width="10" x="175" y="135"/> <circ-port height="10" pin="980,440" width="10" x="175" y="55"/> <circ-port height="10" pin="980,540" width="10" x="175" y="75"/> <circ-port height="10" pin="980,200" width="10" x="175" y="355"/> <circ-anchor facing="east" height="6" width="6" x="107" y="37"/> </appear> <wire from="(630,1030)" to="(680,1030)"/> <wire from="(180,370)" to="(180,440)"/> <wire from="(140,530)" to="(200,530)"/> <wire from="(320,1100)" to="(320,1230)"/> <wire from="(390,930)" to="(390,1070)"/> <wire from="(240,1020)" to="(360,1020)"/> <wire from="(370,830)" to="(490,830)"/> <wire from="(180,880)" to="(180,1020)"/> <wire from="(650,540)" to="(880,540)"/> <wire from="(550,880)" to="(590,880)"/> <wire from="(510,910)" to="(510,940)"/> <wire from="(140,660)" to="(760,660)"/> <wire from="(220,540)" to="(220,560)"/> <wire from="(530,880)" to="(530,960)"/> <wire from="(390,1270)" to="(390,1300)"/> <wire from="(850,370)" to="(850,390)"/> <wire from="(240,370)" to="(850,370)"/> <wire from="(220,790)" to="(260,790)"/> <wire from="(260,1440)" to="(480,1440)"/> <wire from="(860,570)" to="(880,570)"/> <wire from="(180,510)" to="(180,740)"/> <wire from="(660,1010)" to="(680,1010)"/> <wire from="(720,750)" to="(740,750)"/> <wire from="(390,1300)" to="(410,1300)"/> <wire from="(180,370)" to="(200,370)"/> <wire from="(490,1050)" to="(490,1110)"/> <wire from="(520,880)" to="(530,880)"/> <wire from="(580,940)" to="(590,940)"/> <wire from="(260,420)" to="(260,490)"/> <wire from="(710,200)" to="(760,200)"/> <wire from="(140,700)" to="(390,700)"/> <wire from="(140,900)" to="(200,900)"/> <wire from="(260,930)" to="(260,1070)"/> <wire from="(710,550)" to="(710,620)"/> <wire from="(560,1360)" to="(560,1430)"/> <wire from="(470,760)" to="(470,780)"/> <wire from="(740,1030)" to="(740,1060)"/> <wire from="(860,300)" to="(860,390)"/> <wire from="(220,910)" to="(220,930)"/> <wire from="(460,1390)" to="(460,1420)"/> <wire from="(220,280)" to="(260,280)"/> <wire from="(660,710)" to="(660,730)"/> <wire from="(650,540)" to="(650,580)"/> <wire from="(260,560)" to="(260,790)"/> <wire from="(520,1320)" to="(540,1320)"/> <wire from="(390,1270)" to="(740,1270)"/> <wire from="(660,1140)" to="(680,1140)"/> <wire from="(320,960)" to="(340,960)"/> <wire from="(390,790)" to="(410,790)"/> <wire from="(460,1020)" to="(480,1020)"/> <wire from="(460,1420)" to="(480,1420)"/> <wire from="(140,190)" to="(670,190)"/> <wire from="(550,850)" to="(640,850)"/> <wire from="(180,740)" to="(200,740)"/> <wire from="(470,1040)" to="(480,1040)"/> <wire from="(520,760)" to="(590,760)"/> <wire from="(470,1060)" to="(740,1060)"/> <wire from="(440,1080)" to="(510,1080)"/> <wire from="(550,800)" to="(560,800)"/> <wire from="(560,1360)" to="(680,1360)"/> <wire from="(760,520)" to="(880,520)"/> <wire from="(180,230)" to="(180,300)"/> <wire from="(460,1020)" to="(460,1150)"/> <wire from="(860,300)" to="(980,300)"/> <wire from="(140,390)" to="(200,390)"/> <wire from="(630,890)" to="(680,890)"/> <wire from="(320,960)" to="(320,1100)"/> <wire from="(390,790)" to="(390,930)"/> <wire from="(240,880)" to="(360,880)"/> <wire from="(740,1270)" to="(740,1340)"/> <wire from="(180,740)" to="(180,880)"/> <wire from="(550,740)" to="(590,740)"/> <wire from="(520,1430)" to="(560,1430)"/> <wire from="(240,300)" to="(860,300)"/> <wire from="(510,770)" to="(510,800)"/> <wire from="(220,400)" to="(220,420)"/> <wire from="(530,740)" to="(530,820)"/> <wire from="(460,1360)" to="(560,1360)"/> <wire from="(220,490)" to="(260,490)"/> <wire from="(710,550)" to="(880,550)"/> <wire from="(860,430)" to="(860,510)"/> <wire from="(860,510)" to="(880,510)"/> <wire from="(240,440)" to="(650,440)"/> <wire from="(880,1250)" to="(880,1360)"/> <wire from="(660,870)" to="(680,870)"/> <wire from="(870,230)" to="(870,390)"/> <wire from="(180,230)" to="(200,230)"/> <wire from="(760,200)" to="(980,200)"/> <wire from="(260,1070)" to="(260,1440)"/> <wire from="(360,1020)" to="(360,1080)"/> <wire from="(490,910)" to="(490,970)"/> <wire from="(520,740)" to="(530,740)"/> <wire from="(550,1090)" to="(560,1090)"/> <wire from="(780,710)" to="(780,1080)"/> <wire from="(580,800)" to="(590,800)"/> <wire from="(140,580)" to="(650,580)"/> <wire from="(660,710)" to="(780,710)"/> <wire from="(260,280)" to="(260,350)"/> <wire from="(180,440)" to="(180,510)"/> <wire from="(660,870)" to="(660,1010)"/> <wire from="(140,760)" to="(200,760)"/> <wire from="(260,790)" to="(260,930)"/> <wire from="(620,1240)" to="(680,1240)"/> <wire from="(460,1150)" to="(580,1150)"/> <wire from="(640,1190)" to="(640,1220)"/> <wire from="(740,890)" to="(740,920)"/> <wire from="(840,1080)" to="(880,1080)"/> <wire from="(220,770)" to="(220,790)"/> <wire from="(460,1330)" to="(460,1360)"/> <wire from="(370,1090)" to="(410,1090)"/> <wire from="(180,110)" to="(210,110)"/> <wire from="(840,1100)" to="(860,1100)"/> <wire from="(640,950)" to="(640,990)"/> <wire from="(320,820)" to="(340,820)"/> <wire from="(460,880)" to="(480,880)"/> <wire from="(180,440)" to="(200,440)"/> <wire from="(470,900)" to="(480,900)"/> <wire from="(470,920)" to="(740,920)"/> <wire from="(670,1340)" to="(680,1340)"/> <wire from="(440,940)" to="(510,940)"/> <wire from="(180,170)" to="(180,230)"/> <wire from="(580,1090)" to="(590,1090)"/> <wire from="(260,490)" to="(260,560)"/> <wire from="(370,1190)" to="(370,1320)"/> <wire from="(140,620)" to="(710,620)"/> <wire from="(140,250)" to="(200,250)"/> <wire from="(630,750)" to="(680,750)"/> <wire from="(320,820)" to="(320,960)"/> <wire from="(140,1440)" to="(260,1440)"/> <wire from="(460,880)" to="(460,1020)"/> <wire from="(530,960)" to="(590,960)"/> <wire from="(240,740)" to="(360,740)"/> <wire from="(240,230)" to="(870,230)"/> <wire from="(370,1110)" to="(490,1110)"/> <wire from="(550,1020)" to="(550,1090)"/> <wire from="(640,1160)" to="(640,1190)"/> <wire from="(550,990)" to="(550,1020)"/> <wire from="(220,260)" to="(220,280)"/> <wire from="(140,110)" to="(180,110)"/> <wire from="(220,350)" to="(260,350)"/> <wire from="(220,1070)" to="(260,1070)"/> <wire from="(390,700)" to="(390,790)"/> <wire from="(450,1310)" to="(480,1310)"/> <wire from="(660,730)" to="(680,730)"/> <wire from="(720,1030)" to="(740,1030)"/> <wire from="(460,1330)" to="(480,1330)"/> <wire from="(850,1230)" to="(880,1230)"/> <wire from="(370,1190)" to="(640,1190)"/> <wire from="(320,1230)" to="(580,1230)"/> <wire from="(360,880)" to="(360,940)"/> <wire from="(490,770)" to="(490,830)"/> <wire from="(630,950)" to="(640,950)"/> <wire from="(640,1190)" to="(760,1190)"/> <wire from="(180,300)" to="(180,370)"/> <wire from="(660,730)" to="(660,870)"/> <wire from="(140,460)" to="(200,460)"/> <wire from="(760,200)" to="(760,520)"/> <wire from="(470,1040)" to="(470,1060)"/> <wire from="(740,750)" to="(740,780)"/> <wire from="(220,470)" to="(220,490)"/> <wire from="(220,560)" to="(260,560)"/> <wire from="(550,720)" to="(550,740)"/> <wire from="(630,1100)" to="(800,1100)"/> <wire from="(370,950)" to="(410,950)"/> <wire from="(870,230)" to="(980,230)"/> <wire from="(640,810)" to="(640,850)"/> <wire from="(650,210)" to="(670,210)"/> <wire from="(620,1220)" to="(640,1220)"/> <wire from="(620,1140)" to="(640,1140)"/> <wire from="(390,1070)" to="(410,1070)"/> <wire from="(180,110)" to="(180,150)"/> <wire from="(460,740)" to="(480,740)"/> <wire from="(720,1360)" to="(880,1360)"/> <wire from="(180,300)" to="(200,300)"/> <wire from="(760,560)" to="(760,660)"/> <wire from="(180,1020)" to="(200,1020)"/> <wire from="(470,760)" to="(480,760)"/> <wire from="(520,1040)" to="(590,1040)"/> <wire from="(550,880)" to="(550,940)"/> <wire from="(470,780)" to="(740,780)"/> <wire from="(440,800)" to="(510,800)"/> <wire from="(260,350)" to="(260,420)"/> <wire from="(760,560)" to="(880,560)"/> <wire from="(460,740)" to="(460,880)"/> <wire from="(530,820)" to="(590,820)"/> <wire from="(370,970)" to="(490,970)"/> <wire from="(550,1020)" to="(590,1020)"/> <wire from="(530,1020)" to="(530,1110)"/> <wire from="(510,1050)" to="(510,1080)"/> <wire from="(550,850)" to="(550,880)"/> <wire from="(760,660)" to="(760,1190)"/> <wire from="(880,1080)" to="(880,1230)"/> <wire from="(220,930)" to="(260,930)"/> <wire from="(370,1320)" to="(410,1320)"/> <wire from="(720,890)" to="(740,890)"/> <wire from="(630,710)" to="(660,710)"/> <wire from="(180,510)" to="(200,510)"/> <wire from="(850,1250)" to="(880,1250)"/> <wire from="(850,370)" to="(980,370)"/> <wire from="(680,1240)" to="(810,1240)"/> <wire from="(360,740)" to="(360,800)"/> <wire from="(650,440)" to="(980,440)"/> <wire from="(520,1020)" to="(530,1020)"/> <wire from="(630,810)" to="(640,810)"/> <wire from="(240,530)" to="(880,530)"/> <wire from="(140,320)" to="(200,320)"/> <wire from="(140,1040)" to="(200,1040)"/> <wire from="(530,1110)" to="(590,1110)"/> <wire from="(540,1320)" to="(540,1390)"/> <wire from="(470,900)" to="(470,920)"/> <wire from="(220,330)" to="(220,350)"/> <wire from="(220,1050)" to="(220,1070)"/> <wire from="(220,420)" to="(260,420)"/> <wire from="(370,810)" to="(410,810)"/> <wire from="(860,570)" to="(860,1100)"/> <wire from="(780,1080)" to="(800,1080)"/> <wire from="(960,540)" to="(980,540)"/> <wire from="(620,1160)" to="(640,1160)"/> <wire from="(720,1340)" to="(740,1340)"/> <wire from="(320,1100)" to="(340,1100)"/> <wire from="(390,930)" to="(410,930)"/> <wire from="(550,990)" to="(640,990)"/> <wire from="(680,1140)" to="(680,1240)"/> <wire from="(650,210)" to="(650,440)"/> <wire from="(180,880)" to="(200,880)"/> <wire from="(520,900)" to="(590,900)"/> <wire from="(550,740)" to="(550,800)"/> <wire from="(460,1390)" to="(540,1390)"/> <wire from="(550,940)" to="(560,940)"/> <comp lib="4" loc="(720,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(820,1124)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="0" loc="(210,110)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(980,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(340,1100)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(860,430)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(687,175)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="6" loc="(468,1303)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="2" loc="(340,820)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(499,1379)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="1" loc="(440,800)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(528,1312)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="1" loc="(180,170)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(281,363)" name="Text"> <a name="text" val="SR2"/> </comp> <comp loc="(720,1350)" name="D-latch"/> <comp lib="0" loc="(670,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="6" loc="(130,1418)" name="Text"> <a name="text" val="W4005 SQUARE1"/> </comp> <comp lib="0" loc="(140,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOSQA"/> </comp> <comp lib="6" loc="(549,649)" name="Text"> <a name="text" val="SWEEP DOWN COUNTER"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(546,1221)" name="Text"> <a name="text" val="SLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(466,1456)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="4" loc="(240,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(630,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="2" loc="(340,960)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,1080)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(630,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(980,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(980,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SW_OVF"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(240,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(580,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(140,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="6" loc="(912,499)" name="Text"> <a name="text" val="NOR4"/> </comp> <comp lib="1" loc="(440,940)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(501,1352)" name="Text"> <a name="text" val="NORFF1"/> </comp> <comp lib="0" loc="(980,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(810,1240)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(530,1447)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="6" loc="(275,1014)" name="Text"> <a name="text" val="P2"/> </comp> <comp lib="1" loc="(580,1230)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(550,720)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(834,1217)" name="Text"> <a name="text" val="NOR7"/> </comp> <comp lib="6" loc="(829,1355)" name="Text"> <a name="text" val="SWEEPRELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(294,432)" name="Text"> <a name="text" val="DEC/INC"/> </comp> <comp lib="6" loc="(545,1143)" name="Text"> <a name="text" val="SSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(640,1140)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(240,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(140,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(520,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(720,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(630,1030)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(520,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(580,1150)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(240,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(282,295)" name="Text"> <a name="text" val="SR1"/> </comp> <comp lib="6" loc="(277,734)" name="Text"> <a name="text" val="P0"/> </comp> <comp lib="6" loc="(424,1342)" name="Text"> <a name="text" val="NOR2"/> </comp> <comp lib="1" loc="(630,750)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp lib="6" loc="(130,1399)" name="Text"> <a name="text" val="W4001 SQUARE0"/> </comp> <comp lib="6" loc="(276,875)" name="Text"> <a name="text" val="P1"/> </comp> <comp lib="1" loc="(580,1090)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(240,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(502,1411)" name="Text"> <a name="text" val="NORFF2"/> </comp> <comp lib="1" loc="(520,1430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="6" loc="(282,224)" name="Text"> <a name="text" val="SR0"/> </comp> <comp lib="1" loc="(960,540)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(980,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D/I"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(843,494)" name="Text"> <a name="text" val="SRZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(630,950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(907,407)" name="Text"> <a name="text" val="NOR3"/> </comp> <comp lib="1" loc="(630,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(520,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(720,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(289,523)" name="Text"> <a name="text" val="SWDIS"/> </comp> <comp lib="4" loc="(240,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(980,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DO_SWEEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(840,1090)" name="D-latch"/> <comp lib="0" loc="(140,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SW_UVF"/> </comp> <comp lib="1" loc="(710,200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(841,655)" name="Text"> <a name="text" val="/SCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(630,890)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/COUT"/> </comp> <comp lib="4" loc="(240,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(520,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(698,1385)" name="Text"> <a name="text" val="DL1"/> </comp> </circuit> <circuit name="SQUARE_FREQUENCY_DOWN_COUNTER"> <a name="circuit" val="SQUARE_FREQUENCY_DOWN_COUNTER"/> <a name="clabel" val="SQUARE FREQUENCY COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M72,51 Q76,61 80,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6ab5ff" height="351" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="75">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="95">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="364">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="174">PL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="274">PL10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="364">FQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="384">FLOAD</text> <circ-port height="8" pin="90,50" width="8" x="46" y="66"/> <circ-port height="8" pin="90,1820" width="8" x="46" y="86"/> <circ-port height="8" pin="90,90" width="8" x="46" y="356"/> <circ-port height="8" pin="90,130" width="8" x="46" y="166"/> <circ-port height="8" pin="90,280" width="8" x="46" y="176"/> <circ-port height="8" pin="90,430" width="8" x="46" y="186"/> <circ-port height="8" pin="90,580" width="8" x="46" y="196"/> <circ-port height="8" pin="90,730" width="8" x="46" y="206"/> <circ-port height="8" pin="90,880" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1030" width="8" x="46" y="226"/> <circ-port height="8" pin="90,1180" width="8" x="46" y="236"/> <circ-port height="8" pin="90,1330" width="8" x="46" y="246"/> <circ-port height="8" pin="90,1480" width="8" x="46" y="256"/> <circ-port height="8" pin="90,1630" width="8" x="46" y="266"/> <circ-port height="10" pin="590,1870" width="10" x="205" y="355"/> <circ-port height="10" pin="590,1920" width="10" x="205" y="375"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(370,880)" to="(370,950)"/> <wire from="(450,1490)" to="(500,1490)"/> <wire from="(120,1780)" to="(120,1920)"/> <wire from="(480,1020)" to="(480,1170)"/> <wire from="(120,660)" to="(120,810)"/> <wire from="(190,1530)" to="(190,1680)"/> <wire from="(380,1820)" to="(380,1850)"/> <wire from="(370,850)" to="(370,880)"/> <wire from="(320,160)" to="(320,190)"/> <wire from="(280,600)" to="(280,630)"/> <wire from="(170,1700)" to="(210,1700)"/> <wire from="(90,90)" to="(190,90)"/> <wire from="(350,1180)" to="(350,1270)"/> <wire from="(560,1040)" to="(560,1080)"/> <wire from="(260,1630)" to="(260,1860)"/> <wire from="(370,700)" to="(460,700)"/> <wire from="(480,1710)" to="(500,1710)"/> <wire from="(260,1480)" to="(290,1480)"/> <wire from="(330,280)" to="(350,280)"/> <wire from="(480,270)" to="(500,270)"/> <wire from="(280,330)" to="(560,330)"/> <wire from="(460,1260)" to="(460,1300)"/> <wire from="(190,780)" to="(210,780)"/> <wire from="(400,200)" to="(410,200)"/> <wire from="(280,1200)" to="(290,1200)"/> <wire from="(370,650)" to="(380,650)"/> <wire from="(240,1540)" to="(320,1540)"/> <wire from="(300,460)" to="(300,520)"/> <wire from="(90,280)" to="(160,280)"/> <wire from="(370,1330)" to="(370,1400)"/> <wire from="(480,1470)" to="(480,1620)"/> <wire from="(260,130)" to="(260,280)"/> <wire from="(120,1110)" to="(120,1260)"/> <wire from="(370,1300)" to="(370,1330)"/> <wire from="(380,1790)" to="(380,1820)"/> <wire from="(280,1050)" to="(280,1080)"/> <wire from="(320,610)" to="(320,640)"/> <wire from="(370,430)" to="(410,430)"/> <wire from="(370,1150)" to="(460,1150)"/> <wire from="(560,1490)" to="(560,1530)"/> <wire from="(540,140)" to="(560,140)"/> <wire from="(350,1630)" to="(350,1740)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(480,720)" to="(500,720)"/> <wire from="(280,780)" to="(560,780)"/> <wire from="(120,360)" to="(140,360)"/> <wire from="(190,1230)" to="(210,1230)"/> <wire from="(370,1100)" to="(380,1100)"/> <wire from="(400,650)" to="(410,650)"/> <wire from="(280,1650)" to="(290,1650)"/> <wire from="(300,910)" to="(300,970)"/> <wire from="(90,730)" to="(160,730)"/> <wire from="(160,130)" to="(160,190)"/> <wire from="(350,520)" to="(410,520)"/> <wire from="(260,580)" to="(260,730)"/> <wire from="(120,1560)" to="(120,1710)"/> <wire from="(280,1500)" to="(280,1530)"/> <wire from="(170,200)" to="(210,200)"/> <wire from="(320,1060)" to="(320,1090)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(370,1600)" to="(460,1600)"/> <wire from="(540,590)" to="(560,590)"/> <wire from="(330,1180)" to="(350,1180)"/> <wire from="(360,1850)" to="(380,1850)"/> <wire from="(480,1170)" to="(500,1170)"/> <wire from="(280,1230)" to="(560,1230)"/> <wire from="(120,810)" to="(140,810)"/> <wire from="(190,1680)" to="(210,1680)"/> <wire from="(370,1550)" to="(380,1550)"/> <wire from="(400,1100)" to="(410,1100)"/> <wire from="(450,510)" to="(460,510)"/> <wire from="(330,450)" to="(410,450)"/> <wire from="(300,1360)" to="(300,1420)"/> <wire from="(90,1180)" to="(160,1180)"/> <wire from="(170,370)" to="(300,370)"/> <wire from="(160,580)" to="(160,640)"/> <wire from="(350,970)" to="(410,970)"/> <wire from="(480,1730)" to="(480,1870)"/> <wire from="(450,440)" to="(500,440)"/> <wire from="(260,1030)" to="(260,1180)"/> <wire from="(190,480)" to="(190,630)"/> <wire from="(170,650)" to="(210,650)"/> <wire from="(320,1510)" to="(320,1540)"/> <wire from="(370,1330)" to="(410,1330)"/> <wire from="(350,130)" to="(350,220)"/> <wire from="(480,1620)" to="(500,1620)"/> <wire from="(540,1040)" to="(560,1040)"/> <wire from="(260,430)" to="(290,430)"/> <wire from="(330,1630)" to="(350,1630)"/> <wire from="(280,1680)" to="(560,1680)"/> <wire from="(120,1260)" to="(140,1260)"/> <wire from="(460,210)" to="(460,250)"/> <wire from="(400,1550)" to="(410,1550)"/> <wire from="(450,960)" to="(460,960)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(240,490)" to="(320,490)"/> <wire from="(330,900)" to="(410,900)"/> <wire from="(420,1770)" to="(420,1820)"/> <wire from="(90,1630)" to="(160,1630)"/> <wire from="(170,820)" to="(300,820)"/> <wire from="(160,1030)" to="(160,1090)"/> <wire from="(350,1420)" to="(410,1420)"/> <wire from="(350,1740)" to="(410,1740)"/> <wire from="(370,280)" to="(370,350)"/> <wire from="(450,890)" to="(500,890)"/> <wire from="(480,420)" to="(480,570)"/> <wire from="(260,1480)" to="(260,1630)"/> <wire from="(190,930)" to="(190,1080)"/> <wire from="(370,250)" to="(370,280)"/> <wire from="(170,1100)" to="(210,1100)"/> <wire from="(350,580)" to="(350,670)"/> <wire from="(560,440)" to="(560,480)"/> <wire from="(540,1490)" to="(560,1490)"/> <wire from="(260,880)" to="(290,880)"/> <wire from="(360,1790)" to="(380,1790)"/> <wire from="(190,180)" to="(210,180)"/> <wire from="(120,1710)" to="(140,1710)"/> <wire from="(460,660)" to="(460,700)"/> <wire from="(450,1410)" to="(460,1410)"/> <wire from="(280,600)" to="(290,600)"/> <wire from="(240,940)" to="(320,940)"/> <wire from="(330,1350)" to="(410,1350)"/> <wire from="(170,1270)" to="(300,1270)"/> <wire from="(160,1480)" to="(160,1540)"/> <wire from="(370,730)" to="(370,800)"/> <wire from="(450,1340)" to="(500,1340)"/> <wire from="(480,870)" to="(480,1020)"/> <wire from="(120,510)" to="(120,660)"/> <wire from="(190,1380)" to="(190,1530)"/> <wire from="(280,450)" to="(280,480)"/> <wire from="(370,700)" to="(370,730)"/> <wire from="(170,1550)" to="(210,1550)"/> <wire from="(350,1030)" to="(350,1120)"/> <wire from="(560,890)" to="(560,930)"/> <wire from="(370,550)" to="(460,550)"/> <wire from="(260,1330)" to="(290,1330)"/> <wire from="(330,130)" to="(350,130)"/> <wire from="(480,120)" to="(500,120)"/> <wire from="(280,180)" to="(560,180)"/> <wire from="(460,1110)" to="(460,1150)"/> <wire from="(190,630)" to="(210,630)"/> <wire from="(280,1050)" to="(290,1050)"/> <wire from="(370,500)" to="(380,500)"/> <wire from="(240,1390)" to="(320,1390)"/> <wire from="(300,310)" to="(300,370)"/> <wire from="(90,130)" to="(160,130)"/> <wire from="(170,1720)" to="(300,1720)"/> <wire from="(370,1180)" to="(370,1250)"/> <wire from="(480,1320)" to="(480,1470)"/> <wire from="(120,960)" to="(120,1110)"/> <wire from="(370,1150)" to="(370,1180)"/> <wire from="(280,900)" to="(280,930)"/> <wire from="(320,460)" to="(320,490)"/> <wire from="(350,1480)" to="(350,1570)"/> <wire from="(370,280)" to="(410,280)"/> <wire from="(370,1000)" to="(460,1000)"/> <wire from="(560,1340)" to="(560,1380)"/> <wire from="(330,580)" to="(350,580)"/> <wire from="(480,570)" to="(500,570)"/> <wire from="(280,630)" to="(560,630)"/> <wire from="(120,210)" to="(140,210)"/> <wire from="(460,1560)" to="(460,1600)"/> <wire from="(190,1080)" to="(210,1080)"/> <wire from="(370,950)" to="(380,950)"/> <wire from="(400,500)" to="(410,500)"/> <wire from="(280,1500)" to="(290,1500)"/> <wire from="(300,760)" to="(300,820)"/> <wire from="(90,580)" to="(160,580)"/> <wire from="(350,370)" to="(410,370)"/> <wire from="(260,430)" to="(260,580)"/> <wire from="(120,1410)" to="(120,1560)"/> <wire from="(370,1600)" to="(370,1630)"/> <wire from="(280,1350)" to="(280,1380)"/> <wire from="(320,910)" to="(320,940)"/> <wire from="(370,1630)" to="(370,1720)"/> <wire from="(370,730)" to="(410,730)"/> <wire from="(370,1450)" to="(460,1450)"/> <wire from="(540,440)" to="(560,440)"/> <wire from="(120,1920)" to="(590,1920)"/> <wire from="(330,1030)" to="(350,1030)"/> <wire from="(480,1020)" to="(500,1020)"/> <wire from="(280,1080)" to="(560,1080)"/> <wire from="(120,660)" to="(140,660)"/> <wire from="(190,1530)" to="(210,1530)"/> <wire from="(370,1400)" to="(380,1400)"/> <wire from="(400,950)" to="(410,950)"/> <wire from="(370,1720)" to="(380,1720)"/> <wire from="(450,360)" to="(460,360)"/> <wire from="(330,300)" to="(410,300)"/> <wire from="(300,1210)" to="(300,1270)"/> <wire from="(90,1030)" to="(160,1030)"/> <wire from="(170,220)" to="(300,220)"/> <wire from="(160,430)" to="(160,490)"/> <wire from="(350,820)" to="(410,820)"/> <wire from="(450,290)" to="(500,290)"/> <wire from="(260,880)" to="(260,1030)"/> <wire from="(190,330)" to="(190,480)"/> <wire from="(170,500)" to="(210,500)"/> <wire from="(320,1360)" to="(320,1390)"/> <wire from="(370,1180)" to="(410,1180)"/> <wire from="(540,890)" to="(560,890)"/> <wire from="(260,280)" to="(290,280)"/> <wire from="(330,1480)" to="(350,1480)"/> <wire from="(400,1870)" to="(420,1870)"/> <wire from="(480,1470)" to="(500,1470)"/> <wire from="(280,1530)" to="(560,1530)"/> <wire from="(120,1110)" to="(140,1110)"/> <wire from="(400,1400)" to="(410,1400)"/> <wire from="(400,1720)" to="(410,1720)"/> <wire from="(450,810)" to="(460,810)"/> <wire from="(240,340)" to="(320,340)"/> <wire from="(330,750)" to="(410,750)"/> <wire from="(90,1480)" to="(160,1480)"/> <wire from="(300,1660)" to="(300,1720)"/> <wire from="(90,50)" to="(480,50)"/> <wire from="(170,670)" to="(300,670)"/> <wire from="(160,880)" to="(160,940)"/> <wire from="(350,1270)" to="(410,1270)"/> <wire from="(370,130)" to="(370,200)"/> <wire from="(450,740)" to="(500,740)"/> <wire from="(480,270)" to="(480,420)"/> <wire from="(260,1330)" to="(260,1480)"/> <wire from="(190,780)" to="(190,930)"/> <wire from="(170,950)" to="(210,950)"/> <wire from="(370,1630)" to="(410,1630)"/> <wire from="(350,430)" to="(350,520)"/> <wire from="(560,290)" to="(560,330)"/> <wire from="(540,1340)" to="(560,1340)"/> <wire from="(260,730)" to="(290,730)"/> <wire from="(120,1560)" to="(140,1560)"/> <wire from="(460,510)" to="(460,550)"/> <wire from="(450,1260)" to="(460,1260)"/> <wire from="(280,450)" to="(290,450)"/> <wire from="(240,790)" to="(320,790)"/> <wire from="(330,1200)" to="(410,1200)"/> <wire from="(170,1120)" to="(300,1120)"/> <wire from="(160,1330)" to="(160,1390)"/> <wire from="(480,50)" to="(480,120)"/> <wire from="(370,580)" to="(370,650)"/> <wire from="(450,1190)" to="(500,1190)"/> <wire from="(480,720)" to="(480,870)"/> <wire from="(560,1730)" to="(560,1820)"/> <wire from="(190,1230)" to="(190,1380)"/> <wire from="(120,360)" to="(120,510)"/> <wire from="(280,300)" to="(280,330)"/> <wire from="(370,550)" to="(370,580)"/> <wire from="(170,1400)" to="(210,1400)"/> <wire from="(350,880)" to="(350,970)"/> <wire from="(560,740)" to="(560,780)"/> <wire from="(370,400)" to="(460,400)"/> <wire from="(480,1730)" to="(500,1730)"/> <wire from="(260,1180)" to="(290,1180)"/> <wire from="(460,960)" to="(460,1000)"/> <wire from="(190,480)" to="(210,480)"/> <wire from="(280,900)" to="(290,900)"/> <wire from="(370,350)" to="(380,350)"/> <wire from="(240,1240)" to="(320,1240)"/> <wire from="(330,1650)" to="(410,1650)"/> <wire from="(300,160)" to="(300,220)"/> <wire from="(170,1570)" to="(300,1570)"/> <wire from="(370,1030)" to="(370,1100)"/> <wire from="(450,1640)" to="(500,1640)"/> <wire from="(480,1170)" to="(480,1320)"/> <wire from="(480,1620)" to="(480,1710)"/> <wire from="(120,810)" to="(120,960)"/> <wire from="(370,1000)" to="(370,1030)"/> <wire from="(320,310)" to="(320,340)"/> <wire from="(280,750)" to="(280,780)"/> <wire from="(370,130)" to="(410,130)"/> <wire from="(350,1330)" to="(350,1420)"/> <wire from="(370,850)" to="(460,850)"/> <wire from="(560,1190)" to="(560,1230)"/> <wire from="(260,1630)" to="(290,1630)"/> <wire from="(330,430)" to="(350,430)"/> <wire from="(480,420)" to="(500,420)"/> <wire from="(280,480)" to="(560,480)"/> <wire from="(460,1410)" to="(460,1450)"/> <wire from="(190,930)" to="(210,930)"/> <wire from="(400,350)" to="(410,350)"/> <wire from="(280,1350)" to="(290,1350)"/> <wire from="(370,800)" to="(380,800)"/> <wire from="(240,1690)" to="(320,1690)"/> <wire from="(300,610)" to="(300,670)"/> <wire from="(90,430)" to="(160,430)"/> <wire from="(370,1480)" to="(370,1550)"/> <wire from="(350,220)" to="(410,220)"/> <wire from="(120,1710)" to="(120,1780)"/> <wire from="(260,280)" to="(260,430)"/> <wire from="(120,1260)" to="(120,1410)"/> <wire from="(370,1450)" to="(370,1480)"/> <wire from="(480,1870)" to="(590,1870)"/> <wire from="(280,1200)" to="(280,1230)"/> <wire from="(320,760)" to="(320,790)"/> <wire from="(370,580)" to="(410,580)"/> <wire from="(370,1300)" to="(460,1300)"/> <wire from="(560,1640)" to="(560,1680)"/> <wire from="(540,290)" to="(560,290)"/> <wire from="(540,1730)" to="(560,1730)"/> <wire from="(330,880)" to="(350,880)"/> <wire from="(360,1870)" to="(380,1870)"/> <wire from="(480,870)" to="(500,870)"/> <wire from="(280,930)" to="(560,930)"/> <wire from="(120,510)" to="(140,510)"/> <wire from="(190,1380)" to="(210,1380)"/> <wire from="(370,1250)" to="(380,1250)"/> <wire from="(400,800)" to="(410,800)"/> <wire from="(450,210)" to="(460,210)"/> <wire from="(330,150)" to="(410,150)"/> <wire from="(420,1820)" to="(420,1870)"/> <wire from="(300,1060)" to="(300,1120)"/> <wire from="(90,880)" to="(160,880)"/> <wire from="(160,280)" to="(160,340)"/> <wire from="(260,1860)" to="(320,1860)"/> <wire from="(350,670)" to="(410,670)"/> <wire from="(450,140)" to="(500,140)"/> <wire from="(260,730)" to="(260,880)"/> <wire from="(190,180)" to="(190,330)"/> <wire from="(170,350)" to="(210,350)"/> <wire from="(320,1210)" to="(320,1240)"/> <wire from="(280,1650)" to="(280,1680)"/> <wire from="(90,1820)" to="(380,1820)"/> <wire from="(370,1030)" to="(410,1030)"/> <wire from="(540,740)" to="(560,740)"/> <wire from="(260,130)" to="(290,130)"/> <wire from="(330,1330)" to="(350,1330)"/> <wire from="(480,1320)" to="(500,1320)"/> <wire from="(280,1380)" to="(560,1380)"/> <wire from="(120,960)" to="(140,960)"/> <wire from="(400,1250)" to="(410,1250)"/> <wire from="(450,660)" to="(460,660)"/> <wire from="(240,190)" to="(320,190)"/> <wire from="(330,600)" to="(410,600)"/> <wire from="(90,1330)" to="(160,1330)"/> <wire from="(300,1510)" to="(300,1570)"/> <wire from="(170,520)" to="(300,520)"/> <wire from="(160,730)" to="(160,790)"/> <wire from="(350,1120)" to="(410,1120)"/> <wire from="(360,1770)" to="(420,1770)"/> <wire from="(450,590)" to="(500,590)"/> <wire from="(480,120)" to="(480,270)"/> <wire from="(370,110)" to="(370,130)"/> <wire from="(260,1180)" to="(260,1330)"/> <wire from="(190,630)" to="(190,780)"/> <wire from="(170,800)" to="(210,800)"/> <wire from="(320,1660)" to="(320,1690)"/> <wire from="(370,1480)" to="(410,1480)"/> <wire from="(350,280)" to="(350,370)"/> <wire from="(560,140)" to="(560,180)"/> <wire from="(540,1190)" to="(560,1190)"/> <wire from="(450,1730)" to="(480,1730)"/> <wire from="(260,580)" to="(290,580)"/> <wire from="(120,1410)" to="(140,1410)"/> <wire from="(460,360)" to="(460,400)"/> <wire from="(450,1110)" to="(460,1110)"/> <wire from="(280,300)" to="(290,300)"/> <wire from="(240,640)" to="(320,640)"/> <wire from="(330,1050)" to="(410,1050)"/> <wire from="(120,1780)" to="(320,1780)"/> <wire from="(170,970)" to="(300,970)"/> <wire from="(160,1180)" to="(160,1240)"/> <wire from="(350,1570)" to="(410,1570)"/> <wire from="(370,430)" to="(370,500)"/> <wire from="(450,1040)" to="(500,1040)"/> <wire from="(480,570)" to="(480,720)"/> <wire from="(190,1080)" to="(190,1230)"/> <wire from="(120,210)" to="(120,360)"/> <wire from="(190,90)" to="(190,180)"/> <wire from="(280,150)" to="(280,180)"/> <wire from="(370,400)" to="(370,430)"/> <wire from="(170,1250)" to="(210,1250)"/> <wire from="(350,730)" to="(350,820)"/> <wire from="(560,590)" to="(560,630)"/> <wire from="(370,250)" to="(460,250)"/> <wire from="(540,1640)" to="(560,1640)"/> <wire from="(260,1030)" to="(290,1030)"/> <wire from="(460,810)" to="(460,850)"/> <wire from="(190,330)" to="(210,330)"/> <wire from="(450,1560)" to="(460,1560)"/> <wire from="(280,750)" to="(290,750)"/> <wire from="(370,200)" to="(380,200)"/> <wire from="(420,1820)" to="(560,1820)"/> <wire from="(240,1090)" to="(320,1090)"/> <wire from="(330,1500)" to="(410,1500)"/> <wire from="(170,1420)" to="(300,1420)"/> <wire from="(160,1630)" to="(160,1690)"/> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL1"/> </comp> <comp lib="1" loc="(450,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,1240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(140,1410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,340)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(391,1891)" name="Text"> <a name="text" val="INV2"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL3"/> </comp> <comp lib="0" loc="(90,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL8"/> </comp> <comp lib="0" loc="(90,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL10"/> </comp> <comp lib="2" loc="(140,960)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(540,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(540,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,940)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,1110)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL4"/> </comp> <comp lib="1" loc="(450,1490)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(540,1720)" name="D-latch"/> <comp lib="1" loc="(240,1390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,1100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(540,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,1090)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,1180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL5"/> </comp> <comp lib="2" loc="(140,1710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(330,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(540,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(370,110)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(330,1030)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(590,1920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(400,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,640)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,810)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(540,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,1560)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(540,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(330,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,430)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,1550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,1780)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,660)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(140,1260)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(540,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1110)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(140,360)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,740)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(400,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL7"/> </comp> <comp lib="4" loc="(330,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(330,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,1720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,1250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,1190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(240,1690)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,790)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,1640)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(288,1852)" name="Text"> <a name="text" val="FSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(540,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,1540)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,890)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL2"/> </comp> <comp lib="4" loc="(330,1480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(330,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1040)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL6"/> </comp> <comp lib="1" loc="(380,1870)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,440)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL9"/> </comp> <comp lib="1" loc="(450,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PL0"/> </comp> <comp lib="1" loc="(450,1340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,590)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(540,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(516,1758)" name="Text"> <a name="text" val="DL4"/> </comp> <comp lib="1" loc="(450,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(288,1773)" name="Text"> <a name="text" val="FLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,1820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="4" loc="(330,1630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(590,1870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FQOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(320,1860)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="SQUARE_DUTY_DOWN_COUNTER"> <a name="circuit" val="SQUARE_DUTY_DOWN_COUNTER"/> <a name="clabel" val="DUTY DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif bold 12"/> <appear> <path d="M116,52 Q120,62 124,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b52bff" height="200" stroke="#000000" stroke-width="2" width="160" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="214">SQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="214">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="234">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="134">FLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="114">FQOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="194">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="154">W4003(7)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="174">W4000(4)</text> <circ-port height="8" pin="100,40" width="8" x="46" y="66"/> <circ-port height="8" pin="100,80" width="8" x="46" y="106"/> <circ-port height="8" pin="100,120" width="8" x="46" y="186"/> <circ-port height="8" pin="100,170" width="8" x="46" y="146"/> <circ-port height="8" pin="100,250" width="8" x="46" y="126"/> <circ-port height="8" pin="100,870" width="8" x="46" y="166"/> <circ-port height="8" pin="100,750" width="8" x="46" y="206"/> <circ-port height="8" pin="100,820" width="8" x="46" y="226"/> <circ-port height="10" pin="760,380" width="10" x="205" y="205"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(220,770)" to="(220,840)"/> <wire from="(230,340)" to="(290,340)"/> <wire from="(230,500)" to="(290,500)"/> <wire from="(230,660)" to="(290,660)"/> <wire from="(200,600)" to="(200,610)"/> <wire from="(190,830)" to="(190,840)"/> <wire from="(650,370)" to="(650,400)"/> <wire from="(530,370)" to="(530,400)"/> <wire from="(120,120)" to="(120,150)"/> <wire from="(190,770)" to="(220,770)"/> <wire from="(670,380)" to="(690,380)"/> <wire from="(460,530)" to="(670,530)"/> <wire from="(460,410)" to="(480,410)"/> <wire from="(280,320)" to="(290,320)"/> <wire from="(280,480)" to="(290,480)"/> <wire from="(280,640)" to="(290,640)"/> <wire from="(240,760)" to="(250,760)"/> <wire from="(210,270)" to="(290,270)"/> <wire from="(210,430)" to="(290,430)"/> <wire from="(210,590)" to="(290,590)"/> <wire from="(330,650)" to="(340,650)"/> <wire from="(330,330)" to="(340,330)"/> <wire from="(330,490)" to="(340,490)"/> <wire from="(520,400)" to="(530,400)"/> <wire from="(460,410)" to="(460,530)"/> <wire from="(250,570)" to="(250,640)"/> <wire from="(250,410)" to="(250,480)"/> <wire from="(250,250)" to="(250,320)"/> <wire from="(190,760)" to="(190,770)"/> <wire from="(330,580)" to="(380,580)"/> <wire from="(330,260)" to="(380,260)"/> <wire from="(330,420)" to="(380,420)"/> <wire from="(270,750)" to="(710,750)"/> <wire from="(590,360)" to="(690,360)"/> <wire from="(230,370)" to="(460,370)"/> <wire from="(230,530)" to="(460,530)"/> <wire from="(240,770)" to="(240,800)"/> <wire from="(670,380)" to="(670,530)"/> <wire from="(240,730)" to="(240,760)"/> <wire from="(140,250)" to="(170,250)"/> <wire from="(140,410)" to="(170,410)"/> <wire from="(140,570)" to="(170,570)"/> <wire from="(150,700)" to="(180,700)"/> <wire from="(210,800)" to="(240,800)"/> <wire from="(140,250)" to="(140,410)"/> <wire from="(140,410)" to="(140,570)"/> <wire from="(250,390)" to="(340,390)"/> <wire from="(250,550)" to="(340,550)"/> <wire from="(120,150)" to="(150,150)"/> <wire from="(530,370)" to="(550,370)"/> <wire from="(250,80)" to="(250,250)"/> <wire from="(360,240)" to="(380,240)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(420,260)" to="(440,260)"/> <wire from="(420,420)" to="(440,420)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(530,400)" to="(560,400)"/> <wire from="(160,300)" to="(440,300)"/> <wire from="(160,460)" to="(440,460)"/> <wire from="(160,620)" to="(440,620)"/> <wire from="(210,250)" to="(230,250)"/> <wire from="(210,410)" to="(230,410)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(240,770)" to="(250,770)"/> <wire from="(200,160)" to="(200,280)"/> <wire from="(100,820)" to="(170,820)"/> <wire from="(530,210)" to="(530,350)"/> <wire from="(360,560)" to="(360,700)"/> <wire from="(250,550)" to="(250,570)"/> <wire from="(710,400)" to="(710,750)"/> <wire from="(250,390)" to="(250,410)"/> <wire from="(100,250)" to="(140,250)"/> <wire from="(220,840)" to="(220,870)"/> <wire from="(210,730)" to="(240,730)"/> <wire from="(200,440)" to="(200,600)"/> <wire from="(200,280)" to="(200,440)"/> <wire from="(360,400)" to="(360,560)"/> <wire from="(360,240)" to="(360,400)"/> <wire from="(230,370)" to="(230,410)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(100,80)" to="(250,80)"/> <wire from="(230,530)" to="(230,570)"/> <wire from="(230,210)" to="(230,250)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(440,420)" to="(440,460)"/> <wire from="(440,260)" to="(440,300)"/> <wire from="(150,800)" to="(170,800)"/> <wire from="(100,750)" to="(170,750)"/> <wire from="(150,730)" to="(150,800)"/> <wire from="(100,870)" to="(220,870)"/> <wire from="(360,40)" to="(360,240)"/> <wire from="(100,170)" to="(150,170)"/> <wire from="(650,370)" to="(690,370)"/> <wire from="(460,370)" to="(460,390)"/> <wire from="(230,570)" to="(230,660)"/> <wire from="(230,410)" to="(230,500)"/> <wire from="(230,250)" to="(230,340)"/> <wire from="(250,250)" to="(290,250)"/> <wire from="(250,410)" to="(290,410)"/> <wire from="(250,570)" to="(290,570)"/> <wire from="(160,590)" to="(160,620)"/> <wire from="(160,430)" to="(160,460)"/> <wire from="(160,270)" to="(160,300)"/> <wire from="(150,700)" to="(150,730)"/> <wire from="(530,400)" to="(530,440)"/> <wire from="(190,840)" to="(220,840)"/> <wire from="(530,440)" to="(680,440)"/> <wire from="(200,700)" to="(360,700)"/> <wire from="(530,350)" to="(550,350)"/> <wire from="(730,380)" to="(760,380)"/> <wire from="(510,210)" to="(530,210)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(180,160)" to="(200,160)"/> <wire from="(150,730)" to="(170,730)"/> <wire from="(250,480)" to="(260,480)"/> <wire from="(250,640)" to="(260,640)"/> <wire from="(580,400)" to="(650,400)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(160,430)" to="(170,430)"/> <wire from="(160,590)" to="(170,590)"/> <wire from="(250,320)" to="(260,320)"/> <wire from="(680,390)" to="(680,440)"/> <wire from="(340,330)" to="(340,390)"/> <wire from="(340,490)" to="(340,550)"/> <wire from="(680,390)" to="(690,390)"/> <wire from="(100,40)" to="(360,40)"/> <wire from="(230,210)" to="(490,210)"/> <comp lib="4" loc="(210,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(92,916)" name="Text"> <a name="text" val="W4004 SQUARE 1"/> </comp> <comp lib="1" loc="(280,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(497,431)" name="Text"> <a name="text" val="NAND1"/> </comp> <comp lib="1" loc="(330,580)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4003"/> </comp> <comp lib="4" loc="(210,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(619,522)" name="Text"> <a name="text" val="50%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(100,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4000"/> </comp> <comp lib="1" loc="(330,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(318,679)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(520,400)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(93,199)" name="Text"> <a name="text" val="W4003 SQUARE 0"/> </comp> <comp lib="6" loc="(570,424)" name="Text"> <a name="text" val="INV4"/> </comp> <comp lib="1" loc="(510,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(210,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(330,260)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(580,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(270,750)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(210,250)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(180,700)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(618,432)" name="Text"> <a name="text" val="75%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(280,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(93,218)" name="Text"> <a name="text" val="W4007 SQUARE 1"/> </comp> <comp lib="0" loc="(760,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SQOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(180,160)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(567,335)" name="Text"> <a name="text" val="NOR10"/> </comp> <comp lib="1" loc="(330,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FQOUT"/> </comp> <comp lib="4" loc="(420,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(280,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FLOAD"/> </comp> <comp lib="6" loc="(621,353)" name="Text"> <a name="text" val="12.5%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(330,420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(618,393)" name="Text"> <a name="text" val="25%"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(330,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(730,380)" name="Multiplexer"> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(499,232)" name="Text"> <a name="text" val="INV3"/> </comp> <comp lib="6" loc="(92,898)" name="Text"> <a name="text" val="W4000 SQUARE 0"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> </circuit> <circuit name="TRIANGLE_CHANNEL"> <a name="circuit" val="TRIANGLE_CHANNEL"/> <a name="clabel" val="TRIANGLE CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M110,40 Q114,50 118,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#aea4ff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="225">TRI0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="245">TRI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="264">TRI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="284">TRI3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="305">TRI/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="690" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="684" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="155">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="175">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="194">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="225">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="245">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="265">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="284">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="304">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="324">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="344">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="364">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="688" y="404">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="424">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="444">NOTRI</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="684" y="384">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="681" y="134">W401A</text> <circ-port height="8" pin="80,50" width="8" x="706" y="96"/> <circ-port height="8" pin="80,100" width="8" x="706" y="76"/> <circ-port height="8" pin="80,490" width="8" x="706" y="146"/> <circ-port height="8" pin="80,140" width="8" x="706" y="166"/> <circ-port height="8" pin="80,570" width="8" x="706" y="186"/> <circ-port height="8" pin="80,210" width="8" x="706" y="216"/> <circ-port height="8" pin="80,240" width="8" x="706" y="236"/> <circ-port height="8" pin="80,270" width="8" x="706" y="256"/> <circ-port height="8" pin="80,300" width="8" x="706" y="276"/> <circ-port height="8" pin="80,330" width="8" x="706" y="296"/> <circ-port height="8" pin="80,360" width="8" x="706" y="316"/> <circ-port height="8" pin="80,390" width="8" x="706" y="336"/> <circ-port height="8" pin="80,420" width="8" x="706" y="356"/> <circ-port height="8" pin="80,730" width="8" x="706" y="396"/> <circ-port height="8" pin="80,690" width="8" x="706" y="416"/> <circ-port height="8" pin="80,780" width="8" x="706" y="436"/> <circ-port height="10" pin="740,550" width="10" x="45" y="215"/> <circ-port height="10" pin="740,580" width="10" x="45" y="235"/> <circ-port height="10" pin="740,610" width="10" x="45" y="255"/> <circ-port height="10" pin="740,640" width="10" x="45" y="275"/> <circ-port height="10" pin="740,820" width="10" x="45" y="295"/> <circ-port height="8" pin="80,820" width="8" x="706" y="376"/> <circ-port height="8" pin="80,610" width="8" x="706" y="126"/> <circ-anchor facing="east" height="6" width="6" x="137" y="37"/> </appear> <wire from="(470,690)" to="(470,820)"/> <wire from="(100,300)" to="(100,310)"/> <wire from="(100,320)" to="(100,330)"/> <wire from="(80,420)" to="(130,420)"/> <wire from="(210,50)" to="(450,50)"/> <wire from="(80,140)" to="(250,140)"/> <wire from="(80,390)" to="(120,390)"/> <wire from="(430,380)" to="(430,600)"/> <wire from="(170,320)" to="(210,320)"/> <wire from="(170,600)" to="(210,600)"/> <wire from="(210,100)" to="(250,100)"/> <wire from="(430,600)" to="(470,600)"/> <wire from="(430,620)" to="(470,620)"/> <wire from="(110,270)" to="(110,300)"/> <wire from="(110,330)" to="(110,360)"/> <wire from="(100,320)" to="(130,320)"/> <wire from="(80,360)" to="(110,360)"/> <wire from="(400,380)" to="(430,380)"/> <wire from="(540,690)" to="(560,690)"/> <wire from="(540,710)" to="(560,710)"/> <wire from="(540,670)" to="(560,670)"/> <wire from="(710,610)" to="(740,610)"/> <wire from="(710,550)" to="(740,550)"/> <wire from="(530,610)" to="(560,610)"/> <wire from="(500,690)" to="(520,690)"/> <wire from="(110,300)" to="(130,300)"/> <wire from="(80,330)" to="(100,330)"/> <wire from="(150,320)" to="(170,320)"/> <wire from="(230,340)" to="(250,340)"/> <wire from="(230,300)" to="(250,300)"/> <wire from="(230,620)" to="(250,620)"/> <wire from="(230,580)" to="(250,580)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(230,320)" to="(250,320)"/> <wire from="(230,600)" to="(250,600)"/> <wire from="(230,560)" to="(250,560)"/> <wire from="(210,50)" to="(210,100)"/> <wire from="(120,240)" to="(120,290)"/> <wire from="(120,340)" to="(120,390)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(240,380)" to="(250,380)"/> <wire from="(80,100)" to="(90,100)"/> <wire from="(120,340)" to="(130,340)"/> <wire from="(450,630)" to="(450,820)"/> <wire from="(400,610)" to="(470,610)"/> <wire from="(400,690)" to="(470,690)"/> <wire from="(550,530)" to="(560,530)"/> <wire from="(550,770)" to="(560,770)"/> <wire from="(130,210)" to="(130,280)"/> <wire from="(130,350)" to="(130,420)"/> <wire from="(450,50)" to="(450,510)"/> <wire from="(80,210)" to="(130,210)"/> <wire from="(80,820)" to="(450,820)"/> <wire from="(170,600)" to="(170,750)"/> <wire from="(450,510)" to="(560,510)"/> <wire from="(450,510)" to="(450,590)"/> <wire from="(80,690)" to="(250,690)"/> <wire from="(80,490)" to="(250,490)"/> <wire from="(80,240)" to="(120,240)"/> <wire from="(170,320)" to="(170,600)"/> <wire from="(80,270)" to="(110,270)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(80,780)" to="(430,780)"/> <wire from="(540,700)" to="(560,700)"/> <wire from="(540,680)" to="(560,680)"/> <wire from="(430,620)" to="(430,780)"/> <wire from="(710,580)" to="(740,580)"/> <wire from="(710,640)" to="(740,640)"/> <wire from="(450,590)" to="(470,590)"/> <wire from="(450,630)" to="(470,630)"/> <wire from="(80,300)" to="(100,300)"/> <wire from="(110,330)" to="(130,330)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(230,350)" to="(250,350)"/> <wire from="(230,590)" to="(250,590)"/> <wire from="(230,630)" to="(250,630)"/> <wire from="(230,290)" to="(250,290)"/> <wire from="(230,330)" to="(250,330)"/> <wire from="(230,570)" to="(250,570)"/> <wire from="(230,610)" to="(250,610)"/> <wire from="(240,450)" to="(250,450)"/> <wire from="(470,820)" to="(740,820)"/> <wire from="(170,750)" to="(500,750)"/> <wire from="(240,710)" to="(250,710)"/> <wire from="(240,510)" to="(250,510)"/> <wire from="(120,290)" to="(130,290)"/> <wire from="(80,730)" to="(90,730)"/> <wire from="(80,610)" to="(90,610)"/> <wire from="(80,570)" to="(90,570)"/> <wire from="(500,690)" to="(500,750)"/> <wire from="(80,50)" to="(210,50)"/> <comp lib="0" loc="(740,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(740,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(550,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(80,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp loc="(300,430)" name="TRIANGLE_LINEAR_DOWN_COUNTER"/> <comp lib="0" loc="(740,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(550,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(80,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(740,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(520,690)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(90,100)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(80,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(150,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(80,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp loc="(310,80)" name="TRIANGLE_FREQUENCY_DOWN_COUNTER"/> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NOTRI"/> </comp> <comp lib="0" loc="(240,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(240,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(80,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(530,610)" name="NOR Gate"> <a name="label" val="5"/> </comp> <comp lib="0" loc="(210,600)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(240,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(610,490)" name="TRIANGLE_OUTPUT_COUNTER"/> <comp lib="0" loc="(90,570)" name="Tunnel"> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(740,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(90,730)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,610)" name="Tunnel"> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(80,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(80,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCk"/> </comp> <comp lib="0" loc="(210,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> </circuit> <circuit name="TRIANGLE_FREQUENCY_DOWN_COUNTER"> <a name="circuit" val="TRIANGLE_FREQUENCY_DOWN_COUNTER"/> <a name="clabel" val="TRIANGLE FREQUENCY DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M71,11 Q75,21 79,11" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#56ffaf" height="321" stroke="#000000" stroke-width="2" width="150" x="50" y="10"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="215">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="314">#FOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="74">W400A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="95">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="34">PHI1</text> <circ-port height="8" pin="110,50" width="8" x="46" y="26"/> <circ-port height="8" pin="110,170" width="8" x="46" y="66"/> <circ-port height="8" pin="110,1870" width="8" x="46" y="86"/> <circ-port height="8" pin="110,90" width="8" x="46" y="306"/> <circ-port height="8" pin="110,230" width="8" x="46" y="206"/> <circ-port height="8" pin="110,390" width="8" x="46" y="216"/> <circ-port height="8" pin="110,550" width="8" x="46" y="226"/> <circ-port height="8" pin="110,710" width="8" x="46" y="236"/> <circ-port height="8" pin="110,870" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1030" width="8" x="46" y="256"/> <circ-port height="8" pin="110,1190" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1350" width="8" x="46" y="276"/> <circ-port height="10" pin="760,1920" width="10" x="195" y="305"/> <circ-anchor facing="east" height="6" width="6" x="107" y="7"/> </appear> <wire from="(160,390)" to="(220,390)"/> <wire from="(160,1670)" to="(220,1670)"/> <wire from="(240,1040)" to="(240,1060)"/> <wire from="(240,880)" to="(240,900)"/> <wire from="(240,1200)" to="(240,1220)"/> <wire from="(240,1680)" to="(240,1700)"/> <wire from="(240,1520)" to="(240,1540)"/> <wire from="(240,1360)" to="(240,1380)"/> <wire from="(600,1970)" to="(640,1970)"/> <wire from="(240,720)" to="(240,740)"/> <wire from="(240,400)" to="(240,420)"/> <wire from="(240,240)" to="(240,260)"/> <wire from="(240,560)" to="(240,580)"/> <wire from="(110,170)" to="(280,170)"/> <wire from="(240,1840)" to="(240,1870)"/> <wire from="(360,1060)" to="(360,1220)"/> <wire from="(360,900)" to="(360,1060)"/> <wire from="(360,740)" to="(360,900)"/> <wire from="(360,580)" to="(360,740)"/> <wire from="(360,420)" to="(360,580)"/> <wire from="(360,260)" to="(360,420)"/> <wire from="(360,1700)" to="(360,1860)"/> <wire from="(360,1220)" to="(360,1380)"/> <wire from="(360,1380)" to="(360,1540)"/> <wire from="(360,1540)" to="(360,1700)"/> <wire from="(140,550)" to="(140,1830)"/> <wire from="(530,690)" to="(530,760)"/> <wire from="(530,210)" to="(530,280)"/> <wire from="(530,370)" to="(530,440)"/> <wire from="(530,530)" to="(530,600)"/> <wire from="(530,850)" to="(530,920)"/> <wire from="(530,1010)" to="(530,1080)"/> <wire from="(530,1170)" to="(530,1240)"/> <wire from="(530,1330)" to="(530,1400)"/> <wire from="(530,1490)" to="(530,1560)"/> <wire from="(530,1650)" to="(530,1720)"/> <wire from="(110,1190)" to="(220,1190)"/> <wire from="(110,1350)" to="(220,1350)"/> <wire from="(110,1030)" to="(220,1030)"/> <wire from="(110,710)" to="(220,710)"/> <wire from="(110,870)" to="(220,870)"/> <wire from="(530,1810)" to="(530,1910)"/> <wire from="(680,1990)" to="(720,1990)"/> <wire from="(240,1870)" to="(280,1870)"/> <wire from="(460,1040)" to="(460,1100)"/> <wire from="(460,1200)" to="(460,1260)"/> <wire from="(460,720)" to="(460,780)"/> <wire from="(460,560)" to="(460,620)"/> <wire from="(460,240)" to="(460,300)"/> <wire from="(460,400)" to="(460,460)"/> <wire from="(460,880)" to="(460,940)"/> <wire from="(460,1360)" to="(460,1420)"/> <wire from="(460,1520)" to="(460,1580)"/> <wire from="(460,1680)" to="(460,1740)"/> <wire from="(460,1840)" to="(460,1900)"/> <wire from="(510,1930)" to="(570,1930)"/> <wire from="(530,1170)" to="(570,1170)"/> <wire from="(530,210)" to="(570,210)"/> <wire from="(530,1330)" to="(570,1330)"/> <wire from="(530,1490)" to="(570,1490)"/> <wire from="(530,1650)" to="(570,1650)"/> <wire from="(530,1810)" to="(570,1810)"/> <wire from="(530,850)" to="(570,850)"/> <wire from="(530,690)" to="(570,690)"/> <wire from="(530,370)" to="(570,370)"/> <wire from="(530,530)" to="(570,530)"/> <wire from="(530,1010)" to="(570,1010)"/> <wire from="(140,550)" to="(220,550)"/> <wire from="(140,1830)" to="(220,1830)"/> <wire from="(510,300)" to="(570,300)"/> <wire from="(510,460)" to="(570,460)"/> <wire from="(510,620)" to="(570,620)"/> <wire from="(510,780)" to="(570,780)"/> <wire from="(510,940)" to="(570,940)"/> <wire from="(510,1100)" to="(570,1100)"/> <wire from="(510,1260)" to="(570,1260)"/> <wire from="(510,1420)" to="(570,1420)"/> <wire from="(510,1580)" to="(570,1580)"/> <wire from="(510,1740)" to="(570,1740)"/> <wire from="(600,1990)" to="(660,1990)"/> <wire from="(110,390)" to="(160,390)"/> <wire from="(430,850)" to="(430,1010)"/> <wire from="(430,690)" to="(430,850)"/> <wire from="(430,530)" to="(430,690)"/> <wire from="(430,370)" to="(430,530)"/> <wire from="(430,210)" to="(430,370)"/> <wire from="(430,1010)" to="(430,1170)"/> <wire from="(430,1170)" to="(430,1330)"/> <wire from="(430,1330)" to="(430,1490)"/> <wire from="(430,1490)" to="(430,1650)"/> <wire from="(430,1650)" to="(430,1810)"/> <wire from="(430,1810)" to="(430,1980)"/> <wire from="(490,1030)" to="(570,1030)"/> <wire from="(490,710)" to="(570,710)"/> <wire from="(490,870)" to="(570,870)"/> <wire from="(490,550)" to="(570,550)"/> <wire from="(490,390)" to="(570,390)"/> <wire from="(490,230)" to="(570,230)"/> <wire from="(490,1190)" to="(570,1190)"/> <wire from="(490,1350)" to="(570,1350)"/> <wire from="(490,1510)" to="(570,1510)"/> <wire from="(490,1670)" to="(570,1670)"/> <wire from="(490,1830)" to="(570,1830)"/> <wire from="(330,690)" to="(330,750)"/> <wire from="(330,1810)" to="(330,1870)"/> <wire from="(330,1490)" to="(330,1550)"/> <wire from="(330,1650)" to="(330,1710)"/> <wire from="(330,210)" to="(330,270)"/> <wire from="(330,370)" to="(330,430)"/> <wire from="(330,530)" to="(330,590)"/> <wire from="(330,850)" to="(330,910)"/> <wire from="(330,1010)" to="(330,1070)"/> <wire from="(330,1170)" to="(330,1230)"/> <wire from="(330,1330)" to="(330,1390)"/> <wire from="(610,1570)" to="(620,1570)"/> <wire from="(610,1730)" to="(620,1730)"/> <wire from="(610,770)" to="(620,770)"/> <wire from="(610,290)" to="(620,290)"/> <wire from="(610,450)" to="(620,450)"/> <wire from="(610,610)" to="(620,610)"/> <wire from="(610,930)" to="(620,930)"/> <wire from="(610,1090)" to="(620,1090)"/> <wire from="(610,1250)" to="(620,1250)"/> <wire from="(610,1410)" to="(620,1410)"/> <wire from="(610,1660)" to="(660,1660)"/> <wire from="(610,1820)" to="(660,1820)"/> <wire from="(610,860)" to="(660,860)"/> <wire from="(610,1180)" to="(660,1180)"/> <wire from="(610,700)" to="(660,700)"/> <wire from="(610,540)" to="(660,540)"/> <wire from="(610,1020)" to="(660,1020)"/> <wire from="(610,220)" to="(660,220)"/> <wire from="(610,380)" to="(660,380)"/> <wire from="(610,1500)" to="(660,1500)"/> <wire from="(610,1340)" to="(660,1340)"/> <wire from="(340,440)" to="(380,440)"/> <wire from="(340,1080)" to="(380,1080)"/> <wire from="(340,280)" to="(380,280)"/> <wire from="(340,600)" to="(380,600)"/> <wire from="(340,1400)" to="(380,1400)"/> <wire from="(340,760)" to="(380,760)"/> <wire from="(340,920)" to="(380,920)"/> <wire from="(340,1240)" to="(380,1240)"/> <wire from="(340,1560)" to="(380,1560)"/> <wire from="(340,1720)" to="(380,1720)"/> <wire from="(340,1880)" to="(380,1880)"/> <wire from="(640,1800)" to="(640,1900)"/> <wire from="(430,1980)" to="(560,1980)"/> <wire from="(200,50)" to="(200,110)"/> <wire from="(340,1100)" to="(460,1100)"/> <wire from="(340,1260)" to="(460,1260)"/> <wire from="(340,940)" to="(460,940)"/> <wire from="(340,780)" to="(460,780)"/> <wire from="(340,620)" to="(460,620)"/> <wire from="(340,300)" to="(460,300)"/> <wire from="(340,460)" to="(460,460)"/> <wire from="(340,1420)" to="(460,1420)"/> <wire from="(340,1580)" to="(460,1580)"/> <wire from="(340,1900)" to="(460,1900)"/> <wire from="(340,1740)" to="(460,1740)"/> <wire from="(530,190)" to="(530,210)"/> <wire from="(720,700)" to="(720,740)"/> <wire from="(720,380)" to="(720,420)"/> <wire from="(720,220)" to="(720,260)"/> <wire from="(720,540)" to="(720,580)"/> <wire from="(720,1020)" to="(720,1060)"/> <wire from="(720,1180)" to="(720,1220)"/> <wire from="(720,860)" to="(720,900)"/> <wire from="(720,1340)" to="(720,1380)"/> <wire from="(720,1500)" to="(720,1540)"/> <wire from="(720,1660)" to="(720,1700)"/> <wire from="(720,1820)" to="(720,1860)"/> <wire from="(640,520)" to="(640,680)"/> <wire from="(640,360)" to="(640,520)"/> <wire from="(640,200)" to="(640,360)"/> <wire from="(640,840)" to="(640,1000)"/> <wire from="(640,1160)" to="(640,1320)"/> <wire from="(640,1000)" to="(640,1160)"/> <wire from="(640,680)" to="(640,840)"/> <wire from="(640,1320)" to="(640,1480)"/> <wire from="(640,1480)" to="(640,1640)"/> <wire from="(640,1640)" to="(640,1800)"/> <wire from="(530,1910)" to="(540,1910)"/> <wire from="(160,390)" to="(160,1670)"/> <wire from="(610,1920)" to="(660,1920)"/> <wire from="(640,1900)" to="(640,1970)"/> <wire from="(440,230)" to="(440,260)"/> <wire from="(440,390)" to="(440,420)"/> <wire from="(440,550)" to="(440,580)"/> <wire from="(440,1350)" to="(440,1380)"/> <wire from="(440,1510)" to="(440,1540)"/> <wire from="(440,1670)" to="(440,1700)"/> <wire from="(440,1830)" to="(440,1860)"/> <wire from="(440,1030)" to="(440,1060)"/> <wire from="(440,710)" to="(440,740)"/> <wire from="(440,870)" to="(440,900)"/> <wire from="(440,1190)" to="(440,1220)"/> <wire from="(200,690)" to="(200,850)"/> <wire from="(200,370)" to="(200,530)"/> <wire from="(200,210)" to="(200,370)"/> <wire from="(200,530)" to="(200,690)"/> <wire from="(200,1010)" to="(200,1170)"/> <wire from="(200,850)" to="(200,1010)"/> <wire from="(200,1170)" to="(200,1330)"/> <wire from="(200,1330)" to="(200,1490)"/> <wire from="(200,1490)" to="(200,1650)"/> <wire from="(200,1650)" to="(200,1810)"/> <wire from="(360,1060)" to="(380,1060)"/> <wire from="(360,740)" to="(380,740)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(360,1380)" to="(380,1380)"/> <wire from="(360,1220)" to="(380,1220)"/> <wire from="(360,1540)" to="(380,1540)"/> <wire from="(360,1700)" to="(380,1700)"/> <wire from="(360,1860)" to="(380,1860)"/> <wire from="(530,650)" to="(620,650)"/> <wire from="(530,330)" to="(620,330)"/> <wire from="(530,1290)" to="(620,1290)"/> <wire from="(530,490)" to="(620,490)"/> <wire from="(530,810)" to="(620,810)"/> <wire from="(530,1610)" to="(620,1610)"/> <wire from="(530,1450)" to="(620,1450)"/> <wire from="(530,1770)" to="(620,1770)"/> <wire from="(530,1130)" to="(620,1130)"/> <wire from="(530,970)" to="(620,970)"/> <wire from="(530,760)" to="(540,760)"/> <wire from="(530,280)" to="(540,280)"/> <wire from="(530,440)" to="(540,440)"/> <wire from="(530,600)" to="(540,600)"/> <wire from="(530,920)" to="(540,920)"/> <wire from="(530,1080)" to="(540,1080)"/> <wire from="(530,1240)" to="(540,1240)"/> <wire from="(530,1400)" to="(540,1400)"/> <wire from="(530,1560)" to="(540,1560)"/> <wire from="(530,1720)" to="(540,1720)"/> <wire from="(560,1910)" to="(570,1910)"/> <wire from="(480,1520)" to="(480,1550)"/> <wire from="(480,1680)" to="(480,1710)"/> <wire from="(480,1840)" to="(480,1870)"/> <wire from="(480,1040)" to="(480,1070)"/> <wire from="(480,400)" to="(480,430)"/> <wire from="(480,240)" to="(480,270)"/> <wire from="(480,1360)" to="(480,1390)"/> <wire from="(480,560)" to="(480,590)"/> <wire from="(480,720)" to="(480,750)"/> <wire from="(480,880)" to="(480,910)"/> <wire from="(480,1200)" to="(480,1230)"/> <wire from="(280,260)" to="(280,420)"/> <wire from="(280,420)" to="(280,580)"/> <wire from="(280,580)" to="(280,740)"/> <wire from="(280,740)" to="(280,900)"/> <wire from="(280,900)" to="(280,1060)"/> <wire from="(280,1060)" to="(280,1220)"/> <wire from="(280,1220)" to="(280,1380)"/> <wire from="(280,1540)" to="(280,1700)"/> <wire from="(280,1700)" to="(280,1870)"/> <wire from="(260,1650)" to="(330,1650)"/> <wire from="(260,850)" to="(330,850)"/> <wire from="(260,690)" to="(330,690)"/> <wire from="(260,530)" to="(330,530)"/> <wire from="(260,210)" to="(330,210)"/> <wire from="(260,370)" to="(330,370)"/> <wire from="(260,1010)" to="(330,1010)"/> <wire from="(260,1170)" to="(330,1170)"/> <wire from="(260,1330)" to="(330,1330)"/> <wire from="(260,1490)" to="(330,1490)"/> <wire from="(260,1810)" to="(330,1810)"/> <wire from="(560,280)" to="(570,280)"/> <wire from="(560,440)" to="(570,440)"/> <wire from="(560,600)" to="(570,600)"/> <wire from="(560,920)" to="(570,920)"/> <wire from="(560,760)" to="(570,760)"/> <wire from="(560,1720)" to="(570,1720)"/> <wire from="(560,1080)" to="(570,1080)"/> <wire from="(560,1240)" to="(570,1240)"/> <wire from="(560,1400)" to="(570,1400)"/> <wire from="(560,1560)" to="(570,1560)"/> <wire from="(720,1920)" to="(720,1990)"/> <wire from="(600,2020)" to="(640,2020)"/> <wire from="(700,700)" to="(720,700)"/> <wire from="(700,540)" to="(720,540)"/> <wire from="(700,380)" to="(720,380)"/> <wire from="(700,220)" to="(720,220)"/> <wire from="(700,1660)" to="(720,1660)"/> <wire from="(700,1500)" to="(720,1500)"/> <wire from="(700,1820)" to="(720,1820)"/> <wire from="(700,860)" to="(720,860)"/> <wire from="(700,1020)" to="(720,1020)"/> <wire from="(700,1180)" to="(720,1180)"/> <wire from="(700,1340)" to="(720,1340)"/> <wire from="(640,1970)" to="(640,2020)"/> <wire from="(600,2040)" to="(720,2040)"/> <wire from="(200,50)" to="(640,50)"/> <wire from="(280,170)" to="(280,260)"/> <wire from="(110,550)" to="(140,550)"/> <wire from="(510,1010)" to="(510,1100)"/> <wire from="(510,690)" to="(510,780)"/> <wire from="(510,850)" to="(510,940)"/> <wire from="(510,1650)" to="(510,1740)"/> <wire from="(510,1490)" to="(510,1580)"/> <wire from="(510,1330)" to="(510,1420)"/> <wire from="(510,1170)" to="(510,1260)"/> <wire from="(720,1920)" to="(760,1920)"/> <wire from="(510,210)" to="(510,300)"/> <wire from="(510,370)" to="(510,460)"/> <wire from="(510,530)" to="(510,620)"/> <wire from="(640,50)" to="(640,200)"/> <wire from="(620,1090)" to="(620,1130)"/> <wire from="(620,770)" to="(620,810)"/> <wire from="(620,450)" to="(620,490)"/> <wire from="(620,930)" to="(620,970)"/> <wire from="(620,610)" to="(620,650)"/> <wire from="(620,290)" to="(620,330)"/> <wire from="(620,1250)" to="(620,1290)"/> <wire from="(620,1410)" to="(620,1450)"/> <wire from="(620,1730)" to="(620,1770)"/> <wire from="(620,1570)" to="(620,1610)"/> <wire from="(700,1920)" to="(720,1920)"/> <wire from="(430,690)" to="(450,690)"/> <wire from="(430,370)" to="(450,370)"/> <wire from="(430,530)" to="(450,530)"/> <wire from="(430,850)" to="(450,850)"/> <wire from="(430,210)" to="(450,210)"/> <wire from="(430,1810)" to="(450,1810)"/> <wire from="(430,1650)" to="(450,1650)"/> <wire from="(430,1010)" to="(450,1010)"/> <wire from="(430,1170)" to="(450,1170)"/> <wire from="(430,1330)" to="(450,1330)"/> <wire from="(430,1490)" to="(450,1490)"/> <wire from="(360,90)" to="(360,260)"/> <wire from="(440,230)" to="(450,230)"/> <wire from="(440,390)" to="(450,390)"/> <wire from="(440,550)" to="(450,550)"/> <wire from="(510,1810)" to="(510,1930)"/> <wire from="(440,1030)" to="(450,1030)"/> <wire from="(440,710)" to="(450,710)"/> <wire from="(440,870)" to="(450,870)"/> <wire from="(440,1190)" to="(450,1190)"/> <wire from="(440,1350)" to="(450,1350)"/> <wire from="(440,1510)" to="(450,1510)"/> <wire from="(440,1670)" to="(450,1670)"/> <wire from="(440,1830)" to="(450,1830)"/> <wire from="(720,1990)" to="(720,2040)"/> <wire from="(410,910)" to="(480,910)"/> <wire from="(410,1230)" to="(480,1230)"/> <wire from="(410,1390)" to="(480,1390)"/> <wire from="(410,1070)" to="(480,1070)"/> <wire from="(410,590)" to="(480,590)"/> <wire from="(410,270)" to="(480,270)"/> <wire from="(410,430)" to="(480,430)"/> <wire from="(410,750)" to="(480,750)"/> <wire from="(410,1550)" to="(480,1550)"/> <wire from="(410,1710)" to="(480,1710)"/> <wire from="(410,1870)" to="(480,1870)"/> <wire from="(180,230)" to="(220,230)"/> <wire from="(180,1510)" to="(220,1510)"/> <wire from="(530,1290)" to="(530,1330)"/> <wire from="(530,330)" to="(530,370)"/> <wire from="(530,490)" to="(530,530)"/> <wire from="(530,1770)" to="(530,1810)"/> <wire from="(530,1610)" to="(530,1650)"/> <wire from="(530,1450)" to="(530,1490)"/> <wire from="(530,1130)" to="(530,1170)"/> <wire from="(530,970)" to="(530,1010)"/> <wire from="(530,810)" to="(530,850)"/> <wire from="(530,650)" to="(530,690)"/> <wire from="(180,230)" to="(180,1510)"/> <wire from="(300,1890)" to="(300,2030)"/> <wire from="(240,260)" to="(280,260)"/> <wire from="(240,420)" to="(280,420)"/> <wire from="(240,580)" to="(280,580)"/> <wire from="(240,740)" to="(280,740)"/> <wire from="(240,900)" to="(280,900)"/> <wire from="(240,1060)" to="(280,1060)"/> <wire from="(240,1220)" to="(280,1220)"/> <wire from="(240,1380)" to="(280,1380)"/> <wire from="(240,1540)" to="(280,1540)"/> <wire from="(240,1700)" to="(280,1700)"/> <wire from="(490,1330)" to="(510,1330)"/> <wire from="(300,930)" to="(300,1090)"/> <wire from="(490,1650)" to="(510,1650)"/> <wire from="(490,1490)" to="(510,1490)"/> <wire from="(490,1810)" to="(510,1810)"/> <wire from="(300,770)" to="(300,930)"/> <wire from="(300,610)" to="(300,770)"/> <wire from="(300,450)" to="(300,610)"/> <wire from="(300,290)" to="(300,450)"/> <wire from="(300,1250)" to="(300,1410)"/> <wire from="(300,1090)" to="(300,1250)"/> <wire from="(300,1410)" to="(300,1570)"/> <wire from="(640,520)" to="(660,520)"/> <wire from="(300,1570)" to="(300,1730)"/> <wire from="(300,1730)" to="(300,1890)"/> <wire from="(640,200)" to="(660,200)"/> <wire from="(640,360)" to="(660,360)"/> <wire from="(640,840)" to="(660,840)"/> <wire from="(640,1160)" to="(660,1160)"/> <wire from="(640,1000)" to="(660,1000)"/> <wire from="(640,680)" to="(660,680)"/> <wire from="(640,1800)" to="(660,1800)"/> <wire from="(640,1640)" to="(660,1640)"/> <wire from="(640,1320)" to="(660,1320)"/> <wire from="(640,1480)" to="(660,1480)"/> <wire from="(110,50)" to="(200,50)"/> <wire from="(490,850)" to="(510,850)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(490,1170)" to="(510,1170)"/> <wire from="(490,1010)" to="(510,1010)"/> <wire from="(490,370)" to="(510,370)"/> <wire from="(490,530)" to="(510,530)"/> <wire from="(490,690)" to="(510,690)"/> <wire from="(440,260)" to="(720,260)"/> <wire from="(440,420)" to="(720,420)"/> <wire from="(440,1220)" to="(720,1220)"/> <wire from="(440,1380)" to="(720,1380)"/> <wire from="(440,1060)" to="(720,1060)"/> <wire from="(440,1860)" to="(720,1860)"/> <wire from="(440,1540)" to="(720,1540)"/> <wire from="(440,1700)" to="(720,1700)"/> <wire from="(440,740)" to="(720,740)"/> <wire from="(440,900)" to="(720,900)"/> <wire from="(440,580)" to="(720,580)"/> <wire from="(110,230)" to="(180,230)"/> <wire from="(200,130)" to="(200,210)"/> <wire from="(200,1170)" to="(220,1170)"/> <wire from="(200,690)" to="(220,690)"/> <wire from="(200,530)" to="(220,530)"/> <wire from="(200,370)" to="(220,370)"/> <wire from="(200,210)" to="(220,210)"/> <wire from="(200,1010)" to="(220,1010)"/> <wire from="(200,1330)" to="(220,1330)"/> <wire from="(200,850)" to="(220,850)"/> <wire from="(200,1490)" to="(220,1490)"/> <wire from="(200,1650)" to="(220,1650)"/> <wire from="(200,1810)" to="(220,1810)"/> <wire from="(300,2030)" to="(560,2030)"/> <wire from="(110,1870)" to="(240,1870)"/> <wire from="(110,90)" to="(360,90)"/> <wire from="(640,1900)" to="(660,1900)"/> <wire from="(300,930)" to="(310,930)"/> <wire from="(300,290)" to="(310,290)"/> <wire from="(300,450)" to="(310,450)"/> <wire from="(300,610)" to="(310,610)"/> <wire from="(300,770)" to="(310,770)"/> <wire from="(300,1570)" to="(310,1570)"/> <wire from="(300,1730)" to="(310,1730)"/> <wire from="(300,1890)" to="(310,1890)"/> <wire from="(300,1250)" to="(310,1250)"/> <wire from="(300,1410)" to="(310,1410)"/> <wire from="(300,1090)" to="(310,1090)"/> <comp lib="4" loc="(490,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,700)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,910)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(490,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(260,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(760,1920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#FOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(560,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,1570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,290)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(410,590)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,610)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(410,430)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(700,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1730)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="4" loc="(490,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,1080)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(490,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(260,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(260,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,220)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1570)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(610,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(700,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(560,1240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,1730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(700,1800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,1910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,1870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="1" loc="(560,2030)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(610,930)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,130)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,1990)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(671,1978)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(410,1870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1090)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="6" loc="(496,2023)" name="Text"> <a name="text" val="TFLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(700,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(610,1340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(490,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(650,1915)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="1" loc="(560,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(494,1975)" name="Text"> <a name="text" val="TFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(610,380)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,1390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1180)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(490,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1500)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,1980)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="2" loc="(310,1410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(700,1480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(700,1000)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1660)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(410,1070)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(490,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,930)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(490,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(490,1490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,270)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(260,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,190)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(260,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,1710)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1890)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(490,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(560,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(610,860)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(310,770)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(700,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(260,1490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(260,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(410,1230)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(490,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1020)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(310,1250)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400A"/> </comp> <comp lib="4" loc="(260,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(310,450)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(700,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,1920)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,1550)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(700,1910)" name="D-latch"/> </circuit> <circuit name="TRIANGLE_LINEAR_DOWN_COUNTER"> <a name="circuit" val="TRIANGLE_LINEAR_DOWN_COUNTER"/> <a name="clabel" val="TRIANGLE LINEAR DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M61,42 Q65,52 69,42" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6ad2ff" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="174">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="244">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="304">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="104">W4008</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="124">W400B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="224">TCO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="304">TRI/LC</text> <circ-port height="8" pin="80,100" width="8" x="46" y="56"/> <circ-port height="8" pin="80,200" width="8" x="46" y="96"/> <circ-port height="8" pin="80,1490" width="8" x="46" y="116"/> <circ-port height="8" pin="80,1610" width="8" x="46" y="296"/> <circ-port height="8" pin="80,160" width="8" x="46" y="316"/> <circ-port height="8" pin="80,250" width="8" x="46" y="166"/> <circ-port height="8" pin="80,400" width="8" x="46" y="176"/> <circ-port height="8" pin="80,550" width="8" x="46" y="186"/> <circ-port height="8" pin="80,700" width="8" x="46" y="196"/> <circ-port height="8" pin="80,850" width="8" x="46" y="206"/> <circ-port height="8" pin="80,1000" width="8" x="46" y="216"/> <circ-port height="10" pin="890,1210" width="10" x="195" y="215"/> <circ-port height="8" pin="80,1150" width="8" x="46" y="226"/> <circ-port height="8" pin="80,1390" width="8" x="46" y="236"/> <circ-port height="10" pin="890,1660" width="10" x="195" y="295"/> <circ-anchor facing="east" height="6" width="6" x="97" y="37"/> </appear> <wire from="(470,980)" to="(470,1050)"/> <wire from="(450,920)" to="(510,920)"/> <wire from="(230,1290)" to="(870,1290)"/> <wire from="(80,550)" to="(140,550)"/> <wire from="(100,730)" to="(160,730)"/> <wire from="(550,390)" to="(600,390)"/> <wire from="(200,1660)" to="(890,1660)"/> <wire from="(280,1220)" to="(400,1220)"/> <wire from="(370,830)" to="(370,980)"/> <wire from="(300,280)" to="(300,430)"/> <wire from="(120,980)" to="(120,1130)"/> <wire from="(390,1420)" to="(500,1420)"/> <wire from="(230,610)" to="(230,760)"/> <wire from="(160,560)" to="(160,580)"/> <wire from="(100,880)" to="(100,1030)"/> <wire from="(420,260)" to="(420,290)"/> <wire from="(380,700)" to="(380,730)"/> <wire from="(470,950)" to="(470,980)"/> <wire from="(280,450)" to="(320,450)"/> <wire from="(390,1440)" to="(480,1440)"/> <wire from="(470,800)" to="(560,800)"/> <wire from="(660,1140)" to="(660,1180)"/> <wire from="(580,370)" to="(600,370)"/> <wire from="(180,830)" to="(270,830)"/> <wire from="(640,990)" to="(660,990)"/> <wire from="(300,730)" to="(320,730)"/> <wire from="(230,1060)" to="(250,1060)"/> <wire from="(310,1380)" to="(330,1380)"/> <wire from="(430,380)" to="(450,380)"/> <wire from="(370,1260)" to="(840,1260)"/> <wire from="(120,230)" to="(140,230)"/> <wire from="(380,430)" to="(660,430)"/> <wire from="(500,300)" to="(510,300)"/> <wire from="(470,750)" to="(480,750)"/> <wire from="(80,1490)" to="(410,1490)"/> <wire from="(430,850)" to="(510,850)"/> <wire from="(270,830)" to="(270,890)"/> <wire from="(400,560)" to="(400,620)"/> <wire from="(550,910)" to="(560,910)"/> <wire from="(470,230)" to="(470,300)"/> <wire from="(790,1480)" to="(840,1480)"/> <wire from="(80,1000)" to="(140,1000)"/> <wire from="(100,1420)" to="(160,1420)"/> <wire from="(100,1180)" to="(160,1180)"/> <wire from="(550,840)" to="(600,840)"/> <wire from="(280,470)" to="(400,470)"/> <wire from="(560,1210)" to="(560,1490)"/> <wire from="(230,1060)" to="(230,1210)"/> <wire from="(300,730)" to="(300,880)"/> <wire from="(160,1010)" to="(160,1030)"/> <wire from="(120,230)" to="(120,380)"/> <wire from="(420,710)" to="(420,740)"/> <wire from="(380,1150)" to="(380,1180)"/> <wire from="(280,900)" to="(320,900)"/> <wire from="(450,530)" to="(450,620)"/> <wire from="(580,370)" to="(580,520)"/> <wire from="(470,530)" to="(510,530)"/> <wire from="(560,610)" to="(560,650)"/> <wire from="(660,390)" to="(660,430)"/> <wire from="(580,820)" to="(600,820)"/> <wire from="(640,240)" to="(660,240)"/> <wire from="(300,1180)" to="(320,1180)"/> <wire from="(370,530)" to="(390,530)"/> <wire from="(430,830)" to="(450,830)"/> <wire from="(310,1320)" to="(310,1360)"/> <wire from="(380,880)" to="(660,880)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(380,550)" to="(390,550)"/> <wire from="(580,100)" to="(580,220)"/> <wire from="(470,1200)" to="(480,1200)"/> <wire from="(500,750)" to="(510,750)"/> <wire from="(400,1010)" to="(400,1070)"/> <wire from="(350,590)" to="(420,590)"/> <wire from="(470,680)" to="(470,750)"/> <wire from="(450,620)" to="(510,620)"/> <wire from="(80,250)" to="(140,250)"/> <wire from="(100,430)" to="(160,430)"/> <wire from="(480,1440)" to="(480,1570)"/> <wire from="(280,920)" to="(400,920)"/> <wire from="(580,1120)" to="(580,1400)"/> <wire from="(370,530)" to="(370,680)"/> <wire from="(120,680)" to="(120,830)"/> <wire from="(230,310)" to="(230,460)"/> <wire from="(160,260)" to="(160,280)"/> <wire from="(100,580)" to="(100,730)"/> <wire from="(420,1160)" to="(420,1190)"/> <wire from="(470,650)" to="(470,680)"/> <wire from="(380,400)" to="(380,430)"/> <wire from="(450,980)" to="(450,1070)"/> <wire from="(470,980)" to="(510,980)"/> <wire from="(580,820)" to="(580,970)"/> <wire from="(560,1060)" to="(560,1100)"/> <wire from="(470,500)" to="(560,500)"/> <wire from="(660,840)" to="(660,880)"/> <wire from="(310,1380)" to="(310,1610)"/> <wire from="(180,530)" to="(270,530)"/> <wire from="(80,160)" to="(300,160)"/> <wire from="(640,690)" to="(660,690)"/> <wire from="(310,1320)" to="(660,1320)"/> <wire from="(300,430)" to="(320,430)"/> <wire from="(370,980)" to="(390,980)"/> <wire from="(120,1130)" to="(140,1130)"/> <wire from="(120,1370)" to="(140,1370)"/> <wire from="(230,760)" to="(250,760)"/> <wire from="(380,1000)" to="(390,1000)"/> <wire from="(470,450)" to="(480,450)"/> <wire from="(430,550)" to="(510,550)"/> <wire from="(730,1550)" to="(730,1610)"/> <wire from="(270,530)" to="(270,590)"/> <wire from="(400,260)" to="(400,320)"/> <wire from="(480,1380)" to="(480,1440)"/> <wire from="(550,610)" to="(560,610)"/> <wire from="(500,1200)" to="(510,1200)"/> <wire from="(350,1040)" to="(420,1040)"/> <wire from="(480,1570)" to="(600,1570)"/> <wire from="(470,1130)" to="(470,1200)"/> <wire from="(450,1070)" to="(510,1070)"/> <wire from="(80,700)" to="(140,700)"/> <wire from="(100,880)" to="(160,880)"/> <wire from="(700,1570)" to="(750,1570)"/> <wire from="(550,540)" to="(600,540)"/> <wire from="(450,1480)" to="(500,1480)"/> <wire from="(580,1400)" to="(580,1470)"/> <wire from="(370,980)" to="(370,1130)"/> <wire from="(100,200)" to="(100,280)"/> <wire from="(300,430)" to="(300,580)"/> <wire from="(100,1030)" to="(100,1180)"/> <wire from="(230,1210)" to="(230,1290)"/> <wire from="(230,760)" to="(230,910)"/> <wire from="(160,710)" to="(160,730)"/> <wire from="(420,410)" to="(420,440)"/> <wire from="(380,850)" to="(380,880)"/> <wire from="(470,1100)" to="(470,1130)"/> <wire from="(660,1320)" to="(660,1400)"/> <wire from="(120,140)" to="(120,230)"/> <wire from="(280,600)" to="(320,600)"/> <wire from="(450,230)" to="(450,320)"/> <wire from="(470,230)" to="(510,230)"/> <wire from="(560,310)" to="(560,350)"/> <wire from="(470,950)" to="(560,950)"/> <wire from="(580,1400)" to="(600,1400)"/> <wire from="(580,520)" to="(600,520)"/> <wire from="(180,980)" to="(270,980)"/> <wire from="(640,1140)" to="(660,1140)"/> <wire from="(730,1550)" to="(750,1550)"/> <wire from="(230,1210)" to="(250,1210)"/> <wire from="(300,880)" to="(320,880)"/> <wire from="(370,230)" to="(390,230)"/> <wire from="(180,1370)" to="(330,1370)"/> <wire from="(430,530)" to="(450,530)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(380,580)" to="(660,580)"/> <wire from="(500,450)" to="(510,450)"/> <wire from="(470,900)" to="(480,900)"/> <wire from="(380,250)" to="(390,250)"/> <wire from="(430,1000)" to="(510,1000)"/> <wire from="(270,980)" to="(270,1040)"/> <wire from="(400,710)" to="(400,770)"/> <wire from="(300,160)" to="(300,280)"/> <wire from="(550,1060)" to="(560,1060)"/> <wire from="(350,290)" to="(420,290)"/> <wire from="(470,380)" to="(470,450)"/> <wire from="(450,320)" to="(510,320)"/> <wire from="(80,1150)" to="(140,1150)"/> <wire from="(80,1390)" to="(140,1390)"/> <wire from="(550,990)" to="(600,990)"/> <wire from="(280,620)" to="(400,620)"/> <wire from="(560,1490)" to="(600,1490)"/> <wire from="(300,880)" to="(300,1030)"/> <wire from="(370,230)" to="(370,380)"/> <wire from="(120,380)" to="(120,530)"/> <wire from="(500,1420)" to="(600,1420)"/> <wire from="(700,1540)" to="(700,1570)"/> <wire from="(160,1160)" to="(160,1180)"/> <wire from="(160,1400)" to="(160,1420)"/> <wire from="(100,280)" to="(100,430)"/> <wire from="(640,1470)" to="(750,1470)"/> <wire from="(390,1390)" to="(390,1420)"/> <wire from="(420,860)" to="(420,890)"/> <wire from="(80,1610)" to="(310,1610)"/> <wire from="(470,350)" to="(470,380)"/> <wire from="(280,1050)" to="(320,1050)"/> <wire from="(450,680)" to="(450,770)"/> <wire from="(580,520)" to="(580,670)"/> <wire from="(470,680)" to="(510,680)"/> <wire from="(560,760)" to="(560,800)"/> <wire from="(660,540)" to="(660,580)"/> <wire from="(180,230)" to="(270,230)"/> <wire from="(580,970)" to="(600,970)"/> <wire from="(640,390)" to="(660,390)"/> <wire from="(370,680)" to="(390,680)"/> <wire from="(430,980)" to="(450,980)"/> <wire from="(380,1030)" to="(660,1030)"/> <wire from="(120,830)" to="(140,830)"/> <wire from="(230,460)" to="(250,460)"/> <wire from="(380,700)" to="(390,700)"/> <wire from="(120,1130)" to="(120,1370)"/> <wire from="(500,1420)" to="(500,1480)"/> <wire from="(430,250)" to="(510,250)"/> <wire from="(120,100)" to="(580,100)"/> <wire from="(730,1490)" to="(730,1550)"/> <wire from="(270,230)" to="(270,290)"/> <wire from="(400,1160)" to="(400,1220)"/> <wire from="(500,900)" to="(510,900)"/> <wire from="(550,310)" to="(560,310)"/> <wire from="(350,740)" to="(420,740)"/> <wire from="(560,1210)" to="(890,1210)"/> <wire from="(470,830)" to="(470,900)"/> <wire from="(450,770)" to="(510,770)"/> <wire from="(100,580)" to="(160,580)"/> <wire from="(80,400)" to="(140,400)"/> <wire from="(550,240)" to="(600,240)"/> <wire from="(280,1070)" to="(400,1070)"/> <wire from="(840,1260)" to="(840,1480)"/> <wire from="(370,680)" to="(370,830)"/> <wire from="(120,830)" to="(120,980)"/> <wire from="(230,460)" to="(230,610)"/> <wire from="(160,410)" to="(160,430)"/> <wire from="(100,730)" to="(100,880)"/> <wire from="(380,550)" to="(380,580)"/> <wire from="(390,1440)" to="(390,1470)"/> <wire from="(470,800)" to="(470,830)"/> <wire from="(310,1610)" to="(730,1610)"/> <wire from="(80,100)" to="(120,100)"/> <wire from="(280,300)" to="(320,300)"/> <wire from="(450,1130)" to="(450,1220)"/> <wire from="(580,970)" to="(580,1120)"/> <wire from="(470,1130)" to="(510,1130)"/> <wire from="(470,650)" to="(560,650)"/> <wire from="(660,990)" to="(660,1030)"/> <wire from="(580,220)" to="(600,220)"/> <wire from="(180,680)" to="(270,680)"/> <wire from="(640,1400)" to="(660,1400)"/> <wire from="(640,840)" to="(660,840)"/> <wire from="(730,1490)" to="(750,1490)"/> <wire from="(300,580)" to="(320,580)"/> <wire from="(430,230)" to="(450,230)"/> <wire from="(370,1130)" to="(390,1130)"/> <wire from="(390,1470)" to="(410,1470)"/> <wire from="(390,1390)" to="(410,1390)"/> <wire from="(80,200)" to="(100,200)"/> <wire from="(380,280)" to="(660,280)"/> <wire from="(230,910)" to="(250,910)"/> <wire from="(380,1150)" to="(390,1150)"/> <wire from="(470,600)" to="(480,600)"/> <wire from="(430,700)" to="(510,700)"/> <wire from="(270,680)" to="(270,740)"/> <wire from="(400,410)" to="(400,470)"/> <wire from="(550,760)" to="(560,760)"/> <wire from="(350,1190)" to="(420,1190)"/> <wire from="(870,1290)" to="(870,1560)"/> <wire from="(450,1220)" to="(510,1220)"/> <wire from="(370,1130)" to="(370,1260)"/> <wire from="(80,850)" to="(140,850)"/> <wire from="(700,1480)" to="(750,1480)"/> <wire from="(100,1030)" to="(160,1030)"/> <wire from="(550,690)" to="(600,690)"/> <wire from="(280,320)" to="(400,320)"/> <wire from="(640,1570)" to="(700,1570)"/> <wire from="(300,580)" to="(300,730)"/> <wire from="(470,210)" to="(470,230)"/> <wire from="(230,910)" to="(230,1060)"/> <wire from="(120,100)" to="(120,120)"/> <wire from="(160,860)" to="(160,880)"/> <wire from="(420,560)" to="(420,590)"/> <wire from="(380,1000)" to="(380,1030)"/> <wire from="(580,1470)" to="(580,1550)"/> <wire from="(280,750)" to="(320,750)"/> <wire from="(450,380)" to="(450,470)"/> <wire from="(580,220)" to="(580,370)"/> <wire from="(470,380)" to="(510,380)"/> <wire from="(560,460)" to="(560,500)"/> <wire from="(470,1100)" to="(560,1100)"/> <wire from="(660,240)" to="(660,280)"/> <wire from="(700,1480)" to="(700,1520)"/> <wire from="(580,670)" to="(600,670)"/> <wire from="(580,1470)" to="(600,1470)"/> <wire from="(180,1130)" to="(270,1130)"/> <wire from="(580,1550)" to="(600,1550)"/> <wire from="(300,1030)" to="(320,1030)"/> <wire from="(310,1360)" to="(330,1360)"/> <wire from="(370,380)" to="(390,380)"/> <wire from="(430,680)" to="(450,680)"/> <wire from="(120,530)" to="(140,530)"/> <wire from="(380,730)" to="(660,730)"/> <wire from="(180,1390)" to="(200,1390)"/> <wire from="(470,1050)" to="(480,1050)"/> <wire from="(500,600)" to="(510,600)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(430,1150)" to="(510,1150)"/> <wire from="(270,1130)" to="(270,1190)"/> <wire from="(400,860)" to="(400,920)"/> <wire from="(550,1210)" to="(560,1210)"/> <wire from="(350,440)" to="(420,440)"/> <wire from="(470,530)" to="(470,600)"/> <wire from="(450,470)" to="(510,470)"/> <wire from="(100,280)" to="(160,280)"/> <wire from="(550,1140)" to="(600,1140)"/> <wire from="(280,770)" to="(400,770)"/> <wire from="(200,1390)" to="(200,1660)"/> <wire from="(370,380)" to="(370,530)"/> <wire from="(300,1030)" to="(300,1180)"/> <wire from="(120,530)" to="(120,680)"/> <wire from="(100,430)" to="(100,580)"/> <wire from="(420,1010)" to="(420,1040)"/> <wire from="(470,500)" to="(470,530)"/> <wire from="(380,250)" to="(380,280)"/> <wire from="(280,1200)" to="(320,1200)"/> <wire from="(450,830)" to="(450,920)"/> <wire from="(370,1370)" to="(410,1370)"/> <wire from="(470,830)" to="(510,830)"/> <wire from="(580,670)" to="(580,820)"/> <wire from="(560,910)" to="(560,950)"/> <wire from="(470,350)" to="(560,350)"/> <wire from="(660,690)" to="(660,730)"/> <wire from="(180,380)" to="(270,380)"/> <wire from="(580,1120)" to="(600,1120)"/> <wire from="(640,540)" to="(660,540)"/> <wire from="(450,1380)" to="(480,1380)"/> <wire from="(300,280)" to="(320,280)"/> <wire from="(370,830)" to="(390,830)"/> <wire from="(430,1130)" to="(450,1130)"/> <wire from="(380,1180)" to="(660,1180)"/> <wire from="(120,980)" to="(140,980)"/> <wire from="(230,610)" to="(250,610)"/> <wire from="(380,850)" to="(390,850)"/> <wire from="(470,300)" to="(480,300)"/> <wire from="(100,1180)" to="(100,1420)"/> <wire from="(430,400)" to="(510,400)"/> <wire from="(270,380)" to="(270,440)"/> <wire from="(790,1560)" to="(870,1560)"/> <wire from="(500,1050)" to="(510,1050)"/> <wire from="(550,460)" to="(560,460)"/> <wire from="(350,890)" to="(420,890)"/> <comp lib="0" loc="(80,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="4" loc="(430,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="1" loc="(790,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(80,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(470,210)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(350,890)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(640,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(640,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(790,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(550,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(120,140)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(180,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(890,1660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI/LC"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(430,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(250,610)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="6" loc="(458,1499)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(180,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(640,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(129,1385)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="0" loc="(80,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(550,1140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(453,1315)" name="Text"> <a name="text" val="TRELOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(350,590)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,1060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4008"/> </comp> <comp lib="2" loc="(250,310)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="1" loc="(500,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(640,1480)" name="D-latch"/> <comp lib="1" loc="(500,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(430,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(640,1560)" name="D-latch"/> <comp lib="1" loc="(550,840)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(590,1416)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="2" loc="(250,460)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(890,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TCO"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(430,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="1" loc="(350,1190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(625,1597)" name="Text"> <a name="text" val="RELOAD LATCH 2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(250,1060)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(250,910)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(613,1206)" name="Text"> <a name="text" val="TCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(350,440)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,1040)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(581,1564)" name="Text"> <a name="text" val="6,7"/> </comp> <comp lib="6" loc="(815,1554)" name="Text"> <a name="text" val="TLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(640,1410)" name="D-latch"/> <comp lib="0" loc="(80,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(550,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(622,1517)" name="Text"> <a name="text" val="TCO LATCH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(391,1363)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="4" loc="(430,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(250,760)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(180,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(590,1486)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="4" loc="(180,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(500,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(429,1435)" name="Text"> <a name="text" val="RELOAD FF"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(500,1050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(180,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(638,1444)" name="Text"> <a name="text" val="RELOAD LATCH 1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(640,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(813,1473)" name="Text"> <a name="text" val="TSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(550,690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(455,1372)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(543,1493)" name="Text"> <a name="text" val="TCO"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(500,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(640,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(640,370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(250,1210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,390)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,910)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(80,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(180,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,740)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(430,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(430,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(391,1505)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="4" loc="(180,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(550,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(640,220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(700,1520)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,240)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="TRIANGLE_OUTPUT_COUNTER"> <a name="circuit" val="TRIANGLE_OUTPUT_COUNTER"/> <a name="clabel" val="TRIANGLE OUTPUT COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 14"/> <appear> <path d="M63,50 Q67,60 71,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#feffc8" height="301" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="74">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="174">TTSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="334">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="114">TRIO0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="144">TRIO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="174">TRIO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="176" y="204">TRIO3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="94">W401A</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="234">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="274">D4</text> <circ-port height="8" pin="80,40" width="8" x="46" y="66"/> <circ-port height="8" pin="80,80" width="8" x="46" y="166"/> <circ-port height="8" pin="80,120" width="8" x="46" y="326"/> <circ-port height="10" pin="650,130" width="10" x="195" y="105"/> <circ-port height="10" pin="650,300" width="10" x="195" y="135"/> <circ-port height="10" pin="650,470" width="10" x="195" y="165"/> <circ-port height="10" pin="650,640" width="10" x="195" y="195"/> <circ-port height="8" pin="80,240" width="8" x="46" y="86"/> <circ-port height="8" pin="80,160" width="8" x="46" y="226"/> <circ-port height="8" pin="80,330" width="8" x="46" y="236"/> <circ-port height="8" pin="80,500" width="8" x="46" y="246"/> <circ-port height="8" pin="80,670" width="8" x="46" y="256"/> <circ-port height="8" pin="80,840" width="8" x="46" y="266"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(330,520)" to="(330,590)"/> <wire from="(330,120)" to="(580,120)"/> <wire from="(430,510)" to="(480,510)"/> <wire from="(160,570)" to="(200,570)"/> <wire from="(300,700)" to="(300,730)"/> <wire from="(260,180)" to="(260,210)"/> <wire from="(350,840)" to="(390,840)"/> <wire from="(560,140)" to="(560,310)"/> <wire from="(350,440)" to="(440,440)"/> <wire from="(250,840)" to="(270,840)"/> <wire from="(310,180)" to="(330,180)"/> <wire from="(310,500)" to="(330,500)"/> <wire from="(180,720)" to="(180,890)"/> <wire from="(460,490)" to="(480,490)"/> <wire from="(110,410)" to="(110,580)"/> <wire from="(260,550)" to="(540,550)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(380,740)" to="(390,740)"/> <wire from="(260,860)" to="(270,860)"/> <wire from="(350,230)" to="(360,230)"/> <wire from="(280,360)" to="(280,420)"/> <wire from="(350,270)" to="(350,330)"/> <wire from="(230,900)" to="(300,900)"/> <wire from="(80,670)" to="(150,670)"/> <wire from="(330,690)" to="(390,690)"/> <wire from="(330,930)" to="(390,930)"/> <wire from="(350,670)" to="(350,740)"/> <wire from="(160,590)" to="(280,590)"/> <wire from="(440,410)" to="(440,440)"/> <wire from="(300,190)" to="(300,220)"/> <wire from="(350,330)" to="(390,330)"/> <wire from="(540,510)" to="(540,550)"/> <wire from="(560,480)" to="(580,480)"/> <wire from="(520,680)" to="(540,680)"/> <wire from="(630,470)" to="(650,470)"/> <wire from="(180,210)" to="(180,380)"/> <wire from="(330,460)" to="(330,500)"/> <wire from="(460,490)" to="(460,660)"/> <wire from="(110,750)" to="(130,750)"/> <wire from="(250,330)" to="(270,330)"/> <wire from="(430,920)" to="(440,920)"/> <wire from="(260,350)" to="(270,350)"/> <wire from="(380,230)" to="(390,230)"/> <wire from="(230,390)" to="(300,390)"/> <wire from="(80,160)" to="(150,160)"/> <wire from="(150,840)" to="(150,900)"/> <wire from="(330,420)" to="(390,420)"/> <wire from="(330,180)" to="(390,180)"/> <wire from="(330,860)" to="(330,930)"/> <wire from="(330,460)" to="(580,460)"/> <wire from="(350,160)" to="(350,230)"/> <wire from="(430,850)" to="(480,850)"/> <wire from="(80,80)" to="(250,80)"/> <wire from="(260,520)" to="(260,550)"/> <wire from="(160,910)" to="(200,910)"/> <wire from="(330,800)" to="(560,800)"/> <wire from="(560,480)" to="(560,650)"/> <wire from="(350,780)" to="(440,780)"/> <wire from="(310,520)" to="(330,520)"/> <wire from="(110,750)" to="(110,920)"/> <wire from="(250,330)" to="(250,500)"/> <wire from="(310,840)" to="(330,840)"/> <wire from="(460,830)" to="(480,830)"/> <wire from="(520,170)" to="(540,170)"/> <wire from="(260,890)" to="(540,890)"/> <wire from="(110,240)" to="(130,240)"/> <wire from="(180,550)" to="(200,550)"/> <wire from="(430,410)" to="(440,410)"/> <wire from="(350,570)" to="(360,570)"/> <wire from="(280,700)" to="(280,760)"/> <wire from="(350,610)" to="(350,670)"/> <wire from="(150,330)" to="(150,390)"/> <wire from="(330,350)" to="(330,420)"/> <wire from="(430,340)" to="(480,340)"/> <wire from="(160,930)" to="(280,930)"/> <wire from="(180,120)" to="(180,210)"/> <wire from="(440,750)" to="(440,780)"/> <wire from="(160,400)" to="(200,400)"/> <wire from="(300,530)" to="(300,560)"/> <wire from="(350,670)" to="(390,670)"/> <wire from="(540,850)" to="(540,890)"/> <wire from="(350,270)" to="(440,270)"/> <wire from="(250,670)" to="(270,670)"/> <wire from="(310,330)" to="(330,330)"/> <wire from="(180,550)" to="(180,720)"/> <wire from="(460,320)" to="(480,320)"/> <wire from="(110,240)" to="(110,410)"/> <wire from="(260,380)" to="(540,380)"/> <wire from="(330,800)" to="(330,840)"/> <wire from="(380,570)" to="(390,570)"/> <wire from="(260,690)" to="(270,690)"/> <wire from="(280,190)" to="(280,250)"/> <wire from="(230,730)" to="(300,730)"/> <wire from="(80,500)" to="(150,500)"/> <wire from="(330,520)" to="(390,520)"/> <wire from="(330,760)" to="(390,760)"/> <wire from="(350,500)" to="(350,570)"/> <wire from="(80,40)" to="(460,40)"/> <wire from="(160,420)" to="(280,420)"/> <wire from="(350,150)" to="(350,160)"/> <wire from="(250,80)" to="(250,160)"/> <wire from="(440,240)" to="(440,270)"/> <wire from="(260,860)" to="(260,890)"/> <wire from="(350,160)" to="(390,160)"/> <wire from="(80,120)" to="(180,120)"/> <wire from="(540,340)" to="(540,380)"/> <wire from="(520,510)" to="(540,510)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(630,300)" to="(650,300)"/> <wire from="(310,860)" to="(330,860)"/> <wire from="(330,290)" to="(330,330)"/> <wire from="(460,320)" to="(460,490)"/> <wire from="(110,580)" to="(130,580)"/> <wire from="(250,670)" to="(250,840)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(180,890)" to="(200,890)"/> <wire from="(430,750)" to="(440,750)"/> <wire from="(260,180)" to="(270,180)"/> <wire from="(350,910)" to="(360,910)"/> <wire from="(230,220)" to="(300,220)"/> <wire from="(150,670)" to="(150,730)"/> <wire from="(330,250)" to="(390,250)"/> <wire from="(330,690)" to="(330,760)"/> <wire from="(330,290)" to="(580,290)"/> <wire from="(430,680)" to="(480,680)"/> <wire from="(260,350)" to="(260,380)"/> <wire from="(160,740)" to="(200,740)"/> <wire from="(300,870)" to="(300,900)"/> <wire from="(560,310)" to="(560,480)"/> <wire from="(350,610)" to="(440,610)"/> <wire from="(310,350)" to="(330,350)"/> <wire from="(310,670)" to="(330,670)"/> <wire from="(250,160)" to="(250,330)"/> <wire from="(460,660)" to="(480,660)"/> <wire from="(110,580)" to="(110,750)"/> <wire from="(260,720)" to="(540,720)"/> <wire from="(180,380)" to="(200,380)"/> <wire from="(380,910)" to="(390,910)"/> <wire from="(430,240)" to="(440,240)"/> <wire from="(350,400)" to="(360,400)"/> <wire from="(280,530)" to="(280,590)"/> <wire from="(350,440)" to="(350,500)"/> <wire from="(80,840)" to="(150,840)"/> <wire from="(150,160)" to="(150,220)"/> <wire from="(330,860)" to="(390,860)"/> <wire from="(350,840)" to="(350,910)"/> <wire from="(330,180)" to="(330,250)"/> <wire from="(430,170)" to="(480,170)"/> <wire from="(160,760)" to="(280,760)"/> <wire from="(440,580)" to="(440,610)"/> <wire from="(160,230)" to="(200,230)"/> <wire from="(300,360)" to="(300,390)"/> <wire from="(350,500)" to="(390,500)"/> <wire from="(540,680)" to="(540,720)"/> <wire from="(80,240)" to="(110,240)"/> <wire from="(520,850)" to="(540,850)"/> <wire from="(560,650)" to="(580,650)"/> <wire from="(630,640)" to="(650,640)"/> <wire from="(250,500)" to="(270,500)"/> <wire from="(310,160)" to="(330,160)"/> <wire from="(180,380)" to="(180,550)"/> <wire from="(460,150)" to="(480,150)"/> <wire from="(260,210)" to="(540,210)"/> <wire from="(330,630)" to="(330,670)"/> <wire from="(460,660)" to="(460,830)"/> <wire from="(110,920)" to="(130,920)"/> <wire from="(260,520)" to="(270,520)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(230,560)" to="(300,560)"/> <wire from="(80,330)" to="(150,330)"/> <wire from="(330,350)" to="(390,350)"/> <wire from="(330,590)" to="(390,590)"/> <wire from="(350,330)" to="(350,400)"/> <wire from="(330,630)" to="(580,630)"/> <wire from="(160,250)" to="(280,250)"/> <wire from="(260,690)" to="(260,720)"/> <wire from="(560,650)" to="(560,800)"/> <wire from="(540,170)" to="(540,210)"/> <wire from="(520,340)" to="(540,340)"/> <wire from="(560,140)" to="(580,140)"/> <wire from="(630,130)" to="(650,130)"/> <wire from="(460,40)" to="(460,150)"/> <wire from="(310,690)" to="(330,690)"/> <wire from="(330,120)" to="(330,160)"/> <wire from="(460,150)" to="(460,320)"/> <wire from="(110,410)" to="(130,410)"/> <wire from="(250,500)" to="(250,670)"/> <wire from="(180,720)" to="(200,720)"/> <wire from="(430,580)" to="(440,580)"/> <wire from="(350,740)" to="(360,740)"/> <wire from="(280,870)" to="(280,930)"/> <wire from="(350,780)" to="(350,840)"/> <wire from="(150,500)" to="(150,560)"/> <comp lib="4" loc="(310,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(650,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(130,410)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(630,640)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,470)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(520,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(520,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,850)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,300)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(130,240)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(130,920)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(520,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(630,130)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W401A"/> </comp> <comp lib="4" loc="(310,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(471,923)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(430,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(520,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(310,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,170)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TTSTEP"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRI0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(430,340)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,390)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(520,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="2" loc="(130,750)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(350,150)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(380,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(310,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(380,910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,220)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(130,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(380,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,560)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(430,920)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,680)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,900)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(310,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="NOISE_CHANNEL"> <a name="circuit" val="NOISE_CHANNEL"/> <a name="clabel" val="NOISE CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M73,51 Q77,61 81,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff287c" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="234">RND0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="254">RND1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="274">RND2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="294">RND3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="75">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="684" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="345">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="305">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="284">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="265">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="244">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="224">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="693" y="203">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="683" y="155">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="174">W400F</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="690" y="415">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="680" y="444">NORND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="394">/LFO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="682" y="134">W400C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="314">#RND/LC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="374">LOCK</text> <circ-port height="8" pin="100,40" width="8" x="706" y="66"/> <circ-port height="8" pin="100,80" width="8" x="706" y="86"/> <circ-port height="8" pin="100,360" width="8" x="706" y="336"/> <circ-port height="8" pin="100,300" width="8" x="706" y="296"/> <circ-port height="8" pin="100,270" width="8" x="706" y="276"/> <circ-port height="8" pin="100,240" width="8" x="706" y="256"/> <circ-port height="8" pin="100,210" width="8" x="706" y="236"/> <circ-port height="8" pin="100,180" width="8" x="706" y="216"/> <circ-port height="8" pin="100,150" width="8" x="706" y="196"/> <circ-port height="8" pin="100,650" width="8" x="706" y="146"/> <circ-port height="8" pin="100,750" width="8" x="706" y="166"/> <circ-port height="8" pin="100,870" width="8" x="706" y="406"/> <circ-port height="8" pin="100,570" width="8" x="706" y="436"/> <circ-port height="8" pin="100,910" width="8" x="706" y="386"/> <circ-port height="8" pin="100,710" width="8" x="706" y="126"/> <circ-port height="10" pin="620,680" width="10" x="45" y="225"/> <circ-port height="10" pin="620,740" width="10" x="45" y="245"/> <circ-port height="10" pin="620,800" width="10" x="45" y="265"/> <circ-port height="10" pin="620,860" width="10" x="45" y="285"/> <circ-port height="10" pin="620,910" width="10" x="45" y="305"/> <circ-port height="8" pin="100,610" width="8" x="706" y="366"/> <circ-anchor facing="east" height="6" width="6" x="137" y="47"/> </appear> <wire from="(130,230)" to="(130,240)"/> <wire from="(130,210)" to="(130,220)"/> <wire from="(100,300)" to="(150,300)"/> <wire from="(100,360)" to="(150,360)"/> <wire from="(320,630)" to="(320,710)"/> <wire from="(100,570)" to="(400,570)"/> <wire from="(100,750)" to="(400,750)"/> <wire from="(100,910)" to="(400,910)"/> <wire from="(100,270)" to="(140,270)"/> <wire from="(140,240)" to="(140,270)"/> <wire from="(140,180)" to="(140,210)"/> <wire from="(630,590)" to="(630,630)"/> <wire from="(630,370)" to="(630,410)"/> <wire from="(100,80)" to="(130,80)"/> <wire from="(100,40)" to="(130,40)"/> <wire from="(100,240)" to="(130,240)"/> <wire from="(600,910)" to="(620,910)"/> <wire from="(380,470)" to="(400,470)"/> <wire from="(380,210)" to="(400,210)"/> <wire from="(380,230)" to="(400,230)"/> <wire from="(380,670)" to="(400,670)"/> <wire from="(380,790)" to="(400,790)"/> <wire from="(120,730)" to="(400,730)"/> <wire from="(120,590)" to="(400,590)"/> <wire from="(380,510)" to="(400,510)"/> <wire from="(380,810)" to="(400,810)"/> <wire from="(380,830)" to="(400,830)"/> <wire from="(100,610)" to="(120,610)"/> <wire from="(100,710)" to="(120,710)"/> <wire from="(130,220)" to="(150,220)"/> <wire from="(150,250)" to="(150,300)"/> <wire from="(150,150)" to="(150,200)"/> <wire from="(300,410)" to="(630,410)"/> <wire from="(140,240)" to="(150,240)"/> <wire from="(270,370)" to="(400,370)"/> <wire from="(270,870)" to="(400,870)"/> <wire from="(300,410)" to="(300,530)"/> <wire from="(230,810)" to="(360,810)"/> <wire from="(230,230)" to="(360,230)"/> <wire from="(150,550)" to="(400,550)"/> <wire from="(170,230)" to="(230,230)"/> <wire from="(230,230)" to="(230,810)"/> <wire from="(320,630)" to="(630,630)"/> <wire from="(100,150)" to="(150,150)"/> <wire from="(100,870)" to="(270,870)"/> <wire from="(120,590)" to="(120,610)"/> <wire from="(120,710)" to="(120,730)"/> <wire from="(300,530)" to="(400,530)"/> <wire from="(100,180)" to="(140,180)"/> <wire from="(100,650)" to="(130,650)"/> <wire from="(100,210)" to="(130,210)"/> <wire from="(600,800)" to="(620,800)"/> <wire from="(600,740)" to="(620,740)"/> <wire from="(600,680)" to="(620,680)"/> <wire from="(600,860)" to="(620,860)"/> <wire from="(380,100)" to="(400,100)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(380,120)" to="(400,120)"/> <wire from="(380,220)" to="(400,220)"/> <wire from="(380,240)" to="(400,240)"/> <wire from="(380,780)" to="(400,780)"/> <wire from="(380,800)" to="(400,800)"/> <wire from="(380,820)" to="(400,820)"/> <wire from="(600,370)" to="(630,370)"/> <wire from="(600,590)" to="(630,590)"/> <wire from="(130,230)" to="(150,230)"/> <wire from="(270,370)" to="(270,870)"/> <wire from="(140,210)" to="(150,210)"/> <wire from="(320,710)" to="(400,710)"/> <wire from="(150,360)" to="(150,550)"/> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(130,650)" name="Tunnel"> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(100,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(380,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(450,650)" name="ENVELOPE_GENERATOR"/> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(620,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(130,40)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(380,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(620,800)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(170,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(380,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(130,80)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(380,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp loc="(460,90)" name="NOISE_FREQUENCY_LFSR"/> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO1"/> </comp> <comp lib="0" loc="(360,810)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(360,230)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NORND"/> </comp> <comp lib="0" loc="(620,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#RND/LC"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,450)" name="RANDOM_LFSR"/> <comp lib="0" loc="(380,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(620,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(620,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RND3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(100,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> </circuit> <circuit name="NOISE_FREQUENCY_LFSR"> <a name="circuit" val="NOISE_FREQUENCY_LFSR"/> <a name="clabel" val="NOISE FREQUENCY LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M87,51 Q91,61 95,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffdf40" height="311" stroke="#000000" stroke-width="2" width="200" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="334">RSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="174">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="334">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="84">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">W400E</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,1400" width="8" x="46" y="76"/> <circ-port height="8" pin="90,1550" width="8" x="46" y="326"/> <circ-port height="8" pin="90,720" width="8" x="46" y="166"/> <circ-port height="8" pin="90,780" width="8" x="46" y="176"/> <circ-port height="8" pin="90,840" width="8" x="46" y="186"/> <circ-port height="8" pin="90,900" width="8" x="46" y="196"/> <circ-port height="10" pin="1070,1500" width="10" x="245" y="325"/> <circ-port height="8" pin="90,980" width="8" x="46" y="96"/> <circ-anchor facing="east" height="6" width="6" x="107" y="47"/> </appear> <wire from="(140,30)" to="(650,30)"/> <wire from="(190,1550)" to="(570,1550)"/> <wire from="(800,630)" to="(800,950)"/> <wire from="(570,1480)" to="(570,1550)"/> <wire from="(490,1350)" to="(490,1500)"/> <wire from="(140,90)" to="(140,700)"/> <wire from="(600,600)" to="(600,640)"/> <wire from="(600,120)" to="(600,160)"/> <wire from="(600,1080)" to="(600,1120)"/> <wire from="(600,840)" to="(600,880)"/> <wire from="(600,360)" to="(600,400)"/> <wire from="(600,1320)" to="(600,1360)"/> <wire from="(420,1470)" to="(510,1470)"/> <wire from="(1060,60)" to="(1060,1390)"/> <wire from="(350,760)" to="(440,760)"/> <wire from="(550,1460)" to="(570,1460)"/> <wire from="(90,980)" to="(180,980)"/> <wire from="(400,1470)" to="(420,1470)"/> <wire from="(330,1400)" to="(330,1510)"/> <wire from="(530,860)" to="(620,860)"/> <wire from="(530,380)" to="(620,380)"/> <wire from="(530,1340)" to="(620,1340)"/> <wire from="(530,1100)" to="(620,1100)"/> <wire from="(530,620)" to="(620,620)"/> <wire from="(530,140)" to="(620,140)"/> <wire from="(530,880)" to="(600,880)"/> <wire from="(530,1360)" to="(600,1360)"/> <wire from="(530,400)" to="(600,400)"/> <wire from="(530,640)" to="(600,640)"/> <wire from="(530,1120)" to="(600,1120)"/> <wire from="(530,160)" to="(600,160)"/> <wire from="(730,1370)" to="(730,1430)"/> <wire from="(380,190)" to="(380,700)"/> <wire from="(90,840)" to="(160,840)"/> <wire from="(140,700)" to="(140,760)"/> <wire from="(360,1440)" to="(420,1440)"/> <wire from="(350,720)" to="(400,720)"/> <wire from="(750,1070)" to="(750,1140)"/> <wire from="(550,930)" to="(590,930)"/> <wire from="(550,450)" to="(590,450)"/> <wire from="(550,690)" to="(590,690)"/> <wire from="(550,1170)" to="(590,1170)"/> <wire from="(550,210)" to="(590,210)"/> <wire from="(840,650)" to="(840,1190)"/> <wire from="(520,170)" to="(520,190)"/> <wire from="(420,1190)" to="(520,1190)"/> <wire from="(200,820)" to="(240,820)"/> <wire from="(520,650)" to="(520,670)"/> <wire from="(520,410)" to="(520,430)"/> <wire from="(400,310)" to="(400,720)"/> <wire from="(880,1360)" to="(900,1360)"/> <wire from="(950,1270)" to="(970,1270)"/> <wire from="(650,90)" to="(670,90)"/> <wire from="(650,570)" to="(670,570)"/> <wire from="(650,1050)" to="(670,1050)"/> <wire from="(710,470)" to="(730,470)"/> <wire from="(650,330)" to="(670,330)"/> <wire from="(650,810)" to="(670,810)"/> <wire from="(650,1290)" to="(670,1290)"/> <wire from="(710,230)" to="(730,230)"/> <wire from="(710,950)" to="(730,950)"/> <wire from="(710,710)" to="(730,710)"/> <wire from="(710,1190)" to="(730,1190)"/> <wire from="(350,900)" to="(380,900)"/> <wire from="(820,1330)" to="(1040,1330)"/> <wire from="(140,30)" to="(140,70)"/> <wire from="(730,230)" to="(820,230)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(870,1420)" to="(900,1420)"/> <wire from="(420,430)" to="(420,740)"/> <wire from="(750,1070)" to="(820,1070)"/> <wire from="(650,90)" to="(650,210)"/> <wire from="(650,330)" to="(650,450)"/> <wire from="(650,810)" to="(650,930)"/> <wire from="(650,570)" to="(650,690)"/> <wire from="(650,1050)" to="(650,1170)"/> <wire from="(490,1500)" to="(1070,1500)"/> <wire from="(840,110)" to="(840,550)"/> <wire from="(440,1070)" to="(520,1070)"/> <wire from="(570,60)" to="(570,110)"/> <wire from="(570,540)" to="(570,590)"/> <wire from="(570,300)" to="(570,350)"/> <wire from="(570,1020)" to="(570,1070)"/> <wire from="(570,780)" to="(570,830)"/> <wire from="(570,1260)" to="(570,1310)"/> <wire from="(180,790)" to="(180,850)"/> <wire from="(460,950)" to="(520,950)"/> <wire from="(190,910)" to="(190,1550)"/> <wire from="(730,830)" to="(780,830)"/> <wire from="(90,30)" to="(140,30)"/> <wire from="(800,350)" to="(800,570)"/> <wire from="(360,1420)" to="(360,1440)"/> <wire from="(440,550)" to="(440,760)"/> <wire from="(350,840)" to="(460,840)"/> <wire from="(760,610)" to="(870,610)"/> <wire from="(900,1400)" to="(900,1420)"/> <wire from="(380,900)" to="(380,1310)"/> <wire from="(620,240)" to="(620,260)"/> <wire from="(620,720)" to="(620,740)"/> <wire from="(620,1200)" to="(620,1220)"/> <wire from="(620,480)" to="(620,500)"/> <wire from="(620,960)" to="(620,980)"/> <wire from="(90,1550)" to="(190,1550)"/> <wire from="(350,860)" to="(440,860)"/> <wire from="(550,1480)" to="(570,1480)"/> <wire from="(570,420)" to="(730,420)"/> <wire from="(570,180)" to="(730,180)"/> <wire from="(570,900)" to="(730,900)"/> <wire from="(570,660)" to="(730,660)"/> <wire from="(460,670)" to="(460,780)"/> <wire from="(310,1400)" to="(330,1400)"/> <wire from="(420,880)" to="(420,1190)"/> <wire from="(490,870)" to="(500,870)"/> <wire from="(490,390)" to="(500,390)"/> <wire from="(490,150)" to="(500,150)"/> <wire from="(490,1110)" to="(500,1110)"/> <wire from="(490,630)" to="(500,630)"/> <wire from="(650,30)" to="(650,90)"/> <wire from="(730,1310)" to="(730,1370)"/> <wire from="(90,780)" to="(160,780)"/> <wire from="(490,1350)" to="(500,1350)"/> <wire from="(190,850)" to="(190,910)"/> <wire from="(350,880)" to="(420,880)"/> <wire from="(730,350)" to="(730,420)"/> <wire from="(730,830)" to="(730,900)"/> <wire from="(730,110)" to="(730,180)"/> <wire from="(730,590)" to="(730,660)"/> <wire from="(950,600)" to="(950,1270)"/> <wire from="(630,470)" to="(670,470)"/> <wire from="(630,710)" to="(670,710)"/> <wire from="(630,230)" to="(670,230)"/> <wire from="(630,950)" to="(670,950)"/> <wire from="(630,1190)" to="(670,1190)"/> <wire from="(360,1470)" to="(360,1490)"/> <wire from="(350,800)" to="(520,800)"/> <wire from="(900,1380)" to="(940,1380)"/> <wire from="(730,1430)" to="(840,1430)"/> <wire from="(730,1190)" to="(840,1190)"/> <wire from="(590,1460)" to="(1020,1460)"/> <wire from="(200,760)" to="(240,760)"/> <wire from="(520,1070)" to="(520,1090)"/> <wire from="(520,1310)" to="(520,1330)"/> <wire from="(780,620)" to="(780,830)"/> <wire from="(570,110)" to="(590,110)"/> <wire from="(570,590)" to="(590,590)"/> <wire from="(570,350)" to="(590,350)"/> <wire from="(570,1070)" to="(590,1070)"/> <wire from="(570,830)" to="(590,830)"/> <wire from="(570,1310)" to="(590,1310)"/> <wire from="(780,620)" to="(870,620)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(570,1550)" to="(920,1550)"/> <wire from="(140,880)" to="(160,880)"/> <wire from="(550,810)" to="(550,930)"/> <wire from="(550,1290)" to="(550,1410)"/> <wire from="(550,330)" to="(550,450)"/> <wire from="(490,1230)" to="(490,1350)"/> <wire from="(550,1050)" to="(550,1170)"/> <wire from="(550,90)" to="(550,210)"/> <wire from="(550,570)" to="(550,690)"/> <wire from="(730,350)" to="(800,350)"/> <wire from="(490,270)" to="(490,390)"/> <wire from="(980,1390)" to="(1060,1390)"/> <wire from="(490,750)" to="(490,870)"/> <wire from="(490,510)" to="(490,630)"/> <wire from="(490,990)" to="(490,1110)"/> <wire from="(180,730)" to="(180,790)"/> <wire from="(570,1140)" to="(750,1140)"/> <wire from="(350,780)" to="(460,780)"/> <wire from="(600,720)" to="(600,760)"/> <wire from="(600,240)" to="(600,280)"/> <wire from="(600,1200)" to="(600,1240)"/> <wire from="(600,960)" to="(600,1000)"/> <wire from="(600,480)" to="(600,520)"/> <wire from="(930,600)" to="(950,600)"/> <wire from="(920,1390)" to="(940,1390)"/> <wire from="(820,640)" to="(820,1070)"/> <wire from="(90,1400)" to="(250,1400)"/> <wire from="(1020,1280)" to="(1020,1460)"/> <wire from="(730,710)" to="(760,710)"/> <wire from="(360,1470)" to="(380,1470)"/> <wire from="(530,740)" to="(620,740)"/> <wire from="(530,500)" to="(620,500)"/> <wire from="(530,1220)" to="(620,1220)"/> <wire from="(530,260)" to="(620,260)"/> <wire from="(530,980)" to="(620,980)"/> <wire from="(750,1350)" to="(750,1410)"/> <wire from="(380,190)" to="(520,190)"/> <wire from="(530,520)" to="(600,520)"/> <wire from="(380,1310)" to="(520,1310)"/> <wire from="(530,760)" to="(600,760)"/> <wire from="(530,1000)" to="(600,1000)"/> <wire from="(530,1240)" to="(600,1240)"/> <wire from="(530,280)" to="(600,280)"/> <wire from="(800,630)" to="(870,630)"/> <wire from="(90,720)" to="(160,720)"/> <wire from="(140,820)" to="(140,880)"/> <wire from="(190,790)" to="(190,850)"/> <wire from="(350,740)" to="(420,740)"/> <wire from="(400,310)" to="(520,310)"/> <wire from="(550,810)" to="(590,810)"/> <wire from="(550,1290)" to="(590,1290)"/> <wire from="(550,330)" to="(590,330)"/> <wire from="(550,570)" to="(590,570)"/> <wire from="(550,1050)" to="(590,1050)"/> <wire from="(550,90)" to="(590,90)"/> <wire from="(350,820)" to="(520,820)"/> <wire from="(440,860)" to="(440,1070)"/> <wire from="(900,1400)" to="(940,1400)"/> <wire from="(520,770)" to="(520,800)"/> <wire from="(1000,1260)" to="(1040,1260)"/> <wire from="(730,1370)" to="(840,1370)"/> <wire from="(420,430)" to="(520,430)"/> <wire from="(200,700)" to="(240,700)"/> <wire from="(520,530)" to="(520,550)"/> <wire from="(520,290)" to="(520,310)"/> <wire from="(1000,1280)" to="(1020,1280)"/> <wire from="(650,210)" to="(670,210)"/> <wire from="(650,450)" to="(670,450)"/> <wire from="(650,930)" to="(670,930)"/> <wire from="(710,350)" to="(730,350)"/> <wire from="(650,690)" to="(670,690)"/> <wire from="(650,1170)" to="(670,1170)"/> <wire from="(710,110)" to="(730,110)"/> <wire from="(710,830)" to="(730,830)"/> <wire from="(710,1310)" to="(730,1310)"/> <wire from="(710,590)" to="(730,590)"/> <wire from="(350,700)" to="(380,700)"/> <wire from="(750,1410)" to="(840,1410)"/> <wire from="(840,550)" to="(870,550)"/> <wire from="(920,1390)" to="(920,1550)"/> <wire from="(140,820)" to="(160,820)"/> <wire from="(650,210)" to="(650,330)"/> <wire from="(650,1170)" to="(650,1290)"/> <wire from="(650,690)" to="(650,810)"/> <wire from="(650,450)" to="(650,570)"/> <wire from="(650,930)" to="(650,1050)"/> <wire from="(440,550)" to="(520,550)"/> <wire from="(420,1410)" to="(550,1410)"/> <wire from="(570,420)" to="(570,470)"/> <wire from="(570,180)" to="(570,230)"/> <wire from="(570,660)" to="(570,710)"/> <wire from="(570,900)" to="(570,950)"/> <wire from="(570,1140)" to="(570,1190)"/> <wire from="(420,1500)" to="(490,1500)"/> <wire from="(730,590)" to="(870,590)"/> <wire from="(820,560)" to="(870,560)"/> <wire from="(820,640)" to="(870,640)"/> <wire from="(460,670)" to="(520,670)"/> <wire from="(730,470)" to="(780,470)"/> <wire from="(180,910)" to="(180,980)"/> <wire from="(820,230)" to="(820,560)"/> <wire from="(330,1510)" to="(380,1510)"/> <wire from="(520,820)" to="(520,850)"/> <wire from="(750,1140)" to="(750,1350)"/> <wire from="(420,1440)" to="(420,1470)"/> <wire from="(900,1360)" to="(900,1380)"/> <wire from="(990,1290)" to="(990,1310)"/> <wire from="(620,120)" to="(620,140)"/> <wire from="(620,600)" to="(620,620)"/> <wire from="(620,1080)" to="(620,1100)"/> <wire from="(620,360)" to="(620,380)"/> <wire from="(620,840)" to="(620,860)"/> <wire from="(620,1320)" to="(620,1340)"/> <wire from="(570,60)" to="(1060,60)"/> <wire from="(780,470)" to="(780,580)"/> <wire from="(570,300)" to="(730,300)"/> <wire from="(570,540)" to="(730,540)"/> <wire from="(270,1400)" to="(290,1400)"/> <wire from="(570,780)" to="(730,780)"/> <wire from="(570,1260)" to="(730,1260)"/> <wire from="(570,1020)" to="(730,1020)"/> <wire from="(360,1490)" to="(380,1490)"/> <wire from="(760,610)" to="(760,710)"/> <wire from="(490,270)" to="(500,270)"/> <wire from="(490,750)" to="(500,750)"/> <wire from="(490,990)" to="(500,990)"/> <wire from="(490,510)" to="(500,510)"/> <wire from="(800,570)" to="(870,570)"/> <wire from="(90,900)" to="(160,900)"/> <wire from="(490,1230)" to="(500,1230)"/> <wire from="(140,760)" to="(140,820)"/> <wire from="(190,730)" to="(190,790)"/> <wire from="(330,1400)" to="(380,1400)"/> <wire from="(730,230)" to="(730,300)"/> <wire from="(730,710)" to="(730,780)"/> <wire from="(730,1190)" to="(730,1260)"/> <wire from="(730,470)" to="(730,540)"/> <wire from="(730,950)" to="(730,1020)"/> <wire from="(630,830)" to="(670,830)"/> <wire from="(630,350)" to="(670,350)"/> <wire from="(630,590)" to="(670,590)"/> <wire from="(630,110)" to="(670,110)"/> <wire from="(630,1310)" to="(670,1310)"/> <wire from="(630,1070)" to="(670,1070)"/> <wire from="(710,1070)" to="(750,1070)"/> <wire from="(820,1330)" to="(820,1360)"/> <wire from="(1040,1260)" to="(1040,1330)"/> <wire from="(730,110)" to="(840,110)"/> <wire from="(200,880)" to="(240,880)"/> <wire from="(520,950)" to="(520,970)"/> <wire from="(520,1190)" to="(520,1210)"/> <wire from="(820,1360)" to="(840,1360)"/> <wire from="(570,470)" to="(590,470)"/> <wire from="(570,230)" to="(590,230)"/> <wire from="(570,710)" to="(590,710)"/> <wire from="(570,950)" to="(590,950)"/> <wire from="(570,1190)" to="(590,1190)"/> <wire from="(460,840)" to="(460,950)"/> <wire from="(780,580)" to="(870,580)"/> <wire from="(750,1350)" to="(840,1350)"/> <wire from="(140,760)" to="(160,760)"/> <wire from="(840,650)" to="(870,650)"/> <wire from="(550,690)" to="(550,810)"/> <wire from="(550,1170)" to="(550,1290)"/> <wire from="(550,210)" to="(550,330)"/> <wire from="(550,930)" to="(550,1050)"/> <wire from="(550,450)" to="(550,570)"/> <wire from="(730,950)" to="(800,950)"/> <wire from="(730,1310)" to="(990,1310)"/> <wire from="(490,150)" to="(490,270)"/> <wire from="(490,630)" to="(490,750)"/> <wire from="(490,1110)" to="(490,1230)"/> <wire from="(490,390)" to="(490,510)"/> <wire from="(490,870)" to="(490,990)"/> <wire from="(180,850)" to="(180,910)"/> <comp lib="1" loc="(880,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="14"/> </comp> <comp lib="2" loc="(500,630)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(500,1350)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(510,1470)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="2" loc="(970,1270)" name="Demultiplexer"> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(870,1420)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp lib="1" loc="(270,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="1" loc="(380,1470)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(710,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(460,1402)" name="Text"> <a name="text" val="NFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(710,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(710,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(200,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(460,1494)" name="Text"> <a name="text" val="NFLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(710,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1070,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(200,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(710,210)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(258,1386)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="4" loc="(710,90)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(570,1460)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(710,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,390)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(930,600)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="label" val="16"/> </comp> <comp lib="6" loc="(580,1447)" name="Text"> <a name="text" val="17"/> </comp> <comp lib="4" loc="(710,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="2" loc="(500,510)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(500,270)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(710,1050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(980,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="15"/> </comp> <comp lib="4" loc="(630,1050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,1110)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(420,1500)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp loc="(350,640)" name="NOISE_TABLE"/> <comp lib="1" loc="(420,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="4" loc="(200,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,750)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(310,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(710,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="6" loc="(388,1461)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(90,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="2" loc="(500,990)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,90)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(710,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(297,1385)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="2" loc="(500,150)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(500,870)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(630,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(140,90)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,570)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="NOISE_TABLE"> <a name="circuit" val="NOISE_TABLE"/> <a name="clabel" val="NOISE TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M230,41 Q234,51 238,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffe650" height="331" stroke="#000000" stroke-width="2" width="110" x="160" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="104">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="164">F1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="224">F2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="284">F3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="104">NNF10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="124">NNF9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="145">NNF8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="165">NNF7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="184">NNF6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="205">NNF5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="225">NNF4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="244">NNF3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="264">NNF2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="284">NNF1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="304">NNF0</text> <circ-port height="10" pin="310,40" width="10" x="265" y="295"/> <circ-port height="10" pin="310,70" width="10" x="265" y="275"/> <circ-port height="10" pin="310,100" width="10" x="265" y="255"/> <circ-port height="10" pin="310,130" width="10" x="265" y="235"/> <circ-port height="10" pin="310,160" width="10" x="265" y="215"/> <circ-port height="10" pin="310,190" width="10" x="265" y="195"/> <circ-port height="10" pin="310,220" width="10" x="265" y="175"/> <circ-port height="10" pin="310,250" width="10" x="265" y="155"/> <circ-port height="10" pin="310,280" width="10" x="265" y="135"/> <circ-port height="10" pin="310,310" width="10" x="265" y="115"/> <circ-port height="10" pin="310,340" width="10" x="265" y="95"/> <circ-port height="8" pin="80,450" width="8" x="156" y="276"/> <circ-port height="8" pin="80,400" width="8" x="156" y="216"/> <circ-port height="8" pin="80,350" width="8" x="156" y="156"/> <circ-port height="8" pin="80,300" width="8" x="156" y="96"/> <circ-anchor facing="east" height="6" width="6" x="267" y="37"/> </appear> <wire from="(250,40)" to="(310,40)"/> <wire from="(470,110)" to="(520,110)"/> <wire from="(470,190)" to="(520,190)"/> <wire from="(470,230)" to="(520,230)"/> <wire from="(470,150)" to="(520,150)"/> <wire from="(100,380)" to="(100,400)"/> <wire from="(250,180)" to="(290,180)"/> <wire from="(270,280)" to="(310,280)"/> <wire from="(410,60)" to="(410,290)"/> <wire from="(80,300)" to="(110,300)"/> <wire from="(730,200)" to="(750,200)"/> <wire from="(730,240)" to="(750,240)"/> <wire from="(730,160)" to="(750,160)"/> <wire from="(730,120)" to="(750,120)"/> <wire from="(250,40)" to="(250,140)"/> <wire from="(250,240)" to="(250,340)"/> <wire from="(290,160)" to="(310,160)"/> <wire from="(410,290)" to="(560,290)"/> <wire from="(80,350)" to="(100,350)"/> <wire from="(140,210)" to="(160,210)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,170)" to="(160,170)"/> <wire from="(140,250)" to="(160,250)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(100,380)" to="(110,380)"/> <wire from="(110,390)" to="(110,450)"/> <wire from="(700,230)" to="(750,230)"/> <wire from="(700,150)" to="(750,150)"/> <wire from="(700,110)" to="(750,110)"/> <wire from="(700,190)" to="(750,190)"/> <wire from="(260,310)" to="(310,310)"/> <wire from="(260,70)" to="(310,70)"/> <wire from="(110,240)" to="(160,240)"/> <wire from="(110,160)" to="(160,160)"/> <wire from="(110,120)" to="(160,120)"/> <wire from="(110,200)" to="(160,200)"/> <wire from="(100,350)" to="(100,370)"/> <wire from="(200,190)" to="(230,190)"/> <wire from="(640,290)" to="(790,290)"/> <wire from="(500,140)" to="(520,140)"/> <wire from="(500,100)" to="(520,100)"/> <wire from="(500,220)" to="(520,220)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(410,60)" to="(560,60)"/> <wire from="(280,130)" to="(280,170)"/> <wire from="(280,210)" to="(280,250)"/> <wire from="(80,400)" to="(100,400)"/> <wire from="(560,60)" to="(560,290)"/> <wire from="(640,60)" to="(640,290)"/> <wire from="(250,340)" to="(310,340)"/> <wire from="(470,130)" to="(520,130)"/> <wire from="(470,210)" to="(520,210)"/> <wire from="(470,170)" to="(520,170)"/> <wire from="(470,250)" to="(520,250)"/> <wire from="(130,350)" to="(180,350)"/> <wire from="(180,270)" to="(180,350)"/> <wire from="(260,70)" to="(260,150)"/> <wire from="(260,230)" to="(260,310)"/> <wire from="(250,200)" to="(290,200)"/> <wire from="(270,100)" to="(310,100)"/> <wire from="(250,170)" to="(280,170)"/> <wire from="(250,210)" to="(280,210)"/> <wire from="(640,60)" to="(790,60)"/> <wire from="(730,220)" to="(750,220)"/> <wire from="(730,140)" to="(750,140)"/> <wire from="(730,100)" to="(750,100)"/> <wire from="(730,180)" to="(750,180)"/> <wire from="(290,220)" to="(310,220)"/> <wire from="(790,60)" to="(790,290)"/> <wire from="(140,190)" to="(160,190)"/> <wire from="(140,230)" to="(160,230)"/> <wire from="(140,110)" to="(160,110)"/> <wire from="(140,150)" to="(160,150)"/> <wire from="(250,220)" to="(270,220)"/> <wire from="(250,150)" to="(260,150)"/> <wire from="(250,230)" to="(260,230)"/> <wire from="(700,210)" to="(750,210)"/> <wire from="(700,130)" to="(750,130)"/> <wire from="(700,170)" to="(750,170)"/> <wire from="(700,250)" to="(750,250)"/> <wire from="(250,190)" to="(310,190)"/> <wire from="(110,180)" to="(160,180)"/> <wire from="(110,140)" to="(160,140)"/> <wire from="(110,260)" to="(160,260)"/> <wire from="(110,220)" to="(160,220)"/> <wire from="(290,160)" to="(290,180)"/> <wire from="(290,200)" to="(290,220)"/> <wire from="(80,450)" to="(110,450)"/> <wire from="(280,130)" to="(310,130)"/> <wire from="(280,250)" to="(310,250)"/> <wire from="(500,200)" to="(520,200)"/> <wire from="(500,240)" to="(520,240)"/> <wire from="(500,160)" to="(520,160)"/> <wire from="(500,120)" to="(520,120)"/> <wire from="(100,370)" to="(110,370)"/> <wire from="(270,100)" to="(270,160)"/> <wire from="(270,220)" to="(270,280)"/> <wire from="(110,300)" to="(110,360)"/> <comp lib="0" loc="(310,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x63"/> </comp> <comp lib="0" loc="(700,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x20f"/> </comp> <comp lib="0" loc="(730,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x642"/> </comp> <comp lib="0" loc="(110,260)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x140"/> </comp> <comp lib="0" loc="(310,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x300"/> </comp> <comp lib="0" loc="(470,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x24e"/> </comp> <comp lib="0" loc="(310,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x7c1"/> </comp> <comp lib="6" loc="(714,82)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(470,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(700,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x140"/> </comp> <comp lib="0" loc="(110,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x62"/> </comp> <comp lib="2" loc="(200,190)" name="Multiplexer"> <a name="select" val="4"/> <a name="width" val="11"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(500,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x55"/> </comp> <comp lib="0" loc="(310,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x433"/> </comp> <comp lib="0" loc="(310,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF2"/> </comp> <comp lib="0" loc="(730,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x139"/> </comp> <comp lib="0" loc="(140,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x1a9"/> </comp> <comp lib="0" loc="(140,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x642"/> </comp> <comp lib="0" loc="(110,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x20f"/> </comp> <comp lib="0" loc="(730,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xaa"/> </comp> <comp lib="0" loc="(700,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2bb"/> </comp> <comp lib="6" loc="(484,81)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="0" loc="(230,190)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(110,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF0"/> </comp> <comp lib="0" loc="(700,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x67"/> </comp> <comp lib="0" loc="(110,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x106"/> </comp> <comp lib="0" loc="(310,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,100)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(140,250)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x300"/> </comp> <comp lib="0" loc="(730,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x227"/> </comp> <comp lib="0" loc="(310,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x797"/> </comp> <comp lib="0" loc="(110,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x67"/> </comp> <comp lib="0" loc="(470,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x51c"/> </comp> <comp lib="0" loc="(730,100)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(310,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF1"/> </comp> <comp lib="0" loc="(500,220)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x3f9"/> </comp> <comp lib="0" loc="(470,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x55d"/> </comp> <comp lib="0" loc="(700,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(110,120)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xa"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NF3"/> </comp> <comp lib="0" loc="(140,170)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x63"/> </comp> <comp lib="0" loc="(500,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x64e"/> </comp> <comp lib="6" loc="(113,82)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(110,140)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2bb"/> </comp> <comp lib="0" loc="(140,130)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0xaa"/> </comp> <comp lib="0" loc="(130,350)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(140,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x227"/> </comp> <comp lib="0" loc="(310,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,160)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x6c3"/> </comp> <comp lib="0" loc="(140,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x139"/> </comp> <comp lib="0" loc="(700,150)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(470,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x648"/> </comp> <comp lib="0" loc="(470,230)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x5a4"/> </comp> <comp lib="0" loc="(140,110)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x2"/> </comp> <comp lib="0" loc="(310,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NNF2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,240)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x4f3"/> </comp> <comp lib="0" loc="(730,180)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x1a9"/> </comp> <comp lib="0" loc="(700,190)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x106"/> </comp> <comp lib="0" loc="(500,200)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x3ab"/> </comp> <comp lib="0" loc="(700,210)" name="Constant"> <a name="width" val="11"/> <a name="value" val="0x62"/> </comp> </circuit> <circuit name="RANDOM_LFSR"> <a name="circuit" val="RANDOM_LFSR"/> <a name="clabel" val="RANDOM LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbe3b" height="161" stroke="#000000" stroke-width="2" width="200" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="218" y="194">RNDOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="134">RSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="115">W400E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="155">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="174">NORND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="194">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="74">ACLK1</text> <circ-port height="8" pin="100,80" width="8" x="46" y="126"/> <circ-port height="8" pin="100,1390" width="8" x="46" y="106"/> <circ-port height="8" pin="100,1360" width="8" x="46" y="146"/> <circ-port height="8" pin="100,1480" width="8" x="46" y="166"/> <circ-port height="10" pin="820,1390" width="10" x="245" y="185"/> <circ-port height="8" pin="100,1510" width="8" x="46" y="186"/> <circ-port height="8" pin="100,30" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(470,700)" to="(530,700)"/> <wire from="(730,1270)" to="(730,1400)"/> <wire from="(140,1250)" to="(580,1250)"/> <wire from="(710,1280)" to="(750,1280)"/> <wire from="(520,1320)" to="(520,1340)"/> <wire from="(730,1400)" to="(730,1510)"/> <wire from="(100,1360)" to="(320,1360)"/> <wire from="(210,850)" to="(210,900)"/> <wire from="(210,690)" to="(210,740)"/> <wire from="(210,1010)" to="(210,1060)"/> <wire from="(210,1170)" to="(210,1220)"/> <wire from="(210,530)" to="(210,580)"/> <wire from="(210,370)" to="(210,420)"/> <wire from="(210,210)" to="(210,260)"/> <wire from="(210,50)" to="(210,100)"/> <wire from="(380,580)" to="(440,580)"/> <wire from="(380,740)" to="(440,740)"/> <wire from="(380,1140)" to="(490,1140)"/> <wire from="(380,180)" to="(490,180)"/> <wire from="(500,730)" to="(530,730)"/> <wire from="(100,80)" to="(190,80)"/> <wire from="(300,1340)" to="(320,1340)"/> <wire from="(360,1220)" to="(500,1220)"/> <wire from="(630,1240)" to="(630,1300)"/> <wire from="(100,1510)" to="(730,1510)"/> <wire from="(190,160)" to="(190,240)"/> <wire from="(190,640)" to="(190,720)"/> <wire from="(190,800)" to="(190,880)"/> <wire from="(190,960)" to="(190,1040)"/> <wire from="(190,1120)" to="(190,1200)"/> <wire from="(190,480)" to="(190,560)"/> <wire from="(190,320)" to="(190,400)"/> <wire from="(210,1010)" to="(380,1010)"/> <wire from="(210,850)" to="(380,850)"/> <wire from="(210,1170)" to="(380,1170)"/> <wire from="(210,690)" to="(380,690)"/> <wire from="(210,530)" to="(380,530)"/> <wire from="(210,370)" to="(380,370)"/> <wire from="(210,210)" to="(380,210)"/> <wire from="(580,1250)" to="(580,1460)"/> <wire from="(610,660)" to="(630,660)"/> <wire from="(210,50)" to="(810,50)"/> <wire from="(610,1220)" to="(610,1320)"/> <wire from="(210,740)" to="(230,740)"/> <wire from="(210,1220)" to="(230,1220)"/> <wire from="(210,1060)" to="(230,1060)"/> <wire from="(210,900)" to="(230,900)"/> <wire from="(210,580)" to="(230,580)"/> <wire from="(210,420)" to="(230,420)"/> <wire from="(210,260)" to="(230,260)"/> <wire from="(210,100)" to="(230,100)"/> <wire from="(270,580)" to="(320,580)"/> <wire from="(270,420)" to="(320,420)"/> <wire from="(270,260)" to="(320,260)"/> <wire from="(270,100)" to="(320,100)"/> <wire from="(270,900)" to="(320,900)"/> <wire from="(270,740)" to="(320,740)"/> <wire from="(270,1220)" to="(320,1220)"/> <wire from="(270,1060)" to="(320,1060)"/> <wire from="(340,1370)" to="(340,1390)"/> <wire from="(300,560)" to="(300,640)"/> <wire from="(300,720)" to="(300,800)"/> <wire from="(300,880)" to="(300,960)"/> <wire from="(300,400)" to="(300,480)"/> <wire from="(300,240)" to="(300,320)"/> <wire from="(300,80)" to="(300,160)"/> <wire from="(300,1040)" to="(300,1120)"/> <wire from="(470,340)" to="(470,620)"/> <wire from="(300,1200)" to="(300,1290)"/> <wire from="(300,480)" to="(320,480)"/> <wire from="(300,640)" to="(320,640)"/> <wire from="(300,800)" to="(320,800)"/> <wire from="(300,320)" to="(320,320)"/> <wire from="(300,160)" to="(320,160)"/> <wire from="(300,960)" to="(320,960)"/> <wire from="(300,1120)" to="(320,1120)"/> <wire from="(610,1320)" to="(610,1370)"/> <wire from="(440,670)" to="(440,740)"/> <wire from="(610,1220)" to="(650,1220)"/> <wire from="(710,1230)" to="(710,1260)"/> <wire from="(380,1060)" to="(380,1090)"/> <wire from="(380,900)" to="(380,930)"/> <wire from="(380,580)" to="(380,610)"/> <wire from="(380,740)" to="(380,770)"/> <wire from="(380,260)" to="(480,260)"/> <wire from="(380,1060)" to="(480,1060)"/> <wire from="(190,160)" to="(230,160)"/> <wire from="(190,960)" to="(230,960)"/> <wire from="(190,1120)" to="(230,1120)"/> <wire from="(190,640)" to="(230,640)"/> <wire from="(190,480)" to="(230,480)"/> <wire from="(190,320)" to="(230,320)"/> <wire from="(190,800)" to="(230,800)"/> <wire from="(380,100)" to="(380,130)"/> <wire from="(380,260)" to="(380,290)"/> <wire from="(380,420)" to="(380,450)"/> <wire from="(440,650)" to="(530,650)"/> <wire from="(380,660)" to="(530,660)"/> <wire from="(460,690)" to="(530,690)"/> <wire from="(440,1310)" to="(510,1310)"/> <wire from="(450,680)" to="(450,820)"/> <wire from="(630,1230)" to="(650,1230)"/> <wire from="(450,640)" to="(530,640)"/> <wire from="(690,1380)" to="(750,1380)"/> <wire from="(610,1320)" to="(650,1320)"/> <wire from="(710,1260)" to="(750,1260)"/> <wire from="(460,690)" to="(460,900)"/> <wire from="(490,720)" to="(530,720)"/> <wire from="(460,630)" to="(530,630)"/> <wire from="(440,580)" to="(440,650)"/> <wire from="(810,50)" to="(810,1270)"/> <wire from="(490,1140)" to="(490,1290)"/> <wire from="(610,1390)" to="(610,1480)"/> <wire from="(480,260)" to="(480,610)"/> <wire from="(470,700)" to="(470,980)"/> <wire from="(380,980)" to="(470,980)"/> <wire from="(380,340)" to="(470,340)"/> <wire from="(360,1340)" to="(520,1340)"/> <wire from="(690,1230)" to="(710,1230)"/> <wire from="(730,1270)" to="(750,1270)"/> <wire from="(360,740)" to="(380,740)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(360,1060)" to="(380,1060)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(360,100)" to="(380,100)"/> <wire from="(540,1300)" to="(630,1300)"/> <wire from="(630,660)" to="(630,1230)"/> <wire from="(470,620)" to="(530,620)"/> <wire from="(480,710)" to="(480,1060)"/> <wire from="(630,1300)" to="(650,1300)"/> <wire from="(730,1400)" to="(750,1400)"/> <wire from="(210,770)" to="(210,820)"/> <wire from="(210,610)" to="(210,660)"/> <wire from="(210,1090)" to="(210,1140)"/> <wire from="(210,930)" to="(210,980)"/> <wire from="(210,450)" to="(210,500)"/> <wire from="(210,290)" to="(210,340)"/> <wire from="(210,130)" to="(210,180)"/> <wire from="(100,1480)" to="(610,1480)"/> <wire from="(480,610)" to="(530,610)"/> <wire from="(140,1460)" to="(580,1460)"/> <wire from="(610,1390)" to="(650,1390)"/> <wire from="(100,1390)" to="(340,1390)"/> <wire from="(300,1310)" to="(300,1340)"/> <wire from="(790,1270)" to="(810,1270)"/> <wire from="(490,720)" to="(490,1140)"/> <wire from="(490,1290)" to="(510,1290)"/> <wire from="(680,1310)" to="(710,1310)"/> <wire from="(300,30)" to="(300,80)"/> <wire from="(450,680)" to="(530,680)"/> <wire from="(190,80)" to="(190,160)"/> <wire from="(190,240)" to="(190,320)"/> <wire from="(190,720)" to="(190,800)"/> <wire from="(190,880)" to="(190,960)"/> <wire from="(190,1040)" to="(190,1120)"/> <wire from="(190,560)" to="(190,640)"/> <wire from="(190,400)" to="(190,480)"/> <wire from="(210,930)" to="(380,930)"/> <wire from="(210,770)" to="(380,770)"/> <wire from="(210,1090)" to="(380,1090)"/> <wire from="(210,610)" to="(380,610)"/> <wire from="(210,450)" to="(380,450)"/> <wire from="(210,290)" to="(380,290)"/> <wire from="(210,130)" to="(380,130)"/> <wire from="(490,600)" to="(530,600)"/> <wire from="(630,1240)" to="(650,1240)"/> <wire from="(500,730)" to="(500,1220)"/> <wire from="(790,1390)" to="(820,1390)"/> <wire from="(210,980)" to="(230,980)"/> <wire from="(210,820)" to="(230,820)"/> <wire from="(210,1140)" to="(230,1140)"/> <wire from="(210,660)" to="(230,660)"/> <wire from="(210,500)" to="(230,500)"/> <wire from="(210,340)" to="(230,340)"/> <wire from="(210,180)" to="(230,180)"/> <wire from="(380,420)" to="(460,420)"/> <wire from="(380,900)" to="(460,900)"/> <wire from="(480,710)" to="(530,710)"/> <wire from="(270,500)" to="(320,500)"/> <wire from="(270,660)" to="(320,660)"/> <wire from="(270,340)" to="(320,340)"/> <wire from="(270,180)" to="(320,180)"/> <wire from="(270,820)" to="(320,820)"/> <wire from="(270,980)" to="(320,980)"/> <wire from="(270,1140)" to="(320,1140)"/> <wire from="(450,500)" to="(450,640)"/> <wire from="(300,480)" to="(300,560)"/> <wire from="(300,640)" to="(300,720)"/> <wire from="(300,800)" to="(300,880)"/> <wire from="(300,320)" to="(300,400)"/> <wire from="(300,160)" to="(300,240)"/> <wire from="(300,960)" to="(300,1040)"/> <wire from="(300,1120)" to="(300,1200)"/> <wire from="(490,180)" to="(490,600)"/> <wire from="(500,590)" to="(530,590)"/> <wire from="(300,400)" to="(320,400)"/> <wire from="(300,560)" to="(320,560)"/> <wire from="(300,720)" to="(320,720)"/> <wire from="(300,880)" to="(320,880)"/> <wire from="(300,240)" to="(320,240)"/> <wire from="(300,80)" to="(320,80)"/> <wire from="(300,1200)" to="(320,1200)"/> <wire from="(300,1040)" to="(320,1040)"/> <wire from="(380,1140)" to="(380,1170)"/> <wire from="(380,980)" to="(380,1010)"/> <wire from="(380,820)" to="(380,850)"/> <wire from="(380,660)" to="(380,690)"/> <wire from="(190,80)" to="(230,80)"/> <wire from="(190,880)" to="(230,880)"/> <wire from="(190,720)" to="(230,720)"/> <wire from="(190,560)" to="(230,560)"/> <wire from="(190,400)" to="(230,400)"/> <wire from="(190,240)" to="(230,240)"/> <wire from="(190,1040)" to="(230,1040)"/> <wire from="(190,1200)" to="(230,1200)"/> <wire from="(380,180)" to="(380,210)"/> <wire from="(380,340)" to="(380,370)"/> <wire from="(380,500)" to="(380,530)"/> <wire from="(710,1280)" to="(710,1310)"/> <wire from="(500,1220)" to="(610,1220)"/> <wire from="(100,30)" to="(300,30)"/> <wire from="(380,820)" to="(450,820)"/> <wire from="(380,500)" to="(450,500)"/> <wire from="(380,100)" to="(500,100)"/> <wire from="(140,1250)" to="(140,1460)"/> <wire from="(440,670)" to="(530,670)"/> <wire from="(440,740)" to="(440,1310)"/> <wire from="(610,1370)" to="(650,1370)"/> <wire from="(460,420)" to="(460,630)"/> <wire from="(360,660)" to="(380,660)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(360,980)" to="(380,980)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(500,100)" to="(500,590)"/> <comp lib="4" loc="(270,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RSTEP"/> </comp> <comp lib="4" loc="(270,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(790,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="2" loc="(540,1300)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400E"/> </comp> <comp lib="4" loc="(360,1340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(527,1273)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(411,733)" name="Text"> <a name="text" val="R8"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(298,1446)" name="Text"> <a name="text" val="Feedback comes from outputs R13, R14"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="4" loc="(360,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(820,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RNDOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(413,1213)" name="Text"> <a name="text" val="R14"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(413,1133)" name="Text"> <a name="text" val="R13"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(270,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,880)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(610,660)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="15"/> <a name="label" val="5"/> </comp> <comp lib="4" loc="(360,480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(300,1310)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(100,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="4" loc="(360,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(790,1270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NORND"/> </comp> <comp lib="4" loc="(270,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(680,1310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="4" loc="(360,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="4" loc="(270,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(360,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(361,1417)" name="Text"> <a name="text" val="In the earliest versions of 2A03, the mode flag is missing."/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="1" loc="(690,1230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="4" loc="(360,1200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DPCM_CHANNEL"> <a name="circuit" val="DPCM_CHANNEL"/> <a name="clabel" val="DPCM CHANNEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M117,41 Q121,51 125,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#5498ff" height="420" stroke="#000000" stroke-width="2" width="660" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="64">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="84">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="124">W4010</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="144">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="164">W4012</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="184">W4013</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="204">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="384">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="245">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="264">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="304">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="325">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="344">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="364">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="404">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="424">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="694" y="125">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="695" y="153">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="677" y="74">DMC INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="184">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="204">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="676" y="224">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="285">DMC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="303">DMC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="323">DMC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="344">DMC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="364">DMC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="384">DMC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="685" y="404">DMC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="449">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="399" y="450">14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="433">DMCA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="444">LOCK</text> <circ-port height="8" pin="140,110" width="8" x="46" y="96"/> <circ-port height="8" pin="140,140" width="8" x="46" y="56"/> <circ-port height="8" pin="140,170" width="8" x="46" y="76"/> <circ-port height="8" pin="140,210" width="8" x="46" y="116"/> <circ-port height="8" pin="140,1220" width="8" x="46" y="136"/> <circ-port height="8" pin="140,1360" width="8" x="46" y="156"/> <circ-port height="8" pin="140,1020" width="8" x="46" y="176"/> <circ-port height="8" pin="140,710" width="8" x="46" y="196"/> <circ-port height="8" pin="140,750" width="8" x="46" y="376"/> <circ-port height="8" pin="140,250" width="8" x="46" y="216"/> <circ-port height="8" pin="140,280" width="8" x="46" y="236"/> <circ-port height="8" pin="140,310" width="8" x="46" y="256"/> <circ-port height="8" pin="140,340" width="8" x="46" y="276"/> <circ-port height="8" pin="140,370" width="8" x="46" y="296"/> <circ-port height="8" pin="140,400" width="8" x="46" y="316"/> <circ-port height="8" pin="140,430" width="8" x="46" y="336"/> <circ-port height="8" pin="140,460" width="8" x="46" y="356"/> <circ-port height="8" pin="140,830" width="8" x="46" y="396"/> <circ-port height="8" pin="140,1050" width="8" x="46" y="416"/> <circ-port height="10" pin="1110,570" width="10" x="705" y="115"/> <circ-port height="10" pin="1110,650" width="10" x="705" y="65"/> <circ-port height="10" pin="1110,610" width="10" x="705" y="145"/> <circ-port height="10" pin="1110,690" width="10" x="705" y="175"/> <circ-port height="10" pin="1110,730" width="10" x="705" y="195"/> <circ-port height="10" pin="1110,770" width="10" x="705" y="215"/> <circ-port height="10" pin="1110,880" width="10" x="705" y="275"/> <circ-port height="10" pin="1110,910" width="10" x="705" y="295"/> <circ-port height="10" pin="1110,940" width="10" x="705" y="315"/> <circ-port height="10" pin="1110,970" width="10" x="705" y="335"/> <circ-port height="10" pin="1110,1000" width="10" x="705" y="355"/> <circ-port height="10" pin="1110,1030" width="10" x="705" y="375"/> <circ-port height="10" pin="1110,1060" width="10" x="705" y="395"/> <circ-port height="10" pin="1110,1170" width="10" x="255" y="455"/> <circ-port height="10" pin="1110,1200" width="10" x="265" y="455"/> <circ-port height="10" pin="1110,1230" width="10" x="275" y="455"/> <circ-port height="10" pin="1110,1260" width="10" x="285" y="455"/> <circ-port height="10" pin="1110,1290" width="10" x="295" y="455"/> <circ-port height="10" pin="1110,1320" width="10" x="305" y="455"/> <circ-port height="10" pin="1110,1350" width="10" x="315" y="455"/> <circ-port height="10" pin="1110,1380" width="10" x="325" y="455"/> <circ-port height="10" pin="1110,1410" width="10" x="335" y="455"/> <circ-port height="10" pin="1110,1440" width="10" x="345" y="455"/> <circ-port height="10" pin="1110,1470" width="10" x="355" y="455"/> <circ-port height="10" pin="1110,1500" width="10" x="365" y="455"/> <circ-port height="10" pin="1110,1530" width="10" x="375" y="455"/> <circ-port height="10" pin="1110,1560" width="10" x="385" y="455"/> <circ-port height="10" pin="1110,1590" width="10" x="395" y="455"/> <circ-port height="8" pin="140,790" width="8" x="46" y="436"/> <circ-anchor facing="east" height="6" width="6" x="347" y="37"/> </appear> <wire from="(800,1040)" to="(850,1040)"/> <wire from="(800,1360)" to="(850,1360)"/> <wire from="(800,1440)" to="(850,1440)"/> <wire from="(380,1100)" to="(430,1100)"/> <wire from="(380,1180)" to="(430,1180)"/> <wire from="(1060,1410)" to="(1060,1500)"/> <wire from="(400,1440)" to="(400,1450)"/> <wire from="(310,770)" to="(430,770)"/> <wire from="(570,1460)" to="(610,1460)"/> <wire from="(400,1120)" to="(400,1140)"/> <wire from="(810,980)" to="(850,980)"/> <wire from="(1050,1200)" to="(1110,1200)"/> <wire from="(1070,1260)" to="(1070,1330)"/> <wire from="(820,1060)" to="(820,1080)"/> <wire from="(820,1380)" to="(820,1400)"/> <wire from="(390,1520)" to="(430,1520)"/> <wire from="(1020,1360)" to="(1100,1360)"/> <wire from="(830,1020)" to="(850,1020)"/> <wire from="(700,1500)" to="(850,1500)"/> <wire from="(340,590)" to="(430,590)"/> <wire from="(400,1140)" to="(430,1140)"/> <wire from="(960,880)" to="(1110,880)"/> <wire from="(1100,1380)" to="(1110,1380)"/> <wire from="(980,1220)" to="(980,1260)"/> <wire from="(630,1450)" to="(660,1450)"/> <wire from="(410,1480)" to="(430,1480)"/> <wire from="(380,1450)" to="(400,1450)"/> <wire from="(820,1080)" to="(850,1080)"/> <wire from="(380,1500)" to="(380,1540)"/> <wire from="(820,1000)" to="(850,1000)"/> <wire from="(140,170)" to="(160,170)"/> <wire from="(820,1400)" to="(850,1400)"/> <wire from="(420,1260)" to="(430,1260)"/> <wire from="(140,340)" to="(150,340)"/> <wire from="(640,1280)" to="(640,1340)"/> <wire from="(220,1110)" to="(360,1110)"/> <wire from="(840,960)" to="(850,960)"/> <wire from="(840,880)" to="(850,880)"/> <wire from="(840,1520)" to="(850,1520)"/> <wire from="(650,1330)" to="(660,1330)"/> <wire from="(390,870)" to="(590,870)"/> <wire from="(1020,1320)" to="(1060,1320)"/> <wire from="(150,360)" to="(150,370)"/> <wire from="(570,650)" to="(820,650)"/> <wire from="(1090,1380)" to="(1090,1410)"/> <wire from="(570,550)" to="(610,550)"/> <wire from="(570,670)" to="(800,670)"/> <wire from="(140,1220)" to="(630,1220)"/> <wire from="(860,590)" to="(860,610)"/> <wire from="(680,1480)" to="(680,1560)"/> <wire from="(160,370)" to="(160,400)"/> <wire from="(140,710)" to="(430,710)"/> <wire from="(320,330)" to="(320,610)"/> <wire from="(220,110)" to="(220,140)"/> <wire from="(680,1160)" to="(980,1160)"/> <wire from="(320,880)" to="(320,980)"/> <wire from="(1080,1290)" to="(1080,1340)"/> <wire from="(340,960)" to="(430,960)"/> <wire from="(960,1120)" to="(980,1120)"/> <wire from="(400,230)" to="(430,230)"/> <wire from="(270,210)" to="(270,690)"/> <wire from="(570,690)" to="(780,690)"/> <wire from="(1100,1350)" to="(1110,1350)"/> <wire from="(270,110)" to="(290,110)"/> <wire from="(570,1440)" to="(600,1440)"/> <wire from="(570,1360)" to="(600,1360)"/> <wire from="(630,790)" to="(630,890)"/> <wire from="(610,450)" to="(610,550)"/> <wire from="(800,1030)" to="(830,1030)"/> <wire from="(200,360)" to="(220,360)"/> <wire from="(420,190)" to="(430,190)"/> <wire from="(420,510)" to="(430,510)"/> <wire from="(290,750)" to="(430,750)"/> <wire from="(170,380)" to="(170,430)"/> <wire from="(590,1390)" to="(660,1390)"/> <wire from="(220,140)" to="(290,140)"/> <wire from="(140,210)" to="(270,210)"/> <wire from="(1090,1410)" to="(1110,1410)"/> <wire from="(800,1300)" to="(850,1300)"/> <wire from="(590,1410)" to="(590,1420)"/> <wire from="(340,470)" to="(590,470)"/> <wire from="(180,390)" to="(180,460)"/> <wire from="(610,1430)" to="(660,1430)"/> <wire from="(1070,1260)" to="(1110,1260)"/> <wire from="(380,1040)" to="(430,1040)"/> <wire from="(570,710)" to="(760,710)"/> <wire from="(650,1260)" to="(650,1330)"/> <wire from="(410,1470)" to="(410,1480)"/> <wire from="(570,1300)" to="(630,1300)"/> <wire from="(720,750)" to="(720,1480)"/> <wire from="(810,1070)" to="(810,1100)"/> <wire from="(810,1390)" to="(810,1420)"/> <wire from="(800,1300)" to="(800,1330)"/> <wire from="(810,1320)" to="(850,1320)"/> <wire from="(610,1430)" to="(610,1460)"/> <wire from="(410,830)" to="(410,860)"/> <wire from="(390,1130)" to="(390,1160)"/> <wire from="(820,1000)" to="(820,1020)"/> <wire from="(380,1040)" to="(380,1070)"/> <wire from="(760,710)" to="(760,920)"/> <wire from="(140,250)" to="(180,250)"/> <wire from="(600,1420)" to="(600,1440)"/> <wire from="(390,1060)" to="(430,1060)"/> <wire from="(570,730)" to="(740,730)"/> <wire from="(150,350)" to="(180,350)"/> <wire from="(220,1590)" to="(760,1590)"/> <wire from="(760,1370)" to="(780,1370)"/> <wire from="(1000,1450)" to="(1000,1560)"/> <wire from="(830,1120)" to="(850,1120)"/> <wire from="(590,290)" to="(590,330)"/> <wire from="(220,360)" to="(220,650)"/> <wire from="(620,1440)" to="(620,1480)"/> <wire from="(570,750)" to="(720,750)"/> <wire from="(400,1080)" to="(430,1080)"/> <wire from="(570,1420)" to="(590,1420)"/> <wire from="(960,1060)" to="(1110,1060)"/> <wire from="(830,1120)" to="(830,1220)"/> <wire from="(1040,1170)" to="(1110,1170)"/> <wire from="(220,1110)" to="(220,1470)"/> <wire from="(160,370)" to="(180,370)"/> <wire from="(140,110)" to="(160,110)"/> <wire from="(820,1340)" to="(850,1340)"/> <wire from="(570,1400)" to="(660,1400)"/> <wire from="(380,1080)" to="(390,1080)"/> <wire from="(1080,1440)" to="(1110,1440)"/> <wire from="(720,1480)" to="(850,1480)"/> <wire from="(640,1460)" to="(640,1520)"/> <wire from="(570,770)" to="(700,770)"/> <wire from="(630,1450)" to="(630,1500)"/> <wire from="(390,810)" to="(390,870)"/> <wire from="(800,1340)" to="(810,1340)"/> <wire from="(780,770)" to="(1110,770)"/> <wire from="(220,1470)" to="(220,1590)"/> <wire from="(340,470)" to="(340,590)"/> <wire from="(1050,1420)" to="(1050,1530)"/> <wire from="(590,1380)" to="(590,1390)"/> <wire from="(420,450)" to="(610,450)"/> <wire from="(800,730)" to="(1110,730)"/> <wire from="(1070,1470)" to="(1110,1470)"/> <wire from="(680,1560)" to="(1000,1560)"/> <wire from="(400,230)" to="(400,240)"/> <wire from="(650,1470)" to="(650,1540)"/> <wire from="(600,1380)" to="(660,1380)"/> <wire from="(570,790)" to="(630,790)"/> <wire from="(1090,1320)" to="(1090,1350)"/> <wire from="(570,810)" to="(610,810)"/> <wire from="(1040,1170)" to="(1040,1300)"/> <wire from="(390,1420)" to="(390,1440)"/> <wire from="(820,690)" to="(1110,690)"/> <wire from="(140,830)" to="(310,830)"/> <wire from="(320,1340)" to="(430,1340)"/> <wire from="(140,460)" to="(180,460)"/> <wire from="(160,310)" to="(160,340)"/> <wire from="(1020,1330)" to="(1070,1330)"/> <wire from="(760,1100)" to="(780,1100)"/> <wire from="(800,1060)" to="(820,1060)"/> <wire from="(800,1380)" to="(820,1380)"/> <wire from="(1080,1390)" to="(1080,1440)"/> <wire from="(220,280)" to="(380,280)"/> <wire from="(400,250)" to="(430,250)"/> <wire from="(270,730)" to="(430,730)"/> <wire from="(820,650)" to="(820,690)"/> <wire from="(400,650)" to="(430,650)"/> <wire from="(380,1110)" to="(410,1110)"/> <wire from="(960,1030)" to="(1110,1030)"/> <wire from="(640,1460)" to="(660,1460)"/> <wire from="(830,1220)" to="(980,1220)"/> <wire from="(410,270)" to="(430,270)"/> <wire from="(410,830)" to="(430,830)"/> <wire from="(410,670)" to="(430,670)"/> <wire from="(380,1120)" to="(400,1120)"/> <wire from="(760,920)" to="(850,920)"/> <wire from="(340,960)" to="(340,1320)"/> <wire from="(160,340)" to="(180,340)"/> <wire from="(800,1050)" to="(830,1050)"/> <wire from="(420,410)" to="(420,450)"/> <wire from="(800,1370)" to="(830,1370)"/> <wire from="(140,400)" to="(160,400)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(420,530)" to="(430,530)"/> <wire from="(420,370)" to="(430,370)"/> <wire from="(380,1130)" to="(390,1130)"/> <wire from="(590,1410)" to="(660,1410)"/> <wire from="(410,860)" to="(680,860)"/> <wire from="(140,1050)" to="(150,1050)"/> <wire from="(570,1540)" to="(650,1540)"/> <wire from="(800,1070)" to="(810,1070)"/> <wire from="(800,1390)" to="(810,1390)"/> <wire from="(840,650)" to="(1110,650)"/> <wire from="(340,890)" to="(340,960)"/> <wire from="(180,250)" to="(180,320)"/> <wire from="(610,1370)" to="(660,1370)"/> <wire from="(820,1340)" to="(820,1350)"/> <wire from="(380,1460)" to="(430,1460)"/> <wire from="(380,1540)" to="(430,1540)"/> <wire from="(860,610)" to="(1110,610)"/> <wire from="(400,1080)" to="(400,1090)"/> <wire from="(760,1370)" to="(760,1590)"/> <wire from="(570,1340)" to="(610,1340)"/> <wire from="(400,1480)" to="(400,1500)"/> <wire from="(810,1100)" to="(850,1100)"/> <wire from="(810,1420)" to="(850,1420)"/> <wire from="(320,880)" to="(610,880)"/> <wire from="(780,690)" to="(780,770)"/> <wire from="(140,1020)" to="(430,1020)"/> <wire from="(600,1360)" to="(600,1380)"/> <wire from="(1060,1500)" to="(1110,1500)"/> <wire from="(390,1160)" to="(430,1160)"/> <wire from="(140,280)" to="(170,280)"/> <wire from="(800,1350)" to="(820,1350)"/> <wire from="(830,1060)" to="(850,1060)"/> <wire from="(830,1380)" to="(850,1380)"/> <wire from="(220,650)" to="(380,650)"/> <wire from="(400,1500)" to="(430,1500)"/> <wire from="(800,1400)" to="(800,1440)"/> <wire from="(960,1000)" to="(1110,1000)"/> <wire from="(410,1120)" to="(430,1120)"/> <wire from="(380,1090)" to="(400,1090)"/> <wire from="(380,1140)" to="(380,1180)"/> <wire from="(220,1470)" to="(360,1470)"/> <wire from="(400,640)" to="(410,640)"/> <wire from="(420,1300)" to="(430,1300)"/> <wire from="(570,1280)" to="(640,1280)"/> <wire from="(570,1520)" to="(640,1520)"/> <wire from="(170,330)" to="(180,330)"/> <wire from="(1090,1320)" to="(1110,1320)"/> <wire from="(1050,1200)" to="(1050,1310)"/> <wire from="(410,260)" to="(410,270)"/> <wire from="(410,660)" to="(410,670)"/> <wire from="(610,810)" to="(610,880)"/> <wire from="(810,980)" to="(810,1010)"/> <wire from="(620,1360)" to="(660,1360)"/> <wire from="(1040,1430)" to="(1040,1560)"/> <wire from="(620,1440)" to="(660,1440)"/> <wire from="(1020,1340)" to="(1080,1340)"/> <wire from="(1050,1530)" to="(1110,1530)"/> <wire from="(610,1340)" to="(610,1370)"/> <wire from="(590,390)" to="(590,470)"/> <wire from="(740,1460)" to="(850,1460)"/> <wire from="(1100,1350)" to="(1100,1360)"/> <wire from="(390,810)" to="(430,810)"/> <wire from="(1060,1230)" to="(1110,1230)"/> <wire from="(1020,1370)" to="(1100,1370)"/> <wire from="(340,1320)" to="(430,1320)"/> <wire from="(570,290)" to="(590,290)"/> <wire from="(840,610)" to="(840,650)"/> <wire from="(960,970)" to="(1110,970)"/> <wire from="(140,790)" to="(290,790)"/> <wire from="(1020,1380)" to="(1090,1380)"/> <wire from="(1040,1560)" to="(1110,1560)"/> <wire from="(570,570)" to="(1110,570)"/> <wire from="(630,940)" to="(850,940)"/> <wire from="(420,390)" to="(430,390)"/> <wire from="(420,550)" to="(430,550)"/> <wire from="(420,790)" to="(430,790)"/> <wire from="(420,150)" to="(430,150)"/> <wire from="(170,380)" to="(180,380)"/> <wire from="(800,1010)" to="(810,1010)"/> <wire from="(1020,1300)" to="(1040,1300)"/> <wire from="(760,1100)" to="(760,1370)"/> <wire from="(830,1050)" to="(830,1060)"/> <wire from="(830,1370)" to="(830,1380)"/> <wire from="(1020,1410)" to="(1060,1410)"/> <wire from="(380,1400)" to="(430,1400)"/> <wire from="(1060,1230)" to="(1060,1320)"/> <wire from="(410,630)" to="(410,640)"/> <wire from="(410,1110)" to="(410,1120)"/> <wire from="(570,1500)" to="(630,1500)"/> <wire from="(220,650)" to="(220,1110)"/> <wire from="(270,730)" to="(270,750)"/> <wire from="(700,770)" to="(700,1500)"/> <wire from="(740,730)" to="(740,1460)"/> <wire from="(1020,1390)" to="(1080,1390)"/> <wire from="(1070,1400)" to="(1070,1470)"/> <wire from="(570,590)" to="(860,590)"/> <wire from="(320,610)" to="(430,610)"/> <wire from="(780,1080)" to="(780,1100)"/> <wire from="(390,1490)" to="(390,1520)"/> <wire from="(380,1400)" to="(380,1430)"/> <wire from="(140,1360)" to="(430,1360)"/> <wire from="(1020,1400)" to="(1070,1400)"/> <wire from="(390,1420)" to="(430,1420)"/> <wire from="(1030,1590)" to="(1110,1590)"/> <wire from="(620,1320)" to="(620,1360)"/> <wire from="(400,1440)" to="(430,1440)"/> <wire from="(570,1380)" to="(590,1380)"/> <wire from="(960,940)" to="(1110,940)"/> <wire from="(1020,1440)" to="(1030,1440)"/> <wire from="(680,860)" to="(680,1160)"/> <wire from="(980,1120)" to="(980,1160)"/> <wire from="(630,1350)" to="(660,1350)"/> <wire from="(590,870)" to="(590,1030)"/> <wire from="(1020,1350)" to="(1090,1350)"/> <wire from="(290,750)" to="(290,790)"/> <wire from="(140,310)" to="(160,310)"/> <wire from="(400,660)" to="(410,660)"/> <wire from="(420,1000)" to="(430,1000)"/> <wire from="(380,1440)" to="(390,1440)"/> <wire from="(420,920)" to="(430,920)"/> <wire from="(400,260)" to="(410,260)"/> <wire from="(1020,1420)" to="(1050,1420)"/> <wire from="(140,140)" to="(220,140)"/> <wire from="(310,770)" to="(310,830)"/> <wire from="(570,610)" to="(840,610)"/> <wire from="(840,1260)" to="(850,1260)"/> <wire from="(1020,1430)" to="(1040,1430)"/> <wire from="(650,1470)" to="(660,1470)"/> <wire from="(1030,1440)" to="(1030,1590)"/> <wire from="(830,1020)" to="(830,1030)"/> <wire from="(570,1480)" to="(620,1480)"/> <wire from="(570,1320)" to="(620,1320)"/> <wire from="(150,340)" to="(150,350)"/> <wire from="(600,1420)" to="(660,1420)"/> <wire from="(630,940)" to="(630,1220)"/> <wire from="(400,270)" to="(400,290)"/> <wire from="(390,1060)" to="(390,1080)"/> <wire from="(220,280)" to="(220,360)"/> <wire from="(320,980)" to="(430,980)"/> <wire from="(810,1320)" to="(810,1340)"/> <wire from="(1100,1370)" to="(1100,1380)"/> <wire from="(340,890)" to="(630,890)"/> <wire from="(800,1020)" to="(820,1020)"/> <wire from="(150,360)" to="(180,360)"/> <wire from="(140,430)" to="(170,430)"/> <wire from="(220,110)" to="(250,110)"/> <wire from="(960,1260)" to="(980,1260)"/> <wire from="(400,290)" to="(430,290)"/> <wire from="(570,390)" to="(590,390)"/> <wire from="(380,1470)" to="(410,1470)"/> <wire from="(270,690)" to="(430,690)"/> <wire from="(270,210)" to="(430,210)"/> <wire from="(570,1030)" to="(590,1030)"/> <wire from="(960,910)" to="(1110,910)"/> <wire from="(640,1340)" to="(660,1340)"/> <wire from="(410,630)" to="(430,630)"/> <wire from="(380,1480)" to="(400,1480)"/> <wire from="(320,980)" to="(320,1340)"/> <wire from="(170,280)" to="(170,330)"/> <wire from="(420,410)" to="(430,410)"/> <wire from="(800,670)" to="(800,730)"/> <wire from="(420,570)" to="(430,570)"/> <wire from="(380,1490)" to="(390,1490)"/> <wire from="(1080,1290)" to="(1110,1290)"/> <wire from="(1020,1310)" to="(1050,1310)"/> <wire from="(140,370)" to="(150,370)"/> <wire from="(320,330)" to="(590,330)"/> <wire from="(630,1300)" to="(630,1350)"/> <wire from="(570,1260)" to="(650,1260)"/> <wire from="(140,750)" to="(270,750)"/> <comp lib="0" loc="(290,140)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(323,94)" name="Text"> <a name="text" val="/ACLK2 = NOT ACLK"/> </comp> <comp lib="0" loc="(840,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(160,110)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1110,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(1110,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(360,1470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(420,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(1110,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4011"/> </comp> <comp loc="(500,530)" name="DPCM_CONTROL"/> <comp lib="0" loc="(140,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1110,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,280)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="8"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(840,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1110,1590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA14"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(680,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="15"/> <a name="incoming" val="15"/> <a name="appear" val="right"/> </comp> <comp loc="(480,900)" name="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"/> <comp lib="0" loc="(1110,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCRDY"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1240)" name="DPCM_ADDRESS_COUNTER"/> <comp lib="0" loc="(1110,1320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(140,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(1110,1470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(780,1370)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1110,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCINT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1110,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(1110,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(420,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(420,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1000,1450)" name="Splitter"> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(150,1050)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(840,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(270,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(490,350)" name="DPCM_SAMPLE_BIT_COUNTER"> <a name="label" val="DPCM SAMPLE BIT COUNTER"/> </comp> <comp lib="0" loc="(840,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DMC/AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,110)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(420,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(420,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(780,1080)" name="Splitter"> <a name="fanout" val="7"/> <a name="incoming" val="8"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(420,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1110,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(420,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp loc="(480,110)" name="DPCM_FREQUENCY_LFSR"/> <comp lib="0" loc="(140,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,170)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp loc="(920,860)" name="DPCM_OUTPUT_COUNTER"/> <comp lib="0" loc="(140,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(140,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(140,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(360,1110)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(420,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,360)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1110,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(380,650)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="1"/> <a name="bit7" val="2"/> </comp> <comp loc="(920,1240)" name="DPCM_SAMPLE_SHIFT_REGISTER"/> <comp lib="0" loc="(1110,1060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(1110,1170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,1000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1110,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1110,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(1110,1200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(420,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(1110,1380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RUNDMC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1110,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC4"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="DPCM_FREQUENCY_LFSR"> <a name="circuit" val="DPCM_FREQUENCY_LFSR"/> <a name="clabel" val="FREQUENCY LFSR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M68,40 Q72,50 76,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffb3b2" height="202" stroke="#000000" stroke-width="2" width="140" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="224">DFLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="124">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="165">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="204">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="84">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="144">W4010</text> <circ-port height="8" pin="90,130" width="8" x="46" y="56"/> <circ-port height="8" pin="90,80" width="8" x="46" y="116"/> <circ-port height="8" pin="100,610" width="8" x="46" y="156"/> <circ-port height="8" pin="100,680" width="8" x="46" y="176"/> <circ-port height="8" pin="100,750" width="8" x="46" y="196"/> <circ-port height="8" pin="100,820" width="8" x="46" y="216"/> <circ-port height="10" pin="930,1360" width="10" x="185" y="215"/> <circ-port height="8" pin="90,1370" width="8" x="46" y="76"/> <circ-port height="8" pin="100,930" width="8" x="46" y="136"/> <circ-anchor facing="east" height="6" width="6" x="97" y="37"/> </appear> <wire from="(200,630)" to="(200,700)"/> <wire from="(630,1060)" to="(630,1130)"/> <wire from="(630,820)" to="(630,890)"/> <wire from="(630,580)" to="(630,650)"/> <wire from="(630,340)" to="(630,410)"/> <wire from="(530,460)" to="(570,460)"/> <wire from="(530,220)" to="(570,220)"/> <wire from="(530,700)" to="(570,700)"/> <wire from="(530,940)" to="(570,940)"/> <wire from="(530,1180)" to="(570,1180)"/> <wire from="(290,1330)" to="(290,1350)"/> <wire from="(420,820)" to="(420,840)"/> <wire from="(420,1060)" to="(420,1080)"/> <wire from="(680,680)" to="(780,680)"/> <wire from="(310,700)" to="(420,700)"/> <wire from="(100,750)" to="(140,750)"/> <wire from="(180,590)" to="(220,590)"/> <wire from="(890,680)" to="(910,680)"/> <wire from="(680,710)" to="(680,820)"/> <wire from="(340,1330)" to="(360,1330)"/> <wire from="(290,1280)" to="(310,1280)"/> <wire from="(270,1260)" to="(270,1370)"/> <wire from="(470,820)" to="(490,820)"/> <wire from="(470,340)" to="(490,340)"/> <wire from="(470,1060)" to="(490,1060)"/> <wire from="(470,580)" to="(490,580)"/> <wire from="(720,410)" to="(720,660)"/> <wire from="(920,860)" to="(920,1300)"/> <wire from="(700,720)" to="(780,720)"/> <wire from="(450,320)" to="(450,440)"/> <wire from="(450,800)" to="(450,920)"/> <wire from="(450,1040)" to="(450,1160)"/> <wire from="(450,560)" to="(450,680)"/> <wire from="(350,940)" to="(420,940)"/> <wire from="(160,690)" to="(160,700)"/> <wire from="(680,650)" to="(680,680)"/> <wire from="(200,840)" to="(200,930)"/> <wire from="(160,700)" to="(200,700)"/> <wire from="(180,800)" to="(220,800)"/> <wire from="(270,1370)" to="(310,1370)"/> <wire from="(430,490)" to="(520,490)"/> <wire from="(430,730)" to="(520,730)"/> <wire from="(430,250)" to="(520,250)"/> <wire from="(500,950)" to="(500,990)"/> <wire from="(500,1190)" to="(500,1230)"/> <wire from="(430,1210)" to="(520,1210)"/> <wire from="(430,970)" to="(520,970)"/> <wire from="(880,180)" to="(880,670)"/> <wire from="(380,380)" to="(400,380)"/> <wire from="(380,860)" to="(400,860)"/> <wire from="(380,620)" to="(400,620)"/> <wire from="(380,1100)" to="(400,1100)"/> <wire from="(640,150)" to="(670,150)"/> <wire from="(500,710)" to="(500,750)"/> <wire from="(500,230)" to="(500,270)"/> <wire from="(500,470)" to="(500,510)"/> <wire from="(630,700)" to="(760,700)"/> <wire from="(430,750)" to="(500,750)"/> <wire from="(430,270)" to="(500,270)"/> <wire from="(430,510)" to="(500,510)"/> <wire from="(380,380)" to="(380,500)"/> <wire from="(430,1230)" to="(500,1230)"/> <wire from="(430,990)" to="(500,990)"/> <wire from="(380,860)" to="(380,980)"/> <wire from="(380,620)" to="(380,740)"/> <wire from="(380,1100)" to="(380,1220)"/> <wire from="(720,730)" to="(720,1060)"/> <wire from="(120,730)" to="(120,800)"/> <wire from="(630,650)" to="(680,650)"/> <wire from="(720,730)" to="(780,730)"/> <wire from="(90,80)" to="(650,80)"/> <wire from="(420,520)" to="(420,540)"/> <wire from="(420,280)" to="(420,300)"/> <wire from="(100,610)" to="(140,610)"/> <wire from="(270,1260)" to="(310,1260)"/> <wire from="(310,740)" to="(350,740)"/> <wire from="(670,130)" to="(670,150)"/> <wire from="(450,320)" to="(490,320)"/> <wire from="(450,1040)" to="(490,1040)"/> <wire from="(450,800)" to="(490,800)"/> <wire from="(450,560)" to="(490,560)"/> <wire from="(890,700)" to="(910,700)"/> <wire from="(650,80)" to="(930,80)"/> <wire from="(90,130)" to="(120,130)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(550,680)" to="(570,680)"/> <wire from="(550,1160)" to="(570,1160)"/> <wire from="(550,200)" to="(570,200)"/> <wire from="(550,440)" to="(570,440)"/> <wire from="(610,1060)" to="(630,1060)"/> <wire from="(610,820)" to="(630,820)"/> <wire from="(610,580)" to="(630,580)"/> <wire from="(610,340)" to="(630,340)"/> <wire from="(930,80)" to="(930,820)"/> <wire from="(910,130)" to="(910,680)"/> <wire from="(630,1060)" to="(720,1060)"/> <wire from="(120,730)" to="(140,730)"/> <wire from="(550,680)" to="(550,800)"/> <wire from="(550,920)" to="(550,1040)"/> <wire from="(550,440)" to="(550,560)"/> <wire from="(550,200)" to="(550,320)"/> <wire from="(470,1130)" to="(470,1180)"/> <wire from="(470,890)" to="(470,940)"/> <wire from="(470,650)" to="(470,700)"/> <wire from="(470,410)" to="(470,460)"/> <wire from="(760,140)" to="(760,200)"/> <wire from="(290,1300)" to="(360,1300)"/> <wire from="(360,820)" to="(420,820)"/> <wire from="(200,700)" to="(200,770)"/> <wire from="(730,130)" to="(910,130)"/> <wire from="(100,820)" to="(140,820)"/> <wire from="(340,420)" to="(340,640)"/> <wire from="(180,660)" to="(220,660)"/> <wire from="(630,290)" to="(740,290)"/> <wire from="(520,830)" to="(520,850)"/> <wire from="(520,590)" to="(520,610)"/> <wire from="(520,350)" to="(520,370)"/> <wire from="(520,1070)" to="(520,1090)"/> <wire from="(240,1370)" to="(270,1370)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(470,290)" to="(630,290)"/> <wire from="(310,640)" to="(340,640)"/> <wire from="(470,1010)" to="(630,1010)"/> <wire from="(470,770)" to="(630,770)"/> <wire from="(470,530)" to="(630,530)"/> <wire from="(760,700)" to="(780,700)"/> <wire from="(290,1350)" to="(310,1350)"/> <wire from="(640,170)" to="(670,170)"/> <wire from="(470,160)" to="(600,160)"/> <wire from="(360,540)" to="(360,660)"/> <wire from="(120,590)" to="(120,660)"/> <wire from="(160,760)" to="(160,770)"/> <wire from="(630,940)" to="(630,1010)"/> <wire from="(630,700)" to="(630,770)"/> <wire from="(630,460)" to="(630,530)"/> <wire from="(630,220)" to="(630,290)"/> <wire from="(530,580)" to="(570,580)"/> <wire from="(530,340)" to="(570,340)"/> <wire from="(530,820)" to="(570,820)"/> <wire from="(530,1060)" to="(570,1060)"/> <wire from="(420,700)" to="(420,720)"/> <wire from="(420,940)" to="(420,960)"/> <wire from="(420,1180)" to="(420,1200)"/> <wire from="(780,180)" to="(880,180)"/> <wire from="(650,80)" to="(650,160)"/> <wire from="(350,1270)" to="(450,1270)"/> <wire from="(160,770)" to="(200,770)"/> <wire from="(380,1360)" to="(930,1360)"/> <wire from="(330,1180)" to="(420,1180)"/> <wire from="(330,300)" to="(420,300)"/> <wire from="(740,290)" to="(740,650)"/> <wire from="(450,1160)" to="(450,1270)"/> <wire from="(310,620)" to="(330,620)"/> <wire from="(310,780)" to="(330,780)"/> <wire from="(470,1180)" to="(490,1180)"/> <wire from="(470,220)" to="(490,220)"/> <wire from="(470,460)" to="(490,460)"/> <wire from="(470,700)" to="(490,700)"/> <wire from="(470,940)" to="(490,940)"/> <wire from="(120,590)" to="(140,590)"/> <wire from="(630,940)" to="(700,940)"/> <wire from="(450,200)" to="(450,320)"/> <wire from="(450,680)" to="(450,800)"/> <wire from="(450,920)" to="(450,1040)"/> <wire from="(450,440)" to="(450,560)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(730,180)" to="(780,180)"/> <wire from="(700,530)" to="(700,670)"/> <wire from="(310,720)" to="(360,720)"/> <wire from="(120,130)" to="(550,130)"/> <wire from="(120,130)" to="(120,150)"/> <wire from="(360,1300)" to="(920,1300)"/> <wire from="(700,720)" to="(700,940)"/> <wire from="(100,680)" to="(140,680)"/> <wire from="(430,850)" to="(520,850)"/> <wire from="(430,610)" to="(520,610)"/> <wire from="(430,370)" to="(520,370)"/> <wire from="(500,1070)" to="(500,1110)"/> <wire from="(360,720)" to="(360,820)"/> <wire from="(430,1090)" to="(520,1090)"/> <wire from="(380,260)" to="(400,260)"/> <wire from="(730,200)" to="(760,200)"/> <wire from="(380,500)" to="(400,500)"/> <wire from="(380,1220)" to="(400,1220)"/> <wire from="(380,980)" to="(400,980)"/> <wire from="(380,740)" to="(400,740)"/> <wire from="(120,800)" to="(140,800)"/> <wire from="(500,830)" to="(500,870)"/> <wire from="(500,350)" to="(500,390)"/> <wire from="(500,590)" to="(500,630)"/> <wire from="(630,410)" to="(720,410)"/> <wire from="(910,760)" to="(910,820)"/> <wire from="(470,160)" to="(470,220)"/> <wire from="(430,870)" to="(500,870)"/> <wire from="(430,390)" to="(500,390)"/> <wire from="(430,630)" to="(500,630)"/> <wire from="(380,500)" to="(380,620)"/> <wire from="(380,260)" to="(380,380)"/> <wire from="(430,1110)" to="(500,1110)"/> <wire from="(380,740)" to="(380,860)"/> <wire from="(380,980)" to="(380,1100)"/> <wire from="(330,300)" to="(330,620)"/> <wire from="(200,770)" to="(200,840)"/> <wire from="(160,620)" to="(160,630)"/> <wire from="(380,1220)" to="(380,1360)"/> <wire from="(350,740)" to="(350,940)"/> <wire from="(420,400)" to="(420,420)"/> <wire from="(740,650)" to="(780,650)"/> <wire from="(310,680)" to="(420,680)"/> <wire from="(360,1300)" to="(360,1330)"/> <wire from="(160,630)" to="(200,630)"/> <wire from="(180,730)" to="(220,730)"/> <wire from="(670,170)" to="(670,190)"/> <wire from="(450,200)" to="(490,200)"/> <wire from="(450,920)" to="(490,920)"/> <wire from="(450,680)" to="(490,680)"/> <wire from="(450,440)" to="(490,440)"/> <wire from="(450,1160)" to="(490,1160)"/> <wire from="(840,690)" to="(860,690)"/> <wire from="(550,800)" to="(570,800)"/> <wire from="(550,1040)" to="(570,1040)"/> <wire from="(550,560)" to="(570,560)"/> <wire from="(550,320)" to="(570,320)"/> <wire from="(610,940)" to="(630,940)"/> <wire from="(610,700)" to="(630,700)"/> <wire from="(610,460)" to="(630,460)"/> <wire from="(610,220)" to="(630,220)"/> <wire from="(290,1330)" to="(320,1330)"/> <wire from="(670,190)" to="(700,190)"/> <wire from="(340,760)" to="(340,1060)"/> <wire from="(420,640)" to="(420,680)"/> <wire from="(550,800)" to="(550,920)"/> <wire from="(550,1040)" to="(550,1160)"/> <wire from="(550,320)" to="(550,440)"/> <wire from="(550,560)" to="(550,680)"/> <wire from="(880,670)" to="(880,1180)"/> <wire from="(340,1060)" to="(420,1060)"/> <wire from="(340,420)" to="(420,420)"/> <wire from="(470,1010)" to="(470,1060)"/> <wire from="(470,770)" to="(470,820)"/> <wire from="(470,530)" to="(470,580)"/> <wire from="(470,290)" to="(470,340)"/> <wire from="(780,120)" to="(780,180)"/> <wire from="(90,1370)" to="(220,1370)"/> <wire from="(360,540)" to="(420,540)"/> <wire from="(120,660)" to="(120,730)"/> <wire from="(730,120)" to="(780,120)"/> <wire from="(630,820)" to="(680,820)"/> <wire from="(160,830)" to="(160,840)"/> <wire from="(310,660)" to="(360,660)"/> <wire from="(550,130)" to="(550,200)"/> <wire from="(720,660)" to="(780,660)"/> <wire from="(290,1280)" to="(290,1300)"/> <wire from="(520,230)" to="(520,250)"/> <wire from="(330,780)" to="(330,1180)"/> <wire from="(680,710)" to="(780,710)"/> <wire from="(160,840)" to="(200,840)"/> <wire from="(520,950)" to="(520,970)"/> <wire from="(520,710)" to="(520,730)"/> <wire from="(520,470)" to="(520,490)"/> <wire from="(520,1190)" to="(520,1210)"/> <wire from="(100,930)" to="(200,930)"/> <wire from="(120,170)" to="(120,590)"/> <wire from="(910,700)" to="(910,740)"/> <wire from="(470,410)" to="(630,410)"/> <wire from="(310,760)" to="(340,760)"/> <wire from="(350,1360)" to="(380,1360)"/> <wire from="(470,1130)" to="(630,1130)"/> <wire from="(470,890)" to="(630,890)"/> <wire from="(470,650)" to="(630,650)"/> <wire from="(730,140)" to="(760,140)"/> <wire from="(120,660)" to="(140,660)"/> <wire from="(630,530)" to="(700,530)"/> <wire from="(700,670)" to="(780,670)"/> <wire from="(610,1180)" to="(880,1180)"/> <wire from="(760,200)" to="(760,700)"/> <comp lib="2" loc="(400,980)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(920,860)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(90,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="2" loc="(400,260)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(180,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(180,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(400,380)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(400,860)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(180,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(400,740)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(700,190)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(610,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(400,1100)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(400,1220)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(270,600)" name="DPCM_TABLE"/> <comp lib="0" loc="(100,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(100,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="4" loc="(530,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(896,751)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="4" loc="(610,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(600,160)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="2" loc="(400,620)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(641,1176)" name="Text"> <a name="text" val="S0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(320,1330)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(610,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(418,1264)" name="Text"> <a name="text" val="DFSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(610,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(840,690)" name="NOR Gate"> <a name="inputs" val="8"/> </comp> <comp lib="2" loc="(400,500)" name="Demultiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(610,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(910,760)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(530,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(610,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="6" loc="(227,1353)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(328,1322)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(350,1270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="4" loc="(610,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(180,800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(860,690)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(930,1360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DFLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(350,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(641,694)" name="Text"> <a name="text" val="S4"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(690,130)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(530,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(610,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(120,170)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(530,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(610,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DPCM_TABLE"> <a name="circuit" val="DPCM_TABLE"/> <a name="clabel" val="DPCM TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M71,51 Q75,61 79,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffb225" height="252" stroke="#000000" stroke-width="2" width="90" x="50" y="20"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="45">F0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="114">F1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">F2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="254">F3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="234">FR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="214">FR1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="194">FR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="174">FR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="154">FR4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="134">FR5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="114">FR6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="94">FR7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="74">FR8</text> <circ-port height="10" pin="260,20" width="10" x="135" y="225"/> <circ-port height="10" pin="260,50" width="10" x="135" y="205"/> <circ-port height="10" pin="260,80" width="10" x="135" y="185"/> <circ-port height="10" pin="260,110" width="10" x="135" y="165"/> <circ-port height="10" pin="260,140" width="10" x="135" y="145"/> <circ-port height="10" pin="260,170" width="10" x="135" y="125"/> <circ-port height="10" pin="260,200" width="10" x="135" y="105"/> <circ-port height="10" pin="260,230" width="10" x="135" y="85"/> <circ-port height="10" pin="260,260" width="10" x="135" y="65"/> <circ-port height="8" pin="60,350" width="8" x="46" y="246"/> <circ-port height="8" pin="60,320" width="8" x="46" y="176"/> <circ-port height="8" pin="60,290" width="8" x="46" y="106"/> <circ-port height="8" pin="60,260" width="8" x="46" y="36"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(450,200)" to="(510,200)"/> <wire from="(450,120)" to="(510,120)"/> <wire from="(450,140)" to="(510,140)"/> <wire from="(450,220)" to="(510,220)"/> <wire from="(450,80)" to="(510,80)"/> <wire from="(450,160)" to="(510,160)"/> <wire from="(450,100)" to="(510,100)"/> <wire from="(450,180)" to="(510,180)"/> <wire from="(60,90)" to="(120,90)"/> <wire from="(60,70)" to="(120,70)"/> <wire from="(60,110)" to="(120,110)"/> <wire from="(60,170)" to="(120,170)"/> <wire from="(60,150)" to="(120,150)"/> <wire from="(60,130)" to="(120,130)"/> <wire from="(60,190)" to="(120,190)"/> <wire from="(60,210)" to="(120,210)"/> <wire from="(670,180)" to="(730,180)"/> <wire from="(670,100)" to="(730,100)"/> <wire from="(670,200)" to="(730,200)"/> <wire from="(670,120)" to="(730,120)"/> <wire from="(670,140)" to="(730,140)"/> <wire from="(670,220)" to="(730,220)"/> <wire from="(670,80)" to="(730,80)"/> <wire from="(670,160)" to="(730,160)"/> <wire from="(210,20)" to="(210,100)"/> <wire from="(210,180)" to="(210,260)"/> <wire from="(380,20)" to="(550,20)"/> <wire from="(380,260)" to="(550,260)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(200,150)" to="(240,150)"/> <wire from="(220,50)" to="(260,50)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(600,260)" to="(770,260)"/> <wire from="(600,20)" to="(770,20)"/> <wire from="(200,160)" to="(230,160)"/> <wire from="(200,120)" to="(230,120)"/> <wire from="(60,260)" to="(90,260)"/> <wire from="(60,290)" to="(80,290)"/> <wire from="(200,170)" to="(220,170)"/> <wire from="(200,110)" to="(220,110)"/> <wire from="(240,110)" to="(260,110)"/> <wire from="(240,170)" to="(260,170)"/> <wire from="(200,180)" to="(210,180)"/> <wire from="(200,100)" to="(210,100)"/> <wire from="(80,300)" to="(90,300)"/> <wire from="(550,20)" to="(550,260)"/> <wire from="(770,20)" to="(770,260)"/> <wire from="(140,220)" to="(140,280)"/> <wire from="(200,140)" to="(260,140)"/> <wire from="(80,310)" to="(80,320)"/> <wire from="(80,290)" to="(80,300)"/> <wire from="(210,20)" to="(260,20)"/> <wire from="(210,260)" to="(260,260)"/> <wire from="(240,110)" to="(240,130)"/> <wire from="(240,150)" to="(240,170)"/> <wire from="(90,320)" to="(90,350)"/> <wire from="(90,260)" to="(90,290)"/> <wire from="(230,80)" to="(260,80)"/> <wire from="(230,200)" to="(260,200)"/> <wire from="(110,280)" to="(140,280)"/> <wire from="(60,350)" to="(90,350)"/> <wire from="(710,210)" to="(730,210)"/> <wire from="(710,130)" to="(730,130)"/> <wire from="(710,70)" to="(730,70)"/> <wire from="(710,150)" to="(730,150)"/> <wire from="(710,90)" to="(730,90)"/> <wire from="(710,170)" to="(730,170)"/> <wire from="(710,110)" to="(730,110)"/> <wire from="(710,190)" to="(730,190)"/> <wire from="(490,90)" to="(510,90)"/> <wire from="(230,80)" to="(230,120)"/> <wire from="(230,160)" to="(230,200)"/> <wire from="(490,150)" to="(510,150)"/> <wire from="(490,70)" to="(510,70)"/> <wire from="(490,170)" to="(510,170)"/> <wire from="(490,110)" to="(510,110)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(100,140)" to="(120,140)"/> <wire from="(100,200)" to="(120,200)"/> <wire from="(100,120)" to="(120,120)"/> <wire from="(100,80)" to="(120,80)"/> <wire from="(100,100)" to="(120,100)"/> <wire from="(100,60)" to="(120,60)"/> <wire from="(60,320)" to="(80,320)"/> <wire from="(100,160)" to="(120,160)"/> <wire from="(100,180)" to="(120,180)"/> <wire from="(160,140)" to="(180,140)"/> <wire from="(380,20)" to="(380,260)"/> <wire from="(80,310)" to="(90,310)"/> <wire from="(600,20)" to="(600,260)"/> <wire from="(220,50)" to="(220,110)"/> <wire from="(220,170)" to="(220,230)"/> <comp lib="0" loc="(670,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x185"/> </comp> <comp lib="0" loc="(60,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x3f"/> </comp> <comp lib="0" loc="(450,220)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x156"/> </comp> <comp lib="6" loc="(68,39)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(670,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18b"/> </comp> <comp lib="0" loc="(100,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf1"/> </comp> <comp lib="0" loc="(60,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdc"/> </comp> <comp lib="0" loc="(670,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x99"/> </comp> <comp lib="0" loc="(60,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F3"/> </comp> <comp lib="0" loc="(100,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(260,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf9"/> </comp> <comp lib="2" loc="(160,140)" name="Multiplexer"> <a name="select" val="4"/> <a name="width" val="9"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(490,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8d"/> </comp> <comp lib="0" loc="(490,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf1"/> </comp> <comp lib="0" loc="(710,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x136"/> </comp> <comp lib="0" loc="(670,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x167"/> </comp> <comp lib="0" loc="(490,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x7d"/> </comp> <comp lib="0" loc="(710,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1e7"/> </comp> <comp lib="0" loc="(670,220)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d5"/> </comp> <comp lib="0" loc="(60,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F1"/> </comp> <comp lib="0" loc="(450,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdb"/> </comp> <comp lib="0" loc="(260,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(710,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d7"/> </comp> <comp lib="0" loc="(60,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8a"/> </comp> <comp lib="0" loc="(260,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(680,50)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="0" loc="(110,280)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(450,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x189"/> </comp> <comp lib="0" loc="(710,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xa4"/> </comp> <comp lib="0" loc="(100,180)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8d"/> </comp> <comp lib="0" loc="(490,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18e"/> </comp> <comp lib="0" loc="(100,100)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1ee"/> </comp> <comp lib="0" loc="(100,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x7d"/> </comp> <comp lib="0" loc="(180,140)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(670,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x71"/> </comp> <comp lib="0" loc="(60,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x189"/> </comp> <comp lib="0" loc="(100,200)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x18e"/> </comp> <comp lib="0" loc="(100,60)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(450,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x3f"/> </comp> <comp lib="0" loc="(60,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F2"/> </comp> <comp lib="0" loc="(60,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdb"/> </comp> <comp lib="0" loc="(260,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F0"/> </comp> <comp lib="0" loc="(450,160)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xdc"/> </comp> <comp lib="0" loc="(710,190)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xa8"/> </comp> <comp lib="0" loc="(60,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x156"/> </comp> <comp lib="0" loc="(450,140)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d1"/> </comp> <comp lib="6" loc="(458,49)" name="Text"> <a name="text" val="NTSC"/> </comp> <comp lib="0" loc="(260,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(710,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x10f"/> </comp> <comp lib="0" loc="(60,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1d1"/> </comp> <comp lib="0" loc="(710,210)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x161"/> </comp> <comp lib="0" loc="(490,90)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x143"/> </comp> <comp lib="0" loc="(710,130)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x74"/> </comp> <comp lib="0" loc="(670,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1cc"/> </comp> <comp lib="0" loc="(450,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x8a"/> </comp> <comp lib="0" loc="(260,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,110)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1ee"/> </comp> <comp lib="0" loc="(670,120)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x1bc"/> </comp> <comp lib="0" loc="(260,20)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,70)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x173"/> </comp> <comp lib="0" loc="(100,80)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x143"/> </comp> <comp lib="0" loc="(260,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LP2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,170)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0xf9"/> </comp> <comp lib="0" loc="(490,150)" name="Constant"> <a name="width" val="9"/> <a name="value" val="0x9"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_BIT_COUNTER"> <a name="circuit" val="DPCM_SAMPLE_BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M62,42 Q66,52 70,42" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#9765ff" height="81" stroke="#000000" stroke-width="2" width="140" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="163" y="84">#NOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="84">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">NSTEP</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,480" width="8" x="46" y="76"/> <circ-port height="8" pin="90,90" width="8" x="46" y="96"/> <circ-port height="10" pin="500,470" width="10" x="185" y="75"/> <circ-anchor facing="east" height="6" width="6" x="107" y="37"/> </appear> <wire from="(200,110)" to="(200,180)"/> <wire from="(220,90)" to="(220,160)"/> <wire from="(220,390)" to="(220,460)"/> <wire from="(200,410)" to="(200,480)"/> <wire from="(200,110)" to="(260,110)"/> <wire from="(200,330)" to="(260,330)"/> <wire from="(200,410)" to="(260,410)"/> <wire from="(300,400)" to="(350,400)"/> <wire from="(300,100)" to="(350,100)"/> <wire from="(90,30)" to="(330,30)"/> <wire from="(330,230)" to="(330,380)"/> <wire from="(170,270)" to="(170,420)"/> <wire from="(110,90)" to="(110,240)"/> <wire from="(220,90)" to="(260,90)"/> <wire from="(220,390)" to="(260,390)"/> <wire from="(130,110)" to="(130,140)"/> <wire from="(130,410)" to="(130,440)"/> <wire from="(220,360)" to="(220,390)"/> <wire from="(110,90)" to="(140,90)"/> <wire from="(110,390)" to="(140,390)"/> <wire from="(220,210)" to="(310,210)"/> <wire from="(330,380)" to="(350,380)"/> <wire from="(330,80)" to="(350,80)"/> <wire from="(420,450)" to="(440,450)"/> <wire from="(480,470)" to="(500,470)"/> <wire from="(310,170)" to="(310,210)"/> <wire from="(180,110)" to="(200,110)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(400,100)" to="(400,140)"/> <wire from="(400,400)" to="(400,440)"/> <wire from="(300,470)" to="(440,470)"/> <wire from="(390,250)" to="(400,250)"/> <wire from="(130,290)" to="(400,290)"/> <wire from="(300,320)" to="(310,320)"/> <wire from="(130,110)" to="(140,110)"/> <wire from="(130,410)" to="(140,410)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(250,310)" to="(260,310)"/> <wire from="(220,460)" to="(230,460)"/> <wire from="(330,30)" to="(330,80)"/> <wire from="(200,260)" to="(200,330)"/> <wire from="(220,240)" to="(220,310)"/> <wire from="(200,180)" to="(260,180)"/> <wire from="(200,260)" to="(260,260)"/> <wire from="(200,480)" to="(260,480)"/> <wire from="(300,250)" to="(350,250)"/> <wire from="(330,80)" to="(330,230)"/> <wire from="(170,120)" to="(170,270)"/> <wire from="(220,70)" to="(220,90)"/> <wire from="(110,240)" to="(110,390)"/> <wire from="(220,240)" to="(260,240)"/> <wire from="(130,260)" to="(130,290)"/> <wire from="(220,210)" to="(220,240)"/> <wire from="(420,30)" to="(420,450)"/> <wire from="(110,240)" to="(140,240)"/> <wire from="(330,30)" to="(420,30)"/> <wire from="(220,360)" to="(310,360)"/> <wire from="(330,230)" to="(350,230)"/> <wire from="(310,320)" to="(310,360)"/> <wire from="(90,90)" to="(110,90)"/> <wire from="(180,260)" to="(200,260)"/> <wire from="(400,250)" to="(400,290)"/> <wire from="(390,400)" to="(400,400)"/> <wire from="(130,140)" to="(400,140)"/> <wire from="(130,440)" to="(400,440)"/> <wire from="(90,480)" to="(170,480)"/> <wire from="(300,170)" to="(310,170)"/> <wire from="(250,460)" to="(260,460)"/> <wire from="(390,100)" to="(400,100)"/> <wire from="(130,260)" to="(140,260)"/> <wire from="(170,420)" to="(180,420)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(170,420)" to="(170,480)"/> <comp lib="1" loc="(300,400)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,100)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NSTEP"/> </comp> <comp lib="1" loc="(300,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(390,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(300,250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(180,90)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(390,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(390,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(250,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(500,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#NOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(480,460)" name="D-latch"/> <comp lib="1" loc="(250,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(180,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(220,70)" name="Constant"> <a name="facing" val="south"/> </comp> </circuit> <circuit name="DPCM_CONTROL"> <a name="circuit" val="DPCM_CONTROL"/> <a name="clabel" val="DPCM CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M82,141 Q86,151 90,141" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#6f90ff" height="360" stroke="#000000" stroke-width="2" width="140" x="60" y="100"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="125">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="144">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="184">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="245">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="324">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="344">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="405">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="265">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="424">SOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="384">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="224">DFLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="444">DOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="204">#NOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="184">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="224">DMCINT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="204">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="168" y="424">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="168" y="404">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="264">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="303">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="164">NSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="324">DSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="179" y="385">PCM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="364">BLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="344">BSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="284">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="364">LOCK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="164">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="305">W4010</text> <circ-port height="8" pin="180,130" width="8" x="56" y="116"/> <circ-port height="8" pin="180,160" width="8" x="56" y="136"/> <circ-port height="8" pin="180,100" width="8" x="56" y="176"/> <circ-port height="8" pin="180,490" width="8" x="56" y="236"/> <circ-port height="8" pin="180,260" width="8" x="56" y="316"/> <circ-port height="8" pin="180,70" width="8" x="56" y="336"/> <circ-port height="8" pin="180,310" width="8" x="56" y="276"/> <circ-port height="8" pin="180,220" width="8" x="56" y="396"/> <circ-port height="8" pin="180,420" width="8" x="56" y="256"/> <circ-port height="8" pin="180,590" width="8" x="56" y="416"/> <circ-port height="8" pin="180,1080" width="8" x="56" y="376"/> <circ-port height="8" pin="180,710" width="8" x="56" y="216"/> <circ-port height="8" pin="180,1670" width="8" x="56" y="436"/> <circ-port height="8" pin="180,2040" width="8" x="56" y="196"/> <circ-port height="10" pin="1230,490" width="10" x="195" y="175"/> <circ-port height="10" pin="1230,230" width="10" x="195" y="215"/> <circ-port height="10" pin="1230,130" width="10" x="195" y="195"/> <circ-port height="10" pin="1230,760" width="10" x="195" y="415"/> <circ-port height="10" pin="1230,850" width="10" x="195" y="395"/> <circ-port height="10" pin="1230,1120" width="10" x="195" y="255"/> <circ-port height="10" pin="1230,1240" width="10" x="195" y="275"/> <circ-port height="10" pin="1230,1290" width="10" x="195" y="295"/> <circ-port height="10" pin="1230,710" width="10" x="195" y="155"/> <circ-port height="10" pin="1230,1690" width="10" x="195" y="315"/> <circ-port height="10" pin="1230,1640" width="10" x="195" y="375"/> <circ-port height="10" pin="1230,1850" width="10" x="195" y="355"/> <circ-port height="10" pin="1230,2030" width="10" x="195" y="335"/> <circ-port height="8" pin="180,1790" width="8" x="56" y="356"/> <circ-port height="8" pin="180,190" width="8" x="56" y="156"/> <circ-port height="8" pin="180,450" width="8" x="56" y="296"/> <circ-anchor facing="east" height="6" width="6" x="127" y="137"/> </appear> <wire from="(1070,840)" to="(1110,840)"/> <wire from="(730,1190)" to="(730,1320)"/> <wire from="(760,1730)" to="(1180,1730)"/> <wire from="(760,1730)" to="(760,1950)"/> <wire from="(840,200)" to="(840,230)"/> <wire from="(810,1850)" to="(810,1880)"/> <wire from="(260,1650)" to="(260,1730)"/> <wire from="(870,1120)" to="(910,1120)"/> <wire from="(820,1140)" to="(820,1160)"/> <wire from="(290,530)" to="(390,530)"/> <wire from="(980,730)" to="(1090,730)"/> <wire from="(840,150)" to="(860,150)"/> <wire from="(840,230)" to="(860,230)"/> <wire from="(570,920)" to="(590,920)"/> <wire from="(260,1730)" to="(280,1730)"/> <wire from="(260,1650)" to="(280,1650)"/> <wire from="(320,750)" to="(340,750)"/> <wire from="(800,1940)" to="(830,1940)"/> <wire from="(1150,850)" to="(1180,850)"/> <wire from="(360,400)" to="(370,400)"/> <wire from="(180,220)" to="(190,220)"/> <wire from="(570,760)" to="(1020,760)"/> <wire from="(970,1810)" to="(980,1810)"/> <wire from="(1170,120)" to="(1170,480)"/> <wire from="(1160,1510)" to="(1180,1510)"/> <wire from="(100,1400)" to="(1320,1400)"/> <wire from="(100,680)" to="(1320,680)"/> <wire from="(580,860)" to="(590,860)"/> <wire from="(1050,130)" to="(1160,130)"/> <wire from="(350,1680)" to="(400,1680)"/> <wire from="(1190,130)" to="(1230,130)"/> <wire from="(1090,770)" to="(1090,860)"/> <wire from="(600,730)" to="(980,730)"/> <wire from="(760,520)" to="(760,590)"/> <wire from="(1100,1470)" to="(1100,1500)"/> <wire from="(760,110)" to="(760,520)"/> <wire from="(820,240)" to="(860,240)"/> <wire from="(780,1160)" to="(820,1160)"/> <wire from="(820,1270)" to="(820,1290)"/> <wire from="(860,1550)" to="(860,1570)"/> <wire from="(340,1600)" to="(380,1600)"/> <wire from="(390,450)" to="(430,450)"/> <wire from="(180,1670)" to="(280,1670)"/> <wire from="(810,1130)" to="(830,1130)"/> <wire from="(810,1930)" to="(830,1930)"/> <wire from="(810,1850)" to="(830,1850)"/> <wire from="(910,1230)" to="(930,1230)"/> <wire from="(1020,1100)" to="(1040,1100)"/> <wire from="(600,600)" to="(620,600)"/> <wire from="(300,130)" to="(330,130)"/> <wire from="(650,1130)" to="(670,1130)"/> <wire from="(1020,760)" to="(1110,760)"/> <wire from="(940,1290)" to="(940,1450)"/> <wire from="(790,1100)" to="(820,1100)"/> <wire from="(1200,710)" to="(1230,710)"/> <wire from="(250,160)" to="(330,160)"/> <wire from="(360,290)" to="(370,290)"/> <wire from="(810,1640)" to="(810,1830)"/> <wire from="(180,190)" to="(190,190)"/> <wire from="(730,920)" to="(730,1110)"/> <wire from="(1320,370)" to="(1320,660)"/> <wire from="(820,1310)" to="(830,1310)"/> <wire from="(850,1980)" to="(860,1980)"/> <wire from="(1090,770)" to="(1110,770)"/> <wire from="(660,830)" to="(670,830)"/> <wire from="(440,920)" to="(510,920)"/> <wire from="(1100,1500)" to="(1120,1500)"/> <wire from="(810,1880)" to="(1180,1880)"/> <wire from="(1100,1760)" to="(1100,1780)"/> <wire from="(600,600)" to="(600,730)"/> <wire from="(1020,1520)" to="(1120,1520)"/> <wire from="(1020,1120)" to="(1120,1120)"/> <wire from="(810,1640)" to="(1230,1640)"/> <wire from="(710,1130)" to="(710,1160)"/> <wire from="(380,1710)" to="(380,1790)"/> <wire from="(1110,230)" to="(1230,230)"/> <wire from="(350,1650)" to="(350,1680)"/> <wire from="(400,500)" to="(400,530)"/> <wire from="(390,340)" to="(430,340)"/> <wire from="(910,1120)" to="(910,1230)"/> <wire from="(250,130)" to="(280,130)"/> <wire from="(920,250)" to="(940,250)"/> <wire from="(920,1450)" to="(940,1450)"/> <wire from="(960,850)" to="(980,850)"/> <wire from="(1020,830)" to="(1040,830)"/> <wire from="(1170,70)" to="(1170,120)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(1060,1860)" to="(1060,2040)"/> <wire from="(650,540)" to="(670,540)"/> <wire from="(670,560)" to="(690,560)"/> <wire from="(710,920)" to="(730,920)"/> <wire from="(500,830)" to="(660,830)"/> <wire from="(260,1750)" to="(280,1750)"/> <wire from="(240,1650)" to="(260,1650)"/> <wire from="(380,1710)" to="(400,1710)"/> <wire from="(1060,1800)" to="(1060,1860)"/> <wire from="(910,1250)" to="(910,1310)"/> <wire from="(890,1950)" to="(890,2010)"/> <wire from="(910,1120)" to="(980,1120)"/> <wire from="(570,570)" to="(570,760)"/> <wire from="(180,710)" to="(250,710)"/> <wire from="(820,1120)" to="(830,1120)"/> <wire from="(1050,220)" to="(1070,220)"/> <wire from="(1160,1850)" to="(1180,1850)"/> <wire from="(100,1420)" to="(1320,1420)"/> <wire from="(380,1600)" to="(380,1670)"/> <wire from="(1040,1830)" to="(1040,1850)"/> <wire from="(350,1700)" to="(400,1700)"/> <wire from="(940,1290)" to="(1230,1290)"/> <wire from="(790,860)" to="(790,890)"/> <wire from="(410,490)" to="(1160,490)"/> <wire from="(710,1100)" to="(710,1130)"/> <wire from="(760,110)" to="(860,110)"/> <wire from="(350,1700)" to="(350,1730)"/> <wire from="(1320,20)" to="(1320,350)"/> <wire from="(790,890)" to="(810,890)"/> <wire from="(1040,1850)" to="(1120,1850)"/> <wire from="(1150,760)" to="(1230,760)"/> <wire from="(320,710)" to="(1180,710)"/> <wire from="(910,1250)" to="(930,1250)"/> <wire from="(870,1850)" to="(890,1850)"/> <wire from="(400,530)" to="(620,530)"/> <wire from="(100,370)" to="(100,660)"/> <wire from="(550,570)" to="(570,570)"/> <wire from="(840,270)" to="(840,310)"/> <wire from="(1090,1760)" to="(1100,1760)"/> <wire from="(730,1150)" to="(750,1150)"/> <wire from="(980,810)" to="(980,850)"/> <wire from="(280,1100)" to="(300,1100)"/> <wire from="(920,130)" to="(950,130)"/> <wire from="(320,710)" to="(320,750)"/> <wire from="(800,1530)" to="(830,1530)"/> <wire from="(1180,1730)" to="(1180,1790)"/> <wire from="(980,730)" to="(980,790)"/> <wire from="(360,470)" to="(370,470)"/> <wire from="(180,130)" to="(190,130)"/> <wire from="(460,1690)" to="(1230,1690)"/> <wire from="(870,1290)" to="(940,1290)"/> <wire from="(770,1460)" to="(770,1640)"/> <wire from="(1100,1840)" to="(1120,1840)"/> <wire from="(1060,2040)" to="(1080,2040)"/> <wire from="(100,350)" to="(1320,350)"/> <wire from="(1320,1420)" to="(1320,2080)"/> <wire from="(730,1190)" to="(1040,1190)"/> <wire from="(180,420)" to="(370,420)"/> <wire from="(1090,730)" to="(1090,750)"/> <wire from="(270,710)" to="(320,710)"/> <wire from="(180,1080)" to="(300,1080)"/> <wire from="(980,850)" to="(1040,850)"/> <wire from="(260,2010)" to="(890,2010)"/> <wire from="(630,920)" to="(670,920)"/> <wire from="(390,430)" to="(390,450)"/> <wire from="(710,1160)" to="(750,1160)"/> <wire from="(770,1460)" to="(810,1460)"/> <wire from="(180,2040)" to="(1060,2040)"/> <wire from="(650,1170)" to="(750,1170)"/> <wire from="(1050,240)" to="(1050,310)"/> <wire from="(820,1100)" to="(820,1120)"/> <wire from="(650,520)" to="(760,520)"/> <wire from="(250,130)" to="(250,160)"/> <wire from="(870,1540)" to="(980,1540)"/> <wire from="(840,270)" to="(860,270)"/> <wire from="(580,860)" to="(580,900)"/> <wire from="(810,1520)" to="(830,1520)"/> <wire from="(920,1470)" to="(940,1470)"/> <wire from="(840,310)" to="(1050,310)"/> <wire from="(410,470)" to="(440,470)"/> <wire from="(1100,1840)" to="(1100,2020)"/> <wire from="(1320,1030)" to="(1320,1400)"/> <wire from="(1160,2030)" to="(1230,2030)"/> <wire from="(430,340)" to="(430,450)"/> <wire from="(1100,1780)" to="(1100,1840)"/> <wire from="(180,450)" to="(390,450)"/> <wire from="(790,1330)" to="(820,1330)"/> <wire from="(970,1240)" to="(1230,1240)"/> <wire from="(180,100)" to="(190,100)"/> <wire from="(180,590)" to="(510,590)"/> <wire from="(760,1950)" to="(830,1950)"/> <wire from="(820,1140)" to="(830,1140)"/> <wire from="(850,1570)" to="(860,1570)"/> <wire from="(1050,240)" to="(1070,240)"/> <wire from="(660,900)" to="(670,900)"/> <wire from="(1020,1810)" to="(1040,1810)"/> <wire from="(1080,1470)" to="(1100,1470)"/> <wire from="(500,900)" to="(510,900)"/> <wire from="(790,910)" to="(790,960)"/> <wire from="(1160,1790)" to="(1180,1790)"/> <wire from="(580,900)" to="(590,900)"/> <wire from="(100,2080)" to="(1320,2080)"/> <wire from="(180,310)" to="(370,310)"/> <wire from="(260,1750)" to="(260,2010)"/> <wire from="(290,260)" to="(860,260)"/> <wire from="(940,180)" to="(940,250)"/> <wire from="(180,70)" to="(1130,70)"/> <wire from="(290,260)" to="(290,530)"/> <wire from="(1190,490)" to="(1230,490)"/> <wire from="(100,20)" to="(100,350)"/> <wire from="(180,260)" to="(290,260)"/> <wire from="(390,320)" to="(390,340)"/> <wire from="(1060,1860)" to="(1120,1860)"/> <wire from="(1050,130)" to="(1050,220)"/> <wire from="(660,590)" to="(760,590)"/> <wire from="(820,1310)" to="(820,1330)"/> <wire from="(870,1830)" to="(980,1830)"/> <wire from="(850,900)" to="(1090,900)"/> <wire from="(1320,680)" to="(1320,1010)"/> <wire from="(840,200)" to="(950,200)"/> <wire from="(790,910)" to="(810,910)"/> <wire from="(1040,1790)" to="(1120,1790)"/> <wire from="(870,1950)" to="(890,1950)"/> <wire from="(340,1090)" to="(750,1090)"/> <wire from="(740,1340)" to="(760,1340)"/> <wire from="(690,1130)" to="(710,1130)"/> <wire from="(1160,1120)" to="(1230,1120)"/> <wire from="(730,1320)" to="(760,1320)"/> <wire from="(860,1860)" to="(860,1960)"/> <wire from="(570,960)" to="(790,960)"/> <wire from="(810,1460)" to="(810,1520)"/> <wire from="(810,1540)" to="(810,1600)"/> <wire from="(550,590)" to="(620,590)"/> <wire from="(1090,860)" to="(1090,900)"/> <wire from="(970,1100)" to="(980,1100)"/> <wire from="(180,1790)" to="(380,1790)"/> <wire from="(1100,2020)" to="(1120,2020)"/> <wire from="(1100,1780)" to="(1120,1780)"/> <wire from="(1150,70)" to="(1170,70)"/> <wire from="(100,1010)" to="(1320,1010)"/> <wire from="(100,370)" to="(1320,370)"/> <wire from="(500,830)" to="(500,900)"/> <wire from="(810,1600)" to="(1180,1600)"/> <wire from="(440,470)" to="(440,920)"/> <wire from="(1180,1510)" to="(1180,1600)"/> <wire from="(660,830)" to="(660,900)"/> <wire from="(840,180)" to="(940,180)"/> <wire from="(950,130)" to="(1050,130)"/> <wire from="(710,1100)" to="(750,1100)"/> <wire from="(770,1640)" to="(810,1640)"/> <wire from="(410,310)" to="(840,310)"/> <wire from="(100,1420)" to="(100,2080)"/> <wire from="(860,1960)" to="(860,1980)"/> <wire from="(770,860)" to="(790,860)"/> <wire from="(810,1300)" to="(830,1300)"/> <wire from="(810,1540)" to="(830,1540)"/> <wire from="(730,1110)" to="(730,1150)"/> <wire from="(380,1670)" to="(400,1670)"/> <wire from="(790,1270)" to="(820,1270)"/> <wire from="(800,1840)" to="(830,1840)"/> <wire from="(100,1030)" to="(100,1400)"/> <wire from="(810,1460)" to="(880,1460)"/> <wire from="(1090,860)" to="(1110,860)"/> <wire from="(1020,1830)" to="(1040,1830)"/> <wire from="(600,400)" to="(600,580)"/> <wire from="(1180,1510)" to="(1200,1510)"/> <wire from="(100,660)" to="(1320,660)"/> <wire from="(100,20)" to="(1320,20)"/> <wire from="(180,490)" to="(370,490)"/> <wire from="(1040,1790)" to="(1040,1810)"/> <wire from="(410,400)" to="(600,400)"/> <wire from="(950,130)" to="(950,200)"/> <wire from="(1020,760)" to="(1020,830)"/> <wire from="(1040,1100)" to="(1040,1190)"/> <wire from="(100,680)" to="(100,1010)"/> <wire from="(1180,1850)" to="(1180,1880)"/> <wire from="(840,150)" to="(840,180)"/> <wire from="(1060,1800)" to="(1120,1800)"/> <wire from="(870,1310)" to="(910,1310)"/> <wire from="(710,900)" to="(810,900)"/> <wire from="(390,500)" to="(390,530)"/> <wire from="(1180,1850)" to="(1230,1850)"/> <wire from="(670,540)" to="(670,560)"/> <wire from="(570,920)" to="(570,960)"/> <wire from="(810,1830)" to="(830,1830)"/> <wire from="(600,580)" to="(620,580)"/> <wire from="(320,1650)" to="(350,1650)"/> <wire from="(320,1730)" to="(350,1730)"/> <wire from="(1110,1100)" to="(1120,1100)"/> <wire from="(730,1110)" to="(750,1110)"/> <wire from="(240,1100)" to="(260,1100)"/> <wire from="(1200,850)" to="(1230,850)"/> <wire from="(500,570)" to="(510,570)"/> <wire from="(180,160)" to="(250,160)"/> <wire from="(970,1520)" to="(980,1520)"/> <wire from="(820,1290)" to="(830,1290)"/> <wire from="(1090,750)" to="(1110,750)"/> <wire from="(1100,2040)" to="(1120,2040)"/> <wire from="(100,1030)" to="(1320,1030)"/> <wire from="(810,1880)" to="(810,1930)"/> <comp lib="0" loc="(690,560)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(180,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DOUT"/> </comp> <comp lib="6" loc="(1188,835)" name="Text"> <a name="text" val="2"/> </comp> <comp loc="(320,1740)" name="D-latch"/> <comp lib="1" loc="(1150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1200,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1200,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1156,1635)" name="Text"> <a name="text" val="LOAD SAMPLE BUFFER"/> </comp> <comp lib="0" loc="(360,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK1"/> </comp> <comp lib="6" loc="(1139,1145)" name="Text"> <a name="text" val="RUN LATCH2"/> </comp> <comp lib="1" loc="(620,530)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(340,1090)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1110,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(831,294)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="4" loc="(870,1930)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(180,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(528,945)" name="Text"> <a name="text" val="DL3"/> </comp> <comp lib="1" loc="(1190,490)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(262,646)" name="Text"> <a name="text" val="DPCM Enable Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(299,1774)" name="Text"> <a name="text" val="DL11"/> </comp> <comp lib="6" loc="(526,524)" name="Text"> <a name="text" val="RESET ENABLE FLAG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(840,1914)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="6" loc="(944,1270)" name="Text"> <a name="text" val="Nor6"/> </comp> <comp loc="(1020,1530)" name="D-latch"/> <comp lib="0" loc="(360,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK1"/> </comp> <comp lib="0" loc="(1080,1470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="1" loc="(690,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(890,1850)" name="Tunnel"> <a name="label" val="/DMASTOP"/> </comp> <comp lib="1" loc="(1100,2040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(190,130)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(1151,1685)" name="Text"> <a name="text" val="STEP OUTPUT COUNTER"/> </comp> <comp lib="0" loc="(1230,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1058,1593)" name="Text"> <a name="text" val="DMC1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(300,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(955,806)" name="Text"> <a name="text" val="Inv10"/> </comp> <comp loc="(1160,1110)" name="D-latch"/> <comp lib="4" loc="(410,400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(790,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(298,1696)" name="Text"> <a name="text" val="DL12"/> </comp> <comp lib="6" loc="(673,585)" name="Text"> <a name="text" val="ED1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(841,1813)" name="Text"> <a name="text" val="RS4"/> </comp> <comp lib="1" loc="(1150,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="11"/> </comp> <comp lib="1" loc="(970,1240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(320,1660)" name="D-latch"/> <comp lib="0" loc="(340,1600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DFLOAD"/> </comp> <comp lib="6" loc="(871,1229)" name="Text"> <a name="text" val="DMA START"/> </comp> <comp lib="0" loc="(810,1130)" name="Constant"/> <comp loc="(1020,1820)" name="D-latch"/> <comp lib="1" loc="(460,1690)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(270,47)" name="Text"> <a name="text" val="DPCM Interrupt Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(960,252)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(1230,1850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(714,120)" name="Text"> <a name="text" val="ASSERT INT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(500,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(850,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1230,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSLOAD"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(631,624)" name="Text"> <a name="text" val="Nor2"/> </comp> <comp lib="6" loc="(251,1056)" name="Text"> <a name="text" val="DPCM DMA Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(530,632)" name="Text"> <a name="text" val="DL14"/> </comp> <comp lib="6" loc="(455,476)" name="Text"> <a name="text" val="ED2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1090,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DFLOAD"/> </comp> <comp lib="0" loc="(1230,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(752,999)" name="Text"> <a name="text" val="CTRL2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1160,2030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(770,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(995,1895)" name="Text"> <a name="text" val="LOAD SHIFT REG"/> </comp> <comp lib="6" loc="(457,915)" name="Text"> <a name="text" val="ED2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(800,1940)" name="Constant"/> <comp lib="6" loc="(999,1783)" name="Text"> <a name="text" val="DL13"/> </comp> <comp lib="6" loc="(688,945)" name="Text"> <a name="text" val="DL5"/> </comp> <comp lib="0" loc="(1230,1240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCRDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(960,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCM DONE"/> </comp> <comp lib="0" loc="(590,860)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(670,830)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(526,616)" name="Text"> <a name="text" val="DL1"/> </comp> <comp lib="4" loc="(870,1520)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(847,1500)" name="Text"> <a name="text" val="RS3"/> </comp> <comp lib="4" loc="(410,470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(179,2022)" name="Text"> <a name="text" val="SAMPLE BIT CNT OVF"/> </comp> <comp lib="1" loc="(920,250)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(1230,1640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PCM"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(790,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="4"/> </comp> <comp lib="6" loc="(268,1120)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(1200,2004)" name="Text"> <a name="text" val="STEP SHIFT REG"/> </comp> <comp lib="6" loc="(849,1274)" name="Text"> <a name="text" val="RS6"/> </comp> <comp lib="0" loc="(850,1980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(180,1790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOCK"/> </comp> <comp lib="1" loc="(1150,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(980,790)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp loc="(550,580)" name="D-latch"/> <comp lib="0" loc="(180,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DFLOAD"/> </comp> <comp lib="0" loc="(650,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(330,160)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(1001,1147)" name="Text"> <a name="text" val="RUN LATCH"/> </comp> <comp lib="0" loc="(360,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK1"/> </comp> <comp lib="6" loc="(174,1699)" name="Text"> <a name="text" val="OUTPUT CNT OVF"/> </comp> <comp lib="1" loc="(280,1100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(550,910)" name="D-latch"/> <comp loc="(710,910)" name="D-latch"/> <comp lib="4" loc="(410,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(940,1470)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1190,130)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1230,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMCINT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(1160,1790)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(295,1448)" name="Text"> <a name="text" val="DPCM Sample Buffer Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(790,1330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(190,220)" name="Tunnel"> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(740,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(849,1101)" name="Text"> <a name="text" val="RS5"/> </comp> <comp lib="0" loc="(180,2040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#NOUT"/> </comp> <comp lib="4" loc="(870,1290)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(180,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(180,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(1230,1690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1200,1510)" name="Tunnel"> <a name="label" val="PCM DONE"/> </comp> <comp loc="(630,910)" name="D-latch"/> <comp lib="6" loc="(609,945)" name="Text"> <a name="text" val="DL6"/> </comp> <comp lib="0" loc="(180,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SOUT"/> </comp> <comp lib="0" loc="(180,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(970,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(650,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DMASTOP"/> </comp> <comp lib="1" loc="(270,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(180,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(481,303)" name="Text"> <a name="text" val="/ENIRQ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1230,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DMC/AB"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(870,1830)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(810,1300)" name="Constant"/> <comp lib="6" loc="(672,756)" name="Text"> <a name="text" val="PCM FINISH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(190,100)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1070,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(920,130)" name="NOR Gate"> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(477,395)" name="Text"> <a name="text" val="LOOP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(880,195)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="1" loc="(1160,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(1000,1565)" name="Text"> <a name="text" val="DL10"/> </comp> <comp lib="0" loc="(970,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(1066,1070)" name="Text"> <a name="text" val="Delay per 1 cycle ACLK1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(660,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(880,1460)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(180,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp loc="(1020,1110)" name="D-latch"/> <comp lib="0" loc="(800,1840)" name="Constant"/> <comp lib="0" loc="(180,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(340,750)" name="Tunnel"> <a name="label" val="/DFLOAD"/> </comp> <comp lib="0" loc="(180,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(1230,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RUNDMC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(180,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(185,513)" name="Text"> <a name="text" val="DPCM ENABLE"/> </comp> <comp lib="0" loc="(970,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(259,697)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(1230,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1230,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DSSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(780,1160)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(330,130)" name="Tunnel"> <a name="label" val="/ACLK1"/> </comp> <comp lib="0" loc="(800,1530)" name="Constant"/> <comp lib="6" loc="(1085,2028)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(240,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(594,755)" name="Text"> <a name="text" val="DMC2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1160,1850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1230,2030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(392,586)" name="Text"> <a name="text" val="LENGHT = 0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(850,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(820,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(190,190)" name="Tunnel"> <a name="label" val="ACLK2"/> </comp> <comp lib="6" loc="(842,101)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(961,145)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="4" loc="(870,1120)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(305,1001)" name="Text"> <a name="text" val="DPCM Sample Counter Control"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(1129,1593)" name="Text"> <a name="text" val="PCM DONE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1110,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"> <a name="circuit" val="DPCM_SAMPLE_LENGTH_DOWN_COUNTER"/> <a name="clabel" val="SAMPLE LENGTH DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M68,51 Q72,61 76,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff4f8f" height="301" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="114">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="134">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="155">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="184">SOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="195">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="216">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="236">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="255">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="275">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="295">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="315">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="335">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="174">W4013</text> <circ-port height="8" pin="110,130" width="8" x="46" y="66"/> <circ-port height="8" pin="110,280" width="8" x="46" y="106"/> <circ-port height="8" pin="110,180" width="8" x="46" y="126"/> <circ-port height="8" pin="110,250" width="8" x="46" y="146"/> <circ-port height="8" pin="110,840" width="8" x="46" y="186"/> <circ-port height="8" pin="110,1000" width="8" x="46" y="206"/> <circ-port height="8" pin="110,1160" width="8" x="46" y="226"/> <circ-port height="8" pin="110,1320" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1480" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1640" width="8" x="46" y="286"/> <circ-port height="8" pin="110,1800" width="8" x="46" y="306"/> <circ-port height="8" pin="110,1960" width="8" x="46" y="326"/> <circ-port height="10" pin="670,2020" width="10" x="185" y="175"/> <circ-port height="8" pin="110,310" width="8" x="46" y="166"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(110,840)" to="(150,840)"/> <wire from="(110,1000)" to="(150,1000)"/> <wire from="(110,1160)" to="(150,1160)"/> <wire from="(110,1320)" to="(150,1320)"/> <wire from="(110,1480)" to="(150,1480)"/> <wire from="(110,1640)" to="(150,1640)"/> <wire from="(110,1800)" to="(150,1800)"/> <wire from="(110,1960)" to="(150,1960)"/> <wire from="(460,780)" to="(460,820)"/> <wire from="(460,300)" to="(460,340)"/> <wire from="(460,460)" to="(460,500)"/> <wire from="(460,620)" to="(460,660)"/> <wire from="(460,940)" to="(460,980)"/> <wire from="(460,1100)" to="(460,1140)"/> <wire from="(460,1260)" to="(460,1300)"/> <wire from="(460,1420)" to="(460,1460)"/> <wire from="(460,1580)" to="(460,1620)"/> <wire from="(460,1740)" to="(460,1780)"/> <wire from="(460,1900)" to="(460,1940)"/> <wire from="(130,130)" to="(130,200)"/> <wire from="(210,1840)" to="(210,1990)"/> <wire from="(170,870)" to="(210,870)"/> <wire from="(170,1030)" to="(210,1030)"/> <wire from="(170,1190)" to="(210,1190)"/> <wire from="(170,1350)" to="(210,1350)"/> <wire from="(170,1510)" to="(210,1510)"/> <wire from="(170,1670)" to="(210,1670)"/> <wire from="(170,1990)" to="(210,1990)"/> <wire from="(570,170)" to="(590,170)"/> <wire from="(570,650)" to="(590,650)"/> <wire from="(570,490)" to="(590,490)"/> <wire from="(570,330)" to="(590,330)"/> <wire from="(240,910)" to="(240,1070)"/> <wire from="(240,1070)" to="(240,1230)"/> <wire from="(240,1230)" to="(240,1390)"/> <wire from="(240,1390)" to="(240,1550)"/> <wire from="(240,1550)" to="(240,1710)"/> <wire from="(240,1710)" to="(240,1870)"/> <wire from="(240,1870)" to="(240,2030)"/> <wire from="(570,1130)" to="(590,1130)"/> <wire from="(570,810)" to="(590,810)"/> <wire from="(570,1290)" to="(590,1290)"/> <wire from="(570,970)" to="(590,970)"/> <wire from="(570,1450)" to="(590,1450)"/> <wire from="(570,1610)" to="(590,1610)"/> <wire from="(570,1770)" to="(590,1770)"/> <wire from="(570,1930)" to="(590,1930)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,180)" to="(440,180)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,660)" to="(440,660)"/> <wire from="(420,820)" to="(440,820)"/> <wire from="(420,980)" to="(440,980)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,1300)" to="(440,1300)"/> <wire from="(420,1460)" to="(440,1460)"/> <wire from="(420,1620)" to="(440,1620)"/> <wire from="(420,1780)" to="(440,1780)"/> <wire from="(420,1940)" to="(440,1940)"/> <wire from="(370,390)" to="(650,390)"/> <wire from="(370,230)" to="(650,230)"/> <wire from="(370,1350)" to="(650,1350)"/> <wire from="(370,1030)" to="(650,1030)"/> <wire from="(370,870)" to="(650,870)"/> <wire from="(370,1190)" to="(650,1190)"/> <wire from="(370,1670)" to="(650,1670)"/> <wire from="(370,1830)" to="(650,1830)"/> <wire from="(370,1990)" to="(650,1990)"/> <wire from="(370,1510)" to="(650,1510)"/> <wire from="(370,710)" to="(650,710)"/> <wire from="(370,550)" to="(650,550)"/> <wire from="(310,1360)" to="(320,1360)"/> <wire from="(310,880)" to="(320,880)"/> <wire from="(310,1040)" to="(320,1040)"/> <wire from="(310,1200)" to="(320,1200)"/> <wire from="(310,1520)" to="(320,1520)"/> <wire from="(310,1680)" to="(320,1680)"/> <wire from="(310,1840)" to="(320,1840)"/> <wire from="(310,2000)" to="(320,2000)"/> <wire from="(130,820)" to="(150,820)"/> <wire from="(130,980)" to="(150,980)"/> <wire from="(130,1140)" to="(150,1140)"/> <wire from="(130,1300)" to="(150,1300)"/> <wire from="(130,1460)" to="(150,1460)"/> <wire from="(130,1620)" to="(150,1620)"/> <wire from="(130,1780)" to="(150,1780)"/> <wire from="(130,1940)" to="(150,1940)"/> <wire from="(310,250)" to="(310,300)"/> <wire from="(540,2020)" to="(670,2020)"/> <wire from="(110,130)" to="(130,130)"/> <wire from="(110,280)" to="(240,280)"/> <wire from="(310,300)" to="(310,880)"/> <wire from="(170,850)" to="(170,870)"/> <wire from="(170,1010)" to="(170,1030)"/> <wire from="(170,1170)" to="(170,1190)"/> <wire from="(170,1330)" to="(170,1350)"/> <wire from="(170,1490)" to="(170,1510)"/> <wire from="(170,1650)" to="(170,1670)"/> <wire from="(170,1970)" to="(170,1990)"/> <wire from="(110,310)" to="(210,310)"/> <wire from="(170,1810)" to="(170,1840)"/> <wire from="(570,130)" to="(570,170)"/> <wire from="(460,820)" to="(460,890)"/> <wire from="(460,980)" to="(460,1050)"/> <wire from="(460,340)" to="(460,410)"/> <wire from="(460,180)" to="(460,250)"/> <wire from="(460,660)" to="(460,730)"/> <wire from="(460,500)" to="(460,570)"/> <wire from="(460,1140)" to="(460,1210)"/> <wire from="(460,1300)" to="(460,1370)"/> <wire from="(460,1460)" to="(460,1530)"/> <wire from="(460,1620)" to="(460,1690)"/> <wire from="(460,1780)" to="(460,1850)"/> <wire from="(460,1940)" to="(460,2010)"/> <wire from="(130,130)" to="(570,130)"/> <wire from="(410,290)" to="(410,370)"/> <wire from="(130,220)" to="(130,820)"/> <wire from="(170,1840)" to="(210,1840)"/> <wire from="(190,820)" to="(280,820)"/> <wire from="(190,980)" to="(280,980)"/> <wire from="(190,1140)" to="(280,1140)"/> <wire from="(190,1300)" to="(280,1300)"/> <wire from="(190,1460)" to="(280,1460)"/> <wire from="(190,1620)" to="(280,1620)"/> <wire from="(190,1780)" to="(280,1780)"/> <wire from="(190,1940)" to="(280,1940)"/> <wire from="(110,250)" to="(310,250)"/> <wire from="(390,850)" to="(390,920)"/> <wire from="(390,1010)" to="(390,1080)"/> <wire from="(390,1170)" to="(390,1240)"/> <wire from="(390,1330)" to="(390,1400)"/> <wire from="(390,1490)" to="(390,1560)"/> <wire from="(390,1650)" to="(390,1720)"/> <wire from="(390,1810)" to="(390,1880)"/> <wire from="(390,1970)" to="(390,2040)"/> <wire from="(460,660)" to="(500,660)"/> <wire from="(460,340)" to="(500,340)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(460,500)" to="(500,500)"/> <wire from="(460,820)" to="(500,820)"/> <wire from="(460,980)" to="(500,980)"/> <wire from="(460,1140)" to="(500,1140)"/> <wire from="(460,1300)" to="(500,1300)"/> <wire from="(460,1460)" to="(500,1460)"/> <wire from="(460,1620)" to="(500,1620)"/> <wire from="(460,1780)" to="(500,1780)"/> <wire from="(460,1940)" to="(500,1940)"/> <wire from="(440,430)" to="(500,430)"/> <wire from="(440,270)" to="(500,270)"/> <wire from="(440,590)" to="(500,590)"/> <wire from="(440,1230)" to="(500,1230)"/> <wire from="(440,750)" to="(500,750)"/> <wire from="(440,910)" to="(500,910)"/> <wire from="(440,1070)" to="(500,1070)"/> <wire from="(440,1390)" to="(500,1390)"/> <wire from="(440,1550)" to="(500,1550)"/> <wire from="(440,1710)" to="(500,1710)"/> <wire from="(440,1870)" to="(500,1870)"/> <wire from="(440,2030)" to="(500,2030)"/> <wire from="(360,180)" to="(360,340)"/> <wire from="(360,340)" to="(360,500)"/> <wire from="(360,980)" to="(360,1140)"/> <wire from="(360,500)" to="(360,660)"/> <wire from="(360,660)" to="(360,820)"/> <wire from="(360,820)" to="(360,980)"/> <wire from="(360,1140)" to="(360,1300)"/> <wire from="(360,1300)" to="(360,1460)"/> <wire from="(360,1460)" to="(360,1620)"/> <wire from="(360,1620)" to="(360,1780)"/> <wire from="(360,1780)" to="(360,1940)"/> <wire from="(240,910)" to="(260,910)"/> <wire from="(240,1070)" to="(260,1070)"/> <wire from="(240,1230)" to="(260,1230)"/> <wire from="(240,1390)" to="(260,1390)"/> <wire from="(240,1550)" to="(260,1550)"/> <wire from="(240,1710)" to="(260,1710)"/> <wire from="(240,1870)" to="(260,1870)"/> <wire from="(240,2030)" to="(260,2030)"/> <wire from="(420,360)" to="(500,360)"/> <wire from="(420,200)" to="(500,200)"/> <wire from="(420,520)" to="(500,520)"/> <wire from="(420,1160)" to="(500,1160)"/> <wire from="(420,1000)" to="(500,1000)"/> <wire from="(420,680)" to="(500,680)"/> <wire from="(420,840)" to="(500,840)"/> <wire from="(420,1320)" to="(500,1320)"/> <wire from="(420,1480)" to="(500,1480)"/> <wire from="(420,1640)" to="(500,1640)"/> <wire from="(420,1800)" to="(500,1800)"/> <wire from="(420,1960)" to="(500,1960)"/> <wire from="(540,740)" to="(550,740)"/> <wire from="(540,420)" to="(550,420)"/> <wire from="(540,260)" to="(550,260)"/> <wire from="(540,580)" to="(550,580)"/> <wire from="(540,900)" to="(550,900)"/> <wire from="(540,1060)" to="(550,1060)"/> <wire from="(540,1220)" to="(550,1220)"/> <wire from="(540,1380)" to="(550,1380)"/> <wire from="(540,1540)" to="(550,1540)"/> <wire from="(540,1700)" to="(550,1700)"/> <wire from="(540,1860)" to="(550,1860)"/> <wire from="(540,670)" to="(590,670)"/> <wire from="(540,190)" to="(590,190)"/> <wire from="(540,350)" to="(590,350)"/> <wire from="(540,830)" to="(590,830)"/> <wire from="(540,510)" to="(590,510)"/> <wire from="(540,990)" to="(590,990)"/> <wire from="(540,1470)" to="(590,1470)"/> <wire from="(540,1630)" to="(590,1630)"/> <wire from="(540,1150)" to="(590,1150)"/> <wire from="(540,1310)" to="(590,1310)"/> <wire from="(540,1790)" to="(590,1790)"/> <wire from="(540,1950)" to="(590,1950)"/> <wire from="(460,160)" to="(460,180)"/> <wire from="(650,190)" to="(650,230)"/> <wire from="(650,1150)" to="(650,1190)"/> <wire from="(650,1790)" to="(650,1830)"/> <wire from="(650,1950)" to="(650,1990)"/> <wire from="(650,830)" to="(650,870)"/> <wire from="(650,1310)" to="(650,1350)"/> <wire from="(650,990)" to="(650,1030)"/> <wire from="(650,1630)" to="(650,1670)"/> <wire from="(650,1470)" to="(650,1510)"/> <wire from="(650,350)" to="(650,390)"/> <wire from="(650,510)" to="(650,550)"/> <wire from="(650,670)" to="(650,710)"/> <wire from="(570,170)" to="(570,330)"/> <wire from="(570,330)" to="(570,490)"/> <wire from="(570,650)" to="(570,810)"/> <wire from="(570,490)" to="(570,650)"/> <wire from="(570,970)" to="(570,1130)"/> <wire from="(570,810)" to="(570,970)"/> <wire from="(570,1770)" to="(570,1930)"/> <wire from="(570,1450)" to="(570,1610)"/> <wire from="(570,1130)" to="(570,1290)"/> <wire from="(570,1290)" to="(570,1450)"/> <wire from="(570,1610)" to="(570,1770)"/> <wire from="(240,280)" to="(320,280)"/> <wire from="(210,310)" to="(210,870)"/> <wire from="(350,890)" to="(410,890)"/> <wire from="(350,1050)" to="(410,1050)"/> <wire from="(350,1210)" to="(410,1210)"/> <wire from="(350,1370)" to="(410,1370)"/> <wire from="(350,1530)" to="(410,1530)"/> <wire from="(350,1690)" to="(410,1690)"/> <wire from="(350,1850)" to="(410,1850)"/> <wire from="(350,2010)" to="(410,2010)"/> <wire from="(370,1320)" to="(370,1350)"/> <wire from="(370,840)" to="(370,870)"/> <wire from="(370,1000)" to="(370,1030)"/> <wire from="(370,1160)" to="(370,1190)"/> <wire from="(370,1480)" to="(370,1510)"/> <wire from="(370,1640)" to="(370,1670)"/> <wire from="(370,1800)" to="(370,1830)"/> <wire from="(370,1960)" to="(370,1990)"/> <wire from="(290,920)" to="(390,920)"/> <wire from="(290,1080)" to="(390,1080)"/> <wire from="(290,1240)" to="(390,1240)"/> <wire from="(290,1400)" to="(390,1400)"/> <wire from="(290,1560)" to="(390,1560)"/> <wire from="(290,1720)" to="(390,1720)"/> <wire from="(290,1880)" to="(390,1880)"/> <wire from="(290,2040)" to="(390,2040)"/> <wire from="(370,680)" to="(370,710)"/> <wire from="(370,360)" to="(370,390)"/> <wire from="(370,200)" to="(370,230)"/> <wire from="(370,520)" to="(370,550)"/> <wire from="(460,1100)" to="(550,1100)"/> <wire from="(460,1260)" to="(550,1260)"/> <wire from="(460,780)" to="(550,780)"/> <wire from="(460,620)" to="(550,620)"/> <wire from="(460,300)" to="(550,300)"/> <wire from="(460,460)" to="(550,460)"/> <wire from="(460,940)" to="(550,940)"/> <wire from="(460,1420)" to="(550,1420)"/> <wire from="(460,1580)" to="(550,1580)"/> <wire from="(460,1740)" to="(550,1740)"/> <wire from="(460,1900)" to="(550,1900)"/> <wire from="(130,820)" to="(130,980)"/> <wire from="(130,980)" to="(130,1140)"/> <wire from="(130,1140)" to="(130,1300)"/> <wire from="(130,1300)" to="(130,1460)"/> <wire from="(130,1460)" to="(130,1620)"/> <wire from="(130,1620)" to="(130,1780)"/> <wire from="(130,1780)" to="(130,1940)"/> <wire from="(460,1210)" to="(470,1210)"/> <wire from="(460,1530)" to="(470,1530)"/> <wire from="(460,1050)" to="(470,1050)"/> <wire from="(460,890)" to="(470,890)"/> <wire from="(460,1690)" to="(470,1690)"/> <wire from="(460,1370)" to="(470,1370)"/> <wire from="(460,1850)" to="(470,1850)"/> <wire from="(460,2010)" to="(470,2010)"/> <wire from="(460,730)" to="(470,730)"/> <wire from="(460,570)" to="(470,570)"/> <wire from="(460,410)" to="(470,410)"/> <wire from="(460,250)" to="(470,250)"/> <wire from="(110,180)" to="(360,180)"/> <wire from="(410,690)" to="(410,700)"/> <wire from="(210,870)" to="(210,1030)"/> <wire from="(210,1030)" to="(210,1190)"/> <wire from="(210,1190)" to="(210,1350)"/> <wire from="(210,1350)" to="(210,1510)"/> <wire from="(210,1510)" to="(210,1670)"/> <wire from="(210,1670)" to="(210,1840)"/> <wire from="(410,850)" to="(410,890)"/> <wire from="(410,1010)" to="(410,1050)"/> <wire from="(410,1170)" to="(410,1210)"/> <wire from="(410,1330)" to="(410,1370)"/> <wire from="(410,1490)" to="(410,1530)"/> <wire from="(410,1650)" to="(410,1690)"/> <wire from="(410,1810)" to="(410,1850)"/> <wire from="(410,1970)" to="(410,2010)"/> <wire from="(490,1050)" to="(500,1050)"/> <wire from="(490,570)" to="(500,570)"/> <wire from="(490,730)" to="(500,730)"/> <wire from="(490,890)" to="(500,890)"/> <wire from="(490,410)" to="(500,410)"/> <wire from="(490,250)" to="(500,250)"/> <wire from="(490,1370)" to="(500,1370)"/> <wire from="(490,1210)" to="(500,1210)"/> <wire from="(490,1850)" to="(500,1850)"/> <wire from="(490,1530)" to="(500,1530)"/> <wire from="(490,1690)" to="(500,1690)"/> <wire from="(490,2010)" to="(500,2010)"/> <wire from="(410,210)" to="(410,290)"/> <wire from="(630,830)" to="(650,830)"/> <wire from="(630,670)" to="(650,670)"/> <wire from="(630,350)" to="(650,350)"/> <wire from="(630,510)" to="(650,510)"/> <wire from="(630,190)" to="(650,190)"/> <wire from="(630,1150)" to="(650,1150)"/> <wire from="(630,1310)" to="(650,1310)"/> <wire from="(630,990)" to="(650,990)"/> <wire from="(630,1470)" to="(650,1470)"/> <wire from="(630,1630)" to="(650,1630)"/> <wire from="(630,1950)" to="(650,1950)"/> <wire from="(630,1790)" to="(650,1790)"/> <wire from="(240,280)" to="(240,910)"/> <wire from="(410,370)" to="(410,530)"/> <wire from="(410,530)" to="(410,690)"/> <wire from="(350,290)" to="(410,290)"/> <wire from="(280,820)" to="(280,890)"/> <wire from="(280,980)" to="(280,1050)"/> <wire from="(280,1140)" to="(280,1210)"/> <wire from="(280,1300)" to="(280,1370)"/> <wire from="(280,1460)" to="(280,1530)"/> <wire from="(280,1620)" to="(280,1690)"/> <wire from="(280,1780)" to="(280,1850)"/> <wire from="(280,1940)" to="(280,2010)"/> <wire from="(440,500)" to="(440,590)"/> <wire from="(440,660)" to="(440,750)"/> <wire from="(440,180)" to="(440,270)"/> <wire from="(440,340)" to="(440,430)"/> <wire from="(440,980)" to="(440,1070)"/> <wire from="(440,1140)" to="(440,1230)"/> <wire from="(440,820)" to="(440,910)"/> <wire from="(440,1460)" to="(440,1550)"/> <wire from="(440,1780)" to="(440,1870)"/> <wire from="(440,1940)" to="(440,2030)"/> <wire from="(440,1620)" to="(440,1710)"/> <wire from="(440,1300)" to="(440,1390)"/> <wire from="(550,260)" to="(550,300)"/> <wire from="(550,420)" to="(550,460)"/> <wire from="(550,580)" to="(550,620)"/> <wire from="(550,740)" to="(550,780)"/> <wire from="(550,1060)" to="(550,1100)"/> <wire from="(550,900)" to="(550,940)"/> <wire from="(550,1220)" to="(550,1260)"/> <wire from="(550,1380)" to="(550,1420)"/> <wire from="(550,1540)" to="(550,1580)"/> <wire from="(550,1700)" to="(550,1740)"/> <wire from="(550,1860)" to="(550,1900)"/> <wire from="(310,880)" to="(310,1040)"/> <wire from="(310,1040)" to="(310,1200)"/> <wire from="(310,1200)" to="(310,1360)"/> <wire from="(310,1360)" to="(310,1520)"/> <wire from="(310,1520)" to="(310,1680)"/> <wire from="(310,1680)" to="(310,1840)"/> <wire from="(310,1840)" to="(310,2000)"/> <wire from="(290,900)" to="(320,900)"/> <wire from="(290,1060)" to="(320,1060)"/> <wire from="(290,1220)" to="(320,1220)"/> <wire from="(290,1380)" to="(320,1380)"/> <wire from="(290,1540)" to="(320,1540)"/> <wire from="(290,1700)" to="(320,1700)"/> <wire from="(290,1860)" to="(320,1860)"/> <wire from="(290,2020)" to="(320,2020)"/> <wire from="(360,980)" to="(380,980)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,660)" to="(380,660)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(360,1300)" to="(380,1300)"/> <wire from="(360,1780)" to="(380,1780)"/> <wire from="(360,1940)" to="(380,1940)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(360,1460)" to="(380,1460)"/> <wire from="(360,1620)" to="(380,1620)"/> <wire from="(370,1480)" to="(380,1480)"/> <wire from="(370,1160)" to="(380,1160)"/> <wire from="(370,1000)" to="(380,1000)"/> <wire from="(370,840)" to="(380,840)"/> <wire from="(370,1320)" to="(380,1320)"/> <wire from="(370,1960)" to="(380,1960)"/> <wire from="(370,1640)" to="(380,1640)"/> <wire from="(370,1800)" to="(380,1800)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(370,200)" to="(380,200)"/> <wire from="(370,680)" to="(380,680)"/> <wire from="(370,360)" to="(380,360)"/> <wire from="(370,520)" to="(380,520)"/> <comp lib="4" loc="(630,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,1050)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(190,1940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,890)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(670,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,1850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(630,1930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(490,890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(190,1780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(490,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,1370)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1390)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(260,2030)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(260,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,1540)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1870)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC3"/> </comp> <comp lib="2" loc="(260,910)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC4"/> </comp> <comp lib="4" loc="(420,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(260,1070)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(490,2010)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC6"/> </comp> <comp lib="1" loc="(540,190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(460,160)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(490,1690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="1" loc="(540,1950)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4013"/> </comp> <comp lib="4" loc="(190,1620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC1"/> </comp> <comp lib="4" loc="(630,1450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,350)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,1780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1790)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,1960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC7"/> </comp> <comp lib="4" loc="(420,180)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1470)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,1530)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC0"/> </comp> <comp lib="1" loc="(130,220)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,1850)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(260,1710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="4" loc="(420,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC2"/> </comp> <comp lib="1" loc="(540,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,670)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,1610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,2010)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1310)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,1210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,1530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LSC5"/> </comp> <comp lib="1" loc="(540,830)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,1690)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(190,1140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DPCM_ADDRESS_COUNTER"> <a name="circuit" val="DPCM_ADDRESS_COUNTER"/> <a name="clabel" val="ADDRESS COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M67,51 Q71,61 75,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ced8ff" height="320" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="74">DMCA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="94">DMCA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="114">DMCA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="134">DMCA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="155">DMCA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="174">DMCA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="194">DMCA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="214">DMCA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="234">DMCA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="254">DMCA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="274">DMCA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="294">DMCA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="313">DMCA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="334">DMCA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="158" y="354">DMCA14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="134">DSLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="154">DSSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="214">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="235">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="254">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="274">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="295">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="314">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="335">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="354">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="175">W4012</text> <circ-port height="8" pin="120,170" width="8" x="46" y="126"/> <circ-port height="8" pin="120,110" width="8" x="46" y="146"/> <circ-port height="8" pin="120,210" width="8" x="46" y="106"/> <circ-port height="8" pin="120,1150" width="8" x="46" y="206"/> <circ-port height="8" pin="120,1320" width="8" x="46" y="226"/> <circ-port height="8" pin="120,1490" width="8" x="46" y="246"/> <circ-port height="8" pin="120,1660" width="8" x="46" y="266"/> <circ-port height="8" pin="120,1830" width="8" x="46" y="286"/> <circ-port height="8" pin="120,2000" width="8" x="46" y="306"/> <circ-port height="8" pin="120,2170" width="8" x="46" y="326"/> <circ-port height="8" pin="120,2340" width="8" x="46" y="346"/> <circ-port height="10" pin="720,60" width="10" x="185" y="65"/> <circ-port height="10" pin="720,230" width="10" x="185" y="85"/> <circ-port height="10" pin="720,400" width="10" x="185" y="105"/> <circ-port height="10" pin="720,570" width="10" x="185" y="125"/> <circ-port height="10" pin="720,740" width="10" x="185" y="145"/> <circ-port height="10" pin="720,910" width="10" x="185" y="165"/> <circ-port height="10" pin="720,1080" width="10" x="185" y="185"/> <circ-port height="10" pin="720,1250" width="10" x="185" y="205"/> <circ-port height="10" pin="720,1420" width="10" x="185" y="225"/> <circ-port height="10" pin="720,1590" width="10" x="185" y="245"/> <circ-port height="10" pin="720,1760" width="10" x="185" y="265"/> <circ-port height="10" pin="720,1930" width="10" x="185" y="285"/> <circ-port height="10" pin="720,2100" width="10" x="185" y="305"/> <circ-port height="10" pin="720,2270" width="10" x="185" y="325"/> <circ-port height="10" pin="720,2440" width="10" x="185" y="345"/> <circ-port height="8" pin="120,1010" width="8" x="46" y="166"/> <circ-port height="8" pin="120,30" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(490,880)" to="(550,880)"/> <wire from="(120,1150)" to="(180,1150)"/> <wire from="(490,2000)" to="(550,2000)"/> <wire from="(590,1140)" to="(650,1140)"/> <wire from="(490,1320)" to="(490,1390)"/> <wire from="(510,1980)" to="(510,2050)"/> <wire from="(490,1420)" to="(720,1420)"/> <wire from="(330,2240)" to="(440,2240)"/> <wire from="(510,1950)" to="(610,1950)"/> <wire from="(510,1950)" to="(510,1980)"/> <wire from="(200,1160)" to="(200,1180)"/> <wire from="(220,1980)" to="(320,1980)"/> <wire from="(420,2540)" to="(710,2540)"/> <wire from="(420,2340)" to="(420,2370)"/> <wire from="(200,2370)" to="(240,2370)"/> <wire from="(510,280)" to="(550,280)"/> <wire from="(630,1970)" to="(630,2140)"/> <wire from="(710,1990)" to="(710,2030)"/> <wire from="(470,2340)" to="(490,2340)"/> <wire from="(590,700)" to="(610,700)"/> <wire from="(630,100)" to="(650,100)"/> <wire from="(690,800)" to="(710,800)"/> <wire from="(330,1710)" to="(360,1710)"/> <wire from="(160,1980)" to="(160,2150)"/> <wire from="(410,1640)" to="(430,1640)"/> <wire from="(410,790)" to="(410,960)"/> <wire from="(350,1690)" to="(350,1860)"/> <wire from="(420,1660)" to="(430,1660)"/> <wire from="(610,1890)" to="(610,1950)"/> <wire from="(490,1930)" to="(490,1980)"/> <wire from="(460,140)" to="(460,200)"/> <wire from="(440,2520)" to="(440,2580)"/> <wire from="(390,1700)" to="(460,1700)"/> <wire from="(540,180)" to="(550,180)"/> <wire from="(510,2390)" to="(520,2390)"/> <wire from="(490,810)" to="(490,880)"/> <wire from="(490,370)" to="(550,370)"/> <wire from="(490,1490)" to="(550,1490)"/> <wire from="(590,630)" to="(650,630)"/> <wire from="(510,1470)" to="(510,1540)"/> <wire from="(510,2490)" to="(550,2490)"/> <wire from="(510,1440)" to="(610,1440)"/> <wire from="(350,2550)" to="(460,2550)"/> <wire from="(510,1440)" to="(510,1470)"/> <wire from="(460,2350)" to="(460,2380)"/> <wire from="(330,1730)" to="(440,1730)"/> <wire from="(220,1470)" to="(320,1470)"/> <wire from="(420,1830)" to="(420,1860)"/> <wire from="(420,2030)" to="(710,2030)"/> <wire from="(200,1860)" to="(240,1860)"/> <wire from="(490,910)" to="(720,910)"/> <wire from="(630,1460)" to="(630,1630)"/> <wire from="(710,1480)" to="(710,1520)"/> <wire from="(470,1830)" to="(490,1830)"/> <wire from="(470,2150)" to="(490,2150)"/> <wire from="(590,190)" to="(610,190)"/> <wire from="(690,290)" to="(710,290)"/> <wire from="(630,2310)" to="(650,2310)"/> <wire from="(330,1200)" to="(360,1200)"/> <wire from="(160,1470)" to="(160,1640)"/> <wire from="(410,1130)" to="(430,1130)"/> <wire from="(410,280)" to="(410,450)"/> <wire from="(460,650)" to="(460,820)"/> <wire from="(240,2030)" to="(240,2200)"/> <wire from="(350,1180)" to="(350,1350)"/> <wire from="(280,2230)" to="(280,2400)"/> <wire from="(160,2320)" to="(180,2320)"/> <wire from="(420,1150)" to="(430,1150)"/> <wire from="(350,2200)" to="(360,2200)"/> <wire from="(610,1380)" to="(610,1440)"/> <wire from="(490,1420)" to="(490,1470)"/> <wire from="(440,2010)" to="(440,2070)"/> <wire from="(390,1190)" to="(460,1190)"/> <wire from="(510,1880)" to="(520,1880)"/> <wire from="(540,2390)" to="(550,2390)"/> <wire from="(490,300)" to="(490,370)"/> <wire from="(490,980)" to="(550,980)"/> <wire from="(490,2580)" to="(550,2580)"/> <wire from="(590,120)" to="(650,120)"/> <wire from="(510,960)" to="(510,1030)"/> <wire from="(510,1980)" to="(550,1980)"/> <wire from="(510,930)" to="(610,930)"/> <wire from="(510,930)" to="(510,960)"/> <wire from="(330,1220)" to="(440,1220)"/> <wire from="(460,1840)" to="(460,1870)"/> <wire from="(420,1320)" to="(420,1350)"/> <wire from="(420,1520)" to="(710,1520)"/> <wire from="(200,1350)" to="(240,1350)"/> <wire from="(490,400)" to="(720,400)"/> <wire from="(630,950)" to="(630,1120)"/> <wire from="(710,970)" to="(710,1010)"/> <wire from="(630,1800)" to="(650,1800)"/> <wire from="(590,2400)" to="(610,2400)"/> <wire from="(690,2500)" to="(710,2500)"/> <wire from="(160,30)" to="(630,30)"/> <wire from="(410,620)" to="(430,620)"/> <wire from="(470,1320)" to="(490,1320)"/> <wire from="(470,1640)" to="(490,1640)"/> <wire from="(240,1520)" to="(240,1690)"/> <wire from="(280,1720)" to="(280,1890)"/> <wire from="(160,1810)" to="(180,1810)"/> <wire from="(420,640)" to="(430,640)"/> <wire from="(350,1690)" to="(360,1690)"/> <wire from="(490,910)" to="(490,960)"/> <wire from="(610,870)" to="(610,930)"/> <wire from="(440,1500)" to="(440,1560)"/> <wire from="(390,200)" to="(460,200)"/> <wire from="(510,1370)" to="(520,1370)"/> <wire from="(540,1880)" to="(550,1880)"/> <wire from="(510,450)" to="(510,520)"/> <wire from="(490,470)" to="(550,470)"/> <wire from="(120,2340)" to="(180,2340)"/> <wire from="(490,2070)" to="(550,2070)"/> <wire from="(510,100)" to="(510,110)"/> <wire from="(490,2510)" to="(490,2580)"/> <wire from="(590,2330)" to="(650,2330)"/> <wire from="(510,1470)" to="(550,1470)"/> <wire from="(200,2350)" to="(200,2370)"/> <wire from="(420,810)" to="(420,840)"/> <wire from="(420,1010)" to="(710,1010)"/> <wire from="(510,420)" to="(510,450)"/> <wire from="(460,1330)" to="(460,1360)"/> <wire from="(510,420)" to="(610,420)"/> <wire from="(710,460)" to="(710,500)"/> <wire from="(630,440)" to="(630,610)"/> <wire from="(590,1890)" to="(610,1890)"/> <wire from="(630,1290)" to="(650,1290)"/> <wire from="(690,1990)" to="(710,1990)"/> <wire from="(280,2060)" to="(300,2060)"/> <wire from="(410,110)" to="(430,110)"/> <wire from="(470,1130)" to="(490,1130)"/> <wire from="(470,810)" to="(490,810)"/> <wire from="(410,1980)" to="(410,2150)"/> <wire from="(280,1210)" to="(280,1380)"/> <wire from="(240,1010)" to="(240,1180)"/> <wire from="(160,1300)" to="(180,1300)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(350,1180)" to="(360,1180)"/> <wire from="(490,400)" to="(490,450)"/> <wire from="(610,360)" to="(610,420)"/> <wire from="(320,2150)" to="(320,2210)"/> <wire from="(510,860)" to="(520,860)"/> <wire from="(540,1370)" to="(550,1370)"/> <wire from="(120,1830)" to="(180,1830)"/> <wire from="(490,1560)" to="(550,1560)"/> <wire from="(590,1820)" to="(650,1820)"/> <wire from="(490,2000)" to="(490,2070)"/> <wire from="(510,960)" to="(550,960)"/> <wire from="(490,2100)" to="(720,2100)"/> <wire from="(200,1840)" to="(200,1860)"/> <wire from="(420,500)" to="(710,500)"/> <wire from="(420,300)" to="(420,330)"/> <wire from="(330,2390)" to="(360,2390)"/> <wire from="(630,780)" to="(650,780)"/> <wire from="(590,1380)" to="(610,1380)"/> <wire from="(690,1480)" to="(710,1480)"/> <wire from="(280,1550)" to="(300,1550)"/> <wire from="(470,620)" to="(490,620)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(410,2320)" to="(430,2320)"/> <wire from="(410,1470)" to="(410,1640)"/> <wire from="(510,350)" to="(520,350)"/> <wire from="(420,2340)" to="(430,2340)"/> <wire from="(350,2370)" to="(350,2550)"/> <wire from="(320,1640)" to="(320,1700)"/> <wire from="(390,2380)" to="(460,2380)"/> <wire from="(540,860)" to="(550,860)"/> <wire from="(490,1050)" to="(550,1050)"/> <wire from="(120,1320)" to="(180,1320)"/> <wire from="(490,2170)" to="(550,2170)"/> <wire from="(590,1310)" to="(650,1310)"/> <wire from="(490,1490)" to="(490,1560)"/> <wire from="(510,2150)" to="(510,2220)"/> <wire from="(630,30)" to="(630,100)"/> <wire from="(490,1590)" to="(720,1590)"/> <wire from="(330,2410)" to="(440,2410)"/> <wire from="(510,2120)" to="(610,2120)"/> <wire from="(510,2120)" to="(510,2150)"/> <wire from="(200,1330)" to="(200,1350)"/> <wire from="(220,2150)" to="(320,2150)"/> <wire from="(420,2510)" to="(420,2540)"/> <wire from="(510,450)" to="(550,450)"/> <wire from="(630,2140)" to="(630,2310)"/> <wire from="(710,2160)" to="(710,2200)"/> <wire from="(470,2510)" to="(490,2510)"/> <wire from="(590,870)" to="(610,870)"/> <wire from="(630,270)" to="(650,270)"/> <wire from="(690,970)" to="(710,970)"/> <wire from="(330,1880)" to="(360,1880)"/> <wire from="(160,2150)" to="(160,2320)"/> <wire from="(470,110)" to="(490,110)"/> <wire from="(410,1810)" to="(430,1810)"/> <wire from="(410,960)" to="(410,1130)"/> <wire from="(350,1860)" to="(350,2030)"/> <wire from="(420,1830)" to="(430,1830)"/> <wire from="(610,2060)" to="(610,2120)"/> <wire from="(320,1130)" to="(320,1190)"/> <wire from="(490,2100)" to="(490,2150)"/> <wire from="(390,1870)" to="(460,1870)"/> <wire from="(540,350)" to="(550,350)"/> <wire from="(510,2560)" to="(520,2560)"/> <wire from="(280,170)" to="(340,170)"/> <wire from="(490,980)" to="(490,1050)"/> <wire from="(490,540)" to="(550,540)"/> <wire from="(490,1660)" to="(550,1660)"/> <wire from="(590,800)" to="(650,800)"/> <wire from="(510,1640)" to="(510,1710)"/> <wire from="(490,1080)" to="(720,1080)"/> <wire from="(510,1610)" to="(610,1610)"/> <wire from="(510,1610)" to="(510,1640)"/> <wire from="(460,2520)" to="(460,2550)"/> <wire from="(330,1900)" to="(440,1900)"/> <wire from="(220,1640)" to="(320,1640)"/> <wire from="(420,2000)" to="(420,2030)"/> <wire from="(420,2200)" to="(710,2200)"/> <wire from="(120,30)" to="(160,30)"/> <wire from="(200,2030)" to="(240,2030)"/> <wire from="(630,1630)" to="(630,1800)"/> <wire from="(120,170)" to="(280,170)"/> <wire from="(710,1650)" to="(710,1690)"/> <wire from="(470,2000)" to="(490,2000)"/> <wire from="(470,2320)" to="(490,2320)"/> <wire from="(590,360)" to="(610,360)"/> <wire from="(690,460)" to="(710,460)"/> <wire from="(630,2480)" to="(650,2480)"/> <wire from="(330,1370)" to="(360,1370)"/> <wire from="(160,1640)" to="(160,1810)"/> <wire from="(410,1300)" to="(430,1300)"/> <wire from="(410,450)" to="(410,620)"/> <wire from="(460,820)" to="(460,990)"/> <wire from="(240,2200)" to="(240,2370)"/> <wire from="(350,1350)" to="(350,1520)"/> <wire from="(350,2370)" to="(360,2370)"/> <wire from="(420,1320)" to="(430,1320)"/> <wire from="(280,2400)" to="(280,2580)"/> <wire from="(610,1550)" to="(610,1610)"/> <wire from="(490,1590)" to="(490,1640)"/> <wire from="(440,2180)" to="(440,2240)"/> <wire from="(390,1360)" to="(460,1360)"/> <wire from="(510,2050)" to="(520,2050)"/> <wire from="(540,2560)" to="(550,2560)"/> <wire from="(490,470)" to="(490,540)"/> <wire from="(120,1010)" to="(240,1010)"/> <wire from="(490,1150)" to="(550,1150)"/> <wire from="(590,290)" to="(650,290)"/> <wire from="(510,1130)" to="(510,1200)"/> <wire from="(510,2150)" to="(550,2150)"/> <wire from="(510,1100)" to="(610,1100)"/> <wire from="(510,1100)" to="(510,1130)"/> <wire from="(330,1390)" to="(440,1390)"/> <wire from="(460,2010)" to="(460,2040)"/> <wire from="(420,1490)" to="(420,1520)"/> <wire from="(420,1690)" to="(710,1690)"/> <wire from="(200,1520)" to="(240,1520)"/> <wire from="(120,110)" to="(410,110)"/> <wire from="(490,570)" to="(720,570)"/> <wire from="(220,1130)" to="(320,1130)"/> <wire from="(630,1120)" to="(630,1290)"/> <wire from="(710,1140)" to="(710,1180)"/> <wire from="(470,1810)" to="(490,1810)"/> <wire from="(630,1970)" to="(650,1970)"/> <wire from="(590,2570)" to="(610,2570)"/> <wire from="(160,1130)" to="(160,1300)"/> <wire from="(410,790)" to="(430,790)"/> <wire from="(470,1490)" to="(490,1490)"/> <wire from="(460,310)" to="(460,480)"/> <wire from="(240,1690)" to="(240,1860)"/> <wire from="(280,1890)" to="(280,2060)"/> <wire from="(160,1980)" to="(180,1980)"/> <wire from="(420,810)" to="(430,810)"/> <wire from="(350,1860)" to="(360,1860)"/> <wire from="(490,1080)" to="(490,1130)"/> <wire from="(610,1040)" to="(610,1100)"/> <wire from="(440,1670)" to="(440,1730)"/> <wire from="(510,1540)" to="(520,1540)"/> <wire from="(540,2050)" to="(550,2050)"/> <wire from="(490,640)" to="(550,640)"/> <wire from="(490,2240)" to="(550,2240)"/> <wire from="(510,620)" to="(510,690)"/> <wire from="(590,2500)" to="(650,2500)"/> <wire from="(510,1640)" to="(550,1640)"/> <wire from="(510,590)" to="(610,590)"/> <wire from="(510,590)" to="(510,620)"/> <wire from="(420,980)" to="(420,1010)"/> <wire from="(160,80)" to="(160,1130)"/> <wire from="(420,1180)" to="(710,1180)"/> <wire from="(460,1500)" to="(460,1530)"/> <wire from="(490,60)" to="(720,60)"/> <wire from="(710,630)" to="(710,670)"/> <wire from="(630,610)" to="(630,780)"/> <wire from="(590,2060)" to="(610,2060)"/> <wire from="(630,1460)" to="(650,1460)"/> <wire from="(690,2160)" to="(710,2160)"/> <wire from="(280,2230)" to="(300,2230)"/> <wire from="(410,280)" to="(430,280)"/> <wire from="(470,980)" to="(490,980)"/> <wire from="(470,1300)" to="(490,1300)"/> <wire from="(410,2150)" to="(410,2320)"/> <wire from="(280,1380)" to="(280,1550)"/> <wire from="(240,1180)" to="(240,1350)"/> <wire from="(160,1470)" to="(180,1470)"/> <wire from="(420,300)" to="(430,300)"/> <wire from="(350,1350)" to="(360,1350)"/> <wire from="(490,570)" to="(490,620)"/> <wire from="(610,530)" to="(610,590)"/> <wire from="(320,2320)" to="(320,2380)"/> <wire from="(440,1160)" to="(440,1220)"/> <wire from="(510,1030)" to="(520,1030)"/> <wire from="(540,1540)" to="(550,1540)"/> <wire from="(510,110)" to="(510,180)"/> <wire from="(490,130)" to="(550,130)"/> <wire from="(120,2000)" to="(180,2000)"/> <wire from="(490,1730)" to="(550,1730)"/> <wire from="(590,1990)" to="(650,1990)"/> <wire from="(460,990)" to="(460,1000)"/> <wire from="(490,2170)" to="(490,2240)"/> <wire from="(350,210)" to="(350,1180)"/> <wire from="(510,1130)" to="(550,1130)"/> <wire from="(200,2010)" to="(200,2030)"/> <wire from="(490,2270)" to="(720,2270)"/> <wire from="(280,170)" to="(280,1210)"/> <wire from="(420,470)" to="(420,500)"/> <wire from="(420,670)" to="(710,670)"/> <wire from="(710,120)" to="(710,160)"/> <wire from="(630,100)" to="(630,270)"/> <wire from="(590,1550)" to="(610,1550)"/> <wire from="(630,950)" to="(650,950)"/> <wire from="(690,1650)" to="(710,1650)"/> <wire from="(280,1720)" to="(300,1720)"/> <wire from="(470,790)" to="(490,790)"/> <wire from="(470,470)" to="(490,470)"/> <wire from="(410,2490)" to="(430,2490)"/> <wire from="(410,1640)" to="(410,1810)"/> <wire from="(510,520)" to="(520,520)"/> <wire from="(420,2510)" to="(430,2510)"/> <wire from="(490,60)" to="(490,110)"/> <wire from="(320,1810)" to="(320,1870)"/> <wire from="(540,1030)" to="(550,1030)"/> <wire from="(120,1490)" to="(180,1490)"/> <wire from="(490,1220)" to="(550,1220)"/> <wire from="(490,2340)" to="(550,2340)"/> <wire from="(590,1480)" to="(650,1480)"/> <wire from="(490,1660)" to="(490,1730)"/> <wire from="(510,2320)" to="(510,2390)"/> <wire from="(510,620)" to="(550,620)"/> <wire from="(490,1760)" to="(720,1760)"/> <wire from="(510,2290)" to="(610,2290)"/> <wire from="(510,2290)" to="(510,2320)"/> <wire from="(200,1500)" to="(200,1520)"/> <wire from="(420,160)" to="(710,160)"/> <wire from="(220,2320)" to="(320,2320)"/> <wire from="(630,2310)" to="(630,2480)"/> <wire from="(710,2330)" to="(710,2370)"/> <wire from="(330,2050)" to="(360,2050)"/> <wire from="(630,440)" to="(650,440)"/> <wire from="(590,1040)" to="(610,1040)"/> <wire from="(690,1140)" to="(710,1140)"/> <wire from="(280,1210)" to="(300,1210)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(410,1980)" to="(430,1980)"/> <wire from="(410,1130)" to="(410,1300)"/> <wire from="(350,2030)" to="(350,2200)"/> <wire from="(420,2000)" to="(430,2000)"/> <wire from="(610,2230)" to="(610,2290)"/> <wire from="(320,1300)" to="(320,1360)"/> <wire from="(490,2270)" to="(490,2320)"/> <wire from="(390,2040)" to="(460,2040)"/> <wire from="(540,520)" to="(550,520)"/> <wire from="(490,1150)" to="(490,1220)"/> <wire from="(490,710)" to="(550,710)"/> <wire from="(490,1830)" to="(550,1830)"/> <wire from="(590,970)" to="(650,970)"/> <wire from="(510,1810)" to="(510,1880)"/> <wire from="(340,170)" to="(340,190)"/> <wire from="(490,1250)" to="(720,1250)"/> <wire from="(330,2070)" to="(440,2070)"/> <wire from="(510,1780)" to="(610,1780)"/> <wire from="(510,1780)" to="(510,1810)"/> <wire from="(220,1810)" to="(320,1810)"/> <wire from="(420,2170)" to="(420,2200)"/> <wire from="(420,2370)" to="(710,2370)"/> <wire from="(200,2200)" to="(240,2200)"/> <wire from="(510,110)" to="(550,110)"/> <wire from="(630,1800)" to="(630,1970)"/> <wire from="(710,1820)" to="(710,1860)"/> <wire from="(470,2170)" to="(490,2170)"/> <wire from="(470,2490)" to="(490,2490)"/> <wire from="(590,530)" to="(610,530)"/> <wire from="(280,2580)" to="(440,2580)"/> <wire from="(690,630)" to="(710,630)"/> <wire from="(330,1540)" to="(360,1540)"/> <wire from="(160,1810)" to="(160,1980)"/> <wire from="(410,1470)" to="(430,1470)"/> <wire from="(410,620)" to="(410,790)"/> <wire from="(350,1520)" to="(350,1690)"/> <wire from="(420,1490)" to="(430,1490)"/> <wire from="(610,1720)" to="(610,1780)"/> <wire from="(490,1760)" to="(490,1810)"/> <wire from="(440,2350)" to="(440,2410)"/> <wire from="(390,1530)" to="(460,1530)"/> <wire from="(510,2220)" to="(520,2220)"/> <wire from="(490,640)" to="(490,710)"/> <wire from="(490,200)" to="(550,200)"/> <wire from="(490,1320)" to="(550,1320)"/> <wire from="(590,460)" to="(650,460)"/> <wire from="(510,1300)" to="(510,1370)"/> <wire from="(510,2320)" to="(550,2320)"/> <wire from="(510,1270)" to="(610,1270)"/> <wire from="(510,1270)" to="(510,1300)"/> <wire from="(460,2180)" to="(460,2210)"/> <wire from="(330,1560)" to="(440,1560)"/> <wire from="(120,210)" to="(350,210)"/> <wire from="(220,1300)" to="(320,1300)"/> <wire from="(420,1660)" to="(420,1690)"/> <wire from="(420,1860)" to="(710,1860)"/> <wire from="(200,1690)" to="(240,1690)"/> <wire from="(490,740)" to="(720,740)"/> <wire from="(630,1290)" to="(630,1460)"/> <wire from="(710,1310)" to="(710,1350)"/> <wire from="(470,1980)" to="(490,1980)"/> <wire from="(690,120)" to="(710,120)"/> <wire from="(630,2140)" to="(650,2140)"/> <wire from="(160,1300)" to="(160,1470)"/> <wire from="(410,960)" to="(430,960)"/> <wire from="(470,1660)" to="(490,1660)"/> <wire from="(410,110)" to="(410,280)"/> <wire from="(460,480)" to="(460,650)"/> <wire from="(240,1860)" to="(240,2030)"/> <wire from="(280,2060)" to="(280,2230)"/> <wire from="(160,2150)" to="(180,2150)"/> <wire from="(420,980)" to="(430,980)"/> <wire from="(350,2030)" to="(360,2030)"/> <wire from="(610,1210)" to="(610,1270)"/> <wire from="(490,1250)" to="(490,1300)"/> <wire from="(440,1840)" to="(440,1900)"/> <wire from="(510,1710)" to="(520,1710)"/> <wire from="(540,2220)" to="(550,2220)"/> <wire from="(490,130)" to="(490,200)"/> <wire from="(490,810)" to="(550,810)"/> <wire from="(490,2410)" to="(550,2410)"/> <wire from="(510,790)" to="(510,860)"/> <wire from="(510,1810)" to="(550,1810)"/> <wire from="(510,760)" to="(610,760)"/> <wire from="(510,760)" to="(510,790)"/> <wire from="(420,1150)" to="(420,1180)"/> <wire from="(460,1670)" to="(460,1700)"/> <wire from="(420,1350)" to="(710,1350)"/> <wire from="(200,1180)" to="(240,1180)"/> <wire from="(490,230)" to="(720,230)"/> <wire from="(710,800)" to="(710,840)"/> <wire from="(630,780)" to="(630,950)"/> <wire from="(630,1630)" to="(650,1630)"/> <wire from="(590,2230)" to="(610,2230)"/> <wire from="(690,2330)" to="(710,2330)"/> <wire from="(280,2400)" to="(300,2400)"/> <wire from="(410,450)" to="(430,450)"/> <wire from="(470,1150)" to="(490,1150)"/> <wire from="(470,1470)" to="(490,1470)"/> <wire from="(410,2320)" to="(410,2490)"/> <wire from="(280,1550)" to="(280,1720)"/> <wire from="(240,1350)" to="(240,1520)"/> <wire from="(160,1640)" to="(180,1640)"/> <wire from="(420,470)" to="(430,470)"/> <wire from="(350,1520)" to="(360,1520)"/> <wire from="(490,740)" to="(490,790)"/> <wire from="(610,700)" to="(610,760)"/> <wire from="(440,1330)" to="(440,1390)"/> <wire from="(510,1200)" to="(520,1200)"/> <wire from="(540,1710)" to="(550,1710)"/> <wire from="(510,280)" to="(510,350)"/> <wire from="(490,300)" to="(550,300)"/> <wire from="(120,2170)" to="(180,2170)"/> <wire from="(490,1900)" to="(550,1900)"/> <wire from="(490,2340)" to="(490,2410)"/> <wire from="(590,2160)" to="(650,2160)"/> <wire from="(510,1300)" to="(550,1300)"/> <wire from="(200,2180)" to="(200,2200)"/> <wire from="(490,2440)" to="(720,2440)"/> <wire from="(420,640)" to="(420,670)"/> <wire from="(420,840)" to="(710,840)"/> <wire from="(510,250)" to="(510,280)"/> <wire from="(460,1160)" to="(460,1190)"/> <wire from="(510,250)" to="(610,250)"/> <wire from="(710,290)" to="(710,330)"/> <wire from="(630,270)" to="(630,440)"/> <wire from="(590,1720)" to="(610,1720)"/> <wire from="(630,1120)" to="(650,1120)"/> <wire from="(690,1820)" to="(710,1820)"/> <wire from="(340,190)" to="(360,190)"/> <wire from="(280,1890)" to="(300,1890)"/> <wire from="(470,960)" to="(490,960)"/> <wire from="(470,640)" to="(490,640)"/> <wire from="(410,1810)" to="(410,1980)"/> <wire from="(160,1130)" to="(180,1130)"/> <wire from="(350,210)" to="(360,210)"/> <wire from="(490,230)" to="(490,280)"/> <wire from="(610,190)" to="(610,250)"/> <wire from="(320,1980)" to="(320,2040)"/> <wire from="(510,690)" to="(520,690)"/> <wire from="(540,1200)" to="(550,1200)"/> <wire from="(120,1660)" to="(180,1660)"/> <wire from="(490,1390)" to="(550,1390)"/> <wire from="(490,2510)" to="(550,2510)"/> <wire from="(590,1650)" to="(650,1650)"/> <wire from="(490,1830)" to="(490,1900)"/> <wire from="(510,2490)" to="(510,2560)"/> <wire from="(510,790)" to="(550,790)"/> <wire from="(490,1930)" to="(720,1930)"/> <wire from="(510,2460)" to="(610,2460)"/> <wire from="(510,2460)" to="(510,2490)"/> <wire from="(200,1670)" to="(200,1690)"/> <wire from="(420,330)" to="(710,330)"/> <wire from="(420,130)" to="(420,160)"/> <wire from="(160,30)" to="(160,60)"/> <wire from="(710,2500)" to="(710,2540)"/> <wire from="(330,2220)" to="(360,2220)"/> <wire from="(630,610)" to="(650,610)"/> <wire from="(590,1210)" to="(610,1210)"/> <wire from="(690,1310)" to="(710,1310)"/> <wire from="(280,1380)" to="(300,1380)"/> <wire from="(460,200)" to="(460,310)"/> <wire from="(470,450)" to="(490,450)"/> <wire from="(470,130)" to="(490,130)"/> <wire from="(410,2150)" to="(430,2150)"/> <wire from="(410,1300)" to="(410,1470)"/> <wire from="(350,2200)" to="(350,2370)"/> <wire from="(510,180)" to="(520,180)"/> <wire from="(420,2170)" to="(430,2170)"/> <wire from="(610,2400)" to="(610,2460)"/> <wire from="(320,1470)" to="(320,1530)"/> <wire from="(490,2440)" to="(490,2490)"/> <wire from="(390,2210)" to="(460,2210)"/> <wire from="(540,690)" to="(550,690)"/> <comp lib="1" loc="(590,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,2220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,80)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,630)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,2150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1530)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1650)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(690,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,1480)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC8"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="4" loc="(470,1640)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1310)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,2570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(690,1290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(470,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1140)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,2150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,2160)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,870)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,100)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,2230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,1980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC11"/> </comp> <comp lib="1" loc="(540,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,2330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,2140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(641,2574)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(590,2060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,2490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="0" loc="(720,2100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A12"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(300,1890)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(470,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,2210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,2270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A13"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(300,2060)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(690,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(300,1380)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(120,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4012"/> </comp> <comp lib="1" loc="(540,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,1800)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A8"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(300,2400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(720,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(470,1980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1360)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,1820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1700)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,970)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(300,1720)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(720,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(720,2440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A14"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(690,1970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,2380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A11"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,2310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,460)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,800)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,2340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC13"/> </comp> <comp lib="0" loc="(120,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC9"/> </comp> <comp lib="1" loc="(540,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC7"/> </comp> <comp lib="0" loc="(720,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,2050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(690,610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(510,100)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC6"/> </comp> <comp lib="4" loc="(690,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(470,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(690,1630)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,1030)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC10"/> </comp> <comp lib="1" loc="(540,2390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(300,1550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(220,1470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,2400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,1810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(720,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,1870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,2320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(690,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,2170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LDMC12"/> </comp> <comp lib="2" loc="(300,1210)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(390,200)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(690,2480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,2500)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(470,2320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(590,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,2560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,2040)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(720,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC A4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,120)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(300,2230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> </circuit> <circuit name="DPCM_OUTPUT_COUNTER"> <a name="circuit" val="DPCM_OUTPUT_COUNTER"/> <a name="clabel" val="OUTPUT COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M110,41 Q114,51 118,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#c4c9ff" height="280" stroke="#000000" stroke-width="2" width="110" x="80" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="125">W4011</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="104">DSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="144">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="304">#BOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="163">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="184">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="203">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="224">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="244">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="263">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="284">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="304">DOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="64">DMC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="94">DMC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="124">DMC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="154">DMC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="185">DMC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="214">DMC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="244">DMC6</text> <circ-port height="8" pin="130,40" width="8" x="76" y="56"/> <circ-port height="8" pin="130,160" width="8" x="76" y="116"/> <circ-port height="8" pin="130,200" width="8" x="76" y="96"/> <circ-port height="8" pin="130,280" width="8" x="76" y="136"/> <circ-port height="8" pin="130,240" width="8" x="76" y="296"/> <circ-port height="8" pin="130,120" width="8" x="76" y="156"/> <circ-port height="8" pin="130,320" width="8" x="76" y="176"/> <circ-port height="8" pin="130,520" width="8" x="76" y="196"/> <circ-port height="8" pin="130,720" width="8" x="76" y="216"/> <circ-port height="8" pin="130,920" width="8" x="76" y="236"/> <circ-port height="8" pin="130,1120" width="8" x="76" y="256"/> <circ-port height="8" pin="130,1320" width="8" x="76" y="276"/> <circ-port height="10" pin="660,80" width="10" x="185" y="55"/> <circ-port height="10" pin="660,280" width="10" x="185" y="85"/> <circ-port height="10" pin="660,480" width="10" x="185" y="115"/> <circ-port height="10" pin="660,680" width="10" x="185" y="145"/> <circ-port height="10" pin="660,880" width="10" x="185" y="175"/> <circ-port height="10" pin="660,1080" width="10" x="185" y="205"/> <circ-port height="10" pin="660,1280" width="10" x="185" y="235"/> <circ-port height="10" pin="660,1410" width="10" x="185" y="295"/> <circ-anchor facing="east" height="6" width="6" x="147" y="37"/> </appear> <wire from="(560,40)" to="(560,310)"/> <wire from="(350,920)" to="(350,1120)"/> <wire from="(350,520)" to="(350,720)"/> <wire from="(130,1320)" to="(240,1320)"/> <wire from="(130,920)" to="(240,920)"/> <wire from="(130,520)" to="(240,520)"/> <wire from="(330,1030)" to="(500,1030)"/> <wire from="(330,630)" to="(500,630)"/> <wire from="(330,1430)" to="(500,1430)"/> <wire from="(320,40)" to="(560,40)"/> <wire from="(540,380)" to="(540,400)"/> <wire from="(540,1180)" to="(540,1200)"/> <wire from="(540,780)" to="(540,800)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(560,910)" to="(580,910)"/> <wire from="(560,1310)" to="(580,1310)"/> <wire from="(620,410)" to="(640,410)"/> <wire from="(620,1210)" to="(640,1210)"/> <wire from="(620,810)" to="(640,810)"/> <wire from="(250,990)" to="(280,990)"/> <wire from="(250,590)" to="(280,590)"/> <wire from="(250,1390)" to="(280,1390)"/> <wire from="(480,480)" to="(480,520)"/> <wire from="(460,940)" to="(460,980)"/> <wire from="(480,1280)" to="(480,1320)"/> <wire from="(460,540)" to="(460,580)"/> <wire from="(460,1340)" to="(460,1380)"/> <wire from="(480,880)" to="(480,920)"/> <wire from="(240,1120)" to="(240,1180)"/> <wire from="(390,550)" to="(390,610)"/> <wire from="(390,1350)" to="(390,1410)"/> <wire from="(390,950)" to="(390,1010)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(240,320)" to="(240,380)"/> <wire from="(270,970)" to="(270,1170)"/> <wire from="(270,570)" to="(270,770)"/> <wire from="(330,1030)" to="(330,1230)"/> <wire from="(330,630)" to="(330,830)"/> <wire from="(540,600)" to="(580,600)"/> <wire from="(540,1400)" to="(580,1400)"/> <wire from="(540,1000)" to="(580,1000)"/> <wire from="(370,340)" to="(370,360)"/> <wire from="(370,740)" to="(370,760)"/> <wire from="(370,1140)" to="(370,1160)"/> <wire from="(460,460)" to="(460,540)"/> <wire from="(460,1260)" to="(460,1340)"/> <wire from="(460,860)" to="(460,940)"/> <wire from="(320,80)" to="(340,80)"/> <wire from="(420,1140)" to="(440,1140)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,740)" to="(440,740)"/> <wire from="(480,720)" to="(500,720)"/> <wire from="(480,320)" to="(500,320)"/> <wire from="(480,1120)" to="(500,1120)"/> <wire from="(370,940)" to="(380,940)"/> <wire from="(370,1340)" to="(380,1340)"/> <wire from="(370,540)" to="(380,540)"/> <wire from="(370,1360)" to="(640,1360)"/> <wire from="(370,960)" to="(640,960)"/> <wire from="(370,560)" to="(640,560)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(640,610)" to="(640,660)"/> <wire from="(560,910)" to="(560,1110)"/> <wire from="(560,510)" to="(560,710)"/> <wire from="(440,610)" to="(500,610)"/> <wire from="(440,1410)" to="(500,1410)"/> <wire from="(440,1010)" to="(500,1010)"/> <wire from="(210,400)" to="(210,600)"/> <wire from="(210,1200)" to="(210,1400)"/> <wire from="(210,800)" to="(210,1000)"/> <wire from="(540,730)" to="(580,730)"/> <wire from="(540,1130)" to="(580,1130)"/> <wire from="(540,330)" to="(580,330)"/> <wire from="(420,80)" to="(660,80)"/> <wire from="(410,1150)" to="(410,1180)"/> <wire from="(410,350)" to="(410,380)"/> <wire from="(410,750)" to="(410,780)"/> <wire from="(130,120)" to="(360,120)"/> <wire from="(620,510)" to="(640,510)"/> <wire from="(620,910)" to="(640,910)"/> <wire from="(620,1310)" to="(640,1310)"/> <wire from="(270,970)" to="(280,970)"/> <wire from="(270,1370)" to="(280,1370)"/> <wire from="(270,570)" to="(280,570)"/> <wire from="(210,160)" to="(210,400)"/> <wire from="(440,540)" to="(440,610)"/> <wire from="(440,1340)" to="(440,1410)"/> <wire from="(440,940)" to="(440,1010)"/> <wire from="(210,160)" to="(400,160)"/> <wire from="(420,720)" to="(480,720)"/> <wire from="(420,320)" to="(480,320)"/> <wire from="(420,1120)" to="(480,1120)"/> <wire from="(460,1060)" to="(640,1060)"/> <wire from="(480,280)" to="(660,280)"/> <wire from="(480,1080)" to="(660,1080)"/> <wire from="(480,680)" to="(660,680)"/> <wire from="(460,660)" to="(640,660)"/> <wire from="(540,1020)" to="(580,1020)"/> <wire from="(540,1420)" to="(580,1420)"/> <wire from="(540,620)" to="(580,620)"/> <wire from="(310,380)" to="(410,380)"/> <wire from="(310,1180)" to="(410,1180)"/> <wire from="(310,780)" to="(410,780)"/> <wire from="(460,940)" to="(500,940)"/> <wire from="(460,780)" to="(500,780)"/> <wire from="(460,380)" to="(500,380)"/> <wire from="(460,540)" to="(500,540)"/> <wire from="(460,1340)" to="(500,1340)"/> <wire from="(460,1180)" to="(500,1180)"/> <wire from="(520,1180)" to="(540,1180)"/> <wire from="(520,380)" to="(540,380)"/> <wire from="(520,780)" to="(540,780)"/> <wire from="(350,1320)" to="(380,1320)"/> <wire from="(350,520)" to="(380,520)"/> <wire from="(350,920)" to="(380,920)"/> <wire from="(250,1210)" to="(390,1210)"/> <wire from="(250,410)" to="(390,410)"/> <wire from="(250,810)" to="(390,810)"/> <wire from="(210,400)" to="(220,400)"/> <wire from="(210,1200)" to="(220,1200)"/> <wire from="(210,800)" to="(220,800)"/> <wire from="(640,710)" to="(640,760)"/> <wire from="(640,1110)" to="(640,1160)"/> <wire from="(640,310)" to="(640,360)"/> <wire from="(350,320)" to="(350,520)"/> <wire from="(350,1120)" to="(350,1320)"/> <wire from="(350,720)" to="(350,920)"/> <wire from="(130,1120)" to="(240,1120)"/> <wire from="(130,720)" to="(240,720)"/> <wire from="(130,320)" to="(240,320)"/> <wire from="(330,430)" to="(500,430)"/> <wire from="(330,1230)" to="(500,1230)"/> <wire from="(330,830)" to="(500,830)"/> <wire from="(540,580)" to="(540,600)"/> <wire from="(540,1380)" to="(540,1400)"/> <wire from="(540,980)" to="(540,1000)"/> <wire from="(250,390)" to="(280,390)"/> <wire from="(560,710)" to="(580,710)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(560,1110)" to="(580,1110)"/> <wire from="(620,610)" to="(640,610)"/> <wire from="(620,1010)" to="(640,1010)"/> <wire from="(250,1190)" to="(280,1190)"/> <wire from="(250,790)" to="(280,790)"/> <wire from="(320,40)" to="(320,80)"/> <wire from="(460,740)" to="(460,780)"/> <wire from="(480,280)" to="(480,320)"/> <wire from="(480,1080)" to="(480,1120)"/> <wire from="(460,340)" to="(460,380)"/> <wire from="(460,1140)" to="(460,1180)"/> <wire from="(480,680)" to="(480,720)"/> <wire from="(240,1320)" to="(240,1380)"/> <wire from="(240,920)" to="(240,980)"/> <wire from="(390,750)" to="(390,810)"/> <wire from="(390,350)" to="(390,410)"/> <wire from="(390,1150)" to="(390,1210)"/> <wire from="(240,520)" to="(240,580)"/> <wire from="(270,370)" to="(270,570)"/> <wire from="(270,1170)" to="(270,1370)"/> <wire from="(270,770)" to="(270,970)"/> <wire from="(330,430)" to="(330,630)"/> <wire from="(330,1230)" to="(330,1430)"/> <wire from="(330,830)" to="(330,1030)"/> <wire from="(540,400)" to="(580,400)"/> <wire from="(540,1200)" to="(580,1200)"/> <wire from="(540,800)" to="(580,800)"/> <wire from="(370,540)" to="(370,560)"/> <wire from="(370,1340)" to="(370,1360)"/> <wire from="(370,940)" to="(370,960)"/> <wire from="(460,660)" to="(460,740)"/> <wire from="(460,260)" to="(460,340)"/> <wire from="(460,1060)" to="(460,1140)"/> <wire from="(130,200)" to="(350,200)"/> <wire from="(360,80)" to="(380,80)"/> <wire from="(420,540)" to="(440,540)"/> <wire from="(420,940)" to="(440,940)"/> <wire from="(420,1340)" to="(440,1340)"/> <wire from="(480,920)" to="(500,920)"/> <wire from="(480,520)" to="(500,520)"/> <wire from="(480,1320)" to="(500,1320)"/> <wire from="(370,1140)" to="(380,1140)"/> <wire from="(130,160)" to="(210,160)"/> <wire from="(370,340)" to="(380,340)"/> <wire from="(370,740)" to="(380,740)"/> <wire from="(370,760)" to="(640,760)"/> <wire from="(370,1160)" to="(640,1160)"/> <wire from="(370,360)" to="(640,360)"/> <wire from="(640,810)" to="(640,860)"/> <wire from="(640,1210)" to="(640,1260)"/> <wire from="(640,410)" to="(640,460)"/> <wire from="(330,240)" to="(330,430)"/> <wire from="(560,710)" to="(560,910)"/> <wire from="(560,310)" to="(560,510)"/> <wire from="(560,1110)" to="(560,1310)"/> <wire from="(440,410)" to="(500,410)"/> <wire from="(440,1210)" to="(500,1210)"/> <wire from="(440,810)" to="(500,810)"/> <wire from="(210,1000)" to="(210,1200)"/> <wire from="(210,600)" to="(210,800)"/> <wire from="(540,1330)" to="(580,1330)"/> <wire from="(540,530)" to="(580,530)"/> <wire from="(540,930)" to="(580,930)"/> <wire from="(360,100)" to="(360,120)"/> <wire from="(620,1410)" to="(660,1410)"/> <wire from="(410,950)" to="(410,980)"/> <wire from="(410,1350)" to="(410,1380)"/> <wire from="(410,550)" to="(410,580)"/> <wire from="(270,280)" to="(270,370)"/> <wire from="(620,1110)" to="(640,1110)"/> <wire from="(620,310)" to="(640,310)"/> <wire from="(620,710)" to="(640,710)"/> <wire from="(270,770)" to="(280,770)"/> <wire from="(270,1170)" to="(280,1170)"/> <wire from="(270,370)" to="(280,370)"/> <wire from="(130,280)" to="(270,280)"/> <wire from="(350,200)" to="(350,320)"/> <wire from="(440,340)" to="(440,410)"/> <wire from="(130,40)" to="(320,40)"/> <wire from="(440,740)" to="(440,810)"/> <wire from="(440,1140)" to="(440,1210)"/> <wire from="(420,520)" to="(480,520)"/> <wire from="(420,920)" to="(480,920)"/> <wire from="(420,1320)" to="(480,1320)"/> <wire from="(460,860)" to="(640,860)"/> <wire from="(460,1260)" to="(640,1260)"/> <wire from="(480,880)" to="(660,880)"/> <wire from="(460,460)" to="(640,460)"/> <wire from="(480,1280)" to="(660,1280)"/> <wire from="(480,480)" to="(660,480)"/> <wire from="(540,820)" to="(580,820)"/> <wire from="(540,420)" to="(580,420)"/> <wire from="(540,1220)" to="(580,1220)"/> <wire from="(310,580)" to="(410,580)"/> <wire from="(310,980)" to="(410,980)"/> <wire from="(310,1380)" to="(410,1380)"/> <wire from="(460,740)" to="(500,740)"/> <wire from="(460,580)" to="(500,580)"/> <wire from="(460,1380)" to="(500,1380)"/> <wire from="(460,980)" to="(500,980)"/> <wire from="(460,1140)" to="(500,1140)"/> <wire from="(460,340)" to="(500,340)"/> <wire from="(520,980)" to="(540,980)"/> <wire from="(520,1380)" to="(540,1380)"/> <wire from="(520,580)" to="(540,580)"/> <wire from="(350,320)" to="(380,320)"/> <wire from="(350,1120)" to="(380,1120)"/> <wire from="(350,720)" to="(380,720)"/> <wire from="(360,100)" to="(380,100)"/> <wire from="(250,1010)" to="(390,1010)"/> <wire from="(250,610)" to="(390,610)"/> <wire from="(250,1410)" to="(390,1410)"/> <wire from="(400,110)" to="(400,160)"/> <wire from="(210,1000)" to="(220,1000)"/> <wire from="(210,600)" to="(220,600)"/> <wire from="(210,1400)" to="(220,1400)"/> <wire from="(640,1310)" to="(640,1360)"/> <wire from="(640,910)" to="(640,960)"/> <wire from="(130,240)" to="(330,240)"/> <wire from="(640,510)" to="(640,560)"/> <comp lib="1" loc="(310,1180)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,730)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(620,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="4" loc="(620,1110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(220,1400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(130,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(660,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(520,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1130)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(660,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,1280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(620,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(660,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="4" loc="(420,720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,1320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(310,580)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,530)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,600)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(520,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#BOUT"/> </comp> <comp lib="4" loc="(620,310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(460,260)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(620,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(620,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,800)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(520,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,80)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(660,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(540,1420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,1380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,1010)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(540,1330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,1220)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(540,1020)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(620,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(520,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,1380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(660,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(620,1310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,820)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,400)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(360,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DMC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,780)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DSTEP"/> </comp> <comp lib="1" loc="(540,620)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(540,420)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(220,1200)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(540,330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="DPCM_SAMPLE_SHIFT_REGISTER"> <a name="circuit" val="DPCM_SAMPLE_SHIFT_REGISTER"/> <a name="clabel" val="SAMPLE SHIFT REGISTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M69,41 Q73,51 77,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#60ffd7" height="300" stroke="#000000" stroke-width="2" width="110" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="134" y="64">#BOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="304">PCM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="324">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="284">BLOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="265">BSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="104">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="124">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="144">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="164">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="184">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="224">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="244">D7</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,280" width="8" x="46" y="96"/> <circ-port height="8" pin="90,410" width="8" x="46" y="116"/> <circ-port height="8" pin="90,540" width="8" x="46" y="136"/> <circ-port height="8" pin="90,670" width="8" x="46" y="156"/> <circ-port height="8" pin="90,800" width="8" x="46" y="176"/> <circ-port height="8" pin="90,930" width="8" x="46" y="196"/> <circ-port height="8" pin="90,1060" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1190" width="8" x="46" y="236"/> <circ-port height="8" pin="90,110" width="8" x="46" y="256"/> <circ-port height="8" pin="90,190" width="8" x="46" y="276"/> <circ-port height="8" pin="90,150" width="8" x="46" y="316"/> <circ-port height="8" pin="90,230" width="8" x="46" y="296"/> <circ-port height="10" pin="670,260" width="10" x="155" y="55"/> <circ-anchor facing="east" height="6" width="6" x="117" y="37"/> </appear> <wire from="(380,1000)" to="(380,1130)"/> <wire from="(450,910)" to="(450,1040)"/> <wire from="(230,1090)" to="(230,1220)"/> <wire from="(310,450)" to="(310,580)"/> <wire from="(560,780)" to="(560,910)"/> <wire from="(380,150)" to="(380,350)"/> <wire from="(430,730)" to="(600,730)"/> <wire from="(350,670)" to="(350,690)"/> <wire from="(470,1010)" to="(640,1010)"/> <wire from="(190,1070)" to="(190,1090)"/> <wire from="(470,1060)" to="(470,1140)"/> <wire from="(190,440)" to="(230,440)"/> <wire from="(620,940)" to="(620,960)"/> <wire from="(360,850)" to="(400,850)"/> <wire from="(450,390)" to="(480,390)"/> <wire from="(310,580)" to="(330,580)"/> <wire from="(380,1130)" to="(400,1130)"/> <wire from="(560,260)" to="(590,260)"/> <wire from="(150,260)" to="(170,260)"/> <wire from="(90,670)" to="(170,670)"/> <wire from="(470,670)" to="(480,670)"/> <wire from="(520,1190)" to="(590,1190)"/> <wire from="(210,540)" to="(350,540)"/> <wire from="(640,880)" to="(640,930)"/> <wire from="(360,830)" to="(620,830)"/> <wire from="(600,680)" to="(600,730)"/> <wire from="(630,670)" to="(640,670)"/> <wire from="(150,260)" to="(150,390)"/> <wire from="(380,1130)" to="(380,1260)"/> <wire from="(450,1040)" to="(450,1170)"/> <wire from="(310,580)" to="(310,710)"/> <wire from="(560,910)" to="(560,1040)"/> <wire from="(350,800)" to="(350,820)"/> <wire from="(430,860)" to="(600,860)"/> <wire from="(470,1140)" to="(640,1140)"/> <wire from="(230,230)" to="(230,310)"/> <wire from="(190,1200)" to="(190,1220)"/> <wire from="(190,570)" to="(230,570)"/> <wire from="(620,1070)" to="(620,1090)"/> <wire from="(360,980)" to="(400,980)"/> <wire from="(560,110)" to="(560,260)"/> <wire from="(450,30)" to="(450,260)"/> <wire from="(450,520)" to="(480,520)"/> <wire from="(310,710)" to="(330,710)"/> <wire from="(380,1260)" to="(400,1260)"/> <wire from="(560,390)" to="(590,390)"/> <wire from="(150,390)" to="(170,390)"/> <wire from="(90,800)" to="(170,800)"/> <wire from="(470,800)" to="(480,800)"/> <wire from="(520,280)" to="(590,280)"/> <wire from="(90,230)" to="(230,230)"/> <wire from="(210,670)" to="(350,670)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(360,960)" to="(620,960)"/> <wire from="(600,810)" to="(600,860)"/> <wire from="(630,800)" to="(640,800)"/> <wire from="(150,390)" to="(150,520)"/> <wire from="(230,310)" to="(230,440)"/> <wire from="(310,710)" to="(310,840)"/> <wire from="(560,1040)" to="(560,1170)"/> <wire from="(350,930)" to="(350,950)"/> <wire from="(430,990)" to="(600,990)"/> <wire from="(630,260)" to="(670,260)"/> <wire from="(190,290)" to="(190,310)"/> <wire from="(470,280)" to="(470,360)"/> <wire from="(190,700)" to="(230,700)"/> <wire from="(620,1200)" to="(620,1220)"/> <wire from="(360,1110)" to="(400,1110)"/> <wire from="(90,150)" to="(380,150)"/> <wire from="(120,210)" to="(280,210)"/> <wire from="(450,650)" to="(480,650)"/> <wire from="(310,840)" to="(330,840)"/> <wire from="(380,350)" to="(400,350)"/> <wire from="(560,520)" to="(590,520)"/> <wire from="(150,520)" to="(170,520)"/> <wire from="(90,930)" to="(170,930)"/> <wire from="(470,930)" to="(480,930)"/> <wire from="(520,410)" to="(590,410)"/> <wire from="(210,800)" to="(350,800)"/> <wire from="(640,1140)" to="(640,1190)"/> <wire from="(360,1090)" to="(620,1090)"/> <wire from="(600,940)" to="(600,990)"/> <wire from="(150,70)" to="(150,260)"/> <wire from="(630,930)" to="(640,930)"/> <wire from="(150,520)" to="(150,650)"/> <wire from="(230,440)" to="(230,570)"/> <wire from="(450,260)" to="(450,390)"/> <wire from="(310,840)" to="(310,970)"/> <wire from="(380,350)" to="(380,480)"/> <wire from="(350,1060)" to="(350,1080)"/> <wire from="(430,1120)" to="(600,1120)"/> <wire from="(470,360)" to="(640,360)"/> <wire from="(190,420)" to="(190,440)"/> <wire from="(470,410)" to="(470,490)"/> <wire from="(190,830)" to="(230,830)"/> <wire from="(620,290)" to="(620,310)"/> <wire from="(360,1240)" to="(400,1240)"/> <wire from="(450,780)" to="(480,780)"/> <wire from="(310,970)" to="(330,970)"/> <wire from="(380,480)" to="(400,480)"/> <wire from="(560,650)" to="(590,650)"/> <wire from="(150,650)" to="(170,650)"/> <wire from="(90,1060)" to="(170,1060)"/> <wire from="(470,1060)" to="(480,1060)"/> <wire from="(520,540)" to="(590,540)"/> <wire from="(210,930)" to="(350,930)"/> <wire from="(360,1220)" to="(620,1220)"/> <wire from="(600,1070)" to="(600,1120)"/> <wire from="(630,1060)" to="(640,1060)"/> <wire from="(150,650)" to="(150,780)"/> <wire from="(230,570)" to="(230,700)"/> <wire from="(450,390)" to="(450,520)"/> <wire from="(310,970)" to="(310,1100)"/> <wire from="(380,480)" to="(380,610)"/> <wire from="(560,260)" to="(560,390)"/> <wire from="(350,1190)" to="(350,1210)"/> <wire from="(430,1250)" to="(600,1250)"/> <wire from="(470,490)" to="(640,490)"/> <wire from="(150,30)" to="(150,50)"/> <wire from="(190,550)" to="(190,570)"/> <wire from="(470,540)" to="(470,620)"/> <wire from="(190,960)" to="(230,960)"/> <wire from="(620,420)" to="(620,440)"/> <wire from="(360,330)" to="(400,330)"/> <wire from="(120,1270)" to="(280,1270)"/> <wire from="(450,910)" to="(480,910)"/> <wire from="(90,190)" to="(310,190)"/> <wire from="(310,1100)" to="(330,1100)"/> <wire from="(560,780)" to="(590,780)"/> <wire from="(380,610)" to="(400,610)"/> <wire from="(150,780)" to="(170,780)"/> <wire from="(90,1190)" to="(170,1190)"/> <wire from="(520,670)" to="(590,670)"/> <wire from="(210,1060)" to="(350,1060)"/> <wire from="(360,310)" to="(620,310)"/> <wire from="(600,1200)" to="(600,1250)"/> <wire from="(640,360)" to="(640,410)"/> <wire from="(630,1190)" to="(640,1190)"/> <wire from="(150,780)" to="(150,910)"/> <wire from="(230,700)" to="(230,830)"/> <wire from="(380,610)" to="(380,740)"/> <wire from="(450,520)" to="(450,650)"/> <wire from="(310,1100)" to="(310,1230)"/> <wire from="(560,390)" to="(560,520)"/> <wire from="(430,340)" to="(600,340)"/> <wire from="(470,620)" to="(640,620)"/> <wire from="(350,280)" to="(350,300)"/> <wire from="(150,30)" to="(450,30)"/> <wire from="(190,680)" to="(190,700)"/> <wire from="(470,670)" to="(470,750)"/> <wire from="(190,1090)" to="(230,1090)"/> <wire from="(620,550)" to="(620,570)"/> <wire from="(360,460)" to="(400,460)"/> <wire from="(280,210)" to="(280,1270)"/> <wire from="(450,1040)" to="(480,1040)"/> <wire from="(120,210)" to="(120,1270)"/> <wire from="(310,1230)" to="(330,1230)"/> <wire from="(560,910)" to="(590,910)"/> <wire from="(380,740)" to="(400,740)"/> <wire from="(90,110)" to="(560,110)"/> <wire from="(150,910)" to="(170,910)"/> <wire from="(90,280)" to="(170,280)"/> <wire from="(470,280)" to="(480,280)"/> <wire from="(520,800)" to="(590,800)"/> <wire from="(210,1190)" to="(350,1190)"/> <wire from="(360,440)" to="(620,440)"/> <wire from="(600,290)" to="(600,340)"/> <wire from="(640,490)" to="(640,540)"/> <wire from="(150,910)" to="(150,1040)"/> <wire from="(230,830)" to="(230,960)"/> <wire from="(420,1190)" to="(480,1190)"/> <wire from="(380,740)" to="(380,870)"/> <wire from="(450,650)" to="(450,780)"/> <wire from="(310,190)" to="(310,320)"/> <wire from="(560,520)" to="(560,650)"/> <wire from="(430,470)" to="(600,470)"/> <wire from="(470,750)" to="(640,750)"/> <wire from="(350,410)" to="(350,430)"/> <wire from="(190,810)" to="(190,830)"/> <wire from="(470,800)" to="(470,880)"/> <wire from="(190,1220)" to="(230,1220)"/> <wire from="(620,680)" to="(620,700)"/> <wire from="(360,590)" to="(400,590)"/> <wire from="(450,1170)" to="(480,1170)"/> <wire from="(310,320)" to="(330,320)"/> <wire from="(560,1040)" to="(590,1040)"/> <wire from="(380,870)" to="(400,870)"/> <wire from="(150,1040)" to="(170,1040)"/> <wire from="(90,410)" to="(170,410)"/> <wire from="(470,410)" to="(480,410)"/> <wire from="(520,930)" to="(590,930)"/> <wire from="(210,280)" to="(350,280)"/> <wire from="(360,570)" to="(620,570)"/> <wire from="(600,420)" to="(600,470)"/> <wire from="(640,620)" to="(640,670)"/> <wire from="(630,410)" to="(640,410)"/> <wire from="(150,1040)" to="(150,1170)"/> <wire from="(230,960)" to="(230,1090)"/> <wire from="(380,870)" to="(380,1000)"/> <wire from="(450,780)" to="(450,910)"/> <wire from="(90,30)" to="(150,30)"/> <wire from="(310,320)" to="(310,450)"/> <wire from="(560,650)" to="(560,780)"/> <wire from="(430,600)" to="(600,600)"/> <wire from="(350,540)" to="(350,560)"/> <wire from="(470,880)" to="(640,880)"/> <wire from="(190,940)" to="(190,960)"/> <wire from="(470,930)" to="(470,1010)"/> <wire from="(190,310)" to="(230,310)"/> <wire from="(620,810)" to="(620,830)"/> <wire from="(360,720)" to="(400,720)"/> <wire from="(450,260)" to="(480,260)"/> <wire from="(310,450)" to="(330,450)"/> <wire from="(380,1000)" to="(400,1000)"/> <wire from="(560,1170)" to="(590,1170)"/> <wire from="(150,1170)" to="(170,1170)"/> <wire from="(90,540)" to="(170,540)"/> <wire from="(470,540)" to="(480,540)"/> <wire from="(520,1060)" to="(590,1060)"/> <wire from="(210,410)" to="(350,410)"/> <wire from="(640,750)" to="(640,800)"/> <wire from="(360,700)" to="(620,700)"/> <wire from="(600,550)" to="(600,600)"/> <wire from="(630,540)" to="(640,540)"/> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(630,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(630,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(670,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#BOUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(210,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(430,990)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(430,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,600)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,470)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(430,860)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLOAD"/> </comp> <comp lib="2" loc="(330,450)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(210,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,400)" name="D-latch"/> <comp lib="2" loc="(330,1100)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(330,970)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(430,340)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(520,920)" name="D-latch"/> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(520,530)" name="D-latch"/> <comp loc="(520,270)" name="D-latch"/> <comp lib="6" loc="(199,1250)" name="Text"> <a name="text" val="SAMPLE REGISTER"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="4" loc="(210,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="4" loc="(630,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCM"/> </comp> <comp lib="0" loc="(90,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BSTEP"/> </comp> <comp loc="(520,1050)" name="D-latch"/> <comp loc="(520,1180)" name="D-latch"/> <comp lib="4" loc="(210,260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,70)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(210,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,710)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(330,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="2" loc="(330,1230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(520,790)" name="D-latch"/> <comp lib="4" loc="(630,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(630,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(330,320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(430,1120)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(630,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,660)" name="D-latch"/> <comp lib="0" loc="(90,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(210,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(420,1190)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(430,1250)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(210,780)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="SPRITE_DMA"> <a name="circuit" val="SPRITE_DMA"/> <a name="clabel" val="SPRITE DMA"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M81,51 Q85,61 89,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b4ff58" height="550" stroke="#000000" stroke-width="2" width="520" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="189" y="83">DMCA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="120" y="67">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="66">14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="499">CPUA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="60" y="424">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="574">15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="204">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="344">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="273">DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="174">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="154">R/W(CPU)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="339" y="68">#DMC/AB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="68">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="464" y="68">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="74">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="134">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="365">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="405">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="558" y="214">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="556" y="364">15</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="514" y="292">ADDRESS BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="538" y="74">R/W EXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="553" y="114">WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="550" y="544">RDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="160" y="590">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="590">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="588">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="401" y="588">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="194" y="570">DMA DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="569">DMA DATA OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="281" y="540">SPRITE DMA BUFFER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="385">/DBGRD</text> <circ-port height="8" pin="90,80" width="8" x="46" y="66"/> <circ-port height="8" pin="90,110" width="8" x="46" y="86"/> <circ-port height="8" pin="90,20" width="8" x="46" y="106"/> <circ-port height="8" pin="90,50" width="8" x="46" y="126"/> <circ-port height="8" pin="90,150" width="8" x="46" y="356"/> <circ-port height="8" pin="90,510" width="8" x="46" y="396"/> <circ-port height="8" pin="90,330" width="8" x="46" y="196"/> <circ-port height="8" pin="90,350" width="8" x="46" y="216"/> <circ-port height="8" pin="90,370" width="8" x="46" y="236"/> <circ-port height="8" pin="90,390" width="8" x="46" y="256"/> <circ-port height="8" pin="90,410" width="8" x="46" y="276"/> <circ-port height="8" pin="90,430" width="8" x="46" y="296"/> <circ-port height="8" pin="90,450" width="8" x="46" y="316"/> <circ-port height="8" pin="90,470" width="8" x="46" y="336"/> <circ-port height="8" pin="90,820" width="8" x="456" y="46"/> <circ-port height="8" pin="90,840" width="8" x="396" y="46"/> <circ-port height="8" pin="90,930" width="8" x="336" y="46"/> <circ-port height="8" pin="90,230" width="8" x="46" y="146"/> <circ-port height="8" pin="90,600" width="8" x="46" y="166"/> <circ-port height="8" pin="90,970" width="8" x="46" y="416"/> <circ-port height="8" pin="90,990" width="8" x="46" y="426"/> <circ-port height="8" pin="90,1010" width="8" x="46" y="436"/> <circ-port height="8" pin="90,1030" width="8" x="46" y="446"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="456"/> <circ-port height="8" pin="90,1070" width="8" x="46" y="466"/> <circ-port height="8" pin="90,1090" width="8" x="46" y="476"/> <circ-port height="8" pin="90,1110" width="8" x="46" y="486"/> <circ-port height="8" pin="90,1130" width="8" x="46" y="496"/> <circ-port height="8" pin="90,1150" width="8" x="46" y="506"/> <circ-port height="8" pin="90,1170" width="8" x="46" y="516"/> <circ-port height="8" pin="90,1190" width="8" x="46" y="526"/> <circ-port height="8" pin="90,1210" width="8" x="46" y="536"/> <circ-port height="8" pin="90,1230" width="8" x="46" y="546"/> <circ-port height="8" pin="90,1250" width="8" x="46" y="556"/> <circ-port height="8" pin="90,1270" width="8" x="46" y="566"/> <circ-port height="8" pin="90,1310" width="8" x="116" y="46"/> <circ-port height="8" pin="90,1330" width="8" x="126" y="46"/> <circ-port height="8" pin="90,1350" width="8" x="136" y="46"/> <circ-port height="8" pin="90,1370" width="8" x="146" y="46"/> <circ-port height="8" pin="90,1390" width="8" x="156" y="46"/> <circ-port height="8" pin="90,1410" width="8" x="166" y="46"/> <circ-port height="8" pin="90,1430" width="8" x="176" y="46"/> <circ-port height="8" pin="90,1450" width="8" x="186" y="46"/> <circ-port height="8" pin="90,1470" width="8" x="196" y="46"/> <circ-port height="8" pin="90,1490" width="8" x="206" y="46"/> <circ-port height="8" pin="90,1510" width="8" x="216" y="46"/> <circ-port height="8" pin="90,1530" width="8" x="226" y="46"/> <circ-port height="8" pin="90,1550" width="8" x="236" y="46"/> <circ-port height="8" pin="90,1570" width="8" x="246" y="46"/> <circ-port height="8" pin="90,1590" width="8" x="256" y="46"/> <circ-port height="10" pin="1080,700" width="10" x="565" y="65"/> <circ-port height="10" pin="1080,640" width="10" x="565" y="105"/> <circ-port height="10" pin="1080,980" width="10" x="565" y="535"/> <circ-port height="10" pin="1080,1110" width="10" x="565" y="205"/> <circ-port height="10" pin="1080,1140" width="10" x="565" y="215"/> <circ-port height="10" pin="1080,1170" width="10" x="565" y="225"/> <circ-port height="10" pin="1080,1200" width="10" x="565" y="235"/> <circ-port height="10" pin="1080,1230" width="10" x="565" y="245"/> <circ-port height="10" pin="1080,1260" width="10" x="565" y="255"/> <circ-port height="10" pin="1080,1290" width="10" x="565" y="265"/> <circ-port height="10" pin="1080,1320" width="10" x="565" y="275"/> <circ-port height="10" pin="1080,1350" width="10" x="565" y="285"/> <circ-port height="10" pin="1080,1380" width="10" x="565" y="295"/> <circ-port height="10" pin="1080,1410" width="10" x="565" y="305"/> <circ-port height="10" pin="1080,1440" width="10" x="565" y="315"/> <circ-port height="10" pin="1080,1470" width="10" x="565" y="325"/> <circ-port height="10" pin="1080,1500" width="10" x="565" y="335"/> <circ-port height="10" pin="1080,1530" width="10" x="565" y="345"/> <circ-port height="10" pin="1080,1560" width="10" x="565" y="355"/> <circ-port height="10" pin="1080,130" width="10" x="325" y="595"/> <circ-port height="8" pin="1080,730" width="8" x="156" y="596"/> <circ-port height="10" pin="1080,190" width="10" x="335" y="595"/> <circ-port height="8" pin="1080,760" width="8" x="166" y="596"/> <circ-port height="10" pin="1080,250" width="10" x="345" y="595"/> <circ-port height="8" pin="1080,790" width="8" x="176" y="596"/> <circ-port height="10" pin="1080,310" width="10" x="355" y="595"/> <circ-port height="8" pin="1080,820" width="8" x="186" y="596"/> <circ-port height="10" pin="1080,370" width="10" x="365" y="595"/> <circ-port height="8" pin="1080,850" width="8" x="196" y="596"/> <circ-port height="10" pin="1080,430" width="10" x="375" y="595"/> <circ-port height="8" pin="1080,880" width="8" x="206" y="596"/> <circ-port height="10" pin="1080,490" width="10" x="385" y="595"/> <circ-port height="8" pin="1080,910" width="8" x="216" y="596"/> <circ-port height="10" pin="1080,550" width="10" x="395" y="595"/> <circ-port height="8" pin="1080,940" width="8" x="226" y="596"/> <circ-port height="8" pin="90,190" width="8" x="46" y="376"/> <circ-anchor facing="east" height="6" width="6" x="117" y="47"/> </appear> <wire from="(900,310)" to="(1080,310)"/> <wire from="(900,550)" to="(1080,550)"/> <wire from="(90,450)" to="(280,450)"/> <wire from="(470,460)" to="(530,460)"/> <wire from="(90,370)" to="(280,370)"/> <wire from="(680,1080)" to="(730,1080)"/> <wire from="(680,1320)" to="(730,1320)"/> <wire from="(130,1480)" to="(190,1480)"/> <wire from="(440,520)" to="(490,520)"/> <wire from="(130,1090)" to="(130,1100)"/> <wire from="(1020,730)" to="(1020,800)"/> <wire from="(90,1370)" to="(140,1370)"/> <wire from="(90,1530)" to="(140,1530)"/> <wire from="(630,1040)" to="(670,1040)"/> <wire from="(630,1280)" to="(670,1280)"/> <wire from="(450,1090)" to="(450,1110)"/> <wire from="(480,400)" to="(480,420)"/> <wire from="(1000,1380)" to="(1000,1530)"/> <wire from="(1070,1310)" to="(1070,1320)"/> <wire from="(90,970)" to="(190,970)"/> <wire from="(90,1450)" to="(190,1450)"/> <wire from="(800,110)" to="(820,110)"/> <wire from="(800,350)" to="(820,350)"/> <wire from="(860,490)" to="(880,490)"/> <wire from="(860,250)" to="(880,250)"/> <wire from="(440,620)" to="(470,620)"/> <wire from="(990,1560)" to="(1080,1560)"/> <wire from="(410,200)" to="(430,200)"/> <wire from="(990,1250)" to="(1020,1250)"/> <wire from="(210,1120)" to="(230,1120)"/> <wire from="(840,200)" to="(840,260)"/> <wire from="(840,440)" to="(840,500)"/> <wire from="(150,1350)" to="(150,1400)"/> <wire from="(440,800)" to="(450,800)"/> <wire from="(90,1230)" to="(170,1230)"/> <wire from="(90,1310)" to="(170,1310)"/> <wire from="(1050,1230)" to="(1080,1230)"/> <wire from="(180,1180)" to="(190,1180)"/> <wire from="(90,50)" to="(100,50)"/> <wire from="(120,1430)" to="(190,1430)"/> <wire from="(260,660)" to="(460,660)"/> <wire from="(1030,760)" to="(1080,760)"/> <wire from="(90,150)" to="(410,150)"/> <wire from="(470,430)" to="(530,430)"/> <wire from="(90,820)" to="(280,820)"/> <wire from="(680,1210)" to="(730,1210)"/> <wire from="(130,1130)" to="(190,1130)"/> <wire from="(730,1320)" to="(730,1460)"/> <wire from="(730,1080)" to="(730,1210)"/> <wire from="(1030,1350)" to="(1030,1440)"/> <wire from="(160,510)" to="(280,510)"/> <wire from="(1040,850)" to="(1040,880)"/> <wire from="(660,320)" to="(700,320)"/> <wire from="(670,1280)" to="(670,1310)"/> <wire from="(1020,1140)" to="(1080,1140)"/> <wire from="(670,1040)" to="(670,1070)"/> <wire from="(340,1510)" to="(770,1510)"/> <wire from="(140,1070)" to="(140,1090)"/> <wire from="(1040,1200)" to="(1040,1270)"/> <wire from="(720,130)" to="(820,130)"/> <wire from="(490,380)" to="(490,410)"/> <wire from="(90,1510)" to="(130,1510)"/> <wire from="(440,500)" to="(480,500)"/> <wire from="(160,1510)" to="(190,1510)"/> <wire from="(120,880)" to="(280,880)"/> <wire from="(190,230)" to="(350,230)"/> <wire from="(730,1210)" to="(730,1320)"/> <wire from="(500,490)" to="(530,490)"/> <wire from="(1070,1320)" to="(1080,1320)"/> <wire from="(800,290)" to="(800,350)"/> <wire from="(680,90)" to="(680,660)"/> <wire from="(890,380)" to="(890,440)"/> <wire from="(890,140)" to="(890,200)"/> <wire from="(1050,640)" to="(1080,640)"/> <wire from="(270,280)" to="(280,280)"/> <wire from="(110,1460)" to="(190,1460)"/> <wire from="(90,20)" to="(100,20)"/> <wire from="(750,320)" to="(750,370)"/> <wire from="(90,110)" to="(800,110)"/> <wire from="(90,1210)" to="(160,1210)"/> <wire from="(1030,760)" to="(1030,810)"/> <wire from="(990,1300)" to="(1070,1300)"/> <wire from="(160,1330)" to="(160,1390)"/> <wire from="(900,250)" to="(1080,250)"/> <wire from="(900,490)" to="(1080,490)"/> <wire from="(90,390)" to="(280,390)"/> <wire from="(90,470)" to="(280,470)"/> <wire from="(720,350)" to="(720,550)"/> <wire from="(130,1100)" to="(190,1100)"/> <wire from="(130,1420)" to="(190,1420)"/> <wire from="(440,380)" to="(490,380)"/> <wire from="(480,420)" to="(530,420)"/> <wire from="(160,800)" to="(280,800)"/> <wire from="(1060,1320)" to="(1060,1350)"/> <wire from="(90,1070)" to="(140,1070)"/> <wire from="(230,1210)" to="(660,1210)"/> <wire from="(990,1260)" to="(1030,1260)"/> <wire from="(670,1120)" to="(670,1200)"/> <wire from="(150,1050)" to="(150,1080)"/> <wire from="(800,530)" to="(820,530)"/> <wire from="(90,1410)" to="(120,1410)"/> <wire from="(800,290)" to="(820,290)"/> <wire from="(90,1490)" to="(120,1490)"/> <wire from="(860,430)" to="(880,430)"/> <wire from="(160,1160)" to="(190,1160)"/> <wire from="(860,190)" to="(880,190)"/> <wire from="(670,1410)" to="(670,1450)"/> <wire from="(1050,1230)" to="(1050,1280)"/> <wire from="(450,1410)" to="(670,1410)"/> <wire from="(440,480)" to="(470,480)"/> <wire from="(990,1390)" to="(990,1560)"/> <wire from="(1070,1290)" to="(1080,1290)"/> <wire from="(720,290)" to="(740,290)"/> <wire from="(640,680)" to="(1050,680)"/> <wire from="(500,360)" to="(500,400)"/> <wire from="(840,140)" to="(840,200)"/> <wire from="(840,380)" to="(840,440)"/> <wire from="(260,1170)" to="(400,1170)"/> <wire from="(90,1010)" to="(170,1010)"/> <wire from="(1050,850)" to="(1080,850)"/> <wire from="(260,930)" to="(260,1170)"/> <wire from="(440,320)" to="(520,320)"/> <wire from="(210,1460)" to="(660,1460)"/> <wire from="(1060,1350)" to="(1080,1350)"/> <wire from="(620,980)" to="(1080,980)"/> <wire from="(90,840)" to="(280,840)"/> <wire from="(90,1190)" to="(150,1190)"/> <wire from="(170,1310)" to="(170,1380)"/> <wire from="(90,1350)" to="(150,1350)"/> <wire from="(610,1320)" to="(660,1320)"/> <wire from="(1040,880)" to="(1080,880)"/> <wire from="(110,1460)" to="(110,1470)"/> <wire from="(1040,1200)" to="(1080,1200)"/> <wire from="(480,470)" to="(530,470)"/> <wire from="(140,1090)" to="(190,1090)"/> <wire from="(140,1410)" to="(190,1410)"/> <wire from="(140,1490)" to="(190,1490)"/> <wire from="(460,450)" to="(460,460)"/> <wire from="(1040,790)" to="(1040,820)"/> <wire from="(470,460)" to="(470,480)"/> <wire from="(120,1470)" to="(120,1490)"/> <wire from="(720,310)" to="(820,310)"/> <wire from="(720,550)" to="(820,550)"/> <wire from="(480,470)" to="(480,500)"/> <wire from="(730,1320)" to="(970,1320)"/> <wire from="(130,1480)" to="(130,1510)"/> <wire from="(240,720)" to="(280,720)"/> <wire from="(720,130)" to="(720,280)"/> <wire from="(490,410)" to="(530,410)"/> <wire from="(160,510)" to="(160,800)"/> <wire from="(440,600)" to="(530,600)"/> <wire from="(440,440)" to="(530,440)"/> <wire from="(140,230)" to="(170,230)"/> <wire from="(1030,860)" to="(1030,910)"/> <wire from="(180,680)" to="(180,780)"/> <wire from="(440,460)" to="(460,460)"/> <wire from="(160,1030)" to="(160,1070)"/> <wire from="(140,1490)" to="(140,1530)"/> <wire from="(430,1090)" to="(450,1090)"/> <wire from="(450,1110)" to="(470,1110)"/> <wire from="(730,490)" to="(820,490)"/> <wire from="(90,1470)" to="(110,1470)"/> <wire from="(490,480)" to="(490,520)"/> <wire from="(340,1020)" to="(340,1510)"/> <wire from="(800,230)" to="(800,290)"/> <wire from="(800,470)" to="(800,530)"/> <wire from="(890,320)" to="(890,380)"/> <wire from="(750,370)" to="(820,370)"/> <wire from="(150,1500)" to="(150,1550)"/> <wire from="(890,560)" to="(890,620)"/> <wire from="(1050,1380)" to="(1080,1380)"/> <wire from="(1050,820)" to="(1080,820)"/> <wire from="(1010,1110)" to="(1080,1110)"/> <wire from="(500,490)" to="(500,540)"/> <wire from="(510,340)" to="(510,390)"/> <wire from="(140,860)" to="(280,860)"/> <wire from="(450,1170)" to="(450,1410)"/> <wire from="(1050,640)" to="(1050,680)"/> <wire from="(1020,810)" to="(1030,810)"/> <wire from="(740,190)" to="(820,190)"/> <wire from="(90,510)" to="(160,510)"/> <wire from="(510,500)" to="(510,560)"/> <wire from="(740,430)" to="(820,430)"/> <wire from="(470,620)" to="(470,680)"/> <wire from="(1020,1360)" to="(1020,1470)"/> <wire from="(160,1510)" to="(160,1570)"/> <wire from="(680,660)" to="(990,660)"/> <wire from="(900,190)" to="(1080,190)"/> <wire from="(990,1270)" to="(1040,1270)"/> <wire from="(900,430)" to="(1080,430)"/> <wire from="(90,330)" to="(280,330)"/> <wire from="(90,410)" to="(280,410)"/> <wire from="(170,1520)" to="(170,1590)"/> <wire from="(830,620)" to="(890,620)"/> <wire from="(120,1120)" to="(120,1130)"/> <wire from="(110,1430)" to="(110,1440)"/> <wire from="(1040,1410)" to="(1080,1410)"/> <wire from="(1020,730)" to="(1080,730)"/> <wire from="(440,770)" to="(620,770)"/> <wire from="(140,1140)" to="(190,1140)"/> <wire from="(1010,1110)" to="(1010,1240)"/> <wire from="(1060,1260)" to="(1060,1290)"/> <wire from="(520,510)" to="(520,580)"/> <wire from="(90,1170)" to="(140,1170)"/> <wire from="(840,560)" to="(840,590)"/> <wire from="(130,1130)" to="(130,1150)"/> <wire from="(340,1020)" to="(770,1020)"/> <wire from="(530,520)" to="(530,600)"/> <wire from="(150,1080)" to="(190,1080)"/> <wire from="(150,1400)" to="(190,1400)"/> <wire from="(120,600)" to="(120,880)"/> <wire from="(140,1140)" to="(140,1170)"/> <wire from="(1030,910)" to="(1080,910)"/> <wire from="(430,1120)" to="(470,1120)"/> <wire from="(180,780)" to="(280,780)"/> <wire from="(800,470)" to="(820,470)"/> <wire from="(800,230)" to="(820,230)"/> <wire from="(860,370)" to="(880,370)"/> <wire from="(860,130)" to="(880,130)"/> <wire from="(1050,1330)" to="(1050,1380)"/> <wire from="(1020,850)" to="(1040,850)"/> <wire from="(440,420)" to="(470,420)"/> <wire from="(500,400)" to="(530,400)"/> <wire from="(770,1020)" to="(770,1510)"/> <wire from="(720,300)" to="(750,300)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(150,1150)" to="(150,1190)"/> <wire from="(510,500)" to="(530,500)"/> <wire from="(260,620)" to="(260,660)"/> <wire from="(1020,840)" to="(1050,840)"/> <wire from="(740,330)" to="(740,430)"/> <wire from="(450,1130)" to="(450,1170)"/> <wire from="(170,1520)" to="(190,1520)"/> <wire from="(160,1160)" to="(160,1210)"/> <wire from="(840,320)" to="(840,380)"/> <wire from="(170,1010)" to="(170,1060)"/> <wire from="(90,1590)" to="(170,1590)"/> <wire from="(520,320)" to="(520,380)"/> <wire from="(440,580)" to="(520,580)"/> <wire from="(120,1470)" to="(190,1470)"/> <wire from="(1020,860)" to="(1030,860)"/> <wire from="(830,590)" to="(840,590)"/> <wire from="(460,450)" to="(530,450)"/> <wire from="(170,1170)" to="(170,1230)"/> <wire from="(440,360)" to="(500,360)"/> <wire from="(180,1180)" to="(180,1250)"/> <wire from="(90,1050)" to="(150,1050)"/> <wire from="(1020,940)" to="(1080,940)"/> <wire from="(190,1190)" to="(190,1270)"/> <wire from="(120,1410)" to="(120,1430)"/> <wire from="(460,660)" to="(460,740)"/> <wire from="(90,1150)" to="(130,1150)"/> <wire from="(1050,820)" to="(1050,830)"/> <wire from="(90,1390)" to="(130,1390)"/> <wire from="(1030,1440)" to="(1080,1440)"/> <wire from="(440,300)" to="(530,300)"/> <wire from="(160,1070)" to="(190,1070)"/> <wire from="(160,1390)" to="(190,1390)"/> <wire from="(1020,1140)" to="(1020,1250)"/> <wire from="(120,600)" to="(280,600)"/> <wire from="(1020,820)" to="(1040,820)"/> <wire from="(90,600)" to="(120,600)"/> <wire from="(420,1170)" to="(450,1170)"/> <wire from="(90,990)" to="(180,990)"/> <wire from="(260,620)" to="(280,620)"/> <wire from="(330,210)" to="(350,210)"/> <wire from="(510,390)" to="(530,390)"/> <wire from="(450,1130)" to="(470,1130)"/> <wire from="(170,1170)" to="(190,1170)"/> <wire from="(800,170)" to="(800,230)"/> <wire from="(800,410)" to="(800,470)"/> <wire from="(890,260)" to="(890,320)"/> <wire from="(890,500)" to="(890,560)"/> <wire from="(120,1120)" to="(190,1120)"/> <wire from="(90,1570)" to="(160,1570)"/> <wire from="(90,1330)" to="(160,1330)"/> <wire from="(440,560)" to="(510,560)"/> <wire from="(1060,1260)" to="(1080,1260)"/> <wire from="(180,990)" to="(180,1050)"/> <wire from="(900,130)" to="(1080,130)"/> <wire from="(900,370)" to="(1080,370)"/> <wire from="(660,320)" to="(660,840)"/> <wire from="(90,430)" to="(280,430)"/> <wire from="(90,350)" to="(280,350)"/> <wire from="(680,1460)" to="(730,1460)"/> <wire from="(1040,790)" to="(1080,790)"/> <wire from="(1020,870)" to="(1020,940)"/> <wire from="(990,1280)" to="(1050,1280)"/> <wire from="(1010,1370)" to="(1010,1500)"/> <wire from="(530,300)" to="(530,370)"/> <wire from="(90,230)" to="(140,230)"/> <wire from="(470,190)" to="(640,190)"/> <wire from="(1020,1470)" to="(1080,1470)"/> <wire from="(90,930)" to="(260,930)"/> <wire from="(410,150)" to="(410,180)"/> <wire from="(1070,1290)" to="(1070,1300)"/> <wire from="(550,1080)" to="(660,1080)"/> <wire from="(150,1500)" to="(190,1500)"/> <wire from="(620,770)" to="(620,980)"/> <wire from="(130,1390)" to="(130,1420)"/> <wire from="(180,680)" to="(470,680)"/> <wire from="(90,1110)" to="(190,1110)"/> <wire from="(90,1270)" to="(190,1270)"/> <wire from="(1030,1170)" to="(1080,1170)"/> <wire from="(230,1120)" to="(230,1210)"/> <wire from="(490,480)" to="(530,480)"/> <wire from="(800,410)" to="(820,410)"/> <wire from="(800,170)" to="(820,170)"/> <wire from="(860,310)" to="(880,310)"/> <wire from="(860,550)" to="(880,550)"/> <wire from="(640,190)" to="(640,680)"/> <wire from="(90,1130)" to="(120,1130)"/> <wire from="(990,1240)" to="(1010,1240)"/> <wire from="(660,840)" to="(1000,840)"/> <wire from="(720,330)" to="(740,330)"/> <wire from="(410,220)" to="(620,220)"/> <wire from="(510,1120)" to="(670,1120)"/> <wire from="(720,320)" to="(750,320)"/> <wire from="(410,180)" to="(430,180)"/> <wire from="(1010,1500)" to="(1080,1500)"/> <wire from="(90,190)" to="(430,190)"/> <wire from="(550,530)" to="(550,1080)"/> <wire from="(170,1060)" to="(190,1060)"/> <wire from="(170,1380)" to="(190,1380)"/> <wire from="(740,190)" to="(740,290)"/> <wire from="(840,500)" to="(840,560)"/> <wire from="(840,260)" to="(840,320)"/> <wire from="(190,1530)" to="(190,1580)"/> <wire from="(140,230)" to="(140,860)"/> <wire from="(990,90)" to="(990,660)"/> <wire from="(990,1320)" to="(1060,1320)"/> <wire from="(240,740)" to="(250,740)"/> <wire from="(750,250)" to="(750,300)"/> <wire from="(720,340)" to="(730,340)"/> <wire from="(620,700)" to="(1080,700)"/> <wire from="(520,380)" to="(530,380)"/> <wire from="(990,1310)" to="(1070,1310)"/> <wire from="(680,90)" to="(990,90)"/> <wire from="(990,1340)" to="(1040,1340)"/> <wire from="(440,540)" to="(500,540)"/> <wire from="(190,970)" to="(190,1040)"/> <wire from="(90,1550)" to="(150,1550)"/> <wire from="(1030,1170)" to="(1030,1260)"/> <wire from="(990,1330)" to="(1050,1330)"/> <wire from="(470,420)" to="(470,430)"/> <wire from="(410,200)" to="(410,220)"/> <wire from="(1040,1340)" to="(1040,1410)"/> <wire from="(990,1350)" to="(1030,1350)"/> <wire from="(90,1090)" to="(130,1090)"/> <wire from="(1050,840)" to="(1050,850)"/> <wire from="(150,1150)" to="(190,1150)"/> <wire from="(240,760)" to="(280,760)"/> <wire from="(730,340)" to="(730,490)"/> <wire from="(440,400)" to="(480,400)"/> <wire from="(990,1370)" to="(1010,1370)"/> <wire from="(90,1250)" to="(180,1250)"/> <wire from="(620,220)" to="(620,700)"/> <wire from="(140,1370)" to="(140,1410)"/> <wire from="(440,740)" to="(460,740)"/> <wire from="(990,1360)" to="(1020,1360)"/> <wire from="(1020,830)" to="(1050,830)"/> <wire from="(90,1430)" to="(110,1430)"/> <wire from="(800,110)" to="(800,170)"/> <wire from="(800,350)" to="(800,410)"/> <wire from="(890,200)" to="(890,260)"/> <wire from="(750,250)" to="(820,250)"/> <wire from="(440,830)" to="(450,830)"/> <wire from="(890,440)" to="(890,500)"/> <wire from="(110,1440)" to="(190,1440)"/> <wire from="(270,740)" to="(280,740)"/> <wire from="(990,1290)" to="(1060,1290)"/> <wire from="(180,1050)" to="(190,1050)"/> <wire from="(90,80)" to="(100,80)"/> <wire from="(990,1380)" to="(1000,1380)"/> <wire from="(90,1030)" to="(160,1030)"/> <wire from="(440,340)" to="(510,340)"/> <wire from="(520,510)" to="(530,510)"/> <wire from="(1000,1530)" to="(1080,1530)"/> <comp lib="0" loc="(90,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA2"/> </comp> <comp lib="1" loc="(680,1460)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(680,1080)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(510,1120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(860,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(900,490)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(630,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="6" loc="(594,1345)" name="Text"> <a name="text" val="0010000000000100"/> </comp> <comp lib="0" loc="(90,1470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC8"/> </comp> <comp lib="0" loc="(1080,880)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA1"/> </comp> <comp lib="0" loc="(970,1320)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(550,530)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="4" loc="(860,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(860,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(350,710)" name="DMA_CONTROL"/> <comp lib="0" loc="(1080,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R/W (to R/W ic pin)"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(551,1497)" name="Text"> <a name="text" val="ADDRESS MUX"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(190,1580)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(100,50)" name="Tunnel"> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1080,820)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(430,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(1080,730)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC11"/> </comp> <comp lib="0" loc="(1080,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBGRD"/> </comp> <comp lib="1" loc="(680,1320)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC13"/> </comp> <comp lib="0" loc="(210,1460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(90,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC3"/> </comp> <comp lib="0" loc="(1080,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A15"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC9"/> </comp> <comp lib="0" loc="(1080,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA11"/> </comp> <comp lib="0" loc="(1080,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA3"/> </comp> <comp lib="0" loc="(1080,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(330,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="1" loc="(900,250)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,20)" name="Tunnel"> <a name="label" val="/ACLK2"/> </comp> <comp lib="6" loc="(489,1094)" name="Text"> <a name="text" val="NOR1"/> </comp> <comp lib="0" loc="(1080,1170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(408,1158)" name="Text"> <a name="text" val="INV1"/> </comp> <comp lib="0" loc="(610,1320)" name="Constant"> <a name="width" val="16"/> <a name="value" val="0x2004"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="4" loc="(860,470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(900,550)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA14"/> </comp> <comp lib="0" loc="(1080,940)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1000,840)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="0" loc="(1080,760)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,80)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(630,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W (CPU)"/> </comp> <comp lib="0" loc="(1080,1500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,830)" name="Tunnel"> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(90,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC12"/> </comp> <comp lib="0" loc="(90,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA6"/> </comp> <comp lib="1" loc="(900,190)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(830,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/CPU"/> </comp> <comp lib="0" loc="(1080,790)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(841,72)" name="Text"> <a name="text" val="If /R4015 (read 4015) then disable data buffer (2a03 databus become Z)"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1080,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#DMC/AB"/> </comp> <comp lib="0" loc="(210,1120)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1080,910)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA0"/> </comp> <comp lib="1" loc="(470,190)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(450,800)" name="Tunnel"> <a name="label" val="SPR/PPU"/> </comp> <comp lib="0" loc="(90,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC14"/> </comp> <comp lib="0" loc="(90,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC10"/> </comp> <comp lib="4" loc="(860,350)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1080,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA10"/> </comp> <comp lib="0" loc="(1080,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC0"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC RDY"/> </comp> <comp lib="0" loc="(1080,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,1470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA13"/> </comp> <comp lib="1" loc="(900,430)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1080,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA7"/> </comp> <comp lib="0" loc="(90,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC1"/> </comp> <comp lib="0" loc="(1080,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A14"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(270,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA15"/> </comp> <comp lib="0" loc="(1080,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(90,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA8"/> </comp> <comp lib="0" loc="(270,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1080,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1080,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC7"/> </comp> <comp lib="0" loc="(1080,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA12"/> </comp> <comp lib="6" loc="(590,1358)" name="Text"> <a name="text" val="$2004"/> </comp> <comp lib="1" loc="(190,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(860,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1080,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="0" loc="(90,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA5"/> </comp> <comp lib="0" loc="(240,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,1410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC5"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(1080,850)" name="Pin"> <a name="facing" val="west"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(834,653)" name="Text"> <a name="text" val="SPRITE DMA BUFFER"/> <a name="font" val="SansSerif plain 16"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA4"/> </comp> <comp lib="0" loc="(1080,1380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A9"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,260)" name="DMA_ADDRESS_COUNTER"/> <comp lib="1" loc="(900,370)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,1320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC6"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(900,310)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(430,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR/PPU"/> </comp> <comp lib="0" loc="(1080,1200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CPUA9"/> </comp> <comp lib="0" loc="(90,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(1080,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(680,1210)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(90,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="4" loc="(860,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC2"/> </comp> <comp lib="1" loc="(420,1170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(240,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ACLK2"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMC4"/> </comp> <comp lib="1" loc="(900,130)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="4" loc="(860,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DMA_ADDRESS_COUNTER"> <a name="circuit" val="DMA_ADDRESS_COUNTER"/> <a name="clabel" val="DMA ADDRESS COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M150,71 Q154,81 158,71" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b2ff43" height="380" stroke="#000000" stroke-width="2" width="160" x="100" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="128" y="324">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="144">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="164">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="184">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="224">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="244">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="264">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="120" y="414">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="124" y="435">SPRS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="434">SPRE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="114">SPRA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="135">SPRA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="155">SPRA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="175">SPRA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="194">SPRA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="215">SPRA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="235">SPRA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="255">SPRA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="274">SPRA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="294">SPRA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="315">SPRA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="334">SPRA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="354">SPRA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="374">SPRA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="394">SPRA14</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="414">SPRA15</text> <circ-port height="8" pin="90,60" width="8" x="96" y="86"/> <circ-port height="8" pin="90,140" width="8" x="96" y="426"/> <circ-port height="8" pin="90,220" width="8" x="96" y="316"/> <circ-port height="8" pin="90,180" width="8" x="96" y="406"/> <circ-port height="8" pin="90,1250" width="8" x="96" y="136"/> <circ-port height="8" pin="90,1320" width="8" x="96" y="156"/> <circ-port height="8" pin="90,1390" width="8" x="96" y="176"/> <circ-port height="8" pin="90,1460" width="8" x="96" y="196"/> <circ-port height="8" pin="90,1530" width="8" x="96" y="216"/> <circ-port height="8" pin="90,1600" width="8" x="96" y="236"/> <circ-port height="8" pin="90,1670" width="8" x="96" y="256"/> <circ-port height="8" pin="90,1740" width="8" x="96" y="276"/> <circ-port height="10" pin="540,110" width="10" x="255" y="105"/> <circ-port height="10" pin="540,250" width="10" x="255" y="125"/> <circ-port height="10" pin="540,390" width="10" x="255" y="145"/> <circ-port height="10" pin="540,530" width="10" x="255" y="165"/> <circ-port height="10" pin="540,670" width="10" x="255" y="185"/> <circ-port height="10" pin="540,810" width="10" x="255" y="205"/> <circ-port height="10" pin="540,950" width="10" x="255" y="225"/> <circ-port height="10" pin="540,1090" width="10" x="255" y="245"/> <circ-port height="10" pin="530,1230" width="10" x="255" y="265"/> <circ-port height="10" pin="530,1300" width="10" x="255" y="285"/> <circ-port height="10" pin="530,1370" width="10" x="255" y="305"/> <circ-port height="10" pin="530,1440" width="10" x="255" y="325"/> <circ-port height="10" pin="530,1510" width="10" x="255" y="345"/> <circ-port height="10" pin="530,1580" width="10" x="255" y="365"/> <circ-port height="10" pin="530,1650" width="10" x="255" y="385"/> <circ-port height="10" pin="530,1720" width="10" x="255" y="405"/> <circ-port height="10" pin="530,1770" width="10" x="255" y="425"/> <circ-anchor facing="east" height="6" width="6" x="177" y="67"/> </appear> <wire from="(290,1000)" to="(350,1000)"/> <wire from="(290,440)" to="(350,440)"/> <wire from="(130,60)" to="(450,60)"/> <wire from="(130,1440)" to="(130,1510)"/> <wire from="(90,1600)" to="(150,1600)"/> <wire from="(170,1610)" to="(170,1620)"/> <wire from="(450,270)" to="(450,410)"/> <wire from="(450,830)" to="(450,970)"/> <wire from="(220,280)" to="(220,420)"/> <wire from="(220,840)" to="(220,980)"/> <wire from="(320,790)" to="(430,790)"/> <wire from="(320,230)" to="(430,230)"/> <wire from="(310,390)" to="(310,420)"/> <wire from="(240,920)" to="(530,920)"/> <wire from="(310,950)" to="(310,980)"/> <wire from="(170,1620)" to="(210,1620)"/> <wire from="(240,360)" to="(530,360)"/> <wire from="(220,1120)" to="(250,1120)"/> <wire from="(220,560)" to="(250,560)"/> <wire from="(290,560)" to="(310,560)"/> <wire from="(290,1120)" to="(310,1120)"/> <wire from="(420,1170)" to="(440,1170)"/> <wire from="(430,750)" to="(430,790)"/> <wire from="(430,190)" to="(430,230)"/> <wire from="(130,1440)" to="(150,1440)"/> <wire from="(190,1510)" to="(530,1510)"/> <wire from="(240,1000)" to="(250,1000)"/> <wire from="(160,200)" to="(170,200)"/> <wire from="(240,440)" to="(250,440)"/> <wire from="(320,1120)" to="(320,1180)"/> <wire from="(320,560)" to="(320,620)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(240,160)" to="(240,220)"/> <wire from="(320,840)" to="(380,840)"/> <wire from="(320,280)" to="(380,280)"/> <wire from="(130,1650)" to="(130,1720)"/> <wire from="(210,1410)" to="(210,1480)"/> <wire from="(90,1250)" to="(150,1250)"/> <wire from="(280,870)" to="(280,1010)"/> <wire from="(280,310)" to="(280,450)"/> <wire from="(420,710)" to="(470,710)"/> <wire from="(420,150)" to="(470,150)"/> <wire from="(170,1260)" to="(170,1270)"/> <wire from="(160,1170)" to="(210,1170)"/> <wire from="(530,290)" to="(530,360)"/> <wire from="(530,850)" to="(530,920)"/> <wire from="(280,170)" to="(280,190)"/> <wire from="(350,160)" to="(350,180)"/> <wire from="(350,720)" to="(350,740)"/> <wire from="(170,1270)" to="(210,1270)"/> <wire from="(310,250)" to="(540,250)"/> <wire from="(310,810)" to="(540,810)"/> <wire from="(510,990)" to="(530,990)"/> <wire from="(350,580)" to="(380,580)"/> <wire from="(350,740)" to="(380,740)"/> <wire from="(350,180)" to="(380,180)"/> <wire from="(350,1140)" to="(380,1140)"/> <wire from="(210,1170)" to="(210,1270)"/> <wire from="(360,760)" to="(380,760)"/> <wire from="(320,1040)" to="(340,1040)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(320,480)" to="(340,480)"/> <wire from="(450,130)" to="(470,130)"/> <wire from="(450,690)" to="(470,690)"/> <wire from="(510,430)" to="(530,430)"/> <wire from="(130,1650)" to="(150,1650)"/> <wire from="(190,1720)" to="(530,1720)"/> <wire from="(420,190)" to="(430,190)"/> <wire from="(420,750)" to="(430,750)"/> <wire from="(200,190)" to="(280,190)"/> <wire from="(320,930)" to="(320,980)"/> <wire from="(320,370)" to="(320,420)"/> <wire from="(290,300)" to="(350,300)"/> <wire from="(290,860)" to="(350,860)"/> <wire from="(130,1300)" to="(130,1370)"/> <wire from="(210,1620)" to="(210,1690)"/> <wire from="(90,1460)" to="(150,1460)"/> <wire from="(170,1470)" to="(170,1480)"/> <wire from="(450,130)" to="(450,270)"/> <wire from="(450,690)" to="(450,830)"/> <wire from="(220,700)" to="(220,840)"/> <wire from="(220,140)" to="(220,280)"/> <wire from="(320,650)" to="(430,650)"/> <wire from="(310,250)" to="(310,280)"/> <wire from="(240,780)" to="(530,780)"/> <wire from="(310,810)" to="(310,840)"/> <wire from="(170,1480)" to="(210,1480)"/> <wire from="(240,220)" to="(530,220)"/> <wire from="(220,420)" to="(250,420)"/> <wire from="(220,980)" to="(250,980)"/> <wire from="(290,980)" to="(310,980)"/> <wire from="(290,420)" to="(310,420)"/> <wire from="(90,220)" to="(110,220)"/> <wire from="(430,610)" to="(430,650)"/> <wire from="(130,1300)" to="(150,1300)"/> <wire from="(190,1370)" to="(530,1370)"/> <wire from="(240,860)" to="(250,860)"/> <wire from="(240,300)" to="(250,300)"/> <wire from="(240,1140)" to="(240,1200)"/> <wire from="(320,420)" to="(320,480)"/> <wire from="(320,980)" to="(320,1040)"/> <wire from="(240,580)" to="(240,640)"/> <wire from="(320,140)" to="(380,140)"/> <wire from="(320,700)" to="(380,700)"/> <wire from="(130,1510)" to="(130,1580)"/> <wire from="(210,1270)" to="(210,1340)"/> <wire from="(90,1670)" to="(150,1670)"/> <wire from="(280,730)" to="(280,870)"/> <wire from="(160,200)" to="(160,1170)"/> <wire from="(420,1130)" to="(470,1130)"/> <wire from="(420,570)" to="(470,570)"/> <wire from="(170,1680)" to="(170,1690)"/> <wire from="(280,1150)" to="(280,1160)"/> <wire from="(530,150)" to="(530,220)"/> <wire from="(530,710)" to="(530,780)"/> <wire from="(350,580)" to="(350,600)"/> <wire from="(350,1140)" to="(350,1160)"/> <wire from="(170,1690)" to="(210,1690)"/> <wire from="(310,110)" to="(540,110)"/> <wire from="(310,670)" to="(540,670)"/> <wire from="(510,850)" to="(530,850)"/> <wire from="(350,1000)" to="(380,1000)"/> <wire from="(350,1160)" to="(380,1160)"/> <wire from="(350,440)" to="(380,440)"/> <wire from="(350,600)" to="(380,600)"/> <wire from="(320,340)" to="(340,340)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(320,900)" to="(340,900)"/> <wire from="(360,1180)" to="(380,1180)"/> <wire from="(450,550)" to="(470,550)"/> <wire from="(510,290)" to="(530,290)"/> <wire from="(450,1110)" to="(470,1110)"/> <wire from="(130,1510)" to="(150,1510)"/> <wire from="(190,1580)" to="(530,1580)"/> <wire from="(420,610)" to="(430,610)"/> <wire from="(90,180)" to="(170,180)"/> <wire from="(320,230)" to="(320,280)"/> <wire from="(320,790)" to="(320,840)"/> <wire from="(290,720)" to="(350,720)"/> <wire from="(290,160)" to="(350,160)"/> <wire from="(210,1480)" to="(210,1550)"/> <wire from="(90,1320)" to="(150,1320)"/> <wire from="(170,1330)" to="(170,1340)"/> <wire from="(450,550)" to="(450,690)"/> <wire from="(220,560)" to="(220,700)"/> <wire from="(320,510)" to="(430,510)"/> <wire from="(320,1070)" to="(430,1070)"/> <wire from="(90,60)" to="(130,60)"/> <wire from="(310,110)" to="(310,140)"/> <wire from="(240,640)" to="(530,640)"/> <wire from="(240,1200)" to="(530,1200)"/> <wire from="(310,670)" to="(310,700)"/> <wire from="(170,1340)" to="(210,1340)"/> <wire from="(220,840)" to="(250,840)"/> <wire from="(220,280)" to="(250,280)"/> <wire from="(440,1770)" to="(530,1770)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(290,840)" to="(310,840)"/> <wire from="(430,470)" to="(430,510)"/> <wire from="(130,1720)" to="(150,1720)"/> <wire from="(430,1030)" to="(430,1070)"/> <wire from="(190,1230)" to="(530,1230)"/> <wire from="(240,720)" to="(250,720)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(320,280)" to="(320,340)"/> <wire from="(240,1000)" to="(240,1060)"/> <wire from="(320,840)" to="(320,900)"/> <wire from="(280,190)" to="(280,310)"/> <wire from="(240,440)" to="(240,500)"/> <wire from="(320,560)" to="(380,560)"/> <wire from="(320,1120)" to="(380,1120)"/> <wire from="(210,1690)" to="(210,1760)"/> <wire from="(130,1370)" to="(130,1440)"/> <wire from="(90,1530)" to="(150,1530)"/> <wire from="(280,590)" to="(280,730)"/> <wire from="(420,430)" to="(470,430)"/> <wire from="(420,990)" to="(470,990)"/> <wire from="(170,1540)" to="(170,1550)"/> <wire from="(530,570)" to="(530,640)"/> <wire from="(530,1130)" to="(530,1200)"/> <wire from="(110,200)" to="(160,200)"/> <wire from="(350,1000)" to="(350,1020)"/> <wire from="(350,440)" to="(350,460)"/> <wire from="(110,200)" to="(110,220)"/> <wire from="(170,1550)" to="(210,1550)"/> <wire from="(130,60)" to="(130,90)"/> <wire from="(310,530)" to="(540,530)"/> <wire from="(310,1090)" to="(540,1090)"/> <wire from="(510,710)" to="(530,710)"/> <wire from="(350,300)" to="(380,300)"/> <wire from="(350,460)" to="(380,460)"/> <wire from="(350,860)" to="(380,860)"/> <wire from="(350,1020)" to="(380,1020)"/> <wire from="(320,200)" to="(340,200)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(320,760)" to="(340,760)"/> <wire from="(360,1040)" to="(380,1040)"/> <wire from="(450,410)" to="(470,410)"/> <wire from="(450,970)" to="(470,970)"/> <wire from="(510,150)" to="(530,150)"/> <wire from="(130,1370)" to="(150,1370)"/> <wire from="(190,1440)" to="(530,1440)"/> <wire from="(420,1030)" to="(430,1030)"/> <wire from="(420,470)" to="(430,470)"/> <wire from="(320,90)" to="(320,140)"/> <wire from="(320,650)" to="(320,700)"/> <wire from="(290,1140)" to="(350,1140)"/> <wire from="(290,580)" to="(350,580)"/> <wire from="(450,60)" to="(450,130)"/> <wire from="(130,1580)" to="(130,1650)"/> <wire from="(210,1340)" to="(210,1410)"/> <wire from="(90,1740)" to="(150,1740)"/> <wire from="(170,1750)" to="(170,1760)"/> <wire from="(450,410)" to="(450,550)"/> <wire from="(450,970)" to="(450,1110)"/> <wire from="(220,420)" to="(220,560)"/> <wire from="(220,980)" to="(220,1120)"/> <wire from="(320,930)" to="(430,930)"/> <wire from="(320,370)" to="(430,370)"/> <wire from="(310,530)" to="(310,560)"/> <wire from="(240,1060)" to="(530,1060)"/> <wire from="(240,500)" to="(530,500)"/> <wire from="(310,1090)" to="(310,1120)"/> <wire from="(170,1760)" to="(210,1760)"/> <wire from="(440,1170)" to="(440,1770)"/> <wire from="(220,140)" to="(250,140)"/> <wire from="(220,700)" to="(250,700)"/> <wire from="(290,700)" to="(310,700)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(430,890)" to="(430,930)"/> <wire from="(430,330)" to="(430,370)"/> <wire from="(130,1580)" to="(150,1580)"/> <wire from="(190,1650)" to="(530,1650)"/> <wire from="(240,1140)" to="(250,1140)"/> <wire from="(240,580)" to="(250,580)"/> <wire from="(320,140)" to="(320,200)"/> <wire from="(240,860)" to="(240,920)"/> <wire from="(320,700)" to="(320,760)"/> <wire from="(240,300)" to="(240,360)"/> <wire from="(320,980)" to="(380,980)"/> <wire from="(320,420)" to="(380,420)"/> <wire from="(130,1230)" to="(130,1300)"/> <wire from="(210,1550)" to="(210,1620)"/> <wire from="(90,1390)" to="(150,1390)"/> <wire from="(280,1010)" to="(280,1150)"/> <wire from="(280,450)" to="(280,590)"/> <wire from="(420,290)" to="(470,290)"/> <wire from="(420,850)" to="(470,850)"/> <wire from="(170,1400)" to="(170,1410)"/> <wire from="(530,430)" to="(530,500)"/> <wire from="(530,990)" to="(530,1060)"/> <wire from="(350,300)" to="(350,320)"/> <wire from="(350,860)" to="(350,880)"/> <wire from="(170,1410)" to="(210,1410)"/> <wire from="(310,390)" to="(540,390)"/> <wire from="(310,950)" to="(540,950)"/> <wire from="(130,110)" to="(130,1230)"/> <wire from="(510,570)" to="(530,570)"/> <wire from="(510,1130)" to="(530,1130)"/> <wire from="(350,720)" to="(380,720)"/> <wire from="(350,880)" to="(380,880)"/> <wire from="(350,160)" to="(380,160)"/> <wire from="(350,320)" to="(380,320)"/> <wire from="(360,900)" to="(380,900)"/> <wire from="(320,1180)" to="(340,1180)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(320,620)" to="(340,620)"/> <wire from="(450,270)" to="(470,270)"/> <wire from="(450,830)" to="(470,830)"/> <wire from="(130,1230)" to="(150,1230)"/> <wire from="(190,1300)" to="(530,1300)"/> <wire from="(420,330)" to="(430,330)"/> <wire from="(420,890)" to="(430,890)"/> <wire from="(320,1070)" to="(320,1120)"/> <wire from="(320,510)" to="(320,560)"/> <wire from="(90,140)" to="(220,140)"/> <comp lib="1" loc="(360,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(530,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(510,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRE"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(190,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(420,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(540,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,840)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,290)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(530,1720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA15"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(530,1510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(510,970)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,990)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(510,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(540,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(190,1300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,1170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(510,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,850)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPRS"/> </comp> <comp lib="4" loc="(190,1720)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(540,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,1130)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(190,1440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(190,1580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(530,1650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA14"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(510,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(290,1120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(190,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,90)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(290,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(510,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(510,1110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(90,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(130,110)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(190,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,570)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(530,1580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="4" loc="(290,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(290,980)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,710)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(510,550)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="DMA_CONTROL"> <a name="circuit" val="DMA_CONTROL"/> <a name="clabel" val="DMA CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M141,51 Q145,61 149,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#cbff8e" height="201" stroke="#000000" stroke-width="2" width="160" x="80" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="64">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="104">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="84">ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="107" y="144">W4014</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="114" y="164">RUNDMC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="114" y="184">DMCRDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="204">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="224">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="104" y="124">SPRE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="216" y="84">SPRS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="220" y="114">RDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="207" y="144">SPR/PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="207" y="174">SPR/CPU</text> <circ-port height="8" pin="130,40" width="8" x="76" y="76"/> <circ-port height="8" pin="130,720" width="8" x="76" y="96"/> <circ-port height="8" pin="130,180" width="8" x="76" y="56"/> <circ-port height="8" pin="130,600" width="8" x="76" y="136"/> <circ-port height="8" pin="130,310" width="8" x="76" y="116"/> <circ-port height="8" pin="130,230" width="8" x="76" y="156"/> <circ-port height="8" pin="130,800" width="8" x="76" y="176"/> <circ-port height="8" pin="130,760" width="8" x="76" y="196"/> <circ-port height="8" pin="130,490" width="8" x="76" y="216"/> <circ-port height="10" pin="600,240" width="10" x="235" y="75"/> <circ-port height="10" pin="600,790" width="10" x="235" y="105"/> <circ-port height="10" pin="600,60" width="10" x="235" y="135"/> <circ-port height="10" pin="600,160" width="10" x="235" y="165"/> <circ-anchor facing="east" height="6" width="6" x="147" y="47"/> </appear> <wire from="(130,40)" to="(190,40)"/> <wire from="(190,40)" to="(190,250)"/> <wire from="(270,430)" to="(510,430)"/> <wire from="(370,160)" to="(370,240)"/> <wire from="(440,240)" to="(440,270)"/> <wire from="(510,350)" to="(510,380)"/> <wire from="(270,550)" to="(270,580)"/> <wire from="(350,670)" to="(350,700)"/> <wire from="(350,60)" to="(350,150)"/> <wire from="(190,670)" to="(290,670)"/> <wire from="(130,600)" to="(290,600)"/> <wire from="(130,760)" to="(290,760)"/> <wire from="(240,90)" to="(330,90)"/> <wire from="(130,230)" to="(350,230)"/> <wire from="(190,250)" to="(190,670)"/> <wire from="(330,590)" to="(360,590)"/> <wire from="(300,50)" to="(320,50)"/> <wire from="(270,740)" to="(290,740)"/> <wire from="(270,500)" to="(290,500)"/> <wire from="(270,580)" to="(290,580)"/> <wire from="(370,240)" to="(390,240)"/> <wire from="(370,160)" to="(390,160)"/> <wire from="(350,700)" to="(370,700)"/> <wire from="(440,270)" to="(460,270)"/> <wire from="(410,480)" to="(430,480)"/> <wire from="(430,780)" to="(450,780)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(270,390)" to="(270,430)"/> <wire from="(230,740)" to="(250,740)"/> <wire from="(270,450)" to="(350,450)"/> <wire from="(220,490)" to="(290,490)"/> <wire from="(330,170)" to="(390,170)"/> <wire from="(240,290)" to="(290,290)"/> <wire from="(240,370)" to="(290,370)"/> <wire from="(430,60)" to="(600,60)"/> <wire from="(370,240)" to="(370,390)"/> <wire from="(330,90)" to="(330,170)"/> <wire from="(350,150)" to="(350,230)"/> <wire from="(230,720)" to="(230,740)"/> <wire from="(510,400)" to="(510,430)"/> <wire from="(350,720)" to="(350,750)"/> <wire from="(240,130)" to="(240,160)"/> <wire from="(330,390)" to="(370,390)"/> <wire from="(270,530)" to="(360,530)"/> <wire from="(300,170)" to="(330,170)"/> <wire from="(440,240)" to="(600,240)"/> <wire from="(270,390)" to="(290,390)"/> <wire from="(330,370)" to="(350,370)"/> <wire from="(330,490)" to="(350,490)"/> <wire from="(350,470)" to="(370,470)"/> <wire from="(570,440)" to="(600,440)"/> <wire from="(430,480)" to="(430,780)"/> <wire from="(510,350)" to="(530,350)"/> <wire from="(510,430)" to="(530,430)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(430,240)" to="(440,240)"/> <wire from="(510,280)" to="(510,330)"/> <wire from="(360,530)" to="(360,590)"/> <wire from="(130,800)" to="(450,800)"/> <wire from="(510,450)" to="(510,710)"/> <wire from="(220,340)" to="(530,340)"/> <wire from="(130,180)" to="(240,180)"/> <wire from="(350,450)" to="(350,470)"/> <wire from="(240,290)" to="(240,370)"/> <wire from="(320,50)" to="(320,130)"/> <wire from="(220,340)" to="(220,490)"/> <wire from="(270,450)" to="(270,480)"/> <wire from="(410,710)" to="(510,710)"/> <wire from="(240,60)" to="(240,90)"/> <wire from="(350,60)" to="(390,60)"/> <wire from="(510,380)" to="(600,380)"/> <wire from="(570,340)" to="(590,340)"/> <wire from="(580,790)" to="(600,790)"/> <wire from="(270,480)" to="(290,480)"/> <wire from="(350,720)" to="(370,720)"/> <wire from="(270,550)" to="(350,550)"/> <wire from="(600,380)" to="(600,440)"/> <wire from="(190,40)" to="(260,40)"/> <wire from="(250,630)" to="(250,690)"/> <wire from="(350,490)" to="(350,550)"/> <wire from="(330,290)" to="(460,290)"/> <wire from="(320,50)" to="(390,50)"/> <wire from="(320,250)" to="(390,250)"/> <wire from="(430,160)" to="(600,160)"/> <wire from="(190,250)" to="(300,250)"/> <wire from="(350,370)" to="(350,450)"/> <wire from="(250,630)" to="(360,630)"/> <wire from="(270,500)" to="(270,530)"/> <wire from="(250,690)" to="(290,690)"/> <wire from="(350,230)" to="(390,230)"/> <wire from="(350,150)" to="(390,150)"/> <wire from="(130,720)" to="(230,720)"/> <wire from="(370,70)" to="(370,160)"/> <wire from="(130,310)" to="(290,310)"/> <wire from="(130,490)" to="(220,490)"/> <wire from="(370,70)" to="(390,70)"/> <wire from="(350,490)" to="(370,490)"/> <wire from="(330,750)" to="(350,750)"/> <wire from="(330,670)" to="(350,670)"/> <wire from="(510,330)" to="(530,330)"/> <wire from="(510,450)" to="(530,450)"/> <wire from="(240,180)" to="(240,290)"/> <wire from="(360,590)" to="(360,630)"/> <wire from="(240,180)" to="(260,180)"/> <wire from="(240,60)" to="(260,60)"/> <wire from="(240,130)" to="(320,130)"/> <wire from="(590,340)" to="(590,400)"/> <wire from="(510,400)" to="(590,400)"/> <wire from="(490,790)" to="(560,790)"/> <comp lib="1" loc="(410,710)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(573,460)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="6" loc="(280,304)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(570,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(490,280)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(395,390)" name="Text"> <a name="text" val="NO Spr"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(270,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(330,680)" name="D-latch"/> <comp lib="0" loc="(600,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR/CPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(493,394)" name="Text"> <a name="text" val="RS2"/> </comp> <comp lib="6" loc="(281,384)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(526,234)" name="Text"> <a name="text" val="INCREMENT DMA ADR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(335,608)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPRE"/> </comp> <comp lib="0" loc="(600,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RDY"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,300)" name="D-latch"/> <comp lib="1" loc="(410,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(274,28)" name="Text"> <a name="text" val="RS3"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="1" loc="(430,60)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="17"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DMCRDY"/> </comp> <comp lib="1" loc="(330,750)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="13"/> </comp> <comp lib="1" loc="(320,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(250,544)" name="Text"> <a name="text" val="RS1"/> </comp> <comp lib="1" loc="(430,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="18"/> </comp> <comp lib="6" loc="(521,320)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(280,616)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="6" loc="(260,114)" name="Text"> <a name="text" val="DMA DIR TOGGLE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(430,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(277,685)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="6" loc="(575,329)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(330,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(490,790)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(520,469)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="6" loc="(282,472)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="1" loc="(300,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="0" loc="(600,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR/PPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4014"/> </comp> <comp lib="6" loc="(480,704)" name="Text"> <a name="text" val="DO Spr"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(548,394)" name="Text"> <a name="text" val="STOP DMA"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(305,544)" name="Text"> <a name="text" val="START DMA"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(568,781)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="1" loc="(330,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(130,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(256,730)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="6" loc="(334,482)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="0" loc="(600,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPRS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK2"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(300,50)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="15"/> </comp> <comp loc="(330,380)" name="D-latch"/> <comp lib="1" loc="(580,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="LENGTH_TABLE"> <a name="circuit" val="LENGTH_TABLE"/> <a name="clabel" val="LENGTH TABLE"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M69,51 Q73,61 77,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffd840" height="180" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="74">LC7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="94">LC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="114">LC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="134">LC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="154">LC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="174">LC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="194">LC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="214">LC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="74">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="94">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="114">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="134">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="154">D7</text> <circ-port height="8" pin="60,510" width="8" x="46" y="66"/> <circ-port height="8" pin="60,560" width="8" x="46" y="86"/> <circ-port height="8" pin="60,610" width="8" x="46" y="106"/> <circ-port height="8" pin="60,660" width="8" x="46" y="126"/> <circ-port height="8" pin="60,710" width="8" x="46" y="146"/> <circ-port height="10" pin="260,330" width="10" x="125" y="65"/> <circ-port height="10" pin="260,300" width="10" x="125" y="85"/> <circ-port height="10" pin="260,270" width="10" x="125" y="105"/> <circ-port height="10" pin="260,240" width="10" x="125" y="125"/> <circ-port height="10" pin="260,210" width="10" x="125" y="145"/> <circ-port height="10" pin="260,180" width="10" x="125" y="165"/> <circ-port height="10" pin="260,150" width="10" x="125" y="185"/> <circ-port height="10" pin="260,120" width="10" x="125" y="205"/> <circ-anchor facing="east" height="6" width="6" x="97" y="47"/> </appear> <wire from="(70,180)" to="(130,180)"/> <wire from="(70,240)" to="(130,240)"/> <wire from="(70,160)" to="(130,160)"/> <wire from="(70,120)" to="(130,120)"/> <wire from="(70,140)" to="(130,140)"/> <wire from="(70,80)" to="(130,80)"/> <wire from="(70,100)" to="(130,100)"/> <wire from="(70,260)" to="(130,260)"/> <wire from="(70,200)" to="(130,200)"/> <wire from="(70,220)" to="(130,220)"/> <wire from="(70,280)" to="(130,280)"/> <wire from="(70,300)" to="(130,300)"/> <wire from="(70,320)" to="(130,320)"/> <wire from="(70,340)" to="(130,340)"/> <wire from="(70,360)" to="(130,360)"/> <wire from="(70,380)" to="(130,380)"/> <wire from="(210,120)" to="(210,190)"/> <wire from="(210,260)" to="(210,330)"/> <wire from="(210,330)" to="(260,330)"/> <wire from="(190,410)" to="(190,560)"/> <wire from="(150,390)" to="(150,410)"/> <wire from="(60,610)" to="(100,610)"/> <wire from="(60,710)" to="(100,710)"/> <wire from="(60,510)" to="(100,510)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(210,230)" to="(240,230)"/> <wire from="(230,270)" to="(260,270)"/> <wire from="(160,540)" to="(160,580)"/> <wire from="(160,600)" to="(160,640)"/> <wire from="(80,690)" to="(100,690)"/> <wire from="(80,490)" to="(100,490)"/> <wire from="(60,470)" to="(80,470)"/> <wire from="(80,590)" to="(100,590)"/> <wire from="(210,240)" to="(230,240)"/> <wire from="(240,210)" to="(260,210)"/> <wire from="(80,540)" to="(80,590)"/> <wire from="(80,640)" to="(80,690)"/> <wire from="(160,580)" to="(170,580)"/> <wire from="(160,600)" to="(170,600)"/> <wire from="(210,250)" to="(220,250)"/> <wire from="(240,210)" to="(240,220)"/> <wire from="(240,230)" to="(240,240)"/> <wire from="(210,120)" to="(260,120)"/> <wire from="(170,490)" to="(170,570)"/> <wire from="(170,610)" to="(170,690)"/> <wire from="(80,470)" to="(80,490)"/> <wire from="(60,560)" to="(100,560)"/> <wire from="(60,660)" to="(100,660)"/> <wire from="(150,410)" to="(190,410)"/> <wire from="(220,300)" to="(260,300)"/> <wire from="(230,240)" to="(230,270)"/> <wire from="(230,180)" to="(230,210)"/> <wire from="(140,690)" to="(170,690)"/> <wire from="(140,490)" to="(170,490)"/> <wire from="(140,590)" to="(170,590)"/> <wire from="(230,180)" to="(260,180)"/> <wire from="(210,220)" to="(240,220)"/> <wire from="(110,290)" to="(130,290)"/> <wire from="(110,230)" to="(130,230)"/> <wire from="(110,310)" to="(130,310)"/> <wire from="(110,330)" to="(130,330)"/> <wire from="(110,350)" to="(130,350)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(110,270)" to="(130,270)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(110,190)" to="(130,190)"/> <wire from="(110,170)" to="(130,170)"/> <wire from="(110,150)" to="(130,150)"/> <wire from="(110,130)" to="(130,130)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(110,90)" to="(130,90)"/> <wire from="(110,70)" to="(130,70)"/> <wire from="(80,640)" to="(100,640)"/> <wire from="(80,540)" to="(100,540)"/> <wire from="(170,230)" to="(190,230)"/> <wire from="(140,540)" to="(160,540)"/> <wire from="(140,640)" to="(160,640)"/> <wire from="(240,240)" to="(260,240)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(220,150)" to="(220,200)"/> <wire from="(220,250)" to="(220,300)"/> <wire from="(80,490)" to="(80,540)"/> <wire from="(80,590)" to="(80,640)"/> <wire from="(210,200)" to="(220,200)"/> <comp lib="0" loc="(60,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(70,220)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xd"/> </comp> <comp lib="0" loc="(110,250)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x17"/> </comp> <comp lib="0" loc="(110,370)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1f"/> </comp> <comp lib="0" loc="(110,110)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x27"/> </comp> <comp lib="0" loc="(190,560)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(110,290)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x5f"/> </comp> <comp lib="0" loc="(260,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,190)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xd"/> </comp> <comp lib="0" loc="(70,160)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x7"/> </comp> <comp lib="0" loc="(70,200)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xb"/> </comp> <comp lib="0" loc="(70,280)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x13"/> </comp> <comp lib="0" loc="(70,380)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1d"/> </comp> <comp lib="0" loc="(70,120)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x3"/> </comp> <comp lib="0" loc="(110,90)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x13"/> </comp> <comp lib="0" loc="(70,240)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xf"/> </comp> <comp lib="0" loc="(110,350)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xf"/> </comp> <comp lib="0" loc="(260,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(140,500)" name="D-latch"/> <comp lib="0" loc="(60,470)" name="Constant"/> <comp lib="0" loc="(70,300)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x15"/> </comp> <comp lib="0" loc="(70,340)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x19"/> </comp> <comp lib="0" loc="(110,210)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x19"/> </comp> <comp lib="0" loc="(110,310)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xbf"/> </comp> <comp lib="0" loc="(60,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp loc="(140,650)" name="D-latch"/> <comp lib="0" loc="(260,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,320)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x17"/> </comp> <comp lib="0" loc="(110,130)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x4f"/> </comp> <comp lib="0" loc="(260,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,360)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x1b"/> </comp> <comp lib="0" loc="(60,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(260,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,70)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9"/> </comp> <comp lib="0" loc="(70,260)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x11"/> </comp> <comp loc="(140,600)" name="D-latch"/> <comp lib="0" loc="(260,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,330)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x47"/> </comp> <comp lib="0" loc="(60,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(260,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,100)" name="Constant"> <a name="width" val="8"/> </comp> <comp lib="6" loc="(150,36)" name="Text"> <a name="text" val="NTSC = PAL"/> </comp> <comp loc="(140,550)" name="D-latch"/> <comp lib="0" loc="(110,270)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x2f"/> </comp> <comp lib="0" loc="(70,140)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x5"/> </comp> <comp loc="(140,700)" name="D-latch"/> <comp lib="0" loc="(110,150)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9f"/> </comp> <comp lib="0" loc="(110,230)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xb"/> </comp> <comp lib="0" loc="(60,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(110,170)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x3b"/> </comp> <comp lib="0" loc="(260,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="LC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,230)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(70,180)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x9"/> </comp> <comp lib="2" loc="(170,230)" name="Multiplexer"> <a name="select" val="5"/> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(70,80)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0xfd"/> </comp> </circuit> <circuit name="LENGTH_DOWN_COUNTER"> <a name="circuit" val="LENGTH_DOWN_COUNTER"/> <a name="clabel" val="LENGTH DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M234,31 Q230,41 226,31" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8c92" height="390" stroke="#000000" stroke-width="2" width="120" x="180" y="20"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="374">HALT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="44">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="134">W400x</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="335">LC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="315">LC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="293">LC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="274">LC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="254">LC4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="234">LC5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="214">LC6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="197" y="194">LC7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="354">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="274" y="133">NOxxx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="154">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="193" y="114">Dx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="203" y="394">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="174">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="276" y="104">Dx --&gt;</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="84">ACLK4</text> <circ-port height="8" pin="80,40" width="8" x="176" y="36"/> <circ-port height="8" pin="80,320" width="8" x="176" y="126"/> <circ-port height="8" pin="80,1560" width="8" x="176" y="186"/> <circ-port height="8" pin="80,1400" width="8" x="176" y="206"/> <circ-port height="8" pin="80,1240" width="8" x="176" y="226"/> <circ-port height="8" pin="80,1080" width="8" x="176" y="246"/> <circ-port height="8" pin="80,920" width="8" x="176" y="266"/> <circ-port height="8" pin="80,760" width="8" x="176" y="286"/> <circ-port height="8" pin="80,600" width="8" x="176" y="306"/> <circ-port height="8" pin="80,440" width="8" x="176" y="326"/> <circ-port height="8" pin="80,400" width="8" x="176" y="366"/> <circ-port height="10" pin="520,140" width="10" x="295" y="125"/> <circ-port height="8" pin="80,160" width="8" x="176" y="146"/> <circ-port height="10" pin="520,180" width="10" x="295" y="95"/> <circ-port height="8" pin="80,200" width="8" x="176" y="106"/> <circ-port height="8" pin="80,360" width="8" x="176" y="346"/> <circ-port height="8" pin="80,240" width="8" x="176" y="386"/> <circ-port height="8" pin="80,280" width="8" x="176" y="166"/> <circ-port height="8" pin="80,120" width="8" x="176" y="76"/> <circ-anchor facing="east" height="6" width="6" x="247" y="17"/> </appear> <wire from="(190,260)" to="(250,260)"/> <wire from="(310,470)" to="(310,500)"/> <wire from="(310,630)" to="(310,660)"/> <wire from="(310,950)" to="(310,980)"/> <wire from="(310,1270)" to="(310,1300)"/> <wire from="(310,1590)" to="(310,1620)"/> <wire from="(310,790)" to="(310,820)"/> <wire from="(310,1110)" to="(310,1140)"/> <wire from="(310,1430)" to="(310,1460)"/> <wire from="(190,1130)" to="(190,1290)"/> <wire from="(190,970)" to="(190,1130)"/> <wire from="(190,1290)" to="(190,1450)"/> <wire from="(190,1450)" to="(190,1610)"/> <wire from="(190,810)" to="(190,970)"/> <wire from="(190,650)" to="(190,810)"/> <wire from="(190,490)" to="(190,650)"/> <wire from="(430,220)" to="(450,220)"/> <wire from="(390,670)" to="(400,670)"/> <wire from="(390,1150)" to="(400,1150)"/> <wire from="(390,510)" to="(400,510)"/> <wire from="(390,1310)" to="(400,1310)"/> <wire from="(390,830)" to="(400,830)"/> <wire from="(390,990)" to="(400,990)"/> <wire from="(390,1470)" to="(400,1470)"/> <wire from="(390,1630)" to="(400,1630)"/> <wire from="(210,40)" to="(470,40)"/> <wire from="(360,1240)" to="(360,1310)"/> <wire from="(360,1400)" to="(360,1470)"/> <wire from="(360,1560)" to="(360,1630)"/> <wire from="(360,1080)" to="(360,1150)"/> <wire from="(360,920)" to="(360,990)"/> <wire from="(360,440)" to="(360,510)"/> <wire from="(360,600)" to="(360,670)"/> <wire from="(360,760)" to="(360,830)"/> <wire from="(80,360)" to="(190,360)"/> <wire from="(530,1090)" to="(550,1090)"/> <wire from="(160,220)" to="(250,220)"/> <wire from="(530,1410)" to="(550,1410)"/> <wire from="(530,930)" to="(550,930)"/> <wire from="(530,770)" to="(550,770)"/> <wire from="(530,1570)" to="(550,1570)"/> <wire from="(530,610)" to="(550,610)"/> <wire from="(530,1250)" to="(550,1250)"/> <wire from="(530,450)" to="(550,450)"/> <wire from="(120,1160)" to="(140,1160)"/> <wire from="(120,840)" to="(140,840)"/> <wire from="(120,1000)" to="(140,1000)"/> <wire from="(120,1320)" to="(140,1320)"/> <wire from="(120,1480)" to="(140,1480)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(120,1640)" to="(140,1640)"/> <wire from="(230,280)" to="(230,330)"/> <wire from="(170,240)" to="(250,240)"/> <wire from="(80,160)" to="(250,160)"/> <wire from="(210,80)" to="(250,80)"/> <wire from="(430,140)" to="(520,140)"/> <wire from="(120,1320)" to="(120,1480)"/> <wire from="(120,1160)" to="(120,1320)"/> <wire from="(120,1000)" to="(120,1160)"/> <wire from="(120,840)" to="(120,1000)"/> <wire from="(120,680)" to="(120,840)"/> <wire from="(120,520)" to="(120,680)"/> <wire from="(120,1480)" to="(120,1640)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(80,280)" to="(160,280)"/> <wire from="(80,1400)" to="(160,1400)"/> <wire from="(80,1240)" to="(160,1240)"/> <wire from="(80,1080)" to="(160,1080)"/> <wire from="(80,920)" to="(160,920)"/> <wire from="(80,760)" to="(160,760)"/> <wire from="(80,600)" to="(160,600)"/> <wire from="(80,440)" to="(160,440)"/> <wire from="(80,1560)" to="(160,1560)"/> <wire from="(290,470)" to="(290,530)"/> <wire from="(290,630)" to="(290,690)"/> <wire from="(290,790)" to="(290,850)"/> <wire from="(290,950)" to="(290,1010)"/> <wire from="(290,1110)" to="(290,1170)"/> <wire from="(290,1270)" to="(290,1330)"/> <wire from="(290,1430)" to="(290,1490)"/> <wire from="(290,1590)" to="(290,1650)"/> <wire from="(80,40)" to="(210,40)"/> <wire from="(140,200)" to="(250,200)"/> <wire from="(260,360)" to="(260,440)"/> <wire from="(80,320)" to="(120,320)"/> <wire from="(360,440)" to="(400,440)"/> <wire from="(360,600)" to="(400,600)"/> <wire from="(360,760)" to="(400,760)"/> <wire from="(360,1080)" to="(400,1080)"/> <wire from="(360,920)" to="(400,920)"/> <wire from="(360,1240)" to="(400,1240)"/> <wire from="(360,1400)" to="(400,1400)"/> <wire from="(360,1560)" to="(400,1560)"/> <wire from="(340,1560)" to="(340,1650)"/> <wire from="(340,1240)" to="(340,1330)"/> <wire from="(340,920)" to="(340,1010)"/> <wire from="(340,440)" to="(340,530)"/> <wire from="(340,600)" to="(340,690)"/> <wire from="(340,760)" to="(340,850)"/> <wire from="(340,1080)" to="(340,1170)"/> <wire from="(340,1400)" to="(340,1490)"/> <wire from="(260,1240)" to="(280,1240)"/> <wire from="(260,920)" to="(280,920)"/> <wire from="(260,600)" to="(280,600)"/> <wire from="(260,760)" to="(280,760)"/> <wire from="(260,1400)" to="(280,1400)"/> <wire from="(260,1080)" to="(280,1080)"/> <wire from="(260,440)" to="(280,440)"/> <wire from="(260,1560)" to="(280,1560)"/> <wire from="(210,40)" to="(210,80)"/> <wire from="(450,680)" to="(450,720)"/> <wire from="(450,840)" to="(450,880)"/> <wire from="(450,520)" to="(450,560)"/> <wire from="(450,1000)" to="(450,1040)"/> <wire from="(450,1160)" to="(450,1200)"/> <wire from="(450,1320)" to="(450,1360)"/> <wire from="(450,1480)" to="(450,1520)"/> <wire from="(270,1260)" to="(280,1260)"/> <wire from="(270,940)" to="(280,940)"/> <wire from="(270,460)" to="(280,460)"/> <wire from="(270,1100)" to="(280,1100)"/> <wire from="(270,620)" to="(280,620)"/> <wire from="(270,780)" to="(280,780)"/> <wire from="(270,1420)" to="(280,1420)"/> <wire from="(270,1580)" to="(280,1580)"/> <wire from="(240,500)" to="(310,500)"/> <wire from="(240,660)" to="(310,660)"/> <wire from="(240,1140)" to="(310,1140)"/> <wire from="(240,1460)" to="(310,1460)"/> <wire from="(240,1620)" to="(310,1620)"/> <wire from="(240,1300)" to="(310,1300)"/> <wire from="(240,820)" to="(310,820)"/> <wire from="(240,980)" to="(310,980)"/> <wire from="(340,1010)" to="(400,1010)"/> <wire from="(340,530)" to="(400,530)"/> <wire from="(340,690)" to="(400,690)"/> <wire from="(340,850)" to="(400,850)"/> <wire from="(340,1170)" to="(400,1170)"/> <wire from="(340,1330)" to="(400,1330)"/> <wire from="(340,1490)" to="(400,1490)"/> <wire from="(340,1650)" to="(400,1650)"/> <wire from="(120,320)" to="(170,320)"/> <wire from="(170,240)" to="(170,320)"/> <wire from="(570,330)" to="(570,1640)"/> <wire from="(260,1240)" to="(260,1400)"/> <wire from="(260,1080)" to="(260,1240)"/> <wire from="(260,1400)" to="(260,1560)"/> <wire from="(260,920)" to="(260,1080)"/> <wire from="(260,760)" to="(260,920)"/> <wire from="(260,600)" to="(260,760)"/> <wire from="(260,440)" to="(260,600)"/> <wire from="(190,260)" to="(190,360)"/> <wire from="(360,560)" to="(360,600)"/> <wire from="(360,720)" to="(360,760)"/> <wire from="(360,880)" to="(360,920)"/> <wire from="(360,1040)" to="(360,1080)"/> <wire from="(360,400)" to="(360,440)"/> <wire from="(360,1520)" to="(360,1560)"/> <wire from="(360,1360)" to="(360,1400)"/> <wire from="(360,1200)" to="(360,1240)"/> <wire from="(440,520)" to="(450,520)"/> <wire from="(440,680)" to="(450,680)"/> <wire from="(440,1000)" to="(450,1000)"/> <wire from="(440,1160)" to="(450,1160)"/> <wire from="(440,1320)" to="(450,1320)"/> <wire from="(440,1480)" to="(450,1480)"/> <wire from="(440,840)" to="(450,840)"/> <wire from="(320,620)" to="(400,620)"/> <wire from="(320,1260)" to="(400,1260)"/> <wire from="(320,460)" to="(400,460)"/> <wire from="(320,780)" to="(400,780)"/> <wire from="(320,1420)" to="(400,1420)"/> <wire from="(320,940)" to="(400,940)"/> <wire from="(320,1100)" to="(400,1100)"/> <wire from="(320,1580)" to="(400,1580)"/> <wire from="(160,1080)" to="(160,1140)"/> <wire from="(160,920)" to="(160,980)"/> <wire from="(160,760)" to="(160,820)"/> <wire from="(160,600)" to="(160,660)"/> <wire from="(160,440)" to="(160,500)"/> <wire from="(120,180)" to="(250,180)"/> <wire from="(160,1560)" to="(160,1620)"/> <wire from="(160,1400)" to="(160,1460)"/> <wire from="(160,1240)" to="(160,1300)"/> <wire from="(80,240)" to="(140,240)"/> <wire from="(440,450)" to="(490,450)"/> <wire from="(440,610)" to="(490,610)"/> <wire from="(440,930)" to="(490,930)"/> <wire from="(440,1410)" to="(490,1410)"/> <wire from="(440,770)" to="(490,770)"/> <wire from="(440,1090)" to="(490,1090)"/> <wire from="(440,1250)" to="(490,1250)"/> <wire from="(440,1570)" to="(490,1570)"/> <wire from="(170,510)" to="(210,510)"/> <wire from="(170,670)" to="(210,670)"/> <wire from="(170,830)" to="(210,830)"/> <wire from="(170,1310)" to="(210,1310)"/> <wire from="(170,990)" to="(210,990)"/> <wire from="(170,1150)" to="(210,1150)"/> <wire from="(170,1470)" to="(210,1470)"/> <wire from="(170,1630)" to="(210,1630)"/> <wire from="(320,1080)" to="(340,1080)"/> <wire from="(320,440)" to="(340,440)"/> <wire from="(320,1400)" to="(340,1400)"/> <wire from="(320,600)" to="(340,600)"/> <wire from="(320,1240)" to="(340,1240)"/> <wire from="(320,760)" to="(340,760)"/> <wire from="(320,920)" to="(340,920)"/> <wire from="(320,1560)" to="(340,1560)"/> <wire from="(470,1230)" to="(490,1230)"/> <wire from="(470,1070)" to="(490,1070)"/> <wire from="(470,1550)" to="(490,1550)"/> <wire from="(470,1390)" to="(490,1390)"/> <wire from="(470,750)" to="(490,750)"/> <wire from="(470,910)" to="(490,910)"/> <wire from="(470,430)" to="(490,430)"/> <wire from="(470,590)" to="(490,590)"/> <wire from="(270,970)" to="(550,970)"/> <wire from="(270,490)" to="(550,490)"/> <wire from="(270,650)" to="(550,650)"/> <wire from="(270,1130)" to="(550,1130)"/> <wire from="(270,810)" to="(550,810)"/> <wire from="(270,1290)" to="(550,1290)"/> <wire from="(270,1450)" to="(550,1450)"/> <wire from="(270,1610)" to="(550,1610)"/> <wire from="(260,360)" to="(450,360)"/> <wire from="(170,530)" to="(290,530)"/> <wire from="(170,690)" to="(290,690)"/> <wire from="(170,1330)" to="(290,1330)"/> <wire from="(170,1490)" to="(290,1490)"/> <wire from="(170,850)" to="(290,850)"/> <wire from="(170,1010)" to="(290,1010)"/> <wire from="(170,1170)" to="(290,1170)"/> <wire from="(170,1650)" to="(290,1650)"/> <wire from="(120,180)" to="(120,200)"/> <wire from="(80,120)" to="(250,120)"/> <wire from="(430,180)" to="(520,180)"/> <wire from="(550,610)" to="(550,650)"/> <wire from="(550,450)" to="(550,490)"/> <wire from="(550,1090)" to="(550,1130)"/> <wire from="(550,770)" to="(550,810)"/> <wire from="(550,930)" to="(550,970)"/> <wire from="(550,1250)" to="(550,1290)"/> <wire from="(550,1410)" to="(550,1450)"/> <wire from="(550,1570)" to="(550,1610)"/> <wire from="(470,1230)" to="(470,1390)"/> <wire from="(470,1070)" to="(470,1230)"/> <wire from="(470,1390)" to="(470,1550)"/> <wire from="(470,910)" to="(470,1070)"/> <wire from="(470,750)" to="(470,910)"/> <wire from="(470,590)" to="(470,750)"/> <wire from="(470,430)" to="(470,590)"/> <wire from="(140,200)" to="(140,240)"/> <wire from="(230,330)" to="(570,330)"/> <wire from="(440,1640)" to="(570,1640)"/> <wire from="(160,220)" to="(160,280)"/> <wire from="(470,40)" to="(470,430)"/> <wire from="(190,360)" to="(190,490)"/> <wire from="(120,320)" to="(120,520)"/> <wire from="(450,220)" to="(450,360)"/> <wire from="(80,200)" to="(120,200)"/> <wire from="(270,1260)" to="(270,1290)"/> <wire from="(270,940)" to="(270,970)"/> <wire from="(270,460)" to="(270,490)"/> <wire from="(270,1100)" to="(270,1130)"/> <wire from="(270,620)" to="(270,650)"/> <wire from="(270,780)" to="(270,810)"/> <wire from="(270,1420)" to="(270,1450)"/> <wire from="(270,1580)" to="(270,1610)"/> <wire from="(360,1520)" to="(450,1520)"/> <wire from="(360,1360)" to="(450,1360)"/> <wire from="(360,1200)" to="(450,1200)"/> <wire from="(360,880)" to="(450,880)"/> <wire from="(360,1040)" to="(450,1040)"/> <wire from="(360,720)" to="(450,720)"/> <wire from="(360,560)" to="(450,560)"/> <wire from="(80,400)" to="(360,400)"/> <wire from="(190,970)" to="(210,970)"/> <wire from="(190,1290)" to="(210,1290)"/> <wire from="(190,810)" to="(210,810)"/> <wire from="(190,1130)" to="(210,1130)"/> <wire from="(190,650)" to="(210,650)"/> <wire from="(190,490)" to="(210,490)"/> <wire from="(190,1610)" to="(210,1610)"/> <wire from="(190,1450)" to="(210,1450)"/> <wire from="(360,1310)" to="(370,1310)"/> <wire from="(360,1470)" to="(370,1470)"/> <wire from="(360,1630)" to="(370,1630)"/> <wire from="(360,1150)" to="(370,1150)"/> <wire from="(360,990)" to="(370,990)"/> <wire from="(360,510)" to="(370,510)"/> <wire from="(360,670)" to="(370,670)"/> <wire from="(360,830)" to="(370,830)"/> <comp lib="4" loc="(320,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1090)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,520)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,840)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK4"/> </comp> <comp lib="1" loc="(390,1470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(320,1560)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(520,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NOxxx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,500)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,1630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(530,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="2" loc="(140,1320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(240,1300)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(440,930)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1410)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC7"/> </comp> <comp lib="1" loc="(240,1620)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,450)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(240,1140)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,1400)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC3"/> </comp> <comp lib="2" loc="(140,1480)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(390,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,770)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,1640)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,610)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC1"/> </comp> <comp lib="0" loc="(80,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC6"/> </comp> <comp lib="1" loc="(240,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,920)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC2"/> </comp> <comp lib="1" loc="(440,1570)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(320,1240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC0"/> </comp> <comp lib="1" loc="(440,520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1000)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,1160)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(530,1550)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp loc="(340,60)" name="LENGTH_CONTROL"/> <comp lib="1" loc="(240,660)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(520,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Dx --&gt;"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HALT"/> </comp> <comp lib="4" loc="(530,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(320,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(240,1460)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,430)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(390,510)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(140,680)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(320,1080)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC5"/> </comp> <comp lib="0" loc="(80,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dx"/> </comp> <comp lib="0" loc="(80,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LC4"/> </comp> <comp lib="1" loc="(440,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="1" loc="(390,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(140,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(530,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="LENGTH_CONTROL"> <a name="circuit" val="LENGTH_CONTROL"/> <a name="clabel" val="LENGTH CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M193,91 Q197,101 201,91" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff2097" height="240" stroke="#000000" stroke-width="2" width="180" x="160" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="94">ACLK1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="254">W400x</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="294">C_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="175">W4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="194">Dx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="274">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="184" y="214">/LFO2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="234">/R4015</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="314" y="154">NOxxx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="193">Dx --&gt;</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="234">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="185" y="134">ACLK4</text> <circ-port height="8" pin="100,70" width="8" x="156" y="86"/> <circ-port height="8" pin="100,120" width="8" x="156" y="286"/> <circ-port height="8" pin="100,270" width="8" x="156" y="166"/> <circ-port height="8" pin="100,210" width="8" x="156" y="186"/> <circ-port height="8" pin="100,240" width="8" x="156" y="266"/> <circ-port height="8" pin="100,330" width="8" x="156" y="206"/> <circ-port height="8" pin="100,420" width="8" x="156" y="226"/> <circ-port height="8" pin="100,380" width="8" x="156" y="246"/> <circ-port height="10" pin="680,130" width="10" x="335" y="145"/> <circ-port height="10" pin="680,170" width="10" x="335" y="185"/> <circ-port height="10" pin="680,70" width="10" x="335" y="225"/> <circ-port height="8" pin="100,30" width="8" x="156" y="126"/> <circ-anchor facing="east" height="6" width="6" x="247" y="67"/> </appear> <wire from="(340,190)" to="(400,190)"/> <wire from="(620,220)" to="(620,360)"/> <wire from="(250,210)" to="(300,210)"/> <wire from="(590,420)" to="(650,420)"/> <wire from="(600,130)" to="(640,130)"/> <wire from="(380,70)" to="(680,70)"/> <wire from="(100,210)" to="(210,210)"/> <wire from="(510,150)" to="(510,170)"/> <wire from="(240,220)" to="(240,240)"/> <wire from="(360,280)" to="(360,310)"/> <wire from="(360,170)" to="(400,170)"/> <wire from="(280,190)" to="(280,280)"/> <wire from="(510,180)" to="(600,180)"/> <wire from="(470,140)" to="(470,240)"/> <wire from="(580,130)" to="(600,130)"/> <wire from="(380,120)" to="(380,280)"/> <wire from="(620,170)" to="(640,170)"/> <wire from="(660,130)" to="(680,130)"/> <wire from="(660,170)" to="(680,170)"/> <wire from="(100,70)" to="(190,70)"/> <wire from="(280,190)" to="(300,190)"/> <wire from="(280,360)" to="(620,360)"/> <wire from="(430,180)" to="(450,180)"/> <wire from="(440,280)" to="(440,320)"/> <wire from="(510,150)" to="(520,150)"/> <wire from="(280,300)" to="(280,360)"/> <wire from="(100,120)" to="(300,120)"/> <wire from="(650,180)" to="(650,420)"/> <wire from="(100,380)" to="(490,380)"/> <wire from="(450,120)" to="(520,120)"/> <wire from="(100,30)" to="(360,30)"/> <wire from="(340,100)" to="(400,100)"/> <wire from="(380,280)" to="(440,280)"/> <wire from="(190,70)" to="(190,140)"/> <wire from="(360,30)" to="(360,170)"/> <wire from="(470,140)" to="(520,140)"/> <wire from="(490,240)" to="(490,380)"/> <wire from="(580,220)" to="(620,220)"/> <wire from="(510,180)" to="(510,200)"/> <wire from="(510,170)" to="(620,170)"/> <wire from="(240,240)" to="(470,240)"/> <wire from="(280,70)" to="(280,100)"/> <wire from="(190,160)" to="(190,190)"/> <wire from="(280,100)" to="(280,190)"/> <wire from="(100,330)" to="(390,330)"/> <wire from="(430,110)" to="(520,110)"/> <wire from="(190,70)" to="(280,70)"/> <wire from="(490,240)" to="(520,240)"/> <wire from="(360,310)" to="(390,310)"/> <wire from="(280,100)" to="(300,100)"/> <wire from="(280,280)" to="(300,280)"/> <wire from="(280,300)" to="(300,300)"/> <wire from="(380,120)" to="(400,120)"/> <wire from="(340,280)" to="(360,280)"/> <wire from="(100,420)" to="(570,420)"/> <wire from="(190,190)" to="(210,190)"/> <wire from="(430,320)" to="(440,320)"/> <wire from="(230,220)" to="(230,270)"/> <wire from="(510,200)" to="(520,200)"/> <wire from="(100,240)" to="(240,240)"/> <wire from="(380,70)" to="(380,120)"/> <wire from="(450,120)" to="(450,180)"/> <wire from="(600,130)" to="(600,180)"/> <wire from="(620,170)" to="(620,220)"/> <wire from="(100,270)" to="(230,270)"/> <comp lib="1" loc="(580,130)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(290,293)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="4" loc="(250,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/LFO2"/> </comp> <comp lib="1" loc="(590,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(340,290)" name="D-latch"/> <comp lib="6" loc="(600,120)" name="Text"> <a name="text" val="Q"/> </comp> <comp lib="1" loc="(430,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W400x"/> </comp> <comp lib="6" loc="(231,175)" name="Text"> <a name="text" val="DFF1"/> </comp> <comp lib="1" loc="(430,180)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Res"/> </comp> <comp lib="1" loc="(430,110)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(293,203)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="6" loc="(291,114)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="6" loc="(639,158)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(649,121)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(680,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="STEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Carry In"/> </comp> <comp lib="0" loc="(680,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Dx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(680,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="NOSQA"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(200,204)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(660,170)" name="Controlled Inverter"> <a name="size" val="20"/> </comp> <comp loc="(340,110)" name="D-latch"/> <comp lib="1" loc="(580,220)" name="NOR Gate"> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(601,237)" name="Text"> <a name="text" val="/Q"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dx"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK4"/> </comp> <comp lib="6" loc="(658,158)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(504,256)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="1" loc="(660,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,160)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4015"/> </comp> <comp loc="(340,200)" name="D-latch"/> <comp lib="0" loc="(100,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp lib="6" loc="(499,101)" name="Text"> <a name="text" val="R"/> </comp> </circuit> <circuit name="IO_CONTROL"> <a name="circuit" val="IO_CONTROL"/> <a name="clabel" val="IO CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M258,51 Q262,61 266,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#e6ff3c" height="470" stroke="#000000" stroke-width="2" width="250" x="210" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="65">/ACLK2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="104">W4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="135">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="154">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="175">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="428" y="344">/RES PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="255">R/W INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="194">/R4016</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="214">/R4017</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="275">/NMI INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="295">/IRQ INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="315">INT APU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="234"> #CLK INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="74">OUT0 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="104">OUT1 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="134">OUT2 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="334">MASTER RESET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="254">R/W PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="164">IN 0 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="194">IN 1 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="284">/NMI PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="314">/IRQ PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="224">CLK PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="434" y="374">M2 PIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="229" y="355">#M2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="374">DBG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="414">APU Ax</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="445" y="414">Ax</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="425" y="484">DB IN EXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="418" y="454">DB OUT EXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="484">DB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="233" y="455">DB IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="227" y="434">WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="282" y="454">-----&gt;</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="281" y="483">&lt;-----</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="84">ACLK1</text> <circ-port height="8" pin="170,80" width="8" x="206" y="56"/> <circ-port height="8" pin="170,370" width="8" x="206" y="96"/> <circ-port height="8" pin="170,190" width="8" x="206" y="126"/> <circ-port height="8" pin="170,260" width="8" x="206" y="146"/> <circ-port height="8" pin="170,330" width="8" x="206" y="166"/> <circ-port height="8" pin="490,410" width="8" x="456" y="336"/> <circ-port height="8" pin="170,560" width="8" x="206" y="246"/> <circ-port height="8" pin="170,620" width="8" x="206" y="186"/> <circ-port height="8" pin="170,680" width="8" x="206" y="206"/> <circ-port height="10" pin="170,830" width="10" x="205" y="265"/> <circ-port height="10" pin="170,880" width="10" x="205" y="285"/> <circ-port height="8" pin="490,910" width="8" x="206" y="306"/> <circ-port height="10" pin="170,950" width="10" x="205" y="225"/> <circ-port height="10" pin="490,150" width="10" x="455" y="65"/> <circ-port height="10" pin="490,220" width="10" x="455" y="95"/> <circ-port height="10" pin="490,290" width="10" x="455" y="125"/> <circ-port height="10" pin="170,410" width="10" x="205" y="325"/> <circ-port height="10" pin="490,560" width="10" x="455" y="245"/> <circ-port height="10" pin="490,620" width="10" x="455" y="155"/> <circ-port height="10" pin="490,680" width="10" x="455" y="185"/> <circ-port height="8" pin="490,830" width="8" x="456" y="276"/> <circ-port height="8" pin="490,870" width="8" x="456" y="306"/> <circ-port height="8" pin="490,950" width="8" x="456" y="216"/> <circ-port height="8" pin="170,780" width="8" x="206" y="346"/> <circ-port height="10" pin="490,780" width="10" x="455" y="365"/> <circ-port height="8" pin="170,750" width="8" x="206" y="366"/> <circ-port height="10" pin="490,480" width="10" x="455" y="405"/> <circ-port height="8" pin="170,480" width="8" x="206" y="406"/> <circ-port height="8" pin="170,1210" width="8" x="206" y="446"/> <circ-port height="10" pin="490,1200" width="10" x="455" y="445"/> <circ-port height="8" pin="170,990" width="8" x="206" y="426"/> <circ-port height="10" pin="170,1030" width="10" x="205" y="475"/> <circ-port height="8" pin="490,1030" width="8" x="456" y="476"/> <circ-port height="8" pin="170,130" width="8" x="206" y="76"/> <circ-anchor facing="east" height="6" width="6" x="287" y="47"/> </appear> <wire from="(450,160)" to="(450,230)"/> <wire from="(360,150)" to="(360,220)"/> <wire from="(330,990)" to="(450,990)"/> <wire from="(270,270)" to="(270,280)"/> <wire from="(210,1140)" to="(390,1140)"/> <wire from="(310,350)" to="(310,370)"/> <wire from="(170,750)" to="(340,750)"/> <wire from="(390,910)" to="(490,910)"/> <wire from="(270,280)" to="(310,280)"/> <wire from="(410,1140)" to="(450,1140)"/> <wire from="(270,80)" to="(360,80)"/> <wire from="(170,880)" to="(330,880)"/> <wire from="(460,680)" to="(490,680)"/> <wire from="(460,560)" to="(490,560)"/> <wire from="(460,480)" to="(490,480)"/> <wire from="(310,730)" to="(340,730)"/> <wire from="(360,150)" to="(380,150)"/> <wire from="(340,1170)" to="(360,1170)"/> <wire from="(420,290)" to="(440,290)"/> <wire from="(360,1190)" to="(380,1190)"/> <wire from="(170,1030)" to="(440,1030)"/> <wire from="(270,1190)" to="(280,1190)"/> <wire from="(170,190)" to="(250,190)"/> <wire from="(310,1190)" to="(320,1190)"/> <wire from="(170,780)" to="(310,780)"/> <wire from="(450,410)" to="(450,470)"/> <wire from="(450,570)" to="(450,630)"/> <wire from="(360,80)" to="(360,150)"/> <wire from="(270,410)" to="(450,410)"/> <wire from="(270,200)" to="(270,210)"/> <wire from="(360,1170)" to="(360,1190)"/> <wire from="(450,740)" to="(450,770)"/> <wire from="(270,210)" to="(310,210)"/> <wire from="(290,310)" to="(380,310)"/> <wire from="(460,290)" to="(490,290)"/> <wire from="(420,220)" to="(440,220)"/> <wire from="(380,740)" to="(400,740)"/> <wire from="(370,890)" to="(390,890)"/> <wire from="(170,1210)" to="(380,1210)"/> <wire from="(170,130)" to="(190,130)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(210,130)" to="(230,130)"/> <wire from="(170,480)" to="(440,480)"/> <wire from="(170,680)" to="(440,680)"/> <wire from="(210,1140)" to="(210,1190)"/> <wire from="(260,1190)" to="(270,1190)"/> <wire from="(170,80)" to="(250,80)"/> <wire from="(300,1190)" to="(310,1190)"/> <wire from="(450,1140)" to="(450,1190)"/> <wire from="(170,950)" to="(310,950)"/> <wire from="(170,830)" to="(310,830)"/> <wire from="(170,990)" to="(310,990)"/> <wire from="(310,280)" to="(310,350)"/> <wire from="(230,240)" to="(230,310)"/> <wire from="(210,1190)" to="(260,1190)"/> <wire from="(390,890)" to="(390,910)"/> <wire from="(330,780)" to="(440,780)"/> <wire from="(450,670)" to="(450,700)"/> <wire from="(210,560)" to="(440,560)"/> <wire from="(450,990)" to="(450,1020)"/> <wire from="(170,560)" to="(210,560)"/> <wire from="(290,240)" to="(380,240)"/> <wire from="(420,740)" to="(450,740)"/> <wire from="(460,620)" to="(490,620)"/> <wire from="(460,220)" to="(490,220)"/> <wire from="(460,780)" to="(490,780)"/> <wire from="(450,300)" to="(450,410)"/> <wire from="(360,290)" to="(380,290)"/> <wire from="(420,150)" to="(440,150)"/> <wire from="(470,1200)" to="(490,1200)"/> <wire from="(230,130)" to="(230,170)"/> <wire from="(450,630)" to="(450,670)"/> <wire from="(230,240)" to="(250,240)"/> <wire from="(310,700)" to="(450,700)"/> <wire from="(170,410)" to="(250,410)"/> <wire from="(290,1190)" to="(300,1190)"/> <wire from="(170,330)" to="(250,330)"/> <wire from="(210,560)" to="(210,1060)"/> <wire from="(450,230)" to="(450,300)"/> <wire from="(310,210)" to="(310,280)"/> <wire from="(360,220)" to="(360,290)"/> <wire from="(230,170)" to="(230,240)"/> <wire from="(270,340)" to="(270,350)"/> <wire from="(330,830)" to="(440,830)"/> <wire from="(210,1080)" to="(210,1100)"/> <wire from="(210,1120)" to="(210,1140)"/> <wire from="(310,700)" to="(310,730)"/> <wire from="(270,350)" to="(310,350)"/> <wire from="(450,410)" to="(490,410)"/> <wire from="(290,170)" to="(380,170)"/> <wire from="(450,470)" to="(450,570)"/> <wire from="(460,150)" to="(490,150)"/> <wire from="(460,830)" to="(490,830)"/> <wire from="(460,870)" to="(490,870)"/> <wire from="(330,950)" to="(490,950)"/> <wire from="(460,1030)" to="(490,1030)"/> <wire from="(360,220)" to="(380,220)"/> <wire from="(420,1200)" to="(440,1200)"/> <wire from="(230,170)" to="(250,170)"/> <wire from="(170,620)" to="(440,620)"/> <wire from="(280,1190)" to="(290,1190)"/> <wire from="(170,260)" to="(250,260)"/> <wire from="(320,1190)" to="(330,1190)"/> <wire from="(170,370)" to="(310,370)"/> <wire from="(370,870)" to="(440,870)"/> <comp lib="4" loc="(290,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(460,620)" name="Controlled Buffer"/> <comp lib="0" loc="(490,1030)" name="Pin"> <a name="facing" val="west"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB IN EXT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,410)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,410)" name="Pin"> <a name="output" val="true"/> <a name="label" val="MASTER RESET"/> </comp> <comp lib="1" loc="(440,830)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT0 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(460,290)" name="Controlled Buffer"/> <comp lib="0" loc="(170,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(170,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(420,160)" name="D-latch"/> <comp lib="4" loc="(290,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(170,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4017"/> </comp> <comp lib="0" loc="(170,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#M2"/> </comp> <comp lib="0" loc="(340,1170)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(460,780)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(490,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="IN1 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(410,1140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(420,300)" name="D-latch"/> <comp lib="0" loc="(170,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(210,1080)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,1200)" name="Controlled Inverter"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(170,950)" name="Pin"> <a name="output" val="true"/> <a name="label" val="#CLK INT"/> </comp> <comp lib="1" loc="(420,1200)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,480)" name="Pin"> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="APU Ax"/> </comp> <comp lib="1" loc="(460,220)" name="Controlled Buffer"/> <comp lib="0" loc="(490,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="IN0 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4016"/> </comp> <comp lib="0" loc="(170,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(490,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R/W PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,830)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,830)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/NMI PIN "/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="WR"/> </comp> <comp lib="1" loc="(210,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,150)" name="Controlled Buffer"/> <comp lib="0" loc="(170,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(490,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT1 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,880)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(490,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT2 PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,480)" name="Controlled Buffer"> <a name="width" val="16"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(490,950)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CLK PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,1120)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,680)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(460,560)" name="Controlled Buffer"/> <comp loc="(420,230)" name="D-latch"/> <comp lib="0" loc="(170,1030)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB IN"/> </comp> <comp lib="0" loc="(170,1210)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB OUT"/> </comp> <comp lib="0" loc="(490,910)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="INT(from apu)"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,870)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,950)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(290,310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(170,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W int"/> </comp> <comp lib="0" loc="(170,880)" name="Pin"> <a name="output" val="true"/> <a name="label" val="/IRQ INT"/> </comp> <comp lib="0" loc="(490,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="M2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(490,870)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,410)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/RES PIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="label" val="Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(338,73)" name="Text"> <a name="text" val="ACLK5"/> </comp> <comp lib="0" loc="(170,830)" name="Pin"> <a name="output" val="true"/> <a name="label" val="/NMI INT"/> </comp> <comp lib="1" loc="(270,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,1200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB OUT EXT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,1030)" name="Controlled Buffer"> <a name="facing" val="west"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACLK2"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"/> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <main name="BogusSystem"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="BogusSystem"> <a name="circuit" val="BogusSystem"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <wire from="(420,330)" to="(480,330)"/> <wire from="(500,140)" to="(500,400)"/> <wire from="(480,160)" to="(480,290)"/> <wire from="(580,170)" to="(620,170)"/> <wire from="(590,400)" to="(630,400)"/> <wire from="(370,150)" to="(540,150)"/> <wire from="(210,90)" to="(210,110)"/> <wire from="(500,400)" to="(500,430)"/> <wire from="(200,370)" to="(240,370)"/> <wire from="(200,350)" to="(240,350)"/> <wire from="(200,390)" to="(240,390)"/> <wire from="(200,410)" to="(240,410)"/> <wire from="(200,160)" to="(200,190)"/> <wire from="(650,330)" to="(650,350)"/> <wire from="(670,330)" to="(670,350)"/> <wire from="(210,110)" to="(240,110)"/> <wire from="(210,170)" to="(240,170)"/> <wire from="(770,290)" to="(770,460)"/> <wire from="(610,150)" to="(610,190)"/> <wire from="(540,200)" to="(690,200)"/> <wire from="(370,190)" to="(400,190)"/> <wire from="(120,90)" to="(210,90)"/> <wire from="(120,210)" to="(210,210)"/> <wire from="(370,170)" to="(400,170)"/> <wire from="(370,210)" to="(400,210)"/> <wire from="(370,230)" to="(400,230)"/> <wire from="(370,250)" to="(400,250)"/> <wire from="(370,270)" to="(400,270)"/> <wire from="(370,290)" to="(400,290)"/> <wire from="(370,310)" to="(400,310)"/> <wire from="(370,350)" to="(400,350)"/> <wire from="(370,370)" to="(400,370)"/> <wire from="(370,390)" to="(400,390)"/> <wire from="(370,410)" to="(400,410)"/> <wire from="(180,420)" to="(180,460)"/> <wire from="(210,170)" to="(210,210)"/> <wire from="(520,190)" to="(610,190)"/> <wire from="(220,180)" to="(220,230)"/> <wire from="(150,50)" to="(150,230)"/> <wire from="(690,150)" to="(690,200)"/> <wire from="(120,150)" to="(190,150)"/> <wire from="(550,170)" to="(560,170)"/> <wire from="(520,120)" to="(520,190)"/> <wire from="(420,160)" to="(480,160)"/> <wire from="(500,430)" to="(690,430)"/> <wire from="(190,140)" to="(190,150)"/> <wire from="(120,130)" to="(240,130)"/> <wire from="(190,140)" to="(240,140)"/> <wire from="(480,290)" to="(600,290)"/> <wire from="(480,310)" to="(600,310)"/> <wire from="(630,330)" to="(630,400)"/> <wire from="(480,310)" to="(480,330)"/> <wire from="(200,160)" to="(240,160)"/> <wire from="(200,340)" to="(240,340)"/> <wire from="(200,360)" to="(240,360)"/> <wire from="(200,380)" to="(240,380)"/> <wire from="(200,400)" to="(240,400)"/> <wire from="(620,150)" to="(620,170)"/> <wire from="(700,150)" to="(700,170)"/> <wire from="(120,230)" to="(150,230)"/> <wire from="(650,350)" to="(670,350)"/> <wire from="(370,260)" to="(400,260)"/> <wire from="(370,280)" to="(400,280)"/> <wire from="(370,240)" to="(400,240)"/> <wire from="(370,220)" to="(400,220)"/> <wire from="(370,180)" to="(400,180)"/> <wire from="(370,200)" to="(400,200)"/> <wire from="(370,300)" to="(400,300)"/> <wire from="(370,320)" to="(400,320)"/> <wire from="(370,340)" to="(400,340)"/> <wire from="(370,360)" to="(400,360)"/> <wire from="(370,380)" to="(400,380)"/> <wire from="(370,400)" to="(400,400)"/> <wire from="(520,190)" to="(520,350)"/> <wire from="(740,290)" to="(770,290)"/> <wire from="(690,330)" to="(690,430)"/> <wire from="(220,180)" to="(240,180)"/> <wire from="(370,120)" to="(520,120)"/> <wire from="(550,50)" to="(550,170)"/> <wire from="(120,190)" to="(200,190)"/> <wire from="(180,460)" to="(770,460)"/> <wire from="(150,50)" to="(550,50)"/> <wire from="(520,350)" to="(650,350)"/> <wire from="(150,230)" to="(220,230)"/> <wire from="(620,170)" to="(700,170)"/> <wire from="(540,150)" to="(540,200)"/> <wire from="(370,140)" to="(500,140)"/> <wire from="(670,140)" to="(680,140)"/> <wire from="(500,400)" to="(570,400)"/> <wire from="(590,140)" to="(600,140)"/> <comp lib="0" loc="(670,140)" name="Constant"/> <comp lib="0" loc="(120,90)" name="Clock"> <a name="label" val="PHI0"/> </comp> <comp lib="6" loc="(616,100)" name="Text"> <a name="text" val="CLK Counter"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/NMI"/> </comp> <comp lib="0" loc="(420,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="4" loc="(630,130)" name="Counter"> <a name="width" val="32"/> <a name="max" val="0xffffffff"/> </comp> <comp lib="0" loc="(180,420)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="1" loc="(590,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(710,130)" name="Counter"> <a name="width" val="32"/> <a name="max" val="0xffffffff"/> </comp> <comp lib="4" loc="(740,290)" name="RAM"> <a name="addrWidth" val="16"/> <a name="bus" val="separate"/> </comp> <comp lib="6" loc="(700,100)" name="Text"> <a name="text" val="Instr Counter"/> </comp> <comp lib="1" loc="(580,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(590,140)" name="Constant"/> <comp lib="0" loc="(420,330)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(240,110)" name="MOS_6502"/> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IRQ"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SO"/> </comp> </circuit> <circuit name="MOS_6502"> <a name="circuit" val="MOS_6502"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="330" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="94">RDY</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="104">SO</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="123">/NMI</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="133">/IRQ</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="145">/RES</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="73">PHI1</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="84">PHI2</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="160" y="103">R/W</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="158" y="114">SYNC</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="146" y="205">ADDR Out</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="148" y="338">DATA Out</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="76" y="338">DATA In</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="116" y="43">MOS 6502</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="74">PHI0</text> <circ-port height="10" pin="70,700" width="10" x="175" y="105"/> <circ-port height="10" pin="70,1300" width="10" x="175" y="125"/> <circ-port height="10" pin="70,1350" width="10" x="175" y="135"/> <circ-port height="10" pin="70,1400" width="10" x="175" y="145"/> <circ-port height="10" pin="70,1450" width="10" x="175" y="155"/> <circ-port height="10" pin="70,1500" width="10" x="175" y="165"/> <circ-port height="10" pin="70,1550" width="10" x="175" y="175"/> <circ-port height="10" pin="70,1600" width="10" x="175" y="185"/> <circ-port height="10" pin="70,1650" width="10" x="175" y="195"/> <circ-port height="8" pin="2100,1300" width="8" x="46" y="296"/> <circ-port height="8" pin="2100,1340" width="8" x="46" y="306"/> <circ-port height="8" pin="2100,1380" width="8" x="46" y="316"/> <circ-port height="8" pin="2100,1420" width="8" x="46" y="326"/> <circ-port height="8" pin="2100,1460" width="8" x="46" y="336"/> <circ-port height="8" pin="2100,1500" width="8" x="46" y="346"/> <circ-port height="8" pin="2100,1540" width="8" x="46" y="356"/> <circ-port height="8" pin="2100,1580" width="8" x="46" y="366"/> <circ-port height="10" pin="2100,1710" width="10" x="175" y="295"/> <circ-port height="10" pin="2100,1750" width="10" x="175" y="305"/> <circ-port height="10" pin="2100,1790" width="10" x="175" y="315"/> <circ-port height="10" pin="2100,1830" width="10" x="175" y="325"/> <circ-port height="10" pin="2100,1870" width="10" x="175" y="335"/> <circ-port height="10" pin="2100,1910" width="10" x="175" y="345"/> <circ-port height="10" pin="2100,1950" width="10" x="175" y="355"/> <circ-port height="10" pin="2100,1990" width="10" x="175" y="365"/> <circ-port height="8" pin="300,60" width="8" x="46" y="116"/> <circ-port height="8" pin="490,60" width="8" x="46" y="126"/> <circ-port height="10" pin="780,60" width="10" x="175" y="65"/> <circ-port height="8" pin="960,60" width="8" x="46" y="86"/> <circ-port height="8" pin="1120,60" width="8" x="46" y="136"/> <circ-port height="10" pin="1330,60" width="10" x="175" y="75"/> <circ-port height="8" pin="1510,60" width="8" x="46" y="96"/> <circ-port height="10" pin="1840,60" width="10" x="175" y="95"/> <circ-port height="10" pin="380,1940" width="10" x="175" y="205"/> <circ-port height="10" pin="430,1940" width="10" x="175" y="215"/> <circ-port height="10" pin="480,1940" width="10" x="175" y="225"/> <circ-port height="10" pin="530,1940" width="10" x="175" y="235"/> <circ-port height="10" pin="580,1940" width="10" x="175" y="245"/> <circ-port height="10" pin="630,1940" width="10" x="175" y="255"/> <circ-port height="10" pin="680,1940" width="10" x="175" y="265"/> <circ-port height="10" pin="730,1940" width="10" x="175" y="275"/> <circ-port height="8" pin="1700,60" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(390,1860)" to="(390,1930)"/> <wire from="(730,1370)" to="(730,1380)"/> <wire from="(960,60)" to="(960,200)"/> <wire from="(1010,1420)" to="(1050,1420)"/> <wire from="(1790,1790)" to="(1790,1800)"/> <wire from="(450,770)" to="(450,790)"/> <wire from="(950,1120)" to="(950,1850)"/> <wire from="(770,770)" to="(770,790)"/> <wire from="(540,790)" to="(540,1000)"/> <wire from="(1350,1430)" to="(1400,1430)"/> <wire from="(1010,1410)" to="(1060,1410)"/> <wire from="(1440,920)" to="(1450,920)"/> <wire from="(1310,1430)" to="(1320,1430)"/> <wire from="(1170,530)" to="(1170,580)"/> <wire from="(1490,530)" to="(1490,580)"/> <wire from="(1200,1320)" to="(1210,1320)"/> <wire from="(1200,1640)" to="(1210,1640)"/> <wire from="(1180,1940)" to="(1190,1940)"/> <wire from="(1050,1490)" to="(1060,1490)"/> <wire from="(1710,1710)" to="(1710,1770)"/> <wire from="(1010,1450)" to="(1020,1450)"/> <wire from="(1050,1810)" to="(1060,1810)"/> <wire from="(720,1470)" to="(740,1470)"/> <wire from="(820,1070)" to="(1290,1070)"/> <wire from="(290,80)" to="(310,80)"/> <wire from="(380,1450)" to="(400,1450)"/> <wire from="(270,1090)" to="(270,1520)"/> <wire from="(1170,80)" to="(1240,80)"/> <wire from="(1640,930)" to="(1780,930)"/> <wire from="(1840,1630)" to="(1860,1630)"/> <wire from="(1840,1310)" to="(1860,1310)"/> <wire from="(300,100)" to="(310,100)"/> <wire from="(1010,1430)" to="(1040,1430)"/> <wire from="(1030,1450)" to="(1060,1450)"/> <wire from="(960,1790)" to="(1030,1790)"/> <wire from="(180,940)" to="(190,940)"/> <wire from="(2010,1540)" to="(2100,1540)"/> <wire from="(1380,1490)" to="(1400,1490)"/> <wire from="(530,530)" to="(530,580)"/> <wire from="(1520,1630)" to="(1540,1630)"/> <wire from="(180,1010)" to="(180,1130)"/> <wire from="(1010,1440)" to="(1030,1440)"/> <wire from="(850,530)" to="(850,580)"/> <wire from="(1270,1120)" to="(1890,1120)"/> <wire from="(960,1200)" to="(960,1790)"/> <wire from="(900,770)" to="(900,910)"/> <wire from="(70,1550)" to="(130,1550)"/> <wire from="(1180,1950)" to="(1180,1970)"/> <wire from="(2020,1630)" to="(2020,1910)"/> <wire from="(620,810)" to="(620,940)"/> <wire from="(1600,770)" to="(1600,790)"/> <wire from="(450,1860)" to="(450,1870)"/> <wire from="(250,1490)" to="(360,1490)"/> <wire from="(1160,200)" to="(1160,270)"/> <wire from="(710,1090)" to="(710,1300)"/> <wire from="(190,1150)" to="(190,1240)"/> <wire from="(1010,1460)" to="(1010,1470)"/> <wire from="(640,770)" to="(640,790)"/> <wire from="(2020,1180)" to="(2020,1500)"/> <wire from="(1040,530)" to="(1040,580)"/> <wire from="(1250,920)" to="(1330,920)"/> <wire from="(540,1420)" to="(560,1420)"/> <wire from="(1200,1450)" to="(1210,1450)"/> <wire from="(540,1740)" to="(560,1740)"/> <wire from="(1230,1480)" to="(1240,1480)"/> <wire from="(1360,530)" to="(1360,580)"/> <wire from="(1050,1620)" to="(1060,1620)"/> <wire from="(1280,1160)" to="(1870,1160)"/> <wire from="(170,230)" to="(640,230)"/> <wire from="(480,80)" to="(500,80)"/> <wire from="(150,590)" to="(360,590)"/> <wire from="(1840,1440)" to="(1860,1440)"/> <wire from="(490,100)" to="(500,100)"/> <wire from="(1100,1970)" to="(1130,1970)"/> <wire from="(400,530)" to="(400,580)"/> <wire from="(720,530)" to="(720,580)"/> <wire from="(1380,1620)" to="(1400,1620)"/> <wire from="(1130,1900)" to="(1130,1940)"/> <wire from="(740,1630)" to="(750,1630)"/> <wire from="(870,1440)" to="(880,1440)"/> <wire from="(410,790)" to="(410,1040)"/> <wire from="(1670,1090)" to="(1670,1320)"/> <wire from="(1010,1350)" to="(1060,1350)"/> <wire from="(1470,770)" to="(1470,790)"/> <wire from="(1150,770)" to="(1150,790)"/> <wire from="(690,1350)" to="(740,1350)"/> <wire from="(1230,1230)" to="(1230,1380)"/> <wire from="(960,770)" to="(960,840)"/> <wire from="(240,1120)" to="(240,1770)"/> <wire from="(1270,960)" to="(1330,960)"/> <wire from="(1420,1760)" to="(1470,1760)"/> <wire from="(1560,1190)" to="(1880,1190)"/> <wire from="(510,770)" to="(510,790)"/> <wire from="(1490,1750)" to="(1490,1760)"/> <wire from="(1680,1060)" to="(2060,1060)"/> <wire from="(1230,530)" to="(1230,580)"/> <wire from="(1550,530)" to="(1550,580)"/> <wire from="(1280,1020)" to="(1290,1020)"/> <wire from="(1050,1430)" to="(1060,1430)"/> <wire from="(1050,1750)" to="(1060,1750)"/> <wire from="(710,1090)" to="(1050,1090)"/> <wire from="(1770,1710)" to="(1770,1770)"/> <wire from="(90,1310)" to="(90,1350)"/> <wire from="(380,1710)" to="(400,1710)"/> <wire from="(1720,1780)" to="(1730,1780)"/> <wire from="(2020,1500)" to="(2100,1500)"/> <wire from="(1840,1570)" to="(1860,1570)"/> <wire from="(250,310)" to="(250,620)"/> <wire from="(1370,1410)" to="(1400,1410)"/> <wire from="(2080,610)" to="(2080,710)"/> <wire from="(590,530)" to="(590,580)"/> <wire from="(910,530)" to="(910,580)"/> <wire from="(630,1010)" to="(630,1320)"/> <wire from="(1340,770)" to="(1340,790)"/> <wire from="(970,790)" to="(1030,790)"/> <wire from="(1660,770)" to="(1660,790)"/> <wire from="(70,1500)" to="(120,1500)"/> <wire from="(1520,810)" to="(1520,1200)"/> <wire from="(100,1320)" to="(100,1400)"/> <wire from="(1040,1430)" to="(1040,1440)"/> <wire from="(1350,1420)" to="(1350,1430)"/> <wire from="(1100,530)" to="(1100,580)"/> <wire from="(1200,1390)" to="(1210,1390)"/> <wire from="(1200,1710)" to="(1210,1710)"/> <wire from="(580,1400)" to="(600,1400)"/> <wire from="(1420,530)" to="(1420,580)"/> <wire from="(190,250)" to="(190,610)"/> <wire from="(210,270)" to="(210,630)"/> <wire from="(1720,630)" to="(1730,630)"/> <wire from="(990,200)" to="(1020,200)"/> <wire from="(170,990)" to="(190,990)"/> <wire from="(170,230)" to="(170,600)"/> <wire from="(1840,1380)" to="(1860,1380)"/> <wire from="(150,980)" to="(160,980)"/> <wire from="(460,530)" to="(460,580)"/> <wire from="(180,1010)" to="(190,1010)"/> <wire from="(1670,1530)" to="(1690,1530)"/> <wire from="(90,1310)" to="(160,1310)"/> <wire from="(1380,1560)" to="(1400,1560)"/> <wire from="(110,1330)" to="(110,1450)"/> <wire from="(790,1620)" to="(800,1620)"/> <wire from="(1520,1380)" to="(1540,1380)"/> <wire from="(870,1380)" to="(880,1380)"/> <wire from="(1640,930)" to="(1640,1350)"/> <wire from="(150,210)" to="(150,590)"/> <wire from="(780,530)" to="(780,580)"/> <wire from="(220,1150)" to="(920,1150)"/> <wire from="(1670,430)" to="(1770,430)"/> <wire from="(300,1160)" to="(940,1160)"/> <wire from="(1210,770)" to="(1210,790)"/> <wire from="(1900,820)" to="(1900,840)"/> <wire from="(970,1560)" to="(1030,1560)"/> <wire from="(1230,950)" to="(1330,950)"/> <wire from="(190,610)" to="(360,610)"/> <wire from="(440,1880)" to="(680,1880)"/> <wire from="(790,1630)" to="(790,1650)"/> <wire from="(890,770)" to="(890,790)"/> <wire from="(370,1820)" to="(600,1820)"/> <wire from="(570,770)" to="(570,790)"/> <wire from="(1290,530)" to="(1290,580)"/> <wire from="(120,1340)" to="(120,1500)"/> <wire from="(370,1310)" to="(400,1310)"/> <wire from="(1200,1520)" to="(1210,1520)"/> <wire from="(2030,1460)" to="(2100,1460)"/> <wire from="(1050,1690)" to="(1060,1690)"/> <wire from="(2070,1180)" to="(2070,1300)"/> <wire from="(250,1520)" to="(270,1520)"/> <wire from="(1610,530)" to="(1610,580)"/> <wire from="(230,290)" to="(230,720)"/> <wire from="(1770,1770)" to="(1780,1770)"/> <wire from="(1840,1510)" to="(1860,1510)"/> <wire from="(1310,1360)" to="(1400,1360)"/> <wire from="(1530,1190)" to="(1560,1190)"/> <wire from="(1670,1660)" to="(1690,1660)"/> <wire from="(650,530)" to="(650,580)"/> <wire from="(900,1230)" to="(1230,1230)"/> <wire from="(200,1290)" to="(200,1540)"/> <wire from="(1520,1510)" to="(1540,1510)"/> <wire from="(870,1510)" to="(880,1510)"/> <wire from="(970,530)" to="(970,580)"/> <wire from="(1670,1090)" to="(2080,1090)"/> <wire from="(290,680)" to="(360,680)"/> <wire from="(1670,810)" to="(1710,810)"/> <wire from="(1280,970)" to="(1280,990)"/> <wire from="(700,770)" to="(700,900)"/> <wire from="(1060,200)" to="(1100,200)"/> <wire from="(130,1350)" to="(130,1550)"/> <wire from="(1770,1780)" to="(1770,1800)"/> <wire from="(920,930)" to="(920,960)"/> <wire from="(1890,420)" to="(1890,690)"/> <wire from="(440,770)" to="(440,790)"/> <wire from="(380,1860)" to="(380,1940)"/> <wire from="(70,1450)" to="(110,1450)"/> <wire from="(1420,1750)" to="(1420,1760)"/> <wire from="(1630,1390)" to="(1690,1390)"/> <wire from="(670,1030)" to="(970,1030)"/> <wire from="(760,770)" to="(760,790)"/> <wire from="(1380,1390)" to="(1380,1400)"/> <wire from="(960,200)" to="(960,310)"/> <wire from="(1440,930)" to="(1450,930)"/> <wire from="(50,1250)" to="(210,1250)"/> <wire from="(60,1260)" to="(220,1260)"/> <wire from="(70,1270)" to="(230,1270)"/> <wire from="(1160,530)" to="(1160,580)"/> <wire from="(1480,530)" to="(1480,580)"/> <wire from="(1200,1650)" to="(1210,1650)"/> <wire from="(1180,1950)" to="(1190,1950)"/> <wire from="(1130,1900)" to="(1140,1900)"/> <wire from="(1050,1500)" to="(1060,1500)"/> <wire from="(330,440)" to="(360,440)"/> <wire from="(720,1480)" to="(740,1480)"/> <wire from="(1330,60)" to="(1330,120)"/> <wire from="(390,1050)" to="(1240,1050)"/> <wire from="(380,1460)" to="(400,1460)"/> <wire from="(2070,1630)" to="(2070,1710)"/> <wire from="(1840,1640)" to="(1860,1640)"/> <wire from="(1840,1320)" to="(1860,1320)"/> <wire from="(1690,740)" to="(1690,780)"/> <wire from="(140,1360)" to="(140,1600)"/> <wire from="(180,950)" to="(190,950)"/> <wire from="(1380,1500)" to="(1400,1500)"/> <wire from="(520,530)" to="(520,580)"/> <wire from="(1520,1640)" to="(1540,1640)"/> <wire from="(870,1320)" to="(880,1320)"/> <wire from="(1270,960)" to="(1270,1000)"/> <wire from="(840,530)" to="(840,580)"/> <wire from="(980,800)" to="(980,810)"/> <wire from="(860,1640)" to="(860,1650)"/> <wire from="(1590,770)" to="(1590,790)"/> <wire from="(1000,870)" to="(1610,870)"/> <wire from="(160,1130)" to="(160,1210)"/> <wire from="(440,1860)" to="(440,1880)"/> <wire from="(150,1370)" to="(150,1650)"/> <wire from="(1100,1880)" to="(1100,1890)"/> <wire from="(970,790)" to="(970,810)"/> <wire from="(970,1030)" to="(970,1560)"/> <wire from="(900,1230)" to="(900,1310)"/> <wire from="(540,1430)" to="(560,1430)"/> <wire from="(1200,1460)" to="(1210,1460)"/> <wire from="(540,1750)" to="(560,1750)"/> <wire from="(1350,530)" to="(1350,580)"/> <wire from="(1050,1630)" to="(1060,1630)"/> <wire from="(1120,100)" to="(1130,100)"/> <wire from="(1520,1200)" to="(1600,1200)"/> <wire from="(1840,1450)" to="(1860,1450)"/> <wire from="(950,770)" to="(950,830)"/> <wire from="(390,530)" to="(390,580)"/> <wire from="(150,1370)" to="(160,1370)"/> <wire from="(1240,910)" to="(1330,910)"/> <wire from="(2010,1180)" to="(2010,1540)"/> <wire from="(710,530)" to="(710,580)"/> <wire from="(1380,1630)" to="(1400,1630)"/> <wire from="(870,1450)" to="(880,1450)"/> <wire from="(1110,80)" to="(1130,80)"/> <wire from="(1220,900)" to="(1220,1330)"/> <wire from="(1210,890)" to="(1210,1320)"/> <wire from="(1030,530)" to="(1030,580)"/> <wire from="(1080,1970)" to="(1100,1970)"/> <wire from="(1010,1360)" to="(1060,1360)"/> <wire from="(1460,770)" to="(1460,790)"/> <wire from="(1800,240)" to="(1840,240)"/> <wire from="(1470,1740)" to="(1470,1760)"/> <wire from="(1140,770)" to="(1140,790)"/> <wire from="(1250,140)" to="(1420,140)"/> <wire from="(690,1360)" to="(740,1360)"/> <wire from="(290,120)" to="(480,120)"/> <wire from="(1590,90)" to="(1700,90)"/> <wire from="(310,660)" to="(360,660)"/> <wire from="(500,770)" to="(500,790)"/> <wire from="(690,1370)" to="(730,1370)"/> <wire from="(1640,1350)" to="(1690,1350)"/> <wire from="(1050,1960)" to="(1050,1970)"/> <wire from="(150,1150)" to="(190,1150)"/> <wire from="(2040,1420)" to="(2100,1420)"/> <wire from="(2010,1630)" to="(2010,1950)"/> <wire from="(960,1200)" to="(1520,1200)"/> <wire from="(1220,530)" to="(1220,580)"/> <wire from="(200,700)" to="(360,700)"/> <wire from="(70,1400)" to="(100,1400)"/> <wire from="(1200,1590)" to="(1210,1590)"/> <wire from="(1320,1450)" to="(1400,1450)"/> <wire from="(1540,530)" to="(1540,580)"/> <wire from="(1050,1760)" to="(1060,1760)"/> <wire from="(690,1390)" to="(710,1390)"/> <wire from="(690,1380)" to="(720,1380)"/> <wire from="(710,1400)" to="(740,1400)"/> <wire from="(380,1720)" to="(400,1720)"/> <wire from="(540,1000)" to="(1270,1000)"/> <wire from="(1840,1580)" to="(1860,1580)"/> <wire from="(1920,390)" to="(1920,690)"/> <wire from="(350,100)" to="(360,100)"/> <wire from="(1710,1770)" to="(1730,1770)"/> <wire from="(580,530)" to="(580,580)"/> <wire from="(1520,1580)" to="(1540,1580)"/> <wire from="(830,1540)" to="(840,1540)"/> <wire from="(1080,180)" to="(1100,180)"/> <wire from="(690,1400)" to="(700,1400)"/> <wire from="(900,530)" to="(900,580)"/> <wire from="(480,120)" to="(1000,120)"/> <wire from="(1330,770)" to="(1330,790)"/> <wire from="(300,890)" to="(300,960)"/> <wire from="(1160,1880)" to="(1160,1900)"/> <wire from="(890,840)" to="(890,910)"/> <wire from="(1650,770)" to="(1650,790)"/> <wire from="(410,1910)" to="(530,1910)"/> <wire from="(1030,790)" to="(1030,820)"/> <wire from="(870,820)" to="(870,910)"/> <wire from="(520,790)" to="(520,870)"/> <wire from="(880,830)" to="(880,910)"/> <wire from="(460,790)" to="(460,1020)"/> <wire from="(1090,530)" to="(1090,580)"/> <wire from="(1200,1400)" to="(1210,1400)"/> <wire from="(1250,170)" to="(1260,170)"/> <wire from="(540,1690)" to="(560,1690)"/> <wire from="(1200,1720)" to="(1210,1720)"/> <wire from="(1050,1570)" to="(1060,1570)"/> <wire from="(1410,530)" to="(1410,580)"/> <wire from="(300,60)" to="(300,100)"/> <wire from="(1840,60)" to="(1840,240)"/> <wire from="(1150,1970)" to="(1180,1970)"/> <wire from="(1000,1820)" to="(1030,1820)"/> <wire from="(1000,120)" to="(1000,180)"/> <wire from="(1880,1190)" to="(1880,1300)"/> <wire from="(450,530)" to="(450,580)"/> <wire from="(1670,1540)" to="(1690,1540)"/> <wire from="(880,830)" to="(950,830)"/> <wire from="(870,820)" to="(940,820)"/> <wire from="(890,840)" to="(960,840)"/> <wire from="(960,200)" to="(970,200)"/> <wire from="(770,530)" to="(770,580)"/> <wire from="(790,1630)" to="(800,1630)"/> <wire from="(620,1520)" to="(700,1520)"/> <wire from="(1180,1900)" to="(1180,1940)"/> <wire from="(1520,1390)" to="(1540,1390)"/> <wire from="(870,1390)" to="(880,1390)"/> <wire from="(1200,770)" to="(1200,790)"/> <wire from="(1890,820)" to="(1890,840)"/> <wire from="(1560,1190)" to="(1560,1340)"/> <wire from="(1880,1600)" to="(1990,1600)"/> <wire from="(2050,1380)" to="(2100,1380)"/> <wire from="(1250,1150)" to="(1570,1150)"/> <wire from="(1960,710)" to="(2080,710)"/> <wire from="(670,810)" to="(670,1030)"/> <wire from="(570,140)" to="(570,170)"/> <wire from="(1570,1150)" to="(1890,1150)"/> <wire from="(880,770)" to="(880,790)"/> <wire from="(1390,1680)" to="(1440,1680)"/> <wire from="(560,770)" to="(560,790)"/> <wire from="(1280,530)" to="(1280,580)"/> <wire from="(680,890)" to="(1210,890)"/> <wire from="(1200,1530)" to="(1210,1530)"/> <wire from="(330,640)" to="(360,640)"/> <wire from="(1760,690)" to="(1760,740)"/> <wire from="(1600,530)" to="(1600,580)"/> <wire from="(380,1060)" to="(1680,1060)"/> <wire from="(290,1010)" to="(290,1120)"/> <wire from="(1730,150)" to="(2060,150)"/> <wire from="(70,1350)" to="(90,1350)"/> <wire from="(1770,1780)" to="(1780,1780)"/> <wire from="(1310,1390)" to="(1380,1390)"/> <wire from="(490,60)" to="(490,100)"/> <wire from="(1840,1520)" to="(1860,1520)"/> <wire from="(1310,1370)" to="(1400,1370)"/> <wire from="(2060,150)" to="(2060,450)"/> <wire from="(1670,1670)" to="(1690,1670)"/> <wire from="(640,530)" to="(640,580)"/> <wire from="(1520,1520)" to="(1540,1520)"/> <wire from="(960,530)" to="(960,580)"/> <wire from="(690,1340)" to="(700,1340)"/> <wire from="(730,1380)" to="(740,1380)"/> <wire from="(720,1380)" to="(720,1390)"/> <wire from="(1400,1740)" to="(1400,1760)"/> <wire from="(230,290)" to="(1510,290)"/> <wire from="(210,270)" to="(1160,270)"/> <wire from="(1280,1160)" to="(1280,1570)"/> <wire from="(1290,990)" to="(1290,1020)"/> <wire from="(260,1060)" to="(380,1060)"/> <wire from="(1310,1420)" to="(1350,1420)"/> <wire from="(1310,1400)" to="(1370,1400)"/> <wire from="(430,770)" to="(430,790)"/> <wire from="(1950,360)" to="(1950,690)"/> <wire from="(270,1090)" to="(370,1090)"/> <wire from="(1310,1410)" to="(1360,1410)"/> <wire from="(320,430)" to="(360,430)"/> <wire from="(750,770)" to="(750,790)"/> <wire from="(1440,940)" to="(1450,940)"/> <wire from="(1150,530)" to="(1150,580)"/> <wire from="(980,800)" to="(1320,800)"/> <wire from="(1470,530)" to="(1470,580)"/> <wire from="(1200,1660)" to="(1210,1660)"/> <wire from="(1050,1510)" to="(1060,1510)"/> <wire from="(2060,1630)" to="(2060,1750)"/> <wire from="(720,1490)" to="(740,1490)"/> <wire from="(1680,610)" to="(2080,610)"/> <wire from="(380,1470)" to="(400,1470)"/> <wire from="(1840,1650)" to="(1860,1650)"/> <wire from="(1840,1330)" to="(1860,1330)"/> <wire from="(510,530)" to="(510,580)"/> <wire from="(180,960)" to="(190,960)"/> <wire from="(1080,140)" to="(1080,180)"/> <wire from="(1380,1510)" to="(1400,1510)"/> <wire from="(1520,1650)" to="(1540,1650)"/> <wire from="(840,1620)" to="(850,1620)"/> <wire from="(870,1330)" to="(880,1330)"/> <wire from="(830,530)" to="(830,580)"/> <wire from="(1200,1330)" to="(1220,1330)"/> <wire from="(230,1110)" to="(1260,1110)"/> <wire from="(2060,1180)" to="(2060,1340)"/> <wire from="(210,1190)" to="(210,1250)"/> <wire from="(2000,1990)" to="(2100,1990)"/> <wire from="(1260,770)" to="(1260,790)"/> <wire from="(2060,1340)" to="(2100,1340)"/> <wire from="(1950,820)" to="(1950,840)"/> <wire from="(430,1860)" to="(430,1890)"/> <wire from="(840,1630)" to="(840,1650)"/> <wire from="(370,1090)" to="(370,1310)"/> <wire from="(1730,150)" to="(1730,220)"/> <wire from="(1470,1740)" to="(1480,1740)"/> <wire from="(540,1440)" to="(560,1440)"/> <wire from="(540,1760)" to="(560,1760)"/> <wire from="(1340,530)" to="(1340,580)"/> <wire from="(1050,1320)" to="(1060,1320)"/> <wire from="(1050,1640)" to="(1060,1640)"/> <wire from="(1000,830)" to="(1000,870)"/> <wire from="(1660,530)" to="(1660,580)"/> <wire from="(1680,1310)" to="(1690,1310)"/> <wire from="(140,1360)" to="(160,1360)"/> <wire from="(760,1650)" to="(790,1650)"/> <wire from="(250,1600)" to="(400,1600)"/> <wire from="(1840,1460)" to="(1860,1460)"/> <wire from="(1300,1000)" to="(1300,1100)"/> <wire from="(1880,1500)" to="(1900,1500)"/> <wire from="(1240,1190)" to="(1240,1480)"/> <wire from="(380,530)" to="(380,580)"/> <wire from="(1670,1610)" to="(1690,1610)"/> <wire from="(1770,1710)" to="(1790,1710)"/> <wire from="(700,530)" to="(700,580)"/> <wire from="(1380,1640)" to="(1400,1640)"/> <wire from="(870,1460)" to="(880,1460)"/> <wire from="(940,770)" to="(940,820)"/> <wire from="(1020,530)" to="(1020,580)"/> <wire from="(1010,1370)" to="(1060,1370)"/> <wire from="(1450,770)" to="(1450,790)"/> <wire from="(390,790)" to="(390,1050)"/> <wire from="(1030,1950)" to="(1030,1970)"/> <wire from="(1130,770)" to="(1130,790)"/> <wire from="(1700,60)" to="(1700,90)"/> <wire from="(1530,840)" to="(1530,1190)"/> <wire from="(2000,1180)" to="(2000,1580)"/> <wire from="(250,1160)" to="(250,1490)"/> <wire from="(1740,1700)" to="(1740,1710)"/> <wire from="(40,1150)" to="(40,1230)"/> <wire from="(630,1320)" to="(670,1320)"/> <wire from="(490,770)" to="(490,790)"/> <wire from="(810,770)" to="(810,790)"/> <wire from="(1210,530)" to="(1210,580)"/> <wire from="(150,1170)" to="(180,1170)"/> <wire from="(1470,910)" to="(1480,910)"/> <wire from="(1200,1600)" to="(1210,1600)"/> <wire from="(1530,530)" to="(1530,580)"/> <wire from="(1050,1770)" to="(1060,1770)"/> <wire from="(280,990)" to="(300,990)"/> <wire from="(370,1090)" to="(710,1090)"/> <wire from="(380,1410)" to="(400,1410)"/> <wire from="(380,1730)" to="(400,1730)"/> <wire from="(2000,1630)" to="(2000,1990)"/> <wire from="(1740,1800)" to="(1770,1800)"/> <wire from="(570,530)" to="(570,580)"/> <wire from="(1520,1590)" to="(1540,1590)"/> <wire from="(1750,280)" to="(1840,280)"/> <wire from="(890,530)" to="(890,580)"/> <wire from="(1320,770)" to="(1320,790)"/> <wire from="(800,1530)" to="(800,1540)"/> <wire from="(1080,1900)" to="(1120,1900)"/> <wire from="(990,940)" to="(990,1330)"/> <wire from="(1640,770)" to="(1640,790)"/> <wire from="(510,790)" to="(510,860)"/> <wire from="(470,810)" to="(470,1010)"/> <wire from="(2060,600)" to="(2060,1060)"/> <wire from="(1030,1440)" to="(1030,1450)"/> <wire from="(1080,530)" to="(1080,580)"/> <wire from="(1680,1060)" to="(1680,1310)"/> <wire from="(540,100)" to="(560,100)"/> <wire from="(1200,1410)" to="(1210,1410)"/> <wire from="(540,1700)" to="(560,1700)"/> <wire from="(1200,1730)" to="(1210,1730)"/> <wire from="(1050,1580)" to="(1060,1580)"/> <wire from="(1400,530)" to="(1400,580)"/> <wire from="(1310,820)" to="(1310,1010)"/> <wire from="(450,1870)" to="(730,1870)"/> <wire from="(1750,240)" to="(1750,280)"/> <wire from="(440,530)" to="(440,580)"/> <wire from="(1670,1550)" to="(1690,1550)"/> <wire from="(760,530)" to="(760,580)"/> <wire from="(2010,1950)" to="(2100,1950)"/> <wire from="(1380,1580)" to="(1400,1580)"/> <wire from="(1520,1400)" to="(1540,1400)"/> <wire from="(2070,1300)" to="(2100,1300)"/> <wire from="(1130,1970)" to="(1150,1970)"/> <wire from="(850,810)" to="(850,950)"/> <wire from="(1730,440)" to="(1770,440)"/> <wire from="(1510,770)" to="(1510,790)"/> <wire from="(1670,450)" to="(1770,450)"/> <wire from="(1190,770)" to="(1190,790)"/> <wire from="(1880,820)" to="(1880,840)"/> <wire from="(430,1930)" to="(430,1940)"/> <wire from="(700,1330)" to="(740,1330)"/> <wire from="(250,620)" to="(360,620)"/> <wire from="(870,770)" to="(870,790)"/> <wire from="(1100,1960)" to="(1100,1970)"/> <wire from="(550,770)" to="(550,790)"/> <wire from="(1400,1740)" to="(1410,1740)"/> <wire from="(1270,530)" to="(1270,580)"/> <wire from="(1320,1020)" to="(1330,1020)"/> <wire from="(1200,1540)" to="(1210,1540)"/> <wire from="(1460,1680)" to="(1460,1730)"/> <wire from="(1050,1710)" to="(1060,1710)"/> <wire from="(570,140)" to="(780,140)"/> <wire from="(1590,530)" to="(1590,580)"/> <wire from="(160,1130)" to="(180,1130)"/> <wire from="(1680,740)" to="(1690,740)"/> <wire from="(1510,60)" to="(1510,290)"/> <wire from="(1840,1530)" to="(1860,1530)"/> <wire from="(1330,120)" to="(1420,120)"/> <wire from="(680,770)" to="(680,890)"/> <wire from="(1310,1380)" to="(1400,1380)"/> <wire from="(1270,1660)" to="(1360,1660)"/> <wire from="(1560,1570)" to="(1580,1570)"/> <wire from="(1670,1680)" to="(1690,1680)"/> <wire from="(1300,980)" to="(1330,980)"/> <wire from="(1120,60)" to="(1120,100)"/> <wire from="(1710,1710)" to="(1740,1710)"/> <wire from="(630,530)" to="(630,580)"/> <wire from="(1680,720)" to="(1710,720)"/> <wire from="(1520,1530)" to="(1540,1530)"/> <wire from="(950,530)" to="(950,580)"/> <wire from="(860,980)" to="(1230,980)"/> <wire from="(1020,1460)" to="(1060,1460)"/> <wire from="(310,420)" to="(360,420)"/> <wire from="(620,1240)" to="(870,1240)"/> <wire from="(420,770)" to="(420,790)"/> <wire from="(1880,430)" to="(1880,690)"/> <wire from="(310,970)" to="(310,1320)"/> <wire from="(180,1170)" to="(180,1200)"/> <wire from="(740,770)" to="(740,790)"/> <wire from="(1370,1400)" to="(1370,1410)"/> <wire from="(1140,530)" to="(1140,580)"/> <wire from="(1000,180)" to="(1020,180)"/> <wire from="(50,1140)" to="(80,1140)"/> <wire from="(1460,530)" to="(1460,580)"/> <wire from="(580,1680)" to="(600,1680)"/> <wire from="(1050,1520)" to="(1060,1520)"/> <wire from="(720,1500)" to="(740,1500)"/> <wire from="(380,1480)" to="(400,1480)"/> <wire from="(2020,1910)" to="(2100,1910)"/> <wire from="(1840,1660)" to="(1860,1660)"/> <wire from="(1840,1340)" to="(1860,1340)"/> <wire from="(1300,880)" to="(1300,980)"/> <wire from="(1650,1730)" to="(1930,1730)"/> <wire from="(1230,1680)" to="(1260,1680)"/> <wire from="(1680,670)" to="(1830,670)"/> <wire from="(500,530)" to="(500,580)"/> <wire from="(180,970)" to="(190,970)"/> <wire from="(1380,1520)" to="(1400,1520)"/> <wire from="(840,1630)" to="(850,1630)"/> <wire from="(870,1340)" to="(880,1340)"/> <wire from="(130,1060)" to="(260,1060)"/> <wire from="(820,530)" to="(820,580)"/> <wire from="(1670,390)" to="(1770,390)"/> <wire from="(1250,770)" to="(1250,790)"/> <wire from="(1940,820)" to="(1940,840)"/> <wire from="(240,1120)" to="(290,1120)"/> <wire from="(950,1120)" to="(1270,1120)"/> <wire from="(70,700)" to="(180,700)"/> <wire from="(1260,1110)" to="(1580,1110)"/> <wire from="(1690,780)" to="(1870,780)"/> <wire from="(2050,1180)" to="(2050,1380)"/> <wire from="(1580,1110)" to="(1900,1110)"/> <wire from="(480,1920)" to="(480,1940)"/> <wire from="(610,770)" to="(610,790)"/> <wire from="(130,1350)" to="(160,1350)"/> <wire from="(740,1650)" to="(760,1650)"/> <wire from="(560,190)" to="(580,190)"/> <wire from="(540,1450)" to="(560,1450)"/> <wire from="(1330,530)" to="(1330,580)"/> <wire from="(1050,1650)" to="(1060,1650)"/> <wire from="(1030,1950)" to="(1040,1950)"/> <wire from="(1650,530)" to="(1650,580)"/> <wire from="(390,100)" to="(390,210)"/> <wire from="(1310,190)" to="(1310,250)"/> <wire from="(420,1860)" to="(420,1900)"/> <wire from="(1840,1470)" to="(1860,1470)"/> <wire from="(1670,1620)" to="(1690,1620)"/> <wire from="(370,530)" to="(370,580)"/> <wire from="(690,530)" to="(690,580)"/> <wire from="(1800,460)" to="(1830,460)"/> <wire from="(1380,1330)" to="(1400,1330)"/> <wire from="(1380,1650)" to="(1400,1650)"/> <wire from="(1460,1730)" to="(1480,1730)"/> <wire from="(870,1470)" to="(880,1470)"/> <wire from="(1010,530)" to="(1010,580)"/> <wire from="(730,1650)" to="(740,1650)"/> <wire from="(2050,1630)" to="(2050,1790)"/> <wire from="(1010,1380)" to="(1060,1380)"/> <wire from="(1440,770)" to="(1440,790)"/> <wire from="(1120,770)" to="(1120,790)"/> <wire from="(1360,1420)" to="(1400,1420)"/> <wire from="(50,1170)" to="(50,1250)"/> <wire from="(800,770)" to="(800,790)"/> <wire from="(780,140)" to="(1080,140)"/> <wire from="(70,1090)" to="(110,1090)"/> <wire from="(740,1540)" to="(740,1620)"/> <wire from="(930,770)" to="(930,850)"/> <wire from="(1200,530)" to="(1200,580)"/> <wire from="(1200,1610)" to="(1210,1610)"/> <wire from="(1520,530)" to="(1520,580)"/> <wire from="(2030,1870)" to="(2100,1870)"/> <wire from="(1050,1780)" to="(1060,1780)"/> <wire from="(420,1900)" to="(580,1900)"/> <wire from="(720,1440)" to="(740,1440)"/> <wire from="(1390,1680)" to="(1390,1730)"/> <wire from="(1890,1150)" to="(1890,1400)"/> <wire from="(380,1740)" to="(400,1740)"/> <wire from="(380,1420)" to="(400,1420)"/> <wire from="(1750,240)" to="(1760,240)"/> <wire from="(1710,1800)" to="(1720,1800)"/> <wire from="(150,1190)" to="(170,1190)"/> <wire from="(1710,720)" to="(1710,760)"/> <wire from="(280,1010)" to="(290,1010)"/> <wire from="(1720,1800)" to="(1740,1800)"/> <wire from="(70,1120)" to="(80,1120)"/> <wire from="(560,530)" to="(560,580)"/> <wire from="(1520,1600)" to="(1540,1600)"/> <wire from="(1630,1380)" to="(1660,1380)"/> <wire from="(1660,1410)" to="(1690,1410)"/> <wire from="(1040,1440)" to="(1060,1440)"/> <wire from="(880,530)" to="(880,580)"/> <wire from="(1910,400)" to="(1910,690)"/> <wire from="(410,1040)" to="(1250,1040)"/> <wire from="(980,1480)" to="(1030,1480)"/> <wire from="(600,1400)" to="(600,1540)"/> <wire from="(1140,1880)" to="(1140,1900)"/> <wire from="(1630,770)" to="(1630,790)"/> <wire from="(150,210)" to="(390,210)"/> <wire from="(530,1910)" to="(530,1940)"/> <wire from="(1070,530)" to="(1070,580)"/> <wire from="(900,1430)" to="(920,1430)"/> <wire from="(940,1160)" to="(1280,1160)"/> <wire from="(1200,1420)" to="(1210,1420)"/> <wire from="(620,190)" to="(640,190)"/> <wire from="(540,1710)" to="(560,1710)"/> <wire from="(1200,1740)" to="(1210,1740)"/> <wire from="(1380,1090)" to="(1380,1330)"/> <wire from="(1050,1590)" to="(1060,1590)"/> <wire from="(1390,530)" to="(1390,580)"/> <wire from="(990,770)" to="(990,810)"/> <wire from="(70,1300)" to="(160,1300)"/> <wire from="(1080,1940)" to="(1090,1940)"/> <wire from="(1590,90)" to="(1590,140)"/> <wire from="(220,1150)" to="(220,1260)"/> <wire from="(810,1650)" to="(840,1650)"/> <wire from="(1840,1410)" to="(1860,1410)"/> <wire from="(430,530)" to="(430,580)"/> <wire from="(1670,1560)" to="(1690,1560)"/> <wire from="(920,1150)" to="(1250,1150)"/> <wire from="(750,530)" to="(750,580)"/> <wire from="(1380,1590)" to="(1400,1590)"/> <wire from="(1710,760)" to="(1870,760)"/> <wire from="(1520,1410)" to="(1540,1410)"/> <wire from="(170,600)" to="(360,600)"/> <wire from="(1500,770)" to="(1500,790)"/> <wire from="(620,940)" to="(990,940)"/> <wire from="(1670,460)" to="(1770,460)"/> <wire from="(690,1320)" to="(740,1320)"/> <wire from="(1080,1950)" to="(1080,1970)"/> <wire from="(1180,770)" to="(1180,790)"/> <wire from="(1240,1190)" to="(1530,1190)"/> <wire from="(1790,1700)" to="(1790,1710)"/> <wire from="(1570,1150)" to="(1570,1480)"/> <wire from="(1600,1590)" to="(1650,1590)"/> <wire from="(150,890)" to="(150,980)"/> <wire from="(860,770)" to="(860,790)"/> <wire from="(130,140)" to="(130,1060)"/> <wire from="(540,770)" to="(540,790)"/> <wire from="(1440,1670)" to="(1440,1680)"/> <wire from="(1260,530)" to="(1260,580)"/> <wire from="(1020,1890)" to="(1020,1940)"/> <wire from="(1200,1550)" to="(1210,1550)"/> <wire from="(40,1230)" to="(900,1230)"/> <wire from="(1050,1090)" to="(1380,1090)"/> <wire from="(1050,1720)" to="(1060,1720)"/> <wire from="(760,790)" to="(760,1080)"/> <wire from="(1580,530)" to="(1580,580)"/> <wire from="(1840,1540)" to="(1860,1540)"/> <wire from="(280,690)" to="(360,690)"/> <wire from="(1310,1010)" to="(1330,1010)"/> <wire from="(1380,1400)" to="(1400,1400)"/> <wire from="(1390,1730)" to="(1410,1730)"/> <wire from="(620,530)" to="(620,580)"/> <wire from="(1520,1540)" to="(1540,1540)"/> <wire from="(940,530)" to="(940,580)"/> <wire from="(230,720)" to="(360,720)"/> <wire from="(1140,200)" to="(1160,200)"/> <wire from="(700,1700)" to="(1030,1700)"/> <wire from="(300,410)" to="(360,410)"/> <wire from="(1370,770)" to="(1370,790)"/> <wire from="(710,1390)" to="(710,1400)"/> <wire from="(840,810)" to="(840,1010)"/> <wire from="(1660,1380)" to="(1660,1410)"/> <wire from="(110,120)" to="(110,1090)"/> <wire from="(1230,950)" to="(1230,980)"/> <wire from="(410,770)" to="(410,790)"/> <wire from="(40,1130)" to="(80,1130)"/> <wire from="(2040,1830)" to="(2100,1830)"/> <wire from="(1940,370)" to="(1940,690)"/> <wire from="(730,770)" to="(730,790)"/> <wire from="(580,1900)" to="(580,1940)"/> <wire from="(1130,530)" to="(1130,580)"/> <wire from="(1450,530)" to="(1450,580)"/> <wire from="(1050,1530)" to="(1060,1530)"/> <wire from="(720,1510)" to="(740,1510)"/> <wire from="(1880,1400)" to="(1890,1400)"/> <wire from="(180,1290)" to="(200,1290)"/> <wire from="(1840,1670)" to="(1860,1670)"/> <wire from="(1840,1350)" to="(1860,1350)"/> <wire from="(1650,1690)" to="(1650,1730)"/> <wire from="(1970,1160)" to="(1990,1160)"/> <wire from="(1590,140)" to="(1610,140)"/> <wire from="(490,530)" to="(490,580)"/> <wire from="(1380,1530)" to="(1400,1530)"/> <wire from="(1520,1350)" to="(1540,1350)"/> <wire from="(870,1350)" to="(880,1350)"/> <wire from="(1250,1150)" to="(1250,1580)"/> <wire from="(810,530)" to="(810,580)"/> <wire from="(1180,1970)" to="(1200,1970)"/> <wire from="(1930,1120)" to="(1930,1730)"/> <wire from="(1670,400)" to="(1770,400)"/> <wire from="(1240,770)" to="(1240,790)"/> <wire from="(1930,820)" to="(1930,840)"/> <wire from="(1250,140)" to="(1250,170)"/> <wire from="(370,1820)" to="(370,1840)"/> <wire from="(1150,1960)" to="(1150,1970)"/> <wire from="(120,1340)" to="(160,1340)"/> <wire from="(600,770)" to="(600,790)"/> <wire from="(390,1930)" to="(430,1930)"/> <wire from="(850,810)" to="(870,810)"/> <wire from="(540,1460)" to="(560,1460)"/> <wire from="(1200,1490)" to="(1210,1490)"/> <wire from="(1600,1200)" to="(1860,1200)"/> <wire from="(1320,530)" to="(1320,580)"/> <wire from="(1050,1660)" to="(1060,1660)"/> <wire from="(710,1300)" to="(740,1300)"/> <wire from="(380,1300)" to="(400,1300)"/> <wire from="(1640,530)" to="(1640,580)"/> <wire from="(2040,1180)" to="(2040,1420)"/> <wire from="(1840,1480)" to="(1860,1480)"/> <wire from="(1610,870)" to="(1610,1360)"/> <wire from="(410,1860)" to="(410,1910)"/> <wire from="(1670,1630)" to="(1690,1630)"/> <wire from="(680,530)" to="(680,580)"/> <wire from="(870,1480)" to="(880,1480)"/> <wire from="(1020,1940)" to="(1040,1940)"/> <wire from="(1000,530)" to="(1000,580)"/> <wire from="(250,310)" to="(960,310)"/> <wire from="(330,1330)" to="(400,1330)"/> <wire from="(300,670)" to="(360,670)"/> <wire from="(1010,1390)" to="(1060,1390)"/> <wire from="(1110,770)" to="(1110,790)"/> <wire from="(60,1190)" to="(60,1260)"/> <wire from="(1830,460)" to="(1830,670)"/> <wire from="(2050,1790)" to="(2100,1790)"/> <wire from="(300,960)" to="(920,960)"/> <wire from="(700,1410)" to="(740,1410)"/> <wire from="(2040,1630)" to="(2040,1830)"/> <wire from="(790,770)" to="(790,790)"/> <wire from="(980,1010)" to="(980,1480)"/> <wire from="(1290,1070)" to="(1290,1340)"/> <wire from="(1670,440)" to="(1730,440)"/> <wire from="(920,770)" to="(920,850)"/> <wire from="(1190,530)" to="(1190,580)"/> <wire from="(1200,1620)" to="(1210,1620)"/> <wire from="(1510,530)" to="(1510,580)"/> <wire from="(1050,1790)" to="(1060,1790)"/> <wire from="(720,1450)" to="(740,1450)"/> <wire from="(380,1430)" to="(400,1430)"/> <wire from="(380,1750)" to="(400,1750)"/> <wire from="(1840,1610)" to="(1860,1610)"/> <wire from="(150,1210)" to="(160,1210)"/> <wire from="(630,1890)" to="(630,1940)"/> <wire from="(550,530)" to="(550,580)"/> <wire from="(1520,1610)" to="(1540,1610)"/> <wire from="(870,530)" to="(870,580)"/> <wire from="(1320,1430)" to="(1320,1450)"/> <wire from="(940,1830)" to="(1060,1830)"/> <wire from="(1760,740)" to="(1870,740)"/> <wire from="(1620,770)" to="(1620,790)"/> <wire from="(240,1770)" to="(360,1770)"/> <wire from="(980,770)" to="(980,800)"/> <wire from="(920,1150)" to="(920,1430)"/> <wire from="(1020,1450)" to="(1020,1460)"/> <wire from="(950,1850)" to="(1060,1850)"/> <wire from="(660,770)" to="(660,790)"/> <wire from="(1780,680)" to="(1840,680)"/> <wire from="(790,1650)" to="(810,1650)"/> <wire from="(1060,530)" to="(1060,580)"/> <wire from="(110,1090)" to="(270,1090)"/> <wire from="(1200,1430)" to="(1210,1430)"/> <wire from="(1280,1570)" to="(1360,1570)"/> <wire from="(540,1720)" to="(560,1720)"/> <wire from="(1200,1750)" to="(1210,1750)"/> <wire from="(1380,530)" to="(1380,580)"/> <wire from="(1080,1950)" to="(1090,1950)"/> <wire from="(1680,690)" to="(1760,690)"/> <wire from="(290,80)" to="(290,120)"/> <wire from="(1840,1420)" to="(1860,1420)"/> <wire from="(420,530)" to="(420,580)"/> <wire from="(1970,1120)" to="(1970,1160)"/> <wire from="(1670,1570)" to="(1690,1570)"/> <wire from="(380,1060)" to="(380,1300)"/> <wire from="(1050,1090)" to="(1050,1320)"/> <wire from="(180,1200)" to="(960,1200)"/> <wire from="(740,530)" to="(740,580)"/> <wire from="(1380,1600)" to="(1400,1600)"/> <wire from="(1460,1680)" to="(1480,1680)"/> <wire from="(1520,1420)" to="(1540,1420)"/> <wire from="(1490,770)" to="(1490,790)"/> <wire from="(1170,770)" to="(1170,790)"/> <wire from="(760,1640)" to="(760,1650)"/> <wire from="(1650,130)" to="(2080,130)"/> <wire from="(200,1160)" to="(250,1160)"/> <wire from="(940,1160)" to="(940,1830)"/> <wire from="(260,1060)" to="(260,1590)"/> <wire from="(850,770)" to="(850,790)"/> <wire from="(870,790)" to="(870,810)"/> <wire from="(530,770)" to="(530,790)"/> <wire from="(790,1540)" to="(790,1620)"/> <wire from="(320,650)" to="(360,650)"/> <wire from="(340,1340)" to="(340,1620)"/> <wire from="(1250,530)" to="(1250,580)"/> <wire from="(2080,710)" to="(2080,1090)"/> <wire from="(1200,1560)" to="(1210,1560)"/> <wire from="(1800,380)" to="(1930,380)"/> <wire from="(1050,1730)" to="(1060,1730)"/> <wire from="(720,1390)" to="(740,1390)"/> <wire from="(1650,150)" to="(1730,150)"/> <wire from="(1570,530)" to="(1570,580)"/> <wire from="(380,1690)" to="(400,1690)"/> <wire from="(1800,370)" to="(1940,370)"/> <wire from="(480,80)" to="(480,120)"/> <wire from="(1840,1550)" to="(1860,1550)"/> <wire from="(1800,360)" to="(1950,360)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(1300,1000)" to="(1330,1000)"/> <wire from="(680,1880)" to="(680,1940)"/> <wire from="(1770,1800)" to="(1790,1800)"/> <wire from="(2060,1750)" to="(2100,1750)"/> <wire from="(840,1010)" to="(980,1010)"/> <wire from="(610,530)" to="(610,580)"/> <wire from="(1520,1550)" to="(1540,1550)"/> <wire from="(930,530)" to="(930,580)"/> <wire from="(750,790)" to="(750,1100)"/> <wire from="(290,400)" to="(360,400)"/> <wire from="(2080,130)" to="(2080,610)"/> <wire from="(1230,1580)" to="(1250,1580)"/> <wire from="(1360,770)" to="(1360,790)"/> <wire from="(1800,410)" to="(1900,410)"/> <wire from="(1800,400)" to="(1910,400)"/> <wire from="(1740,1790)" to="(1740,1800)"/> <wire from="(400,770)" to="(400,790)"/> <wire from="(1800,390)" to="(1920,390)"/> <wire from="(750,1100)" to="(1300,1100)"/> <wire from="(1970,860)" to="(1970,1120)"/> <wire from="(1050,1420)" to="(1050,1430)"/> <wire from="(780,60)" to="(780,140)"/> <wire from="(1360,1410)" to="(1360,1420)"/> <wire from="(1020,1890)" to="(1100,1890)"/> <wire from="(1120,530)" to="(1120,580)"/> <wire from="(1440,530)" to="(1440,580)"/> <wire from="(1200,1690)" to="(1210,1690)"/> <wire from="(1130,1940)" to="(1140,1940)"/> <wire from="(1300,190)" to="(1310,190)"/> <wire from="(1800,430)" to="(1880,430)"/> <wire from="(1840,1680)" to="(1860,1680)"/> <wire from="(1840,1360)" to="(1860,1360)"/> <wire from="(480,530)" to="(480,580)"/> <wire from="(1670,1510)" to="(1690,1510)"/> <wire from="(1380,1540)" to="(1400,1540)"/> <wire from="(1520,1360)" to="(1540,1360)"/> <wire from="(870,1360)" to="(880,1360)"/> <wire from="(1800,420)" to="(1890,420)"/> <wire from="(800,530)" to="(800,580)"/> <wire from="(800,880)" to="(1300,880)"/> <wire from="(2070,1710)" to="(2100,1710)"/> <wire from="(1670,410)" to="(1770,410)"/> <wire from="(1230,770)" to="(1230,790)"/> <wire from="(1130,1950)" to="(1130,1970)"/> <wire from="(1920,820)" to="(1920,840)"/> <wire from="(130,140)" to="(570,140)"/> <wire from="(1840,280)" to="(1840,680)"/> <wire from="(110,1330)" to="(160,1330)"/> <wire from="(330,440)" to="(330,640)"/> <wire from="(620,1240)" to="(620,1520)"/> <wire from="(320,430)" to="(320,650)"/> <wire from="(590,770)" to="(590,790)"/> <wire from="(540,1470)" to="(560,1470)"/> <wire from="(1200,1500)" to="(1210,1500)"/> <wire from="(230,1110)" to="(230,1270)"/> <wire from="(1310,530)" to="(1310,580)"/> <wire from="(1050,1670)" to="(1060,1670)"/> <wire from="(1800,450)" to="(2060,450)"/> <wire from="(150,890)" to="(300,890)"/> <wire from="(210,630)" to="(360,630)"/> <wire from="(1630,530)" to="(1630,580)"/> <wire from="(1050,1970)" to="(1080,1970)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(1670,1320)" to="(1690,1320)"/> <wire from="(1670,1640)" to="(1690,1640)"/> <wire from="(670,530)" to="(670,580)"/> <wire from="(1080,1900)" to="(1080,1940)"/> <wire from="(400,1860)" to="(400,1920)"/> <wire from="(1520,1490)" to="(1540,1490)"/> <wire from="(1470,1760)" to="(1490,1760)"/> <wire from="(870,1490)" to="(880,1490)"/> <wire from="(990,530)" to="(990,580)"/> <wire from="(70,1210)" to="(70,1270)"/> <wire from="(430,1890)" to="(630,1890)"/> <wire from="(300,410)" to="(300,670)"/> <wire from="(550,790)" to="(550,990)"/> <wire from="(1010,1400)" to="(1060,1400)"/> <wire from="(690,1320)" to="(690,1330)"/> <wire from="(700,1330)" to="(700,1340)"/> <wire from="(1900,410)" to="(1900,690)"/> <wire from="(1100,770)" to="(1100,790)"/> <wire from="(2030,1180)" to="(2030,1460)"/> <wire from="(1380,1090)" to="(1670,1090)"/> <wire from="(730,1870)" to="(730,1940)"/> <wire from="(310,970)" to="(940,970)"/> <wire from="(560,100)" to="(560,190)"/> <wire from="(460,770)" to="(460,790)"/> <wire from="(780,770)" to="(780,790)"/> <wire from="(1900,1110)" to="(1900,1500)"/> <wire from="(290,400)" to="(290,680)"/> <wire from="(1630,1370)" to="(1690,1370)"/> <wire from="(1180,530)" to="(1180,580)"/> <wire from="(1500,530)" to="(1500,580)"/> <wire from="(1200,1630)" to="(1210,1630)"/> <wire from="(1050,1800)" to="(1060,1800)"/> <wire from="(470,1010)" to="(630,1010)"/> <wire from="(720,1460)" to="(740,1460)"/> <wire from="(460,1020)" to="(1260,1020)"/> <wire from="(280,390)" to="(280,690)"/> <wire from="(380,1760)" to="(400,1760)"/> <wire from="(380,1440)" to="(400,1440)"/> <wire from="(2030,1630)" to="(2030,1870)"/> <wire from="(300,990)" to="(300,1160)"/> <wire from="(850,950)" to="(1200,950)"/> <wire from="(1840,1620)" to="(1860,1620)"/> <wire from="(1110,120)" to="(1330,120)"/> <wire from="(760,1080)" to="(1280,1080)"/> <wire from="(180,930)" to="(190,930)"/> <wire from="(1730,220)" to="(1760,220)"/> <wire from="(540,530)" to="(540,580)"/> <wire from="(790,1540)" to="(800,1540)"/> <wire from="(1520,1620)" to="(1540,1620)"/> <wire from="(1160,1900)" to="(1180,1900)"/> <wire from="(860,530)" to="(860,580)"/> <wire from="(910,770)" to="(910,910)"/> <wire from="(1680,680)" to="(1780,680)"/> <wire from="(1120,1880)" to="(1120,1900)"/> <wire from="(1080,140)" to="(1250,140)"/> <wire from="(770,1530)" to="(770,1540)"/> <wire from="(1260,930)" to="(1260,1020)"/> <wire from="(1610,770)" to="(1610,790)"/> <wire from="(110,120)" to="(290,120)"/> <wire from="(250,1520)" to="(250,1600)"/> <wire from="(1580,1110)" to="(1580,1570)"/> <wire from="(800,790)" to="(800,880)"/> <wire from="(1200,1960)" to="(1200,1970)"/> <wire from="(970,770)" to="(970,790)"/> <wire from="(1680,600)" to="(2060,600)"/> <wire from="(650,770)" to="(650,790)"/> <wire from="(1050,530)" to="(1050,580)"/> <wire from="(190,250)" to="(1310,250)"/> <wire from="(540,1410)" to="(560,1410)"/> <wire from="(1200,1440)" to="(1210,1440)"/> <wire from="(540,1730)" to="(560,1730)"/> <wire from="(1200,1760)" to="(1210,1760)"/> <wire from="(1370,530)" to="(1370,580)"/> <wire from="(1260,930)" to="(1330,930)"/> <wire from="(1250,920)" to="(1250,1040)"/> <wire from="(1200,940)" to="(1330,940)"/> <wire from="(1560,1480)" to="(1570,1480)"/> <wire from="(1840,1430)" to="(1860,1430)"/> <wire from="(260,1590)" to="(400,1590)"/> <wire from="(70,1650)" to="(150,1650)"/> <wire from="(410,530)" to="(410,580)"/> <wire from="(1680,630)" to="(1700,630)"/> <wire from="(1670,1580)" to="(1690,1580)"/> <wire from="(730,530)" to="(730,580)"/> <wire from="(1380,1610)" to="(1400,1610)"/> <wire from="(740,1620)" to="(750,1620)"/> <wire from="(570,170)" to="(580,170)"/> <wire from="(1240,190)" to="(1260,190)"/> <wire from="(210,1190)" to="(1240,1190)"/> <wire from="(700,1520)" to="(700,1700)"/> <wire from="(1010,1340)" to="(1060,1340)"/> <wire from="(340,1620)" to="(400,1620)"/> <wire from="(1480,770)" to="(1480,790)"/> <wire from="(1160,770)" to="(1160,790)"/> <wire from="(2060,450)" to="(2060,600)"/> <wire from="(170,990)" to="(170,1190)"/> <wire from="(1290,990)" to="(1330,990)"/> <wire from="(1270,1120)" to="(1270,1660)"/> <wire from="(190,1240)" to="(620,1240)"/> <wire from="(1990,1600)" to="(1990,1610)"/> <wire from="(520,770)" to="(520,790)"/> <wire from="(1000,120)" to="(1110,120)"/> <wire from="(1280,970)" to="(1330,970)"/> <wire from="(740,1630)" to="(740,1650)"/> <wire from="(1240,910)" to="(1240,1050)"/> <wire from="(1240,530)" to="(1240,580)"/> <wire from="(1780,680)" to="(1780,930)"/> <wire from="(1390,1760)" to="(1400,1760)"/> <wire from="(1730,440)" to="(1730,630)"/> <wire from="(1560,530)" to="(1560,580)"/> <wire from="(1050,1740)" to="(1060,1740)"/> <wire from="(1260,1110)" to="(1260,1680)"/> <wire from="(380,1700)" to="(400,1700)"/> <wire from="(1930,380)" to="(1930,690)"/> <wire from="(40,860)" to="(510,860)"/> <wire from="(50,870)" to="(520,870)"/> <wire from="(550,990)" to="(1280,990)"/> <wire from="(1840,1560)" to="(1860,1560)"/> <wire from="(330,1340)" to="(340,1340)"/> <wire from="(280,390)" to="(360,390)"/> <wire from="(1110,80)" to="(1110,120)"/> <wire from="(1400,1760)" to="(1420,1760)"/> <wire from="(600,530)" to="(600,580)"/> <wire from="(1520,1560)" to="(1540,1560)"/> <wire from="(920,530)" to="(920,580)"/> <wire from="(1240,80)" to="(1240,190)"/> <wire from="(700,1400)" to="(700,1410)"/> <wire from="(2000,1580)" to="(2100,1580)"/> <wire from="(1710,810)" to="(1710,840)"/> <wire from="(1930,1120)" to="(1970,1120)"/> <wire from="(600,1680)" to="(600,1820)"/> <wire from="(830,1530)" to="(830,1540)"/> <wire from="(1720,1780)" to="(1720,1800)"/> <wire from="(40,860)" to="(40,1130)"/> <wire from="(50,870)" to="(50,1140)"/> <wire from="(390,770)" to="(390,790)"/> <wire from="(1200,940)" to="(1200,950)"/> <wire from="(40,1150)" to="(80,1150)"/> <wire from="(1530,840)" to="(1710,840)"/> <wire from="(1010,1470)" to="(1060,1470)"/> <wire from="(1600,1200)" to="(1600,1590)"/> <wire from="(70,1090)" to="(70,1120)"/> <wire from="(840,1650)" to="(860,1650)"/> <wire from="(1110,530)" to="(1110,580)"/> <wire from="(50,1170)" to="(80,1170)"/> <wire from="(1200,1700)" to="(1210,1700)"/> <wire from="(1130,1950)" to="(1140,1950)"/> <wire from="(1430,530)" to="(1430,580)"/> <wire from="(1960,860)" to="(1970,860)"/> <wire from="(740,1540)" to="(770,1540)"/> <wire from="(290,1120)" to="(950,1120)"/> <wire from="(940,870)" to="(940,970)"/> <wire from="(60,1190)" to="(80,1190)"/> <wire from="(1280,1020)" to="(1280,1080)"/> <wire from="(1840,1370)" to="(1860,1370)"/> <wire from="(470,530)" to="(470,580)"/> <wire from="(1670,1520)" to="(1690,1520)"/> <wire from="(400,1920)" to="(480,1920)"/> <wire from="(70,1210)" to="(80,1210)"/> <wire from="(1030,820)" to="(1310,820)"/> <wire from="(1380,1550)" to="(1400,1550)"/> <wire from="(1440,970)" to="(1460,970)"/> <wire from="(70,1600)" to="(140,1600)"/> <wire from="(1520,1370)" to="(1540,1370)"/> <wire from="(870,1370)" to="(880,1370)"/> <wire from="(790,530)" to="(790,580)"/> <wire from="(1670,420)" to="(1770,420)"/> <wire from="(1220,770)" to="(1220,790)"/> <wire from="(100,1320)" to="(160,1320)"/> <wire from="(810,1640)" to="(810,1650)"/> <wire from="(820,810)" to="(820,1070)"/> <wire from="(1320,800)" to="(1320,1020)"/> <wire from="(1910,820)" to="(1910,840)"/> <wire from="(250,1160)" to="(300,1160)"/> <wire from="(200,1120)" to="(240,1120)"/> <wire from="(580,770)" to="(580,790)"/> <wire from="(840,1540)" to="(840,1620)"/> <wire from="(1480,1670)" to="(1480,1680)"/> <wire from="(1300,530)" to="(1300,580)"/> <wire from="(640,190)" to="(640,230)"/> <wire from="(540,1480)" to="(560,1480)"/> <wire from="(1200,1510)" to="(1210,1510)"/> <wire from="(1050,1680)" to="(1060,1680)"/> <wire from="(1020,1970)" to="(1030,1970)"/> <wire from="(1620,530)" to="(1620,580)"/> <wire from="(1310,1350)" to="(1400,1350)"/> <wire from="(700,900)" to="(1220,900)"/> <wire from="(200,1540)" to="(600,1540)"/> <wire from="(860,790)" to="(860,980)"/> <wire from="(1670,1650)" to="(1690,1650)"/> <wire from="(660,530)" to="(660,580)"/> <wire from="(1520,1500)" to="(1540,1500)"/> <wire from="(870,1500)" to="(880,1500)"/> <wire from="(1030,1970)" to="(1050,1970)"/> <wire from="(980,530)" to="(980,580)"/> <comp lib="0" loc="(2100,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(1510,1730)" name="Register"> <a name="width" val="16"/> <a name="trigger" val="high"/> <a name="label" val="PCS"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(470,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp loc="(310,80)" name="DFF_Level"/> <comp loc="(370,580)" name="RANDOM_LOGIC"> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(530,1147)" name="Text"> <a name="text" val="ADL in/out"/> </comp> <comp lib="6" loc="(150,156)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="0" loc="(2100,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,1300)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A0"/> </comp> <comp loc="(740,1300)" name="REGS"/> <comp lib="6" loc="(1754,1820)" name="Text"> <a name="text" val="DEBUG"/> </comp> <comp lib="0" loc="(70,1650)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A7"/> </comp> <comp lib="0" loc="(1880,1500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(160,980)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp loc="(1400,1330)" name="PC"/> <comp lib="0" loc="(730,1650)" name="Constant"/> <comp lib="6" loc="(2038,1053)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="4" loc="(1760,1770)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="DL"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(180,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2100,1460)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(370,202)" name="Text"> <a name="text" val="/NMIP"/> </comp> <comp lib="0" loc="(1020,1970)" name="Constant"/> <comp lib="0" loc="(2100,1300)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(990,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1127,1992)" name="Text"> <a name="text" val="DEBUG"/> </comp> <comp lib="0" loc="(730,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,1500)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A4"/> </comp> <comp lib="0" loc="(2100,1950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(620,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> <a name="bit0" val="12"/> <a name="bit1" val="11"/> <a name="bit2" val="10"/> <a name="bit3" val="9"/> <a name="bit4" val="8"/> <a name="bit5" val="7"/> <a name="bit7" val="5"/> <a name="bit8" val="4"/> <a name="bit9" val="3"/> <a name="bit10" val="2"/> <a name="bit11" val="1"/> <a name="bit12" val="0"/> </comp> <comp lib="0" loc="(2100,1340)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1300,180)" name="D_Latch"> <a name="label" val="resp_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2100,1580)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(620,180)" name="D_Latch"> <a name="label" val="irqp_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1880,1400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(190,930)" name="CONST_GEN"/> <comp loc="(1800,230)" name="D_Latch"> <a name="label" val="RWLatch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(70,1550)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A5"/> </comp> <comp lib="6" loc="(1688,166)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="0" loc="(2100,1910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(149,1055)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="0" loc="(480,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A10"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(590,1225)" name="Text"> <a name="text" val="SB in/out"/> </comp> <comp lib="0" loc="(1650,1590)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(990,1330)" name="Splitter"> <a name="fanout" val="13"/> <a name="incoming" val="13"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1990,1610)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(310,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(1360,1570)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1770,460)" name="IR"> <a name="facing" val="west"/> <a name="label" val="IR"/> </comp> <comp lib="6" loc="(121,115)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="0" loc="(1230,1380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(960,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RDY"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(680,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1990,1160)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1700,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(180,700)" name="Buffer"> <a name="facing" val="west"/> </comp> <comp loc="(400,1590)" name="ABH"/> <comp lib="0" loc="(1650,1690)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(780,60)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1840,60)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="north"/> </comp> <comp loc="(1690,1310)" name="DL"/> <comp lib="4" loc="(1440,1730)" name="Register"> <a name="width" val="16"/> <a name="trigger" val="high"/> <a name="label" val="PC"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(128,1086)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="0" loc="(1960,860)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1230,1580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1030,1790)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1560,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(840,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1610,1360)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="4" loc="(1170,1940)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="ADD"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(900,1430)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1140,190)" name="D_Latch"> <a name="label" val="prdy_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(900,1310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1880,1300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(780,1620)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="X"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1171,193)" name="Text"> <a name="text" val="/PRDY"/> </comp> <comp loc="(1130,80)" name="DFF_Level"/> <comp lib="0" loc="(580,1680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1880,690)" name="PREDECODE"> <a name="label" val="PREDECODE"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1520,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(670,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="bit0" val="2"/> <a name="bit2" val="0"/> </comp> <comp lib="0" loc="(1120,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/RES"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(70,1350)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A1"/> </comp> <comp lib="0" loc="(1000,1820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="3"/> <a name="label" val="Dirty"/> </comp> <comp lib="0" loc="(1480,910)" name="Tunnel"> <a name="width" val="3"/> <a name="label" val="Dirty"/> </comp> <comp lib="6" loc="(1687,122)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="0" loc="(360,1770)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(177,1873)" name="Text"> <a name="text" val="The pin layout corresponds to the real chip"/> </comp> <comp lib="6" loc="(208,690)" name="Text"> <a name="text" val="T1"/> </comp> <comp lib="0" loc="(1230,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1030,1560)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="5" loc="(1460,970)" name="LED"/> <comp loc="(80,1120)" name="PRECHARGE"/> <comp lib="0" loc="(1670,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(940,870)" name="Splitter"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(670,1320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1000,830)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1560,1570)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(400,1300)" name="ABL"/> <comp loc="(360,390)" name="DECODER_TRANS"/> <comp lib="0" loc="(370,1840)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="6" loc="(2053,1084)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="0" loc="(700,1520)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(820,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="bit0" val="8"/> <a name="bit1" val="7"/> <a name="bit2" val="6"/> <a name="bit3" val="5"/> <a name="bit5" val="3"/> <a name="bit6" val="2"/> <a name="bit7" val="1"/> <a name="bit8" val="0"/> </comp> <comp lib="0" loc="(2100,1380)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,930)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> </comp> <comp lib="0" loc="(70,1450)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A3"/> </comp> <comp lib="4" loc="(830,1620)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="Y"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1510,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="SO"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1030,1820)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(2100,1990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1880,1600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(880,1620)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="S"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2100,1420)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(560,1186)" name="Text"> <a name="text" val="DB in/out"/> </comp> <comp lib="0" loc="(1560,1340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(630,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A13"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(501,1105)" name="Text"> <a name="text" val="ADH in/out"/> </comp> <comp lib="0" loc="(1290,1340)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="right"/> </comp> <comp loc="(1330,910)" name="BUS_MUX_HACK"/> <comp lib="0" loc="(1330,60)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1447,1783)" name="Text"> <a name="text" val="DEBUG"/> </comp> <comp lib="0" loc="(1390,1760)" name="Constant"/> <comp lib="4" loc="(1220,1940)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="AC"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(380,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2100,1710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(511,224)" name="Text"> <a name="text" val="/IRQP"/> </comp> <comp lib="1" loc="(1700,630)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(800,1673)" name="Text"> <a name="text" val="DEBUG"/> </comp> <comp lib="0" loc="(530,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(580,1400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(1120,1940)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="BI"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp loc="(1060,1320)" name="ALU"/> <comp lib="0" loc="(2100,1500)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(360,1490)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="4" loc="(1070,1940)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="AI"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1835,276)" name="Text"> <a name="text" val="WR"/> </comp> <comp lib="0" loc="(300,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/NMI"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2100,1870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,60)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/IRQ"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1230,1680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(70,700)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> </comp> <comp lib="6" loc="(1289,243)" name="Text"> <a name="text" val="RESP"/> </comp> <comp lib="0" loc="(2100,1830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1030,1700)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(70,1600)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A6"/> </comp> <comp lib="0" loc="(1470,910)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp loc="(1060,190)" name="D_Latch"> <a name="label" val="prdy_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(1810,1770)" name="Register"> <a name="trigger" val="high"/> <a name="label" val="DOR"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp loc="(500,80)" name="DFF_Level"/> <comp lib="0" loc="(1710,1800)" name="Constant"/> <comp lib="0" loc="(2100,1540)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1030,1480)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="right"/> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> </comp> <comp lib="0" loc="(380,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(430,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1360,1660)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1650,140)" name="CLOCKGEN"/> <comp lib="0" loc="(580,1940)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,1400)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="A2"/> </comp> </circuit> <circuit name="CLOCKGEN"> <a name="circuit" val="CLOCKGEN"/> <a name="clabel" val=""/> <a name="clabelup" val="west"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ff5bab" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="45">CLOCK GEN</text> <circ-port height="8" pin="160,200" width="8" x="46" y="66"/> <circ-port height="10" pin="350,200" width="10" x="85" y="55"/> <circ-port height="10" pin="350,250" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(290,250)" to="(350,250)"/> <wire from="(240,250)" to="(270,250)"/> <wire from="(240,200)" to="(270,200)"/> <wire from="(240,200)" to="(240,250)"/> <wire from="(290,200)" to="(300,200)"/> <wire from="(160,200)" to="(240,200)"/> <wire from="(320,200)" to="(350,200)"/> <comp lib="0" loc="(350,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(350,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(290,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI0"/> </comp> <comp lib="1" loc="(290,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="IR"> <a name="circuit" val="IR"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ffe71c" height="116" stroke="#000000" stroke-width="2" width="30" x="50" y="55"/> <circ-port height="8" pin="90,40" width="8" x="46" y="56"/> <circ-port height="8" pin="90,80" width="8" x="46" y="66"/> <circ-port height="8" pin="170,150" width="8" x="46" y="86"/> <circ-port height="8" pin="170,210" width="8" x="46" y="96"/> <circ-port height="8" pin="170,270" width="8" x="46" y="106"/> <circ-port height="8" pin="170,330" width="8" x="46" y="116"/> <circ-port height="8" pin="170,390" width="8" x="46" y="126"/> <circ-port height="8" pin="170,450" width="8" x="46" y="136"/> <circ-port height="8" pin="170,510" width="8" x="46" y="146"/> <circ-port height="8" pin="170,570" width="8" x="46" y="156"/> <circ-port height="10" pin="370,150" width="10" x="75" y="125"/> <circ-port height="10" pin="370,270" width="10" x="75" y="105"/> <circ-port height="10" pin="370,330" width="10" x="75" y="95"/> <circ-port height="10" pin="370,390" width="10" x="75" y="85"/> <circ-port height="10" pin="370,450" width="10" x="75" y="75"/> <circ-port height="10" pin="370,510" width="10" x="75" y="65"/> <circ-port height="10" pin="370,570" width="10" x="75" y="55"/> <circ-port height="10" pin="370,210" width="10" x="75" y="115"/> <circ-anchor facing="east" height="6" width="6" x="77" y="57"/> </appear> <wire from="(210,60)" to="(210,130)"/> <wire from="(150,60)" to="(210,60)"/> <wire from="(100,40)" to="(100,50)"/> <wire from="(100,70)" to="(100,80)"/> <wire from="(210,130)" to="(240,130)"/> <wire from="(210,190)" to="(240,190)"/> <wire from="(210,550)" to="(240,550)"/> <wire from="(210,490)" to="(240,490)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(210,430)" to="(240,430)"/> <wire from="(210,250)" to="(240,250)"/> <wire from="(210,370)" to="(240,370)"/> <wire from="(280,150)" to="(370,150)"/> <wire from="(280,210)" to="(370,210)"/> <wire from="(280,270)" to="(370,270)"/> <wire from="(280,330)" to="(370,330)"/> <wire from="(280,390)" to="(370,390)"/> <wire from="(280,450)" to="(370,450)"/> <wire from="(280,510)" to="(370,510)"/> <wire from="(280,570)" to="(370,570)"/> <wire from="(100,70)" to="(120,70)"/> <wire from="(100,50)" to="(120,50)"/> <wire from="(90,40)" to="(100,40)"/> <wire from="(90,80)" to="(100,80)"/> <wire from="(170,330)" to="(240,330)"/> <wire from="(170,570)" to="(240,570)"/> <wire from="(170,450)" to="(240,450)"/> <wire from="(170,510)" to="(240,510)"/> <wire from="(170,150)" to="(240,150)"/> <wire from="(170,270)" to="(240,270)"/> <wire from="(170,210)" to="(240,210)"/> <wire from="(170,390)" to="(240,390)"/> <wire from="(210,130)" to="(210,190)"/> <wire from="(210,250)" to="(210,310)"/> <wire from="(210,550)" to="(210,610)"/> <wire from="(210,190)" to="(210,250)"/> <wire from="(210,310)" to="(210,370)"/> <wire from="(210,490)" to="(210,550)"/> <wire from="(210,370)" to="(210,430)"/> <wire from="(210,430)" to="(210,490)"/> <comp loc="(280,500)" name="D_Latch"/> <comp loc="(280,200)" name="D_Latch"/> <comp lib="0" loc="(170,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in0"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in2"/> </comp> <comp lib="1" loc="(150,60)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="and1"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp loc="(280,320)" name="D_Latch"/> <comp lib="0" loc="(370,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(370,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in7"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in3"/> </comp> <comp lib="0" loc="(170,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in5"/> </comp> <comp loc="(280,260)" name="D_Latch"/> <comp lib="0" loc="(170,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in6"/> </comp> <comp lib="0" loc="(170,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in1"/> </comp> <comp loc="(280,560)" name="D_Latch"/> <comp lib="0" loc="(370,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(280,440)" name="D_Latch"/> <comp lib="0" loc="(370,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FETCH"/> </comp> <comp loc="(280,140)" name="D_Latch"/> <comp loc="(280,380)" name="D_Latch"/> <comp lib="0" loc="(370,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/in4"/> </comp> <comp lib="0" loc="(370,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="DECODER_TRANS"> <a name="circuit" val="DECODER_TRANS"/> <a name="clabel" val="DECODER"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <rect fill="#9bff1c" height="153" stroke="#000000" stroke-width="2" width="1310" x="50" y="47"/> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="65" y="114">/T0</text> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="68" y="103">/T1X</text> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="65" y="93">/T2</text> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="65" y="83">/T3</text> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="65" y="73">/T4</text> <text font-family="Segoe UI" font-size="9" text-anchor="middle" x="65" y="63">/T5</text> <circ-port height="8" pin="70,190" width="8" x="46" y="56"/> <circ-port height="8" pin="70,230" width="8" x="46" y="66"/> <circ-port height="8" pin="70,270" width="8" x="46" y="76"/> <circ-port height="8" pin="70,310" width="8" x="46" y="86"/> <circ-port height="8" pin="70,380" width="8" x="1356" y="56"/> <circ-port height="8" pin="70,470" width="8" x="1356" y="66"/> <circ-port height="8" pin="70,560" width="8" x="1356" y="126"/> <circ-port height="8" pin="70,670" width="8" x="1356" y="96"/> <circ-port height="8" pin="70,780" width="8" x="1356" y="86"/> <circ-port height="8" pin="70,890" width="8" x="1356" y="76"/> <circ-port height="8" pin="70,1000" width="8" x="1356" y="116"/> <circ-port height="8" pin="70,1110" width="8" x="1356" y="106"/> <circ-port height="8" pin="70,1220" width="8" x="46" y="106"/> <circ-port height="8" pin="70,1260" width="8" x="46" y="96"/> <circ-port height="10" pin="320,1360" width="10" x="55" y="195"/> <circ-port height="10" pin="380,1360" width="10" x="65" y="195"/> <circ-port height="10" pin="440,1360" width="10" x="75" y="195"/> <circ-port height="10" pin="500,1360" width="10" x="85" y="195"/> <circ-port height="10" pin="560,1360" width="10" x="95" y="195"/> <circ-port height="10" pin="620,1360" width="10" x="105" y="195"/> <circ-port height="10" pin="760,1360" width="10" x="115" y="195"/> <circ-port height="10" pin="820,1360" width="10" x="125" y="195"/> <circ-port height="10" pin="880,1360" width="10" x="135" y="195"/> <circ-port height="10" pin="940,1360" width="10" x="145" y="195"/> <circ-port height="10" pin="1000,1360" width="10" x="155" y="195"/> <circ-port height="10" pin="1060,1360" width="10" x="165" y="195"/> <circ-port height="10" pin="1120,1360" width="10" x="175" y="195"/> <circ-port height="10" pin="1180,1360" width="10" x="185" y="195"/> <circ-port height="10" pin="1240,1360" width="10" x="195" y="195"/> <circ-port height="10" pin="1300,1360" width="10" x="205" y="195"/> <circ-port height="10" pin="1360,1360" width="10" x="215" y="195"/> <circ-port height="10" pin="1420,1360" width="10" x="225" y="195"/> <circ-port height="10" pin="1480,1360" width="10" x="235" y="195"/> <circ-port height="10" pin="1540,1360" width="10" x="245" y="195"/> <circ-port height="10" pin="1600,1360" width="10" x="255" y="195"/> <circ-port height="10" pin="1740,1360" width="10" x="265" y="195"/> <circ-port height="10" pin="1800,1360" width="10" x="275" y="195"/> <circ-port height="10" pin="1860,1360" width="10" x="285" y="195"/> <circ-port height="10" pin="1920,1360" width="10" x="295" y="195"/> <circ-port height="10" pin="1980,1360" width="10" x="305" y="195"/> <circ-port height="10" pin="2040,1360" width="10" x="315" y="195"/> <circ-port height="10" pin="2100,1360" width="10" x="325" y="195"/> <circ-port height="10" pin="2160,1360" width="10" x="335" y="195"/> <circ-port height="10" pin="2220,1360" width="10" x="345" y="195"/> <circ-port height="10" pin="2280,1360" width="10" x="355" y="195"/> <circ-port height="10" pin="2340,1360" width="10" x="365" y="195"/> <circ-port height="10" pin="2400,1360" width="10" x="375" y="195"/> <circ-port height="10" pin="2460,1360" width="10" x="385" y="195"/> <circ-port height="10" pin="2520,1360" width="10" x="395" y="195"/> <circ-port height="10" pin="2580,1360" width="10" x="405" y="195"/> <circ-port height="10" pin="2640,1360" width="10" x="415" y="195"/> <circ-port height="10" pin="2770,1360" width="10" x="425" y="195"/> <circ-port height="10" pin="2830,1360" width="10" x="435" y="195"/> <circ-port height="10" pin="2890,1360" width="10" x="445" y="195"/> <circ-port height="10" pin="2950,1360" width="10" x="455" y="195"/> <circ-port height="10" pin="3010,1360" width="10" x="465" y="195"/> <circ-port height="10" pin="3070,1360" width="10" x="475" y="195"/> <circ-port height="10" pin="3130,1360" width="10" x="485" y="195"/> <circ-port height="10" pin="3190,1360" width="10" x="495" y="195"/> <circ-port height="10" pin="3250,1360" width="10" x="505" y="195"/> <circ-port height="10" pin="3310,1360" width="10" x="515" y="195"/> <circ-port height="10" pin="3370,1360" width="10" x="525" y="195"/> <circ-port height="10" pin="3430,1360" width="10" x="535" y="195"/> <circ-port height="10" pin="3490,1360" width="10" x="545" y="195"/> <circ-port height="10" pin="3550,1360" width="10" x="555" y="195"/> <circ-port height="10" pin="3610,1360" width="10" x="565" y="195"/> <circ-port height="10" pin="3670,1360" width="10" x="575" y="195"/> <circ-port height="10" pin="3730,1360" width="10" x="585" y="195"/> <circ-port height="10" pin="3860,1360" width="10" x="595" y="195"/> <circ-port height="10" pin="3920,1360" width="10" x="605" y="195"/> <circ-port height="10" pin="3980,1360" width="10" x="615" y="195"/> <circ-port height="10" pin="4040,1360" width="10" x="625" y="195"/> <circ-port height="10" pin="4100,1360" width="10" x="635" y="195"/> <circ-port height="10" pin="4160,1360" width="10" x="645" y="195"/> <circ-port height="10" pin="4220,1360" width="10" x="655" y="195"/> <circ-port height="10" pin="4280,1360" width="10" x="665" y="195"/> <circ-port height="10" pin="4340,1360" width="10" x="675" y="195"/> <circ-port height="10" pin="4400,1360" width="10" x="685" y="195"/> <circ-port height="10" pin="4460,1360" width="10" x="695" y="195"/> <circ-port height="10" pin="4520,1360" width="10" x="705" y="195"/> <circ-port height="10" pin="4580,1360" width="10" x="715" y="195"/> <circ-port height="10" pin="4640,1360" width="10" x="725" y="195"/> <circ-port height="10" pin="4700,1360" width="10" x="735" y="195"/> <circ-port height="10" pin="4760,1360" width="10" x="745" y="195"/> <circ-port height="10" pin="4820,1360" width="10" x="755" y="195"/> <circ-port height="10" pin="4880,1360" width="10" x="765" y="195"/> <circ-port height="10" pin="4940,1360" width="10" x="775" y="195"/> <circ-port height="10" pin="5070,1360" width="10" x="785" y="195"/> <circ-port height="10" pin="5130,1360" width="10" x="795" y="195"/> <circ-port height="10" pin="5190,1360" width="10" x="805" y="195"/> <circ-port height="10" pin="5250,1360" width="10" x="815" y="195"/> <circ-port height="10" pin="5310,1360" width="10" x="825" y="195"/> <circ-port height="10" pin="5370,1360" width="10" x="835" y="195"/> <circ-port height="10" pin="5430,1360" width="10" x="845" y="195"/> <circ-port height="10" pin="5490,1360" width="10" x="855" y="195"/> <circ-port height="10" pin="5550,1360" width="10" x="865" y="195"/> <circ-port height="10" pin="5680,1360" width="10" x="875" y="195"/> <circ-port height="10" pin="5740,1360" width="10" x="885" y="195"/> <circ-port height="10" pin="5800,1360" width="10" x="895" y="195"/> <circ-port height="10" pin="5860,1360" width="10" x="905" y="195"/> <circ-port height="10" pin="5920,1360" width="10" x="915" y="195"/> <circ-port height="10" pin="5980,1360" width="10" x="925" y="195"/> <circ-port height="10" pin="6040,1360" width="10" x="935" y="195"/> <circ-port height="10" pin="6100,1360" width="10" x="945" y="195"/> <circ-port height="10" pin="6160,1360" width="10" x="955" y="195"/> <circ-port height="10" pin="6290,1360" width="10" x="965" y="195"/> <circ-port height="10" pin="6350,1360" width="10" x="975" y="195"/> <circ-port height="10" pin="6410,1360" width="10" x="985" y="195"/> <circ-port height="10" pin="6470,1360" width="10" x="995" y="195"/> <circ-port height="10" pin="6530,1360" width="10" x="1005" y="195"/> <circ-port height="10" pin="6590,1360" width="10" x="1015" y="195"/> <circ-port height="10" pin="6680,1360" width="10" x="1025" y="195"/> <circ-port height="10" pin="6740,1360" width="10" x="1035" y="195"/> <circ-port height="10" pin="6800,1360" width="10" x="1045" y="195"/> <circ-port height="10" pin="6860,1360" width="10" x="1055" y="195"/> <circ-port height="10" pin="6920,1360" width="10" x="1065" y="195"/> <circ-port height="10" pin="7020,1360" width="10" x="1075" y="195"/> <circ-port height="10" pin="7080,1360" width="10" x="1085" y="195"/> <circ-port height="10" pin="7200,1360" width="10" x="1095" y="195"/> <circ-port height="10" pin="7260,1360" width="10" x="1105" y="195"/> <circ-port height="10" pin="7320,1360" width="10" x="1115" y="195"/> <circ-port height="10" pin="7380,1360" width="10" x="1125" y="195"/> <circ-port height="10" pin="7440,1360" width="10" x="1135" y="195"/> <circ-port height="10" pin="7540,1360" width="10" x="1145" y="195"/> <circ-port height="10" pin="7600,1360" width="10" x="1155" y="195"/> <circ-port height="10" pin="7660,1360" width="10" x="1165" y="195"/> <circ-port height="10" pin="7720,1360" width="10" x="1175" y="195"/> <circ-port height="10" pin="7780,1360" width="10" x="1185" y="195"/> <circ-port height="10" pin="7840,1360" width="10" x="1195" y="195"/> <circ-port height="10" pin="7900,1360" width="10" x="1205" y="195"/> <circ-port height="10" pin="7960,1360" width="10" x="1215" y="195"/> <circ-port height="10" pin="8020,1360" width="10" x="1225" y="195"/> <circ-port height="10" pin="8080,1360" width="10" x="1235" y="195"/> <circ-port height="10" pin="8140,1360" width="10" x="1245" y="195"/> <circ-port height="10" pin="8250,1360" width="10" x="1255" y="195"/> <circ-port height="10" pin="8310,1360" width="10" x="1265" y="195"/> <circ-port height="10" pin="8370,1360" width="10" x="1275" y="195"/> <circ-port height="10" pin="8430,1360" width="10" x="1285" y="195"/> <circ-port height="10" pin="8490,1360" width="10" x="1295" y="195"/> <circ-port height="10" pin="8550,1360" width="10" x="1305" y="195"/> <circ-port height="10" pin="8610,1360" width="10" x="1315" y="195"/> <circ-port height="10" pin="8670,1360" width="10" x="1325" y="195"/> <circ-port height="10" pin="8730,1360" width="10" x="1335" y="195"/> <circ-port height="10" pin="8790,1360" width="10" x="1345" y="195"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(5430,620)" to="(5430,1020)"/> <wire from="(3920,580)" to="(3920,1020)"/> <wire from="(3610,1240)" to="(3610,1360)"/> <wire from="(4500,500)" to="(4800,500)"/> <wire from="(1720,1220)" to="(1840,1220)"/> <wire from="(4800,1000)" to="(5290,1000)"/> <wire from="(2990,890)" to="(3110,890)"/> <wire from="(7440,910)" to="(7440,1060)"/> <wire from="(620,1130)" to="(620,1240)"/> <wire from="(8230,710)" to="(8530,710)"/> <wire from="(7880,1040)" to="(7940,1040)"/> <wire from="(4020,890)" to="(4080,890)"/> <wire from="(1920,250)" to="(1920,480)"/> <wire from="(6860,330)" to="(6860,480)"/> <wire from="(4740,670)" to="(5110,670)"/> <wire from="(2890,520)" to="(2890,690)"/> <wire from="(8790,910)" to="(8790,1360)"/> <wire from="(4260,560)" to="(4380,560)"/> <wire from="(5130,840)" to="(5130,910)"/> <wire from="(4580,480)" to="(4580,620)"/> <wire from="(6800,910)" to="(6800,1020)"/> <wire from="(620,620)" to="(620,690)"/> <wire from="(1480,840)" to="(1480,910)"/> <wire from="(1040,600)" to="(1100,600)"/> <wire from="(5290,560)" to="(5350,560)"/> <wire from="(8080,910)" to="(8080,1020)"/> <wire from="(2520,1240)" to="(2520,1360)"/> <wire from="(7580,820)" to="(7820,820)"/> <wire from="(70,310)" to="(420,310)"/> <wire from="(7300,1040)" to="(7420,1040)"/> <wire from="(2930,890)" to="(2990,890)"/> <wire from="(2380,1000)" to="(2750,1000)"/> <wire from="(1240,1240)" to="(1240,1360)"/> <wire from="(3670,520)" to="(3670,1060)"/> <wire from="(7000,670)" to="(7060,670)"/> <wire from="(8000,460)" to="(8120,460)"/> <wire from="(2380,500)" to="(2870,500)"/> <wire from="(1860,580)" to="(1860,690)"/> <wire from="(3350,670)" to="(3410,670)"/> <wire from="(3490,480)" to="(3490,620)"/> <wire from="(4140,500)" to="(4200,500)"/> <wire from="(1060,1060)" to="(1060,1170)"/> <wire from="(5310,1020)" to="(5310,1130)"/> <wire from="(7260,480)" to="(7260,580)"/> <wire from="(980,670)" to="(1040,670)"/> <wire from="(4220,1280)" to="(4220,1360)"/> <wire from="(8430,690)" to="(8430,800)"/> <wire from="(3980,910)" to="(3980,1020)"/> <wire from="(7900,480)" to="(7900,580)"/> <wire from="(4400,690)" to="(4400,840)"/> <wire from="(2080,560)" to="(2200,560)"/> <wire from="(1280,1110)" to="(1460,1110)"/> <wire from="(1840,890)" to="(1900,890)"/> <wire from="(1340,460)" to="(1460,460)"/> <wire from="(1000,1130)" to="(1000,1240)"/> <wire from="(6330,710)" to="(6390,710)"/> <wire from="(1920,130)" to="(1920,250)"/> <wire from="(2260,670)" to="(2320,670)"/> <wire from="(6100,210)" to="(6100,520)"/> <wire from="(7200,1060)" to="(7200,1130)"/> <wire from="(4820,1240)" to="(4820,1360)"/> <wire from="(3590,1040)" to="(3650,1040)"/> <wire from="(1420,910)" to="(1420,1020)"/> <wire from="(6470,130)" to="(6470,480)"/> <wire from="(3050,710)" to="(3290,710)"/> <wire from="(5980,480)" to="(5980,580)"/> <wire from="(3190,440)" to="(3190,620)"/> <wire from="(1000,620)" to="(1000,690)"/> <wire from="(4440,1000)" to="(4560,1000)"/> <wire from="(6530,580)" to="(6530,690)"/> <wire from="(4280,440)" to="(4280,580)"/> <wire from="(4860,710)" to="(4920,710)"/> <wire from="(5410,500)" to="(5660,500)"/> <wire from="(8650,1000)" to="(8820,1000)"/> <wire from="(1860,840)" to="(1860,910)"/> <wire from="(2020,560)" to="(2080,560)"/> <wire from="(5130,330)" to="(5130,480)"/> <wire from="(6080,780)" to="(6270,780)"/> <wire from="(2560,460)" to="(2620,460)"/> <wire from="(3010,130)" to="(3010,330)"/> <wire from="(4040,330)" to="(4040,480)"/> <wire from="(8350,820)" to="(8530,820)"/> <wire from="(5190,130)" to="(5190,440)"/> <wire from="(2990,780)" to="(3230,780)"/> <wire from="(4580,620)" to="(4580,690)"/> <wire from="(3840,930)" to="(4740,930)"/> <wire from="(5070,910)" to="(5070,1240)"/> <wire from="(1540,130)" to="(1540,480)"/> <wire from="(360,780)" to="(860,780)"/> <wire from="(540,820)" to="(920,820)"/> <wire from="(1420,1170)" to="(1420,1240)"/> <wire from="(5310,130)" to="(5310,330)"/> <wire from="(6290,730)" to="(6290,800)"/> <wire from="(4100,130)" to="(4100,480)"/> <wire from="(6780,460)" to="(6840,460)"/> <wire from="(2580,910)" to="(2580,1360)"/> <wire from="(2260,930)" to="(2320,930)"/> <wire from="(3110,890)" to="(3230,890)"/> <wire from="(3290,270)" to="(3840,270)"/> <wire from="(8120,600)" to="(8230,600)"/> <wire from="(7360,420)" to="(8060,420)"/> <wire from="(4340,1020)" to="(4340,1130)"/> <wire from="(2100,440)" to="(2100,580)"/> <wire from="(2140,310)" to="(2320,310)"/> <wire from="(2750,460)" to="(2810,460)"/> <wire from="(70,380)" to="(90,380)"/> <wire from="(3550,1060)" to="(3550,1130)"/> <wire from="(3530,600)" to="(3590,600)"/> <wire from="(6900,670)" to="(7000,670)"/> <wire from="(4920,710)" to="(5050,710)"/> <wire from="(1800,910)" to="(1800,1020)"/> <wire from="(7520,560)" to="(7580,560)"/> <wire from="(820,440)" to="(820,620)"/> <wire from="(4560,670)" to="(4620,670)"/> <wire from="(3980,1170)" to="(3980,1360)"/> <wire from="(70,1110)" to="(130,1110)"/> <wire from="(70,470)" to="(130,470)"/> <wire from="(5410,1110)" to="(5960,1110)"/> <wire from="(1160,600)" to="(1220,600)"/> <wire from="(940,690)" to="(940,840)"/> <wire from="(8230,600)" to="(8650,600)"/> <wire from="(380,130)" to="(380,290)"/> <wire from="(180,1150)" to="(1040,1150)"/> <wire from="(2200,500)" to="(2380,500)"/> <wire from="(1980,580)" to="(1980,690)"/> <wire from="(7760,670)" to="(7820,670)"/> <wire from="(8060,420)" to="(8820,420)"/> <wire from="(5430,1020)" to="(5430,1130)"/> <wire from="(6740,480)" to="(6740,580)"/> <wire from="(4320,820)" to="(4380,820)"/> <wire from="(2400,1130)" to="(2400,1240)"/> <wire from="(180,460)" to="(300,460)"/> <wire from="(2040,130)" to="(2040,210)"/> <wire from="(6390,270)" to="(7240,270)"/> <wire from="(4100,910)" to="(4100,1020)"/> <wire from="(1780,780)" to="(1900,780)"/> <wire from="(3170,420)" to="(3710,420)"/> <wire from="(2620,460)" to="(2750,460)"/> <wire from="(1960,890)" to="(2020,890)"/> <wire from="(8470,780)" to="(8820,780)"/> <wire from="(7540,1280)" to="(7540,1360)"/> <wire from="(2810,780)" to="(2870,780)"/> <wire from="(4280,580)" to="(4280,690)"/> <wire from="(3490,620)" to="(3490,690)"/> <wire from="(4940,210)" to="(4940,520)"/> <wire from="(7940,600)" to="(8000,600)"/> <wire from="(6590,130)" to="(6590,480)"/> <wire from="(6470,910)" to="(6470,1130)"/> <wire from="(7960,1060)" to="(7960,1130)"/> <wire from="(3010,520)" to="(3010,730)"/> <wire from="(480,820)" to="(540,820)"/> <wire from="(980,820)" to="(1160,820)"/> <wire from="(7080,690)" to="(7080,800)"/> <wire from="(5050,460)" to="(5110,460)"/> <wire from="(110,50)" to="(110,380)"/> <wire from="(4560,1000)" to="(4680,1000)"/> <wire from="(4380,890)" to="(4560,890)"/> <wire from="(1520,1220)" to="(1580,1220)"/> <wire from="(4460,620)" to="(4460,1020)"/> <wire from="(6020,1220)" to="(7420,1220)"/> <wire from="(1980,840)" to="(1980,910)"/> <wire from="(5190,910)" to="(5190,1060)"/> <wire from="(3430,690)" to="(3430,800)"/> <wire from="(1720,780)" to="(1780,780)"/> <wire from="(130,820)" to="(160,820)"/> <wire from="(6660,1110)" to="(6720,1110)"/> <wire from="(1740,1240)" to="(1740,1360)"/> <wire from="(7540,1020)" to="(7540,1170)"/> <wire from="(3410,780)" to="(3960,780)"/> <wire from="(8000,600)" to="(8120,600)"/> <wire from="(5800,690)" to="(5800,800)"/> <wire from="(3960,460)" to="(4020,460)"/> <wire from="(5370,580)" to="(5370,690)"/> <wire from="(7880,230)" to="(8530,230)"/> <wire from="(4700,620)" to="(4700,690)"/> <wire from="(420,890)" to="(480,890)"/> <wire from="(760,130)" to="(760,330)"/> <wire from="(2770,800)" to="(2770,910)"/> <wire from="(4280,840)" to="(4280,910)"/> <wire from="(3110,820)" to="(3840,820)"/> <wire from="(1540,1170)" to="(1540,1240)"/> <wire from="(3670,1060)" to="(3670,1170)"/> <wire from="(8430,950)" to="(8430,1360)"/> <wire from="(8250,130)" to="(8250,480)"/> <wire from="(6410,730)" to="(6410,800)"/> <wire from="(7000,560)" to="(7060,560)"/> <wire from="(1120,1130)" to="(1120,1360)"/> <wire from="(940,440)" to="(940,620)"/> <wire from="(2870,670)" to="(3110,670)"/> <wire from="(5310,910)" to="(5310,1020)"/> <wire from="(3250,250)" to="(3250,520)"/> <wire from="(440,840)" to="(440,910)"/> <wire from="(4680,670)" to="(4740,670)"/> <wire from="(4260,890)" to="(4320,890)"/> <wire from="(3860,290)" to="(3860,480)"/> <wire from="(8530,820)" to="(8650,820)"/> <wire from="(3250,130)" to="(3250,250)"/> <wire from="(1920,910)" to="(1920,1060)"/> <wire from="(2640,480)" to="(2640,580)"/> <wire from="(4940,730)" to="(4940,800)"/> <wire from="(1300,1060)" to="(1300,1130)"/> <wire from="(1100,420)" to="(1160,420)"/> <wire from="(380,520)" to="(380,730)"/> <wire from="(1280,600)" to="(1340,600)"/> <wire from="(5960,670)" to="(6020,670)"/> <wire from="(1780,460)" to="(1840,460)"/> <wire from="(7060,560)" to="(7180,560)"/> <wire from="(6390,780)" to="(6450,780)"/> <wire from="(2380,560)" to="(2560,560)"/> <wire from="(2990,710)" to="(3050,710)"/> <wire from="(2890,910)" to="(2890,1360)"/> <wire from="(5250,580)" to="(5250,1060)"/> <wire from="(6040,1060)" to="(6040,1240)"/> <wire from="(3130,130)" to="(3130,480)"/> <wire from="(3840,670)" to="(3960,670)"/> <wire from="(5980,1130)" to="(5980,1240)"/> <wire from="(2340,690)" to="(2340,840)"/> <wire from="(8020,480)" to="(8020,620)"/> <wire from="(4220,130)" to="(4220,520)"/> <wire from="(540,890)" to="(860,890)"/> <wire from="(6860,480)" to="(6860,580)"/> <wire from="(6510,890)" to="(6720,890)"/> <wire from="(8590,560)" to="(8770,560)"/> <wire from="(2830,480)" to="(2830,580)"/> <wire from="(4640,690)" to="(4640,840)"/> <wire from="(2460,800)" to="(2460,1360)"/> <wire from="(1900,780)" to="(2020,780)"/> <wire from="(1360,480)" to="(1360,620)"/> <wire from="(4920,500)" to="(5410,500)"/> <wire from="(7840,690)" to="(7840,840)"/> <wire from="(2930,780)" to="(2990,780)"/> <wire from="(130,1110)" to="(130,1150)"/> <wire from="(4400,580)" to="(4400,690)"/> <wire from="(7820,1150)" to="(8650,1150)"/> <wire from="(3350,560)" to="(3410,560)"/> <wire from="(4340,130)" to="(4340,440)"/> <wire from="(7880,560)" to="(8060,560)"/> <wire from="(7200,690)" to="(7200,840)"/> <wire from="(7320,1060)" to="(7320,1360)"/> <wire from="(5110,1040)" to="(5170,1040)"/> <wire from="(6570,820)" to="(6780,820)"/> <wire from="(420,710)" to="(540,710)"/> <wire from="(5470,890)" to="(5660,890)"/> <wire from="(3980,800)" to="(3980,910)"/> <wire from="(4460,1020)" to="(4460,1170)"/> <wire from="(1520,460)" to="(1580,460)"/> <wire from="(5780,890)" to="(5960,890)"/> <wire from="(130,890)" to="(360,890)"/> <wire from="(8410,930)" to="(8820,930)"/> <wire from="(8370,130)" to="(8370,290)"/> <wire from="(7900,1130)" to="(7900,1360)"/> <wire from="(1920,1170)" to="(1920,1360)"/> <wire from="(6780,1110)" to="(6840,1110)"/> <wire from="(5070,800)" to="(5070,910)"/> <wire from="(1860,1240)" to="(1860,1360)"/> <wire from="(6450,460)" to="(6510,460)"/> <wire from="(7060,890)" to="(7240,890)"/> <wire from="(2950,730)" to="(2950,800)"/> <wire from="(7420,560)" to="(7520,560)"/> <wire from="(5430,520)" to="(5430,620)"/> <wire from="(440,330)" to="(440,520)"/> <wire from="(1740,480)" to="(1740,580)"/> <wire from="(1120,620)" to="(1120,1020)"/> <wire from="(360,710)" to="(420,710)"/> <wire from="(2890,800)" to="(2890,910)"/> <wire from="(4160,580)" to="(4160,1280)"/> <wire from="(4400,840)" to="(4400,910)"/> <wire from="(880,130)" to="(880,330)"/> <wire from="(180,600)" to="(300,600)"/> <wire from="(4680,820)" to="(4860,820)"/> <wire from="(4440,1150)" to="(4560,1150)"/> <wire from="(1400,710)" to="(2930,710)"/> <wire from="(7660,130)" to="(7660,290)"/> <wire from="(1900,1040)" to="(2020,1040)"/> <wire from="(3860,1060)" to="(3860,1360)"/> <wire from="(4680,890)" to="(4920,890)"/> <wire from="(5350,460)" to="(5470,460)"/> <wire from="(500,130)" to="(500,480)"/> <wire from="(1280,420)" to="(1400,420)"/> <wire from="(5550,130)" to="(5550,330)"/> <wire from="(1060,690)" to="(1060,1060)"/> <wire from="(4740,930)" to="(5530,930)"/> <wire from="(7240,820)" to="(7420,820)"/> <wire from="(2160,130)" to="(2160,330)"/> <wire from="(7760,560)" to="(7820,560)"/> <wire from="(7600,840)" to="(7600,910)"/> <wire from="(2810,560)" to="(3110,560)"/> <wire from="(8020,620)" to="(8020,690)"/> <wire from="(7200,950)" to="(7200,1060)"/> <wire from="(5350,670)" to="(5780,670)"/> <wire from="(7440,1060)" to="(7440,1240)"/> <wire from="(2040,910)" to="(2040,1060)"/> <wire from="(560,840)" to="(560,910)"/> <wire from="(4620,560)" to="(4740,560)"/> <wire from="(8230,1220)" to="(8820,1220)"/> <wire from="(7420,890)" to="(7580,890)"/> <wire from="(1400,600)" to="(1460,600)"/> <wire from="(5430,130)" to="(5430,520)"/> <wire from="(1160,1000)" to="(1220,1000)"/> <wire from="(1220,420)" to="(1280,420)"/> <wire from="(1900,460)" to="(1960,460)"/> <wire from="(4040,480)" to="(4040,580)"/> <wire from="(3250,520)" to="(3250,690)"/> <wire from="(1600,1240)" to="(1600,1360)"/> <wire from="(6720,670)" to="(6780,670)"/> <wire from="(7600,580)" to="(7600,730)"/> <wire from="(3070,840)" to="(3070,1360)"/> <wire from="(2260,820)" to="(2320,820)"/> <wire from="(7060,1150)" to="(7240,1150)"/> <wire from="(5130,480)" to="(5130,580)"/> <wire from="(2320,310)" to="(2440,310)"/> <wire from="(8250,910)" to="(8250,1060)"/> <wire from="(7540,130)" to="(7540,480)"/> <wire from="(3010,910)" to="(3010,1360)"/> <wire from="(4220,1170)" to="(4220,1280)"/> <wire from="(1800,800)" to="(1800,910)"/> <wire from="(3290,890)" to="(3350,890)"/> <wire from="(2260,460)" to="(2560,460)"/> <wire from="(8140,480)" to="(8140,620)"/> <wire from="(3410,1150)" to="(3590,1150)"/> <wire from="(7020,130)" to="(7020,210)"/> <wire from="(8000,670)" to="(8060,670)"/> <wire from="(4560,820)" to="(4620,820)"/> <wire from="(7080,580)" to="(7080,690)"/> <wire from="(70,1000)" to="(130,1000)"/> <wire from="(4320,1220)" to="(4380,1220)"/> <wire from="(4260,1260)" to="(7520,1260)"/> <wire from="(920,890)" to="(980,890)"/> <wire from="(4740,1000)" to="(4800,1000)"/> <wire from="(6040,690)" to="(6040,840)"/> <wire from="(3130,1170)" to="(3130,1360)"/> <wire from="(8650,1150)" to="(8820,1150)"/> <wire from="(1480,480)" to="(1480,620)"/> <wire from="(1040,1150)" to="(1220,1150)"/> <wire from="(1780,1110)" to="(1840,1110)"/> <wire from="(6660,1000)" to="(6720,1000)"/> <wire from="(4860,230)" to="(5840,230)"/> <wire from="(880,520)" to="(880,690)"/> <wire from="(4460,520)" to="(4460,620)"/> <wire from="(5680,330)" to="(5680,520)"/> <wire from="(3840,820)" to="(4080,820)"/> <wire from="(3130,910)" to="(3130,1170)"/> <wire from="(6270,500)" to="(7700,500)"/> <wire from="(5800,580)" to="(5800,690)"/> <wire from="(90,500)" to="(160,500)"/> <wire from="(3170,1040)" to="(3350,1040)"/> <wire from="(2100,580)" to="(2100,1060)"/> <wire from="(3070,730)" to="(3070,840)"/> <wire from="(6740,1130)" to="(6740,1360)"/> <wire from="(600,460)" to="(1040,460)"/> <wire from="(480,1220)" to="(540,1220)"/> <wire from="(4800,560)" to="(5110,560)"/> <wire from="(5490,330)" to="(5490,480)"/> <wire from="(4380,1150)" to="(4440,1150)"/> <wire from="(940,840)" to="(940,910)"/> <wire from="(2400,1020)" to="(2400,1130)"/> <wire from="(4640,440)" to="(4640,580)"/> <wire from="(6470,800)" to="(6470,910)"/> <wire from="(2890,290)" to="(2890,520)"/> <wire from="(3610,620)" to="(3610,1060)"/> <wire from="(8490,130)" to="(8490,210)"/> <wire from="(1360,620)" to="(1360,690)"/> <wire from="(4580,1020)" to="(4580,1170)"/> <wire from="(5290,460)" to="(5350,460)"/> <wire from="(6410,480)" to="(6410,730)"/> <wire from="(4220,520)" to="(4220,1060)"/> <wire from="(5740,130)" to="(5740,330)"/> <wire from="(7780,1020)" to="(7780,1170)"/> <wire from="(7640,780)" to="(7880,780)"/> <wire from="(4340,910)" to="(4340,1020)"/> <wire from="(1580,1220)" to="(1720,1220)"/> <wire from="(2810,670)" to="(2870,670)"/> <wire from="(6900,560)" to="(7000,560)"/> <wire from="(1860,480)" to="(1860,580)"/> <wire from="(2340,950)" to="(2340,1360)"/> <wire from="(3710,420)" to="(3900,420)"/> <wire from="(1120,1020)" to="(1120,1130)"/> <wire from="(5530,930)" to="(6020,930)"/> <wire from="(1240,620)" to="(1240,1020)"/> <wire from="(3010,800)" to="(3010,910)"/> <wire from="(4020,310)" to="(5110,310)"/> <wire from="(380,910)" to="(380,1360)"/> <wire from="(4460,130)" to="(4460,520)"/> <wire from="(5110,670)" to="(5170,670)"/> <wire from="(4760,690)" to="(4760,950)"/> <wire from="(4560,1150)" to="(4680,1150)"/> <wire from="(300,930)" to="(740,930)"/> <wire from="(2020,1110)" to="(2200,1110)"/> <wire from="(500,910)" to="(500,1130)"/> <wire from="(620,130)" to="(620,480)"/> <wire from="(110,50)" to="(8860,50)"/> <wire from="(7420,1040)" to="(7700,1040)"/> <wire from="(1160,820)" to="(1280,820)"/> <wire from="(3430,580)" to="(3430,690)"/> <wire from="(1720,670)" to="(1780,670)"/> <wire from="(5960,560)" to="(6020,560)"/> <wire from="(70,270)" to="(360,270)"/> <wire from="(130,710)" to="(160,710)"/> <wire from="(2810,230)" to="(2930,230)"/> <wire from="(1180,440)" to="(1180,620)"/> <wire from="(8290,1000)" to="(8650,1000)"/> <wire from="(8060,890)" to="(8230,890)"/> <wire from="(6330,820)" to="(6570,820)"/> <wire from="(5920,290)" to="(5920,1360)"/> <wire from="(6160,290)" to="(6160,840)"/> <wire from="(2020,890)" to="(2560,890)"/> <wire from="(5190,1060)" to="(5190,1240)"/> <wire from="(7940,1260)" to="(8000,1260)"/> <wire from="(8140,620)" to="(8140,690)"/> <wire from="(6020,1040)" to="(6570,1040)"/> <wire from="(1300,690)" to="(1300,840)"/> <wire from="(2770,690)" to="(2770,800)"/> <wire from="(5170,670)" to="(5290,670)"/> <wire from="(6530,480)" to="(6530,580)"/> <wire from="(600,1220)" to="(920,1220)"/> <wire from="(2830,1130)" to="(2830,1360)"/> <wire from="(4760,950)" to="(4760,1020)"/> <wire from="(2020,670)" to="(2260,670)"/> <wire from="(1520,600)" to="(1580,600)"/> <wire from="(8490,520)" to="(8490,800)"/> <wire from="(6350,290)" to="(6350,730)"/> <wire from="(7540,1170)" to="(7540,1280)"/> <wire from="(2080,420)" to="(3170,420)"/> <wire from="(5860,130)" to="(5860,250)"/> <wire from="(6840,670)" to="(6900,670)"/> <wire from="(3860,690)" to="(3860,840)"/> <wire from="(3370,130)" to="(3370,480)"/> <wire from="(2750,230)" to="(2810,230)"/> <wire from="(2440,310)" to="(2560,310)"/> <wire from="(7000,190)" to="(7060,190)"/> <wire from="(1920,800)" to="(1920,910)"/> <wire from="(6040,950)" to="(6040,1060)"/> <wire from="(1000,130)" to="(1000,440)"/> <wire from="(7200,580)" to="(7200,690)"/> <wire from="(6900,230)" to="(7880,230)"/> <wire from="(4440,1220)" to="(4500,1220)"/> <wire from="(320,480)" to="(320,620)"/> <wire from="(8860,50)" to="(8860,380)"/> <wire from="(5960,890)" to="(6080,890)"/> <wire from="(8790,690)" to="(8790,840)"/> <wire from="(1600,480)" to="(1600,620)"/> <wire from="(3860,950)" to="(3860,1060)"/> <wire from="(300,1000)" to="(540,1000)"/> <wire from="(8430,330)" to="(8430,690)"/> <wire from="(7840,580)" to="(7840,690)"/> <wire from="(5780,780)" to="(5960,780)"/> <wire from="(1340,1260)" to="(1460,1260)"/> <wire from="(7520,670)" to="(7760,670)"/> <wire from="(4640,580)" to="(4640,690)"/> <wire from="(5130,1130)" to="(5130,1360)"/> <wire from="(7940,1110)" to="(8820,1110)"/> <wire from="(440,730)" to="(440,840)"/> <wire from="(8080,690)" to="(8080,840)"/> <wire from="(3530,500)" to="(3590,500)"/> <wire from="(6800,690)" to="(6800,840)"/> <wire from="(7520,460)" to="(7580,460)"/> <wire from="(2580,690)" to="(2580,910)"/> <wire from="(2280,130)" to="(2280,480)"/> <wire from="(7020,910)" to="(7020,1060)"/> <wire from="(1480,1130)" to="(1480,1280)"/> <wire from="(2220,580)" to="(2220,1060)"/> <wire from="(1160,710)" to="(1400,710)"/> <wire from="(480,460)" to="(540,460)"/> <wire from="(6920,1060)" to="(6920,1360)"/> <wire from="(2340,840)" to="(2340,950)"/> <wire from="(6860,1130)" to="(6860,1360)"/> <wire from="(1480,620)" to="(1480,690)"/> <wire from="(1280,1260)" to="(1340,1260)"/> <wire from="(4700,1020)" to="(4700,1170)"/> <wire from="(7900,250)" to="(7900,480)"/> <wire from="(6020,820)" to="(6140,820)"/> <wire from="(380,800)" to="(380,910)"/> <wire from="(130,1000)" to="(130,1040)"/> <wire from="(1580,460)" to="(1720,460)"/> <wire from="(130,470)" to="(150,470)"/> <wire from="(7700,1150)" to="(7760,1150)"/> <wire from="(1920,1060)" to="(1920,1170)"/> <wire from="(1980,480)" to="(1980,580)"/> <wire from="(5310,800)" to="(5310,910)"/> <wire from="(4640,840)" to="(4640,910)"/> <wire from="(5350,560)" to="(5780,560)"/> <wire from="(7200,840)" to="(7200,950)"/> <wire from="(8670,840)" to="(8670,910)"/> <wire from="(1240,1020)" to="(1240,1170)"/> <wire from="(6740,1020)" to="(6740,1130)"/> <wire from="(4560,460)" to="(4740,460)"/> <wire from="(7600,1240)" to="(7600,1360)"/> <wire from="(4860,820)" to="(5110,820)"/> <wire from="(7260,130)" to="(7260,290)"/> <wire from="(600,1040)" to="(980,1040)"/> <wire from="(3980,690)" to="(3980,800)"/> <wire from="(5490,730)" to="(5490,800)"/> <wire from="(1040,1220)" to="(1160,1220)"/> <wire from="(130,780)" to="(360,780)"/> <wire from="(2400,520)" to="(2400,580)"/> <wire from="(3290,710)" to="(4080,710)"/> <wire from="(1840,670)" to="(1900,670)"/> <wire from="(6720,560)" to="(6780,560)"/> <wire from="(3430,330)" to="(3430,480)"/> <wire from="(3370,910)" to="(3370,1060)"/> <wire from="(6510,670)" to="(6570,670)"/> <wire from="(1300,440)" to="(1300,620)"/> <wire from="(7360,560)" to="(7420,560)"/> <wire from="(4220,1060)" to="(4220,1170)"/> <wire from="(7840,840)" to="(7840,910)"/> <wire from="(1860,1130)" to="(1860,1240)"/> <wire from="(7700,1040)" to="(7880,1040)"/> <wire from="(4400,1240)" to="(4400,1360)"/> <wire from="(8060,1260)" to="(8120,1260)"/> <wire from="(4800,500)" to="(4920,500)"/> <wire from="(8610,130)" to="(8610,580)"/> <wire from="(4460,1170)" to="(4460,1240)"/> <wire from="(4620,890)" to="(4680,890)"/> <wire from="(2890,690)" to="(2890,800)"/> <wire from="(7640,710)" to="(8230,710)"/> <wire from="(860,500)" to="(2200,500)"/> <wire from="(980,1220)" to="(1040,1220)"/> <wire from="(6510,780)" to="(6720,780)"/> <wire from="(7900,130)" to="(7900,250)"/> <wire from="(2500,1220)" to="(3470,1220)"/> <wire from="(5470,780)" to="(5530,780)"/> <wire from="(7060,780)" to="(7640,780)"/> <wire from="(1000,910)" to="(1000,1060)"/> <wire from="(8410,310)" to="(8820,310)"/> <wire from="(4580,130)" to="(4580,480)"/> <wire from="(1120,130)" to="(1120,440)"/> <wire from="(3490,130)" to="(3490,480)"/> <wire from="(7780,130)" to="(7780,480)"/> <wire from="(560,1240)" to="(560,1360)"/> <wire from="(2040,800)" to="(2040,910)"/> <wire from="(7820,890)" to="(7880,890)"/> <wire from="(3250,910)" to="(3250,1360)"/> <wire from="(5370,480)" to="(5370,580)"/> <wire from="(2380,1110)" to="(2810,1110)"/> <wire from="(8710,820)" to="(8770,820)"/> <wire from="(4560,1220)" to="(4620,1220)"/> <wire from="(5110,310)" to="(5290,310)"/> <wire from="(800,600)" to="(920,600)"/> <wire from="(6590,1060)" to="(6590,1360)"/> <wire from="(8530,710)" to="(8650,710)"/> <wire from="(8250,1060)" to="(8250,1240)"/> <wire from="(8770,890)" to="(8820,890)"/> <wire from="(6470,690)" to="(6470,800)"/> <wire from="(6450,1110)" to="(6660,1110)"/> <wire from="(880,910)" to="(880,1360)"/> <wire from="(6020,460)" to="(6390,460)"/> <wire from="(380,290)" to="(380,520)"/> <wire from="(4760,580)" to="(4760,690)"/> <wire from="(560,730)" to="(560,840)"/> <wire from="(5410,1000)" to="(6510,1000)"/> <wire from="(3110,670)" to="(3230,670)"/> <wire from="(8020,1280)" to="(8020,1360)"/> <wire from="(5530,780)" to="(5660,780)"/> <wire from="(7000,460)" to="(7060,460)"/> <wire from="(4700,130)" to="(4700,440)"/> <wire from="(7760,1220)" to="(7820,1220)"/> <wire from="(5470,710)" to="(6270,710)"/> <wire from="(1800,690)" to="(1800,800)"/> <wire from="(6040,580)" to="(6040,690)"/> <wire from="(3290,780)" to="(3350,780)"/> <wire from="(7200,330)" to="(7200,480)"/> <wire from="(8000,820)" to="(8060,820)"/> <wire from="(6920,690)" to="(6920,840)"/> <wire from="(6740,250)" to="(6740,480)"/> <wire from="(70,890)" to="(130,890)"/> <wire from="(8650,890)" to="(8710,890)"/> <wire from="(1960,820)" to="(2260,820)"/> <wire from="(1180,840)" to="(1180,910)"/> <wire from="(2040,1060)" to="(2040,1130)"/> <wire from="(2220,1240)" to="(2220,1360)"/> <wire from="(1220,1150)" to="(1340,1150)"/> <wire from="(7600,730)" to="(7600,840)"/> <wire from="(1600,620)" to="(1600,690)"/> <wire from="(1220,1220)" to="(1400,1220)"/> <wire from="(4820,1020)" to="(4820,1170)"/> <wire from="(130,670)" to="(480,670)"/> <wire from="(2400,130)" to="(2400,520)"/> <wire from="(7060,460)" to="(7180,460)"/> <wire from="(6660,600)" to="(7940,600)"/> <wire from="(7880,780)" to="(8120,780)"/> <wire from="(4580,910)" to="(4580,1020)"/> <wire from="(3730,1020)" to="(3730,1170)"/> <wire from="(3310,730)" to="(3310,800)"/> <wire from="(940,1240)" to="(940,1360)"/> <wire from="(8080,440)" to="(8080,580)"/> <wire from="(3350,1040)" to="(3470,1040)"/> <wire from="(8410,780)" to="(8470,780)"/> <wire from="(5780,1150)" to="(6510,1150)"/> <wire from="(3900,560)" to="(3960,560)"/> <wire from="(6020,930)" to="(6570,930)"/> <wire from="(8790,840)" to="(8790,910)"/> <wire from="(480,1110)" to="(540,1110)"/> <wire from="(7320,440)" to="(7320,1060)"/> <wire from="(2340,330)" to="(2340,690)"/> <wire from="(3610,520)" to="(3610,620)"/> <wire from="(1580,600)" to="(3170,600)"/> <wire from="(70,190)" to="(1780,190)"/> <wire from="(7600,480)" to="(7600,580)"/> <wire from="(5800,210)" to="(5800,480)"/> <wire from="(1960,670)" to="(2020,670)"/> <wire from="(3250,800)" to="(3250,910)"/> <wire from="(7240,460)" to="(7420,460)"/> <wire from="(1420,440)" to="(1420,620)"/> <wire from="(6840,560)" to="(6900,560)"/> <wire from="(320,1130)" to="(320,1360)"/> <wire from="(7380,1020)" to="(7380,1360)"/> <wire from="(7080,210)" to="(7080,480)"/> <wire from="(4400,480)" to="(4400,580)"/> <wire from="(6290,130)" to="(6290,250)"/> <wire from="(2440,780)" to="(2750,780)"/> <wire from="(3470,1220)" to="(3530,1220)"/> <wire from="(2020,190)" to="(3960,190)"/> <wire from="(1900,230)" to="(2750,230)"/> <wire from="(6040,840)" to="(6040,950)"/> <wire from="(3350,460)" to="(3410,460)"/> <wire from="(740,930)" to="(1520,930)"/> <wire from="(4520,1240)" to="(4520,1360)"/> <wire from="(480,600)" to="(540,600)"/> <wire from="(4580,1170)" to="(4580,1240)"/> <wire from="(5980,130)" to="(5980,480)"/> <wire from="(1360,1280)" to="(1360,1360)"/> <wire from="(6920,950)" to="(6920,1060)"/> <wire from="(2580,580)" to="(2580,690)"/> <wire from="(1780,190)" to="(2020,190)"/> <wire from="(8650,460)" to="(8770,460)"/> <wire from="(5410,600)" to="(6660,600)"/> <wire from="(6100,130)" to="(6100,210)"/> <wire from="(2830,250)" to="(2830,480)"/> <wire from="(860,310)" to="(2140,310)"/> <wire from="(4380,670)" to="(4560,670)"/> <wire from="(480,670)" to="(600,670)"/> <wire from="(1340,820)" to="(1400,820)"/> <wire from="(6290,250)" to="(6290,520)"/> <wire from="(1520,1000)" to="(1580,1000)"/> <wire from="(3230,230)" to="(4860,230)"/> <wire from="(3860,580)" to="(3860,690)"/> <wire from="(6270,890)" to="(6390,890)"/> <wire from="(5190,690)" to="(5190,840)"/> <wire from="(1720,560)" to="(1780,560)"/> <wire from="(6740,130)" to="(6740,250)"/> <wire from="(130,600)" to="(160,600)"/> <wire from="(880,800)" to="(880,910)"/> <wire from="(1240,130)" to="(1240,440)"/> <wire from="(2200,1040)" to="(2260,1040)"/> <wire from="(2560,890)" to="(2750,890)"/> <wire from="(7420,460)" to="(7520,460)"/> <wire from="(8550,730)" to="(8550,840)"/> <wire from="(7780,1170)" to="(7780,1240)"/> <wire from="(2810,1040)" to="(3170,1040)"/> <wire from="(3710,1150)" to="(3960,1150)"/> <wire from="(3110,560)" to="(3350,560)"/> <wire from="(5190,440)" to="(5190,580)"/> <wire from="(5550,800)" to="(5550,950)"/> <wire from="(4680,1220)" to="(4740,1220)"/> <wire from="(2770,580)" to="(2770,690)"/> <wire from="(560,480)" to="(560,620)"/> <wire from="(7020,800)" to="(7020,910)"/> <wire from="(360,270)" to="(1960,270)"/> <wire from="(600,1110)" to="(920,1110)"/> <wire from="(6800,580)" to="(6800,690)"/> <wire from="(8730,130)" to="(8730,400)"/> <wire from="(5840,230)" to="(6270,230)"/> <wire from="(1740,1020)" to="(1740,1170)"/> <wire from="(1540,950)" to="(1540,1020)"/> <wire from="(4680,420)" to="(5170,420)"/> <wire from="(8080,580)" to="(8080,690)"/> <wire from="(1280,890)" to="(1340,890)"/> <wire from="(7380,130)" to="(7380,440)"/> <wire from="(5960,1220)" to="(6020,1220)"/> <wire from="(6840,820)" to="(6900,820)"/> <wire from="(4380,1040)" to="(5110,1040)"/> <wire from="(8790,580)" to="(8790,690)"/> <wire from="(8140,1280)" to="(8140,1360)"/> <wire from="(7900,910)" to="(7900,1060)"/> <wire from="(3610,130)" to="(3610,520)"/> <wire from="(7760,460)" to="(7820,460)"/> <wire from="(1920,690)" to="(1920,800)"/> <wire from="(3230,670)" to="(3350,670)"/> <wire from="(7520,930)" to="(7640,930)"/> <wire from="(5310,690)" to="(5310,800)"/> <wire from="(2810,460)" to="(3110,460)"/> <wire from="(8490,910)" to="(8490,1360)"/> <wire from="(4260,670)" to="(4320,670)"/> <wire from="(2640,130)" to="(2640,290)"/> <wire from="(8550,840)" to="(8550,1360)"/> <wire from="(5110,560)" to="(5170,560)"/> <wire from="(4740,1150)" to="(4800,1150)"/> <wire from="(320,620)" to="(320,950)"/> <wire from="(1300,840)" to="(1300,910)"/> <wire from="(2830,130)" to="(2830,250)"/> <wire from="(8060,560)" to="(8590,560)"/> <wire from="(3860,840)" to="(3860,950)"/> <wire from="(8000,930)" to="(8350,930)"/> <wire from="(1060,1240)" to="(1060,1360)"/> <wire from="(5490,480)" to="(5490,730)"/> <wire from="(4700,910)" to="(4700,1020)"/> <wire from="(2750,890)" to="(2810,890)"/> <wire from="(3920,1020)" to="(3920,1360)"/> <wire from="(3650,1150)" to="(3710,1150)"/> <wire from="(4820,520)" to="(4820,580)"/> <wire from="(3470,670)" to="(3840,670)"/> <wire from="(3960,780)" to="(4920,780)"/> <wire from="(4260,420)" to="(4320,420)"/> <wire from="(5050,890)" to="(5110,890)"/> <wire from="(6590,950)" to="(6590,1060)"/> <wire from="(3730,130)" to="(3730,440)"/> <wire from="(7080,480)" to="(7080,580)"/> <wire from="(4820,130)" to="(4820,520)"/> <wire from="(7840,1240)" to="(7840,1360)"/> <wire from="(7260,1170)" to="(7260,1360)"/> <wire from="(130,1110)" to="(300,1110)"/> <wire from="(3370,800)" to="(3370,910)"/> <wire from="(6800,840)" to="(6800,910)"/> <wire from="(7760,930)" to="(8000,930)"/> <wire from="(130,890)" to="(130,930)"/> <wire from="(7260,910)" to="(7260,1170)"/> <wire from="(2870,500)" to="(2930,500)"/> <wire from="(3590,1220)" to="(3650,1220)"/> <wire from="(4080,890)" to="(4260,890)"/> <wire from="(1780,1000)" to="(2380,1000)"/> <wire from="(7440,840)" to="(7440,910)"/> <wire from="(5800,480)" to="(5800,580)"/> <wire from="(8080,840)" to="(8080,910)"/> <wire from="(4640,1240)" to="(4640,1360)"/> <wire from="(7520,1260)" to="(7700,1260)"/> <wire from="(4700,1170)" to="(4700,1240)"/> <wire from="(5980,910)" to="(5980,1130)"/> <wire from="(1480,1280)" to="(1480,1360)"/> <wire from="(5110,820)" to="(5170,820)"/> <wire from="(3920,130)" to="(3920,440)"/> <wire from="(5860,250)" to="(5860,1360)"/> <wire from="(620,1060)" to="(620,1130)"/> <wire from="(3980,580)" to="(3980,690)"/> <wire from="(5960,780)" to="(6080,780)"/> <wire from="(5290,1000)" to="(5350,1000)"/> <wire from="(1840,560)" to="(1900,560)"/> <wire from="(110,450)" to="(150,450)"/> <wire from="(4940,130)" to="(4940,210)"/> <wire from="(5780,670)" to="(5960,670)"/> <wire from="(7660,800)" to="(7660,950)"/> <wire from="(6780,890)" to="(6840,890)"/> <wire from="(7440,580)" to="(7440,730)"/> <wire from="(8020,130)" to="(8020,480)"/> <wire from="(8670,730)" to="(8670,840)"/> <wire from="(2580,330)" to="(2580,480)"/> <wire from="(3610,1170)" to="(3610,1240)"/> <wire from="(6590,690)" to="(6590,840)"/> <wire from="(6900,460)" to="(7000,460)"/> <wire from="(6100,520)" to="(6100,690)"/> <wire from="(4200,1260)" to="(4260,1260)"/> <wire from="(800,1000)" to="(920,1000)"/> <wire from="(5130,130)" to="(5130,330)"/> <wire from="(5050,1220)" to="(5170,1220)"/> <wire from="(6920,580)" to="(6920,690)"/> <wire from="(1360,130)" to="(1360,480)"/> <wire from="(3550,1240)" to="(3550,1360)"/> <wire from="(3430,480)" to="(3430,580)"/> <wire from="(1400,890)" to="(1460,890)"/> <wire from="(1240,1170)" to="(1240,1240)"/> <wire from="(5960,460)" to="(6020,460)"/> <wire from="(2950,250)" to="(2950,520)"/> <wire from="(560,1130)" to="(560,1240)"/> <wire from="(8490,800)" to="(8490,910)"/> <wire from="(4080,1220)" to="(4320,1220)"/> <wire from="(2040,690)" to="(2040,800)"/> <wire from="(6800,330)" to="(6800,480)"/> <wire from="(2460,330)" to="(2460,800)"/> <wire from="(4920,890)" to="(5050,890)"/> <wire from="(6530,1020)" to="(6530,1170)"/> <wire from="(3960,890)" to="(4020,890)"/> <wire from="(3130,690)" to="(3130,840)"/> <wire from="(7640,930)" to="(7760,930)"/> <wire from="(6410,130)" to="(6410,290)"/> <wire from="(6900,930)" to="(7180,930)"/> <wire from="(2020,780)" to="(2440,780)"/> <wire from="(6740,910)" to="(6740,1020)"/> <wire from="(1000,1060)" to="(1000,1130)"/> <wire from="(5230,560)" to="(5290,560)"/> <wire from="(980,600)" to="(1040,600)"/> <wire from="(1400,420)" to="(2080,420)"/> <wire from="(6290,520)" to="(6290,730)"/> <wire from="(1420,840)" to="(1420,910)"/> <wire from="(2950,130)" to="(2950,250)"/> <wire from="(8470,190)" to="(8820,190)"/> <wire from="(6510,560)" to="(6570,560)"/> <wire from="(560,620)" to="(560,730)"/> <wire from="(1180,1240)" to="(1180,1360)"/> <wire from="(320,1020)" to="(320,1130)"/> <wire from="(8370,290)" to="(8370,690)"/> <wire from="(6860,130)" to="(6860,330)"/> <wire from="(2870,890)" to="(2930,890)"/> <wire from="(1800,580)" to="(1800,690)"/> <wire from="(1740,130)" to="(1740,480)"/> <wire from="(70,780)" to="(130,780)"/> <wire from="(6920,840)" to="(6920,950)"/> <wire from="(7200,480)" to="(7200,580)"/> <wire from="(920,670)" to="(980,670)"/> <wire from="(7660,290)" to="(7660,730)"/> <wire from="(2220,1130)" to="(2220,1240)"/> <wire from="(1600,1020)" to="(1600,1170)"/> <wire from="(7360,1000)" to="(7520,1000)"/> <wire from="(180,710)" to="(360,710)"/> <wire from="(7840,480)" to="(7840,580)"/> <wire from="(4340,690)" to="(4340,840)"/> <wire from="(6270,780)" to="(6390,780)"/> <wire from="(4940,520)" to="(4940,730)"/> <wire from="(6270,710)" to="(6330,710)"/> <wire from="(1060,480)" to="(1060,620)"/> <wire from="(1400,1220)" to="(1520,1220)"/> <wire from="(1780,890)" to="(1840,890)"/> <wire from="(3410,560)" to="(3710,560)"/> <wire from="(940,1130)" to="(940,1240)"/> <wire from="(6040,1240)" to="(6040,1360)"/> <wire from="(6450,890)" to="(6510,890)"/> <wire from="(8120,1040)" to="(8230,1040)"/> <wire from="(1460,890)" to="(1720,890)"/> <wire from="(4760,1240)" to="(4760,1360)"/> <wire from="(600,600)" to="(800,600)"/> <wire from="(3530,1040)" to="(3590,1040)"/> <wire from="(3840,460)" to="(3960,460)"/> <wire from="(4040,130)" to="(4040,330)"/> <wire from="(600,670)" to="(860,670)"/> <wire from="(8230,820)" to="(8350,820)"/> <wire from="(7520,1000)" to="(7580,1000)"/> <wire from="(1180,730)" to="(1180,840)"/> <wire from="(7580,560)" to="(7760,560)"/> <wire from="(1360,910)" to="(1360,1060)"/> <wire from="(7020,1060)" to="(7020,1360)"/> <wire from="(3190,620)" to="(3190,1060)"/> <wire from="(940,620)" to="(940,690)"/> <wire from="(6470,580)" to="(6470,690)"/> <wire from="(8670,480)" to="(8670,620)"/> <wire from="(4820,1170)" to="(4820,1240)"/> <wire from="(500,690)" to="(500,840)"/> <wire from="(1960,560)" to="(2020,560)"/> <wire from="(2080,1150)" to="(3110,1150)"/> <wire from="(1160,1110)" to="(1280,1110)"/> <wire from="(3250,690)" to="(3250,800)"/> <wire from="(3370,1060)" to="(3370,1360)"/> <wire from="(5190,580)" to="(5190,690)"/> <wire from="(3290,500)" to="(3530,500)"/> <wire from="(7700,1260)" to="(7940,1260)"/> <wire from="(8140,130)" to="(8140,480)"/> <wire from="(1580,1000)" to="(1720,1000)"/> <wire from="(8710,380)" to="(8860,380)"/> <wire from="(4160,1280)" to="(4160,1360)"/> <wire from="(3670,1240)" to="(3670,1360)"/> <wire from="(5370,1020)" to="(5370,1170)"/> <wire from="(980,420)" to="(1100,420)"/> <wire from="(3730,1170)" to="(3730,1360)"/> <wire from="(1480,130)" to="(1480,480)"/> <wire from="(6840,310)" to="(7180,310)"/> <wire from="(4380,820)" to="(4560,820)"/> <wire from="(2280,1060)" to="(2280,1360)"/> <wire from="(1100,1110)" to="(1160,1110)"/> <wire from="(7900,800)" to="(7900,910)"/> <wire from="(820,620)" to="(820,1020)"/> <wire from="(3170,1150)" to="(3410,1150)"/> <wire from="(3840,270)" to="(5350,270)"/> <wire from="(6720,460)" to="(6780,460)"/> <wire from="(2620,270)" to="(2870,270)"/> <wire from="(880,690)" to="(880,800)"/> <wire from="(3900,420)" to="(4260,420)"/> <wire from="(7580,890)" to="(7820,890)"/> <wire from="(3050,820)" to="(3110,820)"/> <wire from="(4920,190)" to="(5780,190)"/> <wire from="(3470,600)" to="(3530,600)"/> <wire from="(1740,910)" to="(1740,1020)"/> <wire from="(5980,800)" to="(5980,910)"/> <wire from="(7540,690)" to="(7540,950)"/> <wire from="(1360,1170)" to="(1360,1280)"/> <wire from="(7940,1040)" to="(8000,1040)"/> <wire from="(2830,910)" to="(2830,1060)"/> <wire from="(3490,1060)" to="(3490,1240)"/> <wire from="(360,500)" to="(420,500)"/> <wire from="(5110,460)" to="(5290,460)"/> <wire from="(740,310)" to="(860,310)"/> <wire from="(8730,910)" to="(8730,1360)"/> <wire from="(7240,1150)" to="(7520,1150)"/> <wire from="(5190,840)" to="(5190,910)"/> <wire from="(6570,670)" to="(6720,670)"/> <wire from="(920,420)" to="(980,420)"/> <wire from="(4200,1150)" to="(4380,1150)"/> <wire from="(7820,1220)" to="(8230,1220)"/> <wire from="(6080,670)" to="(6450,670)"/> <wire from="(1100,600)" to="(1160,600)"/> <wire from="(8120,670)" to="(8350,670)"/> <wire from="(7820,1000)" to="(8060,1000)"/> <wire from="(2870,270)" to="(3050,270)"/> <wire from="(8370,690)" to="(8370,840)"/> <wire from="(8000,1040)" to="(8120,1040)"/> <wire from="(1920,580)" to="(1920,690)"/> <wire from="(7540,950)" to="(7540,1020)"/> <wire from="(540,1000)" to="(800,1000)"/> <wire from="(3650,1040)" to="(3840,1040)"/> <wire from="(3410,670)" to="(3470,670)"/> <wire from="(4100,840)" to="(4100,910)"/> <wire from="(8730,400)" to="(8730,840)"/> <wire from="(1860,130)" to="(1860,480)"/> <wire from="(4160,520)" to="(4160,580)"/> <wire from="(4260,820)" to="(4320,820)"/> <wire from="(420,310)" to="(740,310)"/> <wire from="(6510,1000)" to="(6660,1000)"/> <wire from="(7440,1240)" to="(7440,1360)"/> <wire from="(4080,710)" to="(4860,710)"/> <wire from="(8770,670)" to="(8820,670)"/> <wire from="(3070,130)" to="(3070,290)"/> <wire from="(7260,290)" to="(7260,480)"/> <wire from="(4280,1280)" to="(4280,1360)"/> <wire from="(1520,1150)" to="(1580,1150)"/> <wire from="(5290,890)" to="(5350,890)"/> <wire from="(180,420)" to="(800,420)"/> <wire from="(1900,890)" to="(1960,890)"/> <wire from="(5780,560)" to="(5960,560)"/> <wire from="(1740,1170)" to="(1740,1240)"/> <wire from="(6290,910)" to="(6290,1360)"/> <wire from="(6140,270)" to="(6330,270)"/> <wire from="(8060,1000)" to="(8290,1000)"/> <wire from="(8790,480)" to="(8790,580)"/> <wire from="(6350,840)" to="(6350,1360)"/> <wire from="(4760,480)" to="(4760,580)"/> <wire from="(2750,780)" to="(2810,780)"/> <wire from="(5230,420)" to="(7300,420)"/> <wire from="(6530,130)" to="(6530,480)"/> <wire from="(2950,520)" to="(2950,730)"/> <wire from="(7900,1060)" to="(7900,1130)"/> <wire from="(6040,480)" to="(6040,580)"/> <wire from="(7880,670)" to="(8000,670)"/> <wire from="(420,820)" to="(480,820)"/> <wire from="(4880,840)" to="(4880,1360)"/> <wire from="(7020,690)" to="(7020,800)"/> <wire from="(6590,580)" to="(6590,690)"/> <wire from="(760,950)" to="(760,1360)"/> <wire from="(130,1000)" to="(300,1000)"/> <wire from="(6160,840)" to="(6160,1360)"/> <wire from="(1960,1150)" to="(2080,1150)"/> <wire from="(1060,620)" to="(1060,690)"/> <wire from="(1280,1040)" to="(1340,1040)"/> <wire from="(5130,910)" to="(5130,1060)"/> <wire from="(5350,890)" to="(5470,890)"/> <wire from="(3370,690)" to="(3370,800)"/> <wire from="(7240,270)" to="(7640,270)"/> <wire from="(6100,910)" to="(6100,1360)"/> <wire from="(7700,500)" to="(7940,500)"/> <wire from="(70,1220)" to="(480,1220)"/> <wire from="(130,780)" to="(130,820)"/> <wire from="(7880,1110)" to="(7940,1110)"/> <wire from="(6860,910)" to="(6860,1130)"/> <wire from="(4340,440)" to="(4340,620)"/> <wire from="(5250,130)" to="(5250,440)"/> <wire from="(1980,130)" to="(1980,290)"/> <wire from="(5310,580)" to="(5310,690)"/> <wire from="(6900,820)" to="(7180,820)"/> <wire from="(5110,1110)" to="(5290,1110)"/> <wire from="(360,890)" to="(420,890)"/> <wire from="(3130,580)" to="(3130,690)"/> <wire from="(1600,130)" to="(1600,480)"/> <wire from="(6740,800)" to="(6740,910)"/> <wire from="(1480,910)" to="(1480,1130)"/> <wire from="(5070,730)" to="(5070,800)"/> <wire from="(6530,910)" to="(6530,1020)"/> <wire from="(6350,730)" to="(6350,840)"/> <wire from="(3010,330)" to="(3010,520)"/> <wire from="(70,230)" to="(1900,230)"/> <wire from="(3610,1060)" to="(3610,1170)"/> <wire from="(1900,1150)" to="(1960,1150)"/> <wire from="(320,130)" to="(320,480)"/> <wire from="(6330,270)" to="(6390,270)"/> <wire from="(3650,500)" to="(4140,500)"/> <wire from="(6840,460)" to="(6900,460)"/> <wire from="(5170,1220)" to="(5960,1220)"/> <wire from="(2520,130)" to="(2520,1240)"/> <wire from="(6100,800)" to="(6100,910)"/> <wire from="(3050,270)" to="(3290,270)"/> <wire from="(4620,670)" to="(4680,670)"/> <wire from="(2580,480)" to="(2580,580)"/> <wire from="(5780,190)" to="(6080,190)"/> <wire from="(300,460)" to="(480,460)"/> <wire from="(6020,560)" to="(6450,560)"/> <wire from="(6590,840)" to="(6590,950)"/> <wire from="(1220,600)" to="(1280,600)"/> <wire from="(3550,1130)" to="(3550,1240)"/> <wire from="(1000,690)" to="(1000,840)"/> <wire from="(3860,480)" to="(3860,580)"/> <wire from="(1720,460)" to="(1780,460)"/> <wire from="(7440,730)" to="(7440,840)"/> <wire from="(4880,730)" to="(4880,840)"/> <wire from="(560,1020)" to="(560,1130)"/> <wire from="(2930,710)" to="(2990,710)"/> <wire from="(7180,670)" to="(7240,670)"/> <wire from="(4080,1110)" to="(4320,1110)"/> <wire from="(1420,1240)" to="(1420,1360)"/> <wire from="(2040,580)" to="(2040,690)"/> <wire from="(5370,130)" to="(5370,290)"/> <wire from="(3980,210)" to="(3980,480)"/> <wire from="(7820,670)" to="(7880,670)"/> <wire from="(2280,690)" to="(2280,840)"/> <wire from="(5070,1240)" to="(5070,1360)"/> <wire from="(4160,130)" to="(4160,520)"/> <wire from="(7520,1150)" to="(7700,1150)"/> <wire from="(3110,460)" to="(3350,460)"/> <wire from="(1860,910)" to="(1860,1130)"/> <wire from="(4620,420)" to="(4680,420)"/> <wire from="(6800,480)" to="(6800,580)"/> <wire from="(110,380)" to="(110,450)"/> <wire from="(2280,950)" to="(2280,1060)"/> <wire from="(2020,460)" to="(2260,460)"/> <wire from="(440,130)" to="(440,330)"/> <wire from="(2770,480)" to="(2770,580)"/> <wire from="(7420,820)" to="(7580,820)"/> <wire from="(4800,1150)" to="(5350,1150)"/> <wire from="(4580,690)" to="(4580,840)"/> <wire from="(7440,480)" to="(7440,580)"/> <wire from="(5470,310)" to="(5530,310)"/> <wire from="(7540,580)" to="(7540,690)"/> <wire from="(5660,890)" to="(5780,890)"/> <wire from="(4680,600)" to="(5410,600)"/> <wire from="(6410,910)" to="(6410,1360)"/> <wire from="(3130,840)" to="(3130,910)"/> <wire from="(2260,560)" to="(2380,560)"/> <wire from="(4080,600)" to="(4320,600)"/> <wire from="(2870,780)" to="(2930,780)"/> <wire from="(7600,1020)" to="(7600,1240)"/> <wire from="(7760,1000)" to="(7820,1000)"/> <wire from="(3230,500)" to="(3290,500)"/> <wire from="(4280,130)" to="(4280,440)"/> <wire from="(2260,1040)" to="(2810,1040)"/> <wire from="(620,690)" to="(620,1060)"/> <wire from="(1420,730)" to="(1420,840)"/> <wire from="(1180,1130)" to="(1180,1240)"/> <wire from="(70,670)" to="(130,670)"/> <wire from="(5310,330)" to="(5310,480)"/> <wire from="(4940,910)" to="(4940,1360)"/> <wire from="(7200,1130)" to="(7200,1360)"/> <wire from="(1460,460)" to="(1520,460)"/> <wire from="(1800,210)" to="(1800,480)"/> <wire from="(820,1020)" to="(820,1360)"/> <wire from="(7180,310)" to="(8410,310)"/> <wire from="(1220,1000)" to="(1400,1000)"/> <wire from="(940,1020)" to="(940,1130)"/> <wire from="(6720,1110)" to="(6780,1110)"/> <wire from="(6390,460)" to="(6450,460)"/> <wire from="(8370,950)" to="(8370,1360)"/> <wire from="(2200,560)" to="(2260,560)"/> <wire from="(8310,1020)" to="(8310,1360)"/> <wire from="(3110,1150)" to="(3170,1150)"/> <wire from="(4020,670)" to="(4260,670)"/> <wire from="(6290,800)" to="(6290,910)"/> <wire from="(2320,930)" to="(3840,930)"/> <wire from="(4920,780)" to="(5050,780)"/> <wire from="(4020,460)" to="(4080,460)"/> <wire from="(8250,840)" to="(8250,910)"/> <wire from="(1180,620)" to="(1180,730)"/> <wire from="(980,890)" to="(1160,890)"/> <wire from="(480,890)" to="(540,890)"/> <wire from="(4340,840)" to="(4340,910)"/> <wire from="(2830,800)" to="(2830,910)"/> <wire from="(3190,130)" to="(3190,440)"/> <wire from="(4440,500)" to="(4500,500)"/> <wire from="(6570,560)" to="(6720,560)"/> <wire from="(4200,1040)" to="(4380,1040)"/> <wire from="(1840,1110)" to="(2020,1110)"/> <wire from="(5170,820)" to="(5720,820)"/> <wire from="(2810,1110)" to="(3530,1110)"/> <wire from="(5490,130)" to="(5490,330)"/> <wire from="(1600,1170)" to="(1600,1240)"/> <wire from="(8020,1060)" to="(8020,1280)"/> <wire from="(4940,800)" to="(4940,910)"/> <wire from="(8670,620)" to="(8670,730)"/> <wire from="(7660,950)" to="(7660,1360)"/> <wire from="(7960,1130)" to="(7960,1280)"/> <wire from="(7780,690)" to="(7780,950)"/> <wire from="(7820,820)" to="(8000,820)"/> <wire from="(1000,440)" to="(1000,620)"/> <wire from="(5370,910)" to="(5370,1020)"/> <wire from="(4040,910)" to="(4040,1360)"/> <wire from="(7580,1220)" to="(7760,1220)"/> <wire from="(500,840)" to="(500,910)"/> <wire from="(4320,890)" to="(4380,890)"/> <wire from="(4100,1240)" to="(4100,1360)"/> <wire from="(920,820)" to="(980,820)"/> <wire from="(8470,890)" to="(8650,890)"/> <wire from="(5550,950)" to="(5550,1360)"/> <wire from="(1340,600)" to="(1400,600)"/> <wire from="(5660,310)" to="(5720,310)"/> <wire from="(440,520)" to="(440,730)"/> <wire from="(1160,420)" to="(1220,420)"/> <wire from="(1100,1000)" to="(1160,1000)"/> <wire from="(2640,290)" to="(2640,480)"/> <wire from="(1840,460)" to="(1900,460)"/> <wire from="(3980,480)" to="(3980,580)"/> <wire from="(1340,670)" to="(1460,670)"/> <wire from="(6530,1170)" to="(6530,1360)"/> <wire from="(6020,670)" to="(6080,670)"/> <wire from="(6450,780)" to="(6510,780)"/> <wire from="(2100,130)" to="(2100,440)"/> <wire from="(6720,230)" to="(6900,230)"/> <wire from="(2950,910)" to="(2950,1360)"/> <wire from="(1540,1240)" to="(1540,1360)"/> <wire from="(7780,950)" to="(7780,1020)"/> <wire from="(1740,800)" to="(1740,910)"/> <wire from="(2560,310)" to="(2990,310)"/> <wire from="(3230,890)" to="(3290,890)"/> <wire from="(5190,1240)" to="(5190,1360)"/> <wire from="(2930,230)" to="(3230,230)"/> <wire from="(820,130)" to="(820,440)"/> <wire from="(1360,1060)" to="(1360,1170)"/> <wire from="(4680,1000)" to="(4740,1000)"/> <wire from="(7020,580)" to="(7020,690)"/> <wire from="(300,1110)" to="(480,1110)"/> <wire from="(860,890)" to="(920,890)"/> <wire from="(6920,480)" to="(6920,580)"/> <wire from="(6720,780)" to="(7000,780)"/> <wire from="(4100,730)" to="(4100,840)"/> <wire from="(4700,690)" to="(4700,840)"/> <wire from="(3310,130)" to="(3310,290)"/> <wire from="(1460,1110)" to="(1780,1110)"/> <wire from="(1280,670)" to="(1340,670)"/> <wire from="(5350,780)" to="(5470,780)"/> <wire from="(5470,460)" to="(5780,460)"/> <wire from="(130,1150)" to="(160,1150)"/> <wire from="(6270,230)" to="(6720,230)"/> <wire from="(2560,670)" to="(2620,670)"/> <wire from="(3170,600)" to="(3470,600)"/> <wire from="(7720,1280)" to="(7720,1360)"/> <wire from="(7300,420)" to="(7360,420)"/> <wire from="(1580,1150)" to="(1720,1150)"/> <wire from="(2830,1060)" to="(2830,1130)"/> <wire from="(8430,130)" to="(8430,330)"/> <wire from="(7260,690)" to="(7260,840)"/> <wire from="(8120,1260)" to="(8820,1260)"/> <wire from="(1300,1130)" to="(1300,1280)"/> <wire from="(6680,1130)" to="(6680,1360)"/> <wire from="(3490,690)" to="(3490,1060)"/> <wire from="(300,600)" to="(480,600)"/> <wire from="(5170,1040)" to="(5230,1040)"/> <wire from="(8770,560)" to="(8820,560)"/> <wire from="(3550,620)" to="(3550,1060)"/> <wire from="(6410,800)" to="(6410,910)"/> <wire from="(8370,840)" to="(8370,950)"/> <wire from="(1300,620)" to="(1300,690)"/> <wire from="(7900,690)" to="(7900,800)"/> <wire from="(1980,910)" to="(1980,1170)"/> <wire from="(5680,130)" to="(5680,330)"/> <wire from="(1980,1170)" to="(1980,1360)"/> <wire from="(3430,1020)" to="(3430,1170)"/> <wire from="(6510,460)" to="(6570,460)"/> <wire from="(3010,730)" to="(3010,800)"/> <wire from="(2200,1220)" to="(2380,1220)"/> <wire from="(2750,670)" to="(2810,670)"/> <wire from="(5530,310)" to="(5660,310)"/> <wire from="(5980,690)" to="(5980,800)"/> <wire from="(5070,480)" to="(5070,730)"/> <wire from="(8550,130)" to="(8550,250)"/> <wire from="(7080,1020)" to="(7080,1170)"/> <wire from="(1800,480)" to="(1800,580)"/> <wire from="(7180,930)" to="(7520,930)"/> <wire from="(2950,800)" to="(2950,910)"/> <wire from="(4380,460)" to="(4560,460)"/> <wire from="(560,130)" to="(560,480)"/> <wire from="(2220,520)" to="(2220,580)"/> <wire from="(3370,580)" to="(3370,690)"/> <wire from="(1460,1260)" to="(4140,1260)"/> <wire from="(1120,440)" to="(1120,620)"/> <wire from="(8140,1060)" to="(8140,1280)"/> <wire from="(7180,560)" to="(7240,560)"/> <wire from="(130,670)" to="(130,710)"/> <wire from="(7820,560)" to="(7880,560)"/> <wire from="(7580,460)" to="(7760,460)"/> <wire from="(1040,460)" to="(1340,460)"/> <wire from="(6470,480)" to="(6470,580)"/> <wire from="(5800,130)" to="(5800,210)"/> <wire from="(5130,1060)" to="(5130,1130)"/> <wire from="(6840,890)" to="(7000,890)"/> <wire from="(2280,580)" to="(2280,690)"/> <wire from="(1460,600)" to="(1520,600)"/> <wire from="(5290,780)" to="(5350,780)"/> <wire from="(2620,670)" to="(2750,670)"/> <wire from="(1960,460)" to="(2020,460)"/> <wire from="(760,330)" to="(760,730)"/> <wire from="(4400,130)" to="(4400,480)"/> <wire from="(1460,670)" to="(1580,670)"/> <wire from="(6410,290)" to="(6410,480)"/> <wire from="(6780,670)" to="(6840,670)"/> <wire from="(7240,560)" to="(7360,560)"/> <wire from="(8060,820)" to="(8230,820)"/> <wire from="(7600,130)" to="(7600,480)"/> <wire from="(7000,890)" to="(7060,890)"/> <wire from="(5370,1170)" to="(5370,1360)"/> <wire from="(2990,310)" to="(3410,310)"/> <wire from="(880,330)" to="(880,520)"/> <wire from="(3350,890)" to="(3410,890)"/> <wire from="(940,130)" to="(940,440)"/> <wire from="(7080,130)" to="(7080,210)"/> <wire from="(8060,670)" to="(8120,670)"/> <wire from="(8140,800)" to="(8140,1060)"/> <wire from="(380,730)" to="(380,800)"/> <wire from="(4620,820)" to="(4680,820)"/> <wire from="(4380,1220)" to="(4440,1220)"/> <wire from="(8650,820)" to="(8710,820)"/> <wire from="(3190,1170)" to="(3190,1360)"/> <wire from="(7420,1220)" to="(7580,1220)"/> <wire from="(5050,710)" to="(5470,710)"/> <wire from="(8250,730)" to="(8250,840)"/> <wire from="(4400,910)" to="(4400,1060)"/> <wire from="(7780,580)" to="(7780,690)"/> <wire from="(1540,480)" to="(1540,620)"/> <wire from="(3310,520)" to="(3310,730)"/> <wire from="(6720,1000)" to="(6780,1000)"/> <wire from="(560,910)" to="(560,1020)"/> <wire from="(7180,820)" to="(7240,820)"/> <wire from="(3530,1110)" to="(4080,1110)"/> <wire from="(4080,1000)" to="(4320,1000)"/> <wire from="(8020,690)" to="(8020,840)"/> <wire from="(4100,480)" to="(4100,620)"/> <wire from="(3960,670)" to="(4020,670)"/> <wire from="(7960,620)" to="(7960,1060)"/> <wire from="(6800,1130)" to="(6800,1360)"/> <wire from="(8250,1240)" to="(8250,1360)"/> <wire from="(6740,690)" to="(6740,800)"/> <wire from="(1000,840)" to="(1000,910)"/> <wire from="(5720,310)" to="(6780,310)"/> <wire from="(180,930)" to="(300,930)"/> <wire from="(540,1220)" to="(600,1220)"/> <wire from="(2280,840)" to="(2280,950)"/> <wire from="(6530,800)" to="(6530,910)"/> <wire from="(5680,520)" to="(5680,800)"/> <wire from="(2040,210)" to="(2040,480)"/> <wire from="(5290,1110)" to="(5410,1110)"/> <wire from="(7600,910)" to="(7600,1020)"/> <wire from="(2100,1170)" to="(2100,1360)"/> <wire from="(7840,1020)" to="(7840,1170)"/> <wire from="(7240,890)" to="(7420,890)"/> <wire from="(2220,130)" to="(2220,520)"/> <wire from="(8410,670)" to="(8770,670)"/> <wire from="(3650,1220)" to="(4080,1220)"/> <wire from="(130,420)" to="(130,470)"/> <wire from="(6100,690)" to="(6100,800)"/> <wire from="(4700,440)" to="(4700,620)"/> <wire from="(4280,910)" to="(4280,1280)"/> <wire from="(6680,620)" to="(6680,1020)"/> <wire from="(1920,480)" to="(1920,580)"/> <wire from="(3710,1000)" to="(3900,1000)"/> <wire from="(3430,130)" to="(3430,330)"/> <wire from="(7880,890)" to="(8060,890)"/> <wire from="(1420,620)" to="(1420,730)"/> <wire from="(1180,1020)" to="(1180,1130)"/> <wire from="(4520,130)" to="(4520,520)"/> <wire from="(4580,840)" to="(4580,910)"/> <wire from="(6840,1110)" to="(7180,1110)"/> <wire from="(440,910)" to="(440,1360)"/> <wire from="(70,560)" to="(130,560)"/> <wire from="(8310,130)" to="(8310,1020)"/> <wire from="(6680,1020)" to="(6680,1130)"/> <wire from="(4740,560)" to="(4800,560)"/> <wire from="(4320,420)" to="(4620,420)"/> <wire from="(8650,710)" to="(8820,710)"/> <wire from="(5780,460)" to="(5960,460)"/> <wire from="(1400,1000)" to="(1520,1000)"/> <wire from="(1780,670)" to="(1840,670)"/> <wire from="(940,910)" to="(940,1020)"/> <wire from="(6450,670)" to="(6510,670)"/> <wire from="(1240,440)" to="(1240,620)"/> <wire from="(7000,1040)" to="(7180,1040)"/> <wire from="(2080,1040)" to="(2200,1040)"/> <wire from="(2340,130)" to="(2340,330)"/> <wire from="(1960,270)" to="(2620,270)"/> <wire from="(7720,130)" to="(7720,520)"/> <wire from="(3960,1000)" to="(4080,1000)"/> <wire from="(5920,130)" to="(5920,290)"/> <wire from="(90,380)" to="(90,500)"/> <wire from="(4340,1240)" to="(4340,1360)"/> <wire from="(3470,460)" to="(3840,460)"/> <wire from="(8000,1260)" to="(8060,1260)"/> <wire from="(4560,890)" to="(4620,890)"/> <wire from="(1360,690)" to="(1360,840)"/> <wire from="(2320,820)" to="(3050,820)"/> <wire from="(2830,690)" to="(2830,800)"/> <wire from="(4400,1170)" to="(4400,1240)"/> <wire from="(7240,670)" to="(7520,670)"/> <wire from="(6590,480)" to="(6590,580)"/> <wire from="(5780,1040)" to="(6020,1040)"/> <wire from="(920,1220)" to="(980,1220)"/> <wire from="(8770,820)" to="(8820,820)"/> <wire from="(7640,270)" to="(8350,270)"/> <wire from="(8230,1040)" to="(8820,1040)"/> <wire from="(7420,710)" to="(7580,710)"/> <wire from="(6570,1040)" to="(6900,1040)"/> <wire from="(8670,1020)" to="(8670,1170)"/> <wire from="(8020,950)" to="(8020,1060)"/> <wire from="(1160,890)" to="(1280,890)"/> <wire from="(2020,1040)" to="(2080,1040)"/> <wire from="(5660,780)" to="(5780,780)"/> <wire from="(8550,250)" to="(8550,730)"/> <wire from="(500,1240)" to="(500,1360)"/> <wire from="(5310,480)" to="(5310,580)"/> <wire from="(7580,710)" to="(7640,710)"/> <wire from="(6510,1150)" to="(7060,1150)"/> <wire from="(3900,1000)" to="(3960,1000)"/> <wire from="(7260,580)" to="(7260,690)"/> <wire from="(1040,1040)" to="(1280,1040)"/> <wire from="(4500,1220)" to="(4560,1220)"/> <wire from="(5550,330)" to="(5550,800)"/> <wire from="(6470,1130)" to="(6470,1360)"/> <wire from="(2750,1000)" to="(3410,1000)"/> <wire from="(5900,270)" to="(6140,270)"/> <wire from="(3130,480)" to="(3130,580)"/> <wire from="(5800,910)" to="(5800,1060)"/> <wire from="(1060,130)" to="(1060,480)"/> <wire from="(4100,1130)" to="(4100,1240)"/> <wire from="(5490,910)" to="(5490,1360)"/> <wire from="(180,820)" to="(420,820)"/> <wire from="(760,730)" to="(760,950)"/> <wire from="(7900,580)" to="(7900,690)"/> <wire from="(8530,230)" to="(8820,230)"/> <wire from="(5250,1060)" to="(5250,1360)"/> <wire from="(7960,1280)" to="(7960,1360)"/> <wire from="(4640,130)" to="(4640,440)"/> <wire from="(8250,480)" to="(8250,620)"/> <wire from="(3590,500)" to="(3650,500)"/> <wire from="(5980,580)" to="(5980,690)"/> <wire from="(1740,690)" to="(1740,800)"/> <wire from="(3230,780)" to="(3290,780)"/> <wire from="(3960,190)" to="(4920,190)"/> <wire from="(1800,1130)" to="(1800,1360)"/> <wire from="(6860,690)" to="(6860,840)"/> <wire from="(8710,890)" to="(8770,890)"/> <wire from="(7080,910)" to="(7080,1020)"/> <wire from="(5960,1110)" to="(6450,1110)"/> <wire from="(540,460)" to="(600,460)"/> <wire from="(4100,620)" to="(4100,730)"/> <wire from="(8140,690)" to="(8140,800)"/> <wire from="(3430,910)" to="(3430,1020)"/> <wire from="(8670,130)" to="(8670,480)"/> <wire from="(4760,1020)" to="(4760,1170)"/> <wire from="(1720,1000)" to="(1780,1000)"/> <wire from="(1980,290)" to="(1980,480)"/> <wire from="(130,1040)" to="(160,1040)"/> <wire from="(2560,560)" to="(2620,560)"/> <wire from="(7380,440)" to="(7380,580)"/> <wire from="(7200,130)" to="(7200,330)"/> <wire from="(540,710)" to="(740,710)"/> <wire from="(7760,1150)" to="(7820,1150)"/> <wire from="(3730,440)" to="(3730,580)"/> <wire from="(2040,480)" to="(2040,580)"/> <wire from="(3840,560)" to="(3900,560)"/> <wire from="(5370,800)" to="(5370,910)"/> <wire from="(4700,840)" to="(4700,910)"/> <wire from="(6800,1020)" to="(6800,1130)"/> <wire from="(5660,500)" to="(6080,500)"/> <wire from="(3550,520)" to="(3550,620)"/> <wire from="(5290,670)" to="(5350,670)"/> <wire from="(7080,1170)" to="(7080,1360)"/> <wire from="(7540,480)" to="(7540,580)"/> <wire from="(1900,670)" to="(1960,670)"/> <wire from="(3590,600)" to="(4080,600)"/> <wire from="(3840,1040)" to="(4200,1040)"/> <wire from="(6780,560)" to="(6840,560)"/> <wire from="(7020,210)" to="(7020,480)"/> <wire from="(5800,1170)" to="(5800,1360)"/> <wire from="(7260,840)" to="(7260,910)"/> <wire from="(2380,1220)" to="(2500,1220)"/> <wire from="(2460,130)" to="(2460,330)"/> <wire from="(2750,560)" to="(2810,560)"/> <wire from="(2200,1110)" to="(2380,1110)"/> <wire from="(7000,780)" to="(7060,780)"/> <wire from="(3920,440)" to="(3920,580)"/> <wire from="(4460,1240)" to="(4460,1360)"/> <wire from="(1480,690)" to="(1480,840)"/> <wire from="(1300,1280)" to="(1300,1360)"/> <wire from="(3710,560)" to="(3840,560)"/> <wire from="(4320,600)" to="(4440,600)"/> <wire from="(5170,420)" to="(5230,420)"/> <wire from="(2770,250)" to="(2770,480)"/> <wire from="(180,500)" to="(360,500)"/> <wire from="(5680,910)" to="(5680,1360)"/> <wire from="(1280,820)" to="(1340,820)"/> <wire from="(7720,1170)" to="(7720,1280)"/> <wire from="(5130,690)" to="(5130,840)"/> <wire from="(6080,500)" to="(6270,500)"/> <wire from="(5740,840)" to="(5740,1360)"/> <wire from="(8120,780)" to="(8410,780)"/> <wire from="(1180,130)" to="(1180,440)"/> <wire from="(7840,130)" to="(7840,480)"/> <wire from="(5740,330)" to="(5740,840)"/> <wire from="(130,560)" to="(130,600)"/> <wire from="(3960,1150)" to="(4200,1150)"/> <wire from="(5370,290)" to="(5370,480)"/> <wire from="(3310,910)" to="(3310,1360)"/> <wire from="(620,1240)" to="(620,1360)"/> <wire from="(2990,500)" to="(3230,500)"/> <wire from="(4620,1220)" to="(4680,1220)"/> <wire from="(1840,1220)" to="(2200,1220)"/> <wire from="(6740,580)" to="(6740,690)"/> <wire from="(6570,460)" to="(6720,460)"/> <wire from="(3430,1170)" to="(3430,1360)"/> <wire from="(500,480)" to="(500,620)"/> <wire from="(6530,690)" to="(6530,800)"/> <wire from="(1460,820)" to="(1840,820)"/> <wire from="(1060,1170)" to="(1060,1240)"/> <wire from="(3070,290)" to="(3070,730)"/> <wire from="(7320,130)" to="(7320,440)"/> <wire from="(2620,560)" to="(2750,560)"/> <wire from="(7960,520)" to="(7960,620)"/> <wire from="(2400,580)" to="(2400,1020)"/> <wire from="(3190,1060)" to="(3190,1170)"/> <wire from="(6080,890)" to="(6270,890)"/> <wire from="(4040,690)" to="(4040,910)"/> <wire from="(6780,820)" to="(6840,820)"/> <wire from="(4320,1110)" to="(5110,1110)"/> <wire from="(860,780)" to="(1720,780)"/> <wire from="(8080,1280)" to="(8080,1360)"/> <wire from="(3550,130)" to="(3550,520)"/> <wire from="(4020,560)" to="(4140,560)"/> <wire from="(5310,1130)" to="(5310,1360)"/> <wire from="(3350,780)" to="(3410,780)"/> <wire from="(5680,800)" to="(5680,910)"/> <wire from="(4680,1150)" to="(4740,1150)"/> <wire from="(1340,1040)" to="(1900,1040)"/> <wire from="(130,560)" to="(1720,560)"/> <wire from="(1860,690)" to="(1860,840)"/> <wire from="(2100,1060)" to="(2100,1170)"/> <wire from="(2770,130)" to="(2770,250)"/> <wire from="(7940,500)" to="(8470,500)"/> <wire from="(7840,910)" to="(7840,1020)"/> <wire from="(3860,130)" to="(3860,290)"/> <wire from="(8790,130)" to="(8790,480)"/> <wire from="(1540,620)" to="(1540,950)"/> <wire from="(6140,820)" to="(6330,820)"/> <wire from="(180,1040)" to="(600,1040)"/> <wire from="(7720,520)" to="(7720,1060)"/> <wire from="(7180,1110)" to="(7880,1110)"/> <wire from="(3410,310)" to="(4020,310)"/> <wire from="(7660,730)" to="(7660,800)"/> <wire from="(3590,1150)" to="(3650,1150)"/> <wire from="(4080,820)" to="(4260,820)"/> <wire from="(1000,1240)" to="(1000,1360)"/> <wire from="(3960,560)" to="(4020,560)"/> <wire from="(5490,800)" to="(5490,910)"/> <wire from="(8730,840)" to="(8730,910)"/> <wire from="(1420,1020)" to="(1420,1170)"/> <wire from="(540,1110)" to="(600,1110)"/> <wire from="(7780,1240)" to="(7780,1360)"/> <wire from="(7020,480)" to="(7020,580)"/> <wire from="(4800,1220)" to="(5050,1220)"/> <wire from="(6570,930)" to="(6900,930)"/> <wire from="(4520,520)" to="(4520,1240)"/> <wire from="(8350,270)" to="(8820,270)"/> <wire from="(5230,1040)" to="(5780,1040)"/> <wire from="(1720,1150)" to="(1900,1150)"/> <wire from="(8020,840)" to="(8020,950)"/> <wire from="(3310,800)" to="(3310,910)"/> <wire from="(8470,500)" to="(8820,500)"/> <wire from="(8430,800)" to="(8430,950)"/> <wire from="(3980,1020)" to="(3980,1170)"/> <wire from="(4400,1060)" to="(4400,1170)"/> <wire from="(90,380)" to="(110,380)"/> <wire from="(2580,130)" to="(2580,330)"/> <wire from="(4200,500)" to="(4440,500)"/> <wire from="(3530,1220)" to="(3590,1220)"/> <wire from="(8490,210)" to="(8490,520)"/> <wire from="(3410,460)" to="(3470,460)"/> <wire from="(1180,910)" to="(1180,1020)"/> <wire from="(6160,130)" to="(6160,290)"/> <wire from="(4580,1240)" to="(4580,1360)"/> <wire from="(7960,130)" to="(7960,520)"/> <wire from="(2770,1020)" to="(2770,1360)"/> <wire from="(7060,1000)" to="(7360,1000)"/> <wire from="(1040,670)" to="(1280,670)"/> <wire from="(4740,460)" to="(5050,460)"/> <wire from="(6040,130)" to="(6040,480)"/> <wire from="(2640,580)" to="(2640,690)"/> <wire from="(980,1110)" to="(1100,1110)"/> <wire from="(4440,600)" to="(4560,600)"/> <wire from="(980,1040)" to="(1040,1040)"/> <wire from="(540,600)" to="(600,600)"/> <wire from="(1400,820)" to="(1460,820)"/> <wire from="(8250,620)" to="(8250,730)"/> <wire from="(8650,600)" to="(8820,600)"/> <wire from="(1160,1220)" to="(1220,1220)"/> <wire from="(4760,130)" to="(4760,480)"/> <wire from="(6390,710)" to="(7420,710)"/> <wire from="(1780,560)" to="(1840,560)"/> <wire from="(6720,890)" to="(6780,890)"/> <wire from="(6780,310)" to="(6840,310)"/> <wire from="(1300,130)" to="(1300,440)"/> <wire from="(8670,910)" to="(8670,1020)"/> <wire from="(7840,1170)" to="(7840,1240)"/> <wire from="(4880,130)" to="(4880,250)"/> <wire from="(2320,670)" to="(2560,670)"/> <wire from="(1800,1020)" to="(1800,1130)"/> <wire from="(2640,690)" to="(2640,1360)"/> <wire from="(8080,1020)" to="(8080,1280)"/> <wire from="(320,950)" to="(320,1020)"/> <wire from="(5250,440)" to="(5250,580)"/> <wire from="(800,420)" to="(920,420)"/> <wire from="(620,480)" to="(620,620)"/> <wire from="(7080,800)" to="(7080,910)"/> <wire from="(2830,580)" to="(2830,690)"/> <wire from="(6860,580)" to="(6860,690)"/> <wire from="(4340,620)" to="(4340,690)"/> <wire from="(920,1110)" to="(980,1110)"/> <wire from="(8080,130)" to="(8080,440)"/> <wire from="(4740,1220)" to="(4800,1220)"/> <wire from="(3490,1240)" to="(3490,1360)"/> <wire from="(6780,1000)" to="(7060,1000)"/> <wire from="(1340,890)" to="(1400,890)"/> <wire from="(1840,820)" to="(1960,820)"/> <wire from="(740,710)" to="(1160,710)"/> <wire from="(3370,480)" to="(3370,580)"/> <wire from="(5050,780)" to="(5290,780)"/> <wire from="(5290,310)" to="(5470,310)"/> <wire from="(3410,1000)" to="(3710,1000)"/> <wire from="(500,1130)" to="(500,1240)"/> <wire from="(7180,460)" to="(7240,460)"/> <wire from="(3980,130)" to="(3980,210)"/> <wire from="(1580,670)" to="(1720,670)"/> <wire from="(3670,130)" to="(3670,520)"/> <wire from="(7820,460)" to="(7880,460)"/> <wire from="(5430,1130)" to="(5430,1360)"/> <wire from="(5800,800)" to="(5800,910)"/> <wire from="(4140,560)" to="(4260,560)"/> <wire from="(2040,1130)" to="(2040,1360)"/> <wire from="(8350,670)" to="(8410,670)"/> <wire from="(5370,690)" to="(5370,800)"/> <wire from="(7580,1000)" to="(7760,1000)"/> <wire from="(6350,130)" to="(6350,290)"/> <wire from="(500,620)" to="(500,690)"/> <wire from="(5350,1150)" to="(5780,1150)"/> <wire from="(70,1260)" to="(1280,1260)"/> <wire from="(4320,670)" to="(4380,670)"/> <wire from="(2280,480)" to="(2280,580)"/> <wire from="(1980,690)" to="(1980,840)"/> <wire from="(920,600)" to="(980,600)"/> <wire from="(5170,560)" to="(5230,560)"/> <wire from="(4640,910)" to="(4640,1240)"/> <wire from="(6920,250)" to="(6920,480)"/> <wire from="(420,500)" to="(860,500)"/> <wire from="(6680,130)" to="(6680,620)"/> <wire from="(4100,1020)" to="(4100,1130)"/> <wire from="(1360,840)" to="(1360,910)"/> <wire from="(3310,290)" to="(3310,520)"/> <wire from="(2400,1240)" to="(2400,1360)"/> <wire from="(1400,1150)" to="(1520,1150)"/> <wire from="(2220,1060)" to="(2220,1130)"/> <wire from="(7180,1040)" to="(7300,1040)"/> <wire from="(6450,560)" to="(6510,560)"/> <wire from="(2160,330)" to="(2160,1360)"/> <wire from="(4880,250)" to="(4880,730)"/> <wire from="(4340,1130)" to="(4340,1240)"/> <wire from="(2810,890)" to="(2870,890)"/> <wire from="(6800,130)" to="(6800,330)"/> <wire from="(1740,580)" to="(1740,690)"/> <wire from="(6080,190)" to="(7000,190)"/> <wire from="(4140,1260)" to="(4200,1260)"/> <wire from="(7880,460)" to="(8000,460)"/> <wire from="(1540,1020)" to="(1540,1170)"/> <wire from="(5720,820)" to="(6020,820)"/> <wire from="(860,670)" to="(920,670)"/> <wire from="(5110,890)" to="(5170,890)"/> <wire from="(2890,130)" to="(2890,290)"/> <wire from="(1800,130)" to="(1800,210)"/> <wire from="(1340,1150)" to="(1400,1150)"/> <wire from="(7780,480)" to="(7780,580)"/> <wire from="(1600,690)" to="(1600,1020)"/> <wire from="(5070,130)" to="(5070,480)"/> <wire from="(7060,190)" to="(8470,190)"/> <wire from="(4280,690)" to="(4280,840)"/> <wire from="(3430,800)" to="(3430,910)"/> <wire from="(7720,1060)" to="(7720,1170)"/> <wire from="(1720,890)" to="(1780,890)"/> <wire from="(130,930)" to="(160,930)"/> <wire from="(7060,670)" to="(7180,670)"/> <wire from="(5980,1240)" to="(5980,1360)"/> <wire from="(6390,890)" to="(6450,890)"/> <wire from="(2930,500)" to="(2990,500)"/> <wire from="(8120,460)" to="(8230,460)"/> <wire from="(3410,890)" to="(3960,890)"/> <wire from="(6860,840)" to="(6860,910)"/> <wire from="(3470,1040)" to="(3530,1040)"/> <wire from="(5800,1060)" to="(5800,1170)"/> <wire from="(8350,930)" to="(8410,930)"/> <wire from="(8670,1170)" to="(8670,1360)"/> <wire from="(4700,1240)" to="(4700,1360)"/> <wire from="(3730,580)" to="(3730,1020)"/> <wire from="(920,1000)" to="(1100,1000)"/> <wire from="(1300,910)" to="(1300,1060)"/> <wire from="(2770,910)" to="(2770,1020)"/> <wire from="(5170,890)" to="(5290,890)"/> <wire from="(4320,1000)" to="(4440,1000)"/> <wire from="(8770,460)" to="(8820,460)"/> <wire from="(5350,270)" to="(5900,270)"/> <wire from="(1520,930)" to="(2260,930)"/> <wire from="(4560,600)" to="(4680,600)"/> <wire from="(4760,1170)" to="(4760,1240)"/> <wire from="(8610,580)" to="(8610,1360)"/> <wire from="(6920,130)" to="(6920,250)"/> <wire from="(4380,560)" to="(4620,560)"/> <wire from="(4040,580)" to="(4040,690)"/> <wire from="(5350,1000)" to="(5410,1000)"/> <wire from="(7380,580)" to="(7380,1020)"/> <wire from="(1900,560)" to="(1960,560)"/> <wire from="(8230,460)" to="(8650,460)"/> <wire from="(130,420)" to="(160,420)"/> <wire from="(1420,130)" to="(1420,440)"/> <wire from="(5130,580)" to="(5130,690)"/> <wire from="(4080,460)" to="(4380,460)"/> <wire from="(8230,890)" to="(8470,890)"/> <wire from="(7440,130)" to="(7440,480)"/> <wire from="(4820,580)" to="(4820,1020)"/> <wire from="(6900,1040)" to="(7000,1040)"/> <wire from="(3670,1170)" to="(3670,1240)"/> <comp lib="0" loc="(8100,690)" name="Ground"/> <comp lib="0" loc="(4060,1130)" name="Ground"/> <comp lib="0" loc="(6980,910)" name="Ground"/> <comp lib="0" loc="(7960,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="116"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4580,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3450,620)" name="Ground"/> <comp lib="0" loc="(1740,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,480)" name="Ground"/> <comp lib="0" loc="(8490,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2000,210)" name="Ground"/> <comp lib="0" loc="(3310,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2360,1240)" name="Ground"/> <comp lib="0" loc="(560,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5150,580)" name="Ground"/> <comp lib="0" loc="(1940,690)" name="Ground"/> <comp lib="0" loc="(4240,440)" name="Ground"/> <comp lib="0" loc="(7260,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4180,520)" name="Ground"/> <comp lib="0" loc="(4460,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5550,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(900,690)" name="Ground"/> <comp lib="0" loc="(3550,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,1240)" name="Ground"/> <comp lib="0" loc="(7020,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8040,1020)" name="Ground"/> <comp lib="0" loc="(4220,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6470,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1560,1240)" name="Ground"/> <comp lib="0" loc="(8510,730)" name="Ground"/> <comp lib="0" loc="(7080,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7400,1060)" name="Ground"/> <comp lib="0" loc="(4820,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8750,840)" name="Ground"/> <comp lib="0" loc="(2890,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1320,480)" name="Ground"/> <comp lib="0" loc="(3090,480)" name="Ground"/> <comp lib="0" loc="(4600,1240)" name="Ground"/> <comp lib="0" loc="(3150,620)" name="Ground"/> <comp lib="0" loc="(4820,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1380,620)" name="Ground"/> <comp lib="0" loc="(2360,520)" name="Ground"/> <comp lib="0" loc="(5370,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(460,690)" name="Ground"/> <comp lib="0" loc="(4060,840)" name="Ground"/> <comp lib="0" loc="(7960,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3940,210)" name="Ground"/> <comp lib="0" loc="(7260,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2790,690)" name="Ground"/> <comp lib="0" loc="(5640,910)" name="Ground"/> <comp lib="0" loc="(2280,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5270,690)" name="Ground"/> <comp lib="0" loc="(2770,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="37"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1880,1170)" name="Ground"/> <comp lib="0" loc="(2830,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4000,910)" name="Ground"/> <comp lib="0" loc="(3010,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,580)" name="Ground"/> <comp lib="0" loc="(1140,1130)" name="Ground"/> <comp lib="0" loc="(7200,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3330,690)" name="Ground"/> <comp lib="0" loc="(5310,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,520)" name="Ground"/> <comp lib="0" loc="(2830,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5150,440)" name="Ground"/> <comp lib="0" loc="(4640,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,480)" name="Ground"/> <comp lib="0" loc="(8210,910)" name="Ground"/> <comp lib="0" loc="(8690,400)" name="Ground"/> <comp lib="0" loc="(1060,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1120,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2600,690)" name="Ground"/> <comp lib="0" loc="(5310,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7800,1170)" name="Ground"/> <comp lib="0" loc="(7340,1020)" name="Ground"/> <comp lib="0" loc="(1120,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2240,580)" name="Ground"/> <comp lib="0" loc="(7840,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2790,580)" name="Ground"/> <comp lib="0" loc="(5980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6550,950)" name="Ground"/> <comp lib="0" loc="(5430,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8730,400)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,690)" name="Ground"/> <comp lib="0" loc="(3130,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4660,1170)" name="Ground"/> <comp lib="0" loc="(2830,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7800,1020)" name="Ground"/> <comp lib="0" loc="(4180,1060)" name="Ground"/> <comp lib="0" loc="(6820,690)" name="Ground"/> <comp lib="0" loc="(5760,1170)" name="Ground"/> <comp lib="0" loc="(6820,580)" name="Ground"/> <comp lib="0" loc="(5330,480)" name="Ground"/> <comp lib="1" loc="(180,460)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(940,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6820,330)" name="Ground"/> <comp lib="0" loc="(3550,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2240,840)" name="Ground"/> <comp lib="0" loc="(3430,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(900,620)" name="Ground"/> <comp lib="0" loc="(5190,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5640,330)" name="Ground"/> <comp lib="0" loc="(1140,440)" name="Ground"/> <comp lib="0" loc="(3860,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="54"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7260,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8610,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1000,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="53"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4880,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7980,1060)" name="Ground"/> <comp lib="0" loc="(4340,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,580)" name="Ground"/> <comp lib="0" loc="(7260,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5390,620)" name="Ground"/> <comp lib="0" loc="(4340,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7020,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="102"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2830,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1260,1280)" name="Ground"/> <comp lib="0" loc="(7040,690)" name="Ground"/> <comp lib="0" loc="(2770,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4760,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7500,1170)" name="Ground"/> <comp lib="0" loc="(5130,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6590,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6160,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="26"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7960,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5090,840)" name="Ground"/> <comp lib="0" loc="(5490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8140,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="119"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(180,930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3010,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5940,580)" name="Ground"/> <comp lib="0" loc="(1480,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7720,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,1130)" name="Ground"/> <comp lib="0" loc="(5430,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4420,1020)" name="Ground"/> <comp lib="0" loc="(5070,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7860,480)" name="Ground"/> <comp lib="0" loc="(6530,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2300,950)" name="Ground"/> <comp lib="0" loc="(6370,910)" name="Ground"/> <comp lib="0" loc="(1740,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6250,730)" name="Ground"/> <comp lib="0" loc="(5150,910)" name="Ground"/> <comp lib="0" loc="(1740,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(460,1130)" name="Ground"/> <comp lib="0" loc="(7800,910)" name="Ground"/> <comp lib="0" loc="(1540,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="127"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2830,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8450,520)" name="Ground"/> <comp lib="0" loc="(3070,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3210,250)" name="Ground"/> <comp lib="0" loc="(340,800)" name="Ground"/> <comp lib="0" loc="(400,730)" name="Ground"/> <comp lib="0" loc="(2970,520)" name="Ground"/> <comp lib="0" loc="(460,910)" name="Ground"/> <comp lib="0" loc="(6590,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,210)" name="Ground"/> <comp lib="0" loc="(6350,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1020)" name="Ground"/> <comp lib="0" loc="(520,730)" name="Ground"/> <comp lib="0" loc="(1700,1020)" name="Ground"/> <comp lib="0" loc="(5250,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="41"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4460,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1140,620)" name="Ground"/> <comp lib="0" loc="(620,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4540,620)" name="Ground"/> <comp lib="0" loc="(1240,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(400,910)" name="Ground"/> <comp lib="0" loc="(6410,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6060,800)" name="Ground"/> <comp lib="0" loc="(1820,840)" name="Ground"/> <comp lib="0" loc="(5070,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8100,480)" name="Ground"/> <comp lib="0" loc="(7780,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7380,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="49"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6530,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,1170)" name="Ground"/> <comp lib="0" loc="(7220,840)" name="Ground"/> <comp lib="0" loc="(2460,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4300,620)" name="Ground"/> <comp lib="0" loc="(4340,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,910)" name="Ground"/> <comp lib="0" loc="(8100,620)" name="Ground"/> <comp lib="0" loc="(4760,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4300,690)" name="Ground"/> <comp lib="0" loc="(5330,580)" name="Ground"/> <comp lib="0" loc="(4700,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(70,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR0"/> </comp> <comp lib="0" loc="(3630,1170)" name="Ground"/> <comp lib="0" loc="(1080,620)" name="Ground"/> <comp lib="0" loc="(3940,1170)" name="Ground"/> <comp lib="0" loc="(6920,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="101"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2770,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1140,730)" name="Ground"/> <comp lib="0" loc="(1320,620)" name="Ground"/> <comp lib="0" loc="(2830,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="38"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7440,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1120,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8040,690)" name="Ground"/> <comp lib="0" loc="(2790,910)" name="Ground"/> <comp lib="0" loc="(2280,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8100,1060)" name="Ground"/> <comp lib="0" loc="(5330,910)" name="Ground"/> <comp lib="0" loc="(5490,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="80"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8370,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="63"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5450,730)" name="Ground"/> <comp lib="0" loc="(8790,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="87"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5370,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="58"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8630,480)" name="Ground"/> <comp lib="0" loc="(1600,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2420,800)" name="Ground"/> <comp lib="0" loc="(8020,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5150,690)" name="Ground"/> <comp lib="0" loc="(6000,950)" name="Ground"/> <comp lib="0" loc="(7980,950)" name="Ground"/> <comp lib="0" loc="(1600,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6370,290)" name="Ground"/> <comp lib="0" loc="(8080,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1380,440)" name="Ground"/> <comp lib="0" loc="(1860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="20"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7220,690)" name="Ground"/> <comp lib="0" loc="(2340,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="31"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(500,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4300,1240)" name="Ground"/> <comp lib="0" loc="(3370,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(460,480)" name="Ground"/> <comp lib="0" loc="(7620,950)" name="Ground"/> <comp lib="0" loc="(6740,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="32"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5070,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5390,520)" name="Ground"/> <comp lib="0" loc="(1120,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3510,1240)" name="Ground"/> <comp lib="0" loc="(2950,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4720,950)" name="Ground"/> <comp lib="0" loc="(2180,1240)" name="Ground"/> <comp lib="0" loc="(6350,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7200,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,1240)" name="Ground"/> <comp lib="0" loc="(3370,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2360,580)" name="Ground"/> <comp lib="0" loc="(6760,330)" name="Ground"/> <comp lib="0" loc="(4220,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="60"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8430,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4000,330)" name="Ground"/> <comp lib="0" loc="(8080,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="89"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1480,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2910,800)" name="Ground"/> <comp lib="0" loc="(6920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5760,800)" name="Ground"/> <comp lib="0" loc="(3980,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="56"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1500,620)" name="Ground"/> <comp lib="0" loc="(2950,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8430,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8670,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7660,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2520,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2060,580)" name="Ground"/> <comp lib="0" loc="(7660,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,840)" name="Ground"/> <comp lib="0" loc="(8040,1280)" name="Ground"/> <comp lib="0" loc="(8390,330)" name="Ground"/> <comp lib="0" loc="(3430,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1440,480)" name="Ground"/> <comp lib="0" loc="(7280,1060)" name="Ground"/> <comp lib="0" loc="(1860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,910)" name="Ground"/> <comp lib="0" loc="(940,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2730,250)" name="Ground"/> <comp lib="0" loc="(840,800)" name="Ground"/> <comp lib="0" loc="(1360,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="16"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(760,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3150,440)" name="Ground"/> <comp lib="0" loc="(5800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,1060)" name="Ground"/> <comp lib="0" loc="(1800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3270,800)" name="Ground"/> <comp lib="0" loc="(6100,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4420,1170)" name="Ground"/> <comp lib="0" loc="(2240,480)" name="Ground"/> <comp lib="0" loc="(1440,1280)" name="Ground"/> <comp lib="0" loc="(5390,1130)" name="Ground"/> <comp lib="0" loc="(1420,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="17"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4280,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(760,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T0"/> </comp> <comp lib="0" loc="(3390,330)" name="Ground"/> <comp lib="0" loc="(5760,210)" name="Ground"/> <comp lib="0" loc="(7160,840)" name="Ground"/> <comp lib="0" loc="(5980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7920,620)" name="Ground"/> <comp lib="0" loc="(580,690)" name="Ground"/> <comp lib="0" loc="(2040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(440,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4180,1170)" name="Ground"/> <comp lib="0" loc="(2100,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="27"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1860,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,950)" name="Ground"/> <comp lib="0" loc="(4580,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2520,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="34"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6040,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="88"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3510,1130)" name="Ground"/> <comp lib="0" loc="(1560,620)" name="Ground"/> <comp lib="0" loc="(2100,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4900,800)" name="Ground"/> <comp lib="0" loc="(6920,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2830,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3570,1170)" name="Ground"/> <comp lib="0" loc="(3430,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5940,1240)" name="Ground"/> <comp lib="0" loc="(6740,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(400,520)" name="Ground"/> <comp lib="0" loc="(5030,1240)" name="Ground"/> <comp lib="0" loc="(7720,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4060,910)" name="Ground"/> <comp lib="0" loc="(1260,1060)" name="Ground"/> <comp lib="0" loc="(1600,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1080,1020)" name="Ground"/> <comp lib="0" loc="(7840,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7840,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3940,690)" name="Ground"/> <comp lib="0" loc="(5090,330)" name="Ground"/> <comp lib="0" loc="(3510,620)" name="Ground"/> <comp lib="0" loc="(560,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4900,730)" name="Ground"/> <comp lib="0" loc="(70,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR6"/> </comp> <comp lib="0" loc="(1920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6820,1130)" name="Ground"/> <comp lib="0" loc="(5310,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7800,480)" name="Ground"/> <comp lib="0" loc="(5490,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="104"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5190,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8730,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8750,690)" name="Ground"/> <comp lib="0" loc="(5760,910)" name="Ground"/> <comp lib="0" loc="(7200,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8750,580)" name="Ground"/> <comp lib="0" loc="(5330,800)" name="Ground"/> <comp lib="0" loc="(520,910)" name="Ground"/> <comp lib="0" loc="(6290,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,210)" name="Ground"/> <comp lib="0" loc="(2000,580)" name="Ground"/> <comp lib="0" loc="(7040,1170)" name="Ground"/> <comp lib="0" loc="(3250,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(70,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T4"/> </comp> <comp lib="0" loc="(1800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7040,1020)" name="Ground"/> <comp lib="0" loc="(2220,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(400,330)" name="Ground"/> <comp lib="0" loc="(2460,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,950)" name="Ground"/> <comp lib="0" loc="(2640,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,690)" name="Ground"/> <comp lib="0" loc="(7340,440)" name="Ground"/> <comp lib="0" loc="(6590,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="96"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5270,1130)" name="Ground"/> <comp lib="0" loc="(3210,800)" name="Ground"/> <comp lib="0" loc="(1760,1020)" name="Ground"/> <comp lib="0" loc="(4240,1280)" name="Ground"/> <comp lib="0" loc="(7600,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6120,290)" name="Ground"/> <comp lib="0" loc="(3730,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,1170)" name="Ground"/> <comp lib="0" loc="(1480,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="40"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3390,690)" name="Ground"/> <comp lib="0" loc="(880,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6550,690)" name="Ground"/> <comp lib="0" loc="(4600,840)" name="Ground"/> <comp lib="0" loc="(1820,1240)" name="Ground"/> <comp lib="0" loc="(7980,480)" name="Ground"/> <comp lib="0" loc="(7440,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6640,1020)" name="Ground"/> <comp lib="0" loc="(8790,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6000,840)" name="Ground"/> <comp lib="0" loc="(6860,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,480)" name="Ground"/> <comp lib="0" loc="(7020,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8140,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1700,910)" name="Ground"/> <comp lib="0" loc="(8610,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="126"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3860,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="114"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7620,290)" name="Ground"/> <comp lib="0" loc="(1940,290)" name="Ground"/> <comp lib="0" loc="(3860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3690,1020)" name="Ground"/> <comp lib="0" loc="(5740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7900,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6800,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8270,1020)" name="Ground"/> <comp lib="0" loc="(70,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T1X"/> </comp> <comp lib="0" loc="(960,620)" name="Ground"/> <comp lib="0" loc="(5550,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3150,1170)" name="Ground"/> <comp lib="0" loc="(4940,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6410,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5820,250)" name="Ground"/> <comp lib="0" loc="(1000,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6760,690)" name="Ground"/> <comp lib="0" loc="(4820,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4300,1020)" name="Ground"/> <comp lib="0" loc="(7260,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="105"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3880,1020)" name="Ground"/> <comp lib="0" loc="(5190,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="75"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7540,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4540,690)" name="Ground"/> <comp lib="0" loc="(1200,620)" name="Ground"/> <comp lib="0" loc="(5980,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8210,1240)" name="Ground"/> <comp lib="0" loc="(440,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7380,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(70,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR1"/> </comp> <comp lib="0" loc="(8040,580)" name="Ground"/> <comp lib="0" loc="(2060,1170)" name="Ground"/> <comp lib="0" loc="(320,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2280,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="30"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3940,580)" name="Ground"/> <comp lib="0" loc="(3860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5030,910)" name="Ground"/> <comp lib="0" loc="(3430,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8630,840)" name="Ground"/> <comp lib="0" loc="(6350,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="92"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(940,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(780,1020)" name="Ground"/> <comp lib="0" loc="(6250,910)" name="Ground"/> <comp lib="0" loc="(1360,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,1020)" name="Ground"/> <comp lib="0" loc="(4000,580)" name="Ground"/> <comp lib="0" loc="(2300,840)" name="Ground"/> <comp lib="0" loc="(2540,690)" name="Ground"/> <comp lib="0" loc="(3330,480)" name="Ground"/> <comp lib="0" loc="(6000,580)" name="Ground"/> <comp lib="0" loc="(8630,730)" name="Ground"/> <comp lib="0" loc="(7860,910)" name="Ground"/> <comp lib="0" loc="(2220,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8310,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="121"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1000,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8450,800)" name="Ground"/> <comp lib="0" loc="(8490,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1020,690)" name="Ground"/> <comp lib="0" loc="(1440,840)" name="Ground"/> <comp lib="0" loc="(5370,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,950)" name="Ground"/> <comp lib="0" loc="(1980,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(560,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2300,690)" name="Ground"/> <comp lib="0" loc="(6550,480)" name="Ground"/> <comp lib="0" loc="(3190,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="44"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2730,580)" name="Ground"/> <comp lib="0" loc="(5740,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,1170)" name="Ground"/> <comp lib="0" loc="(7920,520)" name="Ground"/> <comp lib="0" loc="(5250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2640,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3880,580)" name="Ground"/> <comp lib="0" loc="(5680,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8630,620)" name="Ground"/> <comp lib="0" loc="(320,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="67"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4660,840)" name="Ground"/> <comp lib="0" loc="(5740,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4760,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="69"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1480,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1000,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6680,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3430,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7220,1170)" name="Ground"/> <comp lib="0" loc="(8510,840)" name="Ground"/> <comp lib="0" loc="(5270,1020)" name="Ground"/> <comp lib="0" loc="(8040,440)" name="Ground"/> <comp lib="0" loc="(4300,1130)" name="Ground"/> <comp lib="0" loc="(8670,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(900,440)" name="Ground"/> <comp lib="0" loc="(3030,290)" name="Ground"/> <comp lib="0" loc="(2580,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="108"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4700,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5920,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8510,250)" name="Ground"/> <comp lib="0" loc="(5920,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="86"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8390,800)" name="Ground"/> <comp lib="0" loc="(6860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4240,690)" name="Ground"/> <comp lib="0" loc="(7400,730)" name="Ground"/> <comp lib="0" loc="(70,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR7"/> </comp> <comp lib="0" loc="(7380,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3450,690)" name="Ground"/> <comp lib="0" loc="(2640,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(580,1060)" name="Ground"/> <comp lib="0" loc="(4700,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7900,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8790,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2600,480)" name="Ground"/> <comp lib="0" loc="(5250,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1420,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,690)" name="Ground"/> <comp lib="0" loc="(1860,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="23"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6590,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2730,690)" name="Ground"/> <comp lib="0" loc="(4480,1240)" name="Ground"/> <comp lib="0" loc="(5550,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="81"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1920,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(960,1240)" name="Ground"/> <comp lib="0" loc="(8080,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2460,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7040,910)" name="Ground"/> <comp lib="0" loc="(6860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="77"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8430,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4060,480)" name="Ground"/> <comp lib="0" loc="(5130,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5030,480)" name="Ground"/> <comp lib="0" loc="(8370,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4900,520)" name="Ground"/> <comp lib="0" loc="(960,910)" name="Ground"/> <comp lib="0" loc="(3940,1020)" name="Ground"/> <comp lib="0" loc="(3130,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,800)" name="Ground"/> <comp lib="0" loc="(1880,1060)" name="Ground"/> <comp lib="0" loc="(6310,730)" name="Ground"/> <comp lib="0" loc="(6370,800)" name="Ground"/> <comp lib="0" loc="(3670,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3940,910)" name="Ground"/> <comp lib="0" loc="(3010,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7220,580)" name="Ground"/> <comp lib="0" loc="(3390,480)" name="Ground"/> <comp lib="0" loc="(820,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8100,800)" name="Ground"/> <comp lib="0" loc="(7540,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(340,730)" name="Ground"/> <comp lib="0" loc="(5070,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="73"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(720,330)" name="Ground"/> <comp lib="0" loc="(7840,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1000,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8730,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5330,1020)" name="Ground"/> <comp lib="0" loc="(4340,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6410,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6640,620)" name="Ground"/> <comp lib="0" loc="(4220,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="82"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6800,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="99"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7720,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="112"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(180,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(4280,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1480,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(840,910)" name="Ground"/> <comp lib="0" loc="(6760,580)" name="Ground"/> <comp lib="0" loc="(8250,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="120"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7500,580)" name="Ground"/> <comp lib="0" loc="(4160,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8080,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,480)" name="Ground"/> <comp lib="0" loc="(2400,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7920,1060)" name="Ground"/> <comp lib="0" loc="(7600,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5030,730)" name="Ground"/> <comp lib="0" loc="(4600,440)" name="Ground"/> <comp lib="0" loc="(7220,290)" name="Ground"/> <comp lib="0" loc="(2970,910)" name="Ground"/> <comp lib="0" loc="(8670,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7680,1170)" name="Ground"/> <comp lib="0" loc="(5370,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7040,800)" name="Ground"/> <comp lib="0" loc="(1380,1170)" name="Ground"/> <comp lib="0" loc="(1740,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6880,250)" name="Ground"/> <comp lib="0" loc="(1740,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7400,480)" name="Ground"/> <comp lib="0" loc="(8390,950)" name="Ground"/> <comp lib="0" loc="(7900,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="115"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1020,480)" name="Ground"/> <comp lib="0" loc="(6000,480)" name="Ground"/> <comp lib="0" loc="(6160,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="90"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8210,730)" name="Ground"/> <comp lib="0" loc="(1860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5450,910)" name="Ground"/> <comp lib="0" loc="(7540,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="109"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3570,520)" name="Ground"/> <comp lib="0" loc="(3920,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(900,1020)" name="Ground"/> <comp lib="0" loc="(3010,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4460,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7380,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="107"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2340,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2000,910)" name="Ground"/> <comp lib="0" loc="(3610,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="51"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1320,1170)" name="Ground"/> <comp lib="0" loc="(1300,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5150,840)" name="Ground"/> <comp lib="1" loc="(180,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2240,1060)" name="Ground"/> <comp lib="0" loc="(5800,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3270,730)" name="Ground"/> <comp lib="0" loc="(6040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,1020)" name="Ground"/> <comp lib="0" loc="(4340,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4000,480)" name="Ground"/> <comp lib="0" loc="(560,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,1130)" name="Ground"/> <comp lib="0" loc="(1880,580)" name="Ground"/> <comp lib="0" loc="(6350,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7020,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,800)" name="Ground"/> <comp lib="0" loc="(6530,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7660,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="111"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2240,950)" name="Ground"/> <comp lib="0" loc="(7160,1060)" name="Ground"/> <comp lib="0" loc="(4900,210)" name="Ground"/> <comp lib="0" loc="(5190,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2730,800)" name="Ground"/> <comp lib="0" loc="(3130,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="43"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8610,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4760,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7860,800)" name="Ground"/> <comp lib="0" loc="(2890,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="94"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4000,690)" name="Ground"/> <comp lib="0" loc="(5740,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="83"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1380,840)" name="Ground"/> <comp lib="0" loc="(1800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4060,620)" name="Ground"/> <comp lib="0" loc="(8250,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5330,290)" name="Ground"/> <comp lib="0" loc="(4540,1170)" name="Ground"/> <comp lib="0" loc="(1440,690)" name="Ground"/> <comp lib="0" loc="(6680,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4520,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(900,910)" name="Ground"/> <comp lib="0" loc="(7860,250)" name="Ground"/> <comp lib="0" loc="(8080,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="118"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1800,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="22"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3610,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8690,910)" name="Ground"/> <comp lib="0" loc="(6530,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4100,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7620,800)" name="Ground"/> <comp lib="0" loc="(5310,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,1020)" name="Ground"/> <comp lib="0" loc="(1260,1130)" name="Ground"/> <comp lib="0" loc="(2950,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,910)" name="Ground"/> <comp lib="0" loc="(5430,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="79"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,520)" name="Ground"/> <comp lib="0" loc="(380,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1130)" name="Ground"/> <comp lib="0" loc="(2790,800)" name="Ground"/> <comp lib="0" loc="(1380,730)" name="Ground"/> <comp lib="0" loc="(7980,620)" name="Ground"/> <comp lib="0" loc="(3730,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8550,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="125"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(380,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1540,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4540,1240)" name="Ground"/> <comp lib="0" loc="(7500,690)" name="Ground"/> <comp lib="0" loc="(6820,840)" name="Ground"/> <comp lib="0" loc="(5680,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5270,580)" name="Ground"/> <comp lib="0" loc="(2280,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4300,910)" name="Ground"/> <comp lib="0" loc="(4300,840)" name="Ground"/> <comp lib="0" loc="(8140,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="98"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5430,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,330)" name="Ground"/> <comp lib="0" loc="(6310,290)" name="Ground"/> <comp lib="0" loc="(2280,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1480,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5210,1060)" name="Ground"/> <comp lib="0" loc="(580,480)" name="Ground"/> <comp lib="0" loc="(7400,580)" name="Ground"/> <comp lib="1" loc="(180,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(8570,580)" name="Ground"/> <comp lib="0" loc="(3130,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8330,290)" name="Ground"/> <comp lib="0" loc="(960,840)" name="Ground"/> <comp lib="0" loc="(6310,840)" name="Ground"/> <comp lib="0" loc="(960,690)" name="Ground"/> <comp lib="0" loc="(3820,690)" name="Ground"/> <comp lib="0" loc="(3820,290)" name="Ground"/> <comp lib="0" loc="(4100,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(760,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8250,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3510,1060)" name="Ground"/> <comp lib="0" loc="(1980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6060,690)" name="Ground"/> <comp lib="0" loc="(3570,1240)" name="Ground"/> <comp lib="0" loc="(8250,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6060,910)" name="Ground"/> <comp lib="0" loc="(2540,580)" name="Ground"/> <comp lib="0" loc="(3980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="47"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4820,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1940,1170)" name="Ground"/> <comp lib="0" loc="(70,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T2"/> </comp> <comp lib="0" loc="(5310,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5880,290)" name="Ground"/> <comp lib="0" loc="(820,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5370,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7320,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="106"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3250,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="45"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2850,910)" name="Ground"/> <comp lib="0" loc="(5070,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6760,840)" name="Ground"/> <comp lib="0" loc="(4540,840)" name="Ground"/> <comp lib="0" loc="(3310,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6550,840)" name="Ground"/> <comp lib="0" loc="(6920,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="100"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6000,1240)" name="Ground"/> <comp lib="0" loc="(3450,1060)" name="Ground"/> <comp lib="0" loc="(8020,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1020,1060)" name="Ground"/> <comp lib="0" loc="(4100,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3070,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3310,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3940,480)" name="Ground"/> <comp lib="0" loc="(2000,480)" name="Ground"/> <comp lib="0" loc="(2000,1130)" name="Ground"/> <comp lib="0" loc="(4280,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1820,690)" name="Ground"/> <comp lib="0" loc="(5130,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="74"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4220,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7860,580)" name="Ground"/> <comp lib="0" loc="(4720,1240)" name="Ground"/> <comp lib="0" loc="(6920,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5940,1130)" name="Ground"/> <comp lib="0" loc="(8750,910)" name="Ground"/> <comp lib="0" loc="(7340,580)" name="Ground"/> <comp lib="0" loc="(4060,1240)" name="Ground"/> <comp lib="0" loc="(2180,520)" name="Ground"/> <comp lib="0" loc="(7980,840)" name="Ground"/> <comp lib="0" loc="(3390,910)" name="Ground"/> <comp lib="0" loc="(1140,1020)" name="Ground"/> <comp lib="0" loc="(1540,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="19"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1180,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2730,480)" name="Ground"/> <comp lib="0" loc="(3550,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="50"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5130,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,1130)" name="Ground"/> <comp lib="0" loc="(500,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7040,210)" name="Ground"/> <comp lib="0" loc="(1600,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5210,440)" name="Ground"/> <comp lib="0" loc="(1320,690)" name="Ground"/> <comp lib="0" loc="(6760,1130)" name="Ground"/> <comp lib="0" loc="(4360,580)" name="Ground"/> <comp lib="0" loc="(7500,1020)" name="Ground"/> <comp lib="0" loc="(900,840)" name="Ground"/> <comp lib="0" loc="(1800,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6250,520)" name="Ground"/> <comp lib="0" loc="(8750,480)" name="Ground"/> <comp lib="0" loc="(3370,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1940,480)" name="Ground"/> <comp lib="0" loc="(2910,520)" name="Ground"/> <comp lib="0" loc="(3610,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,910)" name="Ground"/> <comp lib="0" loc="(6820,480)" name="Ground"/> <comp lib="0" loc="(4640,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2400,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5190,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8450,910)" name="Ground"/> <comp lib="0" loc="(6290,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4240,840)" name="Ground"/> <comp lib="0" loc="(4760,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5450,330)" name="Ground"/> <comp lib="0" loc="(5490,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4540,480)" name="Ground"/> <comp lib="0" loc="(4100,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7920,1130)" name="Ground"/> <comp lib="0" loc="(6530,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="95"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2890,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="39"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4700,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3430,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="48"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5450,800)" name="Ground"/> <comp lib="0" loc="(1260,840)" name="Ground"/> <comp lib="0" loc="(3570,1060)" name="Ground"/> <comp lib="0" loc="(4720,690)" name="Ground"/> <comp lib="0" loc="(7740,1020)" name="Ground"/> <comp lib="0" loc="(6740,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="113"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7020,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,480)" name="Ground"/> <comp lib="0" loc="(1240,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,910)" name="Ground"/> <comp lib="0" loc="(4600,580)" name="Ground"/> <comp lib="0" loc="(1200,1170)" name="Ground"/> <comp lib="0" loc="(3270,910)" name="Ground"/> <comp lib="0" loc="(4840,250)" name="Ground"/> <comp lib="0" loc="(3490,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6880,580)" name="Ground"/> <comp lib="0" loc="(7600,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2060,440)" name="Ground"/> <comp lib="0" loc="(2770,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4100,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6430,910)" name="Ground"/> <comp lib="0" loc="(5250,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="76"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1020,620)" name="Ground"/> <comp lib="0" loc="(3090,690)" name="Ground"/> <comp lib="0" loc="(1020,1170)" name="Ground"/> <comp lib="0" loc="(1180,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6880,840)" name="Ground"/> <comp lib="0" loc="(1980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7280,440)" name="Ground"/> <comp lib="0" loc="(8080,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="36"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3820,1060)" name="Ground"/> <comp lib="0" loc="(1360,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,1130)" name="Ground"/> <comp lib="0" loc="(8790,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="129"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6680,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,620)" name="Ground"/> <comp lib="0" loc="(3980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8550,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5860,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,1060)" name="Ground"/> <comp lib="0" loc="(4360,1170)" name="Ground"/> <comp lib="0" loc="(820,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4100,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,620)" name="Ground"/> <comp lib="0" loc="(7220,910)" name="Ground"/> <comp lib="0" loc="(8250,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2180,580)" name="Ground"/> <comp lib="0" loc="(1360,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7400,1240)" name="Ground"/> <comp lib="0" loc="(2790,1060)" name="Ground"/> <comp lib="0" loc="(1180,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1700,690)" name="Ground"/> <comp lib="0" loc="(4700,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3210,910)" name="Ground"/> <comp lib="0" loc="(4340,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6880,480)" name="Ground"/> <comp lib="0" loc="(7840,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1940,910)" name="Ground"/> <comp lib="0" loc="(1140,840)" name="Ground"/> <comp lib="0" loc="(8080,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2160,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="84"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T5"/> </comp> <comp lib="0" loc="(6410,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="93"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3270,290)" name="Ground"/> <comp lib="0" loc="(6410,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="68"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5800,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2910,730)" name="Ground"/> <comp lib="0" loc="(6470,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4160,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="59"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6590,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3450,1240)" name="Ground"/> <comp lib="0" loc="(7540,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8450,210)" name="Ground"/> <comp lib="0" loc="(6470,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(180,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(70,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR5"/> </comp> <comp lib="0" loc="(720,950)" name="Ground"/> <comp lib="0" loc="(7860,1060)" name="Ground"/> <comp lib="0" loc="(4820,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,690)" name="Ground"/> <comp lib="0" loc="(3030,730)" name="Ground"/> <comp lib="0" loc="(7680,1060)" name="Ground"/> <comp lib="0" loc="(7440,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8550,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1700,480)" name="Ground"/> <comp lib="0" loc="(70,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR4"/> </comp> <comp lib="0" loc="(2000,1060)" name="Ground"/> <comp lib="0" loc="(7080,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3330,800)" name="Ground"/> <comp lib="0" loc="(7260,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="91"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2220,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="29"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6590,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,330)" name="Ground"/> <comp lib="0" loc="(320,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2480,1240)" name="Ground"/> <comp lib="0" loc="(6820,910)" name="Ground"/> <comp lib="0" loc="(3190,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4600,690)" name="Ground"/> <comp lib="0" loc="(3630,520)" name="Ground"/> <comp lib="0" loc="(4520,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1420,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8730,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,580)" name="Ground"/> <comp lib="0" loc="(1000,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,580)" name="Ground"/> <comp lib="0" loc="(4420,620)" name="Ground"/> <comp lib="0" loc="(6490,800)" name="Ground"/> <comp lib="0" loc="(4040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5640,800)" name="Ground"/> <comp lib="0" loc="(2580,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="35"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6430,480)" name="Ground"/> <comp lib="0" loc="(2520,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(720,730)" name="Ground"/> <comp lib="0" loc="(4580,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="66"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2830,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7660,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8630,1020)" name="Ground"/> <comp lib="0" loc="(7660,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3070,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="42"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4220,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3670,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7920,1280)" name="Ground"/> <comp lib="0" loc="(70,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR3"/> </comp> <comp lib="0" loc="(4640,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5510,330)" name="Ground"/> <comp lib="0" loc="(3390,1170)" name="Ground"/> <comp lib="0" loc="(1200,1020)" name="Ground"/> <comp lib="0" loc="(3430,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2790,1130)" name="Ground"/> <comp lib="0" loc="(280,1020)" name="Ground"/> <comp lib="0" loc="(2280,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(900,1130)" name="Ground"/> <comp lib="0" loc="(3330,910)" name="Ground"/> <comp lib="0" loc="(1920,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,910)" name="Ground"/> <comp lib="0" loc="(2970,330)" name="Ground"/> <comp lib="0" loc="(6410,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8210,480)" name="Ground"/> <comp lib="0" loc="(3980,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4600,910)" name="Ground"/> <comp lib="0" loc="(2040,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,440)" name="Ground"/> <comp lib="0" loc="(3550,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3450,480)" name="Ground"/> <comp lib="0" loc="(2220,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(520,480)" name="Ground"/> <comp lib="0" loc="(3370,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,480)" name="Ground"/> <comp lib="0" loc="(780,620)" name="Ground"/> <comp lib="0" loc="(460,620)" name="Ground"/> <comp lib="0" loc="(1920,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5700,840)" name="Ground"/> <comp lib="0" loc="(5800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6490,580)" name="Ground"/> <comp lib="0" loc="(7560,730)" name="Ground"/> <comp lib="0" loc="(5150,1240)" name="Ground"/> <comp lib="0" loc="(7800,840)" name="Ground"/> <comp lib="0" loc="(340,520)" name="Ground"/> <comp lib="0" loc="(2770,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8390,690)" name="Ground"/> <comp lib="0" loc="(7020,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7680,1280)" name="Ground"/> <comp lib="0" loc="(5490,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3210,690)" name="Ground"/> <comp lib="0" loc="(620,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(8310,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2120,330)" name="Ground"/> <comp lib="0" loc="(1820,910)" name="Ground"/> <comp lib="0" loc="(3920,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="55"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1940,580)" name="Ground"/> <comp lib="0" loc="(8490,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="124"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3330,1060)" name="Ground"/> <comp lib="0" loc="(3690,440)" name="Ground"/> <comp lib="0" loc="(1240,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6040,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,580)" name="Ground"/> <comp lib="0" loc="(560,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7200,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1440,620)" name="Ground"/> <comp lib="0" loc="(6040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,800)" name="Ground"/> <comp lib="0" loc="(4700,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,1020)" name="Ground"/> <comp lib="0" loc="(1440,1130)" name="Ground"/> <comp lib="0" loc="(1700,800)" name="Ground"/> <comp lib="1" loc="(180,820)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1060,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="18"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2600,580)" name="Ground"/> <comp lib="0" loc="(3370,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1200,440)" name="Ground"/> <comp lib="0" loc="(6680,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="97"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(760,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(580,1240)" name="Ground"/> <comp lib="0" loc="(3190,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5150,1060)" name="Ground"/> <comp lib="0" loc="(900,1240)" name="Ground"/> <comp lib="0" loc="(5700,330)" name="Ground"/> <comp lib="0" loc="(8140,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3820,840)" name="Ground"/> <comp lib="0" loc="(4180,1280)" name="Ground"/> <comp lib="0" loc="(4060,1020)" name="Ground"/> <comp lib="0" loc="(3880,440)" name="Ground"/> <comp lib="0" loc="(2730,910)" name="Ground"/> <comp lib="0" loc="(7080,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,690)" name="Ground"/> <comp lib="0" loc="(1500,1240)" name="Ground"/> <comp lib="0" loc="(4360,1240)" name="Ground"/> <comp lib="0" loc="(4840,840)" name="Ground"/> <comp lib="0" loc="(7720,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,1060)" name="Ground"/> <comp lib="0" loc="(1920,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6430,690)" name="Ground"/> <comp lib="0" loc="(1300,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4760,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7540,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2160,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="28"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2420,330)" name="Ground"/> <comp lib="0" loc="(5510,950)" name="Ground"/> <comp lib="0" loc="(6550,580)" name="Ground"/> <comp lib="0" loc="(5940,480)" name="Ground"/> <comp lib="0" loc="(1860,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1700,580)" name="Ground"/> <comp lib="0" loc="(6760,480)" name="Ground"/> <comp lib="0" loc="(6370,730)" name="Ground"/> <comp lib="0" loc="(7200,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3090,1170)" name="Ground"/> <comp lib="0" loc="(6470,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="d2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6880,690)" name="Ground"/> <comp lib="0" loc="(5310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6040,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2850,290)" name="Ground"/> <comp lib="0" loc="(1560,1020)" name="Ground"/> <comp lib="0" loc="(7780,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3820,580)" name="Ground"/> <comp lib="0" loc="(7800,690)" name="Ground"/> <comp lib="0" loc="(1540,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1240)" name="Ground"/> <comp lib="0" loc="(940,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="117"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4820,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2180,1060)" name="Ground"/> <comp lib="0" loc="(7660,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5270,330)" name="Ground"/> <comp lib="0" loc="(8790,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2850,690)" name="Ground"/> <comp lib="0" loc="(8330,950)" name="Ground"/> <comp lib="0" loc="(4040,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="78"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2000,800)" name="Ground"/> <comp lib="0" loc="(5270,800)" name="Ground"/> <comp lib="0" loc="(4760,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1880,250)" name="Ground"/> <comp lib="0" loc="(3690,580)" name="Ground"/> <comp lib="0" loc="(8790,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2060,1060)" name="Ground"/> <comp lib="0" loc="(3670,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3070,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1700,1170)" name="Ground"/> <comp lib="0" loc="(2970,800)" name="Ground"/> <comp lib="0" loc="(1800,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1320,840)" name="Ground"/> <comp lib="0" loc="(4400,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7500,1280)" name="Ground"/> <comp lib="0" loc="(4520,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4460,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7980,690)" name="Ground"/> <comp lib="0" loc="(4580,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2360,1020)" name="Ground"/> <comp lib="0" loc="(3940,800)" name="Ground"/> <comp lib="0" loc="(3670,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,690)" name="Ground"/> <comp lib="0" loc="(2040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1020,1240)" name="Ground"/> <comp lib="0" loc="(1980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6000,1060)" name="Ground"/> <comp lib="0" loc="(4120,1280)" name="Ground"/> <comp lib="0" loc="(5550,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8040,910)" name="Ground"/> <comp lib="0" loc="(6160,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7620,730)" name="Ground"/> <comp lib="0" loc="(3390,580)" name="Ground"/> <comp lib="0" loc="(6880,1060)" name="Ground"/> <comp lib="0" loc="(1980,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5980,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4420,520)" name="Ground"/> <comp lib="0" loc="(400,840)" name="Ground"/> <comp lib="0" loc="(4400,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2000,690)" name="Ground"/> <comp lib="0" loc="(5430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7080,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="103"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(520,620)" name="Ground"/> <comp lib="0" loc="(6860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3030,840)" name="Ground"/> <comp lib="0" loc="(4420,1240)" name="Ground"/> <comp lib="0" loc="(8550,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7320,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3820,950)" name="Ground"/> <comp lib="0" loc="(5090,690)" name="Ground"/> <comp lib="0" loc="(4720,1170)" name="Ground"/> <comp lib="0" loc="(4040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1320,910)" name="Ground"/> <comp lib="0" loc="(1700,1240)" name="Ground"/> <comp lib="0" loc="(70,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T3"/> </comp> <comp lib="0" loc="(3490,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3270,520)" name="Ground"/> <comp lib="0" loc="(5370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1560,480)" name="Ground"/> <comp lib="0" loc="(5760,480)" name="Ground"/> <comp lib="0" loc="(3510,520)" name="Ground"/> <comp lib="0" loc="(5270,480)" name="Ground"/> <comp lib="0" loc="(5130,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1560,690)" name="Ground"/> <comp lib="0" loc="(320,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2540,480)" name="Ground"/> <comp lib="0" loc="(8100,1280)" name="Ground"/> <comp lib="0" loc="(6250,250)" name="Ground"/> <comp lib="0" loc="(1440,910)" name="Ground"/> <comp lib="0" loc="(4460,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="64"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3090,910)" name="Ground"/> <comp lib="0" loc="(5330,690)" name="Ground"/> <comp lib="0" loc="(6590,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7320,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4120,580)" name="Ground"/> <comp lib="0" loc="(560,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2970,730)" name="Ground"/> <comp lib="0" loc="(4940,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,440)" name="Ground"/> <comp lib="0" loc="(4540,910)" name="Ground"/> <comp lib="0" loc="(4540,1020)" name="Ground"/> <comp lib="0" loc="(2790,250)" name="Ground"/> <comp lib="0" loc="(1140,1240)" name="Ground"/> <comp lib="0" loc="(6920,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,1130)" name="Ground"/> <comp lib="0" loc="(4940,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4220,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2890,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4720,1020)" name="Ground"/> <comp lib="0" loc="(6700,250)" name="Ground"/> <comp lib="0" loc="(6000,690)" name="Ground"/> <comp lib="0" loc="(1300,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7800,580)" name="Ground"/> <comp lib="0" loc="(4240,580)" name="Ground"/> <comp lib="0" loc="(6060,520)" name="Ground"/> <comp lib="1" loc="(180,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1360,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1380,1240)" name="Ground"/> <comp lib="0" loc="(1800,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6490,1020)" name="Ground"/> <comp lib="0" loc="(1060,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3730,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(820,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7680,520)" name="Ground"/> <comp lib="0" loc="(2730,1020)" name="Ground"/> <comp lib="0" loc="(1820,580)" name="Ground"/> <comp lib="0" loc="(4280,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6060,210)" name="Ground"/> <comp lib="0" loc="(5370,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1320,1280)" name="Ground"/> <comp lib="0" loc="(4460,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2040,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="71"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1060,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2910,250)" name="Ground"/> <comp lib="0" loc="(7500,480)" name="Ground"/> <comp lib="0" loc="(6640,1130)" name="Ground"/> <comp lib="0" loc="(5940,690)" name="Ground"/> <comp lib="0" loc="(7720,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4840,730)" name="Ground"/> <comp lib="0" loc="(2040,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6120,840)" name="Ground"/> <comp lib="0" loc="(8730,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="128"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4520,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="65"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(5450,480)" name="Ground"/> <comp lib="0" loc="(8490,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5940,800)" name="Ground"/> <comp lib="0" loc="(5330,1170)" name="Ground"/> <comp lib="0" loc="(2910,910)" name="Ground"/> <comp lib="0" loc="(2360,1130)" name="Ground"/> <comp lib="0" loc="(1300,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5680,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1880,690)" name="Ground"/> <comp lib="0" loc="(7200,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(340,290)" name="Ground"/> <comp lib="0" loc="(6040,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,480)" name="Ground"/> <comp lib="0" loc="(4400,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8330,690)" name="Ground"/> <comp lib="0" loc="(1360,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2540,330)" name="Ground"/> <comp lib="0" loc="(6700,910)" name="Ground"/> <comp lib="0" loc="(5370,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4240,910)" name="Ground"/> <comp lib="0" loc="(7200,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3090,580)" name="Ground"/> <comp lib="0" loc="(560,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1380,1020)" name="Ground"/> <comp lib="0" loc="(5310,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,690)" name="Ground"/> <comp lib="0" loc="(6410,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,620)" name="Ground"/> <comp lib="6" loc="(8705,361)" name="Text"> <a name="text" val="TODO: Move IR0 to random logic"/> <a name="font" val="SansSerif plain 14"/> </comp> <comp lib="0" loc="(8330,840)" name="Ground"/> <comp lib="0" loc="(70,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR2"/> </comp> <comp lib="0" loc="(7540,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,480)" name="Ground"/> <comp lib="0" loc="(5760,1060)" name="Ground"/> <comp lib="0" loc="(7740,580)" name="Ground"/> <comp lib="0" loc="(8630,910)" name="Ground"/> <comp lib="0" loc="(6470,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5250,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6250,800)" name="Ground"/> <comp lib="0" loc="(1540,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(500,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,950)" name="Ground"/> <comp lib="0" loc="(460,1240)" name="Ground"/> <comp lib="0" loc="(2950,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(280,1130)" name="Ground"/> <comp lib="0" loc="(4120,520)" name="Ground"/> <comp lib="0" loc="(3150,1060)" name="Ground"/> <comp lib="0" loc="(1980,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="25"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3210,520)" name="Ground"/> <comp lib="0" loc="(4160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3570,620)" name="Ground"/> <comp lib="0" loc="(7500,950)" name="Ground"/> <comp lib="0" loc="(3330,580)" name="Ground"/> <comp lib="0" loc="(8210,1060)" name="Ground"/> <comp lib="0" loc="(8210,620)" name="Ground"/> <comp lib="0" loc="(1360,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="46"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1420,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5640,520)" name="Ground"/> <comp lib="0" loc="(4900,910)" name="Ground"/> <comp lib="0" loc="(4580,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7800,1240)" name="Ground"/> <comp lib="0" loc="(2160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3860,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2180,1130)" name="Ground"/> <comp lib="0" loc="(820,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(960,1130)" name="Ground"/> <comp lib="0" loc="(8690,840)" name="Ground"/> <comp lib="0" loc="(1980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6530,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1880,480)" name="Ground"/> <comp lib="0" loc="(2280,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3630,1240)" name="Ground"/> <comp lib="0" loc="(1420,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5210,580)" name="Ground"/> <comp lib="0" loc="(8430,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="123"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1880,800)" name="Ground"/> <comp lib="0" loc="(4280,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="61"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4700,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2460,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="33"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7900,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6350,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6490,910)" name="Ground"/> <comp lib="0" loc="(4460,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="62"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6880,950)" name="Ground"/> <comp lib="0" loc="(1880,910)" name="Ground"/> <comp lib="0" loc="(8040,840)" name="Ground"/> <comp lib="0" loc="(960,440)" name="Ground"/> <comp lib="0" loc="(1540,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5760,580)" name="Ground"/> <comp lib="0" loc="(7220,480)" name="Ground"/> <comp lib="0" loc="(2850,520)" name="Ground"/> <comp lib="0" loc="(5390,1020)" name="Ground"/> <comp lib="0" loc="(6980,480)" name="Ground"/> <comp lib="0" loc="(580,1130)" name="Ground"/> <comp lib="0" loc="(2580,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,690)" name="Ground"/> <comp lib="0" loc="(6430,580)" name="Ground"/> <comp lib="0" loc="(2850,800)" name="Ground"/> <comp lib="0" loc="(1380,910)" name="Ground"/> <comp lib="0" loc="(8020,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,1130)" name="Ground"/> <comp lib="0" loc="(2830,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7320,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8490,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1560,1170)" name="Ground"/> <comp lib="0" loc="(6490,1170)" name="Ground"/> <comp lib="0" loc="(1140,910)" name="Ground"/> <comp lib="0" loc="(3390,800)" name="Ground"/> <comp lib="0" loc="(780,440)" name="Ground"/> <comp lib="0" loc="(6760,910)" name="Ground"/> <comp lib="0" loc="(1820,480)" name="Ground"/> <comp lib="0" loc="(5800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5130,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="24"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(6680,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(340,910)" name="Ground"/> <comp lib="0" loc="(5760,690)" name="Ground"/> <comp lib="0" loc="(4160,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(960,1060)" name="Ground"/> <comp lib="0" loc="(6760,1020)" name="Ground"/> <comp lib="0" loc="(1740,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="21"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2790,480)" name="Ground"/> <comp lib="0" loc="(1740,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4720,580)" name="Ground"/> <comp lib="0" loc="(760,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4820,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="70"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(620,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8630,1170)" name="Ground"/> <comp lib="0" loc="(560,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5940,910)" name="Ground"/> <comp lib="0" loc="(7860,690)" name="Ground"/> <comp lib="0" loc="(4760,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="110"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7040,580)" name="Ground"/> <comp lib="0" loc="(4160,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3670,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="52"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1080,440)" name="Ground"/> <comp lib="0" loc="(8370,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="122"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3070,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="72"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2400,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,480)" name="Ground"/> <comp lib="0" loc="(6040,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6430,1130)" name="Ground"/> <comp lib="0" loc="(7560,1240)" name="Ground"/> <comp lib="0" loc="(5510,800)" name="Ground"/> <comp lib="0" loc="(1920,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,840)" name="Ground"/> <comp lib="0" loc="(6920,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7720,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7380,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5270,910)" name="Ground"/> <comp lib="0" loc="(7900,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(180,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2040,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6370,480)" name="Ground"/> <comp lib="0" loc="(940,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2540,910)" name="Ground"/> <comp lib="0" loc="(1060,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2300,330)" name="Ground"/> <comp lib="0" loc="(1200,1240)" name="Ground"/> <comp lib="0" loc="(4100,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3920,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="57"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(7980,1280)" name="Ground"/> <comp lib="0" loc="(7160,690)" name="Ground"/> <comp lib="0" loc="(5130,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,840)" name="Ground"/> <comp lib="0" loc="(6700,580)" name="Ground"/> <comp lib="0" loc="(3820,480)" name="Ground"/> <comp lib="0" loc="(2950,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5430,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3670,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7400,910)" name="Ground"/> <comp lib="0" loc="(6100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5190,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6490,690)" name="Ground"/> <comp lib="0" loc="(3390,1020)" name="Ground"/> <comp lib="0" loc="(8430,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1240,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4480,520)" name="Ground"/> <comp lib="0" loc="(8790,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3690,1170)" name="Ground"/> <comp lib="0" loc="(880,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2600,290)" name="Ground"/> <comp lib="0" loc="(6490,480)" name="Ground"/> <comp lib="0" loc="(7080,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4720,480)" name="Ground"/> <comp lib="0" loc="(1360,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2240,690)" name="Ground"/> <comp lib="0" loc="(8210,840)" name="Ground"/> <comp lib="0" loc="(320,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4060,730)" name="Ground"/> <comp lib="0" loc="(5030,800)" name="Ground"/> <comp lib="0" loc="(4660,1020)" name="Ground"/> <comp lib="0" loc="(7400,840)" name="Ground"/> <comp lib="0" loc="(1940,840)" name="Ground"/> <comp lib="0" loc="(5860,1360)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="85"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3980,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,580)" name="Ground"/> <comp lib="0" loc="(2400,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6550,1060)" name="Ground"/> <comp lib="0" loc="(1320,1060)" name="Ground"/> <comp lib="0" loc="(5800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3090,840)" name="Ground"/> <comp lib="0" loc="(7040,480)" name="Ground"/> <comp lib="0" loc="(4300,440)" name="Ground"/> <comp lib="0" loc="(7860,1130)" name="Ground"/> <comp lib="0" loc="(7600,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,1240)" name="Ground"/> <comp lib="0" loc="(6100,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(460,840)" name="Ground"/> <comp lib="0" loc="(6430,800)" name="Ground"/> <comp lib="0" loc="(580,620)" name="Ground"/> <comp lib="0" loc="(2580,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3630,1060)" name="Ground"/> </circuit> <circuit name="PREDECODE"> <a name="circuit" val="PREDECODE"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ff23c4" height="131" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="169">D0-7 IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="69">/PD0-7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="83" y="143">/TWOCYCLE</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">/IMPLIED</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="103">0/IR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="73">PHI2</text> <circ-port height="8" pin="70,30" width="8" x="136" y="66"/> <circ-port height="8" pin="70,60" width="8" x="46" y="96"/> <circ-port height="8" pin="70,260" width="8" x="56" y="176"/> <circ-port height="8" pin="70,320" width="8" x="66" y="176"/> <circ-port height="8" pin="70,380" width="8" x="76" y="176"/> <circ-port height="8" pin="70,440" width="8" x="86" y="176"/> <circ-port height="8" pin="70,500" width="8" x="96" y="176"/> <circ-port height="8" pin="70,560" width="8" x="106" y="176"/> <circ-port height="8" pin="70,620" width="8" x="116" y="176"/> <circ-port height="8" pin="70,680" width="8" x="126" y="176"/> <circ-port height="10" pin="790,250" width="10" x="55" y="45"/> <circ-port height="10" pin="790,310" width="10" x="65" y="45"/> <circ-port height="10" pin="790,370" width="10" x="75" y="45"/> <circ-port height="10" pin="790,430" width="10" x="85" y="45"/> <circ-port height="10" pin="790,490" width="10" x="95" y="45"/> <circ-port height="10" pin="790,550" width="10" x="105" y="45"/> <circ-port height="10" pin="790,610" width="10" x="115" y="45"/> <circ-port height="10" pin="790,670" width="10" x="125" y="45"/> <circ-port height="10" pin="990,70" width="10" x="45" y="115"/> <circ-port height="10" pin="990,160" width="10" x="45" y="135"/> <circ-anchor facing="east" height="6" width="6" x="57" y="47"/> </appear> <wire from="(210,60)" to="(210,260)"/> <wire from="(650,170)" to="(650,430)"/> <wire from="(380,160)" to="(380,310)"/> <wire from="(480,110)" to="(780,110)"/> <wire from="(510,160)" to="(510,370)"/> <wire from="(950,160)" to="(990,160)"/> <wire from="(510,160)" to="(550,160)"/> <wire from="(870,100)" to="(890,100)"/> <wire from="(490,150)" to="(520,150)"/> <wire from="(780,170)" to="(800,170)"/> <wire from="(800,180)" to="(830,180)"/> <wire from="(890,150)" to="(920,150)"/> <wire from="(640,370)" to="(730,370)"/> <wire from="(420,180)" to="(430,180)"/> <wire from="(660,490)" to="(730,490)"/> <wire from="(400,490)" to="(540,490)"/> <wire from="(180,240)" to="(260,240)"/> <wire from="(180,360)" to="(260,360)"/> <wire from="(180,480)" to="(260,480)"/> <wire from="(180,600)" to="(260,600)"/> <wire from="(510,370)" to="(640,370)"/> <wire from="(650,430)" to="(730,430)"/> <wire from="(660,180)" to="(660,490)"/> <wire from="(710,190)" to="(720,190)"/> <wire from="(610,170)" to="(620,170)"/> <wire from="(540,490)" to="(660,490)"/> <wire from="(800,170)" to="(800,180)"/> <wire from="(310,250)" to="(490,250)"/> <wire from="(300,430)" to="(350,430)"/> <wire from="(210,620)" to="(260,620)"/> <wire from="(210,380)" to="(260,380)"/> <wire from="(210,260)" to="(260,260)"/> <wire from="(210,500)" to="(260,500)"/> <wire from="(660,180)" to="(720,180)"/> <wire from="(800,130)" to="(800,160)"/> <wire from="(750,250)" to="(790,250)"/> <wire from="(750,370)" to="(790,370)"/> <wire from="(750,490)" to="(790,490)"/> <wire from="(750,610)" to="(790,610)"/> <wire from="(300,550)" to="(730,550)"/> <wire from="(100,680)" to="(140,680)"/> <wire from="(100,560)" to="(140,560)"/> <wire from="(100,440)" to="(140,440)"/> <wire from="(100,320)" to="(140,320)"/> <wire from="(530,90)" to="(830,90)"/> <wire from="(110,660)" to="(140,660)"/> <wire from="(110,420)" to="(140,420)"/> <wire from="(110,300)" to="(140,300)"/> <wire from="(110,540)" to="(140,540)"/> <wire from="(540,190)" to="(540,490)"/> <wire from="(300,370)" to="(330,370)"/> <wire from="(630,150)" to="(630,250)"/> <wire from="(800,110)" to="(830,110)"/> <wire from="(390,80)" to="(400,80)"/> <wire from="(650,170)" to="(720,170)"/> <wire from="(520,430)" to="(650,430)"/> <wire from="(70,320)" to="(80,320)"/> <wire from="(70,440)" to="(80,440)"/> <wire from="(70,560)" to="(80,560)"/> <wire from="(70,680)" to="(80,680)"/> <wire from="(310,60)" to="(310,250)"/> <wire from="(110,240)" to="(110,300)"/> <wire from="(110,360)" to="(110,420)"/> <wire from="(110,600)" to="(110,660)"/> <wire from="(110,480)" to="(110,540)"/> <wire from="(520,180)" to="(520,430)"/> <wire from="(540,190)" to="(550,190)"/> <wire from="(540,150)" to="(550,150)"/> <wire from="(210,620)" to="(210,680)"/> <wire from="(210,380)" to="(210,440)"/> <wire from="(210,260)" to="(210,320)"/> <wire from="(210,500)" to="(210,560)"/> <wire from="(890,100)" to="(890,150)"/> <wire from="(870,170)" to="(920,170)"/> <wire from="(620,130)" to="(800,130)"/> <wire from="(400,170)" to="(400,490)"/> <wire from="(380,160)" to="(430,160)"/> <wire from="(350,430)" to="(520,430)"/> <wire from="(630,250)" to="(730,250)"/> <wire from="(350,80)" to="(350,430)"/> <wire from="(530,70)" to="(530,90)"/> <wire from="(440,70)" to="(530,70)"/> <wire from="(310,60)" to="(400,60)"/> <wire from="(380,310)" to="(730,310)"/> <wire from="(330,70)" to="(330,370)"/> <wire from="(350,80)" to="(370,80)"/> <wire from="(680,190)" to="(680,670)"/> <wire from="(800,160)" to="(830,160)"/> <wire from="(520,180)" to="(530,180)"/> <wire from="(470,170)" to="(480,170)"/> <wire from="(180,300)" to="(260,300)"/> <wire from="(180,420)" to="(260,420)"/> <wire from="(180,540)" to="(260,540)"/> <wire from="(180,660)" to="(260,660)"/> <wire from="(70,60)" to="(210,60)"/> <wire from="(640,160)" to="(720,160)"/> <wire from="(420,670)" to="(680,670)"/> <wire from="(680,670)" to="(730,670)"/> <wire from="(330,370)" to="(510,370)"/> <wire from="(300,670)" to="(420,670)"/> <wire from="(210,680)" to="(260,680)"/> <wire from="(210,440)" to="(260,440)"/> <wire from="(210,560)" to="(260,560)"/> <wire from="(210,320)" to="(260,320)"/> <wire from="(110,30)" to="(110,240)"/> <wire from="(750,310)" to="(790,310)"/> <wire from="(750,430)" to="(790,430)"/> <wire from="(750,550)" to="(790,550)"/> <wire from="(750,670)" to="(790,670)"/> <wire from="(950,70)" to="(990,70)"/> <wire from="(300,610)" to="(730,610)"/> <wire from="(300,490)" to="(400,490)"/> <wire from="(70,30)" to="(110,30)"/> <wire from="(100,620)" to="(140,620)"/> <wire from="(100,500)" to="(140,500)"/> <wire from="(100,380)" to="(140,380)"/> <wire from="(100,260)" to="(140,260)"/> <wire from="(640,160)" to="(640,370)"/> <wire from="(210,680)" to="(210,710)"/> <wire from="(620,130)" to="(620,170)"/> <wire from="(110,600)" to="(140,600)"/> <wire from="(110,480)" to="(140,480)"/> <wire from="(110,240)" to="(140,240)"/> <wire from="(110,360)" to="(140,360)"/> <wire from="(490,150)" to="(490,250)"/> <wire from="(400,170)" to="(430,170)"/> <wire from="(420,180)" to="(420,670)"/> <wire from="(630,150)" to="(720,150)"/> <wire from="(300,250)" to="(310,250)"/> <wire from="(490,250)" to="(630,250)"/> <wire from="(110,660)" to="(110,710)"/> <wire from="(300,310)" to="(380,310)"/> <wire from="(70,260)" to="(80,260)"/> <wire from="(70,380)" to="(80,380)"/> <wire from="(70,500)" to="(80,500)"/> <wire from="(70,620)" to="(80,620)"/> <wire from="(530,70)" to="(930,70)"/> <wire from="(480,110)" to="(480,170)"/> <wire from="(680,190)" to="(690,190)"/> <wire from="(110,300)" to="(110,360)"/> <wire from="(110,420)" to="(110,480)"/> <wire from="(110,540)" to="(110,600)"/> <wire from="(210,560)" to="(210,620)"/> <wire from="(210,320)" to="(210,380)"/> <wire from="(210,440)" to="(210,500)"/> <wire from="(330,70)" to="(400,70)"/> <comp lib="1" loc="(610,170)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="nor3"/> </comp> <comp lib="0" loc="(70,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(70,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(70,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(790,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(990,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TWOCYCLE"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(790,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(70,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(100,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(300,370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp loc="(180,550)" name="D_Latch"/> <comp loc="(180,670)" name="D_Latch"/> <comp lib="1" loc="(300,550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(790,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(750,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(100,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(800,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(180,310)" name="D_Latch"/> <comp loc="(180,430)" name="D_Latch"/> <comp lib="0" loc="(790,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(300,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(950,160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="and9"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(70,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(550,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(790,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(950,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(710,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(790,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(790,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(300,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(300,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(100,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(70,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/IR"/> </comp> <comp lib="1" loc="(750,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(780,170)" name="NOR Gate"> <a name="label" val="nor4"/> </comp> <comp lib="1" loc="(100,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(70,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(180,370)" name="D_Latch"/> <comp lib="1" loc="(100,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(100,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="nor5"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(750,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(180,490)" name="D_Latch"/> <comp lib="1" loc="(750,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,70)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="nor1"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp loc="(180,250)" name="D_Latch"/> <comp lib="1" loc="(470,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="nor2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="0" loc="(70,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp loc="(180,610)" name="D_Latch"/> <comp lib="1" loc="(750,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(100,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(790,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PD3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(300,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(750,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(990,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/IMPLIED"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(750,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(70,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(870,100)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="nand1"/> <a name="labelfont" val="SansSerif plain 9"/> </comp> <comp lib="1" loc="(100,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="RANDOM_LOGIC"> <a name="circuit" val="RANDOM_LOGIC"/> <a name="clabel" val="RANDOM_LOGIC"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <rect fill="#2f87ff" height="190" stroke="#000000" stroke-width="2" width="1320" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="64">/NMIP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="74">/IRQP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="84">RESP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="94">RDY</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="113">/T0</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="123">/T1X</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="133">/T2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="144">/T3</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="154">/T4</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="163">/T5</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="62" y="172">T1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1352" y="103">/IR5</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="62" y="193">SO</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="370" y="223">ACR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="392" y="223">AVR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1316" y="221">DB OUT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1164" y="220">DB IN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="871" y="219">FLAGS DEBUG</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1037" y="219">DISPATCH DEBUG</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="246" y="222">ALU COMMANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="606" y="221">BUS COMMANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="223">REGS COMMANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="461" y="223">PC COMMANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1347" y="143">FETCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1354" y="153">WR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="1353" y="164">0/IR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="103">/PRDY</text> <circ-port height="8" pin="120,70" width="8" x="56" y="46"/> <circ-port height="8" pin="150,70" width="8" x="66" y="46"/> <circ-port height="8" pin="180,70" width="8" x="76" y="46"/> <circ-port height="8" pin="210,70" width="8" x="86" y="46"/> <circ-port height="8" pin="240,70" width="8" x="96" y="46"/> <circ-port height="8" pin="270,70" width="8" x="106" y="46"/> <circ-port height="8" pin="300,70" width="8" x="116" y="46"/> <circ-port height="8" pin="330,70" width="8" x="126" y="46"/> <circ-port height="8" pin="360,70" width="8" x="136" y="46"/> <circ-port height="8" pin="390,70" width="8" x="146" y="46"/> <circ-port height="8" pin="450,70" width="8" x="156" y="46"/> <circ-port height="8" pin="480,70" width="8" x="166" y="46"/> <circ-port height="8" pin="510,70" width="8" x="176" y="46"/> <circ-port height="8" pin="540,70" width="8" x="186" y="46"/> <circ-port height="8" pin="570,70" width="8" x="196" y="46"/> <circ-port height="8" pin="600,70" width="8" x="206" y="46"/> <circ-port height="8" pin="630,70" width="8" x="216" y="46"/> <circ-port height="8" pin="660,70" width="8" x="226" y="46"/> <circ-port height="8" pin="690,70" width="8" x="236" y="46"/> <circ-port height="8" pin="720,70" width="8" x="246" y="46"/> <circ-port height="8" pin="780,70" width="8" x="256" y="46"/> <circ-port height="8" pin="810,70" width="8" x="266" y="46"/> <circ-port height="8" pin="840,70" width="8" x="276" y="46"/> <circ-port height="8" pin="870,70" width="8" x="286" y="46"/> <circ-port height="8" pin="900,70" width="8" x="296" y="46"/> <circ-port height="8" pin="930,70" width="8" x="306" y="46"/> <circ-port height="8" pin="960,70" width="8" x="316" y="46"/> <circ-port height="8" pin="990,70" width="8" x="326" y="46"/> <circ-port height="8" pin="1020,70" width="8" x="336" y="46"/> <circ-port height="8" pin="1050,70" width="8" x="346" y="46"/> <circ-port height="8" pin="1110,70" width="8" x="356" y="46"/> <circ-port height="8" pin="1140,70" width="8" x="366" y="46"/> <circ-port height="8" pin="1170,70" width="8" x="376" y="46"/> <circ-port height="8" pin="1200,70" width="8" x="386" y="46"/> <circ-port height="8" pin="1230,70" width="8" x="396" y="46"/> <circ-port height="8" pin="1260,70" width="8" x="406" y="46"/> <circ-port height="8" pin="1290,70" width="8" x="416" y="46"/> <circ-port height="8" pin="1320,70" width="8" x="426" y="46"/> <circ-port height="8" pin="1350,70" width="8" x="436" y="46"/> <circ-port height="8" pin="1380,70" width="8" x="446" y="46"/> <circ-port height="8" pin="1440,70" width="8" x="456" y="46"/> <circ-port height="8" pin="1470,70" width="8" x="466" y="46"/> <circ-port height="8" pin="1500,70" width="8" x="476" y="46"/> <circ-port height="8" pin="1530,70" width="8" x="486" y="46"/> <circ-port height="8" pin="1560,70" width="8" x="496" y="46"/> <circ-port height="8" pin="1590,70" width="8" x="506" y="46"/> <circ-port height="8" pin="1620,70" width="8" x="516" y="46"/> <circ-port height="8" pin="1650,70" width="8" x="526" y="46"/> <circ-port height="8" pin="1680,70" width="8" x="536" y="46"/> <circ-port height="8" pin="1710,70" width="8" x="546" y="46"/> <circ-port height="8" pin="1770,70" width="8" x="556" y="46"/> <circ-port height="8" pin="1800,70" width="8" x="566" y="46"/> <circ-port height="8" pin="1830,70" width="8" x="576" y="46"/> <circ-port height="8" pin="1860,70" width="8" x="586" y="46"/> <circ-port height="8" pin="1890,70" width="8" x="596" y="46"/> <circ-port height="8" pin="1920,70" width="8" x="606" y="46"/> <circ-port height="8" pin="1950,70" width="8" x="616" y="46"/> <circ-port height="8" pin="1980,70" width="8" x="626" y="46"/> <circ-port height="8" pin="2010,70" width="8" x="636" y="46"/> <circ-port height="8" pin="2040,70" width="8" x="646" y="46"/> <circ-port height="8" pin="2100,70" width="8" x="656" y="46"/> <circ-port height="8" pin="2130,70" width="8" x="666" y="46"/> <circ-port height="8" pin="2160,70" width="8" x="676" y="46"/> <circ-port height="8" pin="2190,70" width="8" x="686" y="46"/> <circ-port height="8" pin="2220,70" width="8" x="696" y="46"/> <circ-port height="8" pin="2250,70" width="8" x="706" y="46"/> <circ-port height="8" pin="2280,70" width="8" x="716" y="46"/> <circ-port height="8" pin="2310,70" width="8" x="726" y="46"/> <circ-port height="8" pin="2340,70" width="8" x="736" y="46"/> <circ-port height="8" pin="2370,70" width="8" x="746" y="46"/> <circ-port height="8" pin="2430,70" width="8" x="756" y="46"/> <circ-port height="8" pin="2460,70" width="8" x="766" y="46"/> <circ-port height="8" pin="2490,70" width="8" x="776" y="46"/> <circ-port height="8" pin="2520,70" width="8" x="786" y="46"/> <circ-port height="8" pin="2550,70" width="8" x="796" y="46"/> <circ-port height="8" pin="2580,70" width="8" x="806" y="46"/> <circ-port height="8" pin="2610,70" width="8" x="816" y="46"/> <circ-port height="8" pin="2640,70" width="8" x="826" y="46"/> <circ-port height="8" pin="2670,70" width="8" x="836" y="46"/> <circ-port height="8" pin="2700,70" width="8" x="846" y="46"/> <circ-port height="8" pin="2760,70" width="8" x="856" y="46"/> <circ-port height="8" pin="2790,70" width="8" x="866" y="46"/> <circ-port height="8" pin="2820,70" width="8" x="876" y="46"/> <circ-port height="8" pin="2850,70" width="8" x="886" y="46"/> <circ-port height="8" pin="2880,70" width="8" x="896" y="46"/> <circ-port height="8" pin="2910,70" width="8" x="906" y="46"/> <circ-port height="8" pin="2940,70" width="8" x="916" y="46"/> <circ-port height="8" pin="2970,70" width="8" x="926" y="46"/> <circ-port height="8" pin="3000,70" width="8" x="936" y="46"/> <circ-port height="8" pin="3030,70" width="8" x="946" y="46"/> <circ-port height="8" pin="3090,70" width="8" x="956" y="46"/> <circ-port height="8" pin="3120,70" width="8" x="966" y="46"/> <circ-port height="8" pin="3150,70" width="8" x="976" y="46"/> <circ-port height="8" pin="3180,70" width="8" x="986" y="46"/> <circ-port height="8" pin="3210,70" width="8" x="996" y="46"/> <circ-port height="8" pin="3240,70" width="8" x="1006" y="46"/> <circ-port height="8" pin="3270,70" width="8" x="1016" y="46"/> <circ-port height="8" pin="3300,70" width="8" x="1026" y="46"/> <circ-port height="8" pin="3330,70" width="8" x="1036" y="46"/> <circ-port height="8" pin="3360,70" width="8" x="1046" y="46"/> <circ-port height="8" pin="3430,70" width="8" x="1056" y="46"/> <circ-port height="8" pin="3460,70" width="8" x="1066" y="46"/> <circ-port height="8" pin="3490,70" width="8" x="1076" y="46"/> <circ-port height="8" pin="3520,70" width="8" x="1086" y="46"/> <circ-port height="8" pin="3550,70" width="8" x="1096" y="46"/> <circ-port height="8" pin="3580,70" width="8" x="1106" y="46"/> <circ-port height="8" pin="3610,70" width="8" x="1116" y="46"/> <circ-port height="8" pin="3640,70" width="8" x="1126" y="46"/> <circ-port height="8" pin="3670,70" width="8" x="1136" y="46"/> <circ-port height="8" pin="3700,70" width="8" x="1146" y="46"/> <circ-port height="8" pin="3760,70" width="8" x="1156" y="46"/> <circ-port height="8" pin="3790,70" width="8" x="1166" y="46"/> <circ-port height="8" pin="3820,70" width="8" x="1176" y="46"/> <circ-port height="8" pin="3850,70" width="8" x="1186" y="46"/> <circ-port height="8" pin="3880,70" width="8" x="1196" y="46"/> <circ-port height="8" pin="3910,70" width="8" x="1206" y="46"/> <circ-port height="8" pin="3940,70" width="8" x="1216" y="46"/> <circ-port height="8" pin="3970,70" width="8" x="1226" y="46"/> <circ-port height="8" pin="4000,70" width="8" x="1236" y="46"/> <circ-port height="8" pin="4030,70" width="8" x="1246" y="46"/> <circ-port height="8" pin="4090,70" width="8" x="1256" y="46"/> <circ-port height="8" pin="4120,70" width="8" x="1266" y="46"/> <circ-port height="8" pin="4150,70" width="8" x="1276" y="46"/> <circ-port height="8" pin="4180,70" width="8" x="1286" y="46"/> <circ-port height="8" pin="4210,70" width="8" x="1296" y="46"/> <circ-port height="8" pin="4240,70" width="8" x="1306" y="46"/> <circ-port height="8" pin="4270,70" width="8" x="1316" y="46"/> <circ-port height="8" pin="4300,70" width="8" x="1326" y="46"/> <circ-port height="8" pin="4330,70" width="8" x="1336" y="46"/> <circ-port height="8" pin="4360,70" width="8" x="1346" y="46"/> <circ-port height="8" pin="70,360" width="8" x="46" y="56"/> <circ-port height="8" pin="70,420" width="8" x="46" y="66"/> <circ-port height="8" pin="70,390" width="8" x="46" y="76"/> <circ-port height="8" pin="4720,720" width="8" x="46" y="86"/> <circ-port height="10" pin="4720,820" width="10" x="45" y="105"/> <circ-port height="10" pin="3730,1130" width="10" x="45" y="115"/> <circ-port height="10" pin="4720,980" width="10" x="45" y="125"/> <circ-port height="10" pin="4720,1010" width="10" x="45" y="135"/> <circ-port height="10" pin="4720,1040" width="10" x="45" y="145"/> <circ-port height="10" pin="4720,1070" width="10" x="45" y="155"/> <circ-port height="8" pin="4720,60" width="8" x="1366" y="66"/> <circ-port height="8" pin="4720,100" width="8" x="1366" y="76"/> <circ-port height="8" pin="4720,660" width="8" x="1366" y="206"/> <circ-port height="8" pin="4720,690" width="8" x="1366" y="186"/> <circ-port height="10" pin="4720,780" width="10" x="1365" y="135"/> <circ-port height="10" pin="4720,1140" width="10" x="1365" y="145"/> <circ-port height="8" pin="4790,1270" width="8" x="1196" y="236"/> <circ-port height="8" pin="4750,1270" width="8" x="1186" y="236"/> <circ-port height="8" pin="4710,1270" width="8" x="1176" y="236"/> <circ-port height="8" pin="4670,1270" width="8" x="1166" y="236"/> <circ-port height="8" pin="4630,1270" width="8" x="1156" y="236"/> <circ-port height="8" pin="4590,1270" width="8" x="1146" y="236"/> <circ-port height="8" pin="4550,1270" width="8" x="1136" y="236"/> <circ-port height="8" pin="4510,1270" width="8" x="1126" y="236"/> <circ-port height="8" pin="70,590" width="8" x="386" y="236"/> <circ-port height="10" pin="2390,1130" width="10" x="615" y="235"/> <circ-port height="10" pin="2460,1130" width="10" x="605" y="235"/> <circ-port height="10" pin="390,1130" width="10" x="75" y="235"/> <circ-port height="10" pin="470,1130" width="10" x="95" y="235"/> <circ-port height="10" pin="240,1130" width="10" x="625" y="235"/> <circ-port height="10" pin="290,1130" width="10" x="635" y="235"/> <circ-port height="10" pin="340,1130" width="10" x="645" y="235"/> <circ-port height="10" pin="520,1130" width="10" x="85" y="235"/> <circ-port height="10" pin="570,1130" width="10" x="105" y="235"/> <circ-port height="10" pin="630,1130" width="10" x="145" y="235"/> <circ-port height="10" pin="680,1130" width="10" x="115" y="235"/> <circ-port height="10" pin="730,1130" width="10" x="135" y="235"/> <circ-port height="10" pin="780,1130" width="10" x="125" y="235"/> <circ-port height="10" pin="3490,1130" width="10" x="1365" y="155"/> <circ-port height="10" pin="1180,1130" width="10" x="175" y="235"/> <circ-port height="10" pin="1240,1130" width="10" x="185" y="235"/> <circ-port height="10" pin="1300,1130" width="10" x="195" y="235"/> <circ-port height="10" pin="1360,1130" width="10" x="205" y="235"/> <circ-port height="10" pin="1420,1130" width="10" x="215" y="235"/> <circ-port height="10" pin="1480,1130" width="10" x="255" y="235"/> <circ-port height="10" pin="1540,1130" width="10" x="265" y="235"/> <circ-port height="10" pin="1600,1130" width="10" x="275" y="235"/> <circ-port height="10" pin="1660,1130" width="10" x="325" y="235"/> <circ-port height="10" pin="1720,1130" width="10" x="295" y="235"/> <circ-port height="10" pin="1780,1130" width="10" x="335" y="235"/> <circ-port height="10" pin="1840,1130" width="10" x="235" y="235"/> <circ-port height="10" pin="1900,1130" width="10" x="225" y="235"/> <circ-port height="10" pin="1960,1130" width="10" x="245" y="235"/> <circ-port height="10" pin="2020,1130" width="10" x="345" y="235"/> <circ-port height="8" pin="4720,200" width="8" x="1366" y="96"/> <circ-port height="10" pin="2530,1130" width="10" x="535" y="235"/> <circ-port height="10" pin="2600,1130" width="10" x="545" y="235"/> <circ-port height="10" pin="2320,1130" width="10" x="655" y="235"/> <circ-port height="10" pin="2250,1130" width="10" x="665" y="235"/> <circ-port height="10" pin="2180,1130" width="10" x="675" y="235"/> <circ-port height="10" pin="2710,1130" width="10" x="595" y="235"/> <circ-port height="10" pin="2760,1130" width="10" x="555" y="235"/> <circ-port height="10" pin="2810,1130" width="10" x="565" y="235"/> <circ-port height="10" pin="2880,1130" width="10" x="575" y="235"/> <circ-port height="8" pin="70,650" width="8" x="46" y="186"/> <circ-port height="10" pin="2080,1130" width="10" x="285" y="235"/> <circ-port height="10" pin="3570,1130" width="10" x="1055" y="235"/> <circ-port height="10" pin="3530,1130" width="10" x="1045" y="235"/> <circ-port height="10" pin="3650,1130" width="10" x="1015" y="235"/> <circ-port height="10" pin="3850,1130" width="10" x="495" y="235"/> <circ-port height="10" pin="2940,1130" width="10" x="455" y="235"/> <circ-port height="10" pin="3000,1130" width="10" x="465" y="235"/> <circ-port height="10" pin="3060,1130" width="10" x="435" y="235"/> <circ-port height="10" pin="3120,1130" width="10" x="475" y="235"/> <circ-port height="10" pin="3180,1130" width="10" x="445" y="235"/> <circ-port height="10" pin="3240,1130" width="10" x="485" y="235"/> <circ-port height="10" pin="3960,1130" width="10" x="785" y="235"/> <circ-port height="10" pin="4000,1130" width="10" x="795" y="235"/> <circ-port height="10" pin="4040,1130" width="10" x="805" y="235"/> <circ-port height="10" pin="4080,1130" width="10" x="815" y="235"/> <circ-port height="10" pin="4120,1130" width="10" x="825" y="235"/> <circ-port height="10" pin="4160,1130" width="10" x="845" y="235"/> <circ-port height="10" pin="4200,1130" width="10" x="855" y="235"/> <circ-port height="10" pin="4240,1130" width="10" x="865" y="235"/> <circ-port height="10" pin="4280,1130" width="10" x="875" y="235"/> <circ-port height="10" pin="3450,1130" width="10" x="1005" y="235"/> <circ-port height="10" pin="4320,1130" width="10" x="885" y="235"/> <circ-port height="10" pin="4360,1130" width="10" x="895" y="235"/> <circ-port height="10" pin="3300,1130" width="10" x="415" y="235"/> <circ-port height="10" pin="3360,1130" width="10" x="425" y="235"/> <circ-port height="10" pin="840,1130" width="10" x="945" y="235"/> <circ-port height="10" pin="890,1130" width="10" x="935" y="235"/> <circ-port height="10" pin="940,1130" width="10" x="835" y="235"/> <circ-port height="10" pin="990,1130" width="10" x="905" y="235"/> <circ-port height="10" pin="1040,1130" width="10" x="915" y="235"/> <circ-port height="10" pin="1090,1130" width="10" x="925" y="235"/> <circ-port height="8" pin="70,620" width="8" x="366" y="236"/> <circ-port height="10" pin="3690,1130" width="10" x="45" y="165"/> <circ-port height="10" pin="4420,1270" width="10" x="1345" y="235"/> <circ-port height="10" pin="4380,1270" width="10" x="1335" y="235"/> <circ-port height="10" pin="4340,1270" width="10" x="1325" y="235"/> <circ-port height="10" pin="4300,1270" width="10" x="1315" y="235"/> <circ-port height="10" pin="4140,1270" width="10" x="1275" y="235"/> <circ-port height="10" pin="4180,1270" width="10" x="1285" y="235"/> <circ-port height="10" pin="4220,1270" width="10" x="1295" y="235"/> <circ-port height="10" pin="4260,1270" width="10" x="1305" y="235"/> <circ-port height="10" pin="2660,1130" width="10" x="585" y="235"/> <circ-port height="8" pin="4720,750" width="8" x="46" y="96"/> <circ-port height="10" pin="3770,1130" width="10" x="1025" y="235"/> <circ-anchor facing="east" height="6" width="6" x="57" y="47"/> </appear> <wire from="(670,460)" to="(670,1050)"/> <wire from="(1900,90)" to="(2580,90)"/> <wire from="(330,70)" to="(330,200)"/> <wire from="(3800,540)" to="(3930,540)"/> <wire from="(3450,670)" to="(4670,670)"/> <wire from="(4620,1230)" to="(4620,1240)"/> <wire from="(4020,1000)" to="(4100,1000)"/> <wire from="(3430,420)" to="(3500,420)"/> <wire from="(1290,70)" to="(1290,200)"/> <wire from="(3590,130)" to="(3590,290)"/> <wire from="(3850,70)" to="(3850,230)"/> <wire from="(4160,190)" to="(4160,290)"/> <wire from="(150,260)" to="(500,260)"/> <wire from="(920,710)" to="(940,710)"/> <wire from="(4220,1250)" to="(4250,1250)"/> <wire from="(630,100)" to="(650,100)"/> <wire from="(450,870)" to="(480,870)"/> <wire from="(470,850)" to="(470,1010)"/> <wire from="(3490,130)" to="(3590,130)"/> <wire from="(2580,140)" to="(2580,410)"/> <wire from="(840,1030)" to="(840,1130)"/> <wire from="(4090,1210)" to="(4090,1230)"/> <wire from="(990,1090)" to="(1020,1090)"/> <wire from="(3570,1100)" to="(3610,1100)"/> <wire from="(3970,500)" to="(3970,960)"/> <wire from="(1540,190)" to="(1540,420)"/> <wire from="(1340,310)" to="(1340,540)"/> <wire from="(3550,220)" to="(3550,290)"/> <wire from="(2440,260)" to="(2440,410)"/> <wire from="(1050,270)" to="(1460,270)"/> <wire from="(1090,1090)" to="(1090,1130)"/> <wire from="(1640,800)" to="(1640,1090)"/> <wire from="(860,350)" to="(1190,350)"/> <wire from="(330,530)" to="(390,530)"/> <wire from="(1240,1010)" to="(1480,1010)"/> <wire from="(1470,150)" to="(1580,150)"/> <wire from="(4060,1190)" to="(4450,1190)"/> <wire from="(1000,830)" to="(1310,830)"/> <wire from="(2310,70)" to="(2310,170)"/> <wire from="(1770,280)" to="(2650,280)"/> <wire from="(540,220)" to="(540,290)"/> <wire from="(3800,520)" to="(3820,520)"/> <wire from="(2080,120)" to="(2520,120)"/> <wire from="(3070,440)" to="(3080,440)"/> <wire from="(3640,250)" to="(3640,290)"/> <wire from="(240,990)" to="(460,990)"/> <wire from="(2450,780)" to="(2450,1040)"/> <wire from="(920,520)" to="(940,520)"/> <wire from="(70,620)" to="(100,620)"/> <wire from="(760,240)" to="(970,240)"/> <wire from="(750,230)" to="(960,230)"/> <wire from="(2080,480)" to="(2080,600)"/> <wire from="(4480,430)" to="(4500,430)"/> <wire from="(2650,280)" to="(2650,410)"/> <wire from="(390,70)" to="(390,180)"/> <wire from="(940,1070)" to="(940,1130)"/> <wire from="(2390,1080)" to="(2490,1080)"/> <wire from="(1350,70)" to="(1350,180)"/> <wire from="(70,390)" to="(140,390)"/> <wire from="(1700,800)" to="(1700,1030)"/> <wire from="(4660,430)" to="(4660,680)"/> <wire from="(370,370)" to="(370,490)"/> <wire from="(980,790)" to="(980,840)"/> <wire from="(1720,350)" to="(1950,350)"/> <wire from="(2570,1080)" to="(2660,1080)"/> <wire from="(3930,540)" to="(3930,660)"/> <wire from="(3520,120)" to="(3600,120)"/> <wire from="(800,920)" to="(2200,920)"/> <wire from="(2810,1020)" to="(2810,1130)"/> <wire from="(4200,170)" to="(4200,290)"/> <wire from="(3620,100)" to="(3620,290)"/> <wire from="(1860,70)" to="(1860,150)"/> <wire from="(3800,340)" to="(3810,340)"/> <wire from="(3270,70)" to="(3270,230)"/> <wire from="(2470,230)" to="(2470,410)"/> <wire from="(2600,100)" to="(2600,410)"/> <wire from="(2190,400)" to="(2590,400)"/> <wire from="(100,360)" to="(100,380)"/> <wire from="(3220,80)" to="(3220,380)"/> <wire from="(4180,1240)" to="(4180,1270)"/> <wire from="(1410,510)" to="(1420,510)"/> <wire from="(240,370)" to="(240,470)"/> <wire from="(2190,400)" to="(2190,470)"/> <wire from="(70,590)" to="(860,590)"/> <wire from="(3160,280)" to="(3160,410)"/> <wire from="(450,830)" to="(460,830)"/> <wire from="(3460,70)" to="(3460,140)"/> <wire from="(3490,1060)" to="(3490,1130)"/> <wire from="(180,250)" to="(510,250)"/> <wire from="(3910,70)" to="(3910,210)"/> <wire from="(1630,90)" to="(1630,380)"/> <wire from="(2370,70)" to="(2370,100)"/> <wire from="(2790,540)" to="(2940,540)"/> <wire from="(900,70)" to="(900,210)"/> <wire from="(3970,70)" to="(3970,190)"/> <wire from="(3520,70)" to="(3520,120)"/> <wire from="(2340,600)" to="(2360,600)"/> <wire from="(1570,160)" to="(1570,420)"/> <wire from="(1440,290)" to="(1440,420)"/> <wire from="(4450,1190)" to="(4450,1210)"/> <wire from="(310,550)" to="(730,550)"/> <wire from="(2250,1040)" to="(2450,1040)"/> <wire from="(1180,990)" to="(1180,1130)"/> <wire from="(100,400)" to="(260,400)"/> <wire from="(450,70)" to="(450,170)"/> <wire from="(630,120)" to="(630,290)"/> <wire from="(170,410)" to="(260,410)"/> <wire from="(1840,640)" to="(2360,640)"/> <wire from="(610,1110)" to="(630,1110)"/> <wire from="(4680,570)" to="(4680,1180)"/> <wire from="(1480,1090)" to="(1560,1090)"/> <wire from="(340,830)" to="(370,830)"/> <wire from="(4480,370)" to="(4500,370)"/> <wire from="(4040,270)" to="(4040,290)"/> <wire from="(2550,1100)" to="(2600,1100)"/> <wire from="(3860,700)" to="(4420,700)"/> <wire from="(570,190)" to="(570,290)"/> <wire from="(1500,140)" to="(1590,140)"/> <wire from="(2550,120)" to="(2550,270)"/> <wire from="(470,340)" to="(480,340)"/> <wire from="(4000,1060)" to="(4000,1130)"/> <wire from="(2820,70)" to="(2820,220)"/> <wire from="(1060,300)" to="(1720,300)"/> <wire from="(1170,710)" to="(1190,710)"/> <wire from="(4320,160)" to="(4320,350)"/> <wire from="(3190,370)" to="(3270,370)"/> <wire from="(430,390)" to="(480,390)"/> <wire from="(220,420)" to="(220,430)"/> <wire from="(470,1070)" to="(520,1070)"/> <wire from="(4440,570)" to="(4680,570)"/> <wire from="(3760,240)" to="(4100,240)"/> <wire from="(4750,1240)" to="(4750,1270)"/> <wire from="(1790,300)" to="(2940,300)"/> <wire from="(4060,600)" to="(4060,1020)"/> <wire from="(1920,70)" to="(1920,140)"/> <wire from="(230,430)" to="(230,460)"/> <wire from="(3690,1100)" to="(3730,1100)"/> <wire from="(3850,1040)" to="(3850,1130)"/> <wire from="(720,200)" to="(870,200)"/> <wire from="(1410,450)" to="(1420,450)"/> <wire from="(2510,780)" to="(2510,1100)"/> <wire from="(1090,1090)" to="(1100,1090)"/> <wire from="(3580,260)" to="(3580,290)"/> <wire from="(3840,820)" to="(4720,820)"/> <wire from="(4420,1230)" to="(4420,1270)"/> <wire from="(310,510)" to="(310,550)"/> <wire from="(1380,850)" to="(3390,850)"/> <wire from="(690,930)" to="(2170,930)"/> <wire from="(1720,190)" to="(1720,300)"/> <wire from="(2250,1040)" to="(2250,1130)"/> <wire from="(860,350)" to="(860,590)"/> <wire from="(3330,70)" to="(3330,210)"/> <wire from="(4190,100)" to="(4190,290)"/> <wire from="(3800,480)" to="(3870,480)"/> <wire from="(3710,200)" to="(3710,260)"/> <wire from="(1930,130)" to="(2610,130)"/> <wire from="(1470,70)" to="(1470,150)"/> <wire from="(1110,260)" to="(1470,260)"/> <wire from="(210,240)" to="(520,240)"/> <wire from="(2570,780)" to="(2570,1080)"/> <wire from="(2010,260)" to="(2440,260)"/> <wire from="(4590,1270)" to="(4590,1280)"/> <wire from="(460,490)" to="(770,490)"/> <wire from="(3300,1070)" to="(3300,1130)"/> <wire from="(2340,540)" to="(2360,540)"/> <wire from="(1060,300)" to="(1060,370)"/> <wire from="(510,70)" to="(510,150)"/> <wire from="(4030,70)" to="(4030,170)"/> <wire from="(120,630)" to="(860,630)"/> <wire from="(100,610)" to="(840,610)"/> <wire from="(1980,340)" to="(2430,340)"/> <wire from="(4090,100)" to="(4190,100)"/> <wire from="(920,720)" to="(940,720)"/> <wire from="(1410,580)" to="(1420,580)"/> <wire from="(1170,660)" to="(1180,660)"/> <wire from="(3750,1040)" to="(3850,1040)"/> <wire from="(670,150)" to="(690,150)"/> <wire from="(4490,950)" to="(4520,950)"/> <wire from="(480,870)" to="(480,1030)"/> <wire from="(3580,70)" to="(3580,100)"/> <wire from="(1640,370)" to="(1640,420)"/> <wire from="(1530,130)" to="(1600,130)"/> <wire from="(960,70)" to="(960,230)"/> <wire from="(2760,1040)" to="(2760,1130)"/> <wire from="(3550,110)" to="(3610,110)"/> <wire from="(1500,800)" to="(1500,1030)"/> <wire from="(1720,1090)" to="(1720,1130)"/> <wire from="(120,310)" to="(200,310)"/> <wire from="(2430,70)" to="(2430,150)"/> <wire from="(4120,600)" to="(4120,930)"/> <wire from="(1470,260)" to="(1470,420)"/> <wire from="(2500,200)" to="(2500,410)"/> <wire from="(2690,330)" to="(2690,410)"/> <wire from="(930,420)" to="(940,420)"/> <wire from="(1600,130)" to="(1600,420)"/> <wire from="(200,720)" to="(200,840)"/> <wire from="(1020,70)" to="(1020,120)"/> <wire from="(310,510)" to="(380,510)"/> <wire from="(1360,1050)" to="(1360,1130)"/> <wire from="(3140,710)" to="(3140,1070)"/> <wire from="(600,160)" to="(600,290)"/> <wire from="(1740,180)" to="(1910,180)"/> <wire from="(2630,780)" to="(2630,1020)"/> <wire from="(340,800)" to="(340,830)"/> <wire from="(3120,250)" to="(3520,250)"/> <wire from="(810,310)" to="(1340,310)"/> <wire from="(4090,70)" to="(4090,100)"/> <wire from="(4060,1190)" to="(4060,1280)"/> <wire from="(1960,1010)" to="(1960,1130)"/> <wire from="(1530,70)" to="(1530,130)"/> <wire from="(230,490)" to="(240,490)"/> <wire from="(3250,460)" to="(3500,460)"/> <wire from="(1700,150)" to="(1860,150)"/> <wire from="(2880,70)" to="(2880,280)"/> <wire from="(570,70)" to="(570,120)"/> <wire from="(960,1030)" to="(1100,1030)"/> <wire from="(380,390)" to="(380,510)"/> <wire from="(3220,80)" to="(4360,80)"/> <wire from="(810,310)" to="(810,360)"/> <wire from="(4120,230)" to="(4120,290)"/> <wire from="(3490,360)" to="(3500,360)"/> <wire from="(4240,930)" to="(4300,930)"/> <wire from="(3060,1090)" to="(3060,1130)"/> <wire from="(1040,790)" to="(1040,1070)"/> <wire from="(4160,840)" to="(4300,840)"/> <wire from="(4290,1230)" to="(4290,1240)"/> <wire from="(1170,640)" to="(1270,640)"/> <wire from="(3000,70)" to="(3000,130)"/> <wire from="(2810,710)" to="(2810,830)"/> <wire from="(3710,260)" to="(4050,260)"/> <wire from="(2350,500)" to="(2360,500)"/> <wire from="(2530,170)" to="(2530,410)"/> <wire from="(3070,580)" to="(3080,580)"/> <wire from="(1730,100)" to="(2370,100)"/> <wire from="(240,230)" to="(530,230)"/> <wire from="(3770,1010)" to="(3860,1010)"/> <wire from="(4020,930)" to="(4120,930)"/> <wire from="(2490,70)" to="(2490,140)"/> <wire from="(360,430)" to="(360,720)"/> <wire from="(1500,230)" to="(1500,420)"/> <wire from="(2220,920)" to="(2850,920)"/> <wire from="(2630,220)" to="(2820,220)"/> <wire from="(690,170)" to="(780,170)"/> <wire from="(1620,90)" to="(1630,90)"/> <wire from="(3580,100)" to="(3620,100)"/> <wire from="(2040,250)" to="(2450,250)"/> <wire from="(1650,100)" to="(1680,100)"/> <wire from="(3430,420)" to="(3430,940)"/> <wire from="(1140,250)" to="(1480,250)"/> <wire from="(3820,120)" to="(3820,190)"/> <wire from="(2850,750)" to="(2850,920)"/> <wire from="(4150,70)" to="(4150,130)"/> <wire from="(4260,1020)" to="(4320,1020)"/> <wire from="(2730,260)" to="(3580,260)"/> <wire from="(860,620)" to="(860,630)"/> <wire from="(2940,70)" to="(2940,300)"/> <wire from="(4240,600)" to="(4240,930)"/> <wire from="(3200,710)" to="(3200,1090)"/> <wire from="(3880,560)" to="(3880,870)"/> <wire from="(630,70)" to="(630,100)"/> <wire from="(2190,470)" to="(2200,470)"/> <wire from="(3690,620)" to="(3690,1100)"/> <wire from="(1560,120)" to="(1610,120)"/> <wire from="(500,260)" to="(500,290)"/> <wire from="(2610,130)" to="(2610,190)"/> <wire from="(4550,1240)" to="(4550,1270)"/> <wire from="(780,1050)" to="(780,1130)"/> <wire from="(4430,200)" to="(4720,200)"/> <wire from="(4160,840)" to="(4160,1130)"/> <wire from="(1290,670)" to="(1420,670)"/> <wire from="(860,680)" to="(860,840)"/> <wire from="(2710,1060)" to="(2710,1130)"/> <wire from="(1590,70)" to="(1590,110)"/> <wire from="(290,870)" to="(370,870)"/> <wire from="(3680,140)" to="(4180,140)"/> <wire from="(1720,190)" to="(1930,190)"/> <wire from="(4120,930)" to="(4120,1130)"/> <wire from="(2550,70)" to="(2550,100)"/> <wire from="(1180,990)" to="(1460,990)"/> <wire from="(1560,800)" to="(1560,1090)"/> <wire from="(1170,400)" to="(1190,400)"/> <wire from="(1170,720)" to="(1190,720)"/> <wire from="(590,460)" to="(590,1110)"/> <wire from="(3640,70)" to="(3640,250)"/> <wire from="(1540,1110)" to="(1540,1130)"/> <wire from="(1670,120)" to="(1770,120)"/> <wire from="(330,530)" to="(330,850)"/> <wire from="(2140,680)" to="(2140,910)"/> <wire from="(3540,230)" to="(3540,290)"/> <wire from="(1010,210)" to="(1260,210)"/> <wire from="(2400,370)" to="(2400,410)"/> <wire from="(4260,880)" to="(4260,1020)"/> <wire from="(4670,1230)" to="(4670,1240)"/> <wire from="(3580,140)" to="(3580,260)"/> <wire from="(3700,70)" to="(3700,110)"/> <wire from="(1980,70)" to="(1980,340)"/> <wire from="(3870,480)" to="(4020,480)"/> <wire from="(1620,390)" to="(2380,390)"/> <wire from="(2830,830)" to="(3990,830)"/> <wire from="(2350,440)" to="(2360,440)"/> <wire from="(1270,640)" to="(1270,900)"/> <wire from="(3070,520)" to="(3080,520)"/> <wire from="(4510,1230)" to="(4610,1230)"/> <wire from="(3610,90)" to="(3630,90)"/> <wire from="(3750,620)" to="(3750,1040)"/> <wire from="(4630,1040)" to="(4720,1040)"/> <wire from="(3450,520)" to="(3450,670)"/> <wire from="(2170,660)" to="(2360,660)"/> <wire from="(1170,540)" to="(1180,540)"/> <wire from="(2040,70)" to="(2040,250)"/> <wire from="(3150,240)" to="(3530,240)"/> <wire from="(4280,950)" to="(4300,950)"/> <wire from="(4510,870)" to="(4520,870)"/> <wire from="(270,220)" to="(540,220)"/> <wire from="(800,420)" to="(800,920)"/> <wire from="(290,490)" to="(290,870)"/> <wire from="(290,1010)" to="(290,1130)"/> <wire from="(4240,1060)" to="(4240,1130)"/> <wire from="(120,70)" to="(120,270)"/> <wire from="(1530,200)" to="(1530,420)"/> <wire from="(4630,1260)" to="(4630,1270)"/> <wire from="(1650,70)" to="(1650,90)"/> <wire from="(1170,240)" to="(1490,240)"/> <wire from="(2340,760)" to="(2340,810)"/> <wire from="(4070,250)" to="(4070,290)"/> <wire from="(2430,780)" to="(2430,1020)"/> <wire from="(2610,70)" to="(2610,120)"/> <wire from="(4280,1230)" to="(4280,1250)"/> <wire from="(3070,650)" to="(3080,650)"/> <wire from="(2660,1080)" to="(2660,1130)"/> <wire from="(2570,150)" to="(2570,410)"/> <wire from="(920,730)" to="(940,730)"/> <wire from="(4150,200)" to="(4150,290)"/> <wire from="(1400,780)" to="(1400,830)"/> <wire from="(650,460)" to="(650,1070)"/> <wire from="(1620,800)" to="(1620,1110)"/> <wire from="(240,370)" to="(260,370)"/> <wire from="(530,230)" to="(530,290)"/> <wire from="(290,490)" to="(370,490)"/> <wire from="(730,1070)" to="(730,1130)"/> <wire from="(1590,110)" to="(1620,110)"/> <wire from="(270,800)" to="(340,800)"/> <wire from="(140,570)" to="(710,570)"/> <wire from="(1380,760)" to="(1380,850)"/> <wire from="(1650,360)" to="(2410,360)"/> <wire from="(390,1050)" to="(390,1130)"/> <wire from="(3070,460)" to="(3080,460)"/> <wire from="(690,70)" to="(690,150)"/> <wire from="(4120,90)" to="(4340,90)"/> <wire from="(4200,860)" to="(4300,860)"/> <wire from="(1420,1070)" to="(1540,1070)"/> <wire from="(1210,770)" to="(1210,1230)"/> <wire from="(790,770)" to="(900,770)"/> <wire from="(4630,980)" to="(4720,980)"/> <wire from="(3120,1110)" to="(3170,1110)"/> <wire from="(920,540)" to="(940,540)"/> <wire from="(1680,800)" to="(1680,1050)"/> <wire from="(1840,720)" to="(2360,720)"/> <wire from="(1140,70)" to="(1140,250)"/> <wire from="(2320,1060)" to="(2320,1130)"/> <wire from="(1910,150)" to="(2430,150)"/> <wire from="(4040,1080)" to="(4080,1080)"/> <wire from="(520,460)" to="(520,1070)"/> <wire from="(4650,1260)" to="(4670,1260)"/> <wire from="(780,390)" to="(810,390)"/> <wire from="(4240,930)" to="(4240,1040)"/> <wire from="(4210,70)" to="(4210,150)"/> <wire from="(2940,1050)" to="(3130,1050)"/> <wire from="(2100,70)" to="(2100,240)"/> <wire from="(180,70)" to="(180,250)"/> <wire from="(3130,710)" to="(3130,1050)"/> <wire from="(4550,1240)" to="(4620,1240)"/> <wire from="(300,210)" to="(550,210)"/> <wire from="(3610,110)" to="(3610,290)"/> <wire from="(1200,230)" to="(1500,230)"/> <wire from="(4180,170)" to="(4180,290)"/> <wire from="(2460,240)" to="(2460,410)"/> <wire from="(3800,360)" to="(3810,360)"/> <wire from="(4220,980)" to="(4220,1060)"/> <wire from="(4660,1230)" to="(4660,1250)"/> <wire from="(1040,1070)" to="(1100,1070)"/> <wire from="(1310,690)" to="(1310,830)"/> <wire from="(4270,70)" to="(4270,160)"/> <wire from="(4280,1040)" to="(4280,1130)"/> <wire from="(340,390)" to="(380,390)"/> <wire from="(4590,1250)" to="(4630,1250)"/> <wire from="(1290,670)" to="(1290,810)"/> <wire from="(2430,340)" to="(2430,410)"/> <wire from="(4270,1260)" to="(4300,1260)"/> <wire from="(1740,800)" to="(1740,990)"/> <wire from="(4700,100)" to="(4720,100)"/> <wire from="(1560,170)" to="(1560,420)"/> <wire from="(3450,1040)" to="(3450,1130)"/> <wire from="(730,550)" to="(730,970)"/> <wire from="(1710,70)" to="(1710,110)"/> <wire from="(4400,900)" to="(4400,1140)"/> <wire from="(120,330)" to="(260,330)"/> <wire from="(2100,240)" to="(2460,240)"/> <wire from="(470,1070)" to="(470,1130)"/> <wire from="(810,1020)" to="(810,1280)"/> <wire from="(2490,780)" to="(2490,1080)"/> <wire from="(3820,70)" to="(3820,120)"/> <wire from="(1660,1110)" to="(1660,1130)"/> <wire from="(170,680)" to="(860,680)"/> <wire from="(3550,620)" to="(3550,1060)"/> <wire from="(2340,620)" to="(2360,620)"/> <wire from="(4000,360)" to="(4020,360)"/> <wire from="(3350,360)" to="(3350,650)"/> <wire from="(3670,100)" to="(4080,100)"/> <wire from="(560,200)" to="(560,290)"/> <wire from="(3760,70)" to="(3760,240)"/> <wire from="(2860,130)" to="(2860,320)"/> <wire from="(430,390)" to="(430,470)"/> <wire from="(2760,360)" to="(3350,360)"/> <wire from="(2630,220)" to="(2630,410)"/> <wire from="(3240,1090)" to="(3240,1130)"/> <wire from="(3120,70)" to="(3120,250)"/> <wire from="(1020,790)" to="(1020,810)"/> <wire from="(1750,170)" to="(1750,420)"/> <wire from="(4790,1230)" to="(4790,1270)"/> <wire from="(680,1090)" to="(680,1130)"/> <wire from="(240,70)" to="(240,230)"/> <wire from="(3180,70)" to="(3180,90)"/> <wire from="(3960,1040)" to="(3960,1130)"/> <wire from="(3570,1100)" to="(3570,1130)"/> <wire from="(1400,830)" to="(2810,830)"/> <wire from="(4480,390)" to="(4500,390)"/> <wire from="(3170,150)" to="(3210,150)"/> <wire from="(450,410)" to="(450,520)"/> <wire from="(2080,950)" to="(2080,1130)"/> <wire from="(3140,150)" to="(3140,410)"/> <wire from="(1200,70)" to="(1200,230)"/> <wire from="(2160,70)" to="(2160,220)"/> <wire from="(2670,70)" to="(2670,150)"/> <wire from="(4020,980)" to="(4080,980)"/> <wire from="(1170,730)" to="(1190,730)"/> <wire from="(4040,600)" to="(4040,1040)"/> <wire from="(3410,480)" to="(3410,980)"/> <wire from="(4660,1250)" to="(4710,1250)"/> <wire from="(2130,230)" to="(2470,230)"/> <wire from="(2790,620)" to="(2880,620)"/> <wire from="(2700,240)" to="(3090,240)"/> <wire from="(3800,420)" to="(3950,420)"/> <wire from="(2770,380)" to="(3220,380)"/> <wire from="(3670,1120)" to="(3690,1120)"/> <wire from="(2840,120)" to="(2970,120)"/> <wire from="(730,210)" to="(900,210)"/> <wire from="(570,1110)" to="(570,1130)"/> <wire from="(330,200)" to="(560,200)"/> <wire from="(2860,130)" to="(3000,130)"/> <wire from="(840,900)" to="(1270,900)"/> <wire from="(4080,1100)" to="(4080,1130)"/> <wire from="(3190,710)" to="(3190,1110)"/> <wire from="(1410,470)" to="(1420,470)"/> <wire from="(1770,70)" to="(1770,120)"/> <wire from="(1240,1010)" to="(1240,1130)"/> <wire from="(1800,310)" to="(2840,310)"/> <wire from="(2620,210)" to="(2620,410)"/> <wire from="(4320,1020)" to="(4320,1130)"/> <wire from="(4630,1260)" to="(4640,1260)"/> <wire from="(2650,280)" to="(2880,280)"/> <wire from="(390,350)" to="(390,530)"/> <wire from="(2610,200)" to="(2610,410)"/> <wire from="(1900,1030)" to="(1900,1130)"/> <wire from="(1230,220)" to="(1510,220)"/> <wire from="(860,620)" to="(940,620)"/> <wire from="(960,790)" to="(960,1030)"/> <wire from="(1000,830)" to="(1000,1070)"/> <wire from="(1590,140)" to="(1590,420)"/> <wire from="(1460,270)" to="(1460,420)"/> <wire from="(240,470)" to="(430,470)"/> <wire from="(970,100)" to="(970,240)"/> <wire from="(1480,800)" to="(1480,1010)"/> <wire from="(300,70)" to="(300,210)"/> <wire from="(2340,560)" to="(2360,560)"/> <wire from="(4160,600)" to="(4160,840)"/> <wire from="(680,160)" to="(720,160)"/> <wire from="(2100,960)" to="(3970,960)"/> <wire from="(2850,750)" to="(4720,750)"/> <wire from="(1260,70)" to="(1260,210)"/> <wire from="(810,70)" to="(810,180)"/> <wire from="(920,740)" to="(940,740)"/> <wire from="(2220,70)" to="(2220,200)"/> <wire from="(1410,600)" to="(1420,600)"/> <wire from="(3840,600)" to="(3840,820)"/> <wire from="(1020,1050)" to="(1020,1090)"/> <wire from="(2550,100)" to="(2600,100)"/> <wire from="(1040,1070)" to="(1040,1130)"/> <wire from="(2490,210)" to="(2490,410)"/> <wire from="(590,170)" to="(590,290)"/> <wire from="(650,100)" to="(650,290)"/> <wire from="(2730,260)" to="(2730,410)"/> <wire from="(310,860)" to="(370,860)"/> <wire from="(1910,150)" to="(1910,180)"/> <wire from="(2140,680)" to="(2360,680)"/> <wire from="(860,840)" to="(980,840)"/> <wire from="(3850,230)" to="(4120,230)"/> <wire from="(2280,70)" to="(2280,180)"/> <wire from="(4270,160)" to="(4320,160)"/> <wire from="(770,870)" to="(2880,870)"/> <wire from="(4510,1180)" to="(4680,1180)"/> <wire from="(4060,1020)" to="(4060,1060)"/> <wire from="(1710,160)" to="(1890,160)"/> <wire from="(3610,620)" to="(3610,1100)"/> <wire from="(770,250)" to="(1010,250)"/> <wire from="(2760,360)" to="(2760,410)"/> <wire from="(630,1110)" to="(630,1130)"/> <wire from="(3390,500)" to="(3500,500)"/> <wire from="(2550,780)" to="(2550,1100)"/> <wire from="(1010,210)" to="(1010,250)"/> <wire from="(2420,140)" to="(2420,410)"/> <wire from="(360,190)" to="(570,190)"/> <wire from="(2460,1100)" to="(2510,1100)"/> <wire from="(1320,70)" to="(1320,190)"/> <wire from="(2610,190)" to="(3820,190)"/> <wire from="(4100,600)" to="(4100,1000)"/> <wire from="(1260,210)" to="(1520,210)"/> <wire from="(1740,990)" to="(2020,990)"/> <wire from="(360,70)" to="(360,190)"/> <wire from="(2940,1050)" to="(2940,1130)"/> <wire from="(1620,110)" to="(1620,390)"/> <wire from="(2520,180)" to="(2520,410)"/> <wire from="(3690,150)" to="(4210,150)"/> <wire from="(2640,370)" to="(2640,410)"/> <wire from="(3820,520)" to="(3820,770)"/> <wire from="(810,1280)" to="(4060,1280)"/> <wire from="(3490,380)" to="(3500,380)"/> <wire from="(3450,1040)" to="(3530,1040)"/> <wire from="(1720,1010)" to="(1960,1010)"/> <wire from="(3110,710)" to="(3110,810)"/> <wire from="(4300,1260)" to="(4300,1270)"/> <wire from="(2080,120)" to="(2080,460)"/> <wire from="(2390,1080)" to="(2390,1130)"/> <wire from="(2670,350)" to="(3120,350)"/> <wire from="(1660,110)" to="(1710,110)"/> <wire from="(4140,1230)" to="(4140,1270)"/> <wire from="(700,180)" to="(810,180)"/> <wire from="(3070,600)" to="(3080,600)"/> <wire from="(1830,70)" to="(1830,140)"/> <wire from="(890,1050)" to="(890,1130)"/> <wire from="(4270,1230)" to="(4270,1260)"/> <wire from="(2160,220)" to="(2480,220)"/> <wire from="(1700,1030)" to="(1900,1030)"/> <wire from="(1490,240)" to="(1490,420)"/> <wire from="(4200,170)" to="(4300,170)"/> <wire from="(3430,70)" to="(3430,150)"/> <wire from="(2610,780)" to="(2610,1040)"/> <wire from="(200,720)" to="(360,720)"/> <wire from="(3640,250)" to="(4070,250)"/> <wire from="(1420,1070)" to="(1420,1130)"/> <wire from="(450,850)" to="(470,850)"/> <wire from="(3880,70)" to="(3880,220)"/> <wire from="(4480,270)" to="(4500,270)"/> <wire from="(2170,660)" to="(2170,930)"/> <wire from="(840,610)" to="(840,900)"/> <wire from="(3970,500)" to="(4020,500)"/> <wire from="(3990,560)" to="(3990,830)"/> <wire from="(2900,560)" to="(2900,770)"/> <wire from="(3270,230)" to="(3540,230)"/> <wire from="(3150,370)" to="(3150,410)"/> <wire from="(3490,70)" to="(3490,130)"/> <wire from="(2320,1060)" to="(2470,1060)"/> <wire from="(3800,560)" to="(3880,560)"/> <wire from="(3960,1040)" to="(4040,1040)"/> <wire from="(870,70)" to="(870,200)"/> <wire from="(2940,540)" to="(2940,730)"/> <wire from="(490,270)" to="(490,290)"/> <wire from="(4220,1250)" to="(4220,1270)"/> <wire from="(2840,120)" to="(2840,310)"/> <wire from="(3410,480)" to="(3500,480)"/> <wire from="(200,840)" to="(370,840)"/> <wire from="(4240,1040)" to="(4280,1040)"/> <wire from="(1540,800)" to="(1540,1070)"/> <wire from="(830,440)" to="(940,440)"/> <wire from="(620,140)" to="(620,290)"/> <wire from="(230,430)" to="(260,430)"/> <wire from="(3820,120)" to="(4110,120)"/> <wire from="(2630,1020)" to="(2810,1020)"/> <wire from="(2790,70)" to="(2790,210)"/> <wire from="(990,1090)" to="(990,1130)"/> <wire from="(1380,70)" to="(1380,170)"/> <wire from="(1750,170)" to="(1900,170)"/> <wire from="(1360,1050)" to="(1520,1050)"/> <wire from="(210,430)" to="(220,430)"/> <wire from="(2460,150)" to="(2570,150)"/> <wire from="(4670,1240)" to="(4750,1240)"/> <wire from="(2600,1100)" to="(2600,1130)"/> <wire from="(2340,70)" to="(2340,160)"/> <wire from="(1680,1050)" to="(1840,1050)"/> <wire from="(4220,600)" to="(4220,980)"/> <wire from="(3270,230)" to="(3270,370)"/> <wire from="(570,460)" to="(570,1090)"/> <wire from="(1170,740)" to="(1190,740)"/> <wire from="(4360,1000)" to="(4360,1130)"/> <wire from="(3220,1070)" to="(3300,1070)"/> <wire from="(3490,320)" to="(3500,320)"/> <wire from="(1290,200)" to="(1530,200)"/> <wire from="(2880,280)" to="(3160,280)"/> <wire from="(390,180)" to="(580,180)"/> <wire from="(4280,1250)" to="(4340,1250)"/> <wire from="(1890,70)" to="(1890,160)"/> <wire from="(3530,240)" to="(3530,290)"/> <wire from="(4440,450)" to="(4500,450)"/> <wire from="(2690,230)" to="(2690,330)"/> <wire from="(2340,760)" to="(2360,760)"/> <wire from="(1680,130)" to="(1800,130)"/> <wire from="(1660,1070)" to="(1780,1070)"/> <wire from="(3470,560)" to="(3470,720)"/> <wire from="(2350,460)" to="(2360,460)"/> <wire from="(240,470)" to="(240,490)"/> <wire from="(670,1050)" to="(780,1050)"/> <wire from="(3070,540)" to="(3080,540)"/> <wire from="(4650,1230)" to="(4650,1260)"/> <wire from="(4100,1000)" to="(4100,1100)"/> <wire from="(4080,980)" to="(4080,1080)"/> <wire from="(2080,460)" to="(2140,460)"/> <wire from="(3800,600)" to="(3840,600)"/> <wire from="(3560,270)" to="(3560,290)"/> <wire from="(3300,70)" to="(3300,220)"/> <wire from="(1170,560)" to="(1180,560)"/> <wire from="(1640,1090)" to="(1720,1090)"/> <wire from="(3240,70)" to="(3240,350)"/> <wire from="(910,600)" to="(940,600)"/> <wire from="(4220,980)" to="(4300,980)"/> <wire from="(4510,890)" to="(4520,890)"/> <wire from="(960,230)" to="(960,290)"/> <wire from="(2190,210)" to="(2490,210)"/> <wire from="(3940,70)" to="(3940,200)"/> <wire from="(1400,780)" to="(1420,780)"/> <wire from="(2390,380)" to="(2390,410)"/> <wire from="(1810,320)" to="(2860,320)"/> <wire from="(750,520)" to="(830,520)"/> <wire from="(3120,1110)" to="(3120,1130)"/> <wire from="(3880,220)" to="(4130,220)"/> <wire from="(3800,580)" to="(3860,580)"/> <wire from="(1620,1110)" to="(1660,1110)"/> <wire from="(2700,240)" to="(2700,410)"/> <wire from="(2490,140)" to="(2580,140)"/> <wire from="(2900,770)" to="(3820,770)"/> <wire from="(1520,210)" to="(1520,420)"/> <wire from="(750,520)" to="(750,980)"/> <wire from="(2710,250)" to="(2710,410)"/> <wire from="(4010,330)" to="(4020,330)"/> <wire from="(1440,70)" to="(1440,160)"/> <wire from="(4000,70)" to="(4000,180)"/> <wire from="(450,520)" to="(750,520)"/> <wire from="(930,70)" to="(930,220)"/> <wire from="(1720,350)" to="(1720,420)"/> <wire from="(480,70)" to="(480,160)"/> <wire from="(3550,70)" to="(3550,110)"/> <wire from="(160,360)" to="(260,360)"/> <wire from="(3350,650)" to="(4330,650)"/> <wire from="(4420,910)" to="(4520,910)"/> <wire from="(4280,600)" to="(4280,950)"/> <wire from="(920,750)" to="(940,750)"/> <wire from="(160,130)" to="(160,360)"/> <wire from="(2830,690)" to="(2830,830)"/> <wire from="(3200,1090)" to="(3240,1090)"/> <wire from="(4260,1230)" to="(4260,1270)"/> <wire from="(4140,210)" to="(4140,290)"/> <wire from="(3220,380)" to="(3220,410)"/> <wire from="(3530,1080)" to="(3590,1080)"/> <wire from="(520,240)" to="(520,290)"/> <wire from="(4430,310)" to="(4500,310)"/> <wire from="(3570,150)" to="(3570,290)"/> <wire from="(630,460)" to="(630,1090)"/> <wire from="(460,370)" to="(460,490)"/> <wire from="(3490,580)" to="(3500,580)"/> <wire from="(520,1090)" to="(570,1090)"/> <wire from="(3560,210)" to="(3560,270)"/> <wire from="(2220,200)" to="(2500,200)"/> <wire from="(500,460)" to="(500,1050)"/> <wire from="(1640,370)" to="(2400,370)"/> <wire from="(1600,800)" to="(1600,1130)"/> <wire from="(780,420)" to="(800,420)"/> <wire from="(3910,210)" to="(4140,210)"/> <wire from="(920,560)" to="(940,560)"/> <wire from="(1410,740)" to="(1420,740)"/> <wire from="(3180,1110)" to="(3180,1130)"/> <wire from="(2180,1020)" to="(2430,1020)"/> <wire from="(1170,500)" to="(1180,500)"/> <wire from="(4480,470)" to="(4500,470)"/> <wire from="(4450,1210)" to="(4600,1210)"/> <wire from="(1320,190)" to="(1540,190)"/> <wire from="(3360,70)" to="(3360,200)"/> <wire from="(1760,270)" to="(2550,270)"/> <wire from="(3300,220)" to="(3550,220)"/> <wire from="(2770,380)" to="(2770,410)"/> <wire from="(3100,710)" to="(3100,730)"/> <wire from="(2200,700)" to="(2200,920)"/> <wire from="(1020,1050)" to="(1100,1050)"/> <wire from="(2610,200)" to="(2700,200)"/> <wire from="(3950,690)" to="(4720,690)"/> <wire from="(810,910)" to="(2140,910)"/> <wire from="(2690,230)" to="(3030,230)"/> <wire from="(810,390)" to="(810,910)"/> <wire from="(2450,250)" to="(2450,410)"/> <wire from="(4330,70)" to="(4330,650)"/> <wire from="(2640,370)" to="(2850,370)"/> <wire from="(2850,70)" to="(2850,370)"/> <wire from="(4100,240)" to="(4100,290)"/> <wire from="(1840,1050)" to="(1840,1130)"/> <wire from="(4670,1260)" to="(4670,1270)"/> <wire from="(540,70)" to="(540,140)"/> <wire from="(3800,380)" to="(3810,380)"/> <wire from="(1500,70)" to="(1500,140)"/> <wire from="(4170,180)" to="(4170,290)"/> <wire from="(100,400)" to="(100,420)"/> <wire from="(4340,1250)" to="(4340,1270)"/> <wire from="(970,100)" to="(1650,100)"/> <wire from="(1660,800)" to="(1660,1070)"/> <wire from="(4640,1230)" to="(4640,1260)"/> <wire from="(1730,100)" to="(1730,420)"/> <wire from="(3600,120)" to="(3600,290)"/> <wire from="(2970,70)" to="(2970,120)"/> <wire from="(4630,1070)" to="(4720,1070)"/> <wire from="(3610,70)" to="(3610,90)"/> <wire from="(920,690)" to="(940,690)"/> <wire from="(1340,540)" to="(1420,540)"/> <wire from="(3670,1090)" to="(3670,1120)"/> <wire from="(1550,180)" to="(1550,420)"/> <wire from="(340,430)" to="(360,430)"/> <wire from="(2880,1000)" to="(2880,1130)"/> <wire from="(2650,1000)" to="(2880,1000)"/> <wire from="(3770,900)" to="(4400,900)"/> <wire from="(3180,350)" to="(3240,350)"/> <wire from="(2460,70)" to="(2460,150)"/> <wire from="(3490,580)" to="(3490,900)"/> <wire from="(4670,290)" to="(4670,670)"/> <wire from="(730,970)" to="(3370,970)"/> <wire from="(2670,150)" to="(3140,150)"/> <wire from="(2610,1040)" to="(2760,1040)"/> <wire from="(3530,1080)" to="(3530,1130)"/> <wire from="(1720,800)" to="(1720,1010)"/> <wire from="(200,310)" to="(200,320)"/> <wire from="(140,390)" to="(260,390)"/> <wire from="(4320,350)" to="(4500,350)"/> <wire from="(3370,540)" to="(3500,540)"/> <wire from="(2170,470)" to="(2190,470)"/> <wire from="(3530,620)" to="(3530,1040)"/> <wire from="(4080,1100)" to="(4100,1100)"/> <wire from="(3120,350)" to="(3120,410)"/> <wire from="(4110,120)" to="(4110,290)"/> <wire from="(2520,70)" to="(2520,120)"/> <wire from="(3940,200)" to="(4150,200)"/> <wire from="(550,210)" to="(550,290)"/> <wire from="(3390,680)" to="(3390,850)"/> <wire from="(2340,810)" to="(3110,810)"/> <wire from="(220,420)" to="(260,420)"/> <wire from="(330,850)" to="(370,850)"/> <wire from="(990,70)" to="(990,280)"/> <wire from="(2250,190)" to="(2510,190)"/> <wire from="(1840,740)" to="(2100,740)"/> <wire from="(600,70)" to="(600,110)"/> <wire from="(570,1110)" to="(590,1110)"/> <wire from="(1560,70)" to="(1560,120)"/> <wire from="(4020,1020)" to="(4060,1020)"/> <wire from="(1000,790)" to="(1000,830)"/> <wire from="(4290,1240)" to="(4380,1240)"/> <wire from="(3330,210)" to="(3560,210)"/> <wire from="(4480,410)" to="(4500,410)"/> <wire from="(4120,70)" to="(4120,90)"/> <wire from="(1740,180)" to="(1740,420)"/> <wire from="(1350,180)" to="(1550,180)"/> <wire from="(910,480)" to="(940,480)"/> <wire from="(3870,460)" to="(3870,480)"/> <wire from="(2910,70)" to="(2910,290)"/> <wire from="(4340,90)" to="(4340,330)"/> <wire from="(450,170)" to="(590,170)"/> <wire from="(3060,1090)" to="(3160,1090)"/> <wire from="(2880,870)" to="(3880,870)"/> <wire from="(4440,450)" to="(4440,570)"/> <wire from="(2470,780)" to="(2470,1060)"/> <wire from="(1170,750)" to="(1190,750)"/> <wire from="(1820,330)" to="(1820,420)"/> <wire from="(1950,70)" to="(1950,350)"/> <wire from="(740,220)" to="(930,220)"/> <wire from="(1900,90)" to="(1900,170)"/> <wire from="(3860,700)" to="(3860,1010)"/> <wire from="(2710,250)" to="(3120,250)"/> <wire from="(3800,320)" to="(3810,320)"/> <wire from="(4040,1080)" to="(4040,1130)"/> <wire from="(1920,140)" to="(2420,140)"/> <wire from="(2080,480)" to="(2130,480)"/> <wire from="(2670,350)" to="(2670,410)"/> <wire from="(3670,130)" to="(3670,290)"/> <wire from="(340,410)" to="(450,410)"/> <wire from="(4260,880)" to="(4300,880)"/> <wire from="(2480,220)" to="(2480,410)"/> <wire from="(460,990)" to="(690,990)"/> <wire from="(4630,290)" to="(4670,290)"/> <wire from="(2010,70)" to="(2010,260)"/> <wire from="(4630,1010)" to="(4720,1010)"/> <wire from="(3170,710)" to="(3170,1110)"/> <wire from="(3680,140)" to="(3680,290)"/> <wire from="(1790,300)" to="(1790,420)"/> <wire from="(1410,490)" to="(1420,490)"/> <wire from="(1460,800)" to="(1460,990)"/> <wire from="(3670,70)" to="(3670,100)"/> <wire from="(4700,60)" to="(4720,60)"/> <wire from="(710,940)" to="(3430,940)"/> <wire from="(1800,310)" to="(1800,420)"/> <wire from="(690,930)" to="(690,990)"/> <wire from="(3700,160)" to="(3700,290)"/> <wire from="(650,1070)" to="(730,1070)"/> <wire from="(2460,1100)" to="(2460,1130)"/> <wire from="(3690,150)" to="(3690,290)"/> <wire from="(1810,320)" to="(1810,420)"/> <wire from="(3700,110)" to="(4090,110)"/> <wire from="(3860,580)" to="(3860,700)"/> <wire from="(4080,600)" to="(4080,980)"/> <wire from="(840,1030)" to="(960,1030)"/> <wire from="(1620,390)" to="(1620,420)"/> <wire from="(2790,710)" to="(2810,710)"/> <wire from="(3180,1110)" to="(3190,1110)"/> <wire from="(1050,70)" to="(1050,270)"/> <wire from="(200,320)" to="(260,320)"/> <wire from="(240,990)" to="(240,1130)"/> <wire from="(1620,70)" to="(1620,90)"/> <wire from="(1760,270)" to="(1760,420)"/> <wire from="(3180,350)" to="(3180,410)"/> <wire from="(2340,580)" to="(2360,580)"/> <wire from="(2880,620)" to="(2880,870)"/> <wire from="(4680,1230)" to="(4790,1230)"/> <wire from="(1770,280)" to="(1770,420)"/> <wire from="(1580,150)" to="(1580,420)"/> <wire from="(1780,290)" to="(1780,420)"/> <wire from="(1450,280)" to="(1450,420)"/> <wire from="(4340,330)" to="(4500,330)"/> <wire from="(100,380)" to="(260,380)"/> <wire from="(920,760)" to="(940,760)"/> <wire from="(4050,260)" to="(4050,290)"/> <wire from="(1410,620)" to="(1420,620)"/> <wire from="(3230,710)" to="(3230,1050)"/> <wire from="(580,180)" to="(580,290)"/> <wire from="(1300,1030)" to="(1500,1030)"/> <wire from="(4510,1230)" to="(4510,1270)"/> <wire from="(2590,400)" to="(2590,410)"/> <wire from="(960,290)" to="(1440,290)"/> <wire from="(470,320)" to="(480,320)"/> <wire from="(2790,690)" to="(2830,690)"/> <wire from="(2580,70)" to="(2580,90)"/> <wire from="(790,770)" to="(790,1020)"/> <wire from="(770,490)" to="(770,870)"/> <wire from="(930,460)" to="(940,460)"/> <wire from="(640,110)" to="(640,290)"/> <wire from="(1020,810)" to="(1290,810)"/> <wire from="(3630,90)" to="(3630,290)"/> <wire from="(1170,690)" to="(1190,690)"/> <wire from="(2850,370)" to="(3150,370)"/> <wire from="(1270,900)" to="(3490,900)"/> <wire from="(4300,1230)" to="(4420,1230)"/> <wire from="(3030,70)" to="(3030,230)"/> <wire from="(1780,290)" to="(2910,290)"/> <wire from="(480,160)" to="(600,160)"/> <wire from="(70,650)" to="(120,650)"/> <wire from="(1380,170)" to="(1560,170)"/> <wire from="(160,130)" to="(840,130)"/> <wire from="(340,1030)" to="(340,1130)"/> <wire from="(1110,70)" to="(1110,260)"/> <wire from="(1300,1030)" to="(1300,1130)"/> <wire from="(2280,180)" to="(2520,180)"/> <wire from="(710,190)" to="(840,190)"/> <wire from="(3570,780)" to="(4720,780)"/> <wire from="(2790,560)" to="(2900,560)"/> <wire from="(2530,780)" to="(2530,1130)"/> <wire from="(4180,70)" to="(4180,140)"/> <wire from="(3590,620)" to="(3590,1080)"/> <wire from="(150,70)" to="(150,260)"/> <wire from="(3970,190)" to="(4160,190)"/> <wire from="(2640,170)" to="(3130,170)"/> <wire from="(1020,810)" to="(1020,1050)"/> <wire from="(3430,150)" to="(3570,150)"/> <wire from="(3490,400)" to="(3500,400)"/> <wire from="(1680,70)" to="(1680,100)"/> <wire from="(3870,460)" to="(3880,460)"/> <wire from="(2340,520)" to="(2360,520)"/> <wire from="(750,980)" to="(3410,980)"/> <wire from="(3000,1070)" to="(3000,1130)"/> <wire from="(4590,1250)" to="(4590,1270)"/> <wire from="(4250,1230)" to="(4250,1250)"/> <wire from="(3560,270)" to="(4040,270)"/> <wire from="(3930,660)" to="(4720,660)"/> <wire from="(3700,160)" to="(4240,160)"/> <wire from="(3990,560)" to="(4020,560)"/> <wire from="(3130,170)" to="(3130,410)"/> <wire from="(2220,600)" to="(2220,920)"/> <wire from="(920,700)" to="(940,700)"/> <wire from="(1410,560)" to="(1420,560)"/> <wire from="(4630,430)" to="(4660,430)"/> <wire from="(1650,360)" to="(1650,420)"/> <wire from="(460,830)" to="(460,990)"/> <wire from="(890,1050)" to="(980,1050)"/> <wire from="(1520,800)" to="(1520,1050)"/> <wire from="(4480,290)" to="(4500,290)"/> <wire from="(3690,1120)" to="(3690,1130)"/> <wire from="(1610,120)" to="(1610,420)"/> <wire from="(930,400)" to="(940,400)"/> <wire from="(2510,190)" to="(2510,410)"/> <wire from="(990,280)" to="(1450,280)"/> <wire from="(1480,250)" to="(1480,420)"/> <wire from="(2100,740)" to="(2100,960)"/> <wire from="(2590,780)" to="(2590,1060)"/> <wire from="(2130,70)" to="(2130,230)"/> <wire from="(4080,100)" to="(4080,290)"/> <wire from="(2640,70)" to="(2640,170)"/> <wire from="(4400,1140)" to="(4720,1140)"/> <wire from="(3090,70)" to="(3090,240)"/> <wire from="(610,150)" to="(610,290)"/> <wire from="(1820,330)" to="(2690,330)"/> <wire from="(2310,170)" to="(2530,170)"/> <wire from="(4090,110)" to="(4090,290)"/> <wire from="(3650,620)" to="(3650,1130)"/> <wire from="(3790,70)" to="(3790,120)"/> <wire from="(570,120)" to="(630,120)"/> <wire from="(170,410)" to="(170,680)"/> <wire from="(3160,710)" to="(3160,1090)"/> <wire from="(2940,730)" to="(3100,730)"/> <wire from="(1540,1110)" to="(1580,1110)"/> <wire from="(3230,1050)" to="(3360,1050)"/> <wire from="(720,70)" to="(720,160)"/> <wire from="(1770,950)" to="(2080,950)"/> <wire from="(660,70)" to="(660,290)"/> <wire from="(4140,1230)" to="(4230,1230)"/> <wire from="(510,150)" to="(610,150)"/> <wire from="(1190,350)" to="(1190,400)"/> <wire from="(790,1020)" to="(810,1020)"/> <wire from="(1930,130)" to="(1930,190)"/> <wire from="(770,250)" to="(770,290)"/> <wire from="(210,70)" to="(210,240)"/> <wire from="(780,360)" to="(810,360)"/> <wire from="(4000,180)" to="(4170,180)"/> <wire from="(460,370)" to="(480,370)"/> <wire from="(4220,1060)" to="(4240,1060)"/> <wire from="(1690,140)" to="(1830,140)"/> <wire from="(1950,350)" to="(2670,350)"/> <wire from="(340,1030)" to="(480,1030)"/> <wire from="(310,550)" to="(310,860)"/> <wire from="(2650,780)" to="(2650,1000)"/> <wire from="(220,460)" to="(230,460)"/> <wire from="(4420,310)" to="(4430,310)"/> <wire from="(750,230)" to="(750,290)"/> <wire from="(3250,440)" to="(3500,440)"/> <wire from="(760,240)" to="(760,290)"/> <wire from="(1170,70)" to="(1170,240)"/> <wire from="(4200,600)" to="(4200,860)"/> <wire from="(3390,680)" to="(4660,680)"/> <wire from="(1170,760)" to="(1190,760)"/> <wire from="(1640,90)" to="(1640,370)"/> <wire from="(1690,140)" to="(1690,420)"/> <wire from="(3770,1010)" to="(3770,1130)"/> <wire from="(3490,340)" to="(3500,340)"/> <wire from="(3390,500)" to="(3390,680)"/> <wire from="(340,350)" to="(390,350)"/> <wire from="(740,220)" to="(740,290)"/> <wire from="(1770,800)" to="(1770,950)"/> <wire from="(1380,760)" to="(1420,760)"/> <wire from="(2180,1020)" to="(2180,1130)"/> <wire from="(720,200)" to="(720,290)"/> <wire from="(3360,200)" to="(3710,200)"/> <wire from="(4630,1230)" to="(4630,1250)"/> <wire from="(1210,1230)" to="(4090,1230)"/> <wire from="(2350,480)" to="(2360,480)"/> <wire from="(1700,150)" to="(1700,420)"/> <wire from="(3070,560)" to="(3080,560)"/> <wire from="(4240,70)" to="(4240,160)"/> <wire from="(730,210)" to="(730,290)"/> <wire from="(2540,160)" to="(2540,410)"/> <wire from="(3520,250)" to="(3520,290)"/> <wire from="(1650,100)" to="(1650,360)"/> <wire from="(1710,160)" to="(1710,420)"/> <wire from="(3650,120)" to="(3650,290)"/> <wire from="(980,840)" to="(980,1050)"/> <wire from="(520,1090)" to="(520,1130)"/> <wire from="(3770,620)" to="(3770,900)"/> <wire from="(70,420)" to="(100,420)"/> <wire from="(700,180)" to="(700,290)"/> <wire from="(3730,1100)" to="(3730,1130)"/> <wire from="(340,370)" to="(370,370)"/> <wire from="(1780,1070)" to="(1780,1130)"/> <wire from="(1170,580)" to="(1180,580)"/> <wire from="(1640,90)" to="(1650,90)"/> <wire from="(710,190)" to="(710,290)"/> <wire from="(1660,110)" to="(1660,420)"/> <wire from="(2590,1060)" to="(2710,1060)"/> <wire from="(840,130)" to="(840,190)"/> <wire from="(2380,390)" to="(2380,410)"/> <wire from="(2620,210)" to="(2790,210)"/> <wire from="(690,170)" to="(690,290)"/> <wire from="(1060,1090)" to="(1090,1090)"/> <wire from="(1670,120)" to="(1670,420)"/> <wire from="(1680,130)" to="(1680,420)"/> <wire from="(1060,790)" to="(1060,1090)"/> <wire from="(1480,1090)" to="(1480,1130)"/> <wire from="(4090,1210)" to="(4220,1210)"/> <wire from="(3650,120)" to="(3790,120)"/> <wire from="(1230,70)" to="(1230,220)"/> <wire from="(630,1090)" to="(680,1090)"/> <wire from="(3150,70)" to="(3150,240)"/> <wire from="(670,150)" to="(670,290)"/> <wire from="(680,160)" to="(680,290)"/> <wire from="(4360,70)" to="(4360,80)"/> <wire from="(940,1070)" to="(1000,1070)"/> <wire from="(4240,1230)" to="(4240,1240)"/> <wire from="(120,270)" to="(490,270)"/> <wire from="(600,110)" to="(640,110)"/> <wire from="(4420,700)" to="(4420,910)"/> <wire from="(270,70)" to="(270,220)"/> <wire from="(4030,170)" to="(4180,170)"/> <wire from="(3670,130)" to="(4150,130)"/> <wire from="(3190,370)" to="(3190,410)"/> <wire from="(3000,1070)" to="(3140,1070)"/> <wire from="(3220,710)" to="(3220,1070)"/> <wire from="(2340,160)" to="(2540,160)"/> <wire from="(830,440)" to="(830,520)"/> <wire from="(1510,220)" to="(1510,420)"/> <wire from="(2550,120)" to="(2610,120)"/> <wire from="(3360,1050)" to="(3360,1130)"/> <wire from="(1440,160)" to="(1570,160)"/> <wire from="(3470,720)" to="(4720,720)"/> <wire from="(2190,70)" to="(2190,210)"/> <wire from="(1580,800)" to="(1580,1110)"/> <wire from="(780,70)" to="(780,170)"/> <wire from="(510,250)" to="(510,290)"/> <wire from="(3490,1060)" to="(3550,1060)"/> <wire from="(4200,860)" to="(4200,1130)"/> <wire from="(4280,950)" to="(4280,1000)"/> <wire from="(3170,150)" to="(3170,410)"/> <wire from="(4510,1180)" to="(4510,1230)"/> <wire from="(540,140)" to="(620,140)"/> <wire from="(4130,220)" to="(4130,290)"/> <wire from="(3460,140)" to="(3580,140)"/> <wire from="(1170,700)" to="(1190,700)"/> <wire from="(2200,700)" to="(2360,700)"/> <wire from="(610,460)" to="(610,1110)"/> <wire from="(1310,690)" to="(1420,690)"/> <wire from="(290,1010)" to="(470,1010)"/> <wire from="(100,610)" to="(100,620)"/> <wire from="(3940,1040)" to="(3960,1040)"/> <wire from="(1630,380)" to="(2390,380)"/> <wire from="(2020,990)" to="(2020,1130)"/> <wire from="(4710,1250)" to="(4710,1270)"/> <wire from="(390,1050)" to="(500,1050)"/> <wire from="(2350,740)" to="(2360,740)"/> <wire from="(2410,360)" to="(2410,410)"/> <wire from="(3570,620)" to="(3570,780)"/> <wire from="(3470,560)" to="(3500,560)"/> <wire from="(120,630)" to="(120,650)"/> <wire from="(4260,600)" to="(4260,880)"/> <wire from="(2250,70)" to="(2250,190)"/> <wire from="(4380,1240)" to="(4380,1270)"/> <wire from="(3370,540)" to="(3370,970)"/> <wire from="(3210,70)" to="(3210,150)"/> <wire from="(920,580)" to="(940,580)"/> <wire from="(70,360)" to="(100,360)"/> <wire from="(4300,70)" to="(4300,170)"/> <wire from="(1800,70)" to="(1800,130)"/> <wire from="(1170,520)" to="(1180,520)"/> <wire from="(2700,70)" to="(2700,200)"/> <wire from="(2080,600)" to="(2220,600)"/> <wire from="(4430,200)" to="(4430,310)"/> <wire from="(840,70)" to="(840,130)"/> <wire from="(4280,1000)" to="(4360,1000)"/> <wire from="(4510,850)" to="(4520,850)"/> <wire from="(340,330)" to="(350,330)"/> <wire from="(3950,420)" to="(3950,690)"/> <wire from="(140,390)" to="(140,570)"/> <wire from="(710,570)" to="(710,940)"/> <wire from="(4000,1060)" to="(4060,1060)"/> <wire from="(3450,520)" to="(3500,520)"/> <wire from="(4180,1240)" to="(4240,1240)"/> <wire from="(2760,70)" to="(2760,90)"/> <comp lib="0" loc="(4480,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/V_OUT"/> </comp> <comp lib="0" loc="(2350,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(920,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/C"/> </comp> <comp lib="0" loc="(1020,120)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="T2"/> </comp> <comp lib="0" loc="(3810,320)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(600,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X15"/> <a name="labelloc" val="north"/> </comp> <comp loc="(340,330)" name="INT_RESET_CONTROL"> <a name="label" val="int_control"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(4420,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB0"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3530,290)" name="DISPATCH"/> <comp lib="0" loc="(1140,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X31"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(920,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/I"/> </comp> <comp lib="0" loc="(330,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(270,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1900,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ADD/SB06"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1410,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(2790,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X81"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4720,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(4330,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X128"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2340,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(3810,380)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(2880,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/ADH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4490,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(230,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(3970,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X117"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3180,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X93"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1240,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="DB/ADD"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4030,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X119"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1100,1090)" name="Tunnel"> <a name="label" val="/Z_OUT"/> </comp> <comp loc="(2460,410)" name="BUS_CONTROL"/> <comp lib="0" loc="(4120,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/V"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(210,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(4180,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X123"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1980,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X57"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4210,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X124"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1350,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X38"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(70,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/NMIP"/> </comp> <comp lib="0" loc="(3070,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR0"/> </comp> <comp lib="0" loc="(3090,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X90"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1180,500)" name="Tunnel"> <a name="label" val="DB/C"/> </comp> <comp lib="0" loc="(2160,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X62"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4080,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/D"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2580,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X75"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(210,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2600,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AC/SB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1180,660)" name="Tunnel"> <a name="label" val="ACR/C"/> </comp> <comp lib="0" loc="(4180,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4320,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/C"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2350,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(3070,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4200,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DBZ/Z"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1500,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X42"/> <a name="labelloc" val="north"/> </comp> <comp loc="(370,830)" name="INT_VECTOR_Logic"> <a name="label" val="int_vector"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2640,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X77"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2040,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X59"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4720,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FETCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(4140,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2280,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X66"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(300,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1410,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(3120,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X91"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(70,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(3640,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X107"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4480,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4630,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(390,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X9"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4270,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X126"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1110,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X30"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(930,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(3000,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X88"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3300,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X97"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2340,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(960,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X26"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3150,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X92"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(990,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X27"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(290,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3670,1090)" name="Tunnel"> <a name="facing" val="south"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(4090,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X120"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1075,207)" name="Text"> <a name="text" val="STK2"/> <a name="font" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2610,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X76"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2340,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(3580,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X105"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1590,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X45"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2250,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1800,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X51"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4040,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/C"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2340,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T2"/> </comp> <comp lib="0" loc="(930,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X25"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1200,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X33"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2020,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="/DSA"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4550,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4510,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(2460,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X71"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4300,930)" name="Tunnel"> <a name="label" val="DB/P"/> </comp> <comp lib="0" loc="(3330,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X98"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3570,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ENDX"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(4510,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4750,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(720,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X19"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(680,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/ADL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3730,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T1X"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1410,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(4300,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1410,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(4340,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1720,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="SUMS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(470,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1410,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(780,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X20"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(340,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1440,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X40"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2760,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X80"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2490,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X72"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(120,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1540,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="EORS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4700,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(270,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1100,1070)" name="Tunnel"> <a name="label" val="/N_OUT"/> </comp> <comp lib="0" loc="(4720,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(4510,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(240,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(570,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X14"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3490,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(3300,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3700,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X109"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1050,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X29"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3880,460)" name="Tunnel"> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(4480,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(3180,90)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(3070,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/READY"/> </comp> <comp lib="0" loc="(4710,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(810,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X21"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4720,720)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="RDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(780,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/S"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(520,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/Y"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4720,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3490,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(2970,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X87"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1650,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X47"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2460,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADL/ABL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3690,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="T1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2710,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADH17"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1170,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X32"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1470,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X41"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(150,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3490,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/IR"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4300,880)" name="Tunnel"> <a name="label" val="DB/C"/> </comp> <comp lib="0" loc="(1840,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ADD/SB7"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(2170,470)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(1890,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X54"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(3850,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X113"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3210,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X94"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1100,1050)" name="Tunnel"> <a name="label" val="/C_OUT"/> </comp> <comp lib="0" loc="(4000,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/I"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X22"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2550,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X74"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(470,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="X/SB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2130,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X61"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1710,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X49"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4300,840)" name="Tunnel"> <a name="label" val="ACR/C"/> </comp> <comp lib="0" loc="(1620,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X46"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3270,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X96"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2760,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AC/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4670,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4720,750)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/PRDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(4790,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3810,360)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(4360,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/V"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1180,580)" name="Tunnel"> <a name="label" val="DBZ/Z"/> </comp> <comp lib="0" loc="(1290,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X36"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3490,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X102"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3810,340)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(3430,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X100"/> <a name="labelloc" val="north"/> </comp> <comp loc="(4520,830)" name="EXTENDED_CYCLE_COUNTER"/> <comp lib="0" loc="(920,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/IR5"/> </comp> <comp lib="0" loc="(4300,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X127"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(360,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X8"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(70,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AVR"/> </comp> <comp lib="0" loc="(3490,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(3490,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(2910,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X85"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3790,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X111"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1860,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X53"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2810,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/SB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3460,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X101"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(510,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X12"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3030,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X89"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3880,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X114"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1230,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X34"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4510,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(70,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(2010,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X58"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3940,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X116"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1960,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ADD/ADL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4220,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3550,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X104"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4280,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/P"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(240,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(730,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/S"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2670,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X78"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1410,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(2340,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(4260,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3650,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TRES1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3610,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X106"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4480,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/N_OUT"/> </comp> <comp lib="0" loc="(2100,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X60"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3180,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4480,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="0" loc="(2430,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X70"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3360,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X99"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1076,96)" name="Text"> <a name="text" val="JSR2"/> <a name="font" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1040,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/N_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4160,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ACR/C"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2760,90)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(920,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/D"/> </comp> <comp loc="(3090,410)" name="PC_SETUP"/> <comp lib="0" loc="(2310,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X67"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1020,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X28"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4000,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X118"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1830,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X52"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(930,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4590,1270)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="DB5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4150,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X122"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(4010,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4720,690)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IMPLIED"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2660,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADH0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2190,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X63"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1260,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X35"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3450,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#TRESX"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(350,330)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(2700,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X79"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1100,1030)" name="Tunnel"> <a name="label" val="/V_OUT"/> </comp> <comp lib="0" loc="(4020,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0/V"/> </comp> <comp lib="0" loc="(480,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X11"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(890,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/I_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4720,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(690,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X18"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(930,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="P/DB"/> </comp> <comp lib="0" loc="(2940,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X86"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1090,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/Z_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X65"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4020,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/C"/> </comp> <comp lib="0" loc="(4480,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/Z_OUT"/> </comp> <comp lib="0" loc="(990,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/C_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3490,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(3000,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4000,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(1600,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ORS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3530,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ENDS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1180,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="NDB/ADD"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(2154,510)" name="Text"> <a name="text" val="Branch T0 Skip"/> </comp> <comp lib="0" loc="(4600,1210)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2220,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X64"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3850,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#1/PC"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2820,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X82"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1410,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(3060,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(940,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/D_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(900,770)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3960,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="P/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2850,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X83"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(470,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1920,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X55"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2320,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/ADH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3670,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X108"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(4390,83)" name="Text"> <a name="text" val="Push/pull"/> </comp> <comp loc="(500,460)" name="REGS_CONTROL"> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2940,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X17"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(870,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X23"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4720,60)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X10"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2350,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(540,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X13"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(4020,1020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/I"/> </comp> <comp lib="0" loc="(4720,100)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2340,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(2350,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(1210,770)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3240,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X95"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1420,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ADL/ADD"/> <a name="labelloc" val="south"/> </comp> <comp loc="(4120,290)" name="FLAGS_CONTROL"/> <comp lib="0" loc="(1180,560)" name="Tunnel"> <a name="label" val="DB/P"/> </comp> <comp lib="0" loc="(1660,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="/ACIN"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3770,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TRES2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4020,1000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5/D"/> </comp> <comp lib="0" loc="(4300,950)" name="Tunnel"> <a name="label" val="DB/V"/> </comp> <comp lib="0" loc="(120,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(2520,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X73"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2340,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X68"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1410,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(4360,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X129"/> <a name="labelloc" val="north"/> </comp> <comp loc="(960,370)" name="FLAGS"/> <comp lib="0" loc="(4720,200)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/IR5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(4120,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X121"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1770,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X50"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1530,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X43"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(630,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X16"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1780,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="/DAA"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1360,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="SB/ADD"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(748,112)" name="Text"> <a name="text" val="BRK5"/> <a name="valign" val="top"/> </comp> <comp lib="0" loc="(4420,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/IR5"/> </comp> <comp lib="0" loc="(4720,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(4720,660)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="/TWOCYCLE"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1950,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X56"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(840,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/V_OUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4300,980)" name="Tunnel"> <a name="label" val="DB/N"/> </comp> <comp lib="0" loc="(1180,520)" name="Tunnel"> <a name="label" val="DB/V"/> </comp> <comp lib="0" loc="(3520,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X103"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3360,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1560,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X44"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2390,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADH/ABH"/> <a name="labelloc" val="south"/> </comp> <comp loc="(4500,250)" name="BRANCH_LOGIC"> <a name="label" val="BRANCH_LOGIC"/> </comp> <comp lib="0" loc="(4700,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4300,860)" name="Tunnel"> <a name="label" val="DBZ/Z"/> </comp> <comp loc="(1430,420)" name="ALU_SETUP"/> <comp lib="0" loc="(1380,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X39"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(3120,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1410,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(910,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0/V"/> </comp> <comp lib="0" loc="(4380,1270)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(70,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IRQP"/> </comp> <comp lib="0" loc="(2370,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X69"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3910,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X115"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2080,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="SRS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4480,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(390,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Y/SB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3240,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3760,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X110"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1180,540)" name="Tunnel"> <a name="label" val="DB/N"/> </comp> <comp lib="0" loc="(4240,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/N"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(4720,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(900,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X24"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1680,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X48"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1320,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X37"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2350,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(2880,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X84"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1300,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="0/ADD"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2180,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/ADL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1480,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ANDS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2200,470)" name="Tunnel"> <a name="label" val="BR0"/> </comp> <comp lib="0" loc="(570,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/X"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(910,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(3940,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="P/DB"/> </comp> <comp lib="0" loc="(4220,1210)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(4240,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X125"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3820,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="X112"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2530,1130)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/AC"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3070,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> </circuit> <circuit name="NMI_FF"> <a name="circuit" val="NMI_FF"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <wire from="(170,60)" to="(200,60)"/> <wire from="(430,70)" to="(430,170)"/> <wire from="(270,70)" to="(430,70)"/> <wire from="(160,250)" to="(220,250)"/> <wire from="(270,240)" to="(300,240)"/> <wire from="(170,60)" to="(170,230)"/> <wire from="(220,80)" to="(220,250)"/> <wire from="(480,240)" to="(500,240)"/> <wire from="(310,130)" to="(310,170)"/> <wire from="(410,130)" to="(410,170)"/> <wire from="(220,60)" to="(240,60)"/> <wire from="(220,80)" to="(240,80)"/> <wire from="(220,250)" to="(240,250)"/> <wire from="(160,60)" to="(170,60)"/> <wire from="(170,230)" to="(240,230)"/> <wire from="(310,130)" to="(410,130)"/> <wire from="(420,210)" to="(420,240)"/> <wire from="(320,240)" to="(420,240)"/> <wire from="(300,210)" to="(300,240)"/> <wire from="(320,210)" to="(320,240)"/> <wire from="(420,240)" to="(460,240)"/> <comp lib="0" loc="(160,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(310,170)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,70)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,240)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(220,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/NMI"/> </comp> <comp lib="0" loc="(500,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NMIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(480,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,210)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="INT_RESET_CONTROL"> <a name="circuit" val="INT_RESET_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#1870ff" height="130" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="74">BRK6E</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="94">BRK7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="107" y="114">/DONMI</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="107" y="134">DORES</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="153">B_OUT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="173">BR2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="163">T0</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="153">/I_OUT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="143">/IRQP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="133">RESP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="123">/NMIP</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="113">/ready</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="104">BRK5</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="64">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="103" y="173">BRK5RDY</text> <circ-port height="8" pin="90,20" width="8" x="46" y="56"/> <circ-port height="8" pin="90,60" width="8" x="46" y="66"/> <circ-port height="8" pin="90,160" width="8" x="46" y="106"/> <circ-port height="8" pin="90,110" width="8" x="46" y="96"/> <circ-port height="8" pin="90,710" width="8" x="46" y="116"/> <circ-port height="8" pin="90,340" width="8" x="46" y="126"/> <circ-port height="10" pin="750,150" width="10" x="125" y="65"/> <circ-port height="10" pin="750,230" width="10" x="125" y="85"/> <circ-port height="10" pin="750,940" width="10" x="125" y="105"/> <circ-port height="10" pin="750,360" width="10" x="125" y="125"/> <circ-port height="10" pin="750,1290" width="10" x="125" y="145"/> <circ-port height="8" pin="90,1120" width="8" x="46" y="136"/> <circ-port height="8" pin="90,1160" width="8" x="46" y="146"/> <circ-port height="8" pin="90,1090" width="8" x="46" y="156"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="166"/> <circ-port height="10" pin="750,310" width="10" x="125" y="165"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(270,1350)" to="(650,1350)"/> <wire from="(90,1050)" to="(470,1050)"/> <wire from="(230,820)" to="(290,820)"/> <wire from="(630,230)" to="(680,230)"/> <wire from="(510,610)" to="(510,740)"/> <wire from="(230,850)" to="(540,850)"/> <wire from="(570,240)" to="(570,310)"/> <wire from="(370,370)" to="(370,390)"/> <wire from="(610,1300)" to="(650,1300)"/> <wire from="(410,170)" to="(410,190)"/> <wire from="(410,130)" to="(410,150)"/> <wire from="(440,560)" to="(440,580)"/> <wire from="(540,850)" to="(540,940)"/> <wire from="(650,1300)" to="(690,1300)"/> <wire from="(120,160)" to="(120,180)"/> <wire from="(550,140)" to="(550,220)"/> <wire from="(240,150)" to="(240,240)"/> <wire from="(460,690)" to="(460,780)"/> <wire from="(370,940)" to="(410,940)"/> <wire from="(450,1140)" to="(540,1140)"/> <wire from="(90,110)" to="(120,110)"/> <wire from="(550,220)" to="(570,220)"/> <wire from="(570,240)" to="(590,240)"/> <wire from="(630,540)" to="(650,540)"/> <wire from="(450,950)" to="(480,950)"/> <wire from="(370,350)" to="(400,350)"/> <wire from="(370,710)" to="(400,710)"/> <wire from="(460,570)" to="(480,570)"/> <wire from="(470,140)" to="(490,140)"/> <wire from="(460,930)" to="(480,930)"/> <wire from="(90,1160)" to="(300,1160)"/> <wire from="(230,580)" to="(440,580)"/> <wire from="(680,230)" to="(750,230)"/> <wire from="(480,120)" to="(490,120)"/> <wire from="(280,800)" to="(290,800)"/> <wire from="(280,960)" to="(290,960)"/> <wire from="(280,320)" to="(290,320)"/> <wire from="(370,740)" to="(510,740)"/> <wire from="(330,690)" to="(340,690)"/> <wire from="(320,1160)" to="(330,1160)"/> <wire from="(370,890)" to="(370,940)"/> <wire from="(650,940)" to="(650,1180)"/> <wire from="(710,150)" to="(720,150)"/> <wire from="(680,280)" to="(690,280)"/> <wire from="(540,1100)" to="(550,1100)"/> <wire from="(580,540)" to="(590,540)"/> <wire from="(230,580)" to="(230,710)"/> <wire from="(570,310)" to="(750,310)"/> <wire from="(230,710)" to="(290,710)"/> <wire from="(230,910)" to="(290,910)"/> <wire from="(370,620)" to="(370,640)"/> <wire from="(330,1140)" to="(330,1160)"/> <wire from="(270,1270)" to="(270,1350)"/> <wire from="(650,940)" to="(750,940)"/> <wire from="(540,940)" to="(650,940)"/> <wire from="(330,390)" to="(370,390)"/> <wire from="(460,360)" to="(550,360)"/> <wire from="(90,160)" to="(120,160)"/> <wire from="(520,400)" to="(540,400)"/> <wire from="(530,1250)" to="(550,1250)"/> <wire from="(520,1080)" to="(540,1080)"/> <wire from="(550,1310)" to="(570,1310)"/> <wire from="(730,1290)" to="(750,1290)"/> <wire from="(270,1270)" to="(290,1270)"/> <wire from="(720,150)" to="(750,150)"/> <wire from="(330,1250)" to="(350,1250)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(410,170)" to="(430,170)"/> <wire from="(460,780)" to="(480,780)"/> <wire from="(340,220)" to="(550,220)"/> <wire from="(470,1070)" to="(490,1070)"/> <wire from="(370,1220)" to="(370,1260)"/> <wire from="(90,1120)" to="(360,1120)"/> <wire from="(390,800)" to="(400,800)"/> <wire from="(280,530)" to="(290,530)"/> <wire from="(280,690)" to="(290,690)"/> <wire from="(280,890)" to="(290,890)"/> <wire from="(520,560)" to="(590,560)"/> <wire from="(280,130)" to="(290,130)"/> <wire from="(280,1250)" to="(290,1250)"/> <wire from="(90,1090)" to="(490,1090)"/> <wire from="(350,1280)" to="(360,1280)"/> <wire from="(330,960)" to="(410,960)"/> <wire from="(90,710)" to="(230,710)"/> <wire from="(650,1300)" to="(650,1350)"/> <wire from="(90,340)" to="(290,340)"/> <wire from="(370,1220)" to="(620,1220)"/> <wire from="(520,790)" to="(560,790)"/> <wire from="(340,200)" to="(340,220)"/> <wire from="(630,140)" to="(670,140)"/> <wire from="(120,180)" to="(360,180)"/> <wire from="(470,1050)" to="(470,1070)"/> <wire from="(650,540)" to="(650,890)"/> <wire from="(570,140)" to="(570,220)"/> <wire from="(460,360)" to="(460,390)"/> <wire from="(350,1250)" to="(350,1280)"/> <wire from="(370,710)" to="(370,740)"/> <wire from="(540,1080)" to="(540,1100)"/> <wire from="(540,1120)" to="(540,1140)"/> <wire from="(330,320)" to="(370,320)"/> <wire from="(560,640)" to="(560,790)"/> <wire from="(550,1250)" to="(550,1290)"/> <wire from="(530,140)" to="(550,140)"/> <wire from="(570,140)" to="(590,140)"/> <wire from="(570,220)" to="(590,220)"/> <wire from="(450,410)" to="(480,410)"/> <wire from="(670,1280)" to="(690,1280)"/> <wire from="(370,370)" to="(400,370)"/> <wire from="(620,1110)" to="(620,1220)"/> <wire from="(440,610)" to="(460,610)"/> <wire from="(370,1260)" to="(390,1260)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(440,690)" to="(460,690)"/> <wire from="(590,1110)" to="(620,1110)"/> <wire from="(220,150)" to="(240,150)"/> <wire from="(330,550)" to="(480,550)"/> <wire from="(390,690)" to="(400,690)"/> <wire from="(380,1280)" to="(390,1280)"/> <wire from="(460,160)" to="(470,160)"/> <wire from="(280,980)" to="(290,980)"/> <wire from="(180,160)" to="(190,160)"/> <wire from="(270,470)" to="(540,470)"/> <wire from="(270,410)" to="(270,470)"/> <wire from="(660,160)" to="(670,160)"/> <wire from="(420,1270)" to="(490,1270)"/> <wire from="(580,120)" to="(590,120)"/> <wire from="(540,1120)" to="(550,1120)"/> <wire from="(230,850)" to="(230,910)"/> <wire from="(330,820)" to="(400,820)"/> <wire from="(400,1180)" to="(650,1180)"/> <wire from="(340,600)" to="(400,600)"/> <wire from="(370,640)" to="(560,640)"/> <wire from="(460,890)" to="(650,890)"/> <wire from="(460,610)" to="(510,610)"/> <wire from="(240,150)" to="(290,150)"/> <wire from="(540,400)" to="(540,470)"/> <wire from="(120,180)" to="(120,260)"/> <wire from="(670,360)" to="(670,1280)"/> <wire from="(470,140)" to="(470,160)"/> <wire from="(570,360)" to="(670,360)"/> <wire from="(400,1150)" to="(400,1180)"/> <wire from="(120,160)" to="(160,160)"/> <wire from="(370,320)" to="(370,350)"/> <wire from="(230,820)" to="(230,850)"/> <wire from="(330,890)" to="(370,890)"/> <wire from="(330,130)" to="(370,130)"/> <wire from="(440,560)" to="(480,560)"/> <wire from="(440,800)" to="(480,800)"/> <wire from="(120,110)" to="(120,140)"/> <wire from="(340,600)" to="(340,690)"/> <wire from="(720,150)" to="(720,190)"/> <wire from="(90,20)" to="(120,20)"/> <wire from="(90,60)" to="(120,60)"/> <wire from="(520,940)" to="(540,940)"/> <wire from="(550,1290)" to="(570,1290)"/> <wire from="(120,260)" to="(660,260)"/> <wire from="(370,620)" to="(400,620)"/> <wire from="(330,1140)" to="(360,1140)"/> <wire from="(270,410)" to="(290,410)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(390,130)" to="(410,130)"/> <wire from="(410,150)" to="(430,150)"/> <wire from="(390,1130)" to="(410,1130)"/> <wire from="(470,1250)" to="(490,1250)"/> <wire from="(660,160)" to="(660,260)"/> <wire from="(460,570)" to="(460,610)"/> <wire from="(460,890)" to="(460,930)"/> <wire from="(400,190)" to="(410,190)"/> <wire from="(400,1150)" to="(410,1150)"/> <wire from="(280,550)" to="(290,550)"/> <wire from="(280,390)" to="(290,390)"/> <wire from="(240,240)" to="(570,240)"/> <wire from="(680,230)" to="(680,280)"/> <wire from="(670,360)" to="(750,360)"/> <wire from="(120,140)" to="(190,140)"/> <wire from="(720,190)" to="(730,190)"/> <comp lib="1" loc="(460,160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(750,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BRK5_RDY"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(420,1270)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(580,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(750,1290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="B_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(436,298)" name="Text"> <a name="text" val="RESET FLIP/FLOP"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="1" loc="(390,1130)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,1080)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(330,400)" name="D_Latch"> <a name="label" val="res_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(440,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(436,1213)" name="Text"> <a name="text" val="B FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="0" loc="(280,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(574,1174)" name="Text"> <a name="text" val="/DONMI"/> </comp> <comp lib="6" loc="(427,1328)" name="Text"> <a name="text" val="B_FF"/> </comp> <comp lib="6" loc="(478,207)" name="Text"> <a name="text" val="BRK_FF"/> </comp> <comp lib="0" loc="(280,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp loc="(530,1260)" name="D_Latch"> <a name="label" val="b_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(450,1140)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,280)" name="Tunnel"> <a name="label" val="BRK7"/> </comp> <comp lib="0" loc="(750,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BRK7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(412,875)" name="Text"> <a name="text" val="NMI_FF1"/> </comp> <comp lib="0" loc="(280,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(520,790)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(522,756)" name="Text"> <a name="text" val="NMI_FF2"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK5"/> </comp> <comp lib="0" loc="(280,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK7"/> </comp> <comp loc="(630,130)" name="D_Latch"> <a name="label" val="brk6_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp loc="(330,900)" name="D_Latch"> <a name="label" val="ff1_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(280,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp loc="(440,810)" name="D_Latch"> <a name="label" val="delay_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(590,1110)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,190)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(390,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(402,452)" name="Text"> <a name="text" val="RES_FF"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(280,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(470,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(750,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/DONMI"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(450,950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(441,78)" name="Text"> <a name="text" val="INTERRUPT CYCLE 6-7"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp loc="(330,1260)" name="D_Latch"> <a name="label" val="b_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(710,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/NMIP"/> </comp> <comp lib="0" loc="(90,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T0"/> </comp> <comp loc="(330,330)" name="D_Latch"> <a name="label" val="res_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IRQP"/> </comp> <comp lib="6" loc="(341,1116)" name="Text"> <a name="text" val="/IRQP"/> </comp> <comp lib="0" loc="(580,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(445,1045)" name="Text"> <a name="text" val="BR2"/> </comp> <comp lib="1" loc="(520,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(530,130)" name="D_Latch"> <a name="label" val="brk6_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(330,540)" name="D_Latch"> <a name="label" val="brk7_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(427,1029)" name="Text"> <a name="text" val="INTERRUPT CHECK"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="1" loc="(400,190)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(330,700)" name="D_Latch"> <a name="label" val="nmip_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(330,810)" name="D_Latch"> <a name="label" val="delay_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(220,150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(330,970)" name="D_Latch"> <a name="label" val="brk6e_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="6" loc="(443,1086)" name="Text"> <a name="text" val="T0"/> </comp> <comp lib="1" loc="(730,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(180,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,60)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(199,701)" name="Text"> <a name="text" val="/NMIP"/> </comp> <comp lib="1" loc="(380,1280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(440,700)" name="D_Latch"> <a name="label" val="ff2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp loc="(330,140)" name="D_Latch"> <a name="label" val="brk5_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(523,842)" name="Text"> <a name="text" val="/DONMI"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(750,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DORES"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(520,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(120,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(320,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(750,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BRK6E"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(440,513)" name="Text"> <a name="text" val="NMI EDGE DETECT"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="1" loc="(520,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(450,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(280,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/I_OUT"/> </comp> <comp lib="1" loc="(570,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(280,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(390,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp loc="(630,550)" name="D_Latch"> <a name="label" val="donmi_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> </circuit> <circuit name="INT_VECTOR_Logic"> <a name="circuit" val="INT_VECTOR_Logic"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#2472ff" height="85" stroke="#000000" stroke-width="2" width="80" x="50" y="55"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="83">BRK5RDY</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="93">BRK7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="103">DORES</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="113">/DONMI</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="73">0/ADL0</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="94">0/ADL1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="113">0/ADL2</text> <circ-port height="8" pin="90,100" width="8" x="46" y="66"/> <circ-port height="8" pin="90,150" width="8" x="46" y="76"/> <circ-port height="8" pin="90,190" width="8" x="46" y="86"/> <circ-port height="8" pin="90,230" width="8" x="46" y="96"/> <circ-port height="8" pin="90,300" width="8" x="46" y="106"/> <circ-port height="10" pin="460,150" width="10" x="125" y="65"/> <circ-port height="10" pin="460,220" width="10" x="125" y="85"/> <circ-port height="10" pin="460,290" width="10" x="125" y="105"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(300,220)" to="(360,220)"/> <wire from="(400,150)" to="(460,150)"/> <wire from="(400,220)" to="(460,220)"/> <wire from="(340,130)" to="(340,200)"/> <wire from="(340,200)" to="(340,270)"/> <wire from="(180,210)" to="(180,280)"/> <wire from="(90,100)" to="(340,100)"/> <wire from="(90,300)" to="(210,300)"/> <wire from="(160,230)" to="(210,230)"/> <wire from="(250,150)" to="(360,150)"/> <wire from="(250,290)" to="(360,290)"/> <wire from="(180,190)" to="(180,210)"/> <wire from="(340,100)" to="(340,130)"/> <wire from="(180,210)" to="(210,210)"/> <wire from="(180,280)" to="(210,280)"/> <wire from="(250,220)" to="(280,220)"/> <wire from="(90,230)" to="(120,230)"/> <wire from="(120,290)" to="(210,290)"/> <wire from="(90,190)" to="(180,190)"/> <wire from="(340,130)" to="(360,130)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(340,270)" to="(360,270)"/> <wire from="(440,290)" to="(460,290)"/> <wire from="(400,290)" to="(420,290)"/> <wire from="(120,230)" to="(140,230)"/> <wire from="(90,150)" to="(230,150)"/> <wire from="(120,230)" to="(120,290)"/> <comp lib="1" loc="(160,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK7"/> </comp> <comp loc="(400,280)" name="D_Latch"> <a name="label" val="zadl2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(436,42)" name="Text"> <a name="text" val="FFFC:RESET, 1100"/> </comp> <comp lib="1" loc="(440,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK5_RDY"/> </comp> <comp lib="6" loc="(426,21)" name="Text"> <a name="text" val="FFFA:NMI, 1010"/> </comp> <comp lib="1" loc="(250,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(400,210)" name="D_Latch"> <a name="label" val="zadl1_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DONMI"/> </comp> <comp lib="1" loc="(250,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(460,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(460,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp loc="(400,140)" name="D_Latch"> <a name="label" val="zadl0_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(460,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(440,64)" name="Text"> <a name="text" val="FFFE:IRQ/BRK, 1110"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DORES"/> </comp> <comp lib="1" loc="(300,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="REGS_CONTROL"> <a name="circuit" val="REGS_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ff338b" height="170" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="202" y="138">REGS_CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="133">STOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="154">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="323" y="155">#SBXY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="327" y="184">STXY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="322" y="125">STKOP</text> <circ-port height="8" pin="90,990" width="8" x="46" y="146"/> <circ-port height="8" pin="90,40" width="8" x="46" y="76"/> <circ-port height="8" pin="90,100" width="8" x="46" y="126"/> <circ-port height="10" pin="900,230" width="10" x="65" y="215"/> <circ-port height="10" pin="900,420" width="10" x="85" y="215"/> <circ-port height="10" pin="900,1020" width="10" x="195" y="215"/> <circ-port height="10" pin="900,770" width="10" x="215" y="215"/> <circ-port height="10" pin="900,840" width="10" x="235" y="215"/> <circ-port height="10" pin="900,330" width="10" x="345" y="175"/> <circ-port height="10" pin="900,640" width="10" x="345" y="145"/> <circ-port height="10" pin="900,880" width="10" x="345" y="115"/> <circ-port height="8" pin="90,140" width="8" x="56" y="46"/> <circ-port height="8" pin="90,170" width="8" x="66" y="46"/> <circ-port height="8" pin="90,200" width="8" x="76" y="46"/> <circ-port height="8" pin="90,230" width="8" x="86" y="46"/> <circ-port height="8" pin="90,260" width="8" x="96" y="46"/> <circ-port height="8" pin="90,290" width="8" x="106" y="46"/> <circ-port height="8" pin="90,320" width="8" x="116" y="46"/> <circ-port height="8" pin="90,350" width="8" x="126" y="46"/> <circ-port height="8" pin="90,380" width="8" x="136" y="46"/> <circ-port height="8" pin="90,410" width="8" x="146" y="46"/> <circ-port height="8" pin="90,440" width="8" x="156" y="46"/> <circ-port height="8" pin="90,470" width="8" x="166" y="46"/> <circ-port height="8" pin="90,500" width="8" x="176" y="46"/> <circ-port height="8" pin="90,530" width="8" x="186" y="46"/> <circ-port height="8" pin="90,560" width="8" x="196" y="46"/> <circ-port height="8" pin="90,590" width="8" x="206" y="46"/> <circ-port height="8" pin="90,620" width="8" x="216" y="46"/> <circ-port height="8" pin="90,650" width="8" x="226" y="46"/> <circ-port height="8" pin="90,680" width="8" x="236" y="46"/> <circ-port height="8" pin="90,710" width="8" x="246" y="46"/> <circ-port height="8" pin="90,740" width="8" x="256" y="46"/> <circ-port height="8" pin="90,770" width="8" x="266" y="46"/> <circ-port height="8" pin="90,800" width="8" x="276" y="46"/> <circ-port height="8" pin="90,830" width="8" x="286" y="46"/> <circ-port height="8" pin="90,860" width="8" x="296" y="46"/> <circ-port height="8" pin="90,890" width="8" x="306" y="46"/> <circ-port height="8" pin="90,920" width="8" x="316" y="46"/> <circ-port height="8" pin="90,950" width="8" x="326" y="46"/> <circ-port height="10" pin="900,580" width="10" x="155" y="215"/> <circ-port height="10" pin="900,700" width="10" x="135" y="215"/> <circ-port height="10" pin="900,520" width="10" x="175" y="215"/> <circ-port height="8" pin="90,1050" width="8" x="336" y="46"/> <circ-port height="8" pin="90,70" width="8" x="46" y="96"/> <circ-anchor facing="east" height="6" width="6" x="67" y="217"/> </appear> <wire from="(560,1020)" to="(680,1020)"/> <wire from="(310,370)" to="(310,500)"/> <wire from="(660,690)" to="(660,760)"/> <wire from="(230,310)" to="(280,310)"/> <wire from="(90,650)" to="(140,650)"/> <wire from="(370,850)" to="(370,870)"/> <wire from="(120,200)" to="(120,220)"/> <wire from="(130,300)" to="(170,300)"/> <wire from="(130,870)" to="(160,870)"/> <wire from="(170,350)" to="(200,350)"/> <wire from="(830,700)" to="(850,700)"/> <wire from="(450,780)" to="(450,1010)"/> <wire from="(90,830)" to="(120,830)"/> <wire from="(660,690)" to="(680,690)"/> <wire from="(320,910)" to="(340,910)"/> <wire from="(90,680)" to="(110,680)"/> <wire from="(360,360)" to="(360,400)"/> <wire from="(480,140)" to="(480,310)"/> <wire from="(110,700)" to="(130,700)"/> <wire from="(720,830)" to="(790,830)"/> <wire from="(310,350)" to="(320,350)"/> <wire from="(350,310)" to="(360,310)"/> <wire from="(480,780)" to="(480,960)"/> <wire from="(740,240)" to="(740,430)"/> <wire from="(280,360)" to="(280,410)"/> <wire from="(830,1020)" to="(900,1020)"/> <wire from="(600,780)" to="(680,780)"/> <wire from="(500,290)" to="(570,290)"/> <wire from="(120,430)" to="(380,430)"/> <wire from="(560,590)" to="(680,590)"/> <wire from="(130,210)" to="(380,210)"/> <wire from="(740,710)" to="(790,710)"/> <wire from="(340,790)" to="(390,790)"/> <wire from="(660,500)" to="(660,570)"/> <wire from="(230,360)" to="(280,360)"/> <wire from="(560,780)" to="(600,780)"/> <wire from="(110,560)" to="(110,580)"/> <wire from="(110,720)" to="(110,740)"/> <wire from="(120,410)" to="(120,430)"/> <wire from="(90,40)" to="(260,40)"/> <wire from="(280,410)" to="(380,410)"/> <wire from="(90,710)" to="(130,710)"/> <wire from="(500,1030)" to="(500,1050)"/> <wire from="(480,780)" to="(520,780)"/> <wire from="(130,530)" to="(480,530)"/> <wire from="(620,640)" to="(900,640)"/> <wire from="(310,500)" to="(530,500)"/> <wire from="(660,500)" to="(680,500)"/> <wire from="(720,1020)" to="(810,1020)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(490,880)" to="(900,880)"/> <wire from="(870,700)" to="(900,700)"/> <wire from="(170,300)" to="(170,350)"/> <wire from="(350,360)" to="(360,360)"/> <wire from="(450,1010)" to="(520,1010)"/> <wire from="(120,240)" to="(380,240)"/> <wire from="(130,420)" to="(380,420)"/> <wire from="(90,70)" to="(660,70)"/> <wire from="(520,520)" to="(520,650)"/> <wire from="(530,370)" to="(530,500)"/> <wire from="(310,100)" to="(310,300)"/> <wire from="(740,710)" to="(740,780)"/> <wire from="(130,870)" to="(130,890)"/> <wire from="(640,340)" to="(640,360)"/> <wire from="(90,230)" to="(380,230)"/> <wire from="(500,1030)" to="(520,1030)"/> <wire from="(420,780)" to="(450,780)"/> <wire from="(140,880)" to="(140,920)"/> <wire from="(90,620)" to="(110,620)"/> <wire from="(110,720)" to="(130,720)"/> <wire from="(300,140)" to="(300,320)"/> <wire from="(720,690)" to="(790,690)"/> <wire from="(310,370)" to="(320,370)"/> <wire from="(170,710)" to="(560,710)"/> <wire from="(500,100)" to="(500,290)"/> <wire from="(90,860)" to="(160,860)"/> <wire from="(340,790)" to="(340,910)"/> <wire from="(120,450)" to="(380,450)"/> <wire from="(310,100)" to="(500,100)"/> <wire from="(120,830)" to="(120,840)"/> <wire from="(660,760)" to="(660,830)"/> <wire from="(600,780)" to="(600,850)"/> <wire from="(260,970)" to="(260,990)"/> <wire from="(530,370)" to="(570,370)"/> <wire from="(640,320)" to="(680,320)"/> <wire from="(600,360)" to="(640,360)"/> <wire from="(90,170)" to="(130,170)"/> <wire from="(90,890)" to="(130,890)"/> <wire from="(120,840)" to="(160,840)"/> <wire from="(160,650)" to="(520,650)"/> <wire from="(660,70)" to="(660,220)"/> <wire from="(90,440)" to="(380,440)"/> <wire from="(830,770)" to="(850,770)"/> <wire from="(740,70)" to="(740,240)"/> <wire from="(90,260)" to="(120,260)"/> <wire from="(460,430)" to="(680,430)"/> <wire from="(660,760)" to="(680,760)"/> <wire from="(660,1000)" to="(680,1000)"/> <wire from="(300,320)" to="(320,320)"/> <wire from="(370,870)" to="(390,870)"/> <wire from="(360,270)" to="(360,310)"/> <wire from="(140,880)" to="(160,880)"/> <wire from="(140,770)" to="(140,820)"/> <wire from="(310,300)" to="(310,350)"/> <wire from="(140,770)" to="(390,770)"/> <wire from="(740,780)" to="(790,780)"/> <wire from="(720,330)" to="(900,330)"/> <wire from="(90,770)" to="(140,770)"/> <wire from="(660,410)" to="(660,500)"/> <wire from="(640,850)" to="(680,850)"/> <wire from="(120,240)" to="(120,260)"/> <wire from="(90,990)" to="(260,990)"/> <wire from="(90,380)" to="(130,380)"/> <wire from="(480,770)" to="(520,770)"/> <wire from="(130,830)" to="(160,830)"/> <wire from="(830,580)" to="(850,580)"/> <wire from="(830,420)" to="(850,420)"/> <wire from="(90,470)" to="(120,470)"/> <wire from="(460,240)" to="(680,240)"/> <wire from="(560,630)" to="(580,630)"/> <wire from="(490,790)" to="(520,790)"/> <wire from="(660,570)" to="(680,570)"/> <wire from="(660,410)" to="(680,410)"/> <wire from="(260,890)" to="(280,890)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(360,270)" to="(380,270)"/> <wire from="(130,250)" to="(130,290)"/> <wire from="(130,170)" to="(130,210)"/> <wire from="(110,580)" to="(130,580)"/> <wire from="(90,560)" to="(110,560)"/> <wire from="(870,770)" to="(900,770)"/> <wire from="(90,950)" to="(170,950)"/> <wire from="(660,570)" to="(660,690)"/> <wire from="(480,530)" to="(480,770)"/> <wire from="(560,710)" to="(680,710)"/> <wire from="(130,250)" to="(380,250)"/> <wire from="(740,590)" to="(790,590)"/> <wire from="(740,430)" to="(790,430)"/> <wire from="(150,320)" to="(200,320)"/> <wire from="(740,780)" to="(740,850)"/> <wire from="(640,340)" to="(680,340)"/> <wire from="(600,300)" to="(640,300)"/> <wire from="(110,600)" to="(110,620)"/> <wire from="(110,680)" to="(110,700)"/> <wire from="(120,450)" to="(120,470)"/> <wire from="(130,300)" to="(130,320)"/> <wire from="(90,590)" to="(130,590)"/> <wire from="(90,350)" to="(130,350)"/> <wire from="(830,230)" to="(850,230)"/> <wire from="(90,200)" to="(120,200)"/> <wire from="(320,960)" to="(480,960)"/> <wire from="(660,220)" to="(680,220)"/> <wire from="(520,520)" to="(680,520)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(130,380)" to="(130,420)"/> <wire from="(140,820)" to="(160,820)"/> <wire from="(870,580)" to="(900,580)"/> <wire from="(870,420)" to="(900,420)"/> <wire from="(150,320)" to="(150,370)"/> <wire from="(720,760)" to="(790,760)"/> <wire from="(560,650)" to="(560,710)"/> <wire from="(260,910)" to="(260,970)"/> <wire from="(430,880)" to="(490,880)"/> <wire from="(130,460)" to="(130,530)"/> <wire from="(130,460)" to="(380,460)"/> <wire from="(740,240)" to="(790,240)"/> <wire from="(130,350)" to="(130,370)"/> <wire from="(280,260)" to="(380,260)"/> <wire from="(90,800)" to="(130,800)"/> <wire from="(90,320)" to="(130,320)"/> <wire from="(640,300)" to="(640,320)"/> <wire from="(830,840)" to="(850,840)"/> <wire from="(480,310)" to="(570,310)"/> <wire from="(90,410)" to="(120,410)"/> <wire from="(560,650)" to="(580,650)"/> <wire from="(90,1050)" to="(500,1050)"/> <wire from="(600,850)" to="(620,850)"/> <wire from="(660,830)" to="(680,830)"/> <wire from="(260,910)" to="(280,910)"/> <wire from="(110,600)" to="(130,600)"/> <wire from="(90,740)" to="(110,740)"/> <wire from="(870,230)" to="(900,230)"/> <wire from="(90,140)" to="(300,140)"/> <wire from="(720,570)" to="(790,570)"/> <wire from="(720,410)" to="(790,410)"/> <wire from="(740,590)" to="(740,710)"/> <wire from="(660,220)" to="(660,410)"/> <wire from="(190,370)" to="(200,370)"/> <wire from="(830,520)" to="(900,520)"/> <wire from="(280,260)" to="(280,310)"/> <wire from="(170,590)" to="(560,590)"/> <wire from="(500,350)" to="(570,350)"/> <wire from="(320,890)" to="(390,890)"/> <wire from="(740,850)" to="(790,850)"/> <wire from="(300,140)" to="(480,140)"/> <wire from="(90,920)" to="(140,920)"/> <wire from="(260,40)" to="(260,890)"/> <wire from="(90,290)" to="(130,290)"/> <wire from="(90,530)" to="(130,530)"/> <wire from="(130,800)" to="(130,830)"/> <wire from="(490,790)" to="(490,880)"/> <wire from="(560,590)" to="(560,630)"/> <wire from="(170,300)" to="(200,300)"/> <wire from="(660,830)" to="(660,1000)"/> <wire from="(190,950)" to="(280,950)"/> <wire from="(90,100)" to="(310,100)"/> <wire from="(90,500)" to="(310,500)"/> <wire from="(740,430)" to="(740,590)"/> <wire from="(720,520)" to="(810,520)"/> <wire from="(150,370)" to="(170,370)"/> <wire from="(870,840)" to="(900,840)"/> <wire from="(720,220)" to="(790,220)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(660,70)" to="(740,70)"/> <wire from="(240,850)" to="(370,850)"/> <wire from="(500,290)" to="(500,350)"/> <wire from="(120,220)" to="(380,220)"/> <comp lib="1" loc="(830,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(720,700)" name="D_Latch"> <a name="label" val="sby_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D26"/> </comp> <comp lib="1" loc="(830,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(196,580)" name="Text"> <a name="text" val="#SB/X"/> </comp> <comp lib="1" loc="(350,360)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(520,342)" name="Text"> <a name="text" val="STOR"/> </comp> <comp loc="(720,840)" name="D_Latch"> <a name="label" val="ss_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(620,640)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(600,360)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(190,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D23"/> </comp> <comp lib="0" loc="(90,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D10"/> </comp> <comp lib="0" loc="(90,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D17"/> </comp> <comp loc="(720,420)" name="D_Latch"> <a name="label" val="xsb_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(460,240)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(90,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D8"/> </comp> <comp loc="(720,230)" name="D_Latch"> <a name="label" val="ysb_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(633,516)" name="Text"> <a name="text" val="#S/SB"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STOR"/> </comp> <comp lib="1" loc="(830,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(625,773)" name="Text"> <a name="text" val="#SB/S"/> </comp> <comp lib="1" loc="(240,850)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="6" loc="(619,1016)" name="Text"> <a name="text" val="#S/ADL"/> </comp> <comp lib="0" loc="(900,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="STXY"/> <a name="labelloc" val="east"/> </comp> <comp loc="(720,1010)" name="D_Latch"> <a name="label" val="sadl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(160,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,780)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D24"/> </comp> <comp lib="1" loc="(870,770)" name="Buffer"/> <comp lib="6" loc="(197,642)" name="Text"> <a name="text" val="#S/SB"/> </comp> <comp lib="0" loc="(90,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D22"/> </comp> <comp lib="1" loc="(830,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D12"/> </comp> <comp lib="0" loc="(900,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/X"/> <a name="labelloc" val="east"/> </comp> <comp loc="(720,510)" name="D_Latch"> <a name="label" val="ssb_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(900,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/SB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(90,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D16"/> </comp> <comp loc="(720,580)" name="D_Latch"> <a name="label" val="sbx_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(320,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D11"/> </comp> <comp lib="1" loc="(830,1020)" name="Buffer"/> <comp lib="0" loc="(900,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#SBXY"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(190,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(900,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/Y"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(634,424)" name="Text"> <a name="text" val="#X/SB"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(870,840)" name="Buffer"/> <comp lib="6" loc="(116,1041)" name="Text"> <a name="text" val="STK2"/> </comp> <comp lib="0" loc="(90,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D25"/> </comp> <comp lib="1" loc="(870,580)" name="Buffer"/> <comp lib="6" loc="(116,945)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="6" loc="(196,700)" name="Text"> <a name="text" val="#SB/Y"/> </comp> <comp lib="1" loc="(870,230)" name="Buffer"/> <comp lib="0" loc="(90,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D15"/> </comp> <comp lib="0" loc="(90,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D9"/> </comp> <comp lib="1" loc="(600,300)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(900,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Y/SB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(194,525)" name="Text"> <a name="text" val="TXS"/> </comp> <comp lib="1" loc="(830,840)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(230,310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(170,710)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(630,235)" name="Text"> <a name="text" val="#Y/SB"/> </comp> <comp lib="6" loc="(422,94)" name="Text"> <a name="text" val="STOR"/> </comp> <comp lib="0" loc="(90,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D14"/> </comp> <comp lib="1" loc="(460,430)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(900,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/ADL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(900,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="X/SB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(830,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(870,700)" name="Buffer"/> <comp lib="1" loc="(830,520)" name="Buffer"/> <comp lib="1" loc="(350,310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(170,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D19"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(900,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="STKOP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D21"/> </comp> <comp lib="0" loc="(90,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D18"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D35"/> </comp> <comp lib="1" loc="(720,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(517,872)" name="Text"> <a name="text" val="STKOP"/> </comp> <comp loc="(720,770)" name="D_Latch"> <a name="label" val="sbs_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(320,900)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(900,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/S"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(870,420)" name="Buffer"/> <comp lib="6" loc="(638,634)" name="Text"> <a name="text" val="#SBXY"/> </comp> <comp lib="1" loc="(560,780)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(230,360)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D20"/> </comp> <comp lib="1" loc="(640,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,880)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D13"/> </comp> <comp lib="0" loc="(90,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(900,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/S"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="EXTENDED_CYCLE_COUNTER"> <a name="circuit" val="EXTENDED_CYCLE_COUNTER"/> <a name="clabel" val="EXTENDED_CYCLE_COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#f1ff4e" height="280" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="74">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="93">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="115">/READY</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="133">TRES2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="174">T1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="202">/T2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="234">/T3</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="263">/T4</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="293">/T5</text> <circ-port height="8" pin="80,290" width="8" x="46" y="166"/> <circ-port height="10" pin="630,220" width="10" x="155" y="195"/> <circ-port height="10" pin="630,430" width="10" x="155" y="225"/> <circ-port height="10" pin="630,640" width="10" x="155" y="255"/> <circ-port height="8" pin="80,40" width="8" x="46" y="66"/> <circ-port height="8" pin="80,220" width="8" x="46" y="106"/> <circ-port height="8" pin="80,160" width="8" x="46" y="126"/> <circ-port height="10" pin="630,850" width="10" x="155" y="285"/> <circ-port height="8" pin="80,70" width="8" x="46" y="86"/> <circ-anchor facing="east" height="6" width="6" x="47" y="47"/> </appear> <wire from="(390,190)" to="(440,190)"/> <wire from="(330,660)" to="(510,660)"/> <wire from="(440,220)" to="(560,220)"/> <wire from="(110,270)" to="(160,270)"/> <wire from="(590,640)" to="(630,640)"/> <wire from="(410,700)" to="(410,910)"/> <wire from="(310,600)" to="(310,810)"/> <wire from="(270,280)" to="(270,490)"/> <wire from="(440,400)" to="(440,430)"/> <wire from="(240,760)" to="(530,760)"/> <wire from="(240,520)" to="(240,550)"/> <wire from="(310,600)" to="(350,600)"/> <wire from="(410,700)" to="(450,700)"/> <wire from="(530,190)" to="(530,340)"/> <wire from="(490,820)" to="(530,820)"/> <wire from="(510,870)" to="(510,910)"/> <wire from="(240,340)" to="(240,500)"/> <wire from="(290,720)" to="(450,720)"/> <wire from="(330,200)" to="(350,200)"/> <wire from="(430,380)" to="(450,380)"/> <wire from="(490,280)" to="(510,280)"/> <wire from="(330,410)" to="(330,450)"/> <wire from="(240,310)" to="(260,310)"/> <wire from="(240,710)" to="(260,710)"/> <wire from="(440,400)" to="(450,400)"/> <wire from="(390,400)" to="(440,400)"/> <wire from="(330,870)" to="(510,870)"/> <wire from="(440,430)" to="(560,430)"/> <wire from="(310,160)" to="(310,180)"/> <wire from="(590,850)" to="(630,850)"/> <wire from="(430,170)" to="(430,380)"/> <wire from="(270,490)" to="(270,700)"/> <wire from="(440,610)" to="(440,640)"/> <wire from="(240,970)" to="(530,970)"/> <wire from="(240,730)" to="(240,760)"/> <wire from="(310,810)" to="(350,810)"/> <wire from="(410,910)" to="(450,910)"/> <wire from="(530,400)" to="(530,550)"/> <wire from="(490,190)" to="(530,190)"/> <wire from="(430,70)" to="(430,170)"/> <wire from="(80,70)" to="(110,70)"/> <wire from="(240,550)" to="(240,710)"/> <wire from="(290,930)" to="(450,930)"/> <wire from="(240,920)" to="(260,920)"/> <wire from="(330,410)" to="(350,410)"/> <wire from="(430,590)" to="(450,590)"/> <wire from="(490,490)" to="(510,490)"/> <wire from="(330,620)" to="(330,660)"/> <wire from="(240,520)" to="(260,520)"/> <wire from="(510,240)" to="(510,280)"/> <wire from="(440,610)" to="(450,610)"/> <wire from="(80,220)" to="(270,220)"/> <wire from="(200,290)" to="(260,290)"/> <wire from="(390,610)" to="(440,610)"/> <wire from="(330,240)" to="(510,240)"/> <wire from="(440,640)" to="(560,640)"/> <wire from="(590,220)" to="(630,220)"/> <wire from="(430,380)" to="(430,590)"/> <wire from="(410,280)" to="(410,490)"/> <wire from="(270,700)" to="(270,910)"/> <wire from="(310,180)" to="(310,390)"/> <wire from="(440,820)" to="(440,850)"/> <wire from="(240,940)" to="(240,970)"/> <wire from="(310,180)" to="(350,180)"/> <wire from="(240,340)" to="(530,340)"/> <wire from="(410,280)" to="(450,280)"/> <wire from="(530,610)" to="(530,760)"/> <wire from="(490,400)" to="(530,400)"/> <wire from="(290,300)" to="(450,300)"/> <wire from="(240,760)" to="(240,920)"/> <wire from="(330,620)" to="(350,620)"/> <wire from="(430,800)" to="(450,800)"/> <wire from="(490,700)" to="(510,700)"/> <wire from="(330,830)" to="(330,870)"/> <wire from="(240,730)" to="(260,730)"/> <wire from="(510,450)" to="(510,490)"/> <wire from="(440,820)" to="(450,820)"/> <wire from="(410,40)" to="(410,280)"/> <wire from="(110,70)" to="(430,70)"/> <wire from="(390,820)" to="(440,820)"/> <wire from="(330,450)" to="(510,450)"/> <wire from="(110,70)" to="(110,270)"/> <wire from="(440,850)" to="(560,850)"/> <wire from="(590,430)" to="(630,430)"/> <wire from="(430,590)" to="(430,800)"/> <wire from="(410,490)" to="(410,700)"/> <wire from="(310,390)" to="(310,600)"/> <wire from="(440,190)" to="(440,220)"/> <wire from="(240,550)" to="(530,550)"/> <wire from="(80,160)" to="(310,160)"/> <wire from="(310,390)" to="(350,390)"/> <wire from="(240,310)" to="(240,340)"/> <wire from="(410,490)" to="(450,490)"/> <wire from="(530,820)" to="(530,970)"/> <wire from="(490,610)" to="(530,610)"/> <wire from="(510,660)" to="(510,700)"/> <wire from="(290,510)" to="(450,510)"/> <wire from="(240,940)" to="(260,940)"/> <wire from="(330,830)" to="(350,830)"/> <wire from="(430,170)" to="(450,170)"/> <wire from="(490,910)" to="(510,910)"/> <wire from="(330,200)" to="(330,240)"/> <wire from="(240,500)" to="(260,500)"/> <wire from="(440,190)" to="(450,190)"/> <wire from="(80,290)" to="(160,290)"/> <wire from="(80,40)" to="(410,40)"/> <wire from="(270,220)" to="(270,280)"/> <comp loc="(490,390)" name="D_Latch"> <a name="label" val="t3_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(590,220)" name="NOT Gate"/> <comp lib="2" loc="(290,300)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TRES2"/> </comp> <comp lib="1" loc="(590,640)" name="NOT Gate"/> <comp lib="0" loc="(630,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,180)" name="D_Latch"> <a name="label" val="t2_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(490,500)" name="D_Latch"> <a name="label" val="t3_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(290,930)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(290,720)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(390,820)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(200,280)" name="D_Latch"> <a name="label" val="t1_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(390,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(630,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,600)" name="D_Latch"> <a name="label" val="t4_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(490,290)" name="D_Latch"> <a name="label" val="t2_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(290,510)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(490,810)" name="D_Latch"> <a name="label" val="t5_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(490,710)" name="D_Latch"> <a name="label" val="t4_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(390,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,430)" name="NOT Gate"/> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(630,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp loc="(490,920)" name="D_Latch"> <a name="label" val="t5_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(590,850)" name="NOT Gate"/> <comp lib="0" loc="(630,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> </circuit> <circuit name="ALU_SETUP"> <a name="circuit" val="ALU_SETUP"/> <a name="clabel" val="ALU_SETUP"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 16"/> <appear> <path d="M61,121 Q65,131 69,121" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fe6aff" height="380" stroke="#000000" stroke-width="2" width="420" x="40" y="120"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="60" y="154">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="174">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="444">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="485">PGX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="244">STKOP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="343">AND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="214">BRK6E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="374">/C_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="394">/D_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="60" y="194">BR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="57" y="264">T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="57" y="284">T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="57" y="304">T6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="57" y="324">T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="389" y="489">SRS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="424">INC_SB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="444">SR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="464">BFRW</text> <circ-port height="10" pin="1580,100" width="10" x="75" y="495"/> <circ-port height="10" pin="1580,170" width="10" x="95" y="495"/> <circ-port height="8" pin="160,230" width="8" x="66" y="116"/> <circ-port height="10" pin="1580,240" width="10" x="115" y="495"/> <circ-port height="8" pin="160,260" width="8" x="76" y="116"/> <circ-port height="8" pin="160,290" width="8" x="86" y="116"/> <circ-port height="10" pin="1580,310" width="10" x="135" y="495"/> <circ-port height="8" pin="160,320" width="8" x="96" y="116"/> <circ-port height="8" pin="160,350" width="8" x="106" y="116"/> <circ-port height="8" pin="160,380" width="8" x="116" y="116"/> <circ-port height="10" pin="1580,380" width="10" x="155" y="495"/> <circ-port height="8" pin="160,410" width="8" x="126" y="116"/> <circ-port height="8" pin="160,440" width="8" x="136" y="116"/> <circ-port height="10" pin="1580,460" width="10" x="175" y="495"/> <circ-port height="8" pin="160,470" width="8" x="146" y="116"/> <circ-port height="8" pin="160,500" width="8" x="156" y="116"/> <circ-port height="8" pin="160,530" width="8" x="166" y="116"/> <circ-port height="10" pin="1580,530" width="10" x="195" y="495"/> <circ-port height="8" pin="160,560" width="8" x="176" y="116"/> <circ-port height="8" pin="160,590" width="8" x="186" y="116"/> <circ-port height="10" pin="1580,600" width="10" x="215" y="495"/> <circ-port height="8" pin="160,620" width="8" x="196" y="116"/> <circ-port height="8" pin="160,650" width="8" x="206" y="116"/> <circ-port height="10" pin="1580,670" width="10" x="235" y="495"/> <circ-port height="8" pin="160,680" width="8" x="216" y="116"/> <circ-port height="8" pin="160,710" width="8" x="226" y="116"/> <circ-port height="8" pin="160,740" width="8" x="236" y="116"/> <circ-port height="10" pin="1580,740" width="10" x="385" y="495"/> <circ-port height="8" pin="160,770" width="8" x="256" y="116"/> <circ-port height="10" pin="1580,810" width="10" x="255" y="495"/> <circ-port height="8" pin="160,800" width="8" x="266" y="116"/> <circ-port height="8" pin="160,830" width="8" x="276" y="116"/> <circ-port height="10" pin="1580,880" width="10" x="275" y="495"/> <circ-port height="8" pin="160,860" width="8" x="286" y="116"/> <circ-port height="8" pin="160,890" width="8" x="296" y="116"/> <circ-port height="8" pin="160,920" width="8" x="306" y="116"/> <circ-port height="10" pin="1580,950" width="10" x="295" y="495"/> <circ-port height="8" pin="160,950" width="8" x="316" y="116"/> <circ-port height="8" pin="160,980" width="8" x="326" y="116"/> <circ-port height="10" pin="1580,1020" width="10" x="315" y="495"/> <circ-port height="8" pin="160,1010" width="8" x="336" y="116"/> <circ-port height="10" pin="1580,1090" width="10" x="335" y="495"/> <circ-port height="10" pin="1580,1160" width="10" x="355" y="495"/> <circ-port height="8" pin="160,20" width="8" x="36" y="146"/> <circ-port height="8" pin="160,50" width="8" x="36" y="166"/> <circ-port height="8" pin="160,110" width="8" x="36" y="436"/> <circ-port height="8" pin="160,1360" width="8" x="36" y="256"/> <circ-port height="8" pin="160,1420" width="8" x="36" y="296"/> <circ-port height="8" pin="160,170" width="8" x="36" y="236"/> <circ-port height="8" pin="160,1480" width="8" x="36" y="476"/> <circ-port height="8" pin="160,1390" width="8" x="36" y="276"/> <circ-port height="8" pin="160,1450" width="8" x="36" y="316"/> <circ-port height="8" pin="160,140" width="8" x="36" y="206"/> <circ-port height="8" pin="160,1510" width="8" x="36" y="186"/> <circ-port height="8" pin="160,1540" width="8" x="36" y="386"/> <circ-port height="8" pin="160,1570" width="8" x="36" y="366"/> <circ-port height="8" pin="160,1110" width="8" x="366" y="116"/> <circ-port height="8" pin="160,1140" width="8" x="376" y="116"/> <circ-port height="8" pin="160,1180" width="8" x="386" y="116"/> <circ-port height="8" pin="160,1210" width="8" x="396" y="116"/> <circ-port height="8" pin="160,1240" width="8" x="406" y="116"/> <circ-port height="8" pin="160,1270" width="8" x="416" y="116"/> <circ-port height="8" pin="160,1300" width="8" x="426" y="116"/> <circ-port height="8" pin="160,1330" width="8" x="436" y="116"/> <circ-port height="10" pin="1580,1230" width="10" x="455" y="415"/> <circ-port height="10" pin="1580,1270" width="10" x="455" y="435"/> <circ-port height="8" pin="160,200" width="8" x="56" y="116"/> <circ-port height="8" pin="160,80" width="8" x="36" y="456"/> <circ-port height="8" pin="160,1050" width="8" x="346" y="116"/> <circ-port height="8" pin="160,1080" width="8" x="356" y="116"/> <circ-port height="10" pin="1580,420" width="10" x="455" y="335"/> <circ-anchor facing="east" height="6" width="6" x="47" y="117"/> </appear> <wire from="(840,680)" to="(840,690)"/> <wire from="(190,490)" to="(310,490)"/> <wire from="(680,1230)" to="(740,1230)"/> <wire from="(160,1110)" to="(270,1110)"/> <wire from="(1310,860)" to="(1310,930)"/> <wire from="(190,510)" to="(190,530)"/> <wire from="(160,1050)" to="(200,1050)"/> <wire from="(200,1250)" to="(240,1250)"/> <wire from="(860,650)" to="(880,650)"/> <wire from="(160,230)" to="(320,230)"/> <wire from="(430,1190)" to="(430,1480)"/> <wire from="(620,90)" to="(620,710)"/> <wire from="(720,1310)" to="(740,1310)"/> <wire from="(580,570)" to="(790,570)"/> <wire from="(270,700)" to="(290,700)"/> <wire from="(1140,180)" to="(1340,180)"/> <wire from="(200,520)" to="(200,560)"/> <wire from="(1510,740)" to="(1580,740)"/> <wire from="(530,860)" to="(620,860)"/> <wire from="(220,1290)" to="(240,1290)"/> <wire from="(220,1180)" to="(220,1230)"/> <wire from="(270,550)" to="(280,550)"/> <wire from="(1310,930)" to="(1340,930)"/> <wire from="(810,100)" to="(950,100)"/> <wire from="(1410,720)" to="(1430,720)"/> <wire from="(1470,460)" to="(1490,460)"/> <wire from="(160,320)" to="(360,320)"/> <wire from="(500,500)" to="(500,560)"/> <wire from="(450,320)" to="(520,320)"/> <wire from="(670,780)" to="(790,780)"/> <wire from="(1250,450)" to="(1250,530)"/> <wire from="(160,260)" to="(1050,260)"/> <wire from="(1380,1020)" to="(1490,1020)"/> <wire from="(190,640)" to="(190,650)"/> <wire from="(1250,1090)" to="(1250,1180)"/> <wire from="(160,1330)" to="(210,1330)"/> <wire from="(1410,860)" to="(1410,1140)"/> <wire from="(1240,250)" to="(1340,250)"/> <wire from="(200,480)" to="(310,480)"/> <wire from="(1310,510)" to="(1310,580)"/> <wire from="(510,640)" to="(510,670)"/> <wire from="(200,650)" to="(200,680)"/> <wire from="(1000,520)" to="(1000,600)"/> <wire from="(360,360)" to="(360,450)"/> <wire from="(500,560)" to="(540,560)"/> <wire from="(770,690)" to="(790,690)"/> <wire from="(160,1510)" to="(190,1510)"/> <wire from="(210,1240)" to="(240,1240)"/> <wire from="(1020,780)" to="(1040,780)"/> <wire from="(350,910)" to="(370,910)"/> <wire from="(1410,580)" to="(1410,640)"/> <wire from="(940,1010)" to="(970,1010)"/> <wire from="(160,830)" to="(430,830)"/> <wire from="(160,890)" to="(170,890)"/> <wire from="(1310,580)" to="(1340,580)"/> <wire from="(1510,310)" to="(1530,310)"/> <wire from="(1220,510)" to="(1220,810)"/> <wire from="(720,1300)" to="(720,1310)"/> <wire from="(1070,530)" to="(1070,550)"/> <wire from="(460,640)" to="(510,640)"/> <wire from="(360,300)" to="(360,320)"/> <wire from="(1420,110)" to="(1420,180)"/> <wire from="(1240,250)" to="(1240,320)"/> <wire from="(1310,160)" to="(1310,230)"/> <wire from="(1380,600)" to="(1430,600)"/> <wire from="(1420,320)" to="(1470,320)"/> <wire from="(400,1170)" to="(400,1260)"/> <wire from="(1020,750)" to="(1040,750)"/> <wire from="(840,620)" to="(840,660)"/> <wire from="(1070,490)" to="(1080,490)"/> <wire from="(720,1250)" to="(740,1250)"/> <wire from="(270,1120)" to="(290,1120)"/> <wire from="(290,660)" to="(310,660)"/> <wire from="(160,500)" to="(310,500)"/> <wire from="(490,860)" to="(510,860)"/> <wire from="(830,550)" to="(860,550)"/> <wire from="(220,1230)" to="(240,1230)"/> <wire from="(1240,320)" to="(1270,320)"/> <wire from="(1310,230)" to="(1340,230)"/> <wire from="(340,880)" to="(350,880)"/> <wire from="(1380,370)" to="(1470,370)"/> <wire from="(1550,310)" to="(1580,310)"/> <wire from="(1410,1140)" to="(1430,1140)"/> <wire from="(1470,880)" to="(1490,880)"/> <wire from="(1550,1270)" to="(1580,1270)"/> <wire from="(1280,420)" to="(1280,460)"/> <wire from="(1080,170)" to="(1100,170)"/> <wire from="(360,450)" to="(1000,450)"/> <wire from="(1280,420)" to="(1580,420)"/> <wire from="(490,960)" to="(540,960)"/> <wire from="(870,1180)" to="(1250,1180)"/> <wire from="(770,550)" to="(770,620)"/> <wire from="(270,1140)" to="(270,1150)"/> <wire from="(1310,930)" to="(1310,1000)"/> <wire from="(840,680)" to="(880,680)"/> <wire from="(770,520)" to="(770,550)"/> <wire from="(1280,460)" to="(1340,460)"/> <wire from="(220,1180)" to="(260,1180)"/> <wire from="(1290,320)" to="(1340,320)"/> <wire from="(940,230)" to="(940,630)"/> <wire from="(160,650)" to="(190,650)"/> <wire from="(160,1450)" to="(190,1450)"/> <wire from="(240,1060)" to="(260,1060)"/> <wire from="(290,470)" to="(310,470)"/> <wire from="(340,360)" to="(360,360)"/> <wire from="(990,110)" to="(1080,110)"/> <wire from="(300,1000)" to="(510,1000)"/> <wire from="(460,330)" to="(460,630)"/> <wire from="(1110,630)" to="(1110,880)"/> <wire from="(1510,810)" to="(1580,810)"/> <wire from="(370,880)" to="(380,880)"/> <wire from="(1250,530)" to="(1340,530)"/> <wire from="(1310,1000)" to="(1340,1000)"/> <wire from="(1310,1160)" to="(1340,1160)"/> <wire from="(1410,790)" to="(1430,790)"/> <wire from="(1470,530)" to="(1490,530)"/> <wire from="(1020,740)" to="(1020,750)"/> <wire from="(1380,1090)" to="(1490,1090)"/> <wire from="(180,380)" to="(180,390)"/> <wire from="(870,1240)" to="(1190,1240)"/> <wire from="(270,1110)" to="(270,1120)"/> <wire from="(570,1020)" to="(610,1020)"/> <wire from="(810,880)" to="(1110,880)"/> <wire from="(210,1210)" to="(210,1240)"/> <wire from="(770,760)" to="(790,760)"/> <wire from="(860,690)" to="(880,690)"/> <wire from="(160,1420)" to="(190,1420)"/> <wire from="(1050,450)" to="(1050,500)"/> <wire from="(930,120)" to="(950,120)"/> <wire from="(1050,450)" to="(1250,450)"/> <wire from="(620,90)" to="(780,90)"/> <wire from="(200,560)" to="(200,600)"/> <wire from="(1080,390)" to="(1340,390)"/> <wire from="(1510,460)" to="(1580,460)"/> <wire from="(160,950)" to="(180,950)"/> <wire from="(330,1130)" to="(340,1130)"/> <wire from="(940,940)" to="(950,940)"/> <wire from="(1410,440)" to="(1430,440)"/> <wire from="(480,580)" to="(480,770)"/> <wire from="(1510,380)" to="(1530,380)"/> <wire from="(620,1040)" to="(620,1220)"/> <wire from="(1070,460)" to="(1280,460)"/> <wire from="(400,970)" to="(450,970)"/> <wire from="(160,410)" to="(210,410)"/> <wire from="(160,1210)" to="(210,1210)"/> <wire from="(460,630)" to="(460,640)"/> <wire from="(200,520)" to="(310,520)"/> <wire from="(1410,650)" to="(1410,720)"/> <wire from="(510,360)" to="(510,380)"/> <wire from="(1420,180)" to="(1420,250)"/> <wire from="(1310,230)" to="(1310,300)"/> <wire from="(1310,580)" to="(1310,720)"/> <wire from="(1420,390)" to="(1470,390)"/> <wire from="(1290,740)" to="(1340,740)"/> <wire from="(160,590)" to="(190,590)"/> <wire from="(1310,40)" to="(1310,90)"/> <wire from="(160,1390)" to="(190,1390)"/> <wire from="(210,1280)" to="(240,1280)"/> <wire from="(620,1220)" to="(640,1220)"/> <wire from="(1380,930)" to="(1460,930)"/> <wire from="(810,880)" to="(810,1050)"/> <wire from="(440,310)" to="(440,740)"/> <wire from="(430,870)" to="(450,870)"/> <wire from="(400,1170)" to="(740,1170)"/> <wire from="(810,1050)" to="(970,1050)"/> <wire from="(160,1080)" to="(180,1080)"/> <wire from="(1310,300)" to="(1340,300)"/> <wire from="(350,960)" to="(360,960)"/> <wire from="(1550,380)" to="(1580,380)"/> <wire from="(440,310)" to="(520,310)"/> <wire from="(500,350)" to="(500,410)"/> <wire from="(180,390)" to="(240,390)"/> <wire from="(770,620)" to="(770,690)"/> <wire from="(200,650)" to="(310,650)"/> <wire from="(1310,1000)" to="(1310,1070)"/> <wire from="(1080,190)" to="(1080,390)"/> <wire from="(940,670)" to="(1430,670)"/> <wire from="(620,1330)" to="(620,1540)"/> <wire from="(500,410)" to="(540,410)"/> <wire from="(770,110)" to="(770,130)"/> <wire from="(160,1360)" to="(190,1360)"/> <wire from="(590,1000)" to="(610,1000)"/> <wire from="(1070,530)" to="(1080,530)"/> <wire from="(450,320)" to="(450,800)"/> <wire from="(750,520)" to="(770,520)"/> <wire from="(860,550)" to="(860,650)"/> <wire from="(1510,880)" to="(1580,880)"/> <wire from="(180,1070)" to="(200,1070)"/> <wire from="(160,1480)" to="(430,1480)"/> <wire from="(1380,90)" to="(1470,90)"/> <wire from="(1310,1070)" to="(1340,1070)"/> <wire from="(1010,790)" to="(1020,790)"/> <wire from="(1410,860)" to="(1430,860)"/> <wire from="(1470,600)" to="(1490,600)"/> <wire from="(700,810)" to="(1030,810)"/> <wire from="(1000,520)" to="(1080,520)"/> <wire from="(1460,930)" to="(1460,950)"/> <wire from="(160,1140)" to="(220,1140)"/> <wire from="(190,1260)" to="(190,1270)"/> <wire from="(620,1240)" to="(620,1330)"/> <wire from="(940,630)" to="(1110,630)"/> <wire from="(160,680)" to="(200,680)"/> <wire from="(160,200)" to="(200,200)"/> <wire from="(200,1270)" to="(200,1300)"/> <wire from="(160,530)" to="(190,530)"/> <wire from="(520,580)" to="(540,580)"/> <wire from="(300,360)" to="(320,360)"/> <wire from="(220,1290)" to="(220,1330)"/> <wire from="(1510,530)" to="(1580,530)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(1050,260)" to="(1050,450)"/> <wire from="(220,920)" to="(240,920)"/> <wire from="(210,1280)" to="(210,1330)"/> <wire from="(1310,1160)" to="(1310,1320)"/> <wire from="(1310,720)" to="(1340,720)"/> <wire from="(780,1240)" to="(850,1240)"/> <wire from="(1410,510)" to="(1430,510)"/> <wire from="(710,1260)" to="(720,1260)"/> <wire from="(960,770)" to="(1040,770)"/> <wire from="(1200,940)" to="(1220,940)"/> <wire from="(580,970)" to="(590,970)"/> <wire from="(290,400)" to="(290,470)"/> <wire from="(1020,780)" to="(1020,790)"/> <wire from="(200,1240)" to="(200,1250)"/> <wire from="(430,830)" to="(430,850)"/> <wire from="(1410,720)" to="(1410,790)"/> <wire from="(700,1190)" to="(740,1190)"/> <wire from="(1420,250)" to="(1420,320)"/> <wire from="(1310,300)" to="(1310,370)"/> <wire from="(190,590)" to="(190,610)"/> <wire from="(260,1020)" to="(550,1020)"/> <wire from="(1030,790)" to="(1030,810)"/> <wire from="(1380,740)" to="(1430,740)"/> <wire from="(510,640)" to="(790,640)"/> <wire from="(890,120)" to="(910,120)"/> <wire from="(270,930)" to="(300,930)"/> <wire from="(200,440)" to="(200,480)"/> <wire from="(260,980)" to="(260,1020)"/> <wire from="(1080,110)" to="(1340,110)"/> <wire from="(970,760)" to="(1040,760)"/> <wire from="(1310,370)" to="(1340,370)"/> <wire from="(1510,100)" to="(1530,100)"/> <wire from="(890,990)" to="(970,990)"/> <wire from="(1290,40)" to="(1310,40)"/> <wire from="(970,170)" to="(970,760)"/> <wire from="(720,1250)" to="(720,1260)"/> <wire from="(160,920)" to="(220,920)"/> <wire from="(180,940)" to="(240,940)"/> <wire from="(370,900)" to="(370,910)"/> <wire from="(770,690)" to="(770,760)"/> <wire from="(1310,1070)" to="(1310,1140)"/> <wire from="(840,660)" to="(880,660)"/> <wire from="(850,390)" to="(1080,390)"/> <wire from="(160,140)" to="(200,140)"/> <wire from="(1420,110)" to="(1470,110)"/> <wire from="(160,470)" to="(190,470)"/> <wire from="(160,1270)" to="(190,1270)"/> <wire from="(510,670)" to="(530,670)"/> <wire from="(500,500)" to="(850,500)"/> <wire from="(1200,1020)" to="(1340,1020)"/> <wire from="(750,100)" to="(780,100)"/> <wire from="(510,980)" to="(540,980)"/> <wire from="(160,740)" to="(440,740)"/> <wire from="(290,660)" to="(290,700)"/> <wire from="(1510,950)" to="(1580,950)"/> <wire from="(160,170)" to="(500,170)"/> <wire from="(510,360)" to="(520,360)"/> <wire from="(160,710)" to="(240,710)"/> <wire from="(1040,550)" to="(1070,550)"/> <wire from="(1380,160)" to="(1470,160)"/> <wire from="(1550,100)" to="(1580,100)"/> <wire from="(1310,1140)" to="(1340,1140)"/> <wire from="(780,1180)" to="(850,1180)"/> <wire from="(1470,670)" to="(1490,670)"/> <wire from="(740,110)" to="(750,110)"/> <wire from="(1310,40)" to="(1420,40)"/> <wire from="(1470,1160)" to="(1580,1160)"/> <wire from="(600,320)" to="(1240,320)"/> <wire from="(190,510)" to="(310,510)"/> <wire from="(160,1540)" to="(210,1540)"/> <wire from="(430,930)" to="(430,950)"/> <wire from="(1310,720)" to="(1310,790)"/> <wire from="(160,110)" to="(200,110)"/> <wire from="(200,1270)" to="(240,1270)"/> <wire from="(1380,1160)" to="(1430,1160)"/> <wire from="(160,860)" to="(450,860)"/> <wire from="(160,980)" to="(260,980)"/> <wire from="(270,400)" to="(290,400)"/> <wire from="(360,1130)" to="(380,1130)"/> <wire from="(670,780)" to="(670,1010)"/> <wire from="(1510,600)" to="(1580,600)"/> <wire from="(1570,1230)" to="(1580,1230)"/> <wire from="(240,370)" to="(260,370)"/> <wire from="(230,690)" to="(240,690)"/> <wire from="(1310,790)" to="(1340,790)"/> <wire from="(1410,580)" to="(1430,580)"/> <wire from="(1190,880)" to="(1190,1240)"/> <wire from="(770,110)" to="(780,110)"/> <wire from="(750,100)" to="(750,110)"/> <wire from="(160,1180)" to="(220,1180)"/> <wire from="(190,640)" to="(310,640)"/> <wire from="(1100,770)" to="(1200,770)"/> <wire from="(1310,370)" to="(1310,440)"/> <wire from="(1410,790)" to="(1410,860)"/> <wire from="(1420,320)" to="(1420,390)"/> <wire from="(160,560)" to="(200,560)"/> <wire from="(950,940)" to="(950,960)"/> <wire from="(160,80)" to="(200,80)"/> <wire from="(1380,810)" to="(1430,810)"/> <wire from="(510,980)" to="(510,1000)"/> <wire from="(1140,510)" to="(1220,510)"/> <wire from="(850,390)" to="(850,500)"/> <wire from="(1260,950)" to="(1340,950)"/> <wire from="(280,530)" to="(310,530)"/> <wire from="(770,550)" to="(790,550)"/> <wire from="(250,1150)" to="(270,1150)"/> <wire from="(430,850)" to="(450,850)"/> <wire from="(500,280)" to="(520,280)"/> <wire from="(480,580)" to="(500,580)"/> <wire from="(1080,110)" to="(1080,170)"/> <wire from="(340,230)" to="(940,230)"/> <wire from="(1040,490)" to="(1070,490)"/> <wire from="(830,760)" to="(860,760)"/> <wire from="(1060,960)" to="(1220,960)"/> <wire from="(1050,500)" to="(1080,500)"/> <wire from="(220,1040)" to="(620,1040)"/> <wire from="(1250,1090)" to="(1340,1090)"/> <wire from="(1310,440)" to="(1340,440)"/> <wire from="(1200,770)" to="(1200,940)"/> <wire from="(1510,170)" to="(1530,170)"/> <wire from="(830,620)" to="(840,620)"/> <wire from="(710,1300)" to="(720,1300)"/> <wire from="(230,1540)" to="(620,1540)"/> <wire from="(300,930)" to="(300,1000)"/> <wire from="(160,770)" to="(480,770)"/> <wire from="(460,330)" to="(520,330)"/> <wire from="(180,940)" to="(180,950)"/> <wire from="(860,690)" to="(860,760)"/> <wire from="(190,610)" to="(310,610)"/> <wire from="(430,870)" to="(430,890)"/> <wire from="(1410,440)" to="(1410,510)"/> <wire from="(390,500)" to="(500,500)"/> <wire from="(190,470)" to="(190,490)"/> <wire from="(160,50)" to="(200,50)"/> <wire from="(1380,460)" to="(1430,460)"/> <wire from="(1420,180)" to="(1470,180)"/> <wire from="(160,800)" to="(450,800)"/> <wire from="(420,630)" to="(460,630)"/> <wire from="(1000,600)" to="(1340,600)"/> <wire from="(270,1140)" to="(290,1140)"/> <wire from="(500,170)" to="(500,280)"/> <wire from="(1510,1020)" to="(1580,1020)"/> <wire from="(390,630)" to="(400,630)"/> <wire from="(1310,90)" to="(1340,90)"/> <wire from="(1380,230)" to="(1470,230)"/> <wire from="(320,1260)" to="(400,1260)"/> <wire from="(1550,170)" to="(1580,170)"/> <wire from="(700,810)" to="(700,1190)"/> <wire from="(1380,640)" to="(1410,640)"/> <wire from="(1030,790)" to="(1040,790)"/> <wire from="(1470,740)" to="(1490,740)"/> <wire from="(1080,190)" to="(1100,190)"/> <wire from="(890,1030)" to="(970,1030)"/> <wire from="(620,1330)" to="(740,1330)"/> <wire from="(180,1070)" to="(180,1080)"/> <wire from="(280,530)" to="(280,550)"/> <wire from="(200,600)" to="(310,600)"/> <wire from="(1310,790)" to="(1310,860)"/> <wire from="(160,20)" to="(200,20)"/> <wire from="(1220,810)" to="(1340,810)"/> <wire from="(160,1300)" to="(200,1300)"/> <wire from="(480,340)" to="(520,340)"/> <wire from="(510,380)" to="(540,380)"/> <wire from="(650,1010)" to="(670,1010)"/> <wire from="(740,130)" to="(770,130)"/> <wire from="(430,950)" to="(450,950)"/> <wire from="(410,930)" to="(430,930)"/> <wire from="(940,970)" to="(970,970)"/> <wire from="(1510,670)" to="(1580,670)"/> <wire from="(370,900)" to="(380,900)"/> <wire from="(160,1010)" to="(170,1010)"/> <wire from="(1310,860)" to="(1340,860)"/> <wire from="(480,340)" to="(480,580)"/> <wire from="(1190,880)" to="(1340,880)"/> <wire from="(1010,740)" to="(1020,740)"/> <wire from="(1410,650)" to="(1430,650)"/> <wire from="(1000,450)" to="(1000,520)"/> <wire from="(1310,440)" to="(1310,510)"/> <wire from="(590,970)" to="(590,1000)"/> <wire from="(1380,880)" to="(1430,880)"/> <wire from="(220,1330)" to="(260,1330)"/> <wire from="(780,1320)" to="(1310,1320)"/> <wire from="(950,960)" to="(970,960)"/> <wire from="(770,620)" to="(790,620)"/> <wire from="(160,620)" to="(310,620)"/> <wire from="(500,350)" to="(520,350)"/> <wire from="(500,170)" to="(970,170)"/> <wire from="(430,1190)" to="(700,1190)"/> <wire from="(230,410)" to="(240,410)"/> <wire from="(1310,510)" to="(1340,510)"/> <wire from="(1510,240)" to="(1530,240)"/> <wire from="(830,690)" to="(840,690)"/> <wire from="(1200,940)" to="(1200,1020)"/> <wire from="(190,1260)" to="(240,1260)"/> <wire from="(1070,460)" to="(1070,490)"/> <wire from="(1410,510)" to="(1410,580)"/> <wire from="(1420,40)" to="(1420,110)"/> <wire from="(1310,90)" to="(1310,160)"/> <wire from="(160,440)" to="(200,440)"/> <wire from="(160,290)" to="(520,290)"/> <wire from="(1380,530)" to="(1430,530)"/> <wire from="(160,1240)" to="(200,1240)"/> <wire from="(1420,250)" to="(1470,250)"/> <wire from="(160,350)" to="(260,350)"/> <wire from="(620,710)" to="(790,710)"/> <wire from="(620,710)" to="(620,860)"/> <wire from="(1410,640)" to="(1410,650)"/> <wire from="(160,1570)" to="(190,1570)"/> <wire from="(360,300)" to="(520,300)"/> <wire from="(620,1240)" to="(640,1240)"/> <wire from="(280,1060)" to="(300,1060)"/> <wire from="(1510,1090)" to="(1580,1090)"/> <wire from="(420,890)" to="(430,890)"/> <wire from="(1310,160)" to="(1340,160)"/> <wire from="(350,980)" to="(360,980)"/> <wire from="(1380,300)" to="(1470,300)"/> <wire from="(1460,950)" to="(1490,950)"/> <wire from="(210,1160)" to="(220,1160)"/> <wire from="(1550,240)" to="(1580,240)"/> <wire from="(1470,810)" to="(1490,810)"/> <wire from="(220,920)" to="(220,1040)"/> <comp lib="6" loc="(184,436)" name="Text"> <a name="text" val="STK2"/> </comp> <comp lib="0" loc="(1580,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADD/SB06"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,80)" name="Tunnel"> <a name="label" val="BRFW"/> </comp> <comp lib="1" loc="(230,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1010,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="1" loc="(1510,1090)" name="Buffer"/> <comp lib="0" loc="(160,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D38"/> </comp> <comp lib="0" loc="(160,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D76"/> </comp> <comp lib="0" loc="(1550,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="1" loc="(530,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1260,950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D52"/> </comp> <comp loc="(1380,590)" name="D_Latch"> <a name="label" val="ors_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1380,310)" name="D_Latch"> <a name="label" val="sbadd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(200,200)" name="Tunnel"> <a name="label" val="RTI/5"/> </comp> <comp loc="(1380,100)" name="D_Latch"> <a name="label" val="ndbadd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(830,560)" name="D_Latch"> <a name="label" val="acin_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D33"/> </comp> <comp lib="0" loc="(160,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D30"/> </comp> <comp lib="0" loc="(1580,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/ACIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1550,310)" name="Buffer"/> <comp lib="0" loc="(160,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D41"/> </comp> <comp lib="0" loc="(260,1330)" name="Tunnel"> <a name="label" val="RTI/5"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D26"/> </comp> <comp lib="6" loc="(184,223)" name="Text"> <a name="text" val="ROR"/> </comp> <comp lib="0" loc="(1010,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="1" loc="(1510,460)" name="Buffer"/> <comp lib="6" loc="(603,855)" name="Text"> <a name="text" val="BRX"/> </comp> <comp loc="(1470,1150)" name="D_Latch"> <a name="label" val="dsa_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1510,740)" name="Buffer"/> <comp lib="0" loc="(200,140)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="1" loc="(270,700)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D27"/> </comp> <comp lib="0" loc="(160,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK6E"/> </comp> <comp lib="6" loc="(1078,104)" name="Text"> <a name="text" val="#NDB/ADD"/> </comp> <comp lib="1" loc="(330,1130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1580,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADL/ADD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1290,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(160,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D34"/> </comp> <comp lib="0" loc="(1580,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADD/ADL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D36"/> </comp> <comp lib="6" loc="(1158,764)" name="Text"> <a name="text" val="#ADD/SB06"/> </comp> <comp loc="(970,960)" name="ADD_SB7"> <a name="label" val="add_sb7_inst"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(230,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(1580,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/ADD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1290,40)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D69"/> </comp> <comp lib="1" loc="(1510,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(300,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,380)" name="Tunnel"> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(740,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="JSR/5"/> </comp> <comp lib="0" loc="(1580,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="AND"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1470,450)" name="D_Latch"> <a name="label" val="ands_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(190,1360)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="1" loc="(230,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1580,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SUMS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,1130)" name="Tunnel"> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(960,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="JSR/5"/> </comp> <comp lib="0" loc="(160,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D50"/> </comp> <comp lib="1" loc="(320,1260)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(160,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(190,1570)" name="Tunnel"> <a name="label" val="/C_OUT"/> </comp> <comp loc="(1380,520)" name="D_Latch"> <a name="label" val="eors_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D31"/> </comp> <comp lib="0" loc="(1580,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ORS"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(940,670)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(200,110)" name="Tunnel"> <a name="label" val="/ready"/> </comp> <comp loc="(830,700)" name="D_Latch"> <a name="label" val="acin_latch3"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(1003,667)" name="Text"> <a name="text" val="/ACIN"/> </comp> <comp lib="0" loc="(160,1540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/D_OUT"/> </comp> <comp lib="1" loc="(810,100)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(160,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D47"/> </comp> <comp lib="1" loc="(340,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(545,488)" name="Text"> <a name="text" val="#ADL/ADD"/> </comp> <comp lib="0" loc="(710,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> </comp> <comp lib="1" loc="(870,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1580,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(160,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D53"/> </comp> <comp lib="1" loc="(580,970)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1510,100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1100,770)" name="NOR Gate"/> <comp lib="0" loc="(1580,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SRS"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(660,317)" name="Text"> <a name="text" val="SB/ADD"/> </comp> <comp lib="0" loc="(530,670)" name="Tunnel"> <a name="label" val="INC_SB"/> </comp> <comp lib="1" loc="(680,1230)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(187,793)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="1" loc="(930,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PGX"/> </comp> <comp lib="1" loc="(1510,810)" name="Buffer"/> <comp lib="0" loc="(160,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D39"/> </comp> <comp lib="0" loc="(160,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D51"/> </comp> <comp lib="0" loc="(160,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D40"/> </comp> <comp lib="1" loc="(1550,240)" name="Buffer"/> <comp loc="(1470,660)" name="D_Latch"> <a name="label" val="acin_latch5"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(990,110)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D89"/> </comp> <comp lib="1" loc="(1550,170)" name="Buffer"/> <comp lib="0" loc="(260,1180)" name="Tunnel"> <a name="label" val="RTS/5"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D42"/> </comp> <comp loc="(830,630)" name="D_Latch"> <a name="label" val="acin_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1580,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EORS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D84"/> </comp> <comp lib="1" loc="(1550,380)" name="Buffer"/> <comp lib="0" loc="(240,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(1510,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1510,880)" name="Buffer"/> <comp lib="0" loc="(1580,1160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/DSA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STKOP"/> </comp> <comp lib="1" loc="(340,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1380,240)" name="D_Latch"> <a name="label" val="zadd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D75"/> </comp> <comp lib="0" loc="(890,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(280,1060)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(740,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> </comp> <comp lib="1" loc="(570,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1446,924)" name="Text"> <a name="text" val="care!"/> </comp> <comp lib="1" loc="(400,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1550,100)" name="Buffer"/> <comp lib="1" loc="(580,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D35"/> </comp> <comp loc="(1380,380)" name="D_Latch"> <a name="label" val="adladd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(350,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRFW"/> </comp> <comp lib="1" loc="(870,1240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(540,410)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D32"/> </comp> <comp lib="6" loc="(282,1534)" name="Text"> <a name="text" val="D_OUT"/> </comp> <comp lib="0" loc="(160,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D87"/> </comp> <comp lib="6" loc="(189,764)" name="Text"> <a name="text" val="RET"/> </comp> <comp loc="(1380,870)" name="D_Latch"> <a name="label" val="daa_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(200,50)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T7"/> </comp> <comp loc="(830,770)" name="D_Latch"> <a name="label" val="acin_latch4"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(363,1252)" name="Text"> <a name="text" val="NOADL"/> </comp> <comp lib="6" loc="(1266,385)" name="Text"> <a name="text" val="#ADL/ADD"/> </comp> <comp lib="0" loc="(160,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D49"/> </comp> <comp lib="1" loc="(600,320)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp loc="(1380,800)" name="D_Latch"> <a name="label" val="sums_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T6"/> </comp> <comp lib="1" loc="(420,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(190,1420)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="1" loc="(650,1010)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(890,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(350,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(170,1010)" name="Tunnel"> <a name="label" val="JSR/5"/> </comp> <comp loc="(1380,730)" name="D_Latch"> <a name="label" val="srs_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1380,1080)" name="D_Latch"> <a name="label" val="addadl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1580,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NDB/ADD"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1510,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(340,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp loc="(1380,1150)" name="D_Latch"> <a name="label" val="dsa_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1380,450)" name="D_Latch"> <a name="label" val="ands_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1580,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ANDS"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1470,520)" name="D_Latch"> <a name="label" val="eors_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1380,1010)" name="D_Latch"> <a name="label" val="addsb06_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1470,800)" name="D_Latch"> <a name="label" val="sums_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(270,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(390,630)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="1" loc="(370,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1470,870)" name="D_Latch"> <a name="label" val="daa_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,1240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D86"/> </comp> <comp lib="0" loc="(170,890)" name="Tunnel"> <a name="label" val="SBC0"/> </comp> <comp loc="(1380,940)" name="D_Latch"> <a name="label" val="addsb7_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(160,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D45"/> </comp> <comp lib="0" loc="(160,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D43"/> </comp> <comp lib="1" loc="(780,1240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1102,954)" name="Text"> <a name="text" val="#ADD/SB7"/> </comp> <comp lib="1" loc="(490,860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(300,1060)" name="Tunnel"> <a name="label" val="AND"/> </comp> <comp lib="0" loc="(160,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D37"/> </comp> <comp lib="0" loc="(160,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="0" loc="(940,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(780,1320)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1290,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D85"/> </comp> <comp lib="1" loc="(1510,950)" name="Buffer"/> <comp lib="0" loc="(160,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(270,400)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1580,1270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1580,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADD/SB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(780,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(710,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRFW"/> </comp> <comp lib="1" loc="(1140,180)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(410,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="0" loc="(210,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(890,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="1" loc="(1510,600)" name="Buffer"/> <comp lib="0" loc="(190,1390)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(350,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(1580,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/DAA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(375,443)" name="Text"> <a name="text" val="OR"/> </comp> <comp lib="0" loc="(1580,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/ADD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,1300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D88"/> </comp> <comp lib="1" loc="(390,500)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(1380,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1510,1020)" name="Buffer"/> <comp lib="1" loc="(1140,510)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(1040,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="6" loc="(685,775)" name="Text"> <a name="text" val="CSET"/> </comp> <comp loc="(1380,170)" name="D_Latch"> <a name="label" val="dbadd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1040,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="AND"/> </comp> <comp lib="0" loc="(1580,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="INC_SB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D44"/> </comp> <comp lib="0" loc="(160,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D56"/> </comp> <comp lib="1" loc="(270,930)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1510,530)" name="Buffer"/> <comp lib="0" loc="(1570,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="INC_SB"/> </comp> <comp lib="1" loc="(520,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D70"/> </comp> <comp lib="0" loc="(160,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D54"/> </comp> <comp lib="0" loc="(190,1510)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(940,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(190,1450)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D29"/> </comp> <comp lib="1" loc="(1510,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1470,590)" name="D_Latch"> <a name="label" val="ors_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1470,730)" name="D_Latch"> <a name="label" val="srs_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(182,255)" name="Text"> <a name="text" val="EOR"/> </comp> <comp lib="1" loc="(250,1150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1510,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(715,806)" name="Text"> <a name="text" val="PGX"/> </comp> <comp lib="1" loc="(240,1060)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="BRANCH_LOGIC"> <a name="circuit" val="BRANCH_LOGIC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M62,170 Q66,180 70,170" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ced8ff" height="240" stroke="#000000" stroke-width="2" width="130" x="50" y="170"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="214">/BRTAKEN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="156" y="354">BRFW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="194">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="214">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="274">D126</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="394">BR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="234">/IR5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="295">/C_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="354">/Z_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="334">/N_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="315">/V_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="254">D121</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="374">DB7</text> <circ-port height="8" pin="100,30" width="8" x="46" y="226"/> <circ-port height="8" pin="100,130" width="8" x="46" y="266"/> <circ-port height="8" pin="100,180" width="8" x="46" y="286"/> <circ-port height="8" pin="100,230" width="8" x="46" y="306"/> <circ-port height="8" pin="100,280" width="8" x="46" y="326"/> <circ-port height="8" pin="100,350" width="8" x="46" y="346"/> <circ-port height="8" pin="100,410" width="8" x="46" y="186"/> <circ-port height="8" pin="100,450" width="8" x="46" y="206"/> <circ-port height="8" pin="100,490" width="8" x="46" y="366"/> <circ-port height="8" pin="100,570" width="8" x="46" y="386"/> <circ-port height="10" pin="590,260" width="10" x="175" y="205"/> <circ-port height="10" pin="590,670" width="10" x="175" y="345"/> <circ-port height="8" pin="100,80" width="8" x="46" y="246"/> <circ-anchor facing="east" height="6" width="6" x="47" y="167"/> </appear> <wire from="(160,550)" to="(160,620)"/> <wire from="(100,130)" to="(160,130)"/> <wire from="(100,450)" to="(160,450)"/> <wire from="(260,280)" to="(260,290)"/> <wire from="(260,240)" to="(260,260)"/> <wire from="(100,350)" to="(210,350)"/> <wire from="(100,230)" to="(210,230)"/> <wire from="(330,470)" to="(330,620)"/> <wire from="(170,340)" to="(210,340)"/> <wire from="(170,240)" to="(210,240)"/> <wire from="(160,640)" to="(160,670)"/> <wire from="(260,280)" to="(290,280)"/> <wire from="(260,260)" to="(290,260)"/> <wire from="(160,450)" to="(160,550)"/> <wire from="(100,490)" to="(190,490)"/> <wire from="(330,470)" to="(360,470)"/> <wire from="(210,490)" to="(360,490)"/> <wire from="(430,460)" to="(450,460)"/> <wire from="(430,480)" to="(450,480)"/> <wire from="(390,480)" to="(410,480)"/> <wire from="(160,250)" to="(180,250)"/> <wire from="(160,290)" to="(180,290)"/> <wire from="(160,550)" to="(180,550)"/> <wire from="(250,340)" to="(270,340)"/> <wire from="(450,260)" to="(590,260)"/> <wire from="(430,410)" to="(430,460)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(250,290)" to="(260,290)"/> <wire from="(200,300)" to="(210,300)"/> <wire from="(270,290)" to="(270,340)"/> <wire from="(520,480)" to="(520,670)"/> <wire from="(100,410)" to="(430,410)"/> <wire from="(270,190)" to="(270,250)"/> <wire from="(170,80)" to="(170,200)"/> <wire from="(350,270)" to="(410,270)"/> <wire from="(160,330)" to="(210,330)"/> <wire from="(160,190)" to="(210,190)"/> <wire from="(220,620)" to="(330,620)"/> <wire from="(100,180)" to="(210,180)"/> <wire from="(100,280)" to="(210,280)"/> <wire from="(390,30)" to="(390,250)"/> <wire from="(160,670)" to="(520,670)"/> <wire from="(100,30)" to="(390,30)"/> <wire from="(570,670)" to="(590,670)"/> <wire from="(490,480)" to="(520,480)"/> <wire from="(270,290)" to="(290,290)"/> <wire from="(270,250)" to="(290,250)"/> <wire from="(220,550)" to="(370,550)"/> <wire from="(160,290)" to="(160,330)"/> <wire from="(170,300)" to="(170,340)"/> <wire from="(160,250)" to="(160,290)"/> <wire from="(170,200)" to="(170,240)"/> <wire from="(390,250)" to="(410,250)"/> <wire from="(520,670)" to="(550,670)"/> <wire from="(160,620)" to="(180,620)"/> <wire from="(160,640)" to="(180,640)"/> <wire from="(250,190)" to="(270,190)"/> <wire from="(100,570)" to="(180,570)"/> <wire from="(170,300)" to="(180,300)"/> <wire from="(170,200)" to="(180,200)"/> <wire from="(200,290)" to="(210,290)"/> <wire from="(200,250)" to="(210,250)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(370,500)" to="(370,550)"/> <wire from="(100,80)" to="(170,80)"/> <wire from="(160,130)" to="(160,190)"/> <wire from="(170,240)" to="(170,300)"/> <wire from="(160,190)" to="(160,250)"/> <comp lib="1" loc="(250,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D121"/> </comp> <comp lib="6" loc="(233,163)" name="Text"> <a name="text" val="2-MUX"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D126"/> </comp> <comp lib="6" loc="(471,652)" name="Text"> <a name="text" val="BRFW_FF"/> </comp> <comp loc="(220,560)" name="D_Latch"> <a name="label" val="br2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IR5"/> </comp> <comp lib="1" loc="(430,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(210,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(250,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(250,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(200,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(590,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/BRTAKEN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(570,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Z_OUT"/> </comp> <comp lib="1" loc="(200,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(134,74)" name="Text"> <a name="text" val="/IR6"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="6" loc="(133,124)" name="Text"> <a name="text" val="/IR7"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(350,270)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(450,260)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(220,630)" name="D_Latch"> <a name="label" val="brfw_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/V_OUT"/> </comp> <comp lib="1" loc="(200,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(390,480)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(490,470)" name="D_Latch"> <a name="label" val="brfw_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/N_OUT"/> </comp> <comp lib="0" loc="(590,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BRFW"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> </circuit> <circuit name="PC_SETUP"> <a name="circuit" val="PC_SETUP"/> <a name="clabel" val="PROGRAM COUNTER SETUP"/> <a name="clabelup" val="west"/> <a name="clabelfont" val="SansSerif bold 16"/> <appear> <path d="M59,52 Q63,62 67,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#f5abff" height="300" stroke="#000000" stroke-width="2" width="170" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="164">BR0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="295">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="204">BR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="184">BR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="225">T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="244">T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="84">#ADL/PCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="193" y="105">PC/DB</text> <circ-port height="8" pin="80,690" width="8" x="46" y="156"/> <circ-port height="8" pin="80,40" width="8" x="46" y="76"/> <circ-port height="8" pin="80,70" width="8" x="46" y="96"/> <circ-port height="8" pin="80,150" width="8" x="86" y="46"/> <circ-port height="8" pin="80,180" width="8" x="96" y="46"/> <circ-port height="8" pin="80,210" width="8" x="106" y="46"/> <circ-port height="8" pin="80,250" width="8" x="116" y="46"/> <circ-port height="8" pin="80,290" width="8" x="126" y="46"/> <circ-port height="8" pin="80,330" width="8" x="136" y="46"/> <circ-port height="8" pin="80,360" width="8" x="146" y="46"/> <circ-port height="8" pin="80,390" width="8" x="156" y="46"/> <circ-port height="8" pin="80,440" width="8" x="186" y="46"/> <circ-port height="8" pin="80,480" width="8" x="46" y="286"/> <circ-port height="8" pin="80,520" width="8" x="46" y="196"/> <circ-port height="8" pin="80,560" width="8" x="46" y="176"/> <circ-port height="8" pin="80,600" width="8" x="46" y="216"/> <circ-port height="8" pin="80,640" width="8" x="46" y="236"/> <circ-port height="10" pin="1120,120" width="10" x="165" y="345"/> <circ-port height="10" pin="1120,200" width="10" x="155" y="345"/> <circ-port height="10" pin="1120,250" width="10" x="215" y="95"/> <circ-port height="10" pin="1120,370" width="10" x="135" y="345"/> <circ-port height="10" pin="1120,450" width="10" x="125" y="345"/> <circ-port height="10" pin="1120,510" width="10" x="105" y="345"/> <circ-port height="10" pin="1120,590" width="10" x="95" y="345"/> <circ-port height="10" pin="1120,660" width="10" x="75" y="345"/> <circ-port height="10" pin="1120,630" width="10" x="215" y="75"/> <circ-port height="10" pin="1120,750" width="10" x="185" y="345"/> <circ-port height="10" pin="1120,820" width="10" x="195" y="345"/> <circ-port height="10" pin="1120,870" width="10" x="65" y="345"/> <circ-anchor facing="east" height="6" width="6" x="57" y="47"/> </appear> <wire from="(260,290)" to="(320,290)"/> <wire from="(930,810)" to="(980,810)"/> <wire from="(660,160)" to="(780,160)"/> <wire from="(440,150)" to="(500,150)"/> <wire from="(500,660)" to="(690,660)"/> <wire from="(810,630)" to="(1120,630)"/> <wire from="(810,870)" to="(1120,870)"/> <wire from="(870,740)" to="(870,810)"/> <wire from="(520,430)" to="(520,500)"/> <wire from="(870,70)" to="(870,100)"/> <wire from="(240,150)" to="(240,230)"/> <wire from="(1060,450)" to="(1120,450)"/> <wire from="(1060,370)" to="(1120,370)"/> <wire from="(540,540)" to="(540,570)"/> <wire from="(600,120)" to="(600,150)"/> <wire from="(240,230)" to="(540,230)"/> <wire from="(600,120)" to="(890,120)"/> <wire from="(600,200)" to="(890,200)"/> <wire from="(80,290)" to="(120,290)"/> <wire from="(500,380)" to="(600,380)"/> <wire from="(810,520)" to="(810,600)"/> <wire from="(930,200)" to="(1040,200)"/> <wire from="(930,120)" to="(1040,120)"/> <wire from="(870,500)" to="(870,580)"/> <wire from="(870,100)" to="(870,180)"/> <wire from="(590,390)" to="(590,410)"/> <wire from="(380,290)" to="(380,380)"/> <wire from="(810,520)" to="(830,520)"/> <wire from="(870,580)" to="(890,580)"/> <wire from="(870,100)" to="(890,100)"/> <wire from="(80,150)" to="(240,150)"/> <wire from="(870,500)" to="(890,500)"/> <wire from="(870,180)" to="(890,180)"/> <wire from="(870,740)" to="(890,740)"/> <wire from="(960,830)" to="(980,830)"/> <wire from="(870,180)" to="(870,290)"/> <wire from="(550,820)" to="(570,820)"/> <wire from="(600,150)" to="(620,150)"/> <wire from="(170,270)" to="(170,440)"/> <wire from="(960,290)" to="(960,520)"/> <wire from="(380,650)" to="(400,650)"/> <wire from="(440,390)" to="(460,390)"/> <wire from="(420,650)" to="(440,650)"/> <wire from="(550,850)" to="(580,850)"/> <wire from="(100,370)" to="(120,370)"/> <wire from="(80,390)" to="(100,390)"/> <wire from="(420,560)" to="(500,560)"/> <wire from="(330,670)" to="(460,670)"/> <wire from="(810,830)" to="(890,830)"/> <wire from="(530,570)" to="(540,570)"/> <wire from="(560,720)" to="(570,720)"/> <wire from="(590,390)" to="(600,390)"/> <wire from="(330,360)" to="(400,360)"/> <wire from="(590,350)" to="(600,350)"/> <wire from="(930,500)" to="(980,500)"/> <wire from="(930,580)" to="(980,580)"/> <wire from="(930,740)" to="(980,740)"/> <wire from="(300,70)" to="(870,70)"/> <wire from="(670,760)" to="(720,760)"/> <wire from="(710,370)" to="(890,370)"/> <wire from="(300,170)" to="(300,310)"/> <wire from="(960,760)" to="(960,830)"/> <wire from="(870,430)" to="(870,500)"/> <wire from="(720,760)" to="(720,830)"/> <wire from="(770,830)" to="(810,830)"/> <wire from="(1060,820)" to="(1120,820)"/> <wire from="(600,170)" to="(600,200)"/> <wire from="(690,660)" to="(1120,660)"/> <wire from="(560,770)" to="(560,790)"/> <wire from="(280,140)" to="(320,140)"/> <wire from="(930,450)" to="(1040,450)"/> <wire from="(930,370)" to="(1040,370)"/> <wire from="(80,210)" to="(180,210)"/> <wire from="(870,350)" to="(870,430)"/> <wire from="(960,520)" to="(960,600)"/> <wire from="(570,780)" to="(570,820)"/> <wire from="(870,350)" to="(890,350)"/> <wire from="(870,430)" to="(890,430)"/> <wire from="(960,760)" to="(980,760)"/> <wire from="(960,600)" to="(980,600)"/> <wire from="(960,520)" to="(980,520)"/> <wire from="(240,260)" to="(240,740)"/> <wire from="(1020,820)" to="(1040,820)"/> <wire from="(570,730)" to="(590,730)"/> <wire from="(540,540)" to="(560,540)"/> <wire from="(80,70)" to="(300,70)"/> <wire from="(710,430)" to="(730,430)"/> <wire from="(360,120)" to="(380,120)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(380,380)" to="(400,380)"/> <wire from="(720,830)" to="(750,830)"/> <wire from="(560,750)" to="(590,750)"/> <wire from="(500,100)" to="(520,100)"/> <wire from="(240,260)" to="(520,260)"/> <wire from="(870,290)" to="(960,290)"/> <wire from="(870,580)" to="(870,740)"/> <wire from="(220,260)" to="(240,260)"/> <wire from="(490,580)" to="(500,580)"/> <wire from="(300,170)" to="(380,170)"/> <wire from="(580,790)" to="(580,850)"/> <wire from="(300,70)" to="(300,120)"/> <wire from="(260,40)" to="(260,290)"/> <wire from="(710,450)" to="(710,690)"/> <wire from="(810,600)" to="(890,600)"/> <wire from="(580,790)" to="(590,790)"/> <wire from="(500,510)" to="(560,510)"/> <wire from="(80,690)" to="(710,690)"/> <wire from="(620,520)" to="(810,520)"/> <wire from="(380,160)" to="(380,170)"/> <wire from="(380,120)" to="(380,140)"/> <wire from="(690,440)" to="(730,440)"/> <wire from="(80,250)" to="(190,250)"/> <wire from="(770,440)" to="(810,440)"/> <wire from="(1060,510)" to="(1120,510)"/> <wire from="(1060,590)" to="(1120,590)"/> <wire from="(1060,750)" to="(1120,750)"/> <wire from="(260,40)" to="(500,40)"/> <wire from="(160,360)" to="(330,360)"/> <wire from="(850,520)" to="(890,520)"/> <wire from="(690,440)" to="(690,660)"/> <wire from="(500,120)" to="(500,150)"/> <wire from="(590,330)" to="(590,350)"/> <wire from="(720,760)" to="(890,760)"/> <wire from="(150,190)" to="(180,190)"/> <wire from="(80,520)" to="(110,520)"/> <wire from="(80,600)" to="(110,600)"/> <wire from="(1020,510)" to="(1040,510)"/> <wire from="(1020,590)" to="(1040,590)"/> <wire from="(1020,750)" to="(1040,750)"/> <wire from="(80,640)" to="(110,640)"/> <wire from="(80,560)" to="(110,560)"/> <wire from="(810,830)" to="(810,870)"/> <wire from="(540,790)" to="(560,790)"/> <wire from="(80,480)" to="(300,480)"/> <wire from="(600,170)" to="(620,170)"/> <wire from="(570,780)" to="(590,780)"/> <wire from="(300,310)" to="(320,310)"/> <wire from="(360,290)" to="(380,290)"/> <wire from="(440,650)" to="(460,650)"/> <wire from="(440,370)" to="(460,370)"/> <wire from="(530,530)" to="(560,530)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(80,330)" to="(100,330)"/> <wire from="(960,600)" to="(960,760)"/> <wire from="(380,380)" to="(380,560)"/> <wire from="(870,290)" to="(870,350)"/> <wire from="(170,270)" to="(180,270)"/> <wire from="(710,370)" to="(710,430)"/> <wire from="(280,140)" to="(280,200)"/> <wire from="(800,460)" to="(810,460)"/> <wire from="(500,40)" to="(500,100)"/> <wire from="(520,500)" to="(530,500)"/> <wire from="(440,390)" to="(440,650)"/> <wire from="(570,720)" to="(570,730)"/> <wire from="(560,750)" to="(560,760)"/> <wire from="(280,200)" to="(600,200)"/> <wire from="(660,370)" to="(710,370)"/> <wire from="(220,200)" to="(280,200)"/> <wire from="(150,180)" to="(150,190)"/> <wire from="(540,230)" to="(540,360)"/> <wire from="(520,430)" to="(710,430)"/> <wire from="(540,360)" to="(600,360)"/> <wire from="(80,40)" to="(260,40)"/> <wire from="(560,120)" to="(600,120)"/> <wire from="(780,160)" to="(780,250)"/> <wire from="(810,600)" to="(810,630)"/> <wire from="(1060,200)" to="(1120,200)"/> <wire from="(1060,120)" to="(1120,120)"/> <wire from="(850,450)" to="(890,450)"/> <wire from="(100,330)" to="(100,350)"/> <wire from="(100,370)" to="(100,390)"/> <wire from="(80,360)" to="(120,360)"/> <wire from="(780,250)" to="(1120,250)"/> <wire from="(870,810)" to="(890,810)"/> <wire from="(540,760)" to="(560,760)"/> <wire from="(240,740)" to="(590,740)"/> <wire from="(710,450)" to="(730,450)"/> <wire from="(80,440)" to="(170,440)"/> <wire from="(300,120)" to="(320,120)"/> <wire from="(380,160)" to="(400,160)"/> <wire from="(520,260)" to="(520,370)"/> <wire from="(380,560)" to="(400,560)"/> <wire from="(560,770)" to="(590,770)"/> <wire from="(500,120)" to="(520,120)"/> <wire from="(300,310)" to="(300,480)"/> <wire from="(330,360)" to="(330,670)"/> <wire from="(520,370)" to="(600,370)"/> <wire from="(80,180)" to="(150,180)"/> <wire from="(550,500)" to="(560,500)"/> <wire from="(580,330)" to="(590,330)"/> <wire from="(580,410)" to="(590,410)"/> <comp lib="0" loc="(1120,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#ADL/PCL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D94"/> </comp> <comp lib="0" loc="(540,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp loc="(930,360)" name="D_Latch"> <a name="label" val="pcl_adl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1060,370)" name="Buffer"/> <comp lib="0" loc="(80,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR0"/> </comp> <comp lib="0" loc="(1120,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PC/DB"/> <a name="labelloc" val="east"/> </comp> <comp loc="(930,510)" name="D_Latch"> <a name="label" val="pcl_pcl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(664,466)" name="Text"> <a name="text" val="DL/PCH"/> </comp> <comp lib="6" loc="(111,144)" name="Text"> <a name="text" val="JSR/5"/> </comp> <comp lib="0" loc="(550,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(1020,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(1120,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DL/PCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1060,200)" name="Buffer"/> <comp lib="0" loc="(110,640)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="1" loc="(1060,120)" name="Buffer"/> <comp lib="0" loc="(1120,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,290)" name="Tunnel"> <a name="label" val="RTS/5"/> </comp> <comp lib="1" loc="(220,260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(770,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1120,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1060,750)" name="Buffer"/> <comp lib="1" loc="(1020,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(530,570)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T1"/> </comp> <comp lib="6" loc="(448,256)" name="Text"> <a name="text" val="ABS/2"/> </comp> <comp lib="0" loc="(80,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D129"/> </comp> <comp lib="1" loc="(660,370)" name="NOR Gate"/> <comp lib="0" loc="(80,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D77"/> </comp> <comp lib="1" loc="(1020,820)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1060,450)" name="Buffer"/> <comp lib="1" loc="(500,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp loc="(930,110)" name="D_Latch"> <a name="label" val="pcl_db_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D56"/> </comp> <comp lib="0" loc="(1120,870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#PCH/PCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,600)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="1" loc="(1060,820)" name="Buffer"/> <comp lib="0" loc="(560,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS/5"/> </comp> <comp lib="1" loc="(1020,510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(670,760)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(80,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(420,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(688,156)" name="Text"> <a name="text" val="PC/DB"/> </comp> <comp lib="1" loc="(850,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(550,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp loc="(930,750)" name="D_Latch"> <a name="label" val="adh_pch_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(420,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(500,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS/5"/> </comp> <comp lib="0" loc="(110,560)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(220,200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1060,510)" name="Buffer"/> <comp lib="0" loc="(80,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D96"/> </comp> <comp loc="(930,190)" name="D_Latch"> <a name="label" val="pch_db_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1120,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,520)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="6" loc="(198,357)" name="Text"> <a name="text" val="JB"/> </comp> <comp lib="1" loc="(850,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="6" loc="(768,515)" name="Text"> <a name="text" val="#ADL/PCL"/> </comp> <comp lib="6" loc="(732,364)" name="Text"> <a name="text" val="#PCL/ADL"/> </comp> <comp loc="(560,110)" name="D_Latch"> <a name="label" val="pcl_db_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D95"/> </comp> <comp lib="1" loc="(660,160)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(930,440)" name="D_Latch"> <a name="label" val="pch_adh_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1120,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> <a name="labelloc" val="east"/> </comp> <comp loc="(930,820)" name="D_Latch"> <a name="label" val="pch_pch_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(530,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp loc="(360,300)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D78"/> </comp> <comp lib="0" loc="(490,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="6" loc="(759,753)" name="Text"> <a name="text" val="#ADH/PCH"/> </comp> <comp lib="1" loc="(620,520)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp loc="(930,590)" name="D_Latch"> <a name="label" val="adl_pcl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(1120,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1120,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,130)" name="D_Latch"> <a name="label" val="pch_db_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(380,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(1120,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1120,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(80,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(80,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR3"/> </comp> <comp lib="1" loc="(770,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1060,590)" name="Buffer"/> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D84"/> </comp> <comp lib="6" loc="(123,434)" name="Text"> <a name="text" val="Push/pull"/> </comp> <comp lib="6" loc="(531,655)" name="Text"> <a name="text" val="DL/PCH"/> </comp> <comp lib="6" loc="(612,112)" name="Text"> <a name="text" val="#PCL/DB"/> </comp> <comp lib="1" loc="(500,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(160,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(458,194)" name="Text"> <a name="text" val="#PCH/DB"/> </comp> <comp lib="1" loc="(440,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D83"/> </comp> </circuit> <circuit name="DISPATCH"> <a name="circuit" val="DISPATCH"/> <a name="clabel" val="DISPATCH"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffac65" height="330" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="324">RDY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="105">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="124">BRK6E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="306" y="304">/TWOCYCLE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="164">BR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="144">BR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="185">/IMPLIED</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="318" y="245">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="284">/BRTAKEN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="333" y="85">T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="334" y="124">T6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="335" y="144">T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="323" y="344">TRES2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="334" y="104">T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="264">BFRW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="304">DORES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="204">#ADL/PCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="184">RESP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="344">ACR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="224">PC/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="244">B_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="334" y="364">/T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="325" y="323">STOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="322" y="283">ACRL2</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="319" y="372">WR</text> <circ-port height="8" pin="110,40" width="8" x="46" y="76"/> <circ-port height="8" pin="110,70" width="8" x="46" y="96"/> <circ-port height="8" pin="110,160" width="8" x="46" y="116"/> <circ-port height="8" pin="110,190" width="8" x="46" y="136"/> <circ-port height="8" pin="110,220" width="8" x="46" y="176"/> <circ-port height="8" pin="110,250" width="8" x="46" y="336"/> <circ-port height="8" pin="110,340" width="8" x="66" y="46"/> <circ-port height="8" pin="110,370" width="8" x="76" y="46"/> <circ-port height="8" pin="110,710" width="8" x="176" y="46"/> <circ-port height="8" pin="110,740" width="8" x="186" y="46"/> <circ-port height="8" pin="110,770" width="8" x="196" y="46"/> <circ-port height="8" pin="110,800" width="8" x="216" y="46"/> <circ-port height="8" pin="110,830" width="8" x="226" y="46"/> <circ-port height="8" pin="110,860" width="8" x="236" y="46"/> <circ-port height="8" pin="110,890" width="8" x="246" y="46"/> <circ-port height="8" pin="110,950" width="8" x="46" y="236"/> <circ-port height="8" pin="110,1010" width="8" x="46" y="276"/> <circ-port height="8" pin="110,1560" width="8" x="346" y="296"/> <circ-port height="8" pin="110,920" width="8" x="46" y="316"/> <circ-port height="10" pin="1180,160" width="10" x="345" y="115"/> <circ-port height="10" pin="1180,270" width="10" x="345" y="135"/> <circ-port height="10" pin="1180,430" width="10" x="75" y="375"/> <circ-port height="10" pin="1180,810" width="10" x="95" y="375"/> <circ-port height="10" pin="1180,850" width="10" x="115" y="375"/> <circ-port height="10" pin="1180,740" width="10" x="135" y="375"/> <circ-port height="10" pin="1180,680" width="10" x="155" y="375"/> <circ-port height="10" pin="1180,1400" width="10" x="195" y="375"/> <circ-port height="10" pin="1180,1540" width="10" x="345" y="75"/> <circ-port height="10" pin="1180,1640" width="10" x="235" y="375"/> <circ-port height="10" pin="1180,900" width="10" x="345" y="235"/> <circ-port height="10" pin="1180,1750" width="10" x="295" y="375"/> <circ-port height="8" pin="110,470" width="8" x="96" y="46"/> <circ-port height="8" pin="110,500" width="8" x="106" y="46"/> <circ-port height="8" pin="110,530" width="8" x="116" y="46"/> <circ-port height="8" pin="110,410" width="8" x="46" y="156"/> <circ-port height="8" pin="110,440" width="8" x="86" y="46"/> <circ-port height="10" pin="1180,480" width="10" x="345" y="315"/> <circ-port height="8" pin="110,280" width="8" x="46" y="296"/> <circ-port height="8" pin="110,560" width="8" x="126" y="46"/> <circ-port height="8" pin="110,590" width="8" x="136" y="46"/> <circ-port height="8" pin="110,620" width="8" x="146" y="46"/> <circ-port height="8" pin="110,650" width="8" x="156" y="46"/> <circ-port height="8" pin="110,680" width="8" x="166" y="46"/> <circ-port height="8" pin="110,310" width="8" x="46" y="216"/> <circ-port height="8" pin="110,980" width="8" x="46" y="256"/> <circ-port height="8" pin="110,1870" width="8" x="346" y="176"/> <circ-port height="8" pin="110,1670" width="8" x="46" y="196"/> <circ-port height="10" pin="1180,350" width="10" x="345" y="335"/> <circ-port height="10" pin="1180,1250" width="10" x="345" y="95"/> <circ-port height="10" pin="1180,1470" width="10" x="345" y="355"/> <circ-port height="10" pin="1180,20" width="10" x="345" y="275"/> <circ-port height="10" pin="1180,1080" width="10" x="315" y="375"/> <circ-anchor facing="east" height="6" width="6" x="77" y="47"/> </appear> <wire from="(840,1240)" to="(890,1240)"/> <wire from="(190,360)" to="(510,360)"/> <wire from="(1070,1540)" to="(1180,1540)"/> <wire from="(750,190)" to="(800,190)"/> <wire from="(880,540)" to="(1000,540)"/> <wire from="(870,1700)" to="(870,1770)"/> <wire from="(460,220)" to="(510,220)"/> <wire from="(110,830)" to="(160,830)"/> <wire from="(1050,160)" to="(1110,160)"/> <wire from="(740,1630)" to="(780,1630)"/> <wire from="(680,680)" to="(780,680)"/> <wire from="(870,1220)" to="(870,1310)"/> <wire from="(350,990)" to="(350,1020)"/> <wire from="(990,830)" to="(990,850)"/> <wire from="(580,1220)" to="(580,1240)"/> <wire from="(300,170)" to="(300,260)"/> <wire from="(420,1390)" to="(510,1390)"/> <wire from="(870,1620)" to="(890,1620)"/> <wire from="(980,610)" to="(1000,610)"/> <wire from="(320,490)" to="(410,490)"/> <wire from="(510,620)" to="(530,620)"/> <wire from="(840,1320)" to="(840,1360)"/> <wire from="(550,970)" to="(580,970)"/> <wire from="(580,1000)" to="(610,1000)"/> <wire from="(150,580)" to="(170,580)"/> <wire from="(110,860)" to="(130,860)"/> <wire from="(820,600)" to="(850,600)"/> <wire from="(550,1680)" to="(640,1680)"/> <wire from="(280,80)" to="(290,80)"/> <wire from="(700,220)" to="(700,280)"/> <wire from="(110,70)" to="(120,70)"/> <wire from="(770,890)" to="(780,890)"/> <wire from="(590,20)" to="(1180,20)"/> <wire from="(860,1620)" to="(870,1620)"/> <wire from="(700,180)" to="(710,180)"/> <wire from="(110,1010)" to="(240,1010)"/> <wire from="(1030,1780)" to="(1050,1780)"/> <wire from="(490,970)" to="(490,1040)"/> <wire from="(660,1250)" to="(780,1250)"/> <wire from="(1010,1300)" to="(1010,1330)"/> <wire from="(700,280)" to="(740,280)"/> <wire from="(770,1060)" to="(770,1080)"/> <wire from="(700,1010)" to="(700,1410)"/> <wire from="(820,100)" to="(840,100)"/> <wire from="(130,840)" to="(160,840)"/> <wire from="(970,250)" to="(990,250)"/> <wire from="(1110,400)" to="(1120,400)"/> <wire from="(370,1250)" to="(390,1250)"/> <wire from="(1110,1750)" to="(1180,1750)"/> <wire from="(620,440)" to="(710,440)"/> <wire from="(150,530)" to="(290,530)"/> <wire from="(110,40)" to="(120,40)"/> <wire from="(820,1140)" to="(890,1140)"/> <wire from="(990,1470)" to="(990,1590)"/> <wire from="(830,120)" to="(840,120)"/> <wire from="(810,580)" to="(820,580)"/> <wire from="(880,810)" to="(890,810)"/> <wire from="(440,120)" to="(510,120)"/> <wire from="(260,580)" to="(330,580)"/> <wire from="(740,1590)" to="(990,1590)"/> <wire from="(1050,30)" to="(1050,60)"/> <wire from="(760,1500)" to="(760,1530)"/> <wire from="(840,620)" to="(840,650)"/> <wire from="(320,610)" to="(320,690)"/> <wire from="(770,870)" to="(770,890)"/> <wire from="(140,560)" to="(140,590)"/> <wire from="(250,1720)" to="(290,1720)"/> <wire from="(600,700)" to="(600,720)"/> <wire from="(740,900)" to="(740,1050)"/> <wire from="(700,160)" to="(700,180)"/> <wire from="(970,140)" to="(970,250)"/> <wire from="(560,450)" to="(580,450)"/> <wire from="(550,120)" to="(570,120)"/> <wire from="(250,610)" to="(280,610)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(680,1520)" to="(710,1520)"/> <wire from="(570,610)" to="(600,610)"/> <wire from="(580,1260)" to="(610,1260)"/> <wire from="(550,1110)" to="(770,1110)"/> <wire from="(1030,270)" to="(1060,270)"/> <wire from="(110,800)" to="(130,800)"/> <wire from="(870,430)" to="(900,430)"/> <wire from="(440,120)" to="(440,300)"/> <wire from="(750,1170)" to="(950,1170)"/> <wire from="(840,170)" to="(910,170)"/> <wire from="(750,1170)" to="(750,1230)"/> <wire from="(870,1540)" to="(1010,1540)"/> <wire from="(770,1150)" to="(780,1150)"/> <wire from="(760,1360)" to="(840,1360)"/> <wire from="(1050,1740)" to="(1070,1740)"/> <wire from="(1010,1540)" to="(1030,1540)"/> <wire from="(500,1680)" to="(510,1680)"/> <wire from="(500,1200)" to="(510,1200)"/> <wire from="(1050,1760)" to="(1050,1780)"/> <wire from="(870,1770)" to="(870,1840)"/> <wire from="(930,270)" to="(990,270)"/> <wire from="(970,80)" to="(970,110)"/> <wire from="(760,280)" to="(800,280)"/> <wire from="(710,300)" to="(710,330)"/> <wire from="(130,840)" to="(130,860)"/> <wire from="(580,970)" to="(580,1000)"/> <wire from="(310,310)" to="(310,530)"/> <wire from="(380,130)" to="(380,160)"/> <wire from="(560,470)" to="(560,490)"/> <wire from="(470,1270)" to="(510,1270)"/> <wire from="(880,420)" to="(900,420)"/> <wire from="(820,1320)" to="(840,1320)"/> <wire from="(970,350)" to="(990,350)"/> <wire from="(490,1470)" to="(510,1470)"/> <wire from="(580,1240)" to="(600,1240)"/> <wire from="(680,220)" to="(700,220)"/> <wire from="(1010,1400)" to="(1010,1440)"/> <wire from="(770,980)" to="(990,980)"/> <wire from="(140,850)" to="(140,890)"/> <wire from="(550,1040)" to="(580,1040)"/> <wire from="(560,490)" to="(970,490)"/> <wire from="(220,720)" to="(240,720)"/> <wire from="(1050,160)" to="(1050,220)"/> <wire from="(980,850)" to="(990,850)"/> <wire from="(130,730)" to="(180,730)"/> <wire from="(1050,770)" to="(1050,800)"/> <wire from="(680,1590)" to="(740,1590)"/> <wire from="(660,1790)" to="(890,1790)"/> <wire from="(390,1230)" to="(390,1250)"/> <wire from="(430,950)" to="(430,970)"/> <wire from="(700,1540)" to="(700,1570)"/> <wire from="(820,30)" to="(1050,30)"/> <wire from="(780,660)" to="(780,680)"/> <wire from="(580,1260)" to="(580,1280)"/> <wire from="(460,1440)" to="(1010,1440)"/> <wire from="(990,900)" to="(990,980)"/> <wire from="(110,890)" to="(140,890)"/> <wire from="(760,1390)" to="(780,1390)"/> <wire from="(1030,60)" to="(1050,60)"/> <wire from="(1030,350)" to="(1180,350)"/> <wire from="(1110,310)" to="(1120,310)"/> <wire from="(270,1700)" to="(290,1700)"/> <wire from="(700,360)" to="(730,360)"/> <wire from="(300,610)" to="(320,610)"/> <wire from="(490,640)" to="(510,640)"/> <wire from="(300,500)" to="(300,540)"/> <wire from="(110,740)" to="(130,740)"/> <wire from="(400,1040)" to="(410,1040)"/> <wire from="(500,340)" to="(510,340)"/> <wire from="(350,990)" to="(360,990)"/> <wire from="(1110,930)" to="(1140,930)"/> <wire from="(350,870)" to="(350,920)"/> <wire from="(990,830)" to="(1000,830)"/> <wire from="(110,310)" to="(310,310)"/> <wire from="(760,1080)" to="(770,1080)"/> <wire from="(880,880)" to="(890,880)"/> <wire from="(410,510)" to="(1110,510)"/> <wire from="(1010,1400)" to="(1180,1400)"/> <wire from="(700,610)" to="(700,740)"/> <wire from="(240,1610)" to="(290,1610)"/> <wire from="(680,1520)" to="(680,1590)"/> <wire from="(1110,480)" to="(1110,510)"/> <wire from="(930,1030)" to="(970,1030)"/> <wire from="(570,1540)" to="(570,1570)"/> <wire from="(110,370)" to="(150,370)"/> <wire from="(110,530)" to="(150,530)"/> <wire from="(410,1700)" to="(510,1700)"/> <wire from="(320,490)" to="(320,520)"/> <wire from="(330,1710)" to="(370,1710)"/> <wire from="(420,920)" to="(510,920)"/> <wire from="(870,1310)" to="(890,1310)"/> <wire from="(680,160)" to="(700,160)"/> <wire from="(780,260)" to="(800,260)"/> <wire from="(880,440)" to="(880,540)"/> <wire from="(360,160)" to="(380,160)"/> <wire from="(480,610)" to="(490,610)"/> <wire from="(930,810)" to="(1000,810)"/> <wire from="(930,1770)" to="(1000,1770)"/> <wire from="(160,1730)" to="(170,1730)"/> <wire from="(1110,160)" to="(1110,200)"/> <wire from="(1050,1700)" to="(1050,1740)"/> <wire from="(700,1570)" to="(970,1570)"/> <wire from="(970,430)" to="(1110,430)"/> <wire from="(770,1060)" to="(780,1060)"/> <wire from="(600,610)" to="(600,660)"/> <wire from="(950,1120)" to="(950,1170)"/> <wire from="(980,1790)" to="(980,1840)"/> <wire from="(500,1110)" to="(510,1110)"/> <wire from="(640,1860)" to="(780,1860)"/> <wire from="(590,720)" to="(600,720)"/> <wire from="(590,20)" to="(590,220)"/> <wire from="(130,590)" to="(130,600)"/> <wire from="(820,30)" to="(820,100)"/> <wire from="(820,1050)" to="(860,1050)"/> <wire from="(700,200)" to="(700,220)"/> <wire from="(760,1330)" to="(780,1330)"/> <wire from="(1030,160)" to="(1050,160)"/> <wire from="(970,900)" to="(990,900)"/> <wire from="(490,1540)" to="(510,1540)"/> <wire from="(510,600)" to="(530,600)"/> <wire from="(1040,820)" to="(1050,820)"/> <wire from="(300,540)" to="(330,540)"/> <wire from="(310,80)" to="(330,80)"/> <wire from="(1110,160)" to="(1180,160)"/> <wire from="(590,670)" to="(620,670)"/> <wire from="(490,1060)" to="(510,1060)"/> <wire from="(490,900)" to="(510,900)"/> <wire from="(1110,480)" to="(1180,480)"/> <wire from="(480,900)" to="(490,900)"/> <wire from="(110,440)" to="(510,440)"/> <wire from="(110,1560)" to="(510,1560)"/> <wire from="(420,550)" to="(420,920)"/> <wire from="(840,620)" to="(850,620)"/> <wire from="(1050,820)" to="(1070,820)"/> <wire from="(480,1540)" to="(490,1540)"/> <wire from="(770,910)" to="(770,960)"/> <wire from="(870,1490)" to="(870,1540)"/> <wire from="(820,1490)" to="(870,1490)"/> <wire from="(1070,1590)" to="(1110,1590)"/> <wire from="(870,1330)" to="(870,1400)"/> <wire from="(710,370)" to="(710,440)"/> <wire from="(1110,900)" to="(1110,930)"/> <wire from="(280,550)" to="(280,570)"/> <wire from="(1010,480)" to="(1110,480)"/> <wire from="(1010,1470)" to="(1010,1540)"/> <wire from="(510,620)" to="(510,640)"/> <wire from="(370,1210)" to="(410,1210)"/> <wire from="(130,820)" to="(160,820)"/> <wire from="(760,1140)" to="(780,1140)"/> <wire from="(890,150)" to="(910,150)"/> <wire from="(590,220)" to="(590,260)"/> <wire from="(1030,770)" to="(1050,770)"/> <wire from="(600,660)" to="(620,660)"/> <wire from="(570,1590)" to="(590,1590)"/> <wire from="(310,530)" to="(330,530)"/> <wire from="(350,1690)" to="(370,1690)"/> <wire from="(110,650)" to="(130,650)"/> <wire from="(130,350)" to="(150,350)"/> <wire from="(410,1000)" to="(410,1040)"/> <wire from="(870,1400)" to="(900,1400)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(280,1630)" to="(290,1630)"/> <wire from="(110,980)" to="(120,980)"/> <wire from="(880,790)" to="(890,790)"/> <wire from="(500,1370)" to="(510,1370)"/> <wire from="(700,740)" to="(700,1010)"/> <wire from="(1010,1470)" to="(1180,1470)"/> <wire from="(880,350)" to="(880,420)"/> <wire from="(950,1190)" to="(950,1220)"/> <wire from="(410,490)" to="(410,510)"/> <wire from="(950,160)" to="(990,160)"/> <wire from="(820,580)" to="(820,600)"/> <wire from="(300,260)" to="(590,260)"/> <wire from="(290,530)" to="(290,560)"/> <wire from="(870,1620)" to="(870,1700)"/> <wire from="(140,640)" to="(170,640)"/> <wire from="(110,770)" to="(140,770)"/> <wire from="(870,1220)" to="(890,1220)"/> <wire from="(930,1120)" to="(950,1120)"/> <wire from="(870,1700)" to="(890,1700)"/> <wire from="(780,220)" to="(780,260)"/> <wire from="(550,1540)" to="(570,1540)"/> <wire from="(320,1620)" to="(350,1620)"/> <wire from="(770,640)" to="(790,640)"/> <wire from="(300,170)" to="(320,170)"/> <wire from="(1110,900)" to="(1180,900)"/> <wire from="(140,810)" to="(160,810)"/> <wire from="(370,1370)" to="(380,1370)"/> <wire from="(460,1300)" to="(470,1300)"/> <wire from="(320,520)" to="(330,520)"/> <wire from="(110,950)" to="(120,950)"/> <wire from="(980,60)" to="(990,60)"/> <wire from="(770,1130)" to="(780,1130)"/> <wire from="(780,660)" to="(790,660)"/> <wire from="(860,1220)" to="(870,1220)"/> <wire from="(1010,1250)" to="(1010,1300)"/> <wire from="(700,1540)" to="(710,1540)"/> <wire from="(970,110)" to="(1050,110)"/> <wire from="(840,1240)" to="(840,1290)"/> <wire from="(770,1190)" to="(950,1190)"/> <wire from="(180,470)" to="(560,470)"/> <wire from="(130,340)" to="(130,350)"/> <wire from="(240,1010)" to="(290,1010)"/> <wire from="(280,570)" to="(330,570)"/> <wire from="(860,1080)" to="(1180,1080)"/> <wire from="(110,920)" to="(350,920)"/> <wire from="(760,1290)" to="(760,1310)"/> <wire from="(560,450)" to="(560,470)"/> <wire from="(970,250)" to="(970,330)"/> <wire from="(110,1670)" to="(270,1670)"/> <wire from="(970,330)" to="(990,330)"/> <wire from="(740,1590)" to="(740,1630)"/> <wire from="(490,1610)" to="(510,1610)"/> <wire from="(620,1580)" to="(640,1580)"/> <wire from="(270,100)" to="(300,100)"/> <wire from="(550,1470)" to="(710,1470)"/> <wire from="(490,1130)" to="(510,1130)"/> <wire from="(490,970)" to="(510,970)"/> <wire from="(110,590)" to="(130,590)"/> <wire from="(770,980)" to="(770,1040)"/> <wire from="(430,120)" to="(440,120)"/> <wire from="(1080,270)" to="(1110,270)"/> <wire from="(820,900)" to="(890,900)"/> <wire from="(110,280)" to="(120,280)"/> <wire from="(820,1860)" to="(890,1860)"/> <wire from="(880,250)" to="(890,250)"/> <wire from="(700,1410)" to="(780,1410)"/> <wire from="(500,1630)" to="(510,1630)"/> <wire from="(490,1300)" to="(500,1300)"/> <wire from="(820,1400)" to="(870,1400)"/> <wire from="(740,1650)" to="(740,1850)"/> <wire from="(110,1870)" to="(230,1870)"/> <wire from="(330,1390)" to="(380,1390)"/> <wire from="(640,1490)" to="(640,1580)"/> <wire from="(320,690)" to="(620,690)"/> <wire from="(740,1650)" to="(780,1650)"/> <wire from="(130,630)" to="(130,650)"/> <wire from="(770,1110)" to="(770,1130)"/> <wire from="(1010,1250)" to="(1180,1250)"/> <wire from="(240,1010)" to="(240,1610)"/> <wire from="(290,560)" to="(330,560)"/> <wire from="(930,1220)" to="(950,1220)"/> <wire from="(970,140)" to="(990,140)"/> <wire from="(930,900)" to="(950,900)"/> <wire from="(890,110)" to="(890,150)"/> <wire from="(300,100)" to="(330,100)"/> <wire from="(640,1250)" to="(660,1250)"/> <wire from="(720,1650)" to="(740,1650)"/> <wire from="(260,550)" to="(280,550)"/> <wire from="(140,640)" to="(140,680)"/> <wire from="(250,1870)" to="(780,1870)"/> <wire from="(580,1020)" to="(610,1020)"/> <wire from="(1050,850)" to="(1180,850)"/> <wire from="(220,830)" to="(240,830)"/> <wire from="(640,1490)" to="(710,1490)"/> <wire from="(410,550)" to="(420,550)"/> <wire from="(460,1440)" to="(460,1490)"/> <wire from="(110,410)" to="(120,410)"/> <wire from="(110,250)" to="(120,250)"/> <wire from="(930,590)" to="(940,590)"/> <wire from="(770,910)" to="(780,910)"/> <wire from="(750,1530)" to="(760,1530)"/> <wire from="(830,650)" to="(840,650)"/> <wire from="(460,160)" to="(460,220)"/> <wire from="(700,200)" to="(710,200)"/> <wire from="(1050,110)" to="(1050,160)"/> <wire from="(640,1680)" to="(640,1860)"/> <wire from="(780,220)" to="(1050,220)"/> <wire from="(840,270)" to="(890,270)"/> <wire from="(500,1290)" to="(500,1300)"/> <wire from="(450,990)" to="(510,990)"/> <wire from="(930,1700)" to="(1050,1700)"/> <wire from="(460,1490)" to="(510,1490)"/> <wire from="(1000,540)" to="(1000,610)"/> <wire from="(930,1470)" to="(990,1470)"/> <wire from="(550,900)" to="(740,900)"/> <wire from="(490,1470)" to="(490,1540)"/> <wire from="(970,350)" to="(970,430)"/> <wire from="(110,680)" to="(140,680)"/> <wire from="(760,1500)" to="(780,1500)"/> <wire from="(700,610)" to="(850,610)"/> <wire from="(820,1240)" to="(840,1240)"/> <wire from="(870,1770)" to="(890,1770)"/> <wire from="(1070,1540)" to="(1070,1590)"/> <wire from="(510,610)" to="(530,610)"/> <wire from="(600,700)" to="(620,700)"/> <wire from="(550,1610)" to="(570,1610)"/> <wire from="(710,330)" to="(730,330)"/> <wire from="(320,1210)" to="(350,1210)"/> <wire from="(920,1400)" to="(1010,1400)"/> <wire from="(140,770)" to="(140,810)"/> <wire from="(400,980)" to="(420,980)"/> <wire from="(550,1280)" to="(580,1280)"/> <wire from="(1110,810)" to="(1180,810)"/> <wire from="(750,1480)" to="(780,1480)"/> <wire from="(410,1000)" to="(420,1000)"/> <wire from="(280,1030)" to="(290,1030)"/> <wire from="(160,1710)" to="(170,1710)"/> <wire from="(110,220)" to="(120,220)"/> <wire from="(820,1640)" to="(890,1640)"/> <wire from="(880,1470)" to="(890,1470)"/> <wire from="(770,1040)" to="(780,1040)"/> <wire from="(350,1620)" to="(350,1690)"/> <wire from="(890,610)" to="(940,610)"/> <wire from="(650,1010)" to="(700,1010)"/> <wire from="(110,620)" to="(170,620)"/> <wire from="(130,730)" to="(130,740)"/> <wire from="(930,1640)" to="(1180,1640)"/> <wire from="(970,960)" to="(970,1030)"/> <wire from="(110,470)" to="(160,470)"/> <wire from="(760,1360)" to="(760,1390)"/> <wire from="(930,1620)" to="(970,1620)"/> <wire from="(270,1670)" to="(270,1700)"/> <wire from="(580,1020)" to="(580,1040)"/> <wire from="(760,1310)" to="(780,1310)"/> <wire from="(970,80)" to="(990,80)"/> <wire from="(320,1020)" to="(350,1020)"/> <wire from="(210,1720)" to="(230,1720)"/> <wire from="(490,1040)" to="(510,1040)"/> <wire from="(700,740)" to="(1180,740)"/> <wire from="(110,340)" to="(130,340)"/> <wire from="(140,850)" to="(160,850)"/> <wire from="(860,1720)" to="(890,1720)"/> <wire from="(500,100)" to="(510,100)"/> <wire from="(440,300)" to="(710,300)"/> <wire from="(300,100)" to="(300,150)"/> <wire from="(110,190)" to="(120,190)"/> <wire from="(1110,270)" to="(1110,310)"/> <wire from="(880,1120)" to="(890,1120)"/> <wire from="(1050,800)" to="(1070,800)"/> <wire from="(1050,1760)" to="(1070,1760)"/> <wire from="(970,1570)" to="(970,1620)"/> <wire from="(990,900)" to="(1110,900)"/> <wire from="(1110,400)" to="(1110,430)"/> <wire from="(1050,820)" to="(1050,850)"/> <wire from="(130,630)" to="(170,630)"/> <wire from="(880,440)" to="(900,440)"/> <wire from="(870,110)" to="(890,110)"/> <wire from="(570,1570)" to="(590,1570)"/> <wire from="(550,1390)" to="(570,1390)"/> <wire from="(1110,200)" to="(1120,200)"/> <wire from="(360,1040)" to="(380,1040)"/> <wire from="(1110,270)" to="(1180,270)"/> <wire from="(390,1230)" to="(410,1230)"/> <wire from="(550,1220)" to="(580,1220)"/> <wire from="(1110,430)" to="(1180,430)"/> <wire from="(450,1130)" to="(470,1130)"/> <wire from="(940,330)" to="(970,330)"/> <wire from="(860,1050)" to="(890,1050)"/> <wire from="(420,950)" to="(430,950)"/> <wire from="(380,110)" to="(390,110)"/> <wire from="(110,160)" to="(120,160)"/> <wire from="(110,710)" to="(180,710)"/> <wire from="(490,900)" to="(490,970)"/> <wire from="(450,1220)" to="(510,1220)"/> <wire from="(550,340)" to="(730,340)"/> <wire from="(490,1540)" to="(490,1610)"/> <wire from="(550,220)" to="(590,220)"/> <wire from="(740,1050)" to="(780,1050)"/> <wire from="(740,1850)" to="(780,1850)"/> <wire from="(130,600)" to="(170,600)"/> <wire from="(570,1590)" to="(570,1610)"/> <wire from="(870,1840)" to="(890,1840)"/> <wire from="(980,1790)" to="(1000,1790)"/> <wire from="(770,1150)" to="(770,1190)"/> <wire from="(330,970)" to="(360,970)"/> <wire from="(300,150)" to="(320,150)"/> <wire from="(750,1230)" to="(780,1230)"/> <wire from="(150,530)" to="(150,580)"/> <wire from="(500,200)" to="(510,200)"/> <wire from="(240,100)" to="(250,100)"/> <wire from="(790,170)" to="(800,170)"/> <wire from="(1050,1540)" to="(1070,1540)"/> <wire from="(930,1330)" to="(1010,1330)"/> <wire from="(570,430)" to="(580,430)"/> <wire from="(930,1840)" to="(980,1840)"/> <wire from="(110,500)" to="(300,500)"/> <wire from="(380,90)" to="(380,110)"/> <wire from="(860,1050)" to="(860,1080)"/> <wire from="(460,160)" to="(570,160)"/> <wire from="(130,800)" to="(130,820)"/> <wire from="(660,1250)" to="(660,1790)"/> <wire from="(350,870)" to="(770,870)"/> <wire from="(140,590)" to="(170,590)"/> <wire from="(570,120)" to="(570,160)"/> <wire from="(870,1330)" to="(890,1330)"/> <wire from="(870,1490)" to="(890,1490)"/> <wire from="(110,560)" to="(140,560)"/> <wire from="(690,190)" to="(710,190)"/> <wire from="(710,370)" to="(730,370)"/> <wire from="(510,440)" to="(510,600)"/> <wire from="(790,350)" to="(880,350)"/> <wire from="(940,430)" to="(970,430)"/> <wire from="(1010,1300)" to="(1040,1300)"/> <wire from="(770,960)" to="(970,960)"/> <wire from="(960,470)" to="(970,470)"/> <wire from="(880,1030)" to="(890,1030)"/> <wire from="(760,1290)" to="(840,1290)"/> <wire from="(780,680)" to="(1180,680)"/> <wire from="(500,1290)" to="(510,1290)"/> <comp lib="1" loc="(220,720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(793,1206)" name="Text"> <a name="text" val="STEP_FF"/> </comp> <comp lib="6" loc="(848,1066)" name="Text"> <a name="text" val="WR"/> </comp> <comp lib="0" loc="(240,720)" name="Tunnel"> <a name="label" val="/SHIFT"/> </comp> <comp lib="0" loc="(110,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D125"/> </comp> <comp lib="1" loc="(820,1140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(1110,810)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(450,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(410,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(970,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,1860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(820,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(930,260)" name="D_Latch"> <a name="label" val="t7_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1180,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TRES2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1180,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#TRESX"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1180,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="STOR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1180,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ENDX_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1010,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(680,680)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(590,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(500,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(400,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(860,1720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(680,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(400,980)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(550,1280)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(460,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(500,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(980,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(399,227)" name="Text"> <a name="text" val="ACRL_FF"/> </comp> <comp loc="(930,1630)" name="D_Latch"> <a name="label" val="t1x_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp loc="(930,1850)" name="D_Latch"> <a name="label" val="ipc_latch3"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D107"/> </comp> <comp lib="1" loc="(190,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,210)" name="D_Latch"> <a name="label" val="acr_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1030,260)" name="D_Latch"> <a name="label" val="t7_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(820,1240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1180,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="T6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D124"/> </comp> <comp lib="0" loc="(120,980)" name="Tunnel"> <a name="label" val="BRFW"/> </comp> <comp lib="1" loc="(620,1580)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1030,70)" name="D_Latch"> <a name="label" val="t6_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(490,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/MemOP"/> </comp> <comp lib="0" loc="(110,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D123"/> </comp> <comp lib="0" loc="(870,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="2" loc="(450,990)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(250,1720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D122"/> </comp> <comp lib="0" loc="(420,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(810,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(1120,310)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="1" loc="(210,1720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(479,1434)" name="Text"> <a name="text" val="TRES1"/> </comp> <comp lib="1" loc="(1110,1750)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(930,1320)" name="D_Latch"> <a name="label" val="t1_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1180,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ENDS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,1300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D105"/> </comp> <comp lib="1" loc="(220,830)" name="NOR Gate"/> <comp lib="0" loc="(110,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D106"/> </comp> <comp lib="0" loc="(330,1390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(120,280)" name="Tunnel"> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(480,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SHIFT"/> </comp> <comp lib="6" loc="(232,463)" name="Text"> <a name="text" val="/STORE"/> </comp> <comp loc="(420,1380)" name="D_Latch"> <a name="label" val="rdydelay_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(570,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1110,1590)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(880,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(459,1344)" name="Text"> <a name="text" val="ReadyDelay"/> </comp> <comp lib="0" loc="(1040,1300)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(1180,1640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/T1X"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(671,1007)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="0" loc="(1120,200)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp loc="(930,1780)" name="D_Latch"> <a name="label" val="ipc_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(830,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D97"/> </comp> <comp loc="(550,110)" name="D_Latch"> <a name="label" val="acr_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(905,82)" name="Text"> <a name="text" val="T6_FF"/> </comp> <comp lib="0" loc="(500,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(650,1010)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,1690)" name="D_Latch"> <a name="label" val="br_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(820,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(840,270)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,1730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp loc="(840,180)" name="D_Latch"> <a name="label" val="t67_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(770,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(120,410)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(110,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D101"/> </comp> <comp loc="(930,1040)" name="D_Latch"> <a name="label" val="ready_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(550,1210)" name="D_Latch"> <a name="label" val="br_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(550,910)" name="D_Latch"> <a name="label" val="wr_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACR"/> </comp> <comp loc="(550,1550)" name="D_Latch"> <a name="label" val="comp_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,1220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(570,1390)" name="Tunnel"> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(1180,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#1/PC"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(890,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(940,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1040,820)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(930,1230)" name="D_Latch"> <a name="label" val="step_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1140,930)" name="Tunnel"> <a name="label" val="/ready"/> </comp> <comp loc="(930,800)" name="D_Latch"> <a name="label" val="fetch_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(820,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(883,949)" name="Text"> <a name="text" val="RDY_FF"/> </comp> <comp lib="1" loc="(490,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(760,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1120,400)" name="Tunnel"> <a name="label" val="#TRESX"/> </comp> <comp lib="0" loc="(690,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/MemOP"/> </comp> <comp lib="0" loc="(1180,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="T7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(760,1080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DORES"/> </comp> <comp lib="1" loc="(410,550)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="6" loc="(837,1557)" name="Text"> <a name="text" val="T0_FF"/> </comp> <comp lib="0" loc="(880,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(310,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,440)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1180,900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ready"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(320,1020)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,1380)" name="D_Latch"> <a name="label" val="rdydelay_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(110,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="B_OUT"/> </comp> <comp loc="(930,1710)" name="D_Latch"> <a name="label" val="ipc_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(110,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D102"/> </comp> <comp lib="0" loc="(260,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="1" loc="(820,1490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(680,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SHIFT"/> </comp> <comp lib="1" loc="(1050,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(960,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/MemOP"/> </comp> <comp lib="0" loc="(160,1710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(590,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1030,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(370,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(761,863)" name="Text"> <a name="text" val="RDY"/> </comp> <comp lib="0" loc="(120,220)" name="Tunnel"> <a name="label" val="RESP"/> </comp> <comp lib="6" loc="(677,318)" name="Text"> <a name="text" val="ACRL1"/> </comp> <comp lib="0" loc="(330,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(500,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#TRESX"/> </comp> <comp lib="0" loc="(110,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D92"/> </comp> <comp lib="0" loc="(1180,1540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="T0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1180,20)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ACRL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(880,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(110,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D96"/> </comp> <comp lib="0" loc="(720,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(250,610)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(120,950)" name="Tunnel"> <a name="label" val="B_OUT"/> </comp> <comp lib="1" loc="(300,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(432,504)" name="Text"> <a name="text" val="STOR"/> </comp> <comp lib="0" loc="(500,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(724,1402)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="0" loc="(500,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(1080,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(570,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SHIFT"/> </comp> <comp lib="0" loc="(1180,1470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D103"/> </comp> <comp loc="(930,1130)" name="D_Latch"> <a name="label" val="step_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(320,1620)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(860,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(510,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,1530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR3"/> </comp> <comp loc="(550,1480)" name="D_Latch"> <a name="label" val="comp_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(870,110)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(370,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(490,1060)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="1" loc="(270,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D98"/> </comp> <comp lib="0" loc="(930,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(790,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(940,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(120,250)" name="Tunnel"> <a name="label" val="ACR"/> </comp> <comp lib="1" loc="(180,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1180,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FETCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(980,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(1180,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="T1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D100"/> </comp> <comp lib="1" loc="(250,1870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D104"/> </comp> <comp lib="1" loc="(820,1400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D111"/> </comp> <comp lib="1" loc="(640,1250)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp loc="(930,890)" name="D_Latch"> <a name="label" val="ready_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(110,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(120,160)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(120,190)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(880,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp loc="(1030,340)" name="D_Latch"> <a name="label" val="tres2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(550,1050)" name="D_Latch"> <a name="label" val="ends_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(1180,1400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TRES1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,1870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IMPLIED"/> </comp> <comp lib="1" loc="(450,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(700,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(110,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PC/DB"/> </comp> <comp lib="0" loc="(240,830)" name="Tunnel"> <a name="label" val="/MemOP"/> </comp> <comp lib="0" loc="(320,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(500,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESP"/> </comp> <comp lib="6" loc="(675,437)" name="Text"> <a name="text" val="REST"/> </comp> <comp lib="0" loc="(880,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(880,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#ADL/PCL"/> </comp> <comp loc="(550,1620)" name="D_Latch"> <a name="label" val="comp_latch3"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(790,350)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(920,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1180,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="0/IR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(1180,1080)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,1560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TWOCYCLE"/> </comp> <comp lib="0" loc="(480,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(750,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(360,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(260,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="1" loc="(330,1710)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,980)" name="D_Latch"> <a name="label" val="ends_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(980,600)" name="D_Latch"> <a name="label" val="tresx_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(550,1120)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RDY"/> </comp> <comp loc="(550,350)" name="D_Latch"> <a name="label" val="tresx_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(360,90)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1030,150)" name="D_Latch"> <a name="label" val="t6_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D91"/> </comp> <comp lib="0" loc="(120,70)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(500,1200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(760,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="1" loc="(1030,1780)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(726,734)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="0" loc="(240,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(880,1470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BRTAKEN"/> </comp> <comp loc="(930,1480)" name="D_Latch"> <a name="label" val="t0_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(950,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="BUS_CONTROL"> <a name="circuit" val="BUS_CONTROL"/> <a name="clabel" val="BUS CONTROL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M70,71 Q74,81 78,71" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff3941" height="370" stroke="#000000" stroke-width="2" width="430" x="50" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="105">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="124">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="144">BR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="375">PGX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="164">BR3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="304">AND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="224">T2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="284">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="384">INC_SB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="405">BRK6E</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="324">0/ADL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="344">#SBXY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="453" y="356">ZTST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="364">STXY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="424">DL/PCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="244">T6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="264">T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="453" y="284">STOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="224">ACRL2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="204">#PCH/PCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="204">T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="184">T0</text> <circ-port height="8" pin="100,20" width="8" x="46" y="96"/> <circ-port height="8" pin="100,50" width="8" x="46" y="116"/> <circ-port height="8" pin="100,170" width="8" x="126" y="66"/> <circ-port height="8" pin="100,200" width="8" x="136" y="66"/> <circ-port height="8" pin="100,230" width="8" x="146" y="66"/> <circ-port height="8" pin="100,260" width="8" x="156" y="66"/> <circ-port height="8" pin="100,290" width="8" x="166" y="66"/> <circ-port height="8" pin="100,320" width="8" x="176" y="66"/> <circ-port height="8" pin="100,350" width="8" x="186" y="66"/> <circ-port height="8" pin="100,380" width="8" x="196" y="66"/> <circ-port height="8" pin="100,410" width="8" x="206" y="66"/> <circ-port height="8" pin="100,440" width="8" x="216" y="66"/> <circ-port height="8" pin="100,470" width="8" x="226" y="66"/> <circ-port height="8" pin="100,540" width="8" x="256" y="66"/> <circ-port height="8" pin="100,570" width="8" x="266" y="66"/> <circ-port height="8" pin="100,600" width="8" x="276" y="66"/> <circ-port height="8" pin="100,720" width="8" x="306" y="66"/> <circ-port height="8" pin="100,750" width="8" x="316" y="66"/> <circ-port height="8" pin="100,810" width="8" x="376" y="66"/> <circ-port height="8" pin="100,840" width="8" x="386" y="66"/> <circ-port height="8" pin="100,880" width="8" x="396" y="66"/> <circ-port height="10" pin="1050,850" width="10" x="155" y="435"/> <circ-port height="10" pin="1050,1250" width="10" x="135" y="435"/> <circ-port height="10" pin="1050,930" width="10" x="115" y="435"/> <circ-port height="8" pin="100,1060" width="8" x="46" y="136"/> <circ-port height="10" pin="1050,770" width="10" x="335" y="435"/> <circ-port height="10" pin="1050,1140" width="10" x="175" y="435"/> <circ-port height="10" pin="1050,370" width="10" x="195" y="435"/> <circ-port height="10" pin="1050,250" width="10" x="215" y="435"/> <circ-port height="10" pin="1050,430" width="10" x="235" y="435"/> <circ-port height="8" pin="100,140" width="8" x="116" y="66"/> <circ-port height="10" pin="1050,180" width="10" x="275" y="435"/> <circ-port height="10" pin="1050,510" width="10" x="315" y="435"/> <circ-port height="8" pin="100,1150" width="8" x="46" y="156"/> <circ-port height="8" pin="100,1180" width="8" x="46" y="276"/> <circ-port height="8" pin="100,1210" width="8" x="46" y="216"/> <circ-port height="10" pin="1050,700" width="10" x="475" y="365"/> <circ-port height="8" pin="100,780" width="8" x="336" y="66"/> <circ-port height="8" pin="100,1000" width="8" x="456" y="66"/> <circ-port height="8" pin="100,970" width="8" x="446" y="66"/> <circ-port height="8" pin="100,1450" width="8" x="416" y="66"/> <circ-port height="8" pin="100,1330" width="8" x="76" y="66"/> <circ-port height="8" pin="100,1390" width="8" x="96" y="66"/> <circ-port height="8" pin="100,1360" width="8" x="86" y="66"/> <circ-port height="8" pin="100,1270" width="8" x="66" y="66"/> <circ-port height="8" pin="100,1240" width="8" x="46" y="376"/> <circ-port height="8" pin="100,1300" width="8" x="46" y="396"/> <circ-port height="8" pin="100,110" width="8" x="106" y="66"/> <circ-port height="8" pin="100,920" width="8" x="326" y="66"/> <circ-port height="8" pin="100,1420" width="8" x="46" y="356"/> <circ-port height="8" pin="100,1030" width="8" x="46" y="316"/> <circ-port height="8" pin="100,80" width="8" x="46" y="336"/> <circ-port height="10" pin="1050,310" width="10" x="475" y="345"/> <circ-port height="8" pin="100,1120" width="8" x="46" y="416"/> <circ-port height="8" pin="100,1090" width="8" x="476" y="216"/> <circ-port height="8" pin="100,690" width="8" x="476" y="276"/> <circ-port height="8" pin="100,1480" width="8" x="476" y="196"/> <circ-port height="8" pin="100,1600" width="8" x="46" y="256"/> <circ-port height="8" pin="100,1570" width="8" x="46" y="236"/> <circ-port height="8" pin="100,1540" width="8" x="46" y="196"/> <circ-port height="8" pin="100,1630" width="8" x="356" y="66"/> <circ-port height="8" pin="100,1510" width="8" x="46" y="176"/> <circ-port height="8" pin="100,630" width="8" x="286" y="66"/> <circ-port height="8" pin="100,660" width="8" x="296" y="66"/> <circ-port height="10" pin="1050,650" width="10" x="295" y="435"/> <circ-port height="8" pin="100,500" width="8" x="46" y="296"/> <circ-port height="10" pin="1050,110" width="10" x="255" y="435"/> <circ-anchor facing="east" height="6" width="6" x="147" y="67"/> </appear> <wire from="(130,1320)" to="(190,1320)"/> <wire from="(120,680)" to="(120,690)"/> <wire from="(800,350)" to="(800,420)"/> <wire from="(590,520)" to="(630,520)"/> <wire from="(150,1280)" to="(190,1280)"/> <wire from="(800,750)" to="(800,830)"/> <wire from="(800,830)" to="(800,910)"/> <wire from="(340,1230)" to="(380,1230)"/> <wire from="(800,350)" to="(820,350)"/> <wire from="(800,830)" to="(820,830)"/> <wire from="(800,1230)" to="(820,1230)"/> <wire from="(800,750)" to="(820,750)"/> <wire from="(800,910)" to="(820,910)"/> <wire from="(960,430)" to="(980,430)"/> <wire from="(500,1090)" to="(520,1090)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(280,300)" to="(310,300)"/> <wire from="(680,1270)" to="(700,1270)"/> <wire from="(700,1130)" to="(720,1130)"/> <wire from="(260,370)" to="(280,370)"/> <wire from="(280,1110)" to="(300,1110)"/> <wire from="(370,320)" to="(390,320)"/> <wire from="(470,100)" to="(490,100)"/> <wire from="(490,310)" to="(490,480)"/> <wire from="(100,690)" to="(120,690)"/> <wire from="(170,360)" to="(190,360)"/> <wire from="(170,290)" to="(180,290)"/> <wire from="(590,100)" to="(590,480)"/> <wire from="(210,1130)" to="(220,1130)"/> <wire from="(100,780)" to="(110,780)"/> <wire from="(550,490)" to="(630,490)"/> <wire from="(170,170)" to="(170,230)"/> <wire from="(340,1230)" to="(340,1480)"/> <wire from="(590,550)" to="(600,550)"/> <wire from="(1000,250)" to="(1050,250)"/> <wire from="(1000,650)" to="(1050,650)"/> <wire from="(130,1290)" to="(190,1290)"/> <wire from="(860,420)" to="(920,420)"/> <wire from="(240,1410)" to="(240,1420)"/> <wire from="(120,410)" to="(120,430)"/> <wire from="(710,510)" to="(820,510)"/> <wire from="(100,720)" to="(140,720)"/> <wire from="(310,700)" to="(1050,700)"/> <wire from="(150,1330)" to="(190,1330)"/> <wire from="(800,160)" to="(800,240)"/> <wire from="(200,810)" to="(200,840)"/> <wire from="(320,860)" to="(360,860)"/> <wire from="(800,160)" to="(820,160)"/> <wire from="(800,240)" to="(820,240)"/> <wire from="(800,640)" to="(820,640)"/> <wire from="(800,1120)" to="(820,1120)"/> <wire from="(800,240)" to="(800,350)"/> <wire from="(800,1120)" to="(800,1230)"/> <wire from="(800,640)" to="(800,750)"/> <wire from="(410,560)" to="(440,560)"/> <wire from="(800,50)" to="(800,90)"/> <wire from="(280,590)" to="(310,590)"/> <wire from="(680,840)" to="(700,840)"/> <wire from="(100,880)" to="(190,880)"/> <wire from="(260,260)" to="(280,260)"/> <wire from="(150,280)" to="(150,320)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(410,90)" to="(430,90)"/> <wire from="(150,1240)" to="(150,1280)"/> <wire from="(360,1240)" to="(380,1240)"/> <wire from="(510,190)" to="(530,190)"/> <wire from="(440,1080)" to="(460,1080)"/> <wire from="(100,20)" to="(120,20)"/> <wire from="(890,50)" to="(1050,50)"/> <wire from="(440,380)" to="(720,380)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(380,330)" to="(380,500)"/> <wire from="(200,840)" to="(220,840)"/> <wire from="(170,1340)" to="(170,1390)"/> <wire from="(440,770)" to="(440,1080)"/> <wire from="(100,1150)" to="(110,1150)"/> <wire from="(320,1310)" to="(590,1310)"/> <wire from="(510,100)" to="(590,100)"/> <wire from="(300,780)" to="(370,780)"/> <wire from="(100,50)" to="(800,50)"/> <wire from="(590,970)" to="(590,1240)"/> <wire from="(170,350)" to="(170,360)"/> <wire from="(760,1250)" to="(820,1250)"/> <wire from="(180,980)" to="(300,980)"/> <wire from="(100,1240)" to="(150,1240)"/> <wire from="(120,430)" to="(300,430)"/> <wire from="(100,200)" to="(150,200)"/> <wire from="(760,370)" to="(820,370)"/> <wire from="(100,920)" to="(150,920)"/> <wire from="(100,840)" to="(150,840)"/> <wire from="(890,440)" to="(890,660)"/> <wire from="(610,540)" to="(610,1400)"/> <wire from="(130,230)" to="(130,250)"/> <wire from="(130,1270)" to="(130,1290)"/> <wire from="(210,630)" to="(210,650)"/> <wire from="(590,1240)" to="(700,1240)"/> <wire from="(180,850)" to="(220,850)"/> <wire from="(560,500)" to="(560,520)"/> <wire from="(210,550)" to="(210,580)"/> <wire from="(800,910)" to="(800,1120)"/> <wire from="(210,650)" to="(240,650)"/> <wire from="(190,870)" to="(220,870)"/> <wire from="(500,1190)" to="(520,1190)"/> <wire from="(520,1130)" to="(540,1130)"/> <wire from="(410,770)" to="(440,770)"/> <wire from="(620,350)" to="(640,350)"/> <wire from="(100,140)" to="(510,140)"/> <wire from="(700,1150)" to="(720,1150)"/> <wire from="(240,1410)" to="(260,1410)"/> <wire from="(100,1210)" to="(380,1210)"/> <wire from="(660,110)" to="(820,110)"/> <wire from="(280,460)" to="(280,500)"/> <wire from="(100,470)" to="(120,470)"/> <wire from="(170,1340)" to="(190,1340)"/> <wire from="(120,940)" to="(120,990)"/> <wire from="(440,1220)" to="(450,1220)"/> <wire from="(170,230)" to="(180,230)"/> <wire from="(100,1120)" to="(110,1120)"/> <wire from="(100,1600)" to="(110,1600)"/> <wire from="(590,1250)" to="(590,1310)"/> <wire from="(380,500)" to="(510,500)"/> <wire from="(100,1630)" to="(360,1630)"/> <wire from="(100,380)" to="(230,380)"/> <wire from="(1000,430)" to="(1050,430)"/> <wire from="(1000,510)" to="(1050,510)"/> <wire from="(860,510)" to="(980,510)"/> <wire from="(760,1140)" to="(820,1140)"/> <wire from="(130,1320)" to="(130,1330)"/> <wire from="(120,990)" to="(120,1000)"/> <wire from="(800,420)" to="(800,490)"/> <wire from="(100,970)" to="(150,970)"/> <wire from="(490,310)" to="(980,310)"/> <wire from="(120,860)" to="(120,940)"/> <wire from="(100,660)" to="(140,660)"/> <wire from="(200,1150)" to="(200,1180)"/> <wire from="(100,810)" to="(200,810)"/> <wire from="(150,240)" to="(180,240)"/> <wire from="(800,420)" to="(820,420)"/> <wire from="(280,260)" to="(820,260)"/> <wire from="(520,1150)" to="(520,1190)"/> <wire from="(280,660)" to="(820,660)"/> <wire from="(100,1300)" to="(190,1300)"/> <wire from="(280,460)" to="(300,460)"/> <wire from="(280,860)" to="(300,860)"/> <wire from="(100,1030)" to="(700,1030)"/> <wire from="(600,530)" to="(630,530)"/> <wire from="(440,1180)" to="(460,1180)"/> <wire from="(100,1450)" to="(630,1450)"/> <wire from="(120,940)" to="(140,940)"/> <wire from="(120,860)" to="(140,860)"/> <wire from="(100,1000)" to="(120,1000)"/> <wire from="(170,1390)" to="(190,1390)"/> <wire from="(890,260)" to="(920,260)"/> <wire from="(890,660)" to="(920,660)"/> <wire from="(450,1200)" to="(460,1200)"/> <wire from="(560,500)" to="(630,500)"/> <wire from="(290,960)" to="(300,960)"/> <wire from="(380,330)" to="(390,330)"/> <wire from="(100,1570)" to="(110,1570)"/> <wire from="(170,670)" to="(240,670)"/> <wire from="(310,700)" to="(310,760)"/> <wire from="(650,1160)" to="(660,1160)"/> <wire from="(340,970)" to="(590,970)"/> <wire from="(470,230)" to="(660,230)"/> <wire from="(180,930)" to="(240,930)"/> <wire from="(120,560)" to="(120,570)"/> <wire from="(190,870)" to="(190,880)"/> <wire from="(130,250)" to="(180,250)"/> <wire from="(120,450)" to="(300,450)"/> <wire from="(300,1400)" to="(610,1400)"/> <wire from="(590,480)" to="(630,480)"/> <wire from="(210,440)" to="(210,520)"/> <wire from="(200,880)" to="(200,900)"/> <wire from="(270,550)" to="(370,550)"/> <wire from="(700,340)" to="(700,360)"/> <wire from="(100,1180)" to="(200,1180)"/> <wire from="(210,520)" to="(560,520)"/> <wire from="(520,1150)" to="(540,1150)"/> <wire from="(680,1230)" to="(700,1230)"/> <wire from="(800,50)" to="(890,50)"/> <wire from="(490,480)" to="(510,480)"/> <wire from="(100,410)" to="(120,410)"/> <wire from="(100,570)" to="(120,570)"/> <wire from="(120,990)" to="(140,990)"/> <wire from="(210,360)" to="(230,360)"/> <wire from="(470,190)" to="(470,230)"/> <wire from="(200,1150)" to="(220,1150)"/> <wire from="(630,1260)" to="(700,1260)"/> <wire from="(440,380)" to="(440,560)"/> <wire from="(100,1060)" to="(110,1060)"/> <wire from="(100,1540)" to="(110,1540)"/> <wire from="(100,110)" to="(430,110)"/> <wire from="(100,170)" to="(170,170)"/> <wire from="(170,290)" to="(170,350)"/> <wire from="(1000,370)" to="(1050,370)"/> <wire from="(1000,770)" to="(1050,770)"/> <wire from="(1000,850)" to="(1050,850)"/> <wire from="(1000,1250)" to="(1050,1250)"/> <wire from="(1000,930)" to="(1050,930)"/> <wire from="(440,770)" to="(820,770)"/> <wire from="(860,370)" to="(980,370)"/> <wire from="(860,770)" to="(980,770)"/> <wire from="(860,850)" to="(980,850)"/> <wire from="(860,1250)" to="(980,1250)"/> <wire from="(860,930)" to="(980,930)"/> <wire from="(860,110)" to="(1050,110)"/> <wire from="(470,730)" to="(470,930)"/> <wire from="(290,940)" to="(290,960)"/> <wire from="(570,1140)" to="(670,1140)"/> <wire from="(120,450)" to="(120,470)"/> <wire from="(380,80)" to="(380,290)"/> <wire from="(210,550)" to="(250,550)"/> <wire from="(600,530)" to="(600,550)"/> <wire from="(450,310)" to="(490,310)"/> <wire from="(520,1090)" to="(520,1130)"/> <wire from="(100,1330)" to="(130,1330)"/> <wire from="(100,290)" to="(130,290)"/> <wire from="(100,80)" to="(380,80)"/> <wire from="(360,1200)" to="(380,1200)"/> <wire from="(310,590)" to="(310,700)"/> <wire from="(470,190)" to="(490,190)"/> <wire from="(120,560)" to="(140,560)"/> <wire from="(200,880)" to="(220,880)"/> <wire from="(890,440)" to="(920,440)"/> <wire from="(360,570)" to="(370,570)"/> <wire from="(100,1510)" to="(110,1510)"/> <wire from="(630,1260)" to="(630,1450)"/> <wire from="(280,370)" to="(280,420)"/> <wire from="(740,850)" to="(820,850)"/> <wire from="(680,1220)" to="(680,1230)"/> <wire from="(360,1240)" to="(360,1630)"/> <wire from="(330,300)" to="(390,300)"/> <wire from="(310,760)" to="(370,760)"/> <wire from="(1000,180)" to="(1050,180)"/> <wire from="(1000,1140)" to="(1050,1140)"/> <wire from="(860,180)" to="(980,180)"/> <wire from="(860,1140)" to="(980,1140)"/> <wire from="(120,740)" to="(120,750)"/> <wire from="(800,90)" to="(800,160)"/> <wire from="(130,270)" to="(180,270)"/> <wire from="(100,1360)" to="(150,1360)"/> <wire from="(340,1100)" to="(460,1100)"/> <wire from="(210,1390)" to="(260,1390)"/> <wire from="(570,180)" to="(820,180)"/> <wire from="(100,320)" to="(150,320)"/> <wire from="(100,1480)" to="(340,1480)"/> <wire from="(100,630)" to="(210,630)"/> <wire from="(200,1180)" to="(440,1180)"/> <wire from="(130,270)" to="(130,290)"/> <wire from="(280,500)" to="(380,500)"/> <wire from="(150,1330)" to="(150,1360)"/> <wire from="(800,490)" to="(820,490)"/> <wire from="(800,90)" to="(820,90)"/> <wire from="(960,250)" to="(980,250)"/> <wire from="(960,650)" to="(980,650)"/> <wire from="(210,440)" to="(300,440)"/> <wire from="(610,540)" to="(630,540)"/> <wire from="(270,1310)" to="(300,1310)"/> <wire from="(260,1150)" to="(280,1150)"/> <wire from="(360,860)" to="(700,860)"/> <wire from="(280,260)" to="(280,300)"/> <wire from="(100,750)" to="(120,750)"/> <wire from="(440,1140)" to="(440,1180)"/> <wire from="(700,1030)" to="(700,1130)"/> <wire from="(220,950)" to="(240,950)"/> <wire from="(100,260)" to="(180,260)"/> <wire from="(360,440)" to="(820,440)"/> <wire from="(280,940)" to="(290,940)"/> <wire from="(660,110)" to="(660,230)"/> <wire from="(100,1390)" to="(170,1390)"/> <wire from="(100,350)" to="(170,350)"/> <wire from="(680,1270)" to="(680,1280)"/> <wire from="(1000,310)" to="(1050,310)"/> <wire from="(100,600)" to="(160,600)"/> <wire from="(180,600)" to="(240,600)"/> <wire from="(860,240)" to="(920,240)"/> <wire from="(860,640)" to="(920,640)"/> <wire from="(100,500)" to="(280,500)"/> <wire from="(360,860)" to="(360,1200)"/> <wire from="(100,440)" to="(210,440)"/> <wire from="(450,1200)" to="(450,1220)"/> <wire from="(510,140)" to="(510,170)"/> <wire from="(100,540)" to="(140,540)"/> <wire from="(800,490)" to="(800,640)"/> <wire from="(590,1250)" to="(700,1250)"/> <wire from="(180,730)" to="(470,730)"/> <wire from="(890,50)" to="(890,260)"/> <wire from="(150,280)" to="(180,280)"/> <wire from="(100,1270)" to="(130,1270)"/> <wire from="(180,550)" to="(210,550)"/> <wire from="(210,580)" to="(240,580)"/> <wire from="(100,230)" to="(130,230)"/> <wire from="(470,930)" to="(820,930)"/> <wire from="(680,340)" to="(700,340)"/> <wire from="(700,360)" to="(720,360)"/> <wire from="(660,1280)" to="(680,1280)"/> <wire from="(280,420)" to="(300,420)"/> <wire from="(510,170)" to="(530,170)"/> <wire from="(440,1140)" to="(460,1140)"/> <wire from="(280,1110)" to="(280,1150)"/> <wire from="(120,740)" to="(140,740)"/> <wire from="(380,290)" to="(390,290)"/> <wire from="(470,230)" to="(470,730)"/> <wire from="(190,900)" to="(200,900)"/> <wire from="(100,1420)" to="(240,1420)"/> <wire from="(890,260)" to="(890,440)"/> <wire from="(100,1090)" to="(300,1090)"/> <wire from="(670,1220)" to="(680,1220)"/> <comp lib="0" loc="(100,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D101"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D61"/> </comp> <comp lib="6" loc="(358,285)" name="Text"> <a name="text" val="#SBXY"/> </comp> <comp lib="1" loc="(760,1250)" name="NOR Gate"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D55"/> </comp> <comp lib="0" loc="(100,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D90"/> </comp> <comp lib="1" loc="(260,370)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(100,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADL0"/> </comp> <comp lib="6" loc="(523,304)" name="Text"> <a name="text" val="#ZTST"/> </comp> <comp lib="0" loc="(100,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D81"/> </comp> <comp lib="0" loc="(110,1060)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(280,860)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(100,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(300,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="6" loc="(118,656)" name="Text"> <a name="text" val="STA"/> </comp> <comp lib="0" loc="(410,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(100,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D129"/> </comp> <comp lib="6" loc="(238,725)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="1" loc="(180,980)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(100,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AND"/> </comp> <comp lib="6" loc="(515,1084)" name="Text"> <a name="text" val="SBA"/> </comp> <comp loc="(860,170)" name="D_Latch"> <a name="label" val="z_adh17_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(737,251)" name="Text"> <a name="text" val="#SB/AC"/> </comp> <comp lib="0" loc="(1050,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/ADH"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1000,1140)" name="Buffer"/> <comp lib="0" loc="(1050,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D62"/> </comp> <comp lib="0" loc="(100,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D67"/> </comp> <comp lib="0" loc="(100,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(100,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D73"/> </comp> <comp lib="0" loc="(110,1120)" name="Tunnel"> <a name="label" val="DL/PCH"/> </comp> <comp lib="6" loc="(765,349)" name="Text"> <a name="text" val="#ADL/ABL"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D64"/> </comp> <comp lib="0" loc="(100,1300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK6E"/> </comp> <comp loc="(860,430)" name="D_Latch"> <a name="label" val="ac_sb_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1000,850)" name="Buffer"/> <comp lib="0" loc="(1050,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PGX"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1050,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADH/ABH"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(510,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(190,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS/5"/> </comp> <comp lib="1" loc="(280,590)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(860,250)" name="D_Latch"> <a name="label" val="sb_ac_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,1540)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="1" loc="(1000,370)" name="Buffer"/> <comp lib="1" loc="(1000,650)" name="Buffer"/> <comp lib="1" loc="(320,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STOR"/> </comp> <comp lib="0" loc="(1050,50)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T2"/> </comp> <comp lib="6" loc="(601,1445)" name="Text"> <a name="text" val="JMP/4"/> </comp> <comp lib="1" loc="(1000,250)" name="Buffer"/> <comp loc="(860,760)" name="D_Latch"> <a name="label" val="sb_adh_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(270,1310)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="1" loc="(1000,510)" name="Buffer"/> <comp lib="0" loc="(100,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STXY"/> </comp> <comp lib="1" loc="(210,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1050,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AC/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1050,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADH0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(860,1130)" name="D_Latch"> <a name="label" val="adh_abh_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(670,1220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(100,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D47"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D63"/> </comp> <comp lib="6" loc="(628,579)" name="Text"> <a name="text" val="JSXY"/> </comp> <comp lib="0" loc="(1050,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADL/ABL"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(180,850)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(1050,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T6"/> </comp> <comp lib="6" loc="(397,362)" name="Text"> <a name="text" val="AND"/> </comp> <comp lib="1" loc="(550,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BR2"/> </comp> <comp lib="6" loc="(127,1386)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="1" loc="(570,1140)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(782,1246)" name="Text"> <a name="text" val="#DL/DB"/> </comp> <comp lib="0" loc="(220,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="1" loc="(700,1150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(1000,930)" name="Buffer"/> <comp lib="1" loc="(1000,180)" name="Buffer"/> <comp lib="1" loc="(470,100)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(340,1100)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D65"/> </comp> <comp lib="1" loc="(210,1390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(860,500)" name="D_Latch"> <a name="label" val="sb_db_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(460,1140)" name="Tunnel"> <a name="label" val="/ready"/> </comp> <comp loc="(860,650)" name="D_Latch"> <a name="label" val="ac_db_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(180,550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(144,1010)" name="Text"> <a name="text" val="push/pull"/> </comp> <comp lib="0" loc="(100,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D56"/> </comp> <comp lib="1" loc="(1000,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(737,433)" name="Text"> <a name="text" val="#AC/SB"/> </comp> <comp lib="1" loc="(710,510)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(620,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="1" loc="(180,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="1" loc="(180,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(320,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(208,926)" name="Text"> <a name="text" val="ABS/2"/> </comp> <comp lib="0" loc="(110,1150)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D59"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D82"/> </comp> <comp lib="0" loc="(100,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D91"/> </comp> <comp lib="0" loc="(110,1570)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(1050,930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL/ADL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D71"/> </comp> <comp lib="0" loc="(100,1480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#PCH/PCH"/> </comp> <comp lib="0" loc="(100,1240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="INC_SB"/> </comp> <comp lib="0" loc="(100,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D68"/> </comp> <comp lib="6" loc="(309,253)" name="Text"> <a name="text" val="#SB/AC"/> </comp> <comp lib="1" loc="(260,260)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="6" loc="(735,925)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D45"/> </comp> <comp lib="0" loc="(1050,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/AC"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(579,1397)" name="Text"> <a name="text" val="JSXY"/> </comp> <comp lib="1" loc="(270,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(740,504)" name="Text"> <a name="text" val="#SB/DB"/> </comp> <comp lib="6" loc="(268,997)" name="Text"> <a name="text" val="IMPLIED"/> </comp> <comp lib="1" loc="(360,440)" name="NOR Gate"/> <comp lib="6" loc="(119,594)" name="Text"> <a name="text" val="BR0"/> </comp> <comp lib="0" loc="(1050,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/ADH17"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,1090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(960,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T1"/> </comp> <comp lib="6" loc="(298,586)" name="Text"> <a name="text" val="PGX"/> </comp> <comp lib="1" loc="(300,1400)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1000,430)" name="Buffer"/> <comp lib="1" loc="(1000,770)" name="Buffer"/> <comp lib="0" loc="(1050,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZTST"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D46"/> </comp> <comp lib="6" loc="(736,102)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="1" loc="(760,370)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D128"/> </comp> <comp lib="0" loc="(110,1600)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(620,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(110,1510)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(100,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(360,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ready"/> </comp> <comp lib="1" loc="(410,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D83"/> </comp> <comp lib="0" loc="(100,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D84"/> </comp> <comp lib="0" loc="(590,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="1" loc="(440,1220)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp loc="(860,100)" name="D_Latch"> <a name="label" val="z_adh0_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(650,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(100,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D74"/> </comp> <comp lib="6" loc="(443,199)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="6" loc="(307,1625)" name="Text"> <a name="text" val="JSR/5"/> </comp> <comp lib="1" loc="(510,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(170,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(280,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACRL2"/> </comp> <comp loc="(860,1240)" name="D_Latch"> <a name="label" val="dl_db_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#SBXY"/> </comp> <comp lib="0" loc="(100,1600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T7"/> </comp> <comp loc="(860,840)" name="D_Latch"> <a name="label" val="dl_adh_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(370,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp loc="(860,360)" name="D_Latch"> <a name="label" val="adl_abl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D57"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D60"/> </comp> <comp lib="1" loc="(180,930)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(450,310)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(500,1190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1050,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AC/SB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(760,1140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(210,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(340,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1050,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB/ADH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D79"/> </comp> <comp lib="0" loc="(100,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/PCH"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D89"/> </comp> <comp lib="0" loc="(590,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="1" loc="(960,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D72"/> </comp> <comp lib="1" loc="(960,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D58"/> </comp> <comp loc="(260,1140)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(361,853)" name="Text"> <a name="text" val="IND"/> </comp> <comp loc="(860,920)" name="D_Latch"> <a name="label" val="dl_adl_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D66"/> </comp> <comp lib="1" loc="(680,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1000,1250)" name="Buffer"/> <comp lib="0" loc="(680,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/PCH"/> </comp> <comp lib="0" loc="(110,780)" name="Tunnel"> <a name="label" val="RTS/5"/> </comp> <comp lib="1" loc="(570,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(280,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="FLAGS_CONTROL"> <a name="circuit" val="FLAGS_CONTROL"/> <a name="clabel" val="FLAGS CONTROL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 18"/> <appear> <path d="M146,50 Q150,60 154,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#32ffd9" height="310" stroke="#000000" stroke-width="2" width="281" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="94">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="124">T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="324">ZTST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="244">/READY</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="264">SR</text> <circ-port height="8" pin="80,30" width="8" x="46" y="86"/> <circ-port height="8" pin="80,80" width="8" x="66" y="46"/> <circ-port height="8" pin="80,110" width="8" x="76" y="46"/> <circ-port height="8" pin="80,150" width="8" x="106" y="46"/> <circ-port height="8" pin="80,190" width="8" x="126" y="46"/> <circ-port height="8" pin="80,260" width="8" x="216" y="46"/> <circ-port height="8" pin="80,330" width="8" x="226" y="46"/> <circ-port height="8" pin="80,370" width="8" x="96" y="46"/> <circ-port height="8" pin="80,400" width="8" x="46" y="116"/> <circ-port height="8" pin="80,650" width="8" x="116" y="46"/> <circ-port height="8" pin="80,450" width="8" x="136" y="46"/> <circ-port height="8" pin="80,480" width="8" x="176" y="46"/> <circ-port height="8" pin="80,510" width="8" x="186" y="46"/> <circ-port height="8" pin="80,540" width="8" x="196" y="46"/> <circ-port height="8" pin="80,570" width="8" x="206" y="46"/> <circ-port height="8" pin="80,820" width="8" x="156" y="46"/> <circ-port height="8" pin="80,850" width="8" x="166" y="46"/> <circ-port height="8" pin="80,690" width="8" x="46" y="236"/> <circ-port height="8" pin="80,740" width="8" x="46" y="256"/> <circ-port height="8" pin="80,900" width="8" x="146" y="46"/> <circ-port height="10" pin="640,50" width="10" x="65" y="355"/> <circ-port height="10" pin="640,120" width="10" x="85" y="355"/> <circ-port height="10" pin="640,190" width="10" x="105" y="355"/> <circ-port height="10" pin="640,260" width="10" x="125" y="355"/> <circ-port height="10" pin="640,330" width="10" x="145" y="355"/> <circ-port height="10" pin="640,400" width="10" x="185" y="355"/> <circ-port height="10" pin="640,540" width="10" x="225" y="355"/> <circ-port height="10" pin="640,610" width="10" x="245" y="355"/> <circ-port height="10" pin="640,680" width="10" x="265" y="355"/> <circ-port height="10" pin="640,750" width="10" x="285" y="355"/> <circ-port height="10" pin="640,820" width="10" x="305" y="355"/> <circ-port height="8" pin="80,610" width="8" x="46" y="316"/> <circ-anchor facing="east" height="6" width="6" x="147" y="47"/> </appear> <wire from="(420,170)" to="(420,240)"/> <wire from="(420,810)" to="(420,880)"/> <wire from="(80,150)" to="(140,150)"/> <wire from="(80,190)" to="(140,190)"/> <wire from="(100,100)" to="(100,110)"/> <wire from="(80,510)" to="(190,510)"/> <wire from="(420,730)" to="(420,810)"/> <wire from="(80,570)" to="(120,570)"/> <wire from="(80,450)" to="(120,450)"/> <wire from="(290,400)" to="(290,500)"/> <wire from="(80,540)" to="(110,540)"/> <wire from="(510,580)" to="(530,580)"/> <wire from="(570,600)" to="(590,600)"/> <wire from="(570,680)" to="(590,680)"/> <wire from="(480,190)" to="(640,190)"/> <wire from="(480,750)" to="(640,750)"/> <wire from="(270,500)" to="(290,500)"/> <wire from="(340,530)" to="(360,530)"/> <wire from="(420,170)" to="(440,170)"/> <wire from="(420,730)" to="(440,730)"/> <wire from="(420,810)" to="(440,810)"/> <wire from="(160,330)" to="(440,330)"/> <wire from="(290,50)" to="(290,90)"/> <wire from="(80,110)" to="(100,110)"/> <wire from="(550,400)" to="(640,400)"/> <wire from="(290,50)" to="(440,50)"/> <wire from="(110,490)" to="(190,490)"/> <wire from="(510,830)" to="(510,880)"/> <wire from="(420,100)" to="(420,170)"/> <wire from="(570,620)" to="(570,630)"/> <wire from="(340,460)" to="(340,530)"/> <wire from="(340,780)" to="(590,780)"/> <wire from="(590,680)" to="(640,680)"/> <wire from="(110,480)" to="(110,490)"/> <wire from="(110,520)" to="(110,540)"/> <wire from="(80,820)" to="(120,820)"/> <wire from="(120,450)" to="(120,480)"/> <wire from="(400,540)" to="(440,540)"/> <wire from="(510,670)" to="(530,670)"/> <wire from="(510,830)" to="(530,830)"/> <wire from="(480,120)" to="(640,120)"/> <wire from="(80,740)" to="(360,740)"/> <wire from="(120,530)" to="(120,570)"/> <wire from="(420,380)" to="(440,380)"/> <wire from="(420,100)" to="(440,100)"/> <wire from="(160,260)" to="(440,260)"/> <wire from="(160,900)" to="(440,900)"/> <wire from="(340,460)" to="(550,460)"/> <wire from="(100,380)" to="(120,380)"/> <wire from="(100,100)" to="(120,100)"/> <wire from="(150,390)" to="(170,390)"/> <wire from="(550,400)" to="(550,460)"/> <wire from="(120,480)" to="(190,480)"/> <wire from="(510,520)" to="(510,580)"/> <wire from="(160,150)" to="(290,150)"/> <wire from="(480,400)" to="(550,400)"/> <wire from="(420,310)" to="(420,380)"/> <wire from="(420,30)" to="(420,100)"/> <wire from="(290,540)" to="(290,610)"/> <wire from="(570,590)" to="(570,600)"/> <wire from="(510,670)" to="(510,810)"/> <wire from="(80,330)" to="(140,330)"/> <wire from="(420,380)" to="(420,520)"/> <wire from="(100,840)" to="(100,850)"/> <wire from="(510,600)" to="(510,670)"/> <wire from="(340,760)" to="(340,780)"/> <wire from="(400,750)" to="(440,750)"/> <wire from="(340,550)" to="(340,650)"/> <wire from="(480,630)" to="(570,630)"/> <wire from="(420,630)" to="(420,730)"/> <wire from="(80,480)" to="(110,480)"/> <wire from="(510,600)" to="(530,600)"/> <wire from="(570,620)" to="(590,620)"/> <wire from="(480,520)" to="(510,520)"/> <wire from="(480,880)" to="(510,880)"/> <wire from="(480,330)" to="(640,330)"/> <wire from="(480,50)" to="(640,50)"/> <wire from="(340,550)" to="(360,550)"/> <wire from="(420,310)" to="(440,310)"/> <wire from="(420,630)" to="(440,630)"/> <wire from="(420,30)" to="(440,30)"/> <wire from="(160,190)" to="(440,190)"/> <wire from="(160,830)" to="(440,830)"/> <wire from="(80,850)" to="(100,850)"/> <wire from="(80,370)" to="(100,370)"/> <wire from="(590,680)" to="(590,780)"/> <wire from="(80,610)" to="(290,610)"/> <wire from="(570,820)" to="(640,820)"/> <wire from="(120,530)" to="(190,530)"/> <wire from="(80,650)" to="(340,650)"/> <wire from="(290,540)" to="(360,540)"/> <wire from="(630,610)" to="(640,610)"/> <wire from="(80,690)" to="(530,690)"/> <wire from="(420,240)" to="(420,310)"/> <wire from="(80,900)" to="(140,900)"/> <wire from="(80,260)" to="(140,260)"/> <wire from="(100,370)" to="(100,380)"/> <wire from="(170,390)" to="(170,470)"/> <wire from="(80,400)" to="(120,400)"/> <wire from="(80,80)" to="(120,80)"/> <wire from="(340,650)" to="(440,650)"/> <wire from="(290,120)" to="(290,150)"/> <wire from="(510,810)" to="(530,810)"/> <wire from="(480,810)" to="(510,810)"/> <wire from="(480,540)" to="(640,540)"/> <wire from="(480,260)" to="(640,260)"/> <wire from="(420,520)" to="(420,630)"/> <wire from="(340,760)" to="(360,760)"/> <wire from="(420,520)" to="(440,520)"/> <wire from="(420,240)" to="(440,240)"/> <wire from="(420,880)" to="(440,880)"/> <wire from="(100,840)" to="(120,840)"/> <wire from="(80,30)" to="(420,30)"/> <wire from="(170,470)" to="(190,470)"/> <wire from="(290,120)" to="(440,120)"/> <wire from="(290,400)" to="(440,400)"/> <wire from="(110,520)" to="(190,520)"/> <wire from="(160,90)" to="(290,90)"/> <wire from="(560,590)" to="(570,590)"/> <comp lib="0" loc="(80,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D120"/> </comp> <comp lib="6" loc="(305,536)" name="Text"> <a name="text" val="ZTST"/> </comp> <comp lib="6" loc="(189,146)" name="Text"> <a name="text" val="/CSI"/> </comp> <comp lib="1" loc="(560,590)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZTST"/> </comp> <comp lib="6" loc="(188,84)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="1" loc="(150,390)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D109"/> </comp> <comp lib="1" loc="(400,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,540)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D112"/> </comp> <comp lib="0" loc="(640,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/C"/> <a name="labelloc" val="east"/> </comp> <comp loc="(480,180)" name="D_Latch"> <a name="label" val="irc_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D110"/> </comp> <comp lib="1" loc="(160,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D118"/> </comp> <comp lib="6" loc="(368,395)" name="Text"> <a name="text" val="/ARIT"/> </comp> <comp lib="1" loc="(630,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/I"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D98"/> </comp> <comp lib="0" loc="(80,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D117"/> </comp> <comp lib="1" loc="(570,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D107"/> </comp> <comp lib="0" loc="(640,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DBZ/Z"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(258,826)" name="Text"> <a name="text" val="/PIN"/> </comp> <comp lib="1" loc="(160,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(80,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D115"/> </comp> <comp lib="0" loc="(80,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D99"/> </comp> <comp lib="1" loc="(570,820)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(480,530)" name="D_Latch"> <a name="label" val="dbz_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(640,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/C"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,830)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR"/> </comp> <comp loc="(480,820)" name="D_Latch"> <a name="label" val="pin_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(108,445)" name="Text"> <a name="text" val="AVR/V"/> </comp> <comp lib="0" loc="(640,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/V"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(640,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ACR/C"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D127"/> </comp> <comp loc="(480,110)" name="D_Latch"> <a name="label" val="iri_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(354,645)" name="Text"> <a name="text" val="BIT1"/> </comp> <comp lib="0" loc="(640,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/P"/> <a name="labelloc" val="east"/> </comp> <comp loc="(480,320)" name="D_Latch"> <a name="label" val="zv_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D114"/> </comp> <comp lib="6" loc="(103,896)" name="Text"> <a name="text" val="BIT0"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D108"/> </comp> <comp loc="(480,40)" name="D_Latch"> <a name="label" val="pdb_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(640,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="IR5/D"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(113,644)" name="Text"> <a name="text" val="BIT1"/> </comp> <comp lib="0" loc="(80,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D113"/> </comp> <comp lib="1" loc="(160,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D116"/> </comp> <comp lib="1" loc="(160,900)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(640,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/V"/> <a name="labelloc" val="east"/> </comp> <comp loc="(480,740)" name="D_Latch"> <a name="label" val="dbc_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(480,890)" name="D_Latch"> <a name="label" val="bit_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(480,250)" name="D_Latch"> <a name="label" val="ird_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D119"/> </comp> <comp loc="(480,640)" name="D_Latch"> <a name="label" val="dbn_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(640,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="P/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(270,500)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp loc="(480,390)" name="D_Latch"> <a name="label" val="acrc_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(640,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB/N"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="FLAGS"> <a name="circuit" val="FLAGS"/> <a name="clabel" val="FLAGS"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 18"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#52ff08" height="420" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="84">PHI1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="104">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="374">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="445">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="410">DB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="374">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="444">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="410">DB IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="124">B_OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="84">AVR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="203">DB/V</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="304">SO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="254" y="264">DBZ/Z</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="144">P/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="257" y="224">DB/N</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="224">IR5/C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="254" y="344">ACR/C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="183">DB/C</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="243">IR5/D</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="264">IR5/I</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="284">0/V</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="257" y="244">DB/P</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="324">ACR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="203">/IR5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="164">BRK6E</text> <circ-port height="8" pin="90,910" width="8" x="46" y="76"/> <circ-port height="8" pin="90,940" width="8" x="46" y="96"/> <circ-port height="8" pin="90,30" width="8" x="46" y="136"/> <circ-port height="8" pin="90,70" width="8" x="46" y="116"/> <circ-port height="8" pin="90,110" width="8" x="46" y="366"/> <circ-port height="8" pin="90,150" width="8" x="46" y="376"/> <circ-port height="8" pin="90,190" width="8" x="46" y="386"/> <circ-port height="8" pin="90,230" width="8" x="46" y="396"/> <circ-port height="8" pin="90,270" width="8" x="46" y="406"/> <circ-port height="8" pin="90,310" width="8" x="46" y="416"/> <circ-port height="8" pin="90,350" width="8" x="46" y="426"/> <circ-port height="8" pin="90,390" width="8" x="46" y="436"/> <circ-port height="8" pin="90,470" width="8" x="276" y="236"/> <circ-port height="8" pin="90,510" width="8" x="276" y="256"/> <circ-port height="8" pin="90,550" width="8" x="276" y="216"/> <circ-port height="8" pin="90,600" width="8" x="46" y="216"/> <circ-port height="8" pin="90,740" width="8" x="276" y="336"/> <circ-port height="8" pin="90,700" width="8" x="276" y="176"/> <circ-port height="8" pin="90,830" width="8" x="46" y="236"/> <circ-port height="8" pin="90,1160" width="8" x="46" y="256"/> <circ-port height="8" pin="90,630" width="8" x="276" y="316"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="196"/> <circ-port height="8" pin="90,1270" width="8" x="276" y="76"/> <circ-port height="8" pin="90,1390" width="8" x="166" y="46"/> <circ-port height="8" pin="90,1340" width="8" x="276" y="196"/> <circ-port height="8" pin="90,1440" width="8" x="46" y="276"/> <circ-port height="10" pin="1030,140" width="10" x="275" y="365"/> <circ-port height="10" pin="1030,180" width="10" x="275" y="375"/> <circ-port height="10" pin="1030,220" width="10" x="275" y="385"/> <circ-port height="10" pin="1030,260" width="10" x="275" y="395"/> <circ-port height="10" pin="1030,300" width="10" x="275" y="405"/> <circ-port height="10" pin="1030,340" width="10" x="275" y="415"/> <circ-port height="10" pin="1030,380" width="10" x="275" y="425"/> <circ-port height="10" pin="1030,420" width="10" x="275" y="435"/> <circ-port height="10" pin="1030,590" width="10" x="165" y="465"/> <circ-port height="10" pin="1030,630" width="10" x="145" y="465"/> <circ-port height="10" pin="1030,670" width="10" x="125" y="465"/> <circ-port height="10" pin="1030,710" width="10" x="105" y="465"/> <circ-port height="10" pin="1030,750" width="10" x="85" y="465"/> <circ-port height="10" pin="1030,790" width="10" x="65" y="465"/> <circ-port height="8" pin="90,1570" width="8" x="46" y="296"/> <circ-port height="8" pin="90,1210" width="8" x="46" y="156"/> <circ-anchor facing="east" height="6" width="6" x="67" y="47"/> </appear> <wire from="(980,340)" to="(1030,340)"/> <wire from="(530,1330)" to="(530,1340)"/> <wire from="(450,1020)" to="(770,1020)"/> <wire from="(330,730)" to="(380,730)"/> <wire from="(540,1370)" to="(540,1440)"/> <wire from="(750,420)" to="(810,420)"/> <wire from="(850,260)" to="(850,710)"/> <wire from="(530,1340)" to="(570,1340)"/> <wire from="(580,1550)" to="(620,1550)"/> <wire from="(230,1070)" to="(470,1070)"/> <wire from="(500,590)" to="(540,590)"/> <wire from="(810,890)" to="(810,930)"/> <wire from="(440,1100)" to="(470,1100)"/> <wire from="(430,1570)" to="(460,1570)"/> <wire from="(170,90)" to="(320,90)"/> <wire from="(650,240)" to="(810,240)"/> <wire from="(620,1110)" to="(710,1110)"/> <wire from="(90,270)" to="(170,270)"/> <wire from="(460,900)" to="(470,900)"/> <wire from="(830,670)" to="(1030,670)"/> <wire from="(110,230)" to="(120,230)"/> <wire from="(810,1090)" to="(820,1090)"/> <wire from="(700,180)" to="(710,180)"/> <wire from="(700,500)" to="(710,500)"/> <wire from="(700,1540)" to="(710,1540)"/> <wire from="(190,110)" to="(190,170)"/> <wire from="(170,90)" to="(170,150)"/> <wire from="(310,740)" to="(380,740)"/> <wire from="(450,1170)" to="(450,1240)"/> <wire from="(850,710)" to="(1030,710)"/> <wire from="(830,140)" to="(950,140)"/> <wire from="(810,200)" to="(930,200)"/> <wire from="(330,600)" to="(330,730)"/> <wire from="(750,1350)" to="(810,1350)"/> <wire from="(930,200)" to="(930,590)"/> <wire from="(420,1270)" to="(470,1270)"/> <wire from="(170,220)" to="(220,220)"/> <wire from="(350,1340)" to="(470,1340)"/> <wire from="(650,770)" to="(710,770)"/> <wire from="(280,1370)" to="(280,1390)"/> <wire from="(500,1280)" to="(540,1280)"/> <wire from="(850,260)" to="(950,260)"/> <wire from="(440,1370)" to="(440,1390)"/> <wire from="(870,750)" to="(870,1100)"/> <wire from="(360,1120)" to="(470,1120)"/> <wire from="(610,420)" to="(710,420)"/> <wire from="(930,180)" to="(930,200)"/> <wire from="(540,430)" to="(540,450)"/> <wire from="(500,400)" to="(540,400)"/> <wire from="(350,1380)" to="(380,1380)"/> <wire from="(90,310)" to="(180,310)"/> <wire from="(750,750)" to="(770,750)"/> <wire from="(1000,170)" to="(1000,210)"/> <wire from="(1000,250)" to="(1000,290)"/> <wire from="(320,1520)" to="(340,1520)"/> <wire from="(540,690)" to="(570,690)"/> <wire from="(540,1330)" to="(570,1330)"/> <wire from="(400,880)" to="(420,880)"/> <wire from="(650,930)" to="(810,930)"/> <wire from="(450,1170)" to="(470,1170)"/> <wire from="(450,850)" to="(470,850)"/> <wire from="(870,750)" to="(1030,750)"/> <wire from="(90,1050)" to="(110,1050)"/> <wire from="(90,1210)" to="(110,1210)"/> <wire from="(230,1160)" to="(380,1160)"/> <wire from="(370,940)" to="(380,940)"/> <wire from="(170,220)" to="(170,270)"/> <wire from="(540,590)" to="(540,650)"/> <wire from="(340,90)" to="(420,90)"/> <wire from="(650,460)" to="(650,520)"/> <wire from="(500,890)" to="(580,890)"/> <wire from="(890,790)" to="(1030,790)"/> <wire from="(770,500)" to="(770,550)"/> <wire from="(160,1570)" to="(360,1570)"/> <wire from="(700,1430)" to="(710,1430)"/> <wire from="(700,1190)" to="(710,1190)"/> <wire from="(700,870)" to="(710,870)"/> <wire from="(870,220)" to="(950,220)"/> <wire from="(410,580)" to="(470,580)"/> <wire from="(540,400)" to="(540,410)"/> <wire from="(660,1560)" to="(710,1560)"/> <wire from="(450,800)" to="(770,800)"/> <wire from="(420,1320)" to="(470,1320)"/> <wire from="(750,200)" to="(810,200)"/> <wire from="(530,1360)" to="(570,1360)"/> <wire from="(500,1570)" to="(540,1570)"/> <wire from="(360,700)" to="(360,720)"/> <wire from="(180,230)" to="(180,310)"/> <wire from="(110,200)" to="(220,200)"/> <wire from="(280,1290)" to="(280,1370)"/> <wire from="(430,1570)" to="(430,1600)"/> <wire from="(350,1500)" to="(770,1500)"/> <wire from="(90,110)" to="(190,110)"/> <wire from="(500,450)" to="(540,450)"/> <wire from="(540,1120)" to="(540,1160)"/> <wire from="(930,180)" to="(950,180)"/> <wire from="(970,380)" to="(990,380)"/> <wire from="(970,220)" to="(990,220)"/> <wire from="(970,140)" to="(990,140)"/> <wire from="(1010,260)" to="(1030,260)"/> <wire from="(1010,420)" to="(1030,420)"/> <wire from="(1010,180)" to="(1030,180)"/> <wire from="(810,670)" to="(810,710)"/> <wire from="(440,880)" to="(470,880)"/> <wire from="(350,310)" to="(380,310)"/> <wire from="(190,240)" to="(190,350)"/> <wire from="(90,940)" to="(110,940)"/> <wire from="(200,250)" to="(220,250)"/> <wire from="(620,890)" to="(710,890)"/> <wire from="(420,320)" to="(430,320)"/> <wire from="(330,600)" to="(470,600)"/> <wire from="(450,1550)" to="(460,1550)"/> <wire from="(90,30)" to="(1000,30)"/> <wire from="(90,1160)" to="(230,1160)"/> <wire from="(650,1390)" to="(650,1450)"/> <wire from="(650,1150)" to="(650,1210)"/> <wire from="(110,170)" to="(120,170)"/> <wire from="(110,330)" to="(120,330)"/> <wire from="(630,670)" to="(710,670)"/> <wire from="(540,1280)" to="(540,1330)"/> <wire from="(750,1110)" to="(830,1110)"/> <wire from="(700,280)" to="(710,280)"/> <wire from="(770,1430)" to="(770,1480)"/> <wire from="(770,1190)" to="(770,1240)"/> <wire from="(450,950)" to="(450,1020)"/> <wire from="(530,680)" to="(530,690)"/> <wire from="(420,730)" to="(470,730)"/> <wire from="(420,410)" to="(470,410)"/> <wire from="(90,70)" to="(910,70)"/> <wire from="(200,250)" to="(200,390)"/> <wire from="(750,890)" to="(810,890)"/> <wire from="(540,1100)" to="(580,1100)"/> <wire from="(500,1060)" to="(540,1060)"/> <wire from="(90,600)" to="(330,600)"/> <wire from="(430,1600)" to="(600,1600)"/> <wire from="(90,390)" to="(200,390)"/> <wire from="(810,890)" to="(850,890)"/> <wire from="(610,200)" to="(710,200)"/> <wire from="(280,1390)" to="(380,1390)"/> <wire from="(420,410)" to="(420,440)"/> <wire from="(330,830)" to="(330,920)"/> <wire from="(310,650)" to="(310,740)"/> <wire from="(870,220)" to="(870,750)"/> <wire from="(500,740)" to="(540,740)"/> <wire from="(810,670)" to="(830,670)"/> <wire from="(350,1400)" to="(380,1400)"/> <wire from="(650,710)" to="(810,710)"/> <wire from="(450,950)" to="(470,950)"/> <wire from="(90,190)" to="(110,190)"/> <wire from="(90,350)" to="(110,350)"/> <wire from="(90,510)" to="(110,510)"/> <wire from="(90,910)" to="(110,910)"/> <wire from="(410,680)" to="(420,680)"/> <wire from="(90,700)" to="(360,700)"/> <wire from="(450,280)" to="(450,330)"/> <wire from="(650,240)" to="(650,300)"/> <wire from="(770,280)" to="(770,330)"/> <wire from="(540,690)" to="(540,740)"/> <wire from="(430,260)" to="(430,320)"/> <wire from="(700,650)" to="(710,650)"/> <wire from="(700,970)" to="(710,970)"/> <wire from="(870,1100)" to="(870,1150)"/> <wire from="(220,1370)" to="(280,1370)"/> <wire from="(420,90)" to="(420,160)"/> <wire from="(90,1270)" to="(400,1270)"/> <wire from="(90,1570)" to="(140,1570)"/> <wire from="(650,520)" to="(710,520)"/> <wire from="(530,660)" to="(570,660)"/> <wire from="(360,1120)" to="(360,1140)"/> <wire from="(520,1520)" to="(520,1550)"/> <wire from="(180,230)" to="(220,230)"/> <wire from="(540,900)" to="(540,940)"/> <wire from="(540,1060)" to="(540,1100)"/> <wire from="(190,170)" to="(220,170)"/> <wire from="(750,1540)" to="(770,1540)"/> <wire from="(520,1550)" to="(540,1550)"/> <wire from="(500,640)" to="(530,640)"/> <wire from="(750,500)" to="(770,500)"/> <wire from="(350,330)" to="(380,330)"/> <wire from="(300,210)" to="(320,210)"/> <wire from="(450,280)" to="(470,280)"/> <wire from="(540,200)" to="(570,200)"/> <wire from="(1000,30)" to="(1000,130)"/> <wire from="(450,440)" to="(470,440)"/> <wire from="(650,1150)" to="(870,1150)"/> <wire from="(90,150)" to="(170,150)"/> <wire from="(190,110)" to="(200,110)"/> <wire from="(170,1370)" to="(180,1370)"/> <wire from="(650,930)" to="(650,990)"/> <wire from="(850,710)" to="(850,890)"/> <wire from="(860,1100)" to="(870,1100)"/> <wire from="(810,1350)" to="(890,1350)"/> <wire from="(90,1440)" to="(540,1440)"/> <wire from="(770,970)" to="(770,1020)"/> <wire from="(280,1290)" to="(470,1290)"/> <wire from="(450,550)" to="(770,550)"/> <wire from="(420,1150)" to="(470,1150)"/> <wire from="(340,1520)" to="(520,1520)"/> <wire from="(500,270)" to="(550,270)"/> <wire from="(170,180)" to="(220,180)"/> <wire from="(650,1210)" to="(710,1210)"/> <wire from="(650,1450)" to="(710,1450)"/> <wire from="(750,670)" to="(810,670)"/> <wire from="(540,1120)" to="(580,1120)"/> <wire from="(540,880)" to="(580,880)"/> <wire from="(810,420)" to="(910,420)"/> <wire from="(500,1160)" to="(540,1160)"/> <wire from="(110,190)" to="(220,190)"/> <wire from="(600,1570)" to="(600,1600)"/> <wire from="(230,1070)" to="(230,1160)"/> <wire from="(110,200)" to="(110,230)"/> <wire from="(500,840)" to="(540,840)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(90,1390)" to="(180,1390)"/> <wire from="(440,630)" to="(470,630)"/> <wire from="(810,420)" to="(810,460)"/> <wire from="(770,1500)" to="(770,1540)"/> <wire from="(500,690)" to="(530,690)"/> <wire from="(750,1190)" to="(770,1190)"/> <wire from="(1000,370)" to="(1000,410)"/> <wire from="(1000,210)" to="(1000,250)"/> <wire from="(1000,130)" to="(1000,170)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(540,650)" to="(570,650)"/> <wire from="(540,1370)" to="(570,1370)"/> <wire from="(500,1330)" to="(530,1330)"/> <wire from="(400,440)" to="(420,440)"/> <wire from="(540,410)" to="(570,410)"/> <wire from="(410,1100)" to="(420,1100)"/> <wire from="(330,830)" to="(470,830)"/> <wire from="(350,1120)" to="(360,1120)"/> <wire from="(90,630)" to="(420,630)"/> <wire from="(340,210)" to="(470,210)"/> <wire from="(700,750)" to="(710,750)"/> <wire from="(910,300)" to="(990,300)"/> <wire from="(200,390)" to="(330,390)"/> <wire from="(910,630)" to="(1030,630)"/> <wire from="(450,1480)" to="(770,1480)"/> <wire from="(450,1240)" to="(770,1240)"/> <wire from="(420,160)" to="(470,160)"/> <wire from="(890,380)" to="(950,380)"/> <wire from="(350,390)" to="(470,390)"/> <wire from="(650,300)" to="(710,300)"/> <wire from="(530,680)" to="(570,680)"/> <wire from="(90,830)" to="(330,830)"/> <wire from="(930,590)" to="(1030,590)"/> <wire from="(110,170)" to="(110,190)"/> <wire from="(110,330)" to="(110,350)"/> <wire from="(910,420)" to="(950,420)"/> <wire from="(340,1520)" to="(340,1550)"/> <wire from="(170,150)" to="(170,180)"/> <wire from="(540,200)" to="(540,220)"/> <wire from="(450,460)" to="(450,550)"/> <wire from="(430,180)" to="(470,180)"/> <wire from="(430,260)" to="(470,260)"/> <wire from="(1000,290)" to="(1000,370)"/> <wire from="(910,420)" to="(910,630)"/> <wire from="(500,170)" to="(540,170)"/> <wire from="(540,840)" to="(540,880)"/> <wire from="(350,1400)" to="(350,1500)"/> <wire from="(970,180)" to="(990,180)"/> <wire from="(970,420)" to="(990,420)"/> <wire from="(970,260)" to="(990,260)"/> <wire from="(1010,380)" to="(1030,380)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(1010,140)" to="(1030,140)"/> <wire from="(1010,300)" to="(1030,300)"/> <wire from="(810,1350)" to="(810,1390)"/> <wire from="(440,680)" to="(470,680)"/> <wire from="(600,1570)" to="(620,1570)"/> <wire from="(750,280)" to="(770,280)"/> <wire from="(340,1550)" to="(360,1550)"/> <wire from="(650,460)" to="(810,460)"/> <wire from="(500,1380)" to="(530,1380)"/> <wire from="(420,1390)" to="(440,1390)"/> <wire from="(450,460)" to="(470,460)"/> <wire from="(420,440)" to="(430,440)"/> <wire from="(110,350)" to="(190,350)"/> <wire from="(550,210)" to="(550,270)"/> <wire from="(450,750)" to="(450,800)"/> <wire from="(650,710)" to="(650,770)"/> <wire from="(630,1350)" to="(710,1350)"/> <wire from="(400,1050)" to="(470,1050)"/> <wire from="(700,400)" to="(710,400)"/> <wire from="(890,790)" to="(890,1350)"/> <wire from="(90,1340)" to="(350,1340)"/> <wire from="(770,750)" to="(770,800)"/> <wire from="(450,330)" to="(770,330)"/> <wire from="(420,930)" to="(470,930)"/> <wire from="(330,920)" to="(380,920)"/> <wire from="(650,990)" to="(710,990)"/> <wire from="(540,900)" to="(580,900)"/> <wire from="(500,940)" to="(540,940)"/> <wire from="(360,700)" to="(470,700)"/> <wire from="(890,380)" to="(890,790)"/> <wire from="(530,640)" to="(530,660)"/> <wire from="(530,1360)" to="(530,1380)"/> <wire from="(540,170)" to="(540,190)"/> <wire from="(450,1390)" to="(450,1480)"/> <wire from="(830,140)" to="(830,670)"/> <wire from="(430,230)" to="(470,230)"/> <wire from="(500,220)" to="(540,220)"/> <wire from="(190,240)" to="(220,240)"/> <wire from="(810,200)" to="(810,240)"/> <wire from="(400,1570)" to="(430,1570)"/> <wire from="(550,210)" to="(570,210)"/> <wire from="(310,650)" to="(470,650)"/> <wire from="(440,1370)" to="(470,1370)"/> <wire from="(90,740)" to="(310,740)"/> <wire from="(750,970)" to="(770,970)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(380,1320)" to="(400,1320)"/> <wire from="(650,1390)" to="(810,1390)"/> <wire from="(540,430)" to="(570,430)"/> <wire from="(540,190)" to="(570,190)"/> <wire from="(450,750)" to="(470,750)"/> <wire from="(450,1390)" to="(470,1390)"/> <wire from="(910,70)" to="(910,300)"/> <wire from="(350,1340)" to="(350,1380)"/> <wire from="(90,230)" to="(110,230)"/> <wire from="(90,550)" to="(110,550)"/> <wire from="(90,470)" to="(110,470)"/> <wire from="(500,1110)" to="(580,1110)"/> <wire from="(700,1330)" to="(710,1330)"/> <wire from="(700,1090)" to="(710,1090)"/> <comp loc="(500,1560)" name="D_Latch"> <a name="label" val="so_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(500,1160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,1110)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(365,1418)" name="Text"> <a name="text" val="1/V"/> </comp> <comp lib="1" loc="(1010,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(791,194)" name="Text"> <a name="text" val="/Z_OUT"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="label" val="DB5"/> </comp> <comp lib="6" loc="(113,1384)" name="Text"> <a name="text" val="AVR/V"/> </comp> <comp lib="0" loc="(90,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR5/D"/> </comp> <comp lib="1" loc="(970,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1010,420)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1030,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/V"/> </comp> <comp lib="1" loc="(860,1100)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(90,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AVR"/> </comp> <comp lib="0" loc="(1030,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(610,200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(700,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(170,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1030,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(750,290)" name="D_Latch"> <a name="label" val="z_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,1050)" name="Tunnel"> <a name="label" val="/IR5"/> </comp> <comp lib="1" loc="(500,220)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBZ/Z"/> </comp> <comp lib="1" loc="(630,670)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR5/C"/> </comp> <comp lib="0" loc="(380,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(340,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/N"/> </comp> <comp lib="0" loc="(700,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(970,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(378,205)" name="Text"> <a name="text" val="/DBZ"/> </comp> <comp lib="6" loc="(371,1365)" name="Text"> <a name="text" val="DB/V"/> </comp> <comp lib="0" loc="(450,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/IR5"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="B_OUT"/> </comp> <comp lib="6" loc="(454,676)" name="Text"> <a name="text" val="/DB0"/> </comp> <comp lib="1" loc="(500,1380)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/C"/> </comp> <comp lib="0" loc="(1030,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,1100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1010,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(1030,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/I_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(970,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,400)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1030,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/C_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,510)" name="Tunnel"> <a name="label" val="DBZ/Z"/> </comp> <comp lib="1" loc="(500,270)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(435,824)" name="Text"> <a name="text" val="IR5/D"/> </comp> <comp lib="0" loc="(350,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/P"/> </comp> <comp lib="0" loc="(1030,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/P"/> </comp> <comp loc="(750,1340)" name="D_Latch"> <a name="label" val="v_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="label" val="DB4"/> </comp> <comp lib="1" loc="(440,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(400,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/IR5"/> </comp> <comp loc="(750,1550)" name="D_Latch"> <a name="label" val="vset_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(700,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,940)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(700,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(354,915)" name="Text"> <a name="text" val="IR5/D"/> </comp> <comp loc="(750,510)" name="D_Latch"> <a name="label" val="n_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(730,620)" name="Text"> <a name="text" val="C FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="6" loc="(732,833)" name="Text"> <a name="text" val="D FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="0" loc="(1030,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/N_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,890)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(455,874)" name="Text"> <a name="text" val="/DB3"/> </comp> <comp lib="1" loc="(660,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(750,1200)" name="D_Latch"> <a name="label" val="i_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(960,345)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="1" loc="(500,1110)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(500,640)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(732,150)" name="Text"> <a name="text" val="Z FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(450,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(750,1440)" name="D_Latch"> <a name="label" val="v_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(300,210)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="8"/> </comp> <comp loc="(750,410)" name="D_Latch"> <a name="label" val="n_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(232,736)" name="Text"> <a name="text" val="ACR/C"/> </comp> <comp lib="6" loc="(785,663)" name="Text"> <a name="text" val="/C_OUT"/> </comp> <comp lib="0" loc="(120,330)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp loc="(750,190)" name="D_Latch"> <a name="label" val="z_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="P/DB"/> </comp> <comp loc="(400,1560)" name="D_Latch"> <a name="label" val="so_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(790,413)" name="Text"> <a name="text" val="/N_OUT"/> </comp> <comp lib="0" loc="(400,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(439,1313)" name="Text"> <a name="text" val="/DB6"/> </comp> <comp lib="6" loc="(452,1066)" name="Text"> <a name="text" val="IR5/I"/> </comp> <comp lib="6" loc="(730,372)" name="Text"> <a name="text" val="N FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="0" loc="(460,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/P"/> </comp> <comp lib="6" loc="(449,646)" name="Text"> <a name="text" val="ACR/C"/> </comp> <comp loc="(750,980)" name="D_Latch"> <a name="label" val="d_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(350,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/P"/> </comp> <comp lib="1" loc="(1010,380)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(728,1291)" name="Text"> <a name="text" val="V FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="1" loc="(500,740)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(410,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/IR5"/> </comp> <comp lib="0" loc="(450,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/P"/> </comp> <comp lib="1" loc="(160,1570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(451,696)" name="Text"> <a name="text" val="DB/C"/> </comp> <comp lib="1" loc="(1010,300)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="label" val="DB2"/> </comp> <comp loc="(220,1380)" name="D_Latch"> <a name="label" val="avr_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1030,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1030,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(500,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,590)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="label" val="DB7"/> </comp> <comp lib="6" loc="(343,1158)" name="Text"> <a name="text" val="IR5/I"/> </comp> <comp lib="1" loc="(420,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACR/C"/> </comp> <comp lib="0" loc="(200,110)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp loc="(580,1560)" name="D_Latch"> <a name="label" val="so_latch3"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(700,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,910)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="6" loc="(456,624)" name="Text"> <a name="text" val="/ACR"/> </comp> <comp lib="0" loc="(410,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="6" loc="(453,1091)" name="Text"> <a name="text" val="/DB2"/> </comp> <comp lib="6" loc="(410,1437)" name="Text"> <a name="text" val="0/V"/> </comp> <comp lib="0" loc="(430,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/P"/> </comp> <comp lib="1" loc="(500,1060)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1010,220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/V"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/IR5"/> </comp> <comp lib="1" loc="(340,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,930)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="label" val="DB3"/> </comp> <comp lib="1" loc="(500,170)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,940)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(500,1280)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(320,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1030,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/Z_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(350,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,450)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,550)" name="Tunnel"> <a name="label" val="DB/N"/> </comp> <comp lib="1" loc="(420,1320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(378,84)" name="Text"> <a name="text" val="/DB1"/> </comp> <comp lib="0" loc="(1030,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(810,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp loc="(750,660)" name="D_Latch"> <a name="label" val="c_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(440,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(352,694)" name="Text"> <a name="text" val="DB/C"/> </comp> <comp lib="0" loc="(120,170)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(610,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,1330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(750,1100)" name="D_Latch"> <a name="label" val="i_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(750,760)" name="D_Latch"> <a name="label" val="c_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(500,690)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(786,1344)" name="Text"> <a name="text" val="/V_OUT"/> </comp> <comp lib="1" loc="(420,1270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,940)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,1350)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(1030,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/V_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(1030,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/D_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,1210)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="1" loc="(1010,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp loc="(750,880)" name="D_Latch"> <a name="label" val="d_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,230)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(448,597)" name="Text"> <a name="text" val="IR5/C"/> </comp> <comp lib="6" loc="(444,1262)" name="Text"> <a name="text" val="/AVR"/> </comp> <comp lib="1" loc="(970,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(437,1334)" name="Text"> <a name="text" val="DB/V"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D112"/> </comp> <comp lib="0" loc="(400,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/N"/> </comp> <comp lib="0" loc="(430,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBZ/Z"/> </comp> <comp lib="0" loc="(90,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IR5/I"/> </comp> <comp lib="1" loc="(970,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(391,384)" name="Text"> <a name="text" val="/DB7"/> </comp> <comp lib="0" loc="(110,470)" name="Tunnel"> <a name="label" val="DB/P"/> </comp> <comp lib="6" loc="(732,1052)" name="Text"> <a name="text" val="I FLAG"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="0" loc="(350,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBZ/Z"/> </comp> <comp lib="6" loc="(847,1144)" name="Text"> <a name="text" val="/I_OUT"/> </comp> <comp lib="1" loc="(420,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(786,885)" name="Text"> <a name="text" val="/D_OUT"/> </comp> <comp lib="0" loc="(700,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> </circuit> <circuit name="ABH"> <a name="circuit" val="ABH"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ff5895" height="214" stroke="#000000" stroke-width="2" width="140" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="46">ABH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="211">ADH IN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="74">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="82" y="103">ADH/ABH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="84">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="151" y="211">ADDR OUT</text> <circ-port height="8" pin="90,30" width="8" x="46" y="66"/> <circ-port height="8" pin="90,90" width="8" x="46" y="96"/> <circ-port height="8" pin="90,220" width="8" x="46" y="166"/> <circ-port height="8" pin="90,250" width="8" x="46" y="176"/> <circ-port height="8" pin="90,280" width="8" x="46" y="186"/> <circ-port height="8" pin="90,310" width="8" x="46" y="196"/> <circ-port height="8" pin="90,340" width="8" x="46" y="206"/> <circ-port height="8" pin="90,370" width="8" x="46" y="216"/> <circ-port height="8" pin="90,400" width="8" x="46" y="226"/> <circ-port height="8" pin="90,430" width="8" x="46" y="236"/> <circ-port height="10" pin="660,230" width="10" x="185" y="165"/> <circ-port height="10" pin="660,260" width="10" x="185" y="175"/> <circ-port height="10" pin="660,290" width="10" x="185" y="185"/> <circ-port height="10" pin="660,320" width="10" x="185" y="195"/> <circ-port height="10" pin="660,350" width="10" x="185" y="205"/> <circ-port height="10" pin="660,380" width="10" x="185" y="215"/> <circ-port height="10" pin="660,410" width="10" x="185" y="225"/> <circ-port height="10" pin="660,440" width="10" x="185" y="235"/> <circ-port height="8" pin="90,60" width="8" x="46" y="76"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(540,440)" to="(660,440)"/> <wire from="(400,390)" to="(460,390)"/> <wire from="(430,90)" to="(430,220)"/> <wire from="(440,60)" to="(440,200)"/> <wire from="(630,130)" to="(630,260)"/> <wire from="(100,560)" to="(410,560)"/> <wire from="(450,30)" to="(570,30)"/> <wire from="(210,360)" to="(210,440)"/> <wire from="(210,280)" to="(210,360)"/> <wire from="(210,200)" to="(210,280)"/> <wire from="(430,380)" to="(430,460)"/> <wire from="(430,300)" to="(430,380)"/> <wire from="(430,220)" to="(430,300)"/> <wire from="(90,340)" to="(130,340)"/> <wire from="(220,30)" to="(450,30)"/> <wire from="(210,60)" to="(440,60)"/> <wire from="(200,90)" to="(430,90)"/> <wire from="(310,440)" to="(350,440)"/> <wire from="(200,460)" to="(230,460)"/> <wire from="(200,380)" to="(230,380)"/> <wire from="(200,300)" to="(230,300)"/> <wire from="(200,220)" to="(230,220)"/> <wire from="(610,150)" to="(610,320)"/> <wire from="(640,230)" to="(660,230)"/> <wire from="(450,30)" to="(450,190)"/> <wire from="(350,150)" to="(350,440)"/> <wire from="(540,360)" to="(570,360)"/> <wire from="(90,400)" to="(110,400)"/> <wire from="(210,440)" to="(230,440)"/> <wire from="(210,360)" to="(230,360)"/> <wire from="(210,280)" to="(230,280)"/> <wire from="(210,200)" to="(230,200)"/> <wire from="(160,390)" to="(230,390)"/> <wire from="(440,60)" to="(570,60)"/> <wire from="(90,280)" to="(160,280)"/> <wire from="(90,30)" to="(220,30)"/> <wire from="(380,230)" to="(380,500)"/> <wire from="(180,310)" to="(230,310)"/> <wire from="(400,390)" to="(400,540)"/> <wire from="(540,280)" to="(580,280)"/> <wire from="(330,130)" to="(630,130)"/> <wire from="(90,90)" to="(200,90)"/> <wire from="(320,120)" to="(320,200)"/> <wire from="(440,360)" to="(440,440)"/> <wire from="(440,280)" to="(440,360)"/> <wire from="(440,200)" to="(440,280)"/> <wire from="(90,220)" to="(190,220)"/> <wire from="(430,460)" to="(460,460)"/> <wire from="(430,380)" to="(460,380)"/> <wire from="(430,300)" to="(460,300)"/> <wire from="(430,220)" to="(460,220)"/> <wire from="(640,120)" to="(640,230)"/> <wire from="(440,440)" to="(460,440)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,280)" to="(460,280)"/> <wire from="(440,200)" to="(460,200)"/> <wire from="(630,260)" to="(660,260)"/> <wire from="(160,280)" to="(160,390)"/> <wire from="(120,510)" to="(390,510)"/> <wire from="(310,200)" to="(320,200)"/> <wire from="(430,90)" to="(570,90)"/> <wire from="(590,350)" to="(660,350)"/> <wire from="(220,430)" to="(230,430)"/> <wire from="(220,350)" to="(230,350)"/> <wire from="(220,270)" to="(230,270)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(350,150)" to="(610,150)"/> <wire from="(390,310)" to="(460,310)"/> <wire from="(130,500)" to="(380,500)"/> <wire from="(540,200)" to="(590,200)"/> <wire from="(410,470)" to="(460,470)"/> <wire from="(620,290)" to="(660,290)"/> <wire from="(330,130)" to="(330,280)"/> <wire from="(220,350)" to="(220,430)"/> <wire from="(220,270)" to="(220,350)"/> <wire from="(220,190)" to="(220,270)"/> <wire from="(620,140)" to="(620,290)"/> <wire from="(150,310)" to="(150,470)"/> <wire from="(90,370)" to="(120,370)"/> <wire from="(310,280)" to="(330,280)"/> <wire from="(450,350)" to="(460,350)"/> <wire from="(450,270)" to="(460,270)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(450,430)" to="(460,430)"/> <wire from="(150,470)" to="(230,470)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(580,380)" to="(660,380)"/> <wire from="(200,90)" to="(200,220)"/> <wire from="(100,430)" to="(100,560)"/> <wire from="(320,120)" to="(640,120)"/> <wire from="(90,310)" to="(150,310)"/> <wire from="(610,320)" to="(660,320)"/> <wire from="(190,220)" to="(190,230)"/> <wire from="(90,60)" to="(210,60)"/> <wire from="(120,370)" to="(120,510)"/> <wire from="(110,400)" to="(110,540)"/> <wire from="(390,310)" to="(390,510)"/> <wire from="(210,60)" to="(210,200)"/> <wire from="(200,380)" to="(200,460)"/> <wire from="(200,300)" to="(200,380)"/> <wire from="(200,220)" to="(200,300)"/> <wire from="(450,350)" to="(450,430)"/> <wire from="(450,270)" to="(450,350)"/> <wire from="(450,190)" to="(450,270)"/> <wire from="(340,140)" to="(340,360)"/> <wire from="(190,230)" to="(230,230)"/> <wire from="(410,470)" to="(410,560)"/> <wire from="(110,540)" to="(400,540)"/> <wire from="(590,200)" to="(590,350)"/> <wire from="(130,340)" to="(130,500)"/> <wire from="(220,30)" to="(220,190)"/> <wire from="(310,360)" to="(340,360)"/> <wire from="(90,250)" to="(180,250)"/> <wire from="(580,280)" to="(580,380)"/> <wire from="(340,140)" to="(620,140)"/> <wire from="(570,410)" to="(660,410)"/> <wire from="(380,230)" to="(460,230)"/> <wire from="(570,360)" to="(570,410)"/> <wire from="(180,250)" to="(180,310)"/> <comp loc="(230,190)" name="ABH_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A15"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A12"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,190)" name="ABH_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(230,430)" name="ABH_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,400)" name="Pin"> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/ABH"/> </comp> <comp loc="(460,430)" name="ABH_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="label" val="ADH5"/> </comp> <comp loc="(460,350)" name="ABH_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A14"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp loc="(230,270)" name="ABH_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,270)" name="ABH_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="label" val="ADH3"/> </comp> <comp loc="(230,350)" name="ABH_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="label" val="ADH7"/> </comp> <comp lib="0" loc="(90,250)" name="Pin"> <a name="label" val="ADH1"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="label" val="ADH4"/> </comp> </circuit> <circuit name="ABL"> <a name="circuit" val="ABL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ff5895" height="220" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="65">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="93">ADL/ABL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="207">ADL IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="207">ADDR OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="44">ABL</text> <circ-port height="8" pin="130,20" width="8" x="46" y="56"/> <circ-port height="8" pin="130,50" width="8" x="46" y="66"/> <circ-port height="8" pin="130,100" width="8" x="46" y="86"/> <circ-port height="8" pin="130,260" width="8" x="46" y="166"/> <circ-port height="8" pin="130,290" width="8" x="46" y="176"/> <circ-port height="8" pin="130,320" width="8" x="46" y="186"/> <circ-port height="8" pin="130,350" width="8" x="46" y="196"/> <circ-port height="8" pin="130,380" width="8" x="46" y="206"/> <circ-port height="8" pin="130,410" width="8" x="46" y="216"/> <circ-port height="8" pin="130,440" width="8" x="46" y="226"/> <circ-port height="8" pin="130,470" width="8" x="46" y="236"/> <circ-port height="10" pin="730,210" width="10" x="185" y="165"/> <circ-port height="10" pin="730,240" width="10" x="185" y="175"/> <circ-port height="10" pin="730,270" width="10" x="185" y="185"/> <circ-port height="10" pin="730,300" width="10" x="185" y="195"/> <circ-port height="10" pin="730,330" width="10" x="185" y="205"/> <circ-port height="10" pin="730,360" width="10" x="185" y="215"/> <circ-port height="10" pin="730,390" width="10" x="185" y="225"/> <circ-port height="10" pin="730,420" width="10" x="185" y="235"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(220,40)" to="(220,170)"/> <wire from="(480,20)" to="(480,150)"/> <wire from="(190,460)" to="(250,460)"/> <wire from="(460,40)" to="(460,180)"/> <wire from="(330,330)" to="(380,330)"/> <wire from="(130,50)" to="(180,50)"/> <wire from="(570,160)" to="(630,160)"/> <wire from="(230,30)" to="(470,30)"/> <wire from="(240,230)" to="(240,320)"/> <wire from="(220,170)" to="(220,260)"/> <wire from="(130,380)" to="(170,380)"/> <wire from="(370,90)" to="(660,90)"/> <wire from="(480,150)" to="(480,240)"/> <wire from="(470,340)" to="(470,430)"/> <wire from="(460,360)" to="(490,360)"/> <wire from="(430,370)" to="(430,530)"/> <wire from="(330,150)" to="(360,150)"/> <wire from="(570,430)" to="(600,430)"/> <wire from="(470,340)" to="(490,340)"/> <wire from="(130,440)" to="(150,440)"/> <wire from="(480,240)" to="(490,240)"/> <wire from="(240,320)" to="(250,320)"/> <wire from="(410,190)" to="(490,190)"/> <wire from="(600,420)" to="(730,420)"/> <wire from="(650,270)" to="(730,270)"/> <wire from="(200,40)" to="(200,100)"/> <wire from="(390,110)" to="(640,110)"/> <wire from="(610,360)" to="(730,360)"/> <wire from="(360,80)" to="(360,150)"/> <wire from="(390,110)" to="(390,430)"/> <wire from="(180,30)" to="(230,30)"/> <wire from="(170,500)" to="(410,500)"/> <wire from="(180,30)" to="(180,50)"/> <wire from="(230,150)" to="(230,240)"/> <wire from="(220,260)" to="(220,350)"/> <wire from="(210,270)" to="(250,270)"/> <wire from="(660,90)" to="(660,240)"/> <wire from="(480,240)" to="(480,330)"/> <wire from="(460,180)" to="(460,270)"/> <wire from="(460,40)" to="(500,40)"/> <wire from="(220,450)" to="(250,450)"/> <wire from="(220,170)" to="(250,170)"/> <wire from="(460,450)" to="(490,450)"/> <wire from="(610,250)" to="(610,360)"/> <wire from="(240,320)" to="(240,420)"/> <wire from="(150,530)" to="(430,530)"/> <wire from="(470,430)" to="(490,430)"/> <wire from="(190,350)" to="(190,460)"/> <wire from="(640,300)" to="(730,300)"/> <wire from="(230,430)" to="(250,430)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(200,40)" to="(220,40)"/> <wire from="(480,330)" to="(490,330)"/> <wire from="(130,320)" to="(210,320)"/> <wire from="(420,280)" to="(420,520)"/> <wire from="(640,110)" to="(640,300)"/> <wire from="(600,390)" to="(730,390)"/> <wire from="(230,30)" to="(230,150)"/> <wire from="(160,520)" to="(420,520)"/> <wire from="(600,420)" to="(600,430)"/> <wire from="(470,30)" to="(470,160)"/> <wire from="(440,460)" to="(490,460)"/> <wire from="(200,180)" to="(250,180)"/> <wire from="(360,80)" to="(670,80)"/> <wire from="(130,20)" to="(240,20)"/> <wire from="(140,470)" to="(140,550)"/> <wire from="(370,90)" to="(370,240)"/> <wire from="(240,20)" to="(480,20)"/> <wire from="(220,40)" to="(460,40)"/> <wire from="(630,330)" to="(730,330)"/> <wire from="(140,550)" to="(440,550)"/> <wire from="(210,270)" to="(210,290)"/> <wire from="(150,440)" to="(150,530)"/> <wire from="(230,240)" to="(230,330)"/> <wire from="(210,360)" to="(250,360)"/> <wire from="(330,240)" to="(370,240)"/> <wire from="(480,330)" to="(480,420)"/> <wire from="(470,160)" to="(470,250)"/> <wire from="(460,270)" to="(460,360)"/> <wire from="(130,410)" to="(160,410)"/> <wire from="(220,260)" to="(250,260)"/> <wire from="(470,30)" to="(500,30)"/> <wire from="(460,180)" to="(490,180)"/> <wire from="(220,350)" to="(220,450)"/> <wire from="(470,160)" to="(490,160)"/> <wire from="(160,410)" to="(160,520)"/> <wire from="(230,240)" to="(250,240)"/> <wire from="(410,190)" to="(410,500)"/> <wire from="(480,420)" to="(490,420)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(130,470)" to="(140,470)"/> <wire from="(240,420)" to="(250,420)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(380,100)" to="(650,100)"/> <wire from="(130,100)" to="(200,100)"/> <wire from="(130,260)" to="(200,260)"/> <wire from="(170,380)" to="(170,500)"/> <wire from="(600,340)" to="(600,390)"/> <wire from="(330,430)" to="(390,430)"/> <wire from="(430,370)" to="(490,370)"/> <wire from="(130,350)" to="(190,350)"/> <wire from="(670,80)" to="(670,210)"/> <wire from="(670,210)" to="(730,210)"/> <wire from="(570,250)" to="(610,250)"/> <wire from="(200,180)" to="(200,260)"/> <wire from="(240,140)" to="(240,230)"/> <wire from="(440,460)" to="(440,550)"/> <wire from="(470,250)" to="(470,340)"/> <wire from="(460,360)" to="(460,450)"/> <wire from="(220,350)" to="(250,350)"/> <wire from="(380,100)" to="(380,330)"/> <wire from="(630,160)" to="(630,330)"/> <wire from="(650,100)" to="(650,270)"/> <wire from="(460,270)" to="(490,270)"/> <wire from="(230,330)" to="(230,430)"/> <wire from="(570,340)" to="(600,340)"/> <wire from="(480,20)" to="(500,20)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(210,320)" to="(210,360)"/> <wire from="(230,330)" to="(250,330)"/> <wire from="(660,240)" to="(730,240)"/> <wire from="(480,150)" to="(490,150)"/> <wire from="(240,230)" to="(250,230)"/> <wire from="(240,20)" to="(240,140)"/> <wire from="(420,280)" to="(490,280)"/> <comp lib="0" loc="(730,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(250,230)" name="ABL_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(130,410)" name="Pin"> <a name="label" val="ADL5"/> </comp> <comp loc="(490,240)" name="ABL_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,350)" name="Pin"> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(730,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,150)" name="ABL_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(730,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,380)" name="Pin"> <a name="label" val="ADL4"/> </comp> <comp loc="(250,140)" name="ABL_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,330)" name="ABL_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ABL"/> </comp> <comp loc="(490,420)" name="ABL_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp loc="(250,320)" name="ABL_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(250,420)" name="ABL_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(730,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="A2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,470)" name="Pin"> <a name="label" val="ADL7"/> </comp> </circuit> <circuit name="REGS_BIT"> <a name="circuit" val="REGS_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="160" stroke="#000000" stroke-width="2" width="70" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="42">REGS_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="83">Y/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="94">SB/Y</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="113">X/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="123">SB/X</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="143">S/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="154">S/S</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="164">SB/S</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="173">S/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="203">SBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="105" y="83">SBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="103" y="113">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="90" y="201">Y</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="101" y="201">X</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="111" y="201">S</text> <circ-port height="8" pin="80,60" width="8" x="46" y="56"/> <circ-port height="8" pin="80,140" width="8" x="46" y="76"/> <circ-port height="8" pin="80,170" width="8" x="46" y="86"/> <circ-port height="8" pin="80,200" width="8" x="46" y="106"/> <circ-port height="8" pin="80,230" width="8" x="46" y="116"/> <circ-port height="8" pin="80,290" width="8" x="46" y="136"/> <circ-port height="8" pin="80,320" width="8" x="46" y="146"/> <circ-port height="8" pin="80,350" width="8" x="46" y="156"/> <circ-port height="8" pin="80,380" width="8" x="46" y="166"/> <circ-port height="8" pin="80,450" width="8" x="46" y="196"/> <circ-port height="10" pin="710,60" width="10" x="115" y="75"/> <circ-port height="10" pin="710,110" width="10" x="115" y="105"/> <circ-port height="10" pin="710,210" width="10" x="85" y="205"/> <circ-port height="10" pin="710,250" width="10" x="95" y="205"/> <circ-port height="10" pin="710,290" width="10" x="105" y="205"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(480,230)" to="(540,230)"/> <wire from="(630,50)" to="(630,60)"/> <wire from="(670,110)" to="(670,380)"/> <wire from="(170,380)" to="(170,450)"/> <wire from="(130,230)" to="(130,240)"/> <wire from="(180,340)" to="(180,350)"/> <wire from="(490,330)" to="(540,330)"/> <wire from="(80,290)" to="(520,290)"/> <wire from="(220,340)" to="(220,350)"/> <wire from="(260,250)" to="(260,450)"/> <wire from="(610,70)" to="(610,330)"/> <wire from="(80,140)" to="(130,140)"/> <wire from="(80,380)" to="(130,380)"/> <wire from="(590,60)" to="(630,60)"/> <wire from="(190,410)" to="(430,410)"/> <wire from="(550,90)" to="(550,120)"/> <wire from="(160,300)" to="(160,320)"/> <wire from="(580,50)" to="(580,130)"/> <wire from="(280,320)" to="(280,350)"/> <wire from="(170,380)" to="(210,380)"/> <wire from="(180,140)" to="(180,170)"/> <wire from="(550,350)" to="(550,370)"/> <wire from="(480,250)" to="(710,250)"/> <wire from="(130,280)" to="(550,280)"/> <wire from="(260,150)" to="(260,250)"/> <wire from="(690,170)" to="(690,210)"/> <wire from="(470,170)" to="(690,170)"/> <wire from="(470,410)" to="(690,410)"/> <wire from="(130,240)" to="(220,240)"/> <wire from="(560,130)" to="(580,130)"/> <wire from="(130,280)" to="(130,380)"/> <wire from="(80,450)" to="(170,450)"/> <wire from="(430,370)" to="(430,410)"/> <wire from="(430,330)" to="(430,370)"/> <wire from="(470,130)" to="(470,170)"/> <wire from="(330,230)" to="(480,230)"/> <wire from="(190,360)" to="(210,360)"/> <wire from="(130,90)" to="(130,140)"/> <wire from="(80,60)" to="(160,60)"/> <wire from="(200,320)" to="(280,320)"/> <wire from="(490,330)" to="(490,380)"/> <wire from="(360,300)" to="(360,350)"/> <wire from="(160,300)" to="(360,300)"/> <wire from="(160,60)" to="(160,120)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(560,330)" to="(610,330)"/> <wire from="(580,50)" to="(630,50)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(240,370)" to="(290,370)"/> <wire from="(80,230)" to="(130,230)"/> <wire from="(670,110)" to="(710,110)"/> <wire from="(160,220)" to="(160,300)"/> <wire from="(480,230)" to="(480,250)"/> <wire from="(470,330)" to="(470,410)"/> <wire from="(180,140)" to="(220,140)"/> <wire from="(560,380)" to="(670,380)"/> <wire from="(180,340)" to="(220,340)"/> <wire from="(250,130)" to="(290,130)"/> <wire from="(250,230)" to="(290,230)"/> <wire from="(550,200)" to="(550,220)"/> <wire from="(80,170)" to="(180,170)"/> <wire from="(80,350)" to="(180,350)"/> <wire from="(330,370)" to="(370,370)"/> <wire from="(130,90)" to="(550,90)"/> <wire from="(430,330)" to="(470,330)"/> <wire from="(550,280)" to="(550,320)"/> <wire from="(590,60)" to="(590,230)"/> <wire from="(170,450)" to="(260,450)"/> <wire from="(610,70)" to="(630,70)"/> <wire from="(260,150)" to="(290,150)"/> <wire from="(260,250)" to="(290,250)"/> <wire from="(160,120)" to="(160,220)"/> <wire from="(690,210)" to="(710,210)"/> <wire from="(690,290)" to="(710,290)"/> <wire from="(520,350)" to="(550,350)"/> <wire from="(560,230)" to="(590,230)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(470,330)" to="(490,330)"/> <wire from="(80,200)" to="(550,200)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,220)" to="(180,220)"/> <wire from="(160,320)" to="(180,320)"/> <wire from="(200,120)" to="(220,120)"/> <wire from="(200,220)" to="(220,220)"/> <wire from="(330,130)" to="(470,130)"/> <wire from="(190,360)" to="(190,410)"/> <wire from="(690,290)" to="(690,410)"/> <wire from="(280,350)" to="(290,350)"/> <wire from="(360,350)" to="(370,350)"/> <wire from="(520,290)" to="(520,350)"/> <wire from="(630,60)" to="(710,60)"/> <wire from="(470,130)" to="(540,130)"/> <comp lib="0" loc="(80,450)" name="Pin"> <a name="label" val="SBx"/> </comp> <comp loc="(330,360)" name="D_Latch"> <a name="label" val="S_in"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(560,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(710,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SBx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(710,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADLx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(200,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(710,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(240,370)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="1" loc="(560,330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(560,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(410,360)" name="D_Latch"> <a name="label" val="S_out"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(102,324)" name="Text"> <a name="text" val="unused"/> </comp> <comp lib="1" loc="(560,380)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(290,130)" name="DFF_Level"> <a name="label" val="Y"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(200,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/Y"/> </comp> <comp lib="0" loc="(80,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/S"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/ADL"/> </comp> <comp lib="1" loc="(250,130)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="X/SB"/> </comp> <comp lib="0" loc="(80,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Y/SB"/> </comp> <comp lib="0" loc="(710,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="X_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/X"/> </comp> <comp lib="1" loc="(200,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/SB"/> </comp> <comp lib="0" loc="(710,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Y_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,230)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/S"/> </comp> <comp loc="(290,230)" name="DFF_Level"> <a name="label" val="X"/> <a name="labelloc" val="south"/> </comp> </circuit> <circuit name="REGS"> <a name="circuit" val="REGS"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#a8de22" height="240" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="116" y="43">REGS (X, Y, S)</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="239">SB IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="239">ADL OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="147" y="120">SB OUT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="83">Y/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="94">SB/Y</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">X/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="124">SB/X</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="143">S/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="153">S/S</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="163">SB/S</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="173">S/SB</text> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,110" width="8" x="46" y="76"/> <circ-port height="8" pin="100,140" width="8" x="46" y="86"/> <circ-port height="8" pin="100,170" width="8" x="46" y="106"/> <circ-port height="8" pin="100,200" width="8" x="46" y="116"/> <circ-port height="8" pin="100,260" width="8" x="46" y="136"/> <circ-port height="8" pin="100,290" width="8" x="46" y="146"/> <circ-port height="8" pin="100,320" width="8" x="46" y="156"/> <circ-port height="8" pin="100,350" width="8" x="46" y="166"/> <circ-port height="8" pin="100,410" width="8" x="46" y="196"/> <circ-port height="8" pin="100,440" width="8" x="46" y="206"/> <circ-port height="8" pin="100,470" width="8" x="46" y="216"/> <circ-port height="8" pin="100,500" width="8" x="46" y="226"/> <circ-port height="8" pin="100,530" width="8" x="46" y="236"/> <circ-port height="8" pin="100,560" width="8" x="46" y="246"/> <circ-port height="8" pin="100,590" width="8" x="46" y="256"/> <circ-port height="8" pin="100,620" width="8" x="46" y="266"/> <circ-port height="10" pin="1430,70" width="10" x="175" y="75"/> <circ-port height="10" pin="1430,100" width="10" x="175" y="85"/> <circ-port height="10" pin="1430,130" width="10" x="175" y="95"/> <circ-port height="10" pin="1430,160" width="10" x="175" y="105"/> <circ-port height="10" pin="1430,190" width="10" x="175" y="115"/> <circ-port height="10" pin="1430,220" width="10" x="175" y="125"/> <circ-port height="10" pin="1430,250" width="10" x="175" y="135"/> <circ-port height="10" pin="1430,280" width="10" x="175" y="145"/> <circ-port height="10" pin="1430,380" width="10" x="175" y="195"/> <circ-port height="10" pin="1430,410" width="10" x="175" y="205"/> <circ-port height="10" pin="1430,440" width="10" x="175" y="215"/> <circ-port height="10" pin="1430,470" width="10" x="175" y="225"/> <circ-port height="10" pin="1430,500" width="10" x="175" y="235"/> <circ-port height="10" pin="1430,530" width="10" x="175" y="245"/> <circ-port height="10" pin="1430,560" width="10" x="175" y="255"/> <circ-port height="10" pin="1430,590" width="10" x="175" y="265"/> <circ-port height="10" pin="710,880" width="10" x="75" y="285"/> <circ-port height="10" pin="350,880" width="10" x="105" y="285"/> <circ-port height="10" pin="1270,870" width="10" x="135" y="285"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(350,60)" to="(600,60)"/> <wire from="(770,530)" to="(820,530)"/> <wire from="(1330,130)" to="(1430,130)"/> <wire from="(970,480)" to="(1030,480)"/> <wire from="(760,510)" to="(820,510)"/> <wire from="(910,40)" to="(1330,40)"/> <wire from="(1360,30)" to="(1360,100)"/> <wire from="(430,670)" to="(430,690)"/> <wire from="(100,410)" to="(210,410)"/> <wire from="(490,810)" to="(490,840)"/> <wire from="(450,750)" to="(1380,750)"/> <wire from="(880,320)" to="(880,340)"/> <wire from="(550,860)" to="(660,860)"/> <wire from="(490,810)" to="(920,810)"/> <wire from="(1210,330)" to="(1210,850)"/> <wire from="(1360,440)" to="(1360,710)"/> <wire from="(1380,500)" to="(1430,500)"/> <wire from="(800,190)" to="(820,190)"/> <wire from="(180,760)" to="(210,760)"/> <wire from="(1010,560)" to="(1030,560)"/> <wire from="(1350,410)" to="(1430,410)"/> <wire from="(590,540)" to="(610,540)"/> <wire from="(590,220)" to="(610,220)"/> <wire from="(700,30)" to="(1360,30)"/> <wire from="(680,470)" to="(700,470)"/> <wire from="(330,190)" to="(360,190)"/> <wire from="(1130,50)" to="(1130,360)"/> <wire from="(680,220)" to="(710,220)"/> <wire from="(920,310)" to="(920,410)"/> <wire from="(350,60)" to="(350,170)"/> <wire from="(1410,590)" to="(1410,780)"/> <wire from="(100,290)" to="(120,290)"/> <wire from="(920,430)" to="(920,810)"/> <wire from="(960,270)" to="(1030,270)"/> <wire from="(470,790)" to="(470,840)"/> <wire from="(1130,780)" to="(1410,780)"/> <wire from="(810,450)" to="(820,450)"/> <wire from="(500,800)" to="(1150,800)"/> <wire from="(720,330)" to="(860,330)"/> <wire from="(400,320)" to="(400,390)"/> <wire from="(900,770)" to="(1400,770)"/> <wire from="(540,830)" to="(540,840)"/> <wire from="(210,690)" to="(210,760)"/> <wire from="(560,530)" to="(610,530)"/> <wire from="(1130,500)" to="(1130,780)"/> <wire from="(230,620)" to="(540,620)"/> <wire from="(710,700)" to="(1350,700)"/> <wire from="(1180,120)" to="(1180,850)"/> <wire from="(550,510)" to="(610,510)"/> <wire from="(760,480)" to="(820,480)"/> <wire from="(670,370)" to="(900,370)"/> <wire from="(360,650)" to="(360,670)"/> <wire from="(190,670)" to="(190,750)"/> <wire from="(240,330)" to="(480,330)"/> <wire from="(890,470)" to="(930,470)"/> <wire from="(880,790)" to="(1240,790)"/> <wire from="(700,640)" to="(1310,640)"/> <wire from="(540,590)" to="(540,620)"/> <wire from="(410,780)" to="(510,780)"/> <wire from="(1310,220)" to="(1430,220)"/> <wire from="(800,560)" to="(820,560)"/> <wire from="(1020,60)" to="(1020,170)"/> <wire from="(1140,730)" to="(1220,730)"/> <wire from="(780,590)" to="(780,630)"/> <wire from="(1260,870)" to="(1270,870)"/> <wire from="(860,720)" to="(1140,720)"/> <wire from="(590,190)" to="(610,190)"/> <wire from="(340,500)" to="(360,500)"/> <wire from="(1100,220)" to="(1170,220)"/> <wire from="(100,470)" to="(250,470)"/> <wire from="(470,790)" to="(490,790)"/> <wire from="(720,340)" to="(720,820)"/> <wire from="(1200,340)" to="(1200,850)"/> <wire from="(470,20)" to="(470,190)"/> <wire from="(100,260)" to="(120,260)"/> <wire from="(1370,470)" to="(1370,720)"/> <wire from="(110,670)" to="(130,670)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(130,690)" to="(150,690)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(150,710)" to="(170,710)"/> <wire from="(1090,810)" to="(1250,810)"/> <wire from="(750,270)" to="(820,270)"/> <wire from="(410,600)" to="(410,780)"/> <wire from="(280,270)" to="(360,270)"/> <wire from="(670,320)" to="(670,370)"/> <wire from="(1070,320)" to="(1070,360)"/> <wire from="(480,310)" to="(610,310)"/> <wire from="(890,500)" to="(900,500)"/> <wire from="(600,450)" to="(610,450)"/> <wire from="(300,550)" to="(360,550)"/> <wire from="(990,590)" to="(990,730)"/> <wire from="(860,320)" to="(860,330)"/> <wire from="(460,120)" to="(460,390)"/> <wire from="(550,480)" to="(610,480)"/> <wire from="(1260,160)" to="(1260,190)"/> <wire from="(160,720)" to="(160,860)"/> <wire from="(470,220)" to="(470,690)"/> <wire from="(100,590)" to="(210,590)"/> <wire from="(480,820)" to="(480,840)"/> <wire from="(150,710)" to="(150,860)"/> <wire from="(1070,360)" to="(1130,360)"/> <wire from="(190,670)" to="(360,670)"/> <wire from="(670,740)" to="(1230,740)"/> <wire from="(350,170)" to="(350,450)"/> <wire from="(430,220)" to="(470,220)"/> <wire from="(890,220)" to="(910,220)"/> <wire from="(140,700)" to="(140,860)"/> <wire from="(810,60)" to="(810,170)"/> <wire from="(1010,500)" to="(1030,500)"/> <wire from="(430,470)" to="(460,470)"/> <wire from="(590,560)" to="(610,560)"/> <wire from="(930,390)" to="(930,430)"/> <wire from="(190,40)" to="(730,40)"/> <wire from="(210,690)" to="(430,690)"/> <wire from="(260,410)" to="(920,410)"/> <wire from="(130,690)" to="(130,860)"/> <wire from="(210,310)" to="(360,310)"/> <wire from="(340,470)" to="(360,470)"/> <wire from="(710,220)" to="(710,700)"/> <wire from="(100,620)" to="(180,620)"/> <wire from="(1100,500)" to="(1130,500)"/> <wire from="(540,590)" to="(610,590)"/> <wire from="(540,270)" to="(610,270)"/> <wire from="(350,170)" to="(360,170)"/> <wire from="(520,780)" to="(520,840)"/> <wire from="(120,680)" to="(120,860)"/> <wire from="(460,120)" to="(1180,120)"/> <wire from="(1400,560)" to="(1430,560)"/> <wire from="(530,790)" to="(530,840)"/> <wire from="(680,500)" to="(690,500)"/> <wire from="(360,650)" to="(430,650)"/> <wire from="(110,670)" to="(110,860)"/> <wire from="(650,320)" to="(650,330)"/> <wire from="(970,550)" to="(1030,550)"/> <wire from="(1370,470)" to="(1430,470)"/> <wire from="(410,320)" to="(410,340)"/> <wire from="(480,310)" to="(480,330)"/> <wire from="(170,130)" to="(170,600)"/> <wire from="(430,660)" to="(860,660)"/> <wire from="(180,730)" to="(990,730)"/> <wire from="(1020,170)" to="(1020,450)"/> <wire from="(990,590)" to="(1030,590)"/> <wire from="(160,720)" to="(200,720)"/> <wire from="(470,690)" to="(1340,690)"/> <wire from="(430,190)" to="(470,190)"/> <wire from="(160,650)" to="(190,650)"/> <wire from="(800,500)" to="(820,500)"/> <wire from="(890,190)" to="(910,190)"/> <wire from="(1010,470)" to="(1030,470)"/> <wire from="(600,60)" to="(600,170)"/> <wire from="(1390,20)" to="(1390,70)"/> <wire from="(210,310)" to="(210,410)"/> <wire from="(180,760)" to="(180,860)"/> <wire from="(420,600)" to="(420,710)"/> <wire from="(700,30)" to="(700,190)"/> <wire from="(170,750)" to="(170,860)"/> <wire from="(1300,190)" to="(1430,190)"/> <wire from="(100,200)" to="(120,200)"/> <wire from="(1360,100)" to="(1430,100)"/> <wire from="(170,750)" to="(190,750)"/> <wire from="(1380,500)" to="(1380,750)"/> <wire from="(1340,380)" to="(1430,380)"/> <wire from="(870,600)" to="(870,790)"/> <wire from="(1080,600)" to="(1080,830)"/> <wire from="(410,340)" to="(490,340)"/> <wire from="(1020,170)" to="(1030,170)"/> <wire from="(900,500)" to="(900,770)"/> <wire from="(250,400)" to="(250,470)"/> <wire from="(490,340)" to="(490,790)"/> <wire from="(1260,160)" to="(1430,160)"/> <wire from="(1330,40)" to="(1330,130)"/> <wire from="(760,550)" to="(820,550)"/> <wire from="(780,590)" to="(820,590)"/> <wire from="(810,170)" to="(810,450)"/> <wire from="(170,660)" to="(400,660)"/> <wire from="(920,310)" to="(1030,310)"/> <wire from="(660,860)" to="(660,880)"/> <wire from="(420,390)" to="(460,390)"/> <wire from="(260,410)" to="(260,500)"/> <wire from="(1190,70)" to="(1190,850)"/> <wire from="(1300,190)" to="(1300,650)"/> <wire from="(150,610)" to="(180,610)"/> <wire from="(800,470)" to="(820,470)"/> <wire from="(140,600)" to="(170,600)"/> <wire from="(1340,380)" to="(1340,690)"/> <wire from="(1010,280)" to="(1030,280)"/> <wire from="(1170,220)" to="(1170,720)"/> <wire from="(590,500)" to="(610,500)"/> <wire from="(680,190)" to="(700,190)"/> <wire from="(180,50)" to="(720,50)"/> <wire from="(430,500)" to="(450,500)"/> <wire from="(1220,730)" to="(1220,850)"/> <wire from="(1220,280)" to="(1220,470)"/> <wire from="(1000,260)" to="(1030,260)"/> <wire from="(100,170)" to="(120,170)"/> <wire from="(930,470)" to="(930,630)"/> <wire from="(470,20)" to="(1390,20)"/> <wire from="(130,390)" to="(400,390)"/> <wire from="(960,230)" to="(1030,230)"/> <wire from="(250,530)" to="(250,590)"/> <wire from="(250,400)" to="(700,400)"/> <wire from="(400,600)" to="(400,660)"/> <wire from="(810,170)" to="(820,170)"/> <wire from="(1250,810)" to="(1250,850)"/> <wire from="(1230,740)" to="(1230,850)"/> <wire from="(450,500)" to="(450,750)"/> <wire from="(660,600)" to="(660,780)"/> <wire from="(100,560)" to="(230,560)"/> <wire from="(1080,320)" to="(1080,400)"/> <wire from="(100,60)" to="(350,60)"/> <wire from="(860,710)" to="(860,720)"/> <wire from="(870,390)" to="(930,390)"/> <wire from="(970,250)" to="(1030,250)"/> <wire from="(550,550)" to="(610,550)"/> <wire from="(1390,530)" to="(1430,530)"/> <wire from="(880,340)" to="(1200,340)"/> <wire from="(690,500)" to="(690,760)"/> <wire from="(660,340)" to="(720,340)"/> <wire from="(600,170)" to="(600,450)"/> <wire from="(720,50)" to="(720,330)"/> <wire from="(200,640)" to="(200,720)"/> <wire from="(900,70)" to="(1190,70)"/> <wire from="(320,260)" to="(360,260)"/> <wire from="(800,280)" to="(820,280)"/> <wire from="(100,500)" to="(260,500)"/> <wire from="(900,70)" to="(900,370)"/> <wire from="(590,470)" to="(610,470)"/> <wire from="(330,280)" to="(360,280)"/> <wire from="(490,330)" to="(650,330)"/> <wire from="(340,540)" to="(360,540)"/> <wire from="(1080,400)" to="(1150,400)"/> <wire from="(180,620)" to="(180,730)"/> <wire from="(100,140)" to="(120,140)"/> <wire from="(1360,440)" to="(1430,440)"/> <wire from="(790,260)" to="(820,260)"/> <wire from="(910,710)" to="(1360,710)"/> <wire from="(160,650)" to="(160,700)"/> <wire from="(170,660)" to="(170,710)"/> <wire from="(750,230)" to="(820,230)"/> <wire from="(1390,530)" to="(1390,760)"/> <wire from="(960,200)" to="(1030,200)"/> <wire from="(280,230)" to="(360,230)"/> <wire from="(100,440)" to="(240,440)"/> <wire from="(1310,220)" to="(1310,640)"/> <wire from="(730,50)" to="(1130,50)"/> <wire from="(520,780)" to="(660,780)"/> <wire from="(200,640)" to="(650,640)"/> <wire from="(290,250)" to="(360,250)"/> <wire from="(460,650)" to="(1300,650)"/> <wire from="(230,560)" to="(230,620)"/> <wire from="(600,170)" to="(610,170)"/> <wire from="(300,510)" to="(360,510)"/> <wire from="(1090,600)" to="(1090,810)"/> <wire from="(660,880)" to="(710,880)"/> <wire from="(210,630)" to="(780,630)"/> <wire from="(1320,250)" to="(1430,250)"/> <wire from="(430,670)" to="(1070,670)"/> <wire from="(310,530)" to="(360,530)"/> <wire from="(870,320)" to="(870,390)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(420,710)" to="(860,710)"/> <wire from="(690,760)" to="(1390,760)"/> <wire from="(760,250)" to="(820,250)"/> <wire from="(700,310)" to="(700,400)"/> <wire from="(1070,600)" to="(1070,670)"/> <wire from="(480,820)" to="(720,820)"/> <wire from="(1090,330)" to="(1210,330)"/> <wire from="(130,390)" to="(130,670)"/> <wire from="(1140,720)" to="(1140,730)"/> <wire from="(660,320)" to="(660,340)"/> <wire from="(190,40)" to="(190,650)"/> <wire from="(810,60)" to="(1020,60)"/> <wire from="(190,880)" to="(350,880)"/> <wire from="(1010,540)" to="(1030,540)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(530,790)" to="(870,790)"/> <wire from="(590,280)" to="(610,280)"/> <wire from="(910,220)" to="(910,710)"/> <wire from="(1320,250)" to="(1320,630)"/> <wire from="(580,260)" to="(610,260)"/> <wire from="(210,590)" to="(210,630)"/> <wire from="(540,830)" to="(1080,830)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(240,330)" to="(240,440)"/> <wire from="(100,110)" to="(120,110)"/> <wire from="(500,800)" to="(500,840)"/> <wire from="(1100,190)" to="(1260,190)"/> <wire from="(860,600)" to="(860,660)"/> <wire from="(750,200)" to="(820,200)"/> <wire from="(540,230)" to="(610,230)"/> <wire from="(350,450)" to="(360,450)"/> <wire from="(880,600)" to="(880,790)"/> <wire from="(930,630)" to="(1320,630)"/> <wire from="(280,200)" to="(360,200)"/> <wire from="(1350,410)" to="(1350,700)"/> <wire from="(300,480)" to="(360,480)"/> <wire from="(420,320)" to="(420,390)"/> <wire from="(730,40)" to="(730,50)"/> <wire from="(980,530)" to="(1030,530)"/> <wire from="(1150,400)" to="(1150,800)"/> <wire from="(700,310)" to="(820,310)"/> <wire from="(170,130)" to="(490,130)"/> <wire from="(670,600)" to="(670,740)"/> <wire from="(1400,560)" to="(1400,770)"/> <wire from="(970,510)" to="(1030,510)"/> <wire from="(550,250)" to="(610,250)"/> <wire from="(1390,70)" to="(1430,70)"/> <wire from="(490,130)" to="(490,330)"/> <wire from="(150,610)" to="(150,690)"/> <wire from="(140,600)" to="(140,680)"/> <wire from="(250,590)" to="(360,590)"/> <wire from="(1100,470)" to="(1220,470)"/> <wire from="(1090,320)" to="(1090,330)"/> <wire from="(910,40)" to="(910,190)"/> <wire from="(800,540)" to="(820,540)"/> <wire from="(800,220)" to="(820,220)"/> <wire from="(700,470)" to="(700,640)"/> <wire from="(650,600)" to="(650,640)"/> <wire from="(1010,190)" to="(1030,190)"/> <wire from="(600,60)" to="(810,60)"/> <wire from="(330,220)" to="(360,220)"/> <wire from="(340,560)" to="(360,560)"/> <wire from="(1170,720)" to="(1370,720)"/> <wire from="(100,530)" to="(250,530)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(1240,790)" to="(1240,850)"/> <wire from="(180,50)" to="(180,610)"/> <wire from="(540,200)" to="(610,200)"/> <wire from="(460,470)" to="(460,650)"/> <wire from="(510,780)" to="(510,840)"/> <wire from="(920,430)" to="(930,430)"/> <wire from="(1020,450)" to="(1030,450)"/> <wire from="(1410,590)" to="(1430,590)"/> <wire from="(1220,280)" to="(1430,280)"/> <comp loc="(360,170)" name="REGS_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(770,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/X"/> </comp> <comp lib="0" loc="(590,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,500)" name="Pin"> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(960,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,140)" name="Tunnel"> <a name="label" val="SB/Y"/> </comp> <comp lib="0" loc="(960,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,860)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1430,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(820,450)" name="REGS_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(350,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="Y_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(330,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(1430,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,350)" name="Tunnel"> <a name="label" val="S/SB"/> </comp> <comp lib="0" loc="(1430,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/S"/> </comp> <comp lib="0" loc="(330,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(790,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,200)" name="Tunnel"> <a name="label" val="SB/X"/> </comp> <comp lib="0" loc="(560,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(330,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(980,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1000,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(710,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="X_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Y/SB"/> </comp> <comp loc="(360,450)" name="REGS_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(800,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,620)" name="Pin"> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/ADL"/> </comp> <comp lib="0" loc="(760,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1270,870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="S_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(970,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,320)" name="Tunnel"> <a name="label" val="SB/S"/> </comp> <comp lib="0" loc="(300,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(320,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,530)" name="Pin"> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(190,880)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="X/SB"/> </comp> <comp lib="0" loc="(800,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,170)" name="Tunnel"> <a name="label" val="X/SB"/> </comp> <comp lib="0" loc="(100,590)" name="Pin"> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(1430,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1010,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,110)" name="Tunnel"> <a name="label" val="Y/SB"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/Y"/> </comp> <comp lib="0" loc="(540,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,290)" name="Tunnel"> <a name="label" val="S/S"/> </comp> <comp lib="0" loc="(1260,870)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(800,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(820,170)" name="REGS_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(960,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(580,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(610,170)" name="REGS_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,260)" name="Tunnel"> <a name="label" val="S/ADL"/> </comp> <comp lib="0" loc="(750,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1030,170)" name="REGS_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(970,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/S"/> </comp> <comp loc="(1030,450)" name="REGS_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/SB"/> </comp> <comp lib="0" loc="(1010,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(310,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(550,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(540,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,470)" name="Pin"> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(300,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(610,450)" name="REGS_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,560)" name="Pin"> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(1430,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB/Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X/SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> </circuit> <circuit name="DL_BIT"> <a name="circuit" val="DL_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="139" stroke="#000000" stroke-width="2" width="90" x="50" y="51"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="44">DL_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="64">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="93">DL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="103">DL/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">DL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="133">RD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="154">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="174">Dx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="101" y="180">DOR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="180">DL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="124" y="73">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="123" y="93">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="113">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="127" y="132">Dx</text> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,90" width="8" x="46" y="66"/> <circ-port height="8" pin="100,170" width="8" x="46" y="86"/> <circ-port height="8" pin="100,200" width="8" x="46" y="96"/> <circ-port height="8" pin="100,230" width="8" x="46" y="106"/> <circ-port height="8" pin="100,280" width="8" x="46" y="126"/> <circ-port height="8" pin="100,380" width="8" x="46" y="146"/> <circ-port height="8" pin="100,430" width="8" x="46" y="166"/> <circ-port height="10" pin="570,240" width="10" x="135" y="65"/> <circ-port height="10" pin="570,160" width="10" x="135" y="85"/> <circ-port height="10" pin="570,200" width="10" x="135" y="105"/> <circ-port height="10" pin="570,410" width="10" x="135" y="125"/> <circ-port height="10" pin="570,460" width="10" x="95" y="185"/> <circ-port height="10" pin="570,500" width="10" x="115" y="185"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(380,290)" to="(440,290)"/> <wire from="(390,60)" to="(390,130)"/> <wire from="(210,360)" to="(270,360)"/> <wire from="(130,110)" to="(440,110)"/> <wire from="(390,310)" to="(440,310)"/> <wire from="(450,370)" to="(500,370)"/> <wire from="(310,170)" to="(360,170)"/> <wire from="(390,460)" to="(570,460)"/> <wire from="(390,130)" to="(440,130)"/> <wire from="(360,170)" to="(360,500)"/> <wire from="(210,60)" to="(390,60)"/> <wire from="(530,160)" to="(570,160)"/> <wire from="(530,200)" to="(570,200)"/> <wire from="(390,410)" to="(490,410)"/> <wire from="(340,380)" to="(340,410)"/> <wire from="(410,260)" to="(410,350)"/> <wire from="(390,220)" to="(390,310)"/> <wire from="(500,350)" to="(540,350)"/> <wire from="(370,280)" to="(370,370)"/> <wire from="(500,260)" to="(530,260)"/> <wire from="(100,230)" to="(380,230)"/> <wire from="(540,240)" to="(570,240)"/> <wire from="(470,120)" to="(490,120)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(100,200)" to="(440,200)"/> <wire from="(490,210)" to="(490,250)"/> <wire from="(250,380)" to="(270,380)"/> <wire from="(100,280)" to="(370,280)"/> <wire from="(390,410)" to="(390,460)"/> <wire from="(100,90)" to="(240,90)"/> <wire from="(410,260)" to="(480,260)"/> <wire from="(130,110)" to="(130,170)"/> <wire from="(100,380)" to="(230,380)"/> <wire from="(370,370)" to="(430,370)"/> <wire from="(530,160)" to="(530,170)"/> <wire from="(510,410)" to="(570,410)"/> <wire from="(180,170)" to="(180,430)"/> <wire from="(390,220)" to="(440,220)"/> <wire from="(360,170)" to="(410,170)"/> <wire from="(340,410)" to="(390,410)"/> <wire from="(180,170)" to="(230,170)"/> <wire from="(390,60)" to="(510,60)"/> <wire from="(100,60)" to="(210,60)"/> <wire from="(500,370)" to="(500,400)"/> <wire from="(410,170)" to="(410,260)"/> <wire from="(390,130)" to="(390,220)"/> <wire from="(240,150)" to="(270,150)"/> <wire from="(100,170)" to="(130,170)"/> <wire from="(500,170)" to="(530,170)"/> <wire from="(310,380)" to="(340,380)"/> <wire from="(540,240)" to="(540,350)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(360,500)" to="(570,500)"/> <wire from="(250,170)" to="(270,170)"/> <wire from="(490,120)" to="(490,160)"/> <wire from="(490,300)" to="(490,340)"/> <wire from="(210,60)" to="(210,360)"/> <wire from="(100,430)" to="(180,430)"/> <wire from="(240,90)" to="(510,90)"/> <wire from="(530,200)" to="(530,260)"/> <wire from="(380,230)" to="(380,290)"/> <wire from="(410,170)" to="(480,170)"/> <wire from="(410,350)" to="(480,350)"/> <wire from="(240,90)" to="(240,150)"/> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/ADH"/> </comp> <comp lib="1" loc="(500,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(570,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADLx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,120)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/ADL"/> </comp> <comp loc="(310,160)" name="D_Latch"> <a name="label" val="DL"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Dx"/> </comp> <comp lib="0" loc="(100,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(570,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DOR_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/DB"/> </comp> <comp loc="(310,370)" name="D_Latch"> <a name="label" val="DOR"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(570,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DL_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,210)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADHx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(510,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(500,350)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DBx"/> </comp> <comp lib="1" loc="(470,300)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Dx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DBx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> </circuit> <circuit name="DL"> <a name="circuit" val="DL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#55c293" height="405" stroke="#000000" stroke-width="2" width="150" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="45">DATA LATCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="74">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="85">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="134">DL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="154">DL/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="174">DL/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="309">DB IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="309">ADH OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="208">ADL OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="109">DB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="409">DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="162" y="407">DATA OUT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">WR</text> <circ-port height="8" pin="80,50" width="8" x="46" y="66"/> <circ-port height="8" pin="80,80" width="8" x="46" y="76"/> <circ-port height="8" pin="80,230" width="8" x="46" y="126"/> <circ-port height="8" pin="80,260" width="8" x="46" y="146"/> <circ-port height="8" pin="80,290" width="8" x="46" y="166"/> <circ-port height="8" pin="80,340" width="8" x="46" y="266"/> <circ-port height="8" pin="80,370" width="8" x="46" y="276"/> <circ-port height="8" pin="80,400" width="8" x="46" y="286"/> <circ-port height="8" pin="80,430" width="8" x="46" y="296"/> <circ-port height="8" pin="80,460" width="8" x="46" y="306"/> <circ-port height="8" pin="80,490" width="8" x="46" y="316"/> <circ-port height="8" pin="80,520" width="8" x="46" y="326"/> <circ-port height="10" pin="1250,60" width="10" x="195" y="65"/> <circ-port height="10" pin="1250,90" width="10" x="195" y="75"/> <circ-port height="10" pin="1250,120" width="10" x="195" y="85"/> <circ-port height="10" pin="1250,150" width="10" x="195" y="95"/> <circ-port height="10" pin="1250,180" width="10" x="195" y="105"/> <circ-port height="10" pin="1250,210" width="10" x="195" y="115"/> <circ-port height="10" pin="1250,240" width="10" x="195" y="125"/> <circ-port height="10" pin="1250,270" width="10" x="195" y="135"/> <circ-port height="10" pin="1250,320" width="10" x="195" y="165"/> <circ-port height="10" pin="1250,350" width="10" x="195" y="175"/> <circ-port height="10" pin="1250,380" width="10" x="195" y="185"/> <circ-port height="10" pin="1250,410" width="10" x="195" y="195"/> <circ-port height="10" pin="1250,440" width="10" x="195" y="205"/> <circ-port height="10" pin="1250,470" width="10" x="195" y="215"/> <circ-port height="10" pin="1250,500" width="10" x="195" y="225"/> <circ-port height="10" pin="1250,530" width="10" x="195" y="235"/> <circ-port height="10" pin="1250,570" width="10" x="195" y="265"/> <circ-port height="10" pin="1250,600" width="10" x="195" y="275"/> <circ-port height="10" pin="1250,630" width="10" x="195" y="285"/> <circ-port height="10" pin="1250,660" width="10" x="195" y="295"/> <circ-port height="10" pin="1250,690" width="10" x="195" y="305"/> <circ-port height="10" pin="1250,720" width="10" x="195" y="315"/> <circ-port height="10" pin="1250,750" width="10" x="195" y="325"/> <circ-port height="10" pin="1250,780" width="10" x="195" y="335"/> <circ-port height="8" pin="80,550" width="8" x="46" y="336"/> <circ-port height="8" pin="80,670" width="8" x="46" y="366"/> <circ-port height="8" pin="80,700" width="8" x="46" y="376"/> <circ-port height="8" pin="80,730" width="8" x="46" y="386"/> <circ-port height="8" pin="80,760" width="8" x="46" y="396"/> <circ-port height="8" pin="80,790" width="8" x="46" y="406"/> <circ-port height="8" pin="80,820" width="8" x="46" y="416"/> <circ-port height="8" pin="80,850" width="8" x="46" y="426"/> <circ-port height="8" pin="80,880" width="8" x="46" y="436"/> <circ-port height="10" pin="1250,830" width="10" x="195" y="365"/> <circ-port height="10" pin="1250,860" width="10" x="195" y="375"/> <circ-port height="10" pin="1250,890" width="10" x="195" y="385"/> <circ-port height="10" pin="1250,920" width="10" x="195" y="395"/> <circ-port height="10" pin="1250,950" width="10" x="195" y="405"/> <circ-port height="10" pin="1250,980" width="10" x="195" y="415"/> <circ-port height="10" pin="1250,1010" width="10" x="195" y="425"/> <circ-port height="10" pin="1250,1040" width="10" x="195" y="435"/> <circ-port height="10" pin="420,1130" width="10" x="95" y="455"/> <circ-port height="10" pin="900,1130" width="10" x="145" y="455"/> <circ-port height="8" pin="80,160" width="8" x="46" y="106"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(1220,10)" to="(1220,860)"/> <wire from="(800,780)" to="(920,780)"/> <wire from="(860,380)" to="(860,390)"/> <wire from="(420,180)" to="(470,180)"/> <wire from="(420,340)" to="(470,340)"/> <wire from="(1170,220)" to="(1170,950)"/> <wire from="(350,980)" to="(460,980)"/> <wire from="(180,490)" to="(180,840)"/> <wire from="(1070,380)" to="(1070,970)"/> <wire from="(620,180)" to="(620,990)"/> <wire from="(710,280)" to="(990,280)"/> <wire from="(1040,490)" to="(1180,490)"/> <wire from="(390,1130)" to="(420,1130)"/> <wire from="(400,190)" to="(420,190)"/> <wire from="(300,640)" to="(300,1070)"/> <wire from="(870,1130)" to="(900,1130)"/> <wire from="(410,690)" to="(420,690)"/> <wire from="(1100,140)" to="(1100,180)"/> <wire from="(660,90)" to="(1250,90)"/> <wire from="(450,80)" to="(900,80)"/> <wire from="(900,320)" to="(900,500)"/> <wire from="(910,490)" to="(910,670)"/> <wire from="(1140,780)" to="(1250,780)"/> <wire from="(970,620)" to="(970,630)"/> <wire from="(870,360)" to="(870,370)"/> <wire from="(860,740)" to="(920,740)"/> <wire from="(410,380)" to="(410,390)"/> <wire from="(800,1090)" to="(800,1110)"/> <wire from="(720,420)" to="(720,910)"/> <wire from="(900,500)" to="(920,500)"/> <wire from="(1110,210)" to="(1250,210)"/> <wire from="(150,790)" to="(150,890)"/> <wire from="(880,270)" to="(880,440)"/> <wire from="(230,230)" to="(230,340)"/> <wire from="(220,140)" to="(240,140)"/> <wire from="(80,550)" to="(160,550)"/> <wire from="(450,320)" to="(450,500)"/> <wire from="(1100,690)" to="(1130,690)"/> <wire from="(460,490)" to="(460,670)"/> <wire from="(1060,570)" to="(1060,990)"/> <wire from="(230,160)" to="(240,160)"/> <wire from="(860,150)" to="(870,150)"/> <wire from="(1140,200)" to="(1140,690)"/> <wire from="(1130,740)" to="(1130,1040)"/> <wire from="(560,160)" to="(680,160)"/> <wire from="(600,1010)" to="(1040,1010)"/> <wire from="(410,740)" to="(470,740)"/> <wire from="(520,620)" to="(520,630)"/> <wire from="(1120,100)" to="(1120,120)"/> <wire from="(870,330)" to="(870,340)"/> <wire from="(1060,160)" to="(1060,440)"/> <wire from="(860,710)" to="(920,710)"/> <wire from="(420,360)" to="(420,370)"/> <wire from="(640,700)" to="(640,980)"/> <wire from="(560,340)" to="(660,340)"/> <wire from="(80,80)" to="(250,80)"/> <wire from="(540,800)" to="(540,820)"/> <wire from="(320,270)" to="(320,1010)"/> <wire from="(450,500)" to="(470,500)"/> <wire from="(330,1070)" to="(330,1110)"/> <wire from="(830,390)" to="(860,390)"/> <wire from="(410,150)" to="(420,150)"/> <wire from="(700,10)" to="(1220,10)"/> <wire from="(80,430)" to="(220,430)"/> <wire from="(310,820)" to="(310,1060)"/> <wire from="(910,490)" to="(920,490)"/> <wire from="(80,50)" to="(150,50)"/> <wire from="(880,450)" to="(880,1080)"/> <wire from="(80,760)" to="(210,760)"/> <wire from="(410,710)" to="(470,710)"/> <wire from="(870,540)" to="(920,540)"/> <wire from="(870,700)" to="(920,700)"/> <wire from="(740,220)" to="(920,220)"/> <wire from="(1010,740)" to="(1130,740)"/> <wire from="(860,200)" to="(920,200)"/> <wire from="(590,40)" to="(1230,40)"/> <wire from="(420,330)" to="(420,340)"/> <wire from="(230,580)" to="(470,580)"/> <wire from="(80,460)" to="(190,460)"/> <wire from="(580,740)" to="(580,960)"/> <wire from="(1190,1010)" to="(1250,1010)"/> <wire from="(210,760)" to="(210,780)"/> <wire from="(80,880)" to="(120,880)"/> <wire from="(990,260)" to="(990,280)"/> <wire from="(750,400)" to="(920,400)"/> <wire from="(430,1010)" to="(430,1100)"/> <wire from="(910,50)" to="(910,130)"/> <wire from="(440,1090)" to="(800,1090)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(1110,150)" to="(1250,150)"/> <wire from="(560,740)" to="(580,740)"/> <wire from="(280,1090)" to="(310,1090)"/> <wire from="(80,160)" to="(170,160)"/> <wire from="(380,390)" to="(410,390)"/> <wire from="(760,580)" to="(920,580)"/> <wire from="(1010,380)" to="(1040,380)"/> <wire from="(460,490)" to="(470,490)"/> <wire from="(130,920)" to="(710,920)"/> <wire from="(690,20)" to="(690,200)"/> <wire from="(410,200)" to="(470,200)"/> <wire from="(1140,690)" to="(1250,690)"/> <wire from="(560,360)" to="(610,360)"/> <wire from="(860,740)" to="(860,750)"/> <wire from="(420,700)" to="(470,700)"/> <wire from="(420,540)" to="(470,540)"/> <wire from="(420,220)" to="(470,220)"/> <wire from="(150,50)" to="(460,50)"/> <wire from="(860,170)" to="(920,170)"/> <wire from="(170,520)" to="(170,860)"/> <wire from="(460,50)" to="(460,130)"/> <wire from="(1010,340)" to="(1050,340)"/> <wire from="(330,1000)" to="(440,1000)"/> <wire from="(540,260)" to="(540,280)"/> <wire from="(80,670)" to="(240,670)"/> <wire from="(330,450)" to="(330,1000)"/> <wire from="(400,550)" to="(420,550)"/> <wire from="(880,450)" to="(970,450)"/> <wire from="(150,140)" to="(170,140)"/> <wire from="(380,1060)" to="(380,1110)"/> <wire from="(370,1050)" to="(370,1110)"/> <wire from="(80,790)" to="(150,790)"/> <wire from="(890,630)" to="(970,630)"/> <wire from="(1050,600)" to="(1050,1000)"/> <wire from="(590,40)" to="(590,560)"/> <wire from="(730,240)" to="(730,890)"/> <wire from="(890,630)" to="(890,1090)"/> <wire from="(410,170)" to="(470,170)"/> <wire from="(870,160)" to="(920,160)"/> <wire from="(360,1040)" to="(360,1110)"/> <wire from="(1130,500)" to="(1130,520)"/> <wire from="(1080,350)" to="(1250,350)"/> <wire from="(870,720)" to="(870,730)"/> <wire from="(1010,520)" to="(1130,520)"/> <wire from="(1210,830)" to="(1250,830)"/> <wire from="(990,800)" to="(990,1060)"/> <wire from="(410,740)" to="(410,750)"/> <wire from="(1130,660)" to="(1130,690)"/> <wire from="(350,1030)" to="(350,1110)"/> <wire from="(140,820)" to="(140,910)"/> <wire from="(1130,320)" to="(1250,320)"/> <wire from="(460,980)" to="(460,1070)"/> <wire from="(590,720)" to="(590,1020)"/> <wire from="(1110,410)" to="(1250,410)"/> <wire from="(310,1060)" to="(340,1060)"/> <wire from="(1110,30)" to="(1110,150)"/> <wire from="(740,220)" to="(740,830)"/> <wire from="(790,640)" to="(990,640)"/> <wire from="(910,50)" to="(1050,50)"/> <wire from="(860,510)" to="(870,510)"/> <wire from="(1230,920)" to="(1230,960)"/> <wire from="(1010,560)" to="(1190,560)"/> <wire from="(860,200)" to="(860,210)"/> <wire from="(870,690)" to="(870,700)"/> <wire from="(420,160)" to="(470,160)"/> <wire from="(650,520)" to="(650,970)"/> <wire from="(420,720)" to="(420,730)"/> <wire from="(780,440)" to="(880,440)"/> <wire from="(310,1090)" to="(310,1110)"/> <wire from="(1060,440)" to="(1250,440)"/> <wire from="(1010,500)" to="(1120,500)"/> <wire from="(1010,680)" to="(1100,680)"/> <wire from="(660,90)" to="(660,320)"/> <wire from="(240,240)" to="(240,670)"/> <wire from="(340,630)" to="(340,990)"/> <wire from="(830,750)" to="(860,750)"/> <wire from="(1120,240)" to="(1250,240)"/> <wire from="(410,510)" to="(420,510)"/> <wire from="(170,860)" to="(760,860)"/> <wire from="(900,80)" to="(900,140)"/> <wire from="(910,310)" to="(910,490)"/> <wire from="(900,140)" to="(900,320)"/> <wire from="(970,440)" to="(970,450)"/> <wire from="(220,760)" to="(470,760)"/> <wire from="(870,180)" to="(870,190)"/> <wire from="(1090,330)" to="(1130,330)"/> <wire from="(860,560)" to="(920,560)"/> <wire from="(730,240)" to="(920,240)"/> <wire from="(1100,270)" to="(1100,680)"/> <wire from="(410,200)" to="(410,210)"/> <wire from="(420,690)" to="(420,700)"/> <wire from="(1060,570)" to="(1250,570)"/> <wire from="(810,1080)" to="(810,1110)"/> <wire from="(1010,320)" to="(1110,320)"/> <wire from="(800,750)" to="(800,770)"/> <wire from="(830,770)" to="(830,1110)"/> <wire from="(260,370)" to="(260,400)"/> <wire from="(560,500)" to="(670,500)"/> <wire from="(990,620)" to="(990,640)"/> <wire from="(1040,380)" to="(1040,490)"/> <wire from="(900,320)" to="(920,320)"/> <wire from="(780,760)" to="(780,870)"/> <wire from="(80,290)" to="(110,290)"/> <wire from="(380,750)" to="(410,750)"/> <wire from="(80,520)" to="(170,520)"/> <wire from="(560,520)" to="(650,520)"/> <wire from="(1120,530)" to="(1250,530)"/> <wire from="(450,140)" to="(450,320)"/> <wire from="(750,400)" to="(750,840)"/> <wire from="(460,310)" to="(460,490)"/> <wire from="(230,400)" to="(230,580)"/> <wire from="(450,80)" to="(450,140)"/> <wire from="(320,270)" to="(520,270)"/> <wire from="(1010,180)" to="(1090,180)"/> <wire from="(610,1000)" to="(1050,1000)"/> <wire from="(410,560)" to="(470,560)"/> <wire from="(160,550)" to="(160,870)"/> <wire from="(520,440)" to="(520,450)"/> <wire from="(1080,200)" to="(1080,220)"/> <wire from="(680,160)" to="(680,940)"/> <wire from="(870,150)" to="(870,160)"/> <wire from="(330,450)" to="(520,450)"/> <wire from="(860,1100)" to="(860,1110)"/> <wire from="(860,530)" to="(920,530)"/> <wire from="(340,630)" to="(520,630)"/> <wire from="(420,180)" to="(420,190)"/> <wire from="(80,370)" to="(260,370)"/> <wire from="(350,810)" to="(520,810)"/> <wire from="(840,1080)" to="(840,1110)"/> <wire from="(560,320)" to="(660,320)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(80,700)" to="(250,700)"/> <wire from="(850,1090)" to="(850,1110)"/> <wire from="(800,780)" to="(800,930)"/> <wire from="(1100,690)" to="(1100,1020)"/> <wire from="(540,620)" to="(540,640)"/> <wire from="(1170,950)" to="(1250,950)"/> <wire from="(80,260)" to="(110,260)"/> <wire from="(690,400)" to="(710,400)"/> <wire from="(1010,140)" to="(1100,140)"/> <wire from="(350,1030)" to="(690,1030)"/> <wire from="(450,320)" to="(470,320)"/> <wire from="(80,400)" to="(230,400)"/> <wire from="(680,940)" to="(1090,940)"/> <wire from="(1040,630)" to="(1040,1010)"/> <wire from="(830,210)" to="(860,210)"/> <wire from="(350,810)" to="(350,980)"/> <wire from="(340,1060)" to="(340,1110)"/> <wire from="(910,310)" to="(920,310)"/> <wire from="(690,400)" to="(690,1030)"/> <wire from="(1040,630)" to="(1250,630)"/> <wire from="(580,960)" to="(1230,960)"/> <wire from="(410,530)" to="(470,530)"/> <wire from="(870,520)" to="(920,520)"/> <wire from="(870,360)" to="(920,360)"/> <wire from="(130,850)" to="(130,920)"/> <wire from="(1090,180)" to="(1090,200)"/> <wire from="(420,150)" to="(420,160)"/> <wire from="(1150,720)" to="(1250,720)"/> <wire from="(80,850)" to="(130,850)"/> <wire from="(560,540)" to="(600,540)"/> <wire from="(670,100)" to="(670,500)"/> <wire from="(250,420)" to="(250,700)"/> <wire from="(440,1000)" to="(440,1090)"/> <wire from="(600,540)" to="(600,1010)"/> <wire from="(450,1080)" to="(810,1080)"/> <wire from="(850,370)" to="(870,370)"/> <wire from="(80,230)" to="(110,230)"/> <wire from="(290,1080)" to="(320,1080)"/> <wire from="(380,210)" to="(410,210)"/> <wire from="(660,340)" to="(660,950)"/> <wire from="(560,140)" to="(650,140)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(460,310)" to="(470,310)"/> <wire from="(780,760)" to="(920,760)"/> <wire from="(1210,20)" to="(1210,830)"/> <wire from="(1100,270)" to="(1250,270)"/> <wire from="(560,380)" to="(700,380)"/> <wire from="(140,910)" to="(720,910)"/> <wire from="(1230,40)" to="(1230,890)"/> <wire from="(860,560)" to="(860,570)"/> <wire from="(420,520)" to="(470,520)"/> <wire from="(420,360)" to="(470,360)"/> <wire from="(760,580)" to="(760,860)"/> <wire from="(340,990)" to="(450,990)"/> <wire from="(190,830)" to="(740,830)"/> <wire from="(650,60)" to="(650,140)"/> <wire from="(1010,700)" to="(1120,700)"/> <wire from="(360,1040)" to="(770,1040)"/> <wire from="(780,750)" to="(800,750)"/> <wire from="(400,370)" to="(420,370)"/> <wire from="(80,340)" to="(230,340)"/> <wire from="(1110,410)" to="(1110,980)"/> <wire from="(880,270)" to="(970,270)"/> <wire from="(1120,120)" to="(1250,120)"/> <wire from="(1220,860)" to="(1250,860)"/> <wire from="(710,280)" to="(710,400)"/> <wire from="(720,420)" to="(920,420)"/> <wire from="(560,200)" to="(690,200)"/> <wire from="(1150,360)" to="(1150,720)"/> <wire from="(900,500)" to="(900,680)"/> <wire from="(780,440)" to="(780,750)"/> <wire from="(150,890)" to="(730,890)"/> <wire from="(210,780)" to="(470,780)"/> <wire from="(790,1100)" to="(790,1110)"/> <wire from="(870,540)" to="(870,550)"/> <wire from="(410,560)" to="(410,570)"/> <wire from="(850,1090)" to="(890,1090)"/> <wire from="(840,1080)" to="(880,1080)"/> <wire from="(650,970)" to="(1070,970)"/> <wire from="(790,640)" to="(790,1050)"/> <wire from="(380,1060)" to="(990,1060)"/> <wire from="(1130,320)" to="(1130,330)"/> <wire from="(1090,200)" to="(1140,200)"/> <wire from="(900,680)" to="(920,680)"/> <wire from="(650,60)" to="(1250,60)"/> <wire from="(260,400)" to="(470,400)"/> <wire from="(250,80)" to="(250,130)"/> <wire from="(450,500)" to="(450,680)"/> <wire from="(210,160)" to="(220,160)"/> <wire from="(860,330)" to="(870,330)"/> <wire from="(1120,530)" to="(1120,700)"/> <wire from="(250,80)" to="(450,80)"/> <wire from="(230,230)" to="(420,230)"/> <wire from="(520,800)" to="(520,810)"/> <wire from="(260,600)" to="(260,730)"/> <wire from="(870,510)" to="(870,520)"/> <wire from="(1080,350)" to="(1080,950)"/> <wire from="(420,540)" to="(420,550)"/> <wire from="(420,220)" to="(420,230)"/> <wire from="(80,730)" to="(260,730)"/> <wire from="(1190,560)" to="(1190,1010)"/> <wire from="(1120,240)" to="(1120,500)"/> <wire from="(660,950)" to="(1080,950)"/> <wire from="(320,1080)" to="(320,1110)"/> <wire from="(630,30)" to="(1110,30)"/> <wire from="(450,680)" to="(470,680)"/> <wire from="(830,570)" to="(860,570)"/> <wire from="(280,280)" to="(280,1090)"/> <wire from="(410,330)" to="(420,330)"/> <wire from="(120,880)" to="(120,930)"/> <wire from="(190,460)" to="(190,830)"/> <wire from="(690,20)" to="(1210,20)"/> <wire from="(670,100)" to="(1120,100)"/> <wire from="(1010,200)" to="(1080,200)"/> <wire from="(560,700)" to="(640,700)"/> <wire from="(700,10)" to="(700,380)"/> <wire from="(910,670)" to="(920,670)"/> <wire from="(460,50)" to="(910,50)"/> <wire from="(910,130)" to="(910,310)"/> <wire from="(1100,180)" to="(1250,180)"/> <wire from="(870,720)" to="(920,720)"/> <wire from="(1160,540)" to="(1160,750)"/> <wire from="(970,260)" to="(970,270)"/> <wire from="(610,360)" to="(610,1000)"/> <wire from="(860,380)" to="(920,380)"/> <wire from="(420,510)" to="(420,520)"/> <wire from="(1130,1040)" to="(1250,1040)"/> <wire from="(990,440)" to="(990,460)"/> <wire from="(80,490)" to="(180,490)"/> <wire from="(430,1100)" to="(790,1100)"/> <wire from="(860,1100)" to="(970,1100)"/> <wire from="(640,980)" to="(1110,980)"/> <wire from="(850,730)" to="(870,730)"/> <wire from="(900,140)" to="(920,140)"/> <wire from="(380,570)" to="(410,570)"/> <wire from="(820,1070)" to="(820,1110)"/> <wire from="(1010,540)" to="(1160,540)"/> <wire from="(270,150)" to="(290,150)"/> <wire from="(1180,980)" to="(1250,980)"/> <wire from="(1010,720)" to="(1140,720)"/> <wire from="(460,670)" to="(470,670)"/> <wire from="(230,160)" to="(230,210)"/> <wire from="(560,680)" to="(630,680)"/> <wire from="(1090,330)" to="(1090,940)"/> <wire from="(460,130)" to="(460,310)"/> <wire from="(1080,220)" to="(1170,220)"/> <wire from="(280,280)" to="(540,280)"/> <wire from="(410,380)" to="(470,380)"/> <wire from="(620,990)" to="(1060,990)"/> <wire from="(290,460)" to="(540,460)"/> <wire from="(630,30)" to="(630,680)"/> <wire from="(180,840)" to="(750,840)"/> <wire from="(420,720)" to="(470,720)"/> <wire from="(220,430)" to="(220,760)"/> <wire from="(860,350)" to="(920,350)"/> <wire from="(590,1020)" to="(1100,1020)"/> <wire from="(710,600)" to="(710,920)"/> <wire from="(520,260)" to="(520,270)"/> <wire from="(770,460)" to="(770,1040)"/> <wire from="(300,640)" to="(540,640)"/> <wire from="(320,1010)" to="(430,1010)"/> <wire from="(120,930)" to="(800,930)"/> <wire from="(1070,380)" to="(1250,380)"/> <wire from="(540,440)" to="(540,460)"/> <wire from="(310,820)" to="(540,820)"/> <wire from="(710,600)" to="(920,600)"/> <wire from="(900,80)" to="(1050,80)"/> <wire from="(1050,470)" to="(1250,470)"/> <wire from="(290,460)" to="(290,1080)"/> <wire from="(400,730)" to="(420,730)"/> <wire from="(560,720)" to="(590,720)"/> <wire from="(560,560)" to="(590,560)"/> <wire from="(450,140)" to="(470,140)"/> <wire from="(1140,720)" to="(1140,780)"/> <wire from="(1160,750)" to="(1250,750)"/> <wire from="(1180,490)" to="(1180,980)"/> <wire from="(1010,360)" to="(1150,360)"/> <wire from="(910,130)" to="(920,130)"/> <wire from="(1230,920)" to="(1250,920)"/> <wire from="(1010,160)" to="(1060,160)"/> <wire from="(410,350)" to="(470,350)"/> <wire from="(870,340)" to="(920,340)"/> <wire from="(870,180)" to="(920,180)"/> <wire from="(80,820)" to="(140,820)"/> <wire from="(560,180)" to="(620,180)"/> <wire from="(1050,340)" to="(1050,470)"/> <wire from="(160,870)" to="(780,870)"/> <wire from="(150,50)" to="(150,140)"/> <wire from="(240,240)" to="(470,240)"/> <wire from="(1130,660)" to="(1250,660)"/> <wire from="(1130,500)" to="(1250,500)"/> <wire from="(370,1050)" to="(790,1050)"/> <wire from="(450,990)" to="(450,1080)"/> <wire from="(460,1070)" to="(820,1070)"/> <wire from="(250,420)" to="(470,420)"/> <wire from="(850,190)" to="(870,190)"/> <wire from="(970,800)" to="(970,1100)"/> <wire from="(300,1070)" to="(330,1070)"/> <wire from="(1050,600)" to="(1250,600)"/> <wire from="(260,600)" to="(470,600)"/> <wire from="(800,770)" to="(830,770)"/> <wire from="(770,460)" to="(990,460)"/> <wire from="(460,130)" to="(470,130)"/> <wire from="(860,690)" to="(870,690)"/> <wire from="(1110,210)" to="(1110,320)"/> <wire from="(1230,890)" to="(1250,890)"/> <comp lib="0" loc="(80,550)" name="Pin"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(380,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/ADL"/> </comp> <comp lib="0" loc="(380,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(920,490)" name="DL_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(410,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(210,150)" name="D_Latch"> <a name="label" val="rd_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/DB"/> </comp> <comp lib="0" loc="(860,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(400,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(920,670)" name="DL_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,310)" name="DL_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(400,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(1250,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,290)" name="Tunnel"> <a name="label" val="DL/DB"/> </comp> <comp lib="0" loc="(850,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,430)" name="Pin"> <a name="label" val="DB3"/> </comp> <comp loc="(920,130)" name="DL_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,150)" name="Tunnel"> <a name="label" val="RD"/> </comp> <comp loc="(470,130)" name="DL_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(410,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="WR"/> </comp> <comp lib="0" loc="(80,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL/ADH"/> </comp> <comp lib="0" loc="(420,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DL_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(900,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DOR_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(410,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,60)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(410,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1250,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(410,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,490)" name="DL_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(110,230)" name="Tunnel"> <a name="label" val="DL/ADL"/> </comp> <comp lib="0" loc="(870,1130)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1250,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(410,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,260)" name="Tunnel"> <a name="label" val="DL/ADH"/> </comp> <comp lib="0" loc="(1250,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(80,340)" name="Pin"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(380,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(210,210)" name="Constant"/> <comp lib="0" loc="(830,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(270,150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(920,310)" name="DL_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(380,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(470,670)" name="DL_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1250,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,520)" name="Pin"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(390,1130)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(80,820)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(1250,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,370)" name="Pin"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(1250,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="ALU"> <a name="circuit" val="ALU"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#f05951" height="570" stroke="#000000" stroke-width="2" width="140" x="50" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="22">ALU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="156" y="149">SB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="157" y="246">DB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="156" y="345">ADL OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="155" y="445">ADH OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="555">ADL IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="468">DB IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="379">SB IN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="44">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="63">NDB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="74">DB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="84">0/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="94">SB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="104">ADL/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="114">ADD/SB06</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="123">ADD/SB7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="133">ADD/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="153">ANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="164">EORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="174">ORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="183">SRS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="193">SUMS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="213">SB/AC</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="223">AC/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="233">AC/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="244">SB/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="254">SB/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="293">/ACIN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="303">/DAA</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="314">/DSA</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="173" y="43">ACR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="173" y="54">AVR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="573">ADH IN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="514">SB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="524">DB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="534">ADH_Dirty</text> <circ-port height="8" pin="80,20" width="8" x="46" y="36"/> <circ-port height="8" pin="80,110" width="8" x="46" y="56"/> <circ-port height="8" pin="80,140" width="8" x="46" y="66"/> <circ-port height="8" pin="80,170" width="8" x="46" y="76"/> <circ-port height="8" pin="80,200" width="8" x="46" y="86"/> <circ-port height="8" pin="80,230" width="8" x="46" y="96"/> <circ-port height="8" pin="80,260" width="8" x="46" y="106"/> <circ-port height="8" pin="80,290" width="8" x="46" y="116"/> <circ-port height="8" pin="80,320" width="8" x="46" y="126"/> <circ-port height="8" pin="80,370" width="8" x="46" y="146"/> <circ-port height="8" pin="80,400" width="8" x="46" y="156"/> <circ-port height="8" pin="80,430" width="8" x="46" y="166"/> <circ-port height="8" pin="80,460" width="8" x="46" y="176"/> <circ-port height="8" pin="80,490" width="8" x="46" y="186"/> <circ-port height="8" pin="80,540" width="8" x="46" y="206"/> <circ-port height="8" pin="80,570" width="8" x="46" y="216"/> <circ-port height="8" pin="80,600" width="8" x="46" y="226"/> <circ-port height="8" pin="80,630" width="8" x="46" y="236"/> <circ-port height="8" pin="80,660" width="8" x="46" y="246"/> <circ-port height="8" pin="80,770" width="8" x="46" y="286"/> <circ-port height="8" pin="80,800" width="8" x="46" y="296"/> <circ-port height="8" pin="80,830" width="8" x="46" y="306"/> <circ-port height="8" pin="80,890" width="8" x="46" y="336"/> <circ-port height="8" pin="80,920" width="8" x="46" y="346"/> <circ-port height="8" pin="80,950" width="8" x="46" y="356"/> <circ-port height="8" pin="80,980" width="8" x="46" y="366"/> <circ-port height="8" pin="80,1010" width="8" x="46" y="376"/> <circ-port height="8" pin="80,1040" width="8" x="46" y="386"/> <circ-port height="8" pin="80,1070" width="8" x="46" y="396"/> <circ-port height="8" pin="80,1100" width="8" x="46" y="406"/> <circ-port height="8" pin="260,890" width="8" x="46" y="426"/> <circ-port height="8" pin="260,920" width="8" x="46" y="436"/> <circ-port height="8" pin="260,950" width="8" x="46" y="446"/> <circ-port height="8" pin="260,980" width="8" x="46" y="456"/> <circ-port height="8" pin="260,1010" width="8" x="46" y="466"/> <circ-port height="8" pin="260,1040" width="8" x="46" y="476"/> <circ-port height="8" pin="260,1070" width="8" x="46" y="486"/> <circ-port height="8" pin="260,1100" width="8" x="46" y="496"/> <circ-port height="8" pin="540,890" width="8" x="46" y="546"/> <circ-port height="10" pin="1600,90" width="10" x="185" y="35"/> <circ-port height="10" pin="1600,160" width="10" x="185" y="45"/> <circ-port height="10" pin="970,890" width="10" x="185" y="105"/> <circ-port height="10" pin="970,920" width="10" x="185" y="115"/> <circ-port height="10" pin="970,950" width="10" x="185" y="125"/> <circ-port height="10" pin="970,980" width="10" x="185" y="135"/> <circ-port height="10" pin="970,1010" width="10" x="185" y="145"/> <circ-port height="10" pin="970,1040" width="10" x="185" y="155"/> <circ-port height="10" pin="970,1070" width="10" x="185" y="165"/> <circ-port height="10" pin="970,1100" width="10" x="185" y="175"/> <circ-port height="10" pin="1140,890" width="10" x="185" y="205"/> <circ-port height="10" pin="1140,920" width="10" x="185" y="215"/> <circ-port height="10" pin="1140,950" width="10" x="185" y="225"/> <circ-port height="10" pin="1140,980" width="10" x="185" y="235"/> <circ-port height="10" pin="1140,1010" width="10" x="185" y="245"/> <circ-port height="10" pin="1140,1040" width="10" x="185" y="255"/> <circ-port height="10" pin="1140,1070" width="10" x="185" y="265"/> <circ-port height="10" pin="1140,1100" width="10" x="185" y="275"/> <circ-port height="10" pin="1290,890" width="10" x="185" y="305"/> <circ-port height="10" pin="1290,920" width="10" x="185" y="315"/> <circ-port height="10" pin="1290,950" width="10" x="185" y="325"/> <circ-port height="10" pin="1290,980" width="10" x="185" y="335"/> <circ-port height="10" pin="1290,1010" width="10" x="185" y="345"/> <circ-port height="10" pin="1290,1040" width="10" x="185" y="355"/> <circ-port height="10" pin="1290,1070" width="10" x="185" y="365"/> <circ-port height="10" pin="1290,1100" width="10" x="185" y="375"/> <circ-port height="10" pin="1460,890" width="10" x="185" y="405"/> <circ-port height="10" pin="1460,920" width="10" x="185" y="415"/> <circ-port height="10" pin="1460,950" width="10" x="185" y="425"/> <circ-port height="10" pin="1460,980" width="10" x="185" y="435"/> <circ-port height="10" pin="1460,1010" width="10" x="185" y="445"/> <circ-port height="10" pin="1460,1040" width="10" x="185" y="455"/> <circ-port height="10" pin="1460,1070" width="10" x="185" y="465"/> <circ-port height="10" pin="1460,1100" width="10" x="185" y="475"/> <circ-port height="10" pin="470,660" width="10" x="85" y="595"/> <circ-port height="10" pin="470,690" width="10" x="105" y="595"/> <circ-port height="10" pin="870,440" width="10" x="125" y="595"/> <circ-port height="10" pin="1350,490" width="10" x="145" y="595"/> <circ-port height="8" pin="540,930" width="8" x="46" y="566"/> <circ-port height="8" pin="1200,410" width="8" x="46" y="506"/> <circ-port height="8" pin="1200,440" width="8" x="46" y="516"/> <circ-port height="8" pin="1200,470" width="8" x="46" y="526"/> <circ-anchor facing="east" height="6" width="6" x="47" y="37"/> </appear> <wire from="(240,90)" to="(240,800)"/> <wire from="(250,100)" to="(250,810)"/> <wire from="(540,300)" to="(590,300)"/> <wire from="(420,660)" to="(470,660)"/> <wire from="(1200,810)" to="(1200,1030)"/> <wire from="(150,950)" to="(150,970)"/> <wire from="(1230,980)" to="(1290,980)"/> <wire from="(310,80)" to="(310,300)"/> <wire from="(1410,1010)" to="(1460,1010)"/> <wire from="(190,830)" to="(290,830)"/> <wire from="(920,230)" to="(940,230)"/> <wire from="(260,1070)" to="(350,1070)"/> <wire from="(600,230)" to="(620,230)"/> <wire from="(80,890)" to="(170,890)"/> <wire from="(1220,290)" to="(1290,290)"/> <wire from="(360,470)" to="(380,470)"/> <wire from="(1070,1100)" to="(1140,1100)"/> <wire from="(500,450)" to="(520,450)"/> <wire from="(630,730)" to="(660,730)"/> <wire from="(500,290)" to="(520,290)"/> <wire from="(590,210)" to="(620,210)"/> <wire from="(170,200)" to="(170,310)"/> <wire from="(1060,90)" to="(1600,90)"/> <wire from="(1030,100)" to="(1030,220)"/> <wire from="(500,200)" to="(580,200)"/> <wire from="(1080,920)" to="(1080,960)"/> <wire from="(1240,920)" to="(1240,960)"/> <wire from="(990,370)" to="(1070,370)"/> <wire from="(610,250)" to="(620,250)"/> <wire from="(1240,410)" to="(1240,440)"/> <wire from="(340,950)" to="(340,970)"/> <wire from="(720,200)" to="(720,550)"/> <wire from="(1230,400)" to="(1230,410)"/> <wire from="(1550,160)" to="(1600,160)"/> <wire from="(790,20)" to="(790,170)"/> <wire from="(1390,330)" to="(1530,330)"/> <wire from="(920,200)" to="(940,200)"/> <wire from="(140,40)" to="(140,270)"/> <wire from="(1380,890)" to="(1460,890)"/> <wire from="(360,600)" to="(380,600)"/> <wire from="(360,440)" to="(380,440)"/> <wire from="(500,580)" to="(520,580)"/> <wire from="(80,770)" to="(230,770)"/> <wire from="(500,420)" to="(520,420)"/> <wire from="(500,260)" to="(520,260)"/> <wire from="(190,830)" to="(190,940)"/> <wire from="(1390,1070)" to="(1460,1070)"/> <wire from="(80,230)" to="(160,230)"/> <wire from="(1260,1010)" to="(1290,1010)"/> <wire from="(560,560)" to="(630,560)"/> <wire from="(290,50)" to="(740,50)"/> <wire from="(80,1040)" to="(150,1040)"/> <wire from="(720,550)" to="(800,550)"/> <wire from="(1040,680)" to="(1250,680)"/> <wire from="(1270,230)" to="(1290,230)"/> <wire from="(500,190)" to="(560,190)"/> <wire from="(80,570)" to="(140,570)"/> <wire from="(910,920)" to="(970,920)"/> <wire from="(1060,420)" to="(1060,560)"/> <wire from="(1090,950)" to="(1140,950)"/> <wire from="(290,410)" to="(290,830)"/> <wire from="(1280,420)" to="(1280,470)"/> <wire from="(920,330)" to="(940,330)"/> <wire from="(1380,960)" to="(1390,960)"/> <wire from="(310,510)" to="(340,510)"/> <wire from="(570,340)" to="(780,340)"/> <wire from="(1070,170)" to="(1080,170)"/> <wire from="(780,190)" to="(800,190)"/> <wire from="(1390,1010)" to="(1390,1070)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,250)" to="(380,250)"/> <wire from="(500,550)" to="(520,550)"/> <wire from="(500,230)" to="(520,230)"/> <wire from="(150,1000)" to="(170,1000)"/> <wire from="(610,580)" to="(610,700)"/> <wire from="(910,1010)" to="(910,1070)"/> <wire from="(550,390)" to="(550,580)"/> <wire from="(900,960)" to="(910,960)"/> <wire from="(790,530)" to="(800,530)"/> <wire from="(790,690)" to="(800,690)"/> <wire from="(860,440)" to="(870,440)"/> <wire from="(1060,310)" to="(1080,310)"/> <wire from="(310,760)" to="(380,760)"/> <wire from="(1270,200)" to="(1290,200)"/> <wire from="(1030,220)" to="(1080,220)"/> <wire from="(220,270)" to="(340,270)"/> <wire from="(80,140)" to="(190,140)"/> <wire from="(80,460)" to="(190,460)"/> <wire from="(590,210)" to="(590,300)"/> <wire from="(1330,640)" to="(1520,640)"/> <wire from="(1230,890)" to="(1290,890)"/> <wire from="(160,320)" to="(200,320)"/> <wire from="(1240,1070)" to="(1290,1070)"/> <wire from="(170,340)" to="(200,340)"/> <wire from="(920,300)" to="(940,300)"/> <wire from="(1000,170)" to="(1000,340)"/> <wire from="(360,220)" to="(380,220)"/> <wire from="(340,1000)" to="(360,1000)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,380)" to="(380,380)"/> <wire from="(500,520)" to="(520,520)"/> <wire from="(500,360)" to="(520,360)"/> <wire from="(150,970)" to="(170,970)"/> <wire from="(780,240)" to="(780,340)"/> <wire from="(1200,410)" to="(1230,410)"/> <wire from="(1350,690)" to="(1510,690)"/> <wire from="(1090,1000)" to="(1090,1040)"/> <wire from="(1250,1000)" to="(1250,1040)"/> <wire from="(1060,280)" to="(1080,280)"/> <wire from="(1340,450)" to="(1340,490)"/> <wire from="(1170,230)" to="(1190,230)"/> <wire from="(150,540)" to="(150,600)"/> <wire from="(920,1040)" to="(970,1040)"/> <wire from="(1270,370)" to="(1270,770)"/> <wire from="(290,410)" to="(340,410)"/> <wire from="(260,60)" to="(260,590)"/> <wire from="(860,580)" to="(860,610)"/> <wire from="(1040,210)" to="(1080,210)"/> <wire from="(160,230)" to="(160,320)"/> <wire from="(260,1100)" to="(360,1100)"/> <wire from="(170,310)" to="(200,310)"/> <wire from="(1350,1030)" to="(1360,1030)"/> <wire from="(340,970)" to="(360,970)"/> <wire from="(360,350)" to="(380,350)"/> <wire from="(360,190)" to="(380,190)"/> <wire from="(1070,980)" to="(1140,980)"/> <wire from="(1220,170)" to="(1220,290)"/> <wire from="(500,330)" to="(520,330)"/> <wire from="(1240,60)" to="(1240,250)"/> <wire from="(160,960)" to="(170,960)"/> <wire from="(80,630)" to="(150,630)"/> <wire from="(80,950)" to="(150,950)"/> <wire from="(1060,250)" to="(1080,250)"/> <wire from="(1170,200)" to="(1190,200)"/> <wire from="(1070,20)" to="(1070,170)"/> <wire from="(610,700)" to="(660,700)"/> <wire from="(1030,230)" to="(1030,570)"/> <wire from="(140,40)" to="(750,40)"/> <wire from="(80,800)" to="(240,800)"/> <wire from="(290,310)" to="(380,310)"/> <wire from="(920,240)" to="(940,240)"/> <wire from="(260,920)" to="(350,920)"/> <wire from="(1240,250)" to="(1250,250)"/> <wire from="(910,920)" to="(910,960)"/> <wire from="(710,180)" to="(740,180)"/> <wire from="(200,110)" to="(200,280)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(160,330)" to="(160,370)"/> <wire from="(500,460)" to="(520,460)"/> <wire from="(960,270)" to="(990,270)"/> <wire from="(180,300)" to="(200,300)"/> <wire from="(650,530)" to="(650,630)"/> <wire from="(80,1070)" to="(160,1070)"/> <wire from="(350,960)" to="(360,960)"/> <wire from="(750,770)" to="(1270,770)"/> <wire from="(900,1100)" to="(970,1100)"/> <wire from="(710,200)" to="(720,200)"/> <wire from="(1390,920)" to="(1390,960)"/> <wire from="(170,340)" to="(170,400)"/> <wire from="(710,690)" to="(710,700)"/> <wire from="(1100,1010)" to="(1140,1010)"/> <wire from="(180,350)" to="(180,430)"/> <wire from="(120,260)" to="(120,280)"/> <wire from="(740,720)" to="(740,740)"/> <wire from="(780,710)" to="(800,710)"/> <wire from="(840,610)" to="(860,610)"/> <wire from="(920,210)" to="(940,210)"/> <wire from="(790,20)" to="(1070,20)"/> <wire from="(1230,1010)" to="(1240,1010)"/> <wire from="(1280,420)" to="(1290,420)"/> <wire from="(1070,1010)" to="(1080,1010)"/> <wire from="(190,360)" to="(190,460)"/> <wire from="(260,60)" to="(1240,60)"/> <wire from="(360,450)" to="(380,450)"/> <wire from="(500,430)" to="(520,430)"/> <wire from="(500,270)" to="(520,270)"/> <wire from="(590,190)" to="(620,190)"/> <wire from="(1390,350)" to="(1520,350)"/> <wire from="(1070,890)" to="(1070,950)"/> <wire from="(1230,890)" to="(1230,950)"/> <wire from="(1390,920)" to="(1460,920)"/> <wire from="(1230,990)" to="(1260,990)"/> <wire from="(1070,990)" to="(1100,990)"/> <wire from="(190,290)" to="(200,290)"/> <wire from="(1040,90)" to="(1040,210)"/> <wire from="(200,370)" to="(200,490)"/> <wire from="(1070,1000)" to="(1090,1000)"/> <wire from="(1060,190)" to="(1080,190)"/> <wire from="(650,750)" to="(660,750)"/> <wire from="(1230,1000)" to="(1250,1000)"/> <wire from="(1270,240)" to="(1290,240)"/> <wire from="(920,950)" to="(970,950)"/> <wire from="(580,200)" to="(580,530)"/> <wire from="(80,490)" to="(200,490)"/> <wire from="(1200,440)" to="(1240,440)"/> <wire from="(1250,330)" to="(1290,330)"/> <wire from="(540,400)" to="(600,400)"/> <wire from="(1040,870)" to="(1330,870)"/> <wire from="(380,790)" to="(1260,790)"/> <wire from="(930,600)" to="(1550,600)"/> <wire from="(790,610)" to="(790,690)"/> <wire from="(570,740)" to="(570,890)"/> <wire from="(340,740)" to="(570,740)"/> <wire from="(140,990)" to="(170,990)"/> <wire from="(920,340)" to="(940,340)"/> <wire from="(80,200)" to="(170,200)"/> <wire from="(780,200)" to="(800,200)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(360,580)" to="(380,580)"/> <wire from="(140,570)" to="(140,610)"/> <wire from="(1070,890)" to="(1140,890)"/> <wire from="(500,560)" to="(520,560)"/> <wire from="(630,680)" to="(660,680)"/> <wire from="(500,240)" to="(520,240)"/> <wire from="(590,90)" to="(590,190)"/> <wire from="(80,370)" to="(160,370)"/> <wire from="(460,690)" to="(470,690)"/> <wire from="(1260,350)" to="(1290,350)"/> <wire from="(650,630)" to="(650,750)"/> <wire from="(80,540)" to="(150,540)"/> <wire from="(120,810)" to="(250,810)"/> <wire from="(1070,970)" to="(1090,970)"/> <wire from="(310,510)" to="(310,760)"/> <wire from="(1230,970)" to="(1250,970)"/> <wire from="(1270,210)" to="(1290,210)"/> <wire from="(1270,370)" to="(1290,370)"/> <wire from="(1070,1020)" to="(1070,1100)"/> <wire from="(1230,1020)" to="(1230,1100)"/> <wire from="(610,80)" to="(610,170)"/> <wire from="(1080,1070)" to="(1140,1070)"/> <wire from="(260,980)" to="(360,980)"/> <wire from="(160,330)" to="(200,330)"/> <wire from="(1240,920)" to="(1290,920)"/> <wire from="(920,310)" to="(940,310)"/> <wire from="(920,1000)" to="(920,1040)"/> <wire from="(540,930)" to="(750,930)"/> <wire from="(330,990)" to="(360,990)"/> <wire from="(970,420)" to="(1060,420)"/> <wire from="(1070,370)" to="(1070,810)"/> <wire from="(360,390)" to="(380,390)"/> <wire from="(360,230)" to="(380,230)"/> <wire from="(360,550)" to="(380,550)"/> <wire from="(500,530)" to="(520,530)"/> <wire from="(500,370)" to="(520,370)"/> <wire from="(130,640)" to="(150,640)"/> <wire from="(580,530)" to="(650,530)"/> <wire from="(860,580)" to="(870,580)"/> <wire from="(1060,290)" to="(1080,290)"/> <wire from="(700,740)" to="(710,740)"/> <wire from="(1400,1000)" to="(1400,1040)"/> <wire from="(1170,240)" to="(1190,240)"/> <wire from="(970,180)" to="(970,420)"/> <wire from="(1070,20)" to="(1280,20)"/> <wire from="(260,1010)" to="(330,1010)"/> <wire from="(950,570)" to="(1030,570)"/> <wire from="(610,170)" to="(620,170)"/> <wire from="(170,890)" to="(170,950)"/> <wire from="(1100,990)" to="(1100,1010)"/> <wire from="(340,610)" to="(340,740)"/> <wire from="(1260,990)" to="(1260,1010)"/> <wire from="(80,110)" to="(200,110)"/> <wire from="(740,50)" to="(740,180)"/> <wire from="(1250,330)" to="(1250,680)"/> <wire from="(1400,1040)" to="(1460,1040)"/> <wire from="(190,140)" to="(190,290)"/> <wire from="(120,810)" to="(120,830)"/> <wire from="(140,990)" to="(140,1010)"/> <wire from="(290,830)" to="(1040,830)"/> <wire from="(1240,410)" to="(1290,410)"/> <wire from="(920,280)" to="(940,280)"/> <wire from="(1200,470)" to="(1280,470)"/> <wire from="(600,230)" to="(600,400)"/> <wire from="(500,170)" to="(530,170)"/> <wire from="(80,1100)" to="(170,1100)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(360,360)" to="(380,360)"/> <wire from="(150,1000)" to="(150,1040)"/> <wire from="(540,210)" to="(570,210)"/> <wire from="(500,340)" to="(520,340)"/> <wire from="(990,270)" to="(990,370)"/> <wire from="(530,110)" to="(1050,110)"/> <wire from="(900,980)" to="(970,980)"/> <wire from="(190,360)" to="(200,360)"/> <wire from="(360,890)" to="(360,950)"/> <wire from="(1060,560)" to="(1530,560)"/> <wire from="(80,20)" to="(790,20)"/> <wire from="(630,680)" to="(630,730)"/> <wire from="(1060,260)" to="(1080,260)"/> <wire from="(1170,210)" to="(1190,210)"/> <wire from="(730,740)" to="(740,740)"/> <wire from="(160,1010)" to="(160,1070)"/> <wire from="(520,380)" to="(520,390)"/> <wire from="(1090,950)" to="(1090,970)"/> <wire from="(1250,950)" to="(1250,970)"/> <wire from="(1250,1040)" to="(1290,1040)"/> <wire from="(80,660)" to="(130,660)"/> <wire from="(500,180)" to="(620,180)"/> <wire from="(330,990)" to="(330,1010)"/> <wire from="(170,1020)" to="(170,1100)"/> <wire from="(120,300)" to="(120,320)"/> <wire from="(80,830)" to="(120,830)"/> <wire from="(920,250)" to="(940,250)"/> <wire from="(1380,1100)" to="(1460,1100)"/> <wire from="(360,170)" to="(380,170)"/> <wire from="(360,330)" to="(380,330)"/> <wire from="(360,490)" to="(380,490)"/> <wire from="(500,470)" to="(520,470)"/> <wire from="(500,310)" to="(520,310)"/> <wire from="(840,710)" to="(930,710)"/> <wire from="(340,1000)" to="(340,1040)"/> <wire from="(80,920)" to="(160,920)"/> <wire from="(1330,640)" to="(1330,870)"/> <wire from="(1060,560)" to="(1060,850)"/> <wire from="(460,640)" to="(460,690)"/> <wire from="(350,1010)" to="(350,1070)"/> <wire from="(790,610)" to="(800,610)"/> <wire from="(1170,180)" to="(1190,180)"/> <wire from="(740,720)" to="(750,720)"/> <wire from="(1350,690)" to="(1350,1030)"/> <wire from="(1050,110)" to="(1050,180)"/> <wire from="(860,530)" to="(860,560)"/> <wire from="(360,1020)" to="(360,1100)"/> <wire from="(130,600)" to="(130,620)"/> <wire from="(930,1010)" to="(970,1010)"/> <wire from="(1510,370)" to="(1510,690)"/> <wire from="(260,890)" to="(360,890)"/> <wire from="(650,630)" to="(760,630)"/> <wire from="(80,320)" to="(120,320)"/> <wire from="(920,220)" to="(940,220)"/> <wire from="(900,1000)" to="(920,1000)"/> <wire from="(1340,490)" to="(1350,490)"/> <wire from="(1380,1010)" to="(1390,1010)"/> <wire from="(80,400)" to="(170,400)"/> <wire from="(780,240)" to="(800,240)"/> <wire from="(1380,890)" to="(1380,950)"/> <wire from="(360,460)" to="(380,460)"/> <wire from="(500,440)" to="(520,440)"/> <wire from="(500,280)" to="(520,280)"/> <wire from="(900,990)" to="(930,990)"/> <wire from="(1050,180)" to="(1080,180)"/> <wire from="(1530,330)" to="(1530,560)"/> <wire from="(900,890)" to="(900,950)"/> <wire from="(230,80)" to="(310,80)"/> <wire from="(860,850)" to="(1060,850)"/> <wire from="(1520,350)" to="(1520,640)"/> <wire from="(1380,990)" to="(1410,990)"/> <wire from="(900,1010)" to="(910,1010)"/> <wire from="(1380,1000)" to="(1400,1000)"/> <wire from="(750,220)" to="(760,220)"/> <wire from="(290,50)" to="(290,310)"/> <wire from="(860,370)" to="(860,440)"/> <wire from="(550,580)" to="(610,580)"/> <wire from="(80,600)" to="(130,600)"/> <wire from="(1400,950)" to="(1460,950)"/> <wire from="(1230,1100)" to="(1290,1100)"/> <wire from="(80,290)" to="(120,290)"/> <wire from="(1390,370)" to="(1510,370)"/> <wire from="(930,600)" to="(930,710)"/> <wire from="(920,190)" to="(940,190)"/> <wire from="(920,350)" to="(940,350)"/> <wire from="(900,970)" to="(920,970)"/> <wire from="(1210,170)" to="(1220,170)"/> <wire from="(780,210)" to="(800,210)"/> <wire from="(360,430)" to="(380,430)"/> <wire from="(360,590)" to="(380,590)"/> <wire from="(160,920)" to="(160,960)"/> <wire from="(500,410)" to="(520,410)"/> <wire from="(500,570)" to="(520,570)"/> <wire from="(500,250)" to="(520,250)"/> <wire from="(750,770)" to="(750,930)"/> <wire from="(1070,810)" to="(1200,810)"/> <wire from="(1280,20)" to="(1280,180)"/> <wire from="(900,890)" to="(970,890)"/> <wire from="(1060,90)" to="(1060,190)"/> <wire from="(260,1040)" to="(340,1040)"/> <wire from="(1380,970)" to="(1400,970)"/> <wire from="(560,190)" to="(560,560)"/> <wire from="(310,300)" to="(380,300)"/> <wire from="(1000,340)" to="(1080,340)"/> <wire from="(1270,220)" to="(1290,220)"/> <wire from="(180,170)" to="(180,300)"/> <wire from="(1380,1020)" to="(1380,1100)"/> <wire from="(910,1070)" to="(970,1070)"/> <wire from="(1250,950)" to="(1290,950)"/> <wire from="(1080,920)" to="(1140,920)"/> <wire from="(80,260)" to="(120,260)"/> <wire from="(80,170)" to="(180,170)"/> <wire from="(900,1020)" to="(900,1100)"/> <wire from="(920,320)" to="(940,320)"/> <wire from="(170,590)" to="(260,590)"/> <wire from="(1230,960)" to="(1240,960)"/> <wire from="(1070,960)" to="(1080,960)"/> <wire from="(1040,320)" to="(1040,680)"/> <wire from="(80,980)" to="(170,980)"/> <wire from="(360,240)" to="(380,240)"/> <wire from="(360,560)" to="(380,560)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(520,390)" to="(550,390)"/> <wire from="(540,890)" to="(570,890)"/> <wire from="(500,380)" to="(520,380)"/> <wire from="(500,540)" to="(520,540)"/> <wire from="(500,220)" to="(520,220)"/> <wire from="(1080,1010)" to="(1080,1070)"/> <wire from="(350,920)" to="(350,960)"/> <wire from="(1240,1010)" to="(1240,1070)"/> <wire from="(1040,870)" to="(1040,1030)"/> <wire from="(540,500)" to="(610,500)"/> <wire from="(160,1010)" to="(170,1010)"/> <wire from="(1060,190)" to="(1060,230)"/> <wire from="(860,850)" to="(860,1030)"/> <wire from="(1060,300)" to="(1080,300)"/> <wire from="(1170,250)" to="(1190,250)"/> <wire from="(1410,990)" to="(1410,1010)"/> <wire from="(80,1010)" to="(140,1010)"/> <wire from="(1040,680)" to="(1040,830)"/> <wire from="(570,210)" to="(570,340)"/> <wire from="(310,80)" to="(610,80)"/> <wire from="(420,640)" to="(420,660)"/> <wire from="(710,700)" to="(750,700)"/> <wire from="(1230,400)" to="(1290,400)"/> <wire from="(380,760)" to="(380,790)"/> <wire from="(930,990)" to="(930,1010)"/> <wire from="(840,530)" to="(860,530)"/> <wire from="(780,630)" to="(800,630)"/> <wire from="(860,1030)" to="(880,1030)"/> <wire from="(240,90)" to="(590,90)"/> <wire from="(920,290)" to="(940,290)"/> <wire from="(1380,980)" to="(1460,980)"/> <wire from="(1280,180)" to="(1290,180)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,210)" to="(380,210)"/> <wire from="(360,370)" to="(380,370)"/> <wire from="(500,510)" to="(520,510)"/> <wire from="(500,350)" to="(520,350)"/> <wire from="(1030,230)" to="(1060,230)"/> <wire from="(180,350)" to="(200,350)"/> <wire from="(130,620)" to="(150,620)"/> <wire from="(250,100)" to="(1030,100)"/> <wire from="(630,560)" to="(630,680)"/> <wire from="(350,1010)" to="(360,1010)"/> <wire from="(530,110)" to="(530,170)"/> <wire from="(960,180)" to="(970,180)"/> <wire from="(790,170)" to="(800,170)"/> <wire from="(860,560)" to="(870,560)"/> <wire from="(1060,270)" to="(1080,270)"/> <wire from="(1170,220)" to="(1190,220)"/> <wire from="(1400,950)" to="(1400,970)"/> <wire from="(380,790)" to="(380,940)"/> <wire from="(130,640)" to="(130,660)"/> <wire from="(920,950)" to="(920,970)"/> <wire from="(790,530)" to="(790,610)"/> <wire from="(80,430)" to="(180,430)"/> <wire from="(1090,1040)" to="(1140,1040)"/> <wire from="(920,260)" to="(940,260)"/> <wire from="(910,570)" to="(930,570)"/> <wire from="(1200,1030)" to="(1210,1030)"/> <wire from="(790,170)" to="(790,530)"/> <wire from="(1040,1030)" to="(1050,1030)"/> <wire from="(360,500)" to="(380,500)"/> <wire from="(360,340)" to="(380,340)"/> <wire from="(360,180)" to="(380,180)"/> <wire from="(500,480)" to="(520,480)"/> <wire from="(500,320)" to="(520,320)"/> <wire from="(1260,350)" to="(1260,790)"/> <wire from="(1550,160)" to="(1550,600)"/> <wire from="(230,80)" to="(230,770)"/> <wire from="(610,250)" to="(610,500)"/> <wire from="(140,610)" to="(150,610)"/> <wire from="(260,950)" to="(340,950)"/> <wire from="(590,90)" to="(1040,90)"/> <wire from="(1060,240)" to="(1080,240)"/> <wire from="(700,690)" to="(710,690)"/> <wire from="(1170,190)" to="(1190,190)"/> <wire from="(920,170)" to="(1000,170)"/> <wire from="(750,40)" to="(750,220)"/> <comp lib="0" loc="(80,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(1040,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,1070)" name="Pin"> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(960,180)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(340,610)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(340,510)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,1040)" name="Pin"> <a name="label" val="SB5"/> </comp> <comp loc="(380,170)" name="ALU_OPS"/> <comp lib="0" loc="(80,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADD"/> </comp> <comp lib="0" loc="(470,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1080,170)" name="ALU_BCD"/> <comp lib="0" loc="(970,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ADD"/> </comp> <comp lib="0" loc="(80,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADH"/> </comp> <comp lib="0" loc="(80,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DSA"/> </comp> <comp lib="1" loc="(700,690)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,890)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADL_In"/> </comp> <comp lib="0" loc="(80,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NDB/ADD"/> </comp> <comp lib="0" loc="(80,920)" name="Pin"> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(540,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1290,180)" name="ALU_AC"/> <comp lib="0" loc="(1140,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(970,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1140,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1140,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,1100)" name="Pin"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(1460,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1140,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,270)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(80,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/DB"/> </comp> <comp lib="0" loc="(970,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1460,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(880,1030)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(220,270)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp loc="(840,700)" name="D_Latch"> <a name="label" val="AVRLatch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1290,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,890)" name="Pin"> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(1226,303)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC/DB"/> </comp> <comp lib="0" loc="(80,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> </comp> <comp lib="0" loc="(1200,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB_Dirty"/> </comp> <comp lib="1" loc="(950,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(960,270)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(970,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1010)" name="Pin"> <a name="label" val="SB4"/> </comp> <comp loc="(840,540)" name="D_Latch"> <a name="label" val="DCLatch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(260,1070)" name="Pin"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(380,940)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(1011,254)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="0" loc="(190,940)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1290,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(665,334)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="1" loc="(910,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(970,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(988,565)" name="Text"> <a name="text" val="ACR"/> </comp> <comp lib="0" loc="(1290,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,950)" name="Pin"> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(540,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1140,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1460,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,410)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(780,710)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(260,920)" name="Pin"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(80,980)" name="Pin"> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(1360,1030)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(260,980)" name="Pin"> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(140,270)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EORS"/> </comp> <comp loc="(800,170)" name="ALU_ADD"/> <comp lib="0" loc="(1050,1030)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(906,704)" name="Text"> <a name="text" val="AVR"/> </comp> <comp lib="0" loc="(970,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="BI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DAA"/> </comp> <comp lib="0" loc="(1460,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1200,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB_Dirty"/> </comp> <comp lib="0" loc="(1290,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,890)" name="Pin"> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(1290,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1460,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/ADL"/> </comp> <comp lib="0" loc="(260,950)" name="Pin"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1600,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ACR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1210,1030)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,20)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(80,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACIN"/> </comp> <comp lib="0" loc="(1600,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AVR"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(780,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/ADD"/> </comp> <comp lib="0" loc="(1460,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC/SB"/> </comp> <comp lib="0" loc="(1290,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1200,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH_Dirty"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SUMS"/> </comp> <comp lib="1" loc="(700,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(970,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/SB7"/> </comp> <comp lib="0" loc="(1140,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(970,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(620,170)" name="BCD_CARRY"/> <comp lib="0" loc="(1210,170)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(1350,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AC_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(840,620)" name="D_Latch"> <a name="label" val="ACLatch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1140,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,930)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADH_In"/> </comp> <comp lib="0" loc="(1460,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1100)" name="Pin"> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(260,1010)" name="Pin"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1290,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1460,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1140,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(870,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADD_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ORS"/> </comp> <comp lib="1" loc="(730,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,250)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(760,220)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(80,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/SB06"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/AC"/> </comp> <comp lib="0" loc="(260,1040)" name="Pin"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(1290,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="PC"> <a name="circuit" val="PC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#f2a219" height="350" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="42">PC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="115">DB OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="137" y="260">ADL OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="135" y="348">ADH OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="348">ADH IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="260">ADL IN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="83">ADH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="93">PCH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="103">PCH/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="114">PCH/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="133">ADL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="143">PCL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="153">PCL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="163">PCL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="183">#1/PC</text> <circ-port height="8" pin="80,50" width="8" x="46" y="56"/> <circ-port height="8" pin="80,260" width="8" x="46" y="76"/> <circ-port height="8" pin="80,290" width="8" x="46" y="86"/> <circ-port height="8" pin="80,320" width="8" x="46" y="96"/> <circ-port height="8" pin="80,350" width="8" x="46" y="106"/> <circ-port height="8" pin="80,120" width="8" x="46" y="126"/> <circ-port height="8" pin="80,150" width="8" x="46" y="136"/> <circ-port height="8" pin="80,180" width="8" x="46" y="146"/> <circ-port height="8" pin="80,210" width="8" x="46" y="156"/> <circ-port height="8" pin="80,420" width="8" x="46" y="176"/> <circ-port height="8" pin="80,510" width="8" x="46" y="216"/> <circ-port height="8" pin="80,540" width="8" x="46" y="226"/> <circ-port height="8" pin="80,570" width="8" x="46" y="236"/> <circ-port height="8" pin="80,600" width="8" x="46" y="246"/> <circ-port height="8" pin="80,630" width="8" x="46" y="256"/> <circ-port height="8" pin="80,660" width="8" x="46" y="266"/> <circ-port height="8" pin="80,690" width="8" x="46" y="276"/> <circ-port height="8" pin="80,720" width="8" x="46" y="286"/> <circ-port height="8" pin="80,770" width="8" x="46" y="306"/> <circ-port height="8" pin="80,800" width="8" x="46" y="316"/> <circ-port height="8" pin="80,830" width="8" x="46" y="326"/> <circ-port height="8" pin="80,860" width="8" x="46" y="336"/> <circ-port height="8" pin="80,890" width="8" x="46" y="346"/> <circ-port height="8" pin="80,920" width="8" x="46" y="356"/> <circ-port height="8" pin="80,950" width="8" x="46" y="366"/> <circ-port height="8" pin="80,980" width="8" x="46" y="376"/> <circ-port height="10" pin="920,50" width="10" x="165" y="75"/> <circ-port height="10" pin="920,80" width="10" x="165" y="85"/> <circ-port height="10" pin="920,110" width="10" x="165" y="95"/> <circ-port height="10" pin="920,140" width="10" x="165" y="105"/> <circ-port height="10" pin="920,170" width="10" x="165" y="115"/> <circ-port height="10" pin="920,200" width="10" x="165" y="125"/> <circ-port height="10" pin="920,230" width="10" x="165" y="135"/> <circ-port height="10" pin="920,260" width="10" x="165" y="145"/> <circ-port height="10" pin="920,310" width="10" x="165" y="215"/> <circ-port height="10" pin="920,340" width="10" x="165" y="225"/> <circ-port height="10" pin="920,370" width="10" x="165" y="235"/> <circ-port height="10" pin="920,400" width="10" x="165" y="245"/> <circ-port height="10" pin="920,430" width="10" x="165" y="255"/> <circ-port height="10" pin="920,460" width="10" x="165" y="265"/> <circ-port height="10" pin="920,490" width="10" x="165" y="275"/> <circ-port height="10" pin="920,520" width="10" x="165" y="285"/> <circ-port height="10" pin="920,570" width="10" x="165" y="305"/> <circ-port height="10" pin="920,600" width="10" x="165" y="315"/> <circ-port height="10" pin="920,630" width="10" x="165" y="325"/> <circ-port height="10" pin="920,660" width="10" x="165" y="335"/> <circ-port height="10" pin="920,690" width="10" x="165" y="345"/> <circ-port height="10" pin="920,720" width="10" x="165" y="355"/> <circ-port height="10" pin="920,750" width="10" x="165" y="365"/> <circ-port height="10" pin="920,780" width="10" x="165" y="375"/> <circ-port height="10" pin="830,860" width="10" x="85" y="395"/> <circ-port height="10" pin="830,950" width="10" x="125" y="395"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(870,630)" to="(920,630)"/> <wire from="(80,950)" to="(140,950)"/> <wire from="(310,690)" to="(310,820)"/> <wire from="(880,160)" to="(880,170)"/> <wire from="(880,400)" to="(880,410)"/> <wire from="(870,630)" to="(870,640)"/> <wire from="(120,600)" to="(120,610)"/> <wire from="(150,900)" to="(150,980)"/> <wire from="(510,110)" to="(510,130)"/> <wire from="(880,170)" to="(920,170)"/> <wire from="(80,890)" to="(120,890)"/> <wire from="(580,820)" to="(580,840)"/> <wire from="(590,910)" to="(590,930)"/> <wire from="(660,820)" to="(660,840)"/> <wire from="(670,910)" to="(670,930)"/> <wire from="(840,390)" to="(860,390)"/> <wire from="(120,620)" to="(150,620)"/> <wire from="(840,630)" to="(860,630)"/> <wire from="(430,730)" to="(430,890)"/> <wire from="(510,580)" to="(670,580)"/> <wire from="(330,280)" to="(350,280)"/> <wire from="(330,680)" to="(350,680)"/> <wire from="(470,260)" to="(490,260)"/> <wire from="(470,180)" to="(490,180)"/> <wire from="(470,500)" to="(490,500)"/> <wire from="(470,660)" to="(490,660)"/> <wire from="(840,140)" to="(870,140)"/> <wire from="(130,880)" to="(150,880)"/> <wire from="(140,540)" to="(140,590)"/> <wire from="(170,820)" to="(310,820)"/> <wire from="(80,510)" to="(150,510)"/> <wire from="(840,780)" to="(920,780)"/> <wire from="(870,200)" to="(920,200)"/> <wire from="(150,160)" to="(150,420)"/> <wire from="(860,340)" to="(920,340)"/> <wire from="(850,50)" to="(850,120)"/> <wire from="(850,450)" to="(850,520)"/> <wire from="(240,200)" to="(350,200)"/> <wire from="(840,420)" to="(880,420)"/> <wire from="(880,140)" to="(920,140)"/> <wire from="(610,820)" to="(610,840)"/> <wire from="(620,910)" to="(620,930)"/> <wire from="(690,820)" to="(690,840)"/> <wire from="(700,910)" to="(700,930)"/> <wire from="(840,440)" to="(860,440)"/> <wire from="(330,250)" to="(350,250)"/> <wire from="(330,650)" to="(350,650)"/> <wire from="(470,230)" to="(490,230)"/> <wire from="(470,150)" to="(490,150)"/> <wire from="(470,550)" to="(490,550)"/> <wire from="(470,630)" to="(490,630)"/> <wire from="(840,430)" to="(870,430)"/> <wire from="(130,850)" to="(150,850)"/> <wire from="(430,890)" to="(570,890)"/> <wire from="(850,50)" to="(920,50)"/> <wire from="(80,50)" to="(280,50)"/> <wire from="(390,430)" to="(650,430)"/> <wire from="(840,450)" to="(850,450)"/> <wire from="(80,720)" to="(150,720)"/> <wire from="(860,670)" to="(860,720)"/> <wire from="(880,420)" to="(880,430)"/> <wire from="(120,620)" to="(120,630)"/> <wire from="(470,330)" to="(520,330)"/> <wire from="(860,230)" to="(920,230)"/> <wire from="(80,320)" to="(200,320)"/> <wire from="(80,660)" to="(130,660)"/> <wire from="(870,170)" to="(870,200)"/> <wire from="(840,150)" to="(880,150)"/> <wire from="(880,430)" to="(920,430)"/> <wire from="(740,110)" to="(740,460)"/> <wire from="(240,180)" to="(240,200)"/> <wire from="(130,630)" to="(130,660)"/> <wire from="(640,820)" to="(640,840)"/> <wire from="(650,910)" to="(650,930)"/> <wire from="(720,820)" to="(720,840)"/> <wire from="(730,910)" to="(730,930)"/> <wire from="(250,190)" to="(350,190)"/> <wire from="(320,520)" to="(350,520)"/> <wire from="(330,300)" to="(350,300)"/> <wire from="(330,620)" to="(350,620)"/> <wire from="(140,800)" to="(140,840)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(470,200)" to="(490,200)"/> <wire from="(470,520)" to="(490,520)"/> <wire from="(470,600)" to="(490,600)"/> <wire from="(80,260)" to="(230,260)"/> <wire from="(430,370)" to="(430,410)"/> <wire from="(840,400)" to="(870,400)"/> <wire from="(840,640)" to="(870,640)"/> <wire from="(140,640)" to="(140,690)"/> <wire from="(140,840)" to="(150,840)"/> <wire from="(310,330)" to="(310,380)"/> <wire from="(850,260)" to="(920,260)"/> <wire from="(740,460)" to="(820,460)"/> <wire from="(740,700)" to="(820,700)"/> <wire from="(80,770)" to="(150,770)"/> <wire from="(860,80)" to="(860,130)"/> <wire from="(260,120)" to="(260,180)"/> <wire from="(390,730)" to="(390,800)"/> <wire from="(870,460)" to="(920,460)"/> <wire from="(150,650)" to="(150,720)"/> <wire from="(80,540)" to="(140,540)"/> <wire from="(860,600)" to="(920,600)"/> <wire from="(520,330)" to="(520,460)"/> <wire from="(850,310)" to="(850,380)"/> <wire from="(80,120)" to="(260,120)"/> <wire from="(880,400)" to="(920,400)"/> <wire from="(230,260)" to="(230,540)"/> <wire from="(590,820)" to="(590,840)"/> <wire from="(600,910)" to="(600,930)"/> <wire from="(670,820)" to="(670,840)"/> <wire from="(680,910)" to="(680,930)"/> <wire from="(190,350)" to="(190,570)"/> <wire from="(120,610)" to="(150,610)"/> <wire from="(260,180)" to="(350,180)"/> <wire from="(190,570)" to="(350,570)"/> <wire from="(330,270)" to="(350,270)"/> <wire from="(330,670)" to="(350,670)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(470,170)" to="(490,170)"/> <wire from="(470,570)" to="(490,570)"/> <wire from="(470,650)" to="(490,650)"/> <wire from="(130,630)" to="(150,630)"/> <wire from="(80,210)" to="(350,210)"/> <wire from="(140,890)" to="(150,890)"/> <wire from="(850,310)" to="(920,310)"/> <wire from="(80,420)" to="(150,420)"/> <wire from="(80,980)" to="(150,980)"/> <wire from="(170,380)" to="(170,570)"/> <wire from="(220,550)" to="(350,550)"/> <wire from="(280,140)" to="(350,140)"/> <wire from="(870,110)" to="(920,110)"/> <wire from="(560,410)" to="(560,870)"/> <wire from="(860,490)" to="(920,490)"/> <wire from="(390,800)" to="(570,800)"/> <wire from="(850,680)" to="(850,750)"/> <wire from="(80,920)" to="(130,920)"/> <wire from="(870,110)" to="(870,140)"/> <wire from="(870,430)" to="(870,460)"/> <wire from="(80,350)" to="(190,350)"/> <wire from="(840,410)" to="(880,410)"/> <wire from="(840,650)" to="(880,650)"/> <wire from="(130,570)" to="(130,600)"/> <wire from="(620,820)" to="(620,840)"/> <wire from="(630,910)" to="(630,930)"/> <wire from="(700,820)" to="(700,840)"/> <wire from="(710,910)" to="(710,930)"/> <wire from="(840,670)" to="(860,670)"/> <wire from="(670,220)" to="(670,580)"/> <wire from="(510,220)" to="(670,220)"/> <wire from="(330,320)" to="(350,320)"/> <wire from="(330,640)" to="(350,640)"/> <wire from="(200,560)" to="(350,560)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(470,140)" to="(490,140)"/> <wire from="(470,540)" to="(490,540)"/> <wire from="(470,620)" to="(490,620)"/> <wire from="(740,950)" to="(830,950)"/> <wire from="(130,600)" to="(150,600)"/> <wire from="(840,660)" to="(870,660)"/> <wire from="(80,290)" to="(220,290)"/> <wire from="(170,380)" to="(310,380)"/> <wire from="(850,520)" to="(920,520)"/> <wire from="(430,410)" to="(560,410)"/> <wire from="(840,120)" to="(850,120)"/> <wire from="(840,680)" to="(850,680)"/> <wire from="(860,180)" to="(860,230)"/> <wire from="(860,340)" to="(860,390)"/> <wire from="(850,570)" to="(850,620)"/> <wire from="(150,510)" to="(150,580)"/> <wire from="(80,800)" to="(140,800)"/> <wire from="(880,650)" to="(880,660)"/> <wire from="(230,540)" to="(350,540)"/> <wire from="(80,570)" to="(130,570)"/> <wire from="(510,490)" to="(740,490)"/> <wire from="(880,660)" to="(920,660)"/> <wire from="(80,150)" to="(250,150)"/> <wire from="(580,910)" to="(580,930)"/> <wire from="(650,820)" to="(650,840)"/> <wire from="(660,910)" to="(660,930)"/> <wire from="(670,200)" to="(670,220)"/> <wire from="(730,820)" to="(730,840)"/> <wire from="(670,200)" to="(820,200)"/> <wire from="(120,870)" to="(150,870)"/> <wire from="(330,290)" to="(350,290)"/> <wire from="(330,610)" to="(350,610)"/> <wire from="(470,270)" to="(490,270)"/> <wire from="(470,190)" to="(490,190)"/> <wire from="(470,510)" to="(490,510)"/> <wire from="(470,590)" to="(490,590)"/> <wire from="(140,590)" to="(150,590)"/> <wire from="(850,570)" to="(920,570)"/> <wire from="(150,160)" to="(350,160)"/> <wire from="(870,370)" to="(920,370)"/> <wire from="(870,690)" to="(920,690)"/> <wire from="(80,690)" to="(140,690)"/> <wire from="(880,140)" to="(880,150)"/> <wire from="(870,370)" to="(870,400)"/> <wire from="(860,600)" to="(860,630)"/> <wire from="(130,830)" to="(130,850)"/> <wire from="(840,690)" to="(840,780)"/> <wire from="(740,490)" to="(740,700)"/> <wire from="(80,630)" to="(120,630)"/> <wire from="(600,820)" to="(600,840)"/> <wire from="(610,910)" to="(610,930)"/> <wire from="(680,820)" to="(680,840)"/> <wire from="(690,910)" to="(690,930)"/> <wire from="(650,870)" to="(650,890)"/> <wire from="(280,50)" to="(280,140)"/> <wire from="(840,130)" to="(860,130)"/> <wire from="(330,260)" to="(350,260)"/> <wire from="(330,660)" to="(350,660)"/> <wire from="(470,240)" to="(490,240)"/> <wire from="(470,160)" to="(490,160)"/> <wire from="(470,560)" to="(490,560)"/> <wire from="(470,640)" to="(490,640)"/> <wire from="(250,150)" to="(250,190)"/> <wire from="(560,870)" to="(650,870)"/> <wire from="(140,640)" to="(150,640)"/> <wire from="(320,460)" to="(320,520)"/> <wire from="(390,370)" to="(390,430)"/> <wire from="(840,380)" to="(850,380)"/> <wire from="(840,620)" to="(850,620)"/> <wire from="(320,460)" to="(520,460)"/> <wire from="(150,770)" to="(150,830)"/> <wire from="(860,440)" to="(860,490)"/> <wire from="(220,290)" to="(220,550)"/> <wire from="(860,80)" to="(920,80)"/> <wire from="(860,720)" to="(920,720)"/> <wire from="(850,190)" to="(850,260)"/> <wire from="(80,830)" to="(130,830)"/> <wire from="(870,660)" to="(870,690)"/> <wire from="(840,160)" to="(880,160)"/> <wire from="(120,870)" to="(120,890)"/> <wire from="(80,600)" to="(120,600)"/> <wire from="(630,820)" to="(630,840)"/> <wire from="(510,110)" to="(740,110)"/> <wire from="(640,910)" to="(640,930)"/> <wire from="(710,820)" to="(710,840)"/> <wire from="(720,910)" to="(720,930)"/> <wire from="(840,180)" to="(860,180)"/> <wire from="(80,180)" to="(240,180)"/> <wire from="(330,310)" to="(350,310)"/> <wire from="(330,630)" to="(350,630)"/> <wire from="(130,880)" to="(130,920)"/> <wire from="(470,290)" to="(490,290)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,530)" to="(490,530)"/> <wire from="(470,610)" to="(490,610)"/> <wire from="(280,140)" to="(280,500)"/> <wire from="(740,860)" to="(830,860)"/> <wire from="(840,170)" to="(870,170)"/> <wire from="(200,320)" to="(200,560)"/> <wire from="(850,750)" to="(920,750)"/> <wire from="(650,430)" to="(650,800)"/> <wire from="(840,190)" to="(850,190)"/> <wire from="(80,860)" to="(150,860)"/> <wire from="(280,500)" to="(350,500)"/> <wire from="(140,890)" to="(140,950)"/> <comp lib="0" loc="(920,50)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(920,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,720)" name="Pin"> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(80,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> </comp> <comp lib="0" loc="(650,800)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(570,800)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(170,570)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,860)" name="Pin"> <a name="label" val="ADH3"/> </comp> <comp loc="(350,500)" name="PCH"/> <comp lib="0" loc="(820,460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,980)" name="Pin"> <a name="label" val="ADH7"/> </comp> <comp lib="0" loc="(740,860)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(820,200)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,330)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,690)" name="Pin"> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(920,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,630)" name="Pin"> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(510,220)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(830,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="PCS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> </comp> <comp loc="(350,140)" name="PCL"/> <comp lib="0" loc="(920,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(170,820)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(510,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(80,830)" name="Pin"> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(920,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,660)" name="Pin"> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(820,700)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(510,580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,510)" name="Pin"> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(310,690)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> </comp> <comp lib="0" loc="(920,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(650,890)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,950)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(920,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> </comp> <comp lib="0" loc="(920,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,890)" name="Pin"> <a name="label" val="ADH4"/> </comp> <comp lib="0" loc="(80,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> </comp> <comp lib="0" loc="(80,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#1/PC"/> </comp> <comp lib="0" loc="(80,770)" name="Pin"> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(920,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(510,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,890)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> </comp> <comp lib="0" loc="(80,920)" name="Pin"> <a name="label" val="ADH5"/> </comp> <comp lib="0" loc="(80,950)" name="Pin"> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(920,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="16"/> <a name="tristate" val="false"/> <a name="label" val="PC_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,800)" name="Pin"> <a name="label" val="ADH1"/> </comp> </circuit> <circuit name="ABL_BIT"> <a name="circuit" val="ABL_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="60" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="43">ABL_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="64">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="94">ADL/ABL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="104">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="117" y="73">Ax</text> <circ-port height="8" pin="80,50" width="8" x="46" y="56"/> <circ-port height="8" pin="80,90" width="8" x="46" y="66"/> <circ-port height="8" pin="80,160" width="8" x="46" y="86"/> <circ-port height="8" pin="80,220" width="8" x="46" y="96"/> <circ-port height="10" pin="350,180" width="10" x="125" y="65"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(290,180)" to="(350,180)"/> <wire from="(80,160)" to="(140,160)"/> <wire from="(80,50)" to="(140,50)"/> <wire from="(230,120)" to="(230,160)"/> <wire from="(230,180)" to="(230,220)"/> <wire from="(180,220)" to="(230,220)"/> <wire from="(210,120)" to="(230,120)"/> <wire from="(230,180)" to="(250,180)"/> <wire from="(230,160)" to="(250,160)"/> <wire from="(80,220)" to="(160,220)"/> <wire from="(140,110)" to="(180,110)"/> <wire from="(140,130)" to="(180,130)"/> <wire from="(140,130)" to="(140,160)"/> <wire from="(140,50)" to="(140,110)"/> <comp lib="0" loc="(350,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,120)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(250,160)" name="DFF_Level"/> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ABL"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(80,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(106,94)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(180,220)" name="NOT Gate"> <a name="size" val="20"/> <a name="label" val="not1"/> </comp> <comp lib="0" loc="(80,220)" name="Pin"> <a name="label" val="ADLx"/> </comp> </circuit> <circuit name="ABH_BIT"> <a name="circuit" val="ABH_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="60" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="44">ABH_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="64">PHI1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="73">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="94">ADH/ABH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="104">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="118" y="73">Ax</text> <circ-port height="8" pin="80,50" width="8" x="46" y="56"/> <circ-port height="8" pin="80,90" width="8" x="46" y="66"/> <circ-port height="8" pin="80,160" width="8" x="46" y="86"/> <circ-port height="8" pin="80,220" width="8" x="46" y="96"/> <circ-port height="10" pin="350,180" width="10" x="125" y="65"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(290,180)" to="(350,180)"/> <wire from="(80,50)" to="(140,50)"/> <wire from="(80,160)" to="(140,160)"/> <wire from="(230,120)" to="(230,160)"/> <wire from="(230,180)" to="(230,220)"/> <wire from="(180,220)" to="(230,220)"/> <wire from="(210,120)" to="(230,120)"/> <wire from="(230,160)" to="(250,160)"/> <wire from="(230,180)" to="(250,180)"/> <wire from="(80,220)" to="(160,220)"/> <wire from="(140,110)" to="(180,110)"/> <wire from="(140,130)" to="(180,130)"/> <wire from="(140,130)" to="(140,160)"/> <wire from="(140,50)" to="(140,110)"/> <comp lib="6" loc="(106,94)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(210,120)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(180,220)" name="NOT Gate"> <a name="size" val="20"/> <a name="label" val="not1"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(80,220)" name="Pin"> <a name="label" val="ADHx"/> </comp> <comp lib="0" loc="(350,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Ax"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/ABH"/> </comp> <comp loc="(250,160)" name="DFF_Level"/> </circuit> <circuit name="PCL_EVEN_BIT"> <a name="circuit" val="PCL_EVEN_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCL_Even_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="114">PCL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="133">sout</text> <circ-port height="8" pin="90,60" width="8" x="46" y="56"/> <circ-port height="8" pin="90,110" width="8" x="46" y="76"/> <circ-port height="8" pin="90,180" width="8" x="46" y="96"/> <circ-port height="8" pin="90,210" width="8" x="46" y="106"/> <circ-port height="8" pin="90,240" width="8" x="46" y="116"/> <circ-port height="8" pin="90,270" width="8" x="46" y="126"/> <circ-port height="8" pin="90,310" width="8" x="46" y="146"/> <circ-port height="10" pin="600,160" width="10" x="125" y="65"/> <circ-port height="10" pin="600,110" width="10" x="125" y="85"/> <circ-port height="10" pin="600,250" width="10" x="125" y="115"/> <circ-port height="10" pin="600,420" width="10" x="85" y="155"/> <circ-port height="10" pin="600,450" width="10" x="105" y="155"/> <circ-port height="10" pin="600,290" width="10" x="125" y="125"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(220,70)" to="(540,70)"/> <wire from="(500,160)" to="(500,420)"/> <wire from="(160,330)" to="(160,400)"/> <wire from="(260,220)" to="(450,220)"/> <wire from="(550,110)" to="(600,110)"/> <wire from="(550,250)" to="(600,250)"/> <wire from="(90,60)" to="(340,60)"/> <wire from="(450,150)" to="(500,150)"/> <wire from="(220,70)" to="(220,270)"/> <wire from="(540,290)" to="(600,290)"/> <wire from="(190,470)" to="(240,470)"/> <wire from="(290,210)" to="(290,230)"/> <wire from="(260,220)" to="(260,240)"/> <wire from="(270,450)" to="(270,470)"/> <wire from="(550,250)" to="(550,530)"/> <wire from="(480,300)" to="(480,450)"/> <wire from="(250,180)" to="(250,260)"/> <wire from="(430,320)" to="(540,320)"/> <wire from="(210,90)" to="(210,240)"/> <wire from="(90,310)" to="(260,310)"/> <wire from="(120,330)" to="(160,330)"/> <wire from="(210,420)" to="(210,510)"/> <wire from="(310,290)" to="(310,320)"/> <wire from="(190,530)" to="(550,530)"/> <wire from="(250,260)" to="(290,260)"/> <wire from="(500,420)" to="(600,420)"/> <wire from="(310,320)" to="(350,320)"/> <wire from="(120,480)" to="(120,510)"/> <wire from="(390,320)" to="(430,320)"/> <wire from="(180,110)" to="(180,330)"/> <wire from="(390,300)" to="(480,300)"/> <wire from="(90,180)" to="(250,180)"/> <wire from="(320,190)" to="(410,190)"/> <wire from="(120,510)" to="(210,510)"/> <wire from="(510,130)" to="(540,130)"/> <wire from="(500,160)" to="(530,160)"/> <wire from="(210,510)" to="(430,510)"/> <wire from="(260,290)" to="(280,290)"/> <wire from="(160,330)" to="(180,330)"/> <wire from="(450,110)" to="(450,150)"/> <wire from="(510,90)" to="(510,130)"/> <wire from="(210,420)" to="(230,420)"/> <wire from="(300,240)" to="(310,240)"/> <wire from="(270,410)" to="(280,410)"/> <wire from="(340,300)" to="(350,300)"/> <wire from="(450,110)" to="(530,110)"/> <wire from="(90,210)" to="(290,210)"/> <wire from="(190,470)" to="(190,530)"/> <wire from="(90,270)" to="(220,270)"/> <wire from="(450,150)" to="(450,220)"/> <wire from="(340,60)" to="(340,130)"/> <wire from="(120,330)" to="(120,460)"/> <wire from="(550,160)" to="(600,160)"/> <wire from="(90,240)" to="(210,240)"/> <wire from="(500,150)" to="(500,160)"/> <wire from="(480,450)" to="(600,450)"/> <wire from="(280,410)" to="(280,430)"/> <wire from="(290,260)" to="(290,280)"/> <wire from="(260,290)" to="(260,310)"/> <wire from="(540,70)" to="(540,100)"/> <wire from="(540,290)" to="(540,320)"/> <wire from="(210,90)" to="(510,90)"/> <wire from="(540,130)" to="(540,150)"/> <wire from="(320,440)" to="(410,440)"/> <wire from="(320,150)" to="(350,150)"/> <wire from="(90,110)" to="(180,110)"/> <wire from="(270,450)" to="(290,450)"/> <wire from="(260,240)" to="(280,240)"/> <wire from="(390,150)" to="(410,150)"/> <wire from="(430,150)" to="(450,150)"/> <wire from="(320,150)" to="(320,190)"/> <wire from="(120,480)" to="(140,480)"/> <wire from="(120,460)" to="(140,460)"/> <wire from="(260,470)" to="(270,470)"/> <wire from="(280,430)" to="(290,430)"/> <wire from="(300,290)" to="(310,290)"/> <wire from="(340,130)" to="(350,130)"/> <wire from="(180,470)" to="(190,470)"/> <wire from="(310,240)" to="(310,290)"/> <wire from="(160,400)" to="(230,400)"/> <wire from="(430,320)" to="(430,510)"/> <wire from="(410,190)" to="(410,440)"/> <comp lib="0" loc="(600,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="sout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="label" val="ADLx"/> </comp> <comp lib="1" loc="(320,440)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,300)" name="Constant"/> <comp lib="1" loc="(300,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(180,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> </comp> <comp lib="1" loc="(270,410)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> </comp> <comp lib="1" loc="(260,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> </comp> <comp lib="0" loc="(600,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADLx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(600,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(350,130)" name="DFF_Posedge"> <a name="label" val="PCL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(430,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(600,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(300,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(600,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCLS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(600,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DBx"/> <a name="labelloc" val="east"/> </comp> <comp loc="(350,300)" name="DFF_Level"> <a name="label" val="PCLS"/> <a name="labelloc" val="south"/> </comp> </circuit> <circuit name="PCL_ODD_BIT"> <a name="circuit" val="PCL_ODD_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCL_Odd_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="114">PCL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,110" width="8" x="46" y="76"/> <circ-port height="8" pin="90,150" width="8" x="46" y="96"/> <circ-port height="8" pin="90,180" width="8" x="46" y="106"/> <circ-port height="8" pin="90,210" width="8" x="46" y="116"/> <circ-port height="8" pin="90,240" width="8" x="46" y="126"/> <circ-port height="8" pin="90,280" width="8" x="46" y="146"/> <circ-port height="10" pin="650,130" width="10" x="125" y="65"/> <circ-port height="10" pin="650,80" width="10" x="125" y="85"/> <circ-port height="10" pin="650,220" width="10" x="125" y="115"/> <circ-port height="10" pin="650,390" width="10" x="85" y="155"/> <circ-port height="10" pin="650,420" width="10" x="105" y="155"/> <circ-port height="10" pin="650,260" width="10" x="125" y="125"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(160,300)" to="(160,430)"/> <wire from="(430,120)" to="(490,120)"/> <wire from="(540,120)" to="(540,130)"/> <wire from="(380,30)" to="(380,100)"/> <wire from="(590,80)" to="(650,80)"/> <wire from="(590,220)" to="(650,220)"/> <wire from="(300,260)" to="(300,280)"/> <wire from="(320,380)" to="(320,400)"/> <wire from="(330,230)" to="(330,250)"/> <wire from="(580,260)" to="(580,290)"/> <wire from="(580,40)" to="(580,70)"/> <wire from="(250,60)" to="(550,60)"/> <wire from="(540,390)" to="(650,390)"/> <wire from="(580,100)" to="(580,120)"/> <wire from="(130,450)" to="(130,480)"/> <wire from="(90,30)" to="(380,30)"/> <wire from="(360,410)" to="(450,410)"/> <wire from="(360,120)" to="(390,120)"/> <wire from="(300,210)" to="(320,210)"/> <wire from="(310,420)" to="(330,420)"/> <wire from="(360,120)" to="(360,160)"/> <wire from="(160,430)" to="(180,430)"/> <wire from="(160,450)" to="(180,450)"/> <wire from="(90,280)" to="(300,280)"/> <wire from="(130,390)" to="(210,390)"/> <wire from="(300,440)" to="(310,440)"/> <wire from="(320,400)" to="(330,400)"/> <wire from="(340,260)" to="(350,260)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(130,450)" to="(140,450)"/> <wire from="(220,440)" to="(230,440)"/> <wire from="(520,420)" to="(650,420)"/> <wire from="(350,210)" to="(350,260)"/> <wire from="(470,290)" to="(470,480)"/> <wire from="(200,370)" to="(270,370)"/> <wire from="(450,160)" to="(450,410)"/> <wire from="(130,390)" to="(130,450)"/> <wire from="(90,110)" to="(220,110)"/> <wire from="(270,230)" to="(330,230)"/> <wire from="(260,40)" to="(580,40)"/> <wire from="(200,300)" to="(200,370)"/> <wire from="(300,170)" to="(490,170)"/> <wire from="(490,120)" to="(540,120)"/> <wire from="(260,40)" to="(260,240)"/> <wire from="(540,130)" to="(540,390)"/> <wire from="(230,440)" to="(280,440)"/> <wire from="(90,150)" to="(270,150)"/> <wire from="(590,130)" to="(650,130)"/> <wire from="(310,420)" to="(310,440)"/> <wire from="(330,180)" to="(330,200)"/> <wire from="(90,180)" to="(330,180)"/> <wire from="(590,220)" to="(590,500)"/> <wire from="(270,150)" to="(270,230)"/> <wire from="(470,290)" to="(580,290)"/> <wire from="(250,60)" to="(250,210)"/> <wire from="(90,240)" to="(260,240)"/> <wire from="(160,300)" to="(200,300)"/> <wire from="(230,500)" to="(590,500)"/> <wire from="(350,260)" to="(350,290)"/> <wire from="(230,390)" to="(270,390)"/> <wire from="(350,290)" to="(390,290)"/> <wire from="(520,270)" to="(520,420)"/> <wire from="(430,290)" to="(470,290)"/> <wire from="(430,270)" to="(520,270)"/> <wire from="(550,60)" to="(550,100)"/> <wire from="(90,210)" to="(250,210)"/> <wire from="(360,160)" to="(450,160)"/> <wire from="(300,260)" to="(320,260)"/> <wire from="(550,100)" to="(580,100)"/> <wire from="(540,130)" to="(570,130)"/> <wire from="(300,170)" to="(300,210)"/> <wire from="(130,480)" to="(470,480)"/> <wire from="(200,300)" to="(220,300)"/> <wire from="(490,80)" to="(490,120)"/> <wire from="(580,260)" to="(650,260)"/> <wire from="(310,380)" to="(320,380)"/> <wire from="(380,270)" to="(390,270)"/> <wire from="(340,210)" to="(350,210)"/> <wire from="(490,120)" to="(490,170)"/> <wire from="(490,80)" to="(570,80)"/> <wire from="(220,110)" to="(220,300)"/> <wire from="(230,440)" to="(230,500)"/> <comp lib="0" loc="(650,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCLS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(590,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(650,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DBx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> </comp> <comp lib="1" loc="(590,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> </comp> <comp lib="0" loc="(380,270)" name="Constant"/> <comp lib="1" loc="(340,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADLx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp loc="(390,270)" name="DFF_Level"> <a name="label" val="PCLS"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(160,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,410)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(650,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCL_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(220,440)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(390,100)" name="DFF_Posedge"> <a name="label" val="PCL"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(650,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="sout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="label" val="ADLx"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> </comp> <comp lib="1" loc="(300,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> </circuit> <circuit name="PCH_EVEN_BIT"> <a name="circuit" val="PCH_EVEN_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCH_Even_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="114">PCH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCH/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCH/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,110" width="8" x="46" y="76"/> <circ-port height="8" pin="90,150" width="8" x="46" y="96"/> <circ-port height="8" pin="90,180" width="8" x="46" y="106"/> <circ-port height="8" pin="90,210" width="8" x="46" y="116"/> <circ-port height="8" pin="90,240" width="8" x="46" y="126"/> <circ-port height="8" pin="90,280" width="8" x="46" y="146"/> <circ-port height="10" pin="650,130" width="10" x="125" y="65"/> <circ-port height="10" pin="650,80" width="10" x="125" y="85"/> <circ-port height="10" pin="650,220" width="10" x="125" y="115"/> <circ-port height="10" pin="650,390" width="10" x="85" y="155"/> <circ-port height="10" pin="650,420" width="10" x="105" y="155"/> <circ-port height="10" pin="650,260" width="10" x="125" y="125"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(160,300)" to="(160,430)"/> <wire from="(430,120)" to="(490,120)"/> <wire from="(540,120)" to="(540,130)"/> <wire from="(380,30)" to="(380,100)"/> <wire from="(590,80)" to="(650,80)"/> <wire from="(590,220)" to="(650,220)"/> <wire from="(300,260)" to="(300,280)"/> <wire from="(320,380)" to="(320,400)"/> <wire from="(330,230)" to="(330,250)"/> <wire from="(580,260)" to="(580,290)"/> <wire from="(580,40)" to="(580,70)"/> <wire from="(250,60)" to="(550,60)"/> <wire from="(540,390)" to="(650,390)"/> <wire from="(580,100)" to="(580,120)"/> <wire from="(130,450)" to="(130,480)"/> <wire from="(90,30)" to="(380,30)"/> <wire from="(360,410)" to="(450,410)"/> <wire from="(360,120)" to="(390,120)"/> <wire from="(300,210)" to="(320,210)"/> <wire from="(310,420)" to="(330,420)"/> <wire from="(360,120)" to="(360,160)"/> <wire from="(160,430)" to="(180,430)"/> <wire from="(160,450)" to="(180,450)"/> <wire from="(90,280)" to="(300,280)"/> <wire from="(130,390)" to="(210,390)"/> <wire from="(300,440)" to="(310,440)"/> <wire from="(320,400)" to="(330,400)"/> <wire from="(340,260)" to="(350,260)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(130,450)" to="(140,450)"/> <wire from="(220,440)" to="(230,440)"/> <wire from="(520,420)" to="(650,420)"/> <wire from="(350,210)" to="(350,260)"/> <wire from="(470,290)" to="(470,480)"/> <wire from="(200,370)" to="(270,370)"/> <wire from="(450,160)" to="(450,410)"/> <wire from="(130,390)" to="(130,450)"/> <wire from="(90,110)" to="(220,110)"/> <wire from="(270,230)" to="(330,230)"/> <wire from="(260,40)" to="(580,40)"/> <wire from="(200,300)" to="(200,370)"/> <wire from="(300,170)" to="(490,170)"/> <wire from="(490,120)" to="(540,120)"/> <wire from="(260,40)" to="(260,240)"/> <wire from="(540,130)" to="(540,390)"/> <wire from="(230,440)" to="(280,440)"/> <wire from="(590,130)" to="(650,130)"/> <wire from="(90,150)" to="(270,150)"/> <wire from="(310,420)" to="(310,440)"/> <wire from="(330,180)" to="(330,200)"/> <wire from="(590,220)" to="(590,500)"/> <wire from="(90,180)" to="(330,180)"/> <wire from="(270,150)" to="(270,230)"/> <wire from="(470,290)" to="(580,290)"/> <wire from="(250,60)" to="(250,210)"/> <wire from="(90,240)" to="(260,240)"/> <wire from="(160,300)" to="(200,300)"/> <wire from="(230,500)" to="(590,500)"/> <wire from="(350,260)" to="(350,290)"/> <wire from="(230,390)" to="(270,390)"/> <wire from="(350,290)" to="(390,290)"/> <wire from="(520,270)" to="(520,420)"/> <wire from="(430,290)" to="(470,290)"/> <wire from="(430,270)" to="(520,270)"/> <wire from="(550,60)" to="(550,100)"/> <wire from="(90,210)" to="(250,210)"/> <wire from="(360,160)" to="(450,160)"/> <wire from="(300,260)" to="(320,260)"/> <wire from="(550,100)" to="(580,100)"/> <wire from="(540,130)" to="(570,130)"/> <wire from="(300,170)" to="(300,210)"/> <wire from="(130,480)" to="(470,480)"/> <wire from="(200,300)" to="(220,300)"/> <wire from="(490,80)" to="(490,120)"/> <wire from="(580,260)" to="(650,260)"/> <wire from="(310,380)" to="(320,380)"/> <wire from="(380,270)" to="(390,270)"/> <wire from="(340,210)" to="(350,210)"/> <wire from="(490,120)" to="(490,170)"/> <wire from="(490,80)" to="(570,80)"/> <wire from="(220,110)" to="(220,300)"/> <wire from="(230,440)" to="(230,500)"/> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADHx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(300,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> </comp> <comp lib="1" loc="(590,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(310,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(590,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,410)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(220,440)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(340,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(340,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(390,270)" name="DFF_Level"> <a name="label" val="PCHS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> </comp> <comp lib="0" loc="(650,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DBx"/> <a name="labelloc" val="east"/> </comp> <comp loc="(390,100)" name="DFF_Posedge"> <a name="label" val="PCH"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(650,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="sout"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(650,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCHS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(230,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(380,270)" name="Constant"/> <comp lib="0" loc="(650,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="label" val="ADHx"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> </comp> </circuit> <circuit name="PCH_ODD_BIT"> <a name="circuit" val="PCH_ODD_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCH_Odd_Bit</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCH/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="114">PCH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADHx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCH/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-port height="8" pin="90,60" width="8" x="46" y="56"/> <circ-port height="8" pin="90,110" width="8" x="46" y="76"/> <circ-port height="8" pin="90,180" width="8" x="46" y="96"/> <circ-port height="8" pin="90,210" width="8" x="46" y="106"/> <circ-port height="8" pin="90,240" width="8" x="46" y="116"/> <circ-port height="8" pin="90,270" width="8" x="46" y="126"/> <circ-port height="8" pin="90,310" width="8" x="46" y="146"/> <circ-port height="10" pin="600,160" width="10" x="125" y="65"/> <circ-port height="10" pin="600,110" width="10" x="125" y="85"/> <circ-port height="10" pin="600,250" width="10" x="125" y="115"/> <circ-port height="10" pin="600,420" width="10" x="85" y="155"/> <circ-port height="10" pin="600,450" width="10" x="105" y="155"/> <circ-port height="10" pin="600,290" width="10" x="125" y="125"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(220,70)" to="(540,70)"/> <wire from="(500,160)" to="(500,420)"/> <wire from="(160,330)" to="(160,400)"/> <wire from="(260,220)" to="(450,220)"/> <wire from="(550,110)" to="(600,110)"/> <wire from="(550,250)" to="(600,250)"/> <wire from="(90,60)" to="(340,60)"/> <wire from="(450,150)" to="(500,150)"/> <wire from="(220,70)" to="(220,270)"/> <wire from="(540,290)" to="(600,290)"/> <wire from="(190,470)" to="(240,470)"/> <wire from="(290,210)" to="(290,230)"/> <wire from="(260,220)" to="(260,240)"/> <wire from="(270,450)" to="(270,470)"/> <wire from="(550,250)" to="(550,530)"/> <wire from="(480,300)" to="(480,450)"/> <wire from="(250,180)" to="(250,260)"/> <wire from="(430,320)" to="(540,320)"/> <wire from="(210,90)" to="(210,240)"/> <wire from="(90,310)" to="(260,310)"/> <wire from="(120,330)" to="(160,330)"/> <wire from="(210,420)" to="(210,510)"/> <wire from="(310,290)" to="(310,320)"/> <wire from="(190,530)" to="(550,530)"/> <wire from="(250,260)" to="(290,260)"/> <wire from="(500,420)" to="(600,420)"/> <wire from="(310,320)" to="(350,320)"/> <wire from="(120,480)" to="(120,510)"/> <wire from="(390,320)" to="(430,320)"/> <wire from="(180,110)" to="(180,330)"/> <wire from="(390,300)" to="(480,300)"/> <wire from="(90,180)" to="(250,180)"/> <wire from="(320,190)" to="(410,190)"/> <wire from="(120,510)" to="(210,510)"/> <wire from="(510,130)" to="(540,130)"/> <wire from="(500,160)" to="(530,160)"/> <wire from="(210,510)" to="(430,510)"/> <wire from="(260,290)" to="(280,290)"/> <wire from="(160,330)" to="(180,330)"/> <wire from="(450,110)" to="(450,150)"/> <wire from="(510,90)" to="(510,130)"/> <wire from="(210,420)" to="(230,420)"/> <wire from="(300,240)" to="(310,240)"/> <wire from="(270,410)" to="(280,410)"/> <wire from="(340,300)" to="(350,300)"/> <wire from="(450,110)" to="(530,110)"/> <wire from="(90,210)" to="(290,210)"/> <wire from="(190,470)" to="(190,530)"/> <wire from="(90,270)" to="(220,270)"/> <wire from="(450,150)" to="(450,220)"/> <wire from="(340,60)" to="(340,130)"/> <wire from="(120,330)" to="(120,460)"/> <wire from="(550,160)" to="(600,160)"/> <wire from="(90,240)" to="(210,240)"/> <wire from="(500,150)" to="(500,160)"/> <wire from="(480,450)" to="(600,450)"/> <wire from="(280,410)" to="(280,430)"/> <wire from="(290,260)" to="(290,280)"/> <wire from="(260,290)" to="(260,310)"/> <wire from="(540,70)" to="(540,100)"/> <wire from="(540,290)" to="(540,320)"/> <wire from="(210,90)" to="(510,90)"/> <wire from="(540,130)" to="(540,150)"/> <wire from="(320,440)" to="(410,440)"/> <wire from="(320,150)" to="(350,150)"/> <wire from="(90,110)" to="(180,110)"/> <wire from="(270,450)" to="(290,450)"/> <wire from="(260,240)" to="(280,240)"/> <wire from="(390,150)" to="(410,150)"/> <wire from="(430,150)" to="(450,150)"/> <wire from="(320,150)" to="(320,190)"/> <wire from="(120,480)" to="(140,480)"/> <wire from="(120,460)" to="(140,460)"/> <wire from="(260,470)" to="(270,470)"/> <wire from="(280,430)" to="(290,430)"/> <wire from="(300,290)" to="(310,290)"/> <wire from="(340,130)" to="(350,130)"/> <wire from="(180,470)" to="(190,470)"/> <wire from="(310,240)" to="(310,290)"/> <wire from="(160,400)" to="(230,400)"/> <wire from="(430,320)" to="(430,510)"/> <wire from="(410,190)" to="(410,440)"/> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="1" loc="(300,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(600,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCH_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(350,130)" name="DFF_Posedge"> <a name="label" val="PCH"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(260,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADHx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="label" val="ADHx"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp loc="(350,300)" name="DFF_Level"> <a name="label" val="PCHS"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> </comp> <comp lib="0" loc="(600,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DBx"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(320,440)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> </comp> <comp lib="0" loc="(600,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCHS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(550,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(550,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> </comp> <comp lib="0" loc="(600,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="sout"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,300)" name="Constant"/> <comp lib="1" loc="(300,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,410)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="PCL"> <a name="circuit" val="PCL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="245" stroke="#000000" stroke-width="2" width="120" x="40" y="35"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="28">PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="53">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="57" y="73">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="93">ADL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="104">PCL/PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">PCL/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="124">PCL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="200">ADL In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="86">ADL Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="136" y="176">DB Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="140" y="243">PCLC</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="269">PCL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="121" y="269">PCLS</text> <circ-port height="8" pin="90,30" width="8" x="36" y="46"/> <circ-port height="8" pin="90,110" width="8" x="36" y="66"/> <circ-port height="8" pin="90,180" width="8" x="36" y="86"/> <circ-port height="8" pin="90,210" width="8" x="36" y="96"/> <circ-port height="8" pin="90,240" width="8" x="36" y="106"/> <circ-port height="8" pin="90,270" width="8" x="36" y="116"/> <circ-port height="8" pin="90,580" width="8" x="36" y="156"/> <circ-port height="8" pin="90,610" width="8" x="36" y="166"/> <circ-port height="8" pin="90,640" width="8" x="36" y="176"/> <circ-port height="8" pin="90,670" width="8" x="36" y="186"/> <circ-port height="8" pin="90,700" width="8" x="36" y="196"/> <circ-port height="8" pin="90,730" width="8" x="36" y="206"/> <circ-port height="8" pin="90,760" width="8" x="36" y="216"/> <circ-port height="8" pin="90,790" width="8" x="36" y="226"/> <circ-port height="10" pin="740,300" width="10" x="155" y="45"/> <circ-port height="10" pin="740,330" width="10" x="155" y="55"/> <circ-port height="10" pin="740,360" width="10" x="155" y="65"/> <circ-port height="10" pin="740,390" width="10" x="155" y="75"/> <circ-port height="10" pin="740,420" width="10" x="155" y="85"/> <circ-port height="10" pin="740,450" width="10" x="155" y="95"/> <circ-port height="10" pin="740,480" width="10" x="155" y="105"/> <circ-port height="10" pin="740,510" width="10" x="155" y="115"/> <circ-port height="10" pin="740,670" width="10" x="155" y="135"/> <circ-port height="10" pin="740,700" width="10" x="155" y="145"/> <circ-port height="10" pin="740,730" width="10" x="155" y="155"/> <circ-port height="10" pin="740,760" width="10" x="155" y="165"/> <circ-port height="10" pin="740,790" width="10" x="155" y="175"/> <circ-port height="10" pin="740,820" width="10" x="155" y="185"/> <circ-port height="10" pin="740,850" width="10" x="155" y="195"/> <circ-port height="10" pin="740,880" width="10" x="155" y="205"/> <circ-port height="10" pin="900,1220" width="10" x="155" y="235"/> <circ-port height="10" pin="770,70" width="10" x="75" y="275"/> <circ-port height="10" pin="770,130" width="10" x="115" y="275"/> <circ-anchor facing="east" height="6" width="6" x="37" y="47"/> </appear> <wire from="(110,1350)" to="(300,1350)"/> <wire from="(240,630)" to="(300,630)"/> <wire from="(340,1040)" to="(460,1040)"/> <wire from="(680,670)" to="(740,670)"/> <wire from="(360,680)" to="(360,690)"/> <wire from="(390,980)" to="(390,1060)"/> <wire from="(280,1230)" to="(390,1230)"/> <wire from="(130,730)" to="(130,1010)"/> <wire from="(340,340)" to="(340,370)"/> <wire from="(480,820)" to="(480,1230)"/> <wire from="(200,1320)" to="(300,1320)"/> <wire from="(380,1160)" to="(600,1160)"/> <wire from="(360,350)" to="(520,350)"/> <wire from="(270,1330)" to="(300,1330)"/> <wire from="(280,1110)" to="(300,1110)"/> <wire from="(280,790)" to="(300,790)"/> <wire from="(570,1190)" to="(790,1190)"/> <wire from="(290,750)" to="(290,920)"/> <wire from="(380,980)" to="(390,980)"/> <wire from="(670,700)" to="(740,700)"/> <wire from="(290,410)" to="(300,410)"/> <wire from="(90,210)" to="(100,210)"/> <wire from="(110,620)" to="(180,620)"/> <wire from="(710,1210)" to="(790,1210)"/> <wire from="(380,140)" to="(580,140)"/> <wire from="(490,650)" to="(490,1220)"/> <wire from="(380,1100)" to="(630,1100)"/> <wire from="(650,780)" to="(650,790)"/> <wire from="(680,850)" to="(680,1120)"/> <wire from="(530,520)" to="(530,1430)"/> <wire from="(240,120)" to="(300,120)"/> <wire from="(380,310)" to="(570,310)"/> <wire from="(600,1250)" to="(790,1250)"/> <wire from="(700,1260)" to="(700,1330)"/> <wire from="(120,1180)" to="(300,1180)"/> <wire from="(360,170)" to="(360,180)"/> <wire from="(90,700)" to="(140,700)"/> <wire from="(340,1190)" to="(340,1210)"/> <wire from="(600,1160)" to="(600,1250)"/> <wire from="(390,470)" to="(390,550)"/> <wire from="(280,720)" to="(390,720)"/> <wire from="(380,950)" to="(670,950)"/> <wire from="(560,1030)" to="(560,1430)"/> <wire from="(500,480)" to="(500,1210)"/> <wire from="(200,810)" to="(300,810)"/> <wire from="(200,90)" to="(300,90)"/> <wire from="(270,820)" to="(300,820)"/> <wire from="(580,1180)" to="(790,1180)"/> <wire from="(380,420)" to="(590,420)"/> <wire from="(280,600)" to="(300,600)"/> <wire from="(360,1200)" to="(570,1200)"/> <wire from="(280,280)" to="(300,280)"/> <wire from="(650,790)" to="(740,790)"/> <wire from="(290,240)" to="(290,410)"/> <wire from="(290,1260)" to="(300,1260)"/> <wire from="(380,470)" to="(390,470)"/> <wire from="(280,890)" to="(280,940)"/> <wire from="(90,180)" to="(100,180)"/> <wire from="(660,730)" to="(740,730)"/> <wire from="(180,500)" to="(180,620)"/> <wire from="(340,1210)" to="(470,1210)"/> <wire from="(200,20)" to="(720,20)"/> <wire from="(240,970)" to="(300,970)"/> <wire from="(600,390)" to="(600,590)"/> <wire from="(700,1200)" to="(700,1210)"/> <wire from="(710,1210)" to="(710,1220)"/> <wire from="(180,500)" to="(300,500)"/> <wire from="(150,90)" to="(200,90)"/> <wire from="(480,1380)" to="(480,1390)"/> <wire from="(680,850)" to="(740,850)"/> <wire from="(140,700)" to="(140,840)"/> <wire from="(450,870)" to="(450,1390)"/> <wire from="(360,1020)" to="(360,1030)"/> <wire from="(730,1220)" to="(790,1220)"/> <wire from="(340,680)" to="(340,700)"/> <wire from="(360,520)" to="(530,520)"/> <wire from="(130,1010)" to="(300,1010)"/> <wire from="(150,90)" to="(150,110)"/> <wire from="(280,210)" to="(390,210)"/> <wire from="(730,1000)" to="(730,1220)"/> <wire from="(630,480)" to="(740,480)"/> <wire from="(200,300)" to="(300,300)"/> <wire from="(340,530)" to="(430,530)"/> <wire from="(750,130)" to="(750,170)"/> <wire from="(270,310)" to="(300,310)"/> <wire from="(280,1130)" to="(300,1130)"/> <wire from="(620,450)" to="(620,930)"/> <wire from="(650,760)" to="(740,760)"/> <wire from="(290,1090)" to="(290,1260)"/> <wire from="(640,510)" to="(640,1270)"/> <wire from="(90,610)" to="(170,610)"/> <wire from="(290,750)" to="(300,750)"/> <wire from="(740,70)" to="(740,190)"/> <wire from="(590,1450)" to="(980,1450)"/> <wire from="(380,780)" to="(650,780)"/> <wire from="(280,380)" to="(280,430)"/> <wire from="(90,30)" to="(290,30)"/> <wire from="(380,1270)" to="(640,1270)"/> <wire from="(600,390)" to="(740,390)"/> <wire from="(240,460)" to="(300,460)"/> <wire from="(360,510)" to="(360,520)"/> <wire from="(340,170)" to="(340,190)"/> <wire from="(700,300)" to="(740,300)"/> <wire from="(380,1120)" to="(680,1120)"/> <wire from="(390,810)" to="(390,890)"/> <wire from="(280,1060)" to="(390,1060)"/> <wire from="(90,730)" to="(130,730)"/> <wire from="(200,1150)" to="(300,1150)"/> <wire from="(380,590)" to="(600,590)"/> <wire from="(360,1370)" to="(580,1370)"/> <wire from="(140,840)" to="(300,840)"/> <wire from="(270,1160)" to="(300,1160)"/> <wire from="(750,130)" to="(770,130)"/> <wire from="(280,940)" to="(300,940)"/> <wire from="(280,620)" to="(300,620)"/> <wire from="(700,1260)" to="(790,1260)"/> <wire from="(290,580)" to="(290,750)"/> <wire from="(380,810)" to="(390,810)"/> <wire from="(520,350)" to="(520,1430)"/> <wire from="(500,1210)" to="(700,1210)"/> <wire from="(340,1380)" to="(480,1380)"/> <wire from="(290,240)" to="(300,240)"/> <wire from="(550,860)" to="(550,1430)"/> <wire from="(590,990)" to="(590,1240)"/> <wire from="(580,1370)" to="(580,1430)"/> <wire from="(280,1230)" to="(280,1280)"/> <wire from="(160,160)" to="(300,160)"/> <wire from="(570,310)" to="(570,1190)"/> <wire from="(240,1310)" to="(300,1310)"/> <wire from="(690,330)" to="(740,330)"/> <wire from="(360,690)" to="(540,690)"/> <wire from="(360,1360)" to="(360,1370)"/> <wire from="(380,480)" to="(500,480)"/> <wire from="(340,1020)" to="(340,1040)"/> <wire from="(740,190)" to="(970,190)"/> <wire from="(380,650)" to="(490,650)"/> <wire from="(390,300)" to="(390,380)"/> <wire from="(280,550)" to="(390,550)"/> <wire from="(580,140)" to="(580,1180)"/> <wire from="(340,700)" to="(440,700)"/> <wire from="(170,330)" to="(170,610)"/> <wire from="(380,820)" to="(480,820)"/> <wire from="(200,640)" to="(300,640)"/> <wire from="(270,650)" to="(300,650)"/> <wire from="(280,430)" to="(300,430)"/> <wire from="(280,110)" to="(300,110)"/> <wire from="(490,1410)" to="(970,1410)"/> <wire from="(90,640)" to="(110,640)"/> <wire from="(290,70)" to="(290,240)"/> <wire from="(670,820)" to="(740,820)"/> <wire from="(290,1090)" to="(300,1090)"/> <wire from="(110,790)" to="(110,1350)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(470,1210)" to="(470,1390)"/> <wire from="(440,700)" to="(440,1390)"/> <wire from="(280,720)" to="(280,770)"/> <wire from="(410,190)" to="(410,1390)"/> <wire from="(240,800)" to="(300,800)"/> <wire from="(620,450)" to="(740,450)"/> <wire from="(480,1230)" to="(790,1230)"/> <wire from="(380,80)" to="(700,80)"/> <wire from="(670,820)" to="(670,950)"/> <wire from="(970,190)" to="(970,1410)"/> <wire from="(380,250)" to="(690,250)"/> <wire from="(380,1290)" to="(690,1290)"/> <wire from="(360,850)" to="(360,860)"/> <wire from="(690,880)" to="(690,1290)"/> <wire from="(380,100)" to="(680,100)"/> <wire from="(340,510)" to="(340,530)"/> <wire from="(750,170)" to="(980,170)"/> <wire from="(700,80)" to="(700,300)"/> <wire from="(390,1150)" to="(390,1230)"/> <wire from="(380,270)" to="(670,270)"/> <wire from="(690,250)" to="(690,330)"/> <wire from="(380,760)" to="(610,760)"/> <wire from="(200,130)" to="(300,130)"/> <wire from="(590,360)" to="(740,360)"/> <wire from="(90,760)" to="(120,760)"/> <wire from="(270,140)" to="(300,140)"/> <wire from="(280,1280)" to="(300,1280)"/> <wire from="(280,960)" to="(300,960)"/> <wire from="(700,1200)" to="(790,1200)"/> <wire from="(290,920)" to="(290,1090)"/> <wire from="(380,440)" to="(660,440)"/> <wire from="(870,1220)" to="(900,1220)"/> <wire from="(380,1150)" to="(390,1150)"/> <wire from="(590,1240)" to="(790,1240)"/> <wire from="(290,580)" to="(300,580)"/> <wire from="(380,610)" to="(650,610)"/> <wire from="(590,360)" to="(590,420)"/> <wire from="(340,370)" to="(420,370)"/> <wire from="(280,210)" to="(280,260)"/> <wire from="(720,20)" to="(720,260)"/> <wire from="(380,1330)" to="(700,1330)"/> <wire from="(360,860)" to="(550,860)"/> <wire from="(240,290)" to="(300,290)"/> <wire from="(360,340)" to="(360,350)"/> <wire from="(340,1360)" to="(340,1380)"/> <wire from="(390,640)" to="(390,720)"/> <wire from="(280,890)" to="(390,890)"/> <wire from="(340,870)" to="(450,870)"/> <wire from="(650,610)" to="(650,760)"/> <wire from="(610,420)" to="(610,760)"/> <wire from="(200,980)" to="(300,980)"/> <wire from="(670,270)" to="(670,700)"/> <wire from="(630,480)" to="(630,1100)"/> <wire from="(510,180)" to="(510,1430)"/> <wire from="(160,160)" to="(160,580)"/> <wire from="(120,760)" to="(120,1180)"/> <wire from="(270,990)" to="(300,990)"/> <wire from="(280,770)" to="(300,770)"/> <wire from="(660,440)" to="(660,730)"/> <wire from="(280,450)" to="(300,450)"/> <wire from="(380,990)" to="(590,990)"/> <wire from="(830,260)" to="(830,1000)"/> <wire from="(290,30)" to="(290,70)"/> <wire from="(540,690)" to="(540,1430)"/> <wire from="(290,410)" to="(290,580)"/> <wire from="(360,180)" to="(510,180)"/> <wire from="(570,1200)" to="(570,1430)"/> <wire from="(380,640)" to="(390,640)"/> <wire from="(680,100)" to="(680,670)"/> <wire from="(290,70)" to="(300,70)"/> <wire from="(280,1060)" to="(280,1110)"/> <wire from="(90,270)" to="(100,270)"/> <wire from="(420,370)" to="(420,1390)"/> <wire from="(90,580)" to="(160,580)"/> <wire from="(170,330)" to="(300,330)"/> <wire from="(340,190)" to="(410,190)"/> <wire from="(240,1140)" to="(300,1140)"/> <wire from="(690,880)" to="(740,880)"/> <wire from="(90,110)" to="(150,110)"/> <wire from="(200,20)" to="(200,90)"/> <wire from="(360,1190)" to="(360,1200)"/> <wire from="(980,170)" to="(980,1450)"/> <wire from="(340,850)" to="(340,870)"/> <wire from="(640,510)" to="(740,510)"/> <wire from="(390,130)" to="(390,210)"/> <wire from="(110,620)" to="(110,640)"/> <wire from="(380,930)" to="(620,930)"/> <wire from="(280,380)" to="(390,380)"/> <wire from="(730,1000)" to="(830,1000)"/> <wire from="(460,1040)" to="(460,1390)"/> <wire from="(720,260)" to="(830,260)"/> <wire from="(430,530)" to="(430,1390)"/> <wire from="(200,470)" to="(300,470)"/> <wire from="(270,480)" to="(300,480)"/> <wire from="(280,260)" to="(300,260)"/> <wire from="(280,1300)" to="(300,1300)"/> <wire from="(740,70)" to="(770,70)"/> <wire from="(490,1220)" to="(710,1220)"/> <wire from="(90,790)" to="(110,790)"/> <wire from="(90,670)" to="(300,670)"/> <wire from="(290,920)" to="(300,920)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(280,550)" to="(280,600)"/> <wire from="(610,420)" to="(740,420)"/> <wire from="(90,240)" to="(100,240)"/> <wire from="(360,1030)" to="(560,1030)"/> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(590,1450)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(90,790)" name="Pin"> <a name="label" val="ADL7"/> </comp> <comp loc="(300,580)" name="PCL_ODD_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(740,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,730)" name="Pin"> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(200,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(300,410)" name="PCL_EVEN_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(240,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(490,1410)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(240,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(100,180)" name="Tunnel"> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(740,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(270,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(740,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(300,1090)" name="PCL_EVEN_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(270,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,670)" name="Pin"> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(90,640)" name="Pin"> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(240,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(900,1220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCLC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(770,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="PCLS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1260)" name="PCL_ODD_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(300,750)" name="PCL_EVEN_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(240,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(740,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,240)" name="PCL_ODD_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,70)" name="PCL_EVEN_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(740,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,610)" name="Pin"> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(100,270)" name="Tunnel"> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,700)" name="Pin"> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(100,210)" name="Tunnel"> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/DB"/> </comp> <comp lib="0" loc="(740,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(200,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(200,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(770,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="PCL_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,240)" name="Tunnel"> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/ADL"/> </comp> <comp lib="0" loc="(240,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(740,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(740,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(270,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,760)" name="Pin"> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(240,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(740,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,920)" name="PCL_ODD_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/PCL"/> </comp> <comp lib="1" loc="(870,1220)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="0" loc="(740,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(200,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL/ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL/PCL"/> </comp> </circuit> <circuit name="PCH"> <a name="circuit" val="PCH"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="245" stroke="#000000" stroke-width="2" width="120" x="40" y="35"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="28">PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="136" y="176">DB Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="200">ADH In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="86">ADH Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="104">PCH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="124">PCH/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="53">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="57" y="73">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="93">ADH/PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">PCH/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="269">PCH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="121" y="269">PCHS</text> <circ-port height="8" pin="90,30" width="8" x="36" y="46"/> <circ-port height="8" pin="90,110" width="8" x="36" y="66"/> <circ-port height="8" pin="90,180" width="8" x="36" y="86"/> <circ-port height="8" pin="90,210" width="8" x="36" y="96"/> <circ-port height="8" pin="90,240" width="8" x="36" y="106"/> <circ-port height="8" pin="90,270" width="8" x="36" y="116"/> <circ-port height="8" pin="90,390" width="8" x="36" y="156"/> <circ-port height="8" pin="90,420" width="8" x="36" y="166"/> <circ-port height="8" pin="90,450" width="8" x="36" y="176"/> <circ-port height="8" pin="90,480" width="8" x="36" y="186"/> <circ-port height="8" pin="90,510" width="8" x="36" y="196"/> <circ-port height="8" pin="90,540" width="8" x="36" y="206"/> <circ-port height="8" pin="90,570" width="8" x="36" y="216"/> <circ-port height="8" pin="90,600" width="8" x="36" y="226"/> <circ-port height="10" pin="940,260" width="10" x="155" y="45"/> <circ-port height="10" pin="940,290" width="10" x="155" y="55"/> <circ-port height="10" pin="940,320" width="10" x="155" y="65"/> <circ-port height="10" pin="940,350" width="10" x="155" y="75"/> <circ-port height="10" pin="940,380" width="10" x="155" y="85"/> <circ-port height="10" pin="940,410" width="10" x="155" y="95"/> <circ-port height="10" pin="940,440" width="10" x="155" y="105"/> <circ-port height="10" pin="940,470" width="10" x="155" y="115"/> <circ-port height="10" pin="940,570" width="10" x="155" y="135"/> <circ-port height="10" pin="940,600" width="10" x="155" y="145"/> <circ-port height="10" pin="940,630" width="10" x="155" y="155"/> <circ-port height="10" pin="940,660" width="10" x="155" y="165"/> <circ-port height="10" pin="940,690" width="10" x="155" y="175"/> <circ-port height="10" pin="940,720" width="10" x="155" y="185"/> <circ-port height="10" pin="940,750" width="10" x="155" y="195"/> <circ-port height="10" pin="940,780" width="10" x="155" y="205"/> <circ-port height="10" pin="710,1430" width="10" x="75" y="275"/> <circ-port height="10" pin="880,1430" width="10" x="115" y="275"/> <circ-anchor facing="east" height="6" width="6" x="37" y="47"/> </appear> <wire from="(380,1020)" to="(760,1020)"/> <wire from="(360,390)" to="(610,390)"/> <wire from="(170,40)" to="(170,110)"/> <wire from="(920,280)" to="(920,290)"/> <wire from="(90,480)" to="(150,480)"/> <wire from="(880,630)" to="(940,630)"/> <wire from="(150,480)" to="(150,680)"/> <wire from="(400,140)" to="(900,140)"/> <wire from="(400,1260)" to="(900,1260)"/> <wire from="(110,600)" to="(110,1320)"/> <wire from="(360,1190)" to="(660,1190)"/> <wire from="(780,1340)" to="(780,1370)"/> <wire from="(110,110)" to="(110,130)"/> <wire from="(480,650)" to="(520,650)"/> <wire from="(100,290)" to="(100,390)"/> <wire from="(880,460)" to="(880,630)"/> <wire from="(90,600)" to="(110,600)"/> <wire from="(790,380)" to="(790,760)"/> <wire from="(310,270)" to="(320,270)"/> <wire from="(310,110)" to="(320,110)"/> <wire from="(310,430)" to="(320,430)"/> <wire from="(310,590)" to="(320,590)"/> <wire from="(310,1230)" to="(320,1230)"/> <wire from="(310,1070)" to="(320,1070)"/> <wire from="(310,910)" to="(320,910)"/> <wire from="(310,750)" to="(320,750)"/> <wire from="(770,320)" to="(770,440)"/> <wire from="(400,500)" to="(480,500)"/> <wire from="(90,210)" to="(100,210)"/> <wire from="(870,660)" to="(940,660)"/> <wire from="(800,410)" to="(940,410)"/> <wire from="(120,360)" to="(320,360)"/> <wire from="(120,1160)" to="(320,1160)"/> <wire from="(400,760)" to="(790,760)"/> <wire from="(600,230)" to="(600,1370)"/> <wire from="(120,360)" to="(120,420)"/> <wire from="(410,330)" to="(410,400)"/> <wire from="(410,170)" to="(410,240)"/> <wire from="(410,810)" to="(410,880)"/> <wire from="(410,1130)" to="(410,1200)"/> <wire from="(410,490)" to="(410,560)"/> <wire from="(410,970)" to="(410,1040)"/> <wire from="(810,440)" to="(810,1080)"/> <wire from="(200,200)" to="(200,290)"/> <wire from="(610,390)" to="(610,1370)"/> <wire from="(770,320)" to="(940,320)"/> <wire from="(160,520)" to="(320,520)"/> <wire from="(700,1390)" to="(700,1430)"/> <wire from="(380,540)" to="(730,540)"/> <wire from="(490,640)" to="(520,640)"/> <wire from="(490,340)" to="(490,640)"/> <wire from="(400,780)" to="(870,780)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(910,260)" to="(940,260)"/> <wire from="(400,170)" to="(410,170)"/> <wire from="(400,330)" to="(410,330)"/> <wire from="(400,810)" to="(410,810)"/> <wire from="(400,970)" to="(410,970)"/> <wire from="(400,1130)" to="(410,1130)"/> <wire from="(400,490)" to="(410,490)"/> <wire from="(380,1340)" to="(780,1340)"/> <wire from="(90,180)" to="(100,180)"/> <wire from="(360,710)" to="(630,710)"/> <wire from="(620,550)" to="(620,1370)"/> <wire from="(700,1430)" to="(710,1430)"/> <wire from="(890,750)" to="(940,750)"/> <wire from="(160,450)" to="(160,520)"/> <wire from="(200,200)" to="(320,200)"/> <wire from="(120,570)" to="(120,1160)"/> <wire from="(90,510)" to="(140,510)"/> <wire from="(590,640)" to="(590,720)"/> <wire from="(400,180)" to="(500,180)"/> <wire from="(630,710)" to="(630,1370)"/> <wire from="(400,1080)" to="(810,1080)"/> <wire from="(900,140)" to="(900,570)"/> <wire from="(500,630)" to="(520,630)"/> <wire from="(110,1320)" to="(320,1320)"/> <wire from="(300,240)" to="(300,290)"/> <wire from="(300,400)" to="(300,450)"/> <wire from="(300,880)" to="(300,930)"/> <wire from="(300,720)" to="(300,770)"/> <wire from="(300,560)" to="(300,610)"/> <wire from="(300,1040)" to="(300,1090)"/> <wire from="(300,1200)" to="(300,1250)"/> <wire from="(90,390)" to="(100,390)"/> <wire from="(790,1390)" to="(870,1390)"/> <wire from="(640,870)" to="(640,1370)"/> <wire from="(580,640)" to="(590,640)"/> <wire from="(260,800)" to="(320,800)"/> <wire from="(260,1280)" to="(320,1280)"/> <wire from="(260,960)" to="(320,960)"/> <wire from="(260,1120)" to="(320,1120)"/> <wire from="(260,640)" to="(320,640)"/> <wire from="(260,480)" to="(320,480)"/> <wire from="(260,160)" to="(320,160)"/> <wire from="(260,320)" to="(320,320)"/> <wire from="(400,120)" to="(910,120)"/> <wire from="(820,470)" to="(940,470)"/> <wire from="(380,860)" to="(750,860)"/> <wire from="(380,530)" to="(380,540)"/> <wire from="(380,1010)" to="(380,1020)"/> <wire from="(380,1170)" to="(380,1180)"/> <wire from="(380,1330)" to="(380,1340)"/> <wire from="(380,690)" to="(380,700)"/> <wire from="(380,850)" to="(380,860)"/> <wire from="(430,570)" to="(870,570)"/> <wire from="(380,210)" to="(380,220)"/> <wire from="(380,370)" to="(380,380)"/> <wire from="(400,300)" to="(890,300)"/> <wire from="(400,1100)" to="(890,1100)"/> <wire from="(880,720)" to="(880,940)"/> <wire from="(150,680)" to="(320,680)"/> <wire from="(360,230)" to="(600,230)"/> <wire from="(870,570)" to="(870,660)"/> <wire from="(360,1030)" to="(650,1030)"/> <wire from="(650,1030)" to="(650,1370)"/> <wire from="(90,420)" to="(120,420)"/> <wire from="(790,380)" to="(940,380)"/> <wire from="(90,110)" to="(110,110)"/> <wire from="(170,40)" to="(510,40)"/> <wire from="(900,780)" to="(900,1260)"/> <wire from="(510,620)" to="(520,620)"/> <wire from="(660,1190)" to="(660,1370)"/> <wire from="(400,600)" to="(780,600)"/> <wire from="(400,660)" to="(520,660)"/> <wire from="(130,540)" to="(130,1000)"/> <wire from="(480,500)" to="(480,650)"/> <wire from="(90,540)" to="(130,540)"/> <wire from="(670,1350)" to="(670,1370)"/> <wire from="(400,620)" to="(430,620)"/> <wire from="(90,30)" to="(310,30)"/> <wire from="(870,1390)" to="(870,1430)"/> <wire from="(680,1390)" to="(700,1390)"/> <wire from="(300,290)" to="(320,290)"/> <wire from="(300,450)" to="(320,450)"/> <wire from="(300,770)" to="(320,770)"/> <wire from="(300,610)" to="(320,610)"/> <wire from="(300,930)" to="(320,930)"/> <wire from="(300,1090)" to="(320,1090)"/> <wire from="(300,1250)" to="(320,1250)"/> <wire from="(380,380)" to="(720,380)"/> <wire from="(780,350)" to="(780,600)"/> <wire from="(800,410)" to="(800,920)"/> <wire from="(710,220)" to="(710,1370)"/> <wire from="(360,550)" to="(620,550)"/> <wire from="(870,1430)" to="(880,1430)"/> <wire from="(380,1180)" to="(770,1180)"/> <wire from="(880,720)" to="(940,720)"/> <wire from="(360,1350)" to="(670,1350)"/> <wire from="(140,840)" to="(320,840)"/> <wire from="(820,470)" to="(820,1240)"/> <wire from="(360,210)" to="(360,230)"/> <wire from="(360,370)" to="(360,390)"/> <wire from="(360,530)" to="(360,550)"/> <wire from="(360,850)" to="(360,870)"/> <wire from="(360,1010)" to="(360,1030)"/> <wire from="(360,690)" to="(360,710)"/> <wire from="(360,1170)" to="(360,1190)"/> <wire from="(360,1330)" to="(360,1350)"/> <wire from="(310,30)" to="(310,110)"/> <wire from="(720,380)" to="(720,1370)"/> <wire from="(400,340)" to="(490,340)"/> <wire from="(890,300)" to="(890,600)"/> <wire from="(150,110)" to="(170,110)"/> <wire from="(810,440)" to="(940,440)"/> <wire from="(730,540)" to="(730,1370)"/> <wire from="(400,920)" to="(800,920)"/> <wire from="(90,450)" to="(160,450)"/> <wire from="(510,40)" to="(510,620)"/> <wire from="(140,510)" to="(140,840)"/> <wire from="(740,700)" to="(740,1370)"/> <wire from="(900,570)" to="(940,570)"/> <wire from="(300,720)" to="(590,720)"/> <wire from="(380,700)" to="(740,700)"/> <wire from="(920,290)" to="(940,290)"/> <wire from="(90,570)" to="(120,570)"/> <wire from="(310,590)" to="(310,750)"/> <wire from="(310,430)" to="(310,590)"/> <wire from="(310,270)" to="(310,430)"/> <wire from="(310,110)" to="(310,270)"/> <wire from="(310,1070)" to="(310,1230)"/> <wire from="(310,910)" to="(310,1070)"/> <wire from="(310,750)" to="(310,910)"/> <wire from="(400,460)" to="(880,460)"/> <wire from="(400,940)" to="(880,940)"/> <wire from="(300,150)" to="(320,150)"/> <wire from="(300,310)" to="(320,310)"/> <wire from="(300,470)" to="(320,470)"/> <wire from="(300,790)" to="(320,790)"/> <wire from="(300,630)" to="(320,630)"/> <wire from="(300,950)" to="(320,950)"/> <wire from="(300,1110)" to="(320,1110)"/> <wire from="(300,1270)" to="(320,1270)"/> <wire from="(780,350)" to="(940,350)"/> <wire from="(360,870)" to="(640,870)"/> <wire from="(430,570)" to="(430,620)"/> <wire from="(750,860)" to="(750,1370)"/> <wire from="(90,270)" to="(100,270)"/> <wire from="(130,1000)" to="(320,1000)"/> <wire from="(910,120)" to="(910,260)"/> <wire from="(890,600)" to="(940,600)"/> <wire from="(500,180)" to="(500,630)"/> <wire from="(400,440)" to="(770,440)"/> <wire from="(760,1020)" to="(760,1370)"/> <wire from="(890,750)" to="(890,1100)"/> <wire from="(300,240)" to="(410,240)"/> <wire from="(300,400)" to="(410,400)"/> <wire from="(300,560)" to="(410,560)"/> <wire from="(900,780)" to="(940,780)"/> <wire from="(300,880)" to="(410,880)"/> <wire from="(300,1040)" to="(410,1040)"/> <wire from="(300,1200)" to="(410,1200)"/> <wire from="(870,690)" to="(870,780)"/> <wire from="(220,1290)" to="(320,1290)"/> <wire from="(400,1240)" to="(820,1240)"/> <wire from="(100,290)" to="(200,290)"/> <wire from="(220,170)" to="(320,170)"/> <wire from="(220,330)" to="(320,330)"/> <wire from="(220,490)" to="(320,490)"/> <wire from="(220,810)" to="(320,810)"/> <wire from="(220,970)" to="(320,970)"/> <wire from="(220,1130)" to="(320,1130)"/> <wire from="(220,650)" to="(320,650)"/> <wire from="(290,180)" to="(320,180)"/> <wire from="(290,340)" to="(320,340)"/> <wire from="(290,500)" to="(320,500)"/> <wire from="(290,820)" to="(320,820)"/> <wire from="(290,980)" to="(320,980)"/> <wire from="(290,1140)" to="(320,1140)"/> <wire from="(290,660)" to="(320,660)"/> <wire from="(290,1300)" to="(320,1300)"/> <wire from="(110,130)" to="(320,130)"/> <wire from="(380,220)" to="(710,220)"/> <wire from="(770,1180)" to="(770,1370)"/> <wire from="(90,240)" to="(100,240)"/> <wire from="(870,690)" to="(940,690)"/> <wire from="(400,280)" to="(920,280)"/> <comp lib="0" loc="(940,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(150,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(940,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH/PCH"/> </comp> <comp loc="(320,590)" name="PCH_ODD_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,210)" name="Tunnel"> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/ADH"/> </comp> <comp lib="0" loc="(940,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="label" val="ADH3"/> </comp> <comp loc="(320,910)" name="PCH_ODD_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(260,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(260,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(220,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(940,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,640)" name="NOR Gate"/> <comp lib="0" loc="(940,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,540)" name="Pin"> <a name="label" val="ADH5"/> </comp> <comp lib="0" loc="(220,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,570)" name="Pin"> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(940,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,450)" name="Pin"> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(300,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/DB"/> </comp> <comp loc="(320,1230)" name="PCH_ODD_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(710,1430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="PCH_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(220,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(320,1070)" name="PCH_EVEN_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(260,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(320,270)" name="PCH_ODD_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,240)" name="Tunnel"> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(320,430)" name="PCH_EVEN_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(300,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(940,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(220,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(260,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(100,270)" name="Tunnel"> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(940,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(300,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,420)" name="Pin"> <a name="label" val="ADH1"/> </comp> <comp lib="0" loc="(290,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(940,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(320,110)" name="PCH_EVEN_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(580,635)" name="Text"> <a name="text" val="PCHC"/> </comp> <comp lib="0" loc="(260,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(940,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(790,1390)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="label" val="ADH4"/> </comp> <comp lib="0" loc="(940,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADH4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(300,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(220,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(880,1430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="PCHS_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(940,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(680,1390)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(100,180)" name="Tunnel"> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp loc="(320,750)" name="PCH_EVEN_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(220,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH/DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH/PCH"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="label" val="ADH7"/> </comp> </circuit> <circuit name="ALU_OPS"> <a name="circuit" val="ALU_OPS"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="480" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="40">ALU_OPS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="83">carry6</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="152" y="145">/res</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="151" y="235">nor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="335">nand</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="153" y="437">xor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="460">ADL In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="359">DB In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="258">SB In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="193">/ACIN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="203">DC3</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="63">NDB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="93">SB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="74">DB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="83">0/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="104">ADL/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="154">SUMS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="133">ORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">ANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="143">SRS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="123">EORS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="521">AI</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="130" y="521">BI</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="93">/carry7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="63">/carry3</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="73">carry4</text> <circ-port height="8" pin="120,70" width="8" x="46" y="56"/> <circ-port height="8" pin="120,100" width="8" x="46" y="66"/> <circ-port height="8" pin="120,130" width="8" x="46" y="76"/> <circ-port height="8" pin="120,160" width="8" x="46" y="86"/> <circ-port height="8" pin="120,190" width="8" x="46" y="96"/> <circ-port height="8" pin="120,300" width="8" x="46" y="106"/> <circ-port height="8" pin="120,330" width="8" x="46" y="116"/> <circ-port height="8" pin="120,360" width="8" x="46" y="126"/> <circ-port height="8" pin="120,390" width="8" x="46" y="136"/> <circ-port height="8" pin="120,420" width="8" x="46" y="146"/> <circ-port height="8" pin="120,480" width="8" x="46" y="186"/> <circ-port height="10" pin="1570,140" width="10" x="165" y="105"/> <circ-port height="10" pin="1570,100" width="10" x="165" y="85"/> <circ-port height="8" pin="120,580" width="8" x="46" y="216"/> <circ-port height="8" pin="120,610" width="8" x="46" y="226"/> <circ-port height="8" pin="120,640" width="8" x="46" y="236"/> <circ-port height="8" pin="120,670" width="8" x="46" y="246"/> <circ-port height="8" pin="120,700" width="8" x="46" y="256"/> <circ-port height="8" pin="120,730" width="8" x="46" y="266"/> <circ-port height="8" pin="120,760" width="8" x="46" y="276"/> <circ-port height="8" pin="120,790" width="8" x="46" y="286"/> <circ-port height="8" pin="120,850" width="8" x="46" y="316"/> <circ-port height="8" pin="120,880" width="8" x="46" y="326"/> <circ-port height="8" pin="120,910" width="8" x="46" y="336"/> <circ-port height="8" pin="120,940" width="8" x="46" y="346"/> <circ-port height="8" pin="120,970" width="8" x="46" y="356"/> <circ-port height="8" pin="120,1000" width="8" x="46" y="366"/> <circ-port height="8" pin="120,1030" width="8" x="46" y="376"/> <circ-port height="8" pin="120,1060" width="8" x="46" y="386"/> <circ-port height="8" pin="120,1120" width="8" x="46" y="416"/> <circ-port height="8" pin="120,1150" width="8" x="46" y="426"/> <circ-port height="8" pin="120,1180" width="8" x="46" y="436"/> <circ-port height="8" pin="120,1210" width="8" x="46" y="446"/> <circ-port height="8" pin="120,1240" width="8" x="46" y="456"/> <circ-port height="8" pin="120,1270" width="8" x="46" y="466"/> <circ-port height="8" pin="120,1300" width="8" x="46" y="476"/> <circ-port height="8" pin="120,1330" width="8" x="46" y="486"/> <circ-port height="10" pin="1570,170" width="10" x="165" y="115"/> <circ-port height="10" pin="1570,200" width="10" x="165" y="125"/> <circ-port height="10" pin="1570,230" width="10" x="165" y="135"/> <circ-port height="10" pin="1570,260" width="10" x="165" y="145"/> <circ-port height="10" pin="1570,290" width="10" x="165" y="155"/> <circ-port height="10" pin="1570,320" width="10" x="165" y="165"/> <circ-port height="10" pin="1570,350" width="10" x="165" y="175"/> <circ-port height="10" pin="1570,410" width="10" x="165" y="195"/> <circ-port height="10" pin="1570,440" width="10" x="165" y="205"/> <circ-port height="10" pin="1570,470" width="10" x="165" y="215"/> <circ-port height="10" pin="1570,500" width="10" x="165" y="225"/> <circ-port height="10" pin="1570,530" width="10" x="165" y="235"/> <circ-port height="10" pin="1570,560" width="10" x="165" y="245"/> <circ-port height="10" pin="1570,590" width="10" x="165" y="255"/> <circ-port height="10" pin="1570,620" width="10" x="165" y="265"/> <circ-port height="10" pin="1570,680" width="10" x="165" y="295"/> <circ-port height="10" pin="1570,710" width="10" x="165" y="305"/> <circ-port height="10" pin="1570,740" width="10" x="165" y="315"/> <circ-port height="10" pin="1570,770" width="10" x="165" y="325"/> <circ-port height="10" pin="1570,800" width="10" x="165" y="335"/> <circ-port height="10" pin="1570,830" width="10" x="165" y="345"/> <circ-port height="10" pin="1570,860" width="10" x="165" y="355"/> <circ-port height="10" pin="1570,890" width="10" x="165" y="365"/> <circ-port height="10" pin="1570,950" width="10" x="165" y="395"/> <circ-port height="10" pin="1570,980" width="10" x="165" y="405"/> <circ-port height="10" pin="1570,1010" width="10" x="165" y="415"/> <circ-port height="10" pin="1570,1040" width="10" x="165" y="425"/> <circ-port height="10" pin="1570,1070" width="10" x="165" y="435"/> <circ-port height="10" pin="1570,1100" width="10" x="165" y="445"/> <circ-port height="10" pin="1570,1130" width="10" x="165" y="455"/> <circ-port height="10" pin="1570,1160" width="10" x="165" y="465"/> <circ-port height="10" pin="820,1370" width="10" x="85" y="525"/> <circ-port height="10" pin="1380,1370" width="10" x="125" y="525"/> <circ-port height="8" pin="120,510" width="8" x="46" y="196"/> <circ-port height="10" pin="1570,70" width="10" x="165" y="75"/> <circ-port height="10" pin="1570,10" width="10" x="165" y="55"/> <circ-port height="10" pin="1570,40" width="10" x="165" y="65"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(1150,540)" to="(1150,620)"/> <wire from="(700,1340)" to="(700,1350)"/> <wire from="(1530,570)" to="(1530,590)"/> <wire from="(710,660)" to="(710,1250)"/> <wire from="(320,700)" to="(320,840)"/> <wire from="(340,900)" to="(390,900)"/> <wire from="(1460,590)" to="(1500,590)"/> <wire from="(1460,750)" to="(1500,750)"/> <wire from="(1530,980)" to="(1570,980)"/> <wire from="(260,670)" to="(260,880)"/> <wire from="(1520,800)" to="(1570,800)"/> <wire from="(1070,270)" to="(1070,280)"/> <wire from="(1070,1230)" to="(1070,1240)"/> <wire from="(490,100)" to="(490,320)"/> <wire from="(1090,820)" to="(1270,820)"/> <wire from="(1530,730)" to="(1530,740)"/> <wire from="(470,80)" to="(510,80)"/> <wire from="(470,1040)" to="(510,1040)"/> <wire from="(120,700)" to="(150,700)"/> <wire from="(1300,590)" to="(1440,590)"/> <wire from="(1520,1000)" to="(1530,1000)"/> <wire from="(1320,640)" to="(1330,640)"/> <wire from="(1170,650)" to="(1180,650)"/> <wire from="(710,1290)" to="(740,1290)"/> <wire from="(470,100)" to="(490,100)"/> <wire from="(120,1030)" to="(140,1030)"/> <wire from="(380,500)" to="(390,500)"/> <wire from="(380,820)" to="(390,820)"/> <wire from="(470,430)" to="(480,430)"/> <wire from="(510,660)" to="(510,1040)"/> <wire from="(140,900)" to="(150,900)"/> <wire from="(140,740)" to="(150,740)"/> <wire from="(1000,1120)" to="(1010,1120)"/> <wire from="(1000,160)" to="(1010,160)"/> <wire from="(560,130)" to="(560,630)"/> <wire from="(1120,30)" to="(1120,140)"/> <wire from="(730,1340)" to="(730,1350)"/> <wire from="(880,650)" to="(880,920)"/> <wire from="(1520,530)" to="(1520,550)"/> <wire from="(340,1170)" to="(340,1300)"/> <wire from="(240,650)" to="(240,920)"/> <wire from="(450,280)" to="(760,280)"/> <wire from="(450,1240)" to="(760,1240)"/> <wire from="(1530,470)" to="(1570,470)"/> <wire from="(480,430)" to="(600,430)"/> <wire from="(1280,660)" to="(1280,1110)"/> <wire from="(1380,660)" to="(1380,1240)"/> <wire from="(1370,570)" to="(1370,640)"/> <wire from="(1000,970)" to="(1100,970)"/> <wire from="(1100,970)" to="(1100,1100)"/> <wire from="(490,390)" to="(490,600)"/> <wire from="(280,240)" to="(390,240)"/> <wire from="(280,1200)" to="(390,1200)"/> <wire from="(970,230)" to="(1010,230)"/> <wire from="(150,1240)" to="(150,1260)"/> <wire from="(150,920)" to="(150,940)"/> <wire from="(520,1130)" to="(520,1160)"/> <wire from="(970,1190)" to="(1010,1190)"/> <wire from="(410,580)" to="(700,580)"/> <wire from="(1520,290)" to="(1570,290)"/> <wire from="(1520,770)" to="(1570,770)"/> <wire from="(1070,560)" to="(1070,570)"/> <wire from="(140,200)" to="(180,200)"/> <wire from="(320,700)" to="(360,700)"/> <wire from="(120,670)" to="(150,670)"/> <wire from="(150,220)" to="(180,220)"/> <wire from="(510,80)" to="(510,630)"/> <wire from="(470,130)" to="(560,130)"/> <wire from="(470,1090)" to="(560,1090)"/> <wire from="(470,390)" to="(490,390)"/> <wire from="(160,130)" to="(160,180)"/> <wire from="(380,790)" to="(390,790)"/> <wire from="(380,1110)" to="(390,1110)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(230,640)" to="(240,640)"/> <wire from="(1000,1090)" to="(1010,1090)"/> <wire from="(1000,450)" to="(1010,450)"/> <wire from="(1000,130)" to="(1010,130)"/> <wire from="(870,640)" to="(880,640)"/> <wire from="(900,670)" to="(900,980)"/> <wire from="(550,640)" to="(560,640)"/> <wire from="(960,820)" to="(1010,820)"/> <wire from="(280,240)" to="(280,630)"/> <wire from="(300,600)" to="(490,600)"/> <wire from="(920,240)" to="(920,630)"/> <wire from="(1530,830)" to="(1530,860)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(1530,440)" to="(1570,440)"/> <wire from="(990,1260)" to="(1310,1260)"/> <wire from="(350,10)" to="(970,10)"/> <wire from="(1440,1130)" to="(1500,1130)"/> <wire from="(550,420)" to="(550,640)"/> <wire from="(710,1290)" to="(710,1320)"/> <wire from="(140,880)" to="(140,900)"/> <wire from="(120,510)" to="(350,510)"/> <wire from="(940,300)" to="(1110,300)"/> <wire from="(1520,260)" to="(1570,260)"/> <wire from="(1240,1340)" to="(1240,1350)"/> <wire from="(1090,440)" to="(1270,440)"/> <wire from="(1530,190)" to="(1530,200)"/> <wire from="(750,1320)" to="(860,1320)"/> <wire from="(650,650)" to="(650,820)"/> <wire from="(120,1120)" to="(150,1120)"/> <wire from="(120,640)" to="(150,640)"/> <wire from="(150,190)" to="(180,190)"/> <wire from="(1520,300)" to="(1530,300)"/> <wire from="(1520,460)" to="(1530,460)"/> <wire from="(120,160)" to="(150,160)"/> <wire from="(1220,640)" to="(1230,640)"/> <wire from="(750,650)" to="(750,950)"/> <wire from="(610,1170)" to="(830,1170)"/> <wire from="(970,10)" to="(970,170)"/> <wire from="(380,760)" to="(390,760)"/> <wire from="(380,1080)" to="(390,1080)"/> <wire from="(880,920)" to="(1010,920)"/> <wire from="(1280,150)" to="(1280,630)"/> <wire from="(380,120)" to="(390,120)"/> <wire from="(380,440)" to="(390,440)"/> <wire from="(140,1160)" to="(150,1160)"/> <wire from="(1000,1060)" to="(1010,1060)"/> <wire from="(1000,420)" to="(1010,420)"/> <wire from="(1000,100)" to="(1010,100)"/> <wire from="(800,30)" to="(800,1300)"/> <wire from="(940,300)" to="(940,480)"/> <wire from="(1180,660)" to="(1180,1090)"/> <wire from="(750,650)" to="(760,650)"/> <wire from="(960,790)" to="(1010,790)"/> <wire from="(1030,940)" to="(1030,960)"/> <wire from="(120,420)" to="(180,420)"/> <wire from="(140,1170)" to="(140,1180)"/> <wire from="(500,370)" to="(500,640)"/> <wire from="(1520,470)" to="(1520,500)"/> <wire from="(1440,320)" to="(1440,540)"/> <wire from="(200,10)" to="(200,150)"/> <wire from="(190,610)" to="(190,690)"/> <wire from="(1000,590)" to="(1100,590)"/> <wire from="(140,1010)" to="(140,1030)"/> <wire from="(150,700)" to="(150,720)"/> <wire from="(220,1250)" to="(220,1270)"/> <wire from="(680,600)" to="(1430,600)"/> <wire from="(1520,230)" to="(1570,230)"/> <wire from="(1270,1340)" to="(1270,1350)"/> <wire from="(150,1180)" to="(150,1210)"/> <wire from="(710,290)" to="(710,630)"/> <wire from="(300,860)" to="(390,860)"/> <wire from="(1090,1060)" to="(1360,1060)"/> <wire from="(990,1220)" to="(990,1260)"/> <wire from="(890,1130)" to="(980,1130)"/> <wire from="(150,1020)" to="(150,1060)"/> <wire from="(120,300)" to="(140,300)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(1310,10)" to="(1570,10)"/> <wire from="(380,1050)" to="(390,1050)"/> <wire from="(1090,140)" to="(1120,140)"/> <wire from="(380,90)" to="(390,90)"/> <wire from="(380,410)" to="(390,410)"/> <wire from="(890,510)" to="(960,510)"/> <wire from="(1000,1030)" to="(1010,1030)"/> <wire from="(1000,390)" to="(1010,390)"/> <wire from="(1000,70)" to="(1010,70)"/> <wire from="(1520,310)" to="(1520,350)"/> <wire from="(1520,950)" to="(1520,990)"/> <wire from="(960,760)" to="(1010,760)"/> <wire from="(1030,1230)" to="(1030,1250)"/> <wire from="(120,70)" to="(180,70)"/> <wire from="(190,690)" to="(310,690)"/> <wire from="(1100,590)" to="(1100,810)"/> <wire from="(170,1250)" to="(220,1250)"/> <wire from="(1530,860)" to="(1570,860)"/> <wire from="(310,670)" to="(310,690)"/> <wire from="(330,230)" to="(330,630)"/> <wire from="(360,490)" to="(360,700)"/> <wire from="(140,210)" to="(140,300)"/> <wire from="(1520,680)" to="(1570,680)"/> <wire from="(1520,1160)" to="(1570,1160)"/> <wire from="(1260,40)" to="(1570,40)"/> <wire from="(1270,440)" to="(1270,640)"/> <wire from="(860,1290)" to="(1350,1290)"/> <wire from="(1030,270)" to="(1030,290)"/> <wire from="(550,650)" to="(550,800)"/> <wire from="(970,230)" to="(970,630)"/> <wire from="(1300,1340)" to="(1300,1350)"/> <wire from="(120,1060)" to="(150,1060)"/> <wire from="(120,580)" to="(150,580)"/> <wire from="(1520,720)" to="(1530,720)"/> <wire from="(950,670)" to="(950,710)"/> <wire from="(1120,640)" to="(1130,640)"/> <wire from="(150,220)" to="(150,330)"/> <wire from="(1090,750)" to="(1120,750)"/> <wire from="(330,650)" to="(340,650)"/> <wire from="(880,540)" to="(1010,540)"/> <wire from="(380,380)" to="(390,380)"/> <wire from="(170,170)" to="(180,170)"/> <wire from="(700,580)" to="(700,640)"/> <wire from="(970,170)" to="(980,170)"/> <wire from="(970,650)" to="(980,650)"/> <wire from="(1000,360)" to="(1010,360)"/> <wire from="(480,1100)" to="(610,1100)"/> <wire from="(780,620)" to="(790,620)"/> <wire from="(790,620)" to="(790,1250)"/> <wire from="(650,650)" to="(660,650)"/> <wire from="(520,1130)" to="(660,1130)"/> <wire from="(160,230)" to="(160,360)"/> <wire from="(690,1340)" to="(690,1350)"/> <wire from="(1070,950)" to="(1370,950)"/> <wire from="(1310,1320)" to="(1410,1320)"/> <wire from="(1520,410)" to="(1520,440)"/> <wire from="(450,940)" to="(450,950)"/> <wire from="(410,290)" to="(710,290)"/> <wire from="(410,1250)" to="(710,1250)"/> <wire from="(520,1200)" to="(520,1290)"/> <wire from="(170,240)" to="(170,390)"/> <wire from="(760,280)" to="(760,630)"/> <wire from="(1000,880)" to="(1000,970)"/> <wire from="(1030,560)" to="(1030,580)"/> <wire from="(150,1120)" to="(150,1150)"/> <wire from="(150,160)" to="(150,190)"/> <wire from="(1090,800)" to="(1170,800)"/> <wire from="(1320,650)" to="(1320,960)"/> <wire from="(1320,650)" to="(1330,650)"/> <wire from="(180,250)" to="(180,420)"/> <wire from="(120,880)" to="(140,880)"/> <wire from="(170,610)" to="(190,610)"/> <wire from="(380,830)" to="(390,830)"/> <wire from="(1220,650)" to="(1220,810)"/> <wire from="(1420,70)" to="(1570,70)"/> <wire from="(720,1340)" to="(720,1350)"/> <wire from="(1520,1020)" to="(1520,1040)"/> <wire from="(470,820)" to="(650,820)"/> <wire from="(450,270)" to="(450,280)"/> <wire from="(450,1230)" to="(450,1240)"/> <wire from="(1530,320)" to="(1570,320)"/> <wire from="(1090,150)" to="(1280,150)"/> <wire from="(920,660)" to="(920,1200)"/> <wire from="(1090,1110)" to="(1280,1110)"/> <wire from="(290,910)" to="(390,910)"/> <wire from="(280,660)" to="(280,1200)"/> <wire from="(940,980)" to="(1110,980)"/> <wire from="(1520,140)" to="(1570,140)"/> <wire from="(1520,620)" to="(1570,620)"/> <wire from="(1520,1100)" to="(1570,1100)"/> <wire from="(140,210)" to="(180,210)"/> <wire from="(970,1300)" to="(1270,1300)"/> <wire from="(1530,710)" to="(1530,720)"/> <wire from="(560,1180)" to="(560,1200)"/> <wire from="(120,1000)" to="(150,1000)"/> <wire from="(1520,180)" to="(1530,180)"/> <wire from="(940,980)" to="(940,1150)"/> <wire from="(170,980)" to="(900,980)"/> <wire from="(310,990)" to="(310,1150)"/> <wire from="(1100,310)" to="(1100,430)"/> <wire from="(1000,210)" to="(1000,310)"/> <wire from="(980,900)" to="(1010,900)"/> <wire from="(380,800)" to="(390,800)"/> <wire from="(380,1120)" to="(390,1120)"/> <wire from="(1090,370)" to="(1120,370)"/> <wire from="(380,160)" to="(390,160)"/> <wire from="(230,650)" to="(240,650)"/> <wire from="(1120,650)" to="(1120,750)"/> <wire from="(1230,140)" to="(1230,630)"/> <wire from="(1000,1100)" to="(1010,1100)"/> <wire from="(1000,140)" to="(1010,140)"/> <wire from="(870,650)" to="(880,650)"/> <wire from="(700,640)" to="(710,640)"/> <wire from="(960,460)" to="(960,510)"/> <wire from="(550,650)" to="(560,650)"/> <wire from="(830,190)" to="(1010,190)"/> <wire from="(960,830)" to="(1010,830)"/> <wire from="(1070,570)" to="(1370,570)"/> <wire from="(480,970)" to="(480,1100)"/> <wire from="(890,510)" to="(890,840)"/> <wire from="(660,660)" to="(660,1110)"/> <wire from="(340,1170)" to="(390,1170)"/> <wire from="(450,560)" to="(450,570)"/> <wire from="(750,570)" to="(750,640)"/> <wire from="(760,660)" to="(760,1240)"/> <wire from="(910,860)" to="(1010,860)"/> <wire from="(1000,310)" to="(1100,310)"/> <wire from="(860,1290)" to="(860,1320)"/> <wire from="(1000,500)" to="(1000,590)"/> <wire from="(1520,1070)" to="(1570,1070)"/> <wire from="(1230,1340)" to="(1230,1350)"/> <wire from="(380,970)" to="(480,970)"/> <wire from="(350,460)" to="(350,490)"/> <wire from="(320,840)" to="(360,840)"/> <wire from="(1090,420)" to="(1170,420)"/> <wire from="(120,970)" to="(150,970)"/> <wire from="(1520,1110)" to="(1530,1110)"/> <wire from="(230,250)" to="(390,250)"/> <wire from="(1370,640)" to="(1380,640)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(230,1210)" to="(390,1210)"/> <wire from="(1220,650)" to="(1230,650)"/> <wire from="(310,320)" to="(310,480)"/> <wire from="(990,710)" to="(1460,710)"/> <wire from="(240,540)" to="(240,640)"/> <wire from="(920,240)" to="(1010,240)"/> <wire from="(920,1200)" to="(1010,1200)"/> <wire from="(880,540)" to="(880,640)"/> <wire from="(1420,70)" to="(1420,770)"/> <wire from="(150,580)" to="(150,620)"/> <wire from="(580,330)" to="(580,620)"/> <wire from="(1250,560)" to="(1450,560)"/> <wire from="(120,1300)" to="(140,1300)"/> <wire from="(1250,560)" to="(1250,620)"/> <wire from="(380,770)" to="(390,770)"/> <wire from="(380,1090)" to="(390,1090)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(380,450)" to="(390,450)"/> <wire from="(140,1170)" to="(150,1170)"/> <wire from="(140,1010)" to="(150,1010)"/> <wire from="(1450,560)" to="(1450,850)"/> <wire from="(170,240)" to="(180,240)"/> <wire from="(750,1370)" to="(820,1370)"/> <wire from="(910,700)" to="(1110,700)"/> <wire from="(170,710)" to="(950,710)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(1000,430)" to="(1010,430)"/> <wire from="(1000,110)" to="(1010,110)"/> <wire from="(1430,600)" to="(1430,1030)"/> <wire from="(660,1220)" to="(990,1220)"/> <wire from="(290,650)" to="(290,910)"/> <wire from="(1220,430)" to="(1220,640)"/> <wire from="(960,800)" to="(1010,800)"/> <wire from="(480,300)" to="(480,430)"/> <wire from="(930,650)" to="(930,910)"/> <wire from="(470,440)" to="(650,440)"/> <wire from="(1530,740)" to="(1570,740)"/> <wire from="(350,1290)" to="(520,1290)"/> <wire from="(290,530)" to="(390,530)"/> <wire from="(1520,560)" to="(1570,560)"/> <wire from="(1520,1040)" to="(1570,1040)"/> <wire from="(380,300)" to="(480,300)"/> <wire from="(1260,1340)" to="(1260,1350)"/> <wire from="(120,130)" to="(160,130)"/> <wire from="(170,1140)" to="(210,1140)"/> <wire from="(1530,170)" to="(1530,180)"/> <wire from="(1520,800)" to="(1520,810)"/> <wire from="(1540,820)" to="(1540,830)"/> <wire from="(320,1130)" to="(360,1130)"/> <wire from="(680,600)" to="(680,620)"/> <wire from="(120,940)" to="(150,940)"/> <wire from="(350,10)" to="(350,170)"/> <wire from="(560,660)" to="(560,1090)"/> <wire from="(1090,810)" to="(1100,810)"/> <wire from="(320,840)" to="(320,1130)"/> <wire from="(660,150)" to="(660,630)"/> <wire from="(980,520)" to="(1010,520)"/> <wire from="(1200,550)" to="(1460,550)"/> <wire from="(380,740)" to="(390,740)"/> <wire from="(380,1060)" to="(390,1060)"/> <wire from="(280,640)" to="(290,640)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(380,420)" to="(390,420)"/> <wire from="(920,640)" to="(930,640)"/> <wire from="(1000,880)" to="(1010,880)"/> <wire from="(1000,1040)" to="(1010,1040)"/> <wire from="(1000,400)" to="(1010,400)"/> <wire from="(1000,80)" to="(1010,80)"/> <wire from="(520,1200)" to="(530,1200)"/> <wire from="(600,640)" to="(610,640)"/> <wire from="(1520,1120)" to="(1520,1160)"/> <wire from="(960,770)" to="(1010,770)"/> <wire from="(1530,300)" to="(1530,320)"/> <wire from="(1110,770)" to="(1110,980)"/> <wire from="(140,1150)" to="(140,1160)"/> <wire from="(140,190)" to="(140,200)"/> <wire from="(1030,960)" to="(1320,960)"/> <wire from="(1460,480)" to="(1500,480)"/> <wire from="(1530,710)" to="(1570,710)"/> <wire from="(410,940)" to="(410,960)"/> <wire from="(1360,100)" to="(1360,1060)"/> <wire from="(1520,530)" to="(1570,530)"/> <wire from="(1520,1010)" to="(1570,1010)"/> <wire from="(1100,810)" to="(1220,810)"/> <wire from="(380,590)" to="(480,590)"/> <wire from="(1530,460)" to="(1530,470)"/> <wire from="(1290,1340)" to="(1290,1350)"/> <wire from="(930,530)" to="(930,640)"/> <wire from="(120,910)" to="(150,910)"/> <wire from="(1520,570)" to="(1530,570)"/> <wire from="(1520,730)" to="(1530,730)"/> <wire from="(1270,640)" to="(1280,640)"/> <wire from="(1120,650)" to="(1130,650)"/> <wire from="(1090,1100)" to="(1100,1100)"/> <wire from="(200,10)" to="(350,10)"/> <wire from="(290,530)" to="(290,640)"/> <wire from="(1230,660)" to="(1230,1100)"/> <wire from="(1430,1030)" to="(1500,1030)"/> <wire from="(960,170)" to="(960,460)"/> <wire from="(120,760)" to="(140,760)"/> <wire from="(910,700)" to="(910,860)"/> <wire from="(380,1030)" to="(390,1030)"/> <wire from="(1310,10)" to="(1310,1260)"/> <wire from="(380,70)" to="(390,70)"/> <wire from="(380,390)" to="(390,390)"/> <wire from="(140,630)" to="(150,630)"/> <wire from="(990,590)" to="(990,710)"/> <wire from="(960,170)" to="(970,170)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1000,1170)" to="(1010,1170)"/> <wire from="(1000,370)" to="(1010,370)"/> <wire from="(1090,770)" to="(1110,770)"/> <wire from="(1460,550)" to="(1460,590)"/> <wire from="(1460,710)" to="(1460,750)"/> <wire from="(550,1200)" to="(560,1200)"/> <wire from="(300,600)" to="(300,860)"/> <wire from="(680,1340)" to="(680,1350)"/> <wire from="(960,740)" to="(1010,740)"/> <wire from="(650,440)" to="(650,640)"/> <wire from="(1520,260)" to="(1520,280)"/> <wire from="(1090,80)" to="(1130,80)"/> <wire from="(1520,740)" to="(1520,770)"/> <wire from="(1090,1040)" to="(1130,1040)"/> <wire from="(800,30)" to="(1120,30)"/> <wire from="(1530,200)" to="(1570,200)"/> <wire from="(630,590)" to="(990,590)"/> <wire from="(410,270)" to="(410,290)"/> <wire from="(410,1230)" to="(410,1250)"/> <wire from="(140,1280)" to="(140,1300)"/> <wire from="(150,970)" to="(150,990)"/> <wire from="(150,650)" to="(150,670)"/> <wire from="(1110,100)" to="(1110,300)"/> <wire from="(180,70)" to="(180,160)"/> <wire from="(1520,500)" to="(1570,500)"/> <wire from="(1330,660)" to="(1330,1250)"/> <wire from="(480,590)" to="(480,810)"/> <wire from="(210,190)" to="(210,480)"/> <wire from="(1180,130)" to="(1180,630)"/> <wire from="(470,750)" to="(500,750)"/> <wire from="(1090,430)" to="(1100,430)"/> <wire from="(350,170)" to="(350,460)"/> <wire from="(150,1290)" to="(150,1330)"/> <wire from="(1130,660)" to="(1130,1040)"/> <wire from="(500,640)" to="(510,640)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(350,170)" to="(360,170)"/> <wire from="(350,490)" to="(360,490)"/> <wire from="(940,1150)" to="(1010,1150)"/> <wire from="(310,1150)" to="(390,1150)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(1090,100)" to="(1110,100)"/> <wire from="(1520,580)" to="(1520,620)"/> <wire from="(330,230)" to="(390,230)"/> <wire from="(330,1190)" to="(390,1190)"/> <wire from="(710,1340)" to="(710,1350)"/> <wire from="(1120,140)" to="(1230,140)"/> <wire from="(310,990)" to="(490,990)"/> <wire from="(1030,580)" to="(1320,580)"/> <wire from="(1530,170)" to="(1570,170)"/> <wire from="(1530,1130)" to="(1570,1130)"/> <wire from="(1150,540)" to="(1440,540)"/> <wire from="(410,560)" to="(410,580)"/> <wire from="(450,950)" to="(750,950)"/> <wire from="(140,610)" to="(140,630)"/> <wire from="(1100,430)" to="(1220,430)"/> <wire from="(1520,950)" to="(1570,950)"/> <wire from="(1070,280)" to="(1380,280)"/> <wire from="(1070,1240)" to="(1380,1240)"/> <wire from="(120,360)" to="(160,360)"/> <wire from="(380,880)" to="(380,970)"/> <wire from="(120,1330)" to="(150,1330)"/> <wire from="(120,850)" to="(150,850)"/> <wire from="(1520,190)" to="(1530,190)"/> <wire from="(1520,830)" to="(1530,830)"/> <wire from="(1170,640)" to="(1180,640)"/> <wire from="(530,320)" to="(530,620)"/> <wire from="(600,650)" to="(600,810)"/> <wire from="(120,1180)" to="(140,1180)"/> <wire from="(890,840)" to="(890,1130)"/> <wire from="(380,810)" to="(390,810)"/> <wire from="(350,460)" to="(360,460)"/> <wire from="(310,480)" to="(390,480)"/> <wire from="(940,480)" to="(1010,480)"/> <wire from="(1540,830)" to="(1570,830)"/> <wire from="(1090,130)" to="(1180,130)"/> <wire from="(470,800)" to="(550,800)"/> <wire from="(980,520)" to="(980,640)"/> <wire from="(1130,80)" to="(1130,630)"/> <wire from="(1090,1090)" to="(1180,1090)"/> <wire from="(1000,1110)" to="(1010,1110)"/> <wire from="(1000,150)" to="(1010,150)"/> <wire from="(1520,820)" to="(1540,820)"/> <wire from="(700,650)" to="(700,960)"/> <wire from="(700,650)" to="(710,650)"/> <wire from="(1090,390)" to="(1110,390)"/> <wire from="(340,520)" to="(340,640)"/> <wire from="(740,1340)" to="(740,1350)"/> <wire from="(470,150)" to="(660,150)"/> <wire from="(470,1110)" to="(660,1110)"/> <wire from="(310,320)" to="(490,320)"/> <wire from="(1520,200)" to="(1520,230)"/> <wire from="(1520,680)" to="(1520,710)"/> <wire from="(350,510)" to="(350,1290)"/> <wire from="(1170,420)" to="(1170,640)"/> <wire from="(660,1130)" to="(660,1220)"/> <wire from="(530,320)" to="(1400,320)"/> <wire from="(1200,550)" to="(1200,620)"/> <wire from="(140,740)" to="(140,760)"/> <wire from="(630,590)" to="(630,620)"/> <wire from="(1450,850)" to="(1500,850)"/> <wire from="(1110,770)" to="(1420,770)"/> <wire from="(380,210)" to="(380,300)"/> <wire from="(500,650)" to="(500,750)"/> <wire from="(610,140)" to="(610,630)"/> <wire from="(1370,650)" to="(1380,650)"/> <wire from="(1520,840)" to="(1520,890)"/> <wire from="(470,370)" to="(500,370)"/> <wire from="(1110,390)" to="(1110,700)"/> <wire from="(150,750)" to="(150,790)"/> <wire from="(120,190)" to="(140,190)"/> <wire from="(240,920)" to="(390,920)"/> <wire from="(120,1150)" to="(140,1150)"/> <wire from="(160,230)" to="(180,230)"/> <wire from="(380,780)" to="(390,780)"/> <wire from="(380,1100)" to="(390,1100)"/> <wire from="(380,140)" to="(390,140)"/> <wire from="(1270,650)" to="(1270,820)"/> <wire from="(1370,650)" to="(1370,950)"/> <wire from="(1000,1080)" to="(1010,1080)"/> <wire from="(1000,440)" to="(1010,440)"/> <wire from="(1000,120)" to="(1010,120)"/> <wire from="(970,1250)" to="(970,1300)"/> <wire from="(930,910)" to="(1010,910)"/> <wire from="(1330,290)" to="(1330,630)"/> <wire from="(1460,330)" to="(1460,480)"/> <wire from="(790,1250)" to="(970,1250)"/> <wire from="(960,810)" to="(1010,810)"/> <wire from="(1530,980)" to="(1530,1000)"/> <wire from="(1400,210)" to="(1500,210)"/> <wire from="(1350,620)" to="(1350,1290)"/> <wire from="(520,1160)" to="(580,1160)"/> <wire from="(1300,590)" to="(1300,620)"/> <wire from="(1530,590)" to="(1570,590)"/> <wire from="(210,190)" to="(390,190)"/> <wire from="(1440,320)" to="(1500,320)"/> <wire from="(450,570)" to="(750,570)"/> <wire from="(210,670)" to="(210,1140)"/> <wire from="(330,660)" to="(330,1190)"/> <wire from="(1520,410)" to="(1570,410)"/> <wire from="(1520,890)" to="(1570,890)"/> <wire from="(580,330)" to="(1460,330)"/> <wire from="(1250,1340)" to="(1250,1350)"/> <wire from="(970,660)" to="(970,1190)"/> <wire from="(1120,370)" to="(1120,640)"/> <wire from="(380,500)" to="(380,590)"/> <wire from="(120,1270)" to="(150,1270)"/> <wire from="(120,790)" to="(150,790)"/> <wire from="(1520,450)" to="(1530,450)"/> <wire from="(380,750)" to="(390,750)"/> <wire from="(380,1070)" to="(390,1070)"/> <wire from="(280,650)" to="(290,650)"/> <wire from="(380,110)" to="(390,110)"/> <wire from="(380,430)" to="(390,430)"/> <wire from="(470,420)" to="(550,420)"/> <wire from="(920,650)" to="(930,650)"/> <wire from="(870,1210)" to="(1010,1210)"/> <wire from="(870,250)" to="(1010,250)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(1000,410)" to="(1010,410)"/> <wire from="(1000,90)" to="(1010,90)"/> <wire from="(750,640)" to="(760,640)"/> <wire from="(730,620)" to="(740,620)"/> <wire from="(600,650)" to="(610,650)"/> <wire from="(960,780)" to="(1010,780)"/> <wire from="(1530,1110)" to="(1530,1130)"/> <wire from="(1170,650)" to="(1170,800)"/> <wire from="(170,100)" to="(170,170)"/> <wire from="(1520,140)" to="(1520,170)"/> <wire from="(220,1270)" to="(850,1270)"/> <wire from="(120,100)" to="(170,100)"/> <wire from="(740,620)" to="(740,1290)"/> <wire from="(600,430)" to="(600,640)"/> <wire from="(1280,1340)" to="(1280,1350)"/> <wire from="(120,1240)" to="(150,1240)"/> <wire from="(1400,620)" to="(1410,620)"/> <wire from="(1270,650)" to="(1280,650)"/> <wire from="(170,880)" to="(260,880)"/> <wire from="(1320,580)" to="(1320,640)"/> <wire from="(240,540)" to="(390,540)"/> <wire from="(150,850)" to="(150,890)"/> <wire from="(120,610)" to="(140,610)"/> <wire from="(1100,1100)" to="(1230,1100)"/> <wire from="(1260,40)" to="(1260,100)"/> <wire from="(380,880)" to="(390,880)"/> <wire from="(380,1040)" to="(390,1040)"/> <wire from="(340,1300)" to="(800,1300)"/> <wire from="(470,810)" to="(480,810)"/> <wire from="(470,140)" to="(610,140)"/> <wire from="(380,80)" to="(390,80)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(140,1280)" to="(150,1280)"/> <wire from="(980,650)" to="(980,900)"/> <wire from="(1000,380)" to="(1010,380)"/> <wire from="(1400,210)" to="(1400,320)"/> <wire from="(930,530)" to="(1010,530)"/> <wire from="(340,650)" to="(340,900)"/> <wire from="(670,1340)" to="(670,1350)"/> <wire from="(960,750)" to="(1010,750)"/> <wire from="(1520,1070)" to="(1520,1090)"/> <wire from="(890,840)" to="(940,840)"/> <wire from="(1030,1250)" to="(1330,1250)"/> <wire from="(1270,1300)" to="(1270,1320)"/> <wire from="(470,1060)" to="(520,1060)"/> <wire from="(1440,590)" to="(1440,1130)"/> <wire from="(1380,280)" to="(1380,630)"/> <wire from="(120,390)" to="(170,390)"/> <wire from="(520,1060)" to="(520,1130)"/> <wire from="(480,810)" to="(600,810)"/> <wire from="(850,670)" to="(850,1270)"/> <wire from="(410,960)" to="(700,960)"/> <wire from="(830,190)" to="(830,1170)"/> <wire from="(1520,350)" to="(1570,350)"/> <wire from="(1070,940)" to="(1070,950)"/> <wire from="(1030,290)" to="(1330,290)"/> <wire from="(490,770)" to="(490,990)"/> <wire from="(1530,440)" to="(1530,450)"/> <wire from="(120,1210)" to="(150,1210)"/> <wire from="(120,730)" to="(150,730)"/> <wire from="(960,460)" to="(980,460)"/> <wire from="(120,480)" to="(210,480)"/> <wire from="(230,660)" to="(230,1210)"/> <wire from="(560,1180)" to="(580,1180)"/> <wire from="(1410,620)" to="(1410,1320)"/> <wire from="(870,660)" to="(870,1210)"/> <wire from="(470,770)" to="(490,770)"/> <wire from="(1310,1370)" to="(1380,1370)"/> <wire from="(500,650)" to="(510,650)"/> <wire from="(610,660)" to="(610,1100)"/> <wire from="(870,250)" to="(870,630)"/> <wire from="(470,1100)" to="(480,1100)"/> <wire from="(330,640)" to="(340,640)"/> <wire from="(380,210)" to="(390,210)"/> <wire from="(380,370)" to="(390,370)"/> <wire from="(970,640)" to="(980,640)"/> <wire from="(1360,100)" to="(1570,100)"/> <wire from="(1110,100)" to="(1260,100)"/> <wire from="(650,640)" to="(660,640)"/> <wire from="(230,250)" to="(230,630)"/> <comp lib="0" loc="(1570,800)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1010,360)" name="ALU_ODD_BIT"> <a name="label" val="5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,1270)" name="Pin"> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(1500,1030)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DC3"/> </comp> <comp lib="0" loc="(1570,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1310,1320)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="0" loc="(1570,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1350,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,1240)" name="Pin"> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(360,840)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(1570,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,40)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="carry4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(1300,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,10)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/carry3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(210,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(360,170)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(120,850)" name="Pin"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(1000,1170)" name="Constant"/> <comp lib="0" loc="(120,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADD"/> </comp> <comp lib="0" loc="(1500,850)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(530,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1400,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,1130)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,1210)" name="Pin"> <a name="label" val="ADL3"/> </comp> <comp loc="(1010,70)" name="ALU_EVEN_BIT"> <a name="label" val="4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1570,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,880)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(630,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,1030)" name="Pin"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(940,840)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NDB/ADD"/> </comp> <comp lib="0" loc="(1570,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="carry6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(610,1170)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(750,1320)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="0" loc="(1570,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,1120)" name="Pin"> <a name="label" val="ADL0"/> </comp> <comp lib="1" loc="(550,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(850,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,590)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(390,740)" name="ALU_EVEN_BIT"> <a name="label" val="2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(780,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(260,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,1250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1500,320)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(980,1130)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(1270,1320)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp loc="(390,70)" name="ALU_EVEN_BIT"> <a name="label" val="0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1570,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,610)" name="Pin"> <a name="label" val="SB1"/> </comp> <comp loc="(390,360)" name="ALU_ODD_BIT"> <a name="label" val="1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,1330)" name="Pin"> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(1500,210)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/carry7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1300)" name="Pin"> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(980,460)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(1380,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="BI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1150,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,760)" name="Pin"> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(980,170)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(120,580)" name="Pin"> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(120,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SUMS"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> </comp> <comp lib="0" loc="(1250,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,700)" name="Pin"> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(900,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(360,1130)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(120,730)" name="Pin"> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(170,1140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,790)" name="Pin"> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(1570,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(1570,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,150)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(1570,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(1570,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(390,1030)" name="ALU_ODD_BIT"> <a name="label" val="3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1570,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,610)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,1160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1060)" name="Pin"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(950,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1200,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(750,1370)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(120,940)" name="Pin"> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1500,480)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(1010,1030)" name="ALU_ODD_BIT"> <a name="label" val="7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/ADD"/> </comp> <comp lib="0" loc="(1570,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/cin"/> </comp> <comp lib="0" loc="(1570,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1500,750)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1310,1370)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(710,1320)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="0" loc="(1570,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1000)" name="Pin"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(580,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,670)" name="Pin"> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(1570,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,710)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,880)" name="Pin"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(1570,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="res4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1570,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(360,460)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(1570,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ADD"/> </comp> <comp lib="0" loc="(120,970)" name="Pin"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(120,910)" name="Pin"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1570,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,640)" name="Pin"> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(820,1370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1010,740)" name="ALU_EVEN_BIT"> <a name="label" val="6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(680,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,980)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,1180)" name="Pin"> <a name="label" val="ADL2"/> </comp> </circuit> <circuit name="ALU_EVEN_BIT"> <a name="circuit" val="ALU_EVEN_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="41">ALU_EVEN_BIT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="183">/cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="63">NDB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="133">nand</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="93">SB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="74">DB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="123">nor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="202">pres</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="154">SUMS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="234">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="133">ORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="113">ANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="83">0/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="143">SRS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="143">xor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="244">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="123">EORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="114" y="93">cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="223">SBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="104">ADL/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="116" y="73">/res</text> <circ-port height="8" pin="120,60" width="8" x="46" y="56"/> <circ-port height="8" pin="120,90" width="8" x="46" y="66"/> <circ-port height="8" pin="120,120" width="8" x="46" y="76"/> <circ-port height="8" pin="120,150" width="8" x="46" y="86"/> <circ-port height="8" pin="120,180" width="8" x="46" y="96"/> <circ-port height="8" pin="120,290" width="8" x="46" y="106"/> <circ-port height="8" pin="120,320" width="8" x="46" y="116"/> <circ-port height="8" pin="120,350" width="8" x="46" y="126"/> <circ-port height="8" pin="120,380" width="8" x="46" y="136"/> <circ-port height="8" pin="120,410" width="8" x="46" y="146"/> <circ-port height="8" pin="120,470" width="8" x="46" y="176"/> <circ-port height="8" pin="120,500" width="8" x="46" y="196"/> <circ-port height="8" pin="120,590" width="8" x="46" y="216"/> <circ-port height="8" pin="120,620" width="8" x="46" y="226"/> <circ-port height="8" pin="120,650" width="8" x="46" y="236"/> <circ-port height="10" pin="690,100" width="10" x="125" y="65"/> <circ-port height="10" pin="690,130" width="10" x="125" y="85"/> <circ-port height="10" pin="690,240" width="10" x="125" y="115"/> <circ-port height="10" pin="690,270" width="10" x="125" y="125"/> <circ-port height="10" pin="690,300" width="10" x="125" y="135"/> <circ-port height="10" pin="390,150" width="10" x="65" y="255"/> <circ-port height="10" pin="390,300" width="10" x="105" y="255"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(420,210)" to="(420,280)"/> <wire from="(320,710)" to="(380,710)"/> <wire from="(420,490)" to="(480,490)"/> <wire from="(580,180)" to="(630,180)"/> <wire from="(240,320)" to="(240,330)"/> <wire from="(330,270)" to="(330,410)"/> <wire from="(120,350)" to="(560,350)"/> <wire from="(330,410)" to="(380,410)"/> <wire from="(320,620)" to="(440,620)"/> <wire from="(650,100)" to="(690,100)"/> <wire from="(540,300)" to="(640,300)"/> <wire from="(160,30)" to="(160,120)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(250,290)" to="(250,320)"/> <wire from="(170,210)" to="(270,210)"/> <wire from="(230,380)" to="(580,380)"/> <wire from="(310,260)" to="(470,260)"/> <wire from="(670,300)" to="(690,300)"/> <wire from="(340,210)" to="(360,210)"/> <wire from="(400,70)" to="(420,70)"/> <wire from="(250,640)" to="(250,750)"/> <wire from="(330,530)" to="(330,570)"/> <wire from="(570,140)" to="(570,370)"/> <wire from="(250,470)" to="(250,640)"/> <wire from="(200,150)" to="(220,150)"/> <wire from="(330,530)" to="(480,530)"/> <wire from="(420,700)" to="(430,700)"/> <wire from="(290,590)" to="(290,770)"/> <wire from="(120,60)" to="(200,60)"/> <wire from="(240,120)" to="(240,170)"/> <wire from="(170,70)" to="(250,70)"/> <wire from="(120,620)" to="(200,620)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(480,490)" to="(620,490)"/> <wire from="(330,570)" to="(340,570)"/> <wire from="(360,640)" to="(360,690)"/> <wire from="(120,590)" to="(190,590)"/> <wire from="(540,120)" to="(620,120)"/> <wire from="(250,750)" to="(380,750)"/> <wire from="(540,120)" to="(540,300)"/> <wire from="(310,500)" to="(380,500)"/> <wire from="(640,200)" to="(650,200)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(640,120)" to="(650,120)"/> <wire from="(640,80)" to="(650,80)"/> <wire from="(640,40)" to="(650,40)"/> <wire from="(310,430)" to="(310,500)"/> <wire from="(330,410)" to="(330,480)"/> <wire from="(430,760)" to="(430,770)"/> <wire from="(490,70)" to="(490,270)"/> <wire from="(430,680)" to="(430,700)"/> <wire from="(170,180)" to="(170,210)"/> <wire from="(380,280)" to="(420,280)"/> <wire from="(650,100)" to="(650,120)"/> <wire from="(120,650)" to="(220,650)"/> <wire from="(430,770)" to="(470,770)"/> <wire from="(600,270)" to="(600,420)"/> <wire from="(270,90)" to="(360,90)"/> <wire from="(600,40)" to="(620,40)"/> <wire from="(360,640)" to="(380,640)"/> <wire from="(270,390)" to="(270,500)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(220,150)" to="(220,190)"/> <wire from="(450,420)" to="(600,420)"/> <wire from="(310,260)" to="(310,430)"/> <wire from="(480,490)" to="(480,530)"/> <wire from="(430,680)" to="(440,680)"/> <wire from="(460,790)" to="(470,790)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(620,240)" to="(620,490)"/> <wire from="(350,640)" to="(360,640)"/> <wire from="(250,640)" to="(330,640)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(190,90)" to="(190,590)"/> <wire from="(250,320)" to="(520,320)"/> <wire from="(550,100)" to="(630,100)"/> <wire from="(270,390)" to="(530,390)"/> <wire from="(420,70)" to="(420,130)"/> <wire from="(140,130)" to="(270,130)"/> <wire from="(120,470)" to="(250,470)"/> <wire from="(310,430)" to="(380,430)"/> <wire from="(310,590)" to="(380,590)"/> <wire from="(270,530)" to="(270,790)"/> <wire from="(250,30)" to="(250,40)"/> <wire from="(250,70)" to="(250,80)"/> <wire from="(120,320)" to="(240,320)"/> <wire from="(190,90)" to="(240,90)"/> <wire from="(570,140)" to="(630,140)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(270,130)" to="(270,140)"/> <wire from="(270,170)" to="(270,180)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(120,410)" to="(230,410)"/> <wire from="(380,280)" to="(380,300)"/> <wire from="(640,300)" to="(640,580)"/> <wire from="(630,220)" to="(670,220)"/> <wire from="(270,790)" to="(440,790)"/> <wire from="(200,150)" to="(200,620)"/> <wire from="(500,670)" to="(610,670)"/> <wire from="(380,130)" to="(420,130)"/> <wire from="(430,660)" to="(470,660)"/> <wire from="(610,200)" to="(610,670)"/> <wire from="(160,30)" to="(250,30)"/> <wire from="(420,420)" to="(450,420)"/> <wire from="(120,500)" to="(270,500)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,690)" to="(380,690)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(560,60)" to="(560,350)"/> <wire from="(520,20)" to="(520,320)"/> <wire from="(290,150)" to="(290,190)"/> <wire from="(290,190)" to="(290,230)"/> <wire from="(270,50)" to="(270,90)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(320,620)" to="(320,660)"/> <wire from="(550,100)" to="(550,330)"/> <wire from="(530,160)" to="(530,390)"/> <wire from="(530,160)" to="(620,160)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(600,270)" to="(690,270)"/> <wire from="(420,760)" to="(430,760)"/> <wire from="(310,540)" to="(450,540)"/> <wire from="(460,680)" to="(470,680)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(230,50)" to="(240,50)"/> <wire from="(470,210)" to="(470,260)"/> <wire from="(500,780)" to="(630,780)"/> <wire from="(320,660)" to="(320,710)"/> <wire from="(420,70)" to="(490,70)"/> <wire from="(200,60)" to="(200,120)"/> <wire from="(640,300)" to="(650,300)"/> <wire from="(450,420)" to="(450,540)"/> <wire from="(440,580)" to="(640,580)"/> <wire from="(580,180)" to="(580,380)"/> <wire from="(270,530)" to="(330,530)"/> <wire from="(320,660)" to="(380,660)"/> <wire from="(630,20)" to="(630,30)"/> <wire from="(630,100)" to="(630,110)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(630,140)" to="(630,150)"/> <wire from="(630,180)" to="(630,190)"/> <wire from="(420,210)" to="(470,210)"/> <wire from="(140,370)" to="(140,380)"/> <wire from="(240,330)" to="(550,330)"/> <wire from="(330,480)" to="(380,480)"/> <wire from="(120,150)" to="(170,150)"/> <wire from="(140,370)" to="(570,370)"/> <wire from="(670,130)" to="(670,220)"/> <wire from="(380,130)" to="(380,150)"/> <wire from="(170,70)" to="(170,150)"/> <wire from="(520,20)" to="(630,20)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(200,120)" to="(240,120)"/> <wire from="(650,80)" to="(650,100)"/> <wire from="(230,380)" to="(230,410)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(650,160)" to="(650,200)"/> <wire from="(650,120)" to="(650,160)"/> <wire from="(650,40)" to="(650,80)"/> <wire from="(290,770)" to="(380,770)"/> <wire from="(330,270)" to="(490,270)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(220,230)" to="(220,650)"/> <wire from="(590,80)" to="(590,240)"/> <wire from="(290,590)" to="(310,590)"/> <wire from="(140,90)" to="(140,130)"/> <wire from="(590,80)" to="(620,80)"/> <wire from="(590,240)" to="(620,240)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(600,40)" to="(600,270)"/> <wire from="(420,650)" to="(430,650)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(560,60)" to="(630,60)"/> <wire from="(620,240)" to="(690,240)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(260,50)" to="(270,50)"/> <wire from="(310,540)" to="(310,590)"/> <wire from="(630,220)" to="(630,780)"/> <wire from="(120,290)" to="(250,290)"/> <wire from="(290,230)" to="(360,230)"/> <wire from="(610,200)" to="(620,200)"/> <comp lib="1" loc="(420,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(340,70)" name="Constant"/> <comp lib="1" loc="(640,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(260,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/cin"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NDB/ADD"/> </comp> <comp lib="0" loc="(390,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ADD"/> </comp> <comp lib="1" loc="(420,420)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(670,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(400,558)" name="Text"> <a name="text" val="xnor"/> </comp> <comp lib="1" loc="(420,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/res"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SUMS"/> </comp> <comp lib="1" loc="(350,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="label" val="SBx"/> </comp> <comp lib="1" loc="(640,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(420,580)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,650)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(460,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,620)" name="Pin"> <a name="label" val="DBx"/> </comp> <comp lib="1" loc="(640,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(690,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,780)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(250,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(640,40)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(260,50)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(420,760)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(640,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="prev_res"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp loc="(400,80)" name="D_Latch"> <a name="label" val="AI"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(690,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="label" val="ADLx"/> </comp> <comp lib="1" loc="(280,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(415,677)" name="Text"> <a name="text" val="xor"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(230,50)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/ADD"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ORS"/> </comp> <comp lib="1" loc="(280,190)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(400,220)" name="D_Latch"> <a name="label" val="BI"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADD"/> </comp> </circuit> <circuit name="ALU_ODD_BIT"> <a name="circuit" val="ALU_ODD_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="41">ALU_ODD_BIT</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="183">cin</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="63">NDB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="133">nand</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="93">SB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="74">DB/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="123">nor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="202">pres</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="154">SUMS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="234">DBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="133">ORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="113">ANDS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="83">0/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="143">SRS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="143">xor</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="244">ADLx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="123">EORS</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="114" y="93">/cout</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="223">SBx</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="104">ADL/ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="116" y="73">/res</text> <circ-port height="8" pin="120,60" width="8" x="46" y="56"/> <circ-port height="8" pin="120,90" width="8" x="46" y="66"/> <circ-port height="8" pin="120,120" width="8" x="46" y="76"/> <circ-port height="8" pin="120,150" width="8" x="46" y="86"/> <circ-port height="8" pin="120,180" width="8" x="46" y="96"/> <circ-port height="8" pin="120,290" width="8" x="46" y="106"/> <circ-port height="8" pin="120,320" width="8" x="46" y="116"/> <circ-port height="8" pin="120,350" width="8" x="46" y="126"/> <circ-port height="8" pin="120,380" width="8" x="46" y="136"/> <circ-port height="8" pin="120,410" width="8" x="46" y="146"/> <circ-port height="8" pin="120,470" width="8" x="46" y="176"/> <circ-port height="8" pin="120,500" width="8" x="46" y="196"/> <circ-port height="8" pin="120,590" width="8" x="46" y="216"/> <circ-port height="8" pin="120,620" width="8" x="46" y="226"/> <circ-port height="8" pin="120,650" width="8" x="46" y="236"/> <circ-port height="10" pin="690,100" width="10" x="125" y="65"/> <circ-port height="10" pin="690,130" width="10" x="125" y="85"/> <circ-port height="10" pin="690,240" width="10" x="125" y="115"/> <circ-port height="10" pin="690,270" width="10" x="125" y="125"/> <circ-port height="10" pin="690,300" width="10" x="125" y="135"/> <circ-port height="10" pin="390,150" width="10" x="65" y="255"/> <circ-port height="10" pin="390,300" width="10" x="105" y="255"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(300,610)" to="(360,610)"/> <wire from="(420,210)" to="(420,280)"/> <wire from="(320,710)" to="(380,710)"/> <wire from="(420,490)" to="(480,490)"/> <wire from="(580,180)" to="(630,180)"/> <wire from="(240,320)" to="(240,330)"/> <wire from="(330,270)" to="(330,410)"/> <wire from="(120,350)" to="(560,350)"/> <wire from="(330,410)" to="(380,410)"/> <wire from="(320,620)" to="(440,620)"/> <wire from="(650,100)" to="(690,100)"/> <wire from="(540,300)" to="(640,300)"/> <wire from="(160,30)" to="(160,120)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(250,290)" to="(250,320)"/> <wire from="(170,210)" to="(270,210)"/> <wire from="(230,380)" to="(580,380)"/> <wire from="(310,260)" to="(470,260)"/> <wire from="(340,210)" to="(360,210)"/> <wire from="(340,570)" to="(360,570)"/> <wire from="(400,70)" to="(420,70)"/> <wire from="(250,640)" to="(250,750)"/> <wire from="(250,470)" to="(250,640)"/> <wire from="(570,140)" to="(570,370)"/> <wire from="(200,150)" to="(220,150)"/> <wire from="(420,700)" to="(430,700)"/> <wire from="(300,790)" to="(440,790)"/> <wire from="(120,60)" to="(200,60)"/> <wire from="(240,120)" to="(240,170)"/> <wire from="(120,620)" to="(200,620)"/> <wire from="(170,70)" to="(250,70)"/> <wire from="(480,490)" to="(620,490)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(360,640)" to="(360,690)"/> <wire from="(120,590)" to="(190,590)"/> <wire from="(540,120)" to="(620,120)"/> <wire from="(250,750)" to="(380,750)"/> <wire from="(540,120)" to="(540,300)"/> <wire from="(310,500)" to="(380,500)"/> <wire from="(640,200)" to="(650,200)"/> <wire from="(640,120)" to="(650,120)"/> <wire from="(640,40)" to="(650,40)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(640,80)" to="(650,80)"/> <wire from="(310,430)" to="(310,500)"/> <wire from="(330,410)" to="(330,480)"/> <wire from="(430,760)" to="(430,770)"/> <wire from="(490,70)" to="(490,270)"/> <wire from="(430,680)" to="(430,700)"/> <wire from="(270,590)" to="(380,590)"/> <wire from="(290,540)" to="(290,570)"/> <wire from="(170,180)" to="(170,210)"/> <wire from="(380,280)" to="(420,280)"/> <wire from="(650,100)" to="(650,120)"/> <wire from="(120,650)" to="(220,650)"/> <wire from="(430,770)" to="(470,770)"/> <wire from="(600,270)" to="(600,420)"/> <wire from="(270,90)" to="(360,90)"/> <wire from="(600,40)" to="(620,40)"/> <wire from="(360,640)" to="(380,640)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(270,390)" to="(270,500)"/> <wire from="(220,150)" to="(220,190)"/> <wire from="(450,420)" to="(600,420)"/> <wire from="(360,570)" to="(360,610)"/> <wire from="(310,260)" to="(310,430)"/> <wire from="(480,490)" to="(480,530)"/> <wire from="(430,680)" to="(440,680)"/> <wire from="(300,610)" to="(300,790)"/> <wire from="(460,790)" to="(470,790)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(620,240)" to="(620,490)"/> <wire from="(350,640)" to="(360,640)"/> <wire from="(250,640)" to="(330,640)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(190,90)" to="(190,590)"/> <wire from="(250,320)" to="(520,320)"/> <wire from="(270,390)" to="(530,390)"/> <wire from="(550,100)" to="(630,100)"/> <wire from="(420,70)" to="(420,130)"/> <wire from="(140,130)" to="(270,130)"/> <wire from="(120,470)" to="(250,470)"/> <wire from="(310,430)" to="(380,430)"/> <wire from="(640,300)" to="(690,300)"/> <wire from="(250,30)" to="(250,40)"/> <wire from="(250,70)" to="(250,80)"/> <wire from="(120,320)" to="(240,320)"/> <wire from="(190,90)" to="(240,90)"/> <wire from="(570,140)" to="(630,140)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(270,130)" to="(270,140)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(270,170)" to="(270,180)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(120,410)" to="(230,410)"/> <wire from="(640,300)" to="(640,580)"/> <wire from="(380,280)" to="(380,300)"/> <wire from="(630,220)" to="(670,220)"/> <wire from="(500,670)" to="(610,670)"/> <wire from="(200,150)" to="(200,620)"/> <wire from="(380,130)" to="(420,130)"/> <wire from="(430,660)" to="(470,660)"/> <wire from="(610,200)" to="(610,670)"/> <wire from="(160,30)" to="(250,30)"/> <wire from="(420,420)" to="(450,420)"/> <wire from="(290,540)" to="(450,540)"/> <wire from="(290,570)" to="(320,570)"/> <wire from="(120,500)" to="(270,500)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(360,690)" to="(380,690)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,770)" to="(380,770)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(560,60)" to="(560,350)"/> <wire from="(520,20)" to="(520,320)"/> <wire from="(290,150)" to="(290,190)"/> <wire from="(270,50)" to="(270,90)"/> <wire from="(290,190)" to="(290,230)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(320,620)" to="(320,660)"/> <wire from="(550,100)" to="(550,330)"/> <wire from="(530,160)" to="(530,390)"/> <wire from="(530,160)" to="(620,160)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(600,270)" to="(690,270)"/> <wire from="(420,760)" to="(430,760)"/> <wire from="(270,590)" to="(270,770)"/> <wire from="(460,680)" to="(470,680)"/> <wire from="(230,50)" to="(240,50)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(470,210)" to="(470,260)"/> <wire from="(500,780)" to="(630,780)"/> <wire from="(320,660)" to="(320,710)"/> <wire from="(270,530)" to="(270,590)"/> <wire from="(420,70)" to="(490,70)"/> <wire from="(200,60)" to="(200,120)"/> <wire from="(450,420)" to="(450,540)"/> <wire from="(440,580)" to="(640,580)"/> <wire from="(580,180)" to="(580,380)"/> <wire from="(320,660)" to="(380,660)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(630,140)" to="(630,150)"/> <wire from="(630,20)" to="(630,30)"/> <wire from="(630,100)" to="(630,110)"/> <wire from="(630,180)" to="(630,190)"/> <wire from="(140,370)" to="(140,380)"/> <wire from="(420,210)" to="(470,210)"/> <wire from="(240,330)" to="(550,330)"/> <wire from="(330,480)" to="(380,480)"/> <wire from="(120,150)" to="(170,150)"/> <wire from="(140,370)" to="(570,370)"/> <wire from="(670,130)" to="(670,220)"/> <wire from="(380,130)" to="(380,150)"/> <wire from="(170,70)" to="(170,150)"/> <wire from="(520,20)" to="(630,20)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(200,120)" to="(240,120)"/> <wire from="(650,80)" to="(650,100)"/> <wire from="(230,380)" to="(230,410)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(650,160)" to="(650,200)"/> <wire from="(650,120)" to="(650,160)"/> <wire from="(650,40)" to="(650,80)"/> <wire from="(330,270)" to="(490,270)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(220,230)" to="(220,650)"/> <wire from="(590,80)" to="(590,240)"/> <wire from="(140,90)" to="(140,130)"/> <wire from="(590,80)" to="(620,80)"/> <wire from="(270,530)" to="(480,530)"/> <wire from="(590,240)" to="(620,240)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(600,40)" to="(600,270)"/> <wire from="(420,650)" to="(430,650)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(560,60)" to="(630,60)"/> <wire from="(620,240)" to="(690,240)"/> <wire from="(260,50)" to="(270,50)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(630,220)" to="(630,780)"/> <wire from="(120,290)" to="(250,290)"/> <wire from="(290,230)" to="(360,230)"/> <wire from="(270,770)" to="(340,770)"/> <wire from="(610,200)" to="(620,200)"/> <comp lib="0" loc="(120,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADD"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nor"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,780)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(640,40)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(690,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/cout"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(640,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EORS"/> </comp> <comp lib="1" loc="(420,760)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(230,50)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="xor"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(390,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="AI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(640,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/ADD"/> </comp> <comp lib="1" loc="(260,50)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(400,558)" name="Text"> <a name="text" val="xor"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp lib="0" loc="(340,70)" name="Constant"/> <comp lib="0" loc="(120,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SUMS"/> </comp> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="label" val="SBx"/> </comp> <comp lib="1" loc="(640,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(400,80)" name="D_Latch"> <a name="label" val="AI"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(340,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SRS"/> </comp> <comp lib="1" loc="(420,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(415,677)" name="Text"> <a name="text" val="xor"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADL/ADD"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="cin"/> </comp> <comp lib="1" loc="(350,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,190)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NDB/ADD"/> </comp> <comp lib="1" loc="(420,420)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,650)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,620)" name="Pin"> <a name="label" val="DBx"/> </comp> <comp lib="1" loc="(420,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/res"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="prev_res"/> </comp> <comp lib="1" loc="(460,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(690,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="nand"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(400,220)" name="D_Latch"> <a name="label" val="BI"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="label" val="ADLx"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BI_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="BCD_CARRY"> <a name="circuit" val="BCD_CARRY"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="100" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="43">BCD_CARRY</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">/ACIN</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="74">carry4</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="102">nors</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="123">nands</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="143">xors</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="74">DC3</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="123" y="94">DC7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="84">/DAA</text> <circ-port height="8" pin="120,140" width="8" x="46" y="56"/> <circ-port height="8" pin="120,180" width="8" x="46" y="66"/> <circ-port height="8" pin="140,380" width="8" x="46" y="96"/> <circ-port height="8" pin="140,480" width="8" x="46" y="116"/> <circ-port height="8" pin="140,580" width="8" x="46" y="136"/> <circ-port height="10" pin="880,200" width="10" x="135" y="65"/> <circ-port height="10" pin="880,510" width="10" x="135" y="85"/> <circ-port height="8" pin="120,220" width="8" x="46" y="76"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(730,70)" to="(730,210)"/> <wire from="(580,500)" to="(630,500)"/> <wire from="(220,90)" to="(220,420)"/> <wire from="(350,150)" to="(350,160)"/> <wire from="(350,490)" to="(520,490)"/> <wire from="(410,480)" to="(520,480)"/> <wire from="(200,100)" to="(200,250)"/> <wire from="(620,140)" to="(620,170)"/> <wire from="(280,440)" to="(570,440)"/> <wire from="(440,150)" to="(440,240)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(430,200)" to="(520,200)"/> <wire from="(680,200)" to="(680,240)"/> <wire from="(120,220)" to="(150,220)"/> <wire from="(550,460)" to="(570,460)"/> <wire from="(670,180)" to="(690,180)"/> <wire from="(770,520)" to="(790,520)"/> <wire from="(730,520)" to="(750,520)"/> <wire from="(350,180)" to="(370,180)"/> <wire from="(240,210)" to="(520,210)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(500,140)" to="(500,180)"/> <wire from="(420,140)" to="(430,140)"/> <wire from="(720,190)" to="(790,190)"/> <wire from="(180,300)" to="(190,300)"/> <wire from="(180,530)" to="(250,530)"/> <wire from="(680,200)" to="(690,200)"/> <wire from="(730,210)" to="(730,520)"/> <wire from="(150,70)" to="(730,70)"/> <wire from="(610,450)" to="(620,450)"/> <wire from="(510,150)" to="(570,150)"/> <wire from="(410,480)" to="(410,610)"/> <wire from="(580,190)" to="(630,190)"/> <wire from="(120,140)" to="(300,140)"/> <wire from="(120,180)" to="(300,180)"/> <wire from="(410,170)" to="(520,170)"/> <wire from="(220,90)" to="(390,90)"/> <wire from="(510,150)" to="(510,230)"/> <wire from="(180,460)" to="(530,460)"/> <wire from="(410,170)" to="(410,270)"/> <wire from="(180,320)" to="(270,320)"/> <wire from="(410,610)" to="(570,610)"/> <wire from="(730,210)" to="(750,210)"/> <wire from="(770,210)" to="(790,210)"/> <wire from="(330,450)" to="(350,450)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(180,560)" to="(460,560)"/> <wire from="(190,190)" to="(190,300)"/> <wire from="(300,510)" to="(300,550)"/> <wire from="(140,380)" to="(160,380)"/> <wire from="(140,580)" to="(160,580)"/> <wire from="(440,90)" to="(440,130)"/> <wire from="(240,210)" to="(240,510)"/> <wire from="(200,250)" to="(540,250)"/> <wire from="(440,130)" to="(450,130)"/> <wire from="(400,170)" to="(410,170)"/> <wire from="(490,140)" to="(500,140)"/> <wire from="(340,150)" to="(350,150)"/> <wire from="(340,190)" to="(350,190)"/> <wire from="(670,240)" to="(680,240)"/> <wire from="(670,560)" to="(680,560)"/> <wire from="(180,450)" to="(310,450)"/> <wire from="(560,250)" to="(570,250)"/> <wire from="(610,260)" to="(620,260)"/> <wire from="(610,140)" to="(620,140)"/> <wire from="(620,550)" to="(630,550)"/> <wire from="(200,100)" to="(390,100)"/> <wire from="(530,230)" to="(530,240)"/> <wire from="(530,550)" to="(530,560)"/> <wire from="(280,440)" to="(280,570)"/> <wire from="(180,510)" to="(240,510)"/> <wire from="(820,510)" to="(880,510)"/> <wire from="(270,240)" to="(270,320)"/> <wire from="(150,70)" to="(150,220)"/> <wire from="(530,230)" to="(630,230)"/> <wire from="(300,390)" to="(410,390)"/> <wire from="(350,590)" to="(570,590)"/> <wire from="(410,90)" to="(440,90)"/> <wire from="(210,160)" to="(300,160)"/> <wire from="(350,160)" to="(370,160)"/> <wire from="(350,450)" to="(350,490)"/> <wire from="(250,230)" to="(250,530)"/> <wire from="(510,90)" to="(510,130)"/> <wire from="(460,520)" to="(460,560)"/> <wire from="(210,160)" to="(210,400)"/> <wire from="(440,90)" to="(510,90)"/> <wire from="(190,190)" to="(320,190)"/> <wire from="(620,480)" to="(630,480)"/> <wire from="(620,250)" to="(620,260)"/> <wire from="(510,130)" to="(570,130)"/> <wire from="(460,520)" to="(520,520)"/> <wire from="(820,200)" to="(880,200)"/> <wire from="(180,550)" to="(300,550)"/> <wire from="(350,180)" to="(350,190)"/> <wire from="(270,240)" to="(440,240)"/> <wire from="(300,180)" to="(300,390)"/> <wire from="(620,450)" to="(620,480)"/> <wire from="(620,570)" to="(620,600)"/> <wire from="(180,420)" to="(220,420)"/> <wire from="(410,390)" to="(410,480)"/> <wire from="(180,570)" to="(280,570)"/> <wire from="(440,240)" to="(530,240)"/> <wire from="(300,510)" to="(520,510)"/> <wire from="(350,490)" to="(350,590)"/> <wire from="(200,250)" to="(200,410)"/> <wire from="(410,270)" to="(570,270)"/> <wire from="(670,490)" to="(690,490)"/> <wire from="(390,100)" to="(390,140)"/> <wire from="(140,480)" to="(160,480)"/> <wire from="(440,150)" to="(450,150)"/> <wire from="(720,500)" to="(790,500)"/> <wire from="(530,550)" to="(600,550)"/> <wire from="(390,140)" to="(400,140)"/> <wire from="(250,230)" to="(510,230)"/> <wire from="(680,510)" to="(680,560)"/> <wire from="(430,140)" to="(430,200)"/> <wire from="(680,510)" to="(690,510)"/> <wire from="(460,560)" to="(530,560)"/> <wire from="(620,170)" to="(630,170)"/> <wire from="(620,250)" to="(630,250)"/> <wire from="(610,600)" to="(620,600)"/> <wire from="(620,570)" to="(630,570)"/> <comp lib="1" loc="(580,190)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(610,600)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(678,261)" name="Text"> <a name="text" val="a"/> </comp> <comp lib="1" loc="(670,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(880,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,580)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(670,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DAA"/> </comp> <comp lib="0" loc="(160,380)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(720,500)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(720,190)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(619,131)" name="Text"> <a name="text" val="b"/> </comp> <comp lib="1" loc="(610,260)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(670,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(340,150)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(880,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DC7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(820,200)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="carry4"/> </comp> <comp lib="1" loc="(340,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,380)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="nor"/> </comp> <comp lib="1" loc="(620,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,500)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(610,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,480)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(670,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(770,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(140,580)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="xor"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ACIN"/> </comp> <comp lib="1" loc="(400,170)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(677,166)" name="Text"> <a name="text" val="~(b | c)"/> </comp> <comp lib="6" loc="(590,185)" name="Text"> <a name="text" val="c"/> </comp> <comp lib="1" loc="(770,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(140,480)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="nand"/> </comp> <comp lib="1" loc="(490,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(410,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="ALU_ADD"> <a name="circuit" val="ALU_ADD"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="120" x="50" y="60"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="50">ADDER_HOLD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="94">ADD/SB06</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="113">ADD/ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="103">ADD/SB7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="143">/res In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="110" y="259">ADD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="214">ADL Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="146" y="124">SB Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="141" y="73">/ADDx Out</text> <circ-port height="8" pin="120,70" width="8" x="46" y="66"/> <circ-port height="8" pin="120,140" width="8" x="46" y="86"/> <circ-port height="8" pin="120,170" width="8" x="46" y="96"/> <circ-port height="8" pin="120,200" width="8" x="46" y="106"/> <circ-port height="8" pin="180,280" width="8" x="46" y="136"/> <circ-port height="10" pin="580,70" width="10" x="165" y="65"/> <circ-port height="10" pin="660,140" width="10" x="165" y="85"/> <circ-port height="10" pin="660,170" width="10" x="165" y="95"/> <circ-port height="10" pin="660,200" width="10" x="165" y="105"/> <circ-port height="10" pin="660,230" width="10" x="165" y="115"/> <circ-port height="10" pin="660,260" width="10" x="165" y="125"/> <circ-port height="10" pin="660,290" width="10" x="165" y="135"/> <circ-port height="10" pin="660,320" width="10" x="165" y="145"/> <circ-port height="10" pin="660,350" width="10" x="165" y="155"/> <circ-port height="10" pin="660,410" width="10" x="165" y="175"/> <circ-port height="10" pin="660,440" width="10" x="165" y="185"/> <circ-port height="10" pin="660,470" width="10" x="165" y="195"/> <circ-port height="10" pin="660,500" width="10" x="165" y="205"/> <circ-port height="10" pin="660,530" width="10" x="165" y="215"/> <circ-port height="10" pin="660,560" width="10" x="165" y="225"/> <circ-port height="10" pin="660,590" width="10" x="165" y="235"/> <circ-port height="10" pin="660,620" width="10" x="165" y="245"/> <circ-port height="10" pin="660,680" width="10" x="105" y="265"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(430,90)" to="(430,480)"/> <wire from="(360,430)" to="(420,430)"/> <wire from="(310,340)" to="(310,410)"/> <wire from="(490,640)" to="(550,640)"/> <wire from="(610,330)" to="(610,340)"/> <wire from="(550,350)" to="(600,350)"/> <wire from="(510,230)" to="(560,230)"/> <wire from="(270,430)" to="(320,430)"/> <wire from="(360,360)" to="(410,360)"/> <wire from="(410,70)" to="(530,70)"/> <wire from="(280,360)" to="(280,380)"/> <wire from="(620,230)" to="(660,230)"/> <wire from="(620,470)" to="(660,470)"/> <wire from="(620,350)" to="(660,350)"/> <wire from="(620,590)" to="(660,590)"/> <wire from="(390,50)" to="(390,200)"/> <wire from="(440,750)" to="(550,750)"/> <wire from="(610,130)" to="(610,160)"/> <wire from="(610,250)" to="(610,280)"/> <wire from="(610,490)" to="(610,520)"/> <wire from="(260,140)" to="(260,170)"/> <wire from="(360,290)" to="(400,290)"/> <wire from="(520,260)" to="(520,430)"/> <wire from="(560,70)" to="(580,70)"/> <wire from="(580,170)" to="(600,170)"/> <wire from="(390,700)" to="(550,700)"/> <wire from="(360,220)" to="(390,220)"/> <wire from="(360,150)" to="(380,150)"/> <wire from="(550,350)" to="(550,640)"/> <wire from="(250,240)" to="(460,240)"/> <wire from="(570,470)" to="(600,470)"/> <wire from="(510,500)" to="(530,500)"/> <wire from="(270,390)" to="(270,430)"/> <wire from="(520,430)" to="(520,530)"/> <wire from="(410,360)" to="(410,720)"/> <wire from="(510,560)" to="(600,560)"/> <wire from="(310,270)" to="(320,270)"/> <wire from="(310,550)" to="(320,550)"/> <wire from="(490,170)" to="(490,220)"/> <wire from="(450,110)" to="(530,110)"/> <wire from="(310,70)" to="(310,130)"/> <wire from="(400,60)" to="(530,60)"/> <wire from="(520,260)" to="(600,260)"/> <wire from="(550,30)" to="(560,30)"/> <wire from="(450,640)" to="(450,760)"/> <wire from="(260,220)" to="(320,220)"/> <wire from="(260,500)" to="(320,500)"/> <wire from="(310,550)" to="(310,620)"/> <wire from="(310,270)" to="(310,340)"/> <wire from="(440,100)" to="(440,550)"/> <wire from="(250,170)" to="(250,240)"/> <wire from="(210,450)" to="(460,450)"/> <wire from="(430,740)" to="(550,740)"/> <wire from="(380,690)" to="(550,690)"/> <wire from="(560,500)" to="(600,500)"/> <wire from="(620,200)" to="(660,200)"/> <wire from="(620,440)" to="(660,440)"/> <wire from="(620,320)" to="(660,320)"/> <wire from="(620,560)" to="(660,560)"/> <wire from="(490,620)" to="(490,640)"/> <wire from="(400,60)" to="(400,270)"/> <wire from="(610,580)" to="(610,610)"/> <wire from="(610,220)" to="(610,250)"/> <wire from="(610,460)" to="(610,490)"/> <wire from="(380,150)" to="(480,150)"/> <wire from="(380,150)" to="(380,690)"/> <wire from="(400,290)" to="(500,290)"/> <wire from="(420,430)" to="(520,430)"/> <wire from="(240,380)" to="(280,380)"/> <wire from="(500,590)" to="(600,590)"/> <wire from="(240,420)" to="(240,640)"/> <wire from="(440,100)" to="(530,100)"/> <wire from="(240,390)" to="(270,390)"/> <wire from="(360,620)" to="(450,620)"/> <wire from="(420,430)" to="(420,730)"/> <wire from="(570,200)" to="(600,200)"/> <wire from="(460,390)" to="(610,390)"/> <wire from="(240,400)" to="(260,400)"/> <wire from="(240,360)" to="(260,360)"/> <wire from="(390,50)" to="(530,50)"/> <wire from="(310,480)" to="(320,480)"/> <wire from="(530,290)" to="(600,290)"/> <wire from="(310,200)" to="(320,200)"/> <wire from="(540,320)" to="(540,570)"/> <wire from="(240,150)" to="(320,150)"/> <wire from="(240,410)" to="(250,410)"/> <wire from="(120,140)" to="(260,140)"/> <wire from="(360,550)" to="(440,550)"/> <wire from="(430,500)" to="(510,500)"/> <wire from="(420,730)" to="(550,730)"/> <wire from="(450,110)" to="(450,620)"/> <wire from="(460,390)" to="(460,450)"/> <wire from="(250,570)" to="(320,570)"/> <wire from="(360,480)" to="(430,480)"/> <wire from="(360,410)" to="(420,410)"/> <wire from="(310,200)" to="(310,270)"/> <wire from="(310,480)" to="(310,550)"/> <wire from="(440,570)" to="(500,570)"/> <wire from="(610,390)" to="(610,400)"/> <wire from="(510,230)" to="(510,360)"/> <wire from="(410,70)" to="(410,340)"/> <wire from="(260,220)" to="(260,360)"/> <wire from="(270,290)" to="(320,290)"/> <wire from="(360,340)" to="(410,340)"/> <wire from="(240,150)" to="(240,350)"/> <wire from="(480,140)" to="(480,150)"/> <wire from="(560,230)" to="(600,230)"/> <wire from="(620,170)" to="(660,170)"/> <wire from="(620,410)" to="(660,410)"/> <wire from="(620,290)" to="(660,290)"/> <wire from="(620,530)" to="(660,530)"/> <wire from="(490,620)" to="(600,620)"/> <wire from="(610,550)" to="(610,580)"/> <wire from="(610,190)" to="(610,220)"/> <wire from="(610,430)" to="(610,460)"/> <wire from="(430,90)" to="(530,90)"/> <wire from="(360,270)" to="(400,270)"/> <wire from="(450,640)" to="(490,640)"/> <wire from="(500,570)" to="(540,570)"/> <wire from="(190,430)" to="(220,430)"/> <wire from="(250,410)" to="(250,570)"/> <wire from="(390,220)" to="(390,700)"/> <wire from="(360,200)" to="(390,200)"/> <wire from="(360,130)" to="(380,130)"/> <wire from="(460,120)" to="(610,120)"/> <wire from="(570,680)" to="(660,680)"/> <wire from="(380,40)" to="(530,40)"/> <wire from="(310,130)" to="(320,130)"/> <wire from="(310,410)" to="(320,410)"/> <wire from="(410,720)" to="(550,720)"/> <wire from="(240,640)" to="(320,640)"/> <wire from="(180,280)" to="(190,280)"/> <wire from="(460,120)" to="(460,170)"/> <wire from="(430,500)" to="(430,740)"/> <wire from="(210,200)" to="(210,450)"/> <wire from="(590,410)" to="(600,410)"/> <wire from="(310,410)" to="(310,480)"/> <wire from="(310,130)" to="(310,200)"/> <wire from="(120,70)" to="(310,70)"/> <wire from="(610,120)" to="(610,130)"/> <wire from="(570,200)" to="(570,470)"/> <wire from="(580,170)" to="(580,440)"/> <wire from="(560,230)" to="(560,500)"/> <wire from="(590,140)" to="(590,410)"/> <wire from="(420,80)" to="(420,410)"/> <wire from="(540,320)" to="(600,320)"/> <wire from="(620,140)" to="(660,140)"/> <wire from="(620,620)" to="(660,620)"/> <wire from="(620,260)" to="(660,260)"/> <wire from="(620,500)" to="(660,500)"/> <wire from="(500,570)" to="(500,590)"/> <wire from="(420,80)" to="(530,80)"/> <wire from="(270,290)" to="(270,370)"/> <wire from="(480,140)" to="(590,140)"/> <wire from="(190,280)" to="(190,430)"/> <wire from="(610,280)" to="(610,310)"/> <wire from="(610,520)" to="(610,550)"/> <wire from="(610,160)" to="(610,190)"/> <wire from="(610,400)" to="(610,430)"/> <wire from="(390,220)" to="(490,220)"/> <wire from="(530,290)" to="(530,500)"/> <wire from="(410,360)" to="(510,360)"/> <wire from="(450,760)" to="(550,760)"/> <wire from="(280,360)" to="(320,360)"/> <wire from="(460,240)" to="(460,330)"/> <wire from="(500,200)" to="(500,290)"/> <wire from="(380,40)" to="(380,130)"/> <wire from="(560,30)" to="(560,70)"/> <wire from="(260,400)" to="(260,500)"/> <wire from="(490,170)" to="(580,170)"/> <wire from="(240,370)" to="(270,370)"/> <wire from="(400,290)" to="(400,710)"/> <wire from="(360,640)" to="(450,640)"/> <wire from="(580,440)" to="(600,440)"/> <wire from="(120,200)" to="(210,200)"/> <wire from="(400,710)" to="(550,710)"/> <wire from="(460,330)" to="(610,330)"/> <wire from="(310,340)" to="(320,340)"/> <wire from="(440,570)" to="(440,750)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(360,570)" to="(440,570)"/> <wire from="(520,530)" to="(600,530)"/> <wire from="(510,500)" to="(510,560)"/> <wire from="(260,170)" to="(460,170)"/> <wire from="(500,200)" to="(570,200)"/> <wire from="(590,140)" to="(600,140)"/> <wire from="(360,500)" to="(430,500)"/> <wire from="(120,170)" to="(250,170)"/> <comp lib="0" loc="(660,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(660,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(550,30)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(660,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADD_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="/ADDx"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,350)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,490)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(570,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(660,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,210)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(620,470)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,630)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/SB7"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/ADL"/> </comp> <comp lib="1" loc="(620,590)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,420)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD/SB06"/> </comp> <comp lib="1" loc="(620,530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(660,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,620)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,140)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(620,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(660,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,280)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(220,430)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(660,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(660,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,280)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="/res"/> </comp> <comp lib="0" loc="(660,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,350)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,500)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,560)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,560)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(660,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ADL7"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="ALU_BCD"> <a name="circuit" val="ALU_BCD"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="200" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="41">BCD</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="84">ACR</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="103">/DAA</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="114">/DSA</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="168">SB In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="233">/ADDx In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="114" y="108">BCD Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="74">/carry3</text> <circ-port height="8" pin="120,70" width="8" x="46" y="56"/> <circ-port height="8" pin="120,140" width="8" x="46" y="76"/> <circ-port height="8" pin="120,210" width="8" x="46" y="96"/> <circ-port height="8" pin="120,240" width="8" x="46" y="106"/> <circ-port height="8" pin="120,400" width="8" x="46" y="126"/> <circ-port height="8" pin="120,430" width="8" x="46" y="136"/> <circ-port height="8" pin="120,460" width="8" x="46" y="146"/> <circ-port height="8" pin="120,490" width="8" x="46" y="156"/> <circ-port height="8" pin="120,630" width="8" x="46" y="166"/> <circ-port height="8" pin="120,660" width="8" x="46" y="176"/> <circ-port height="8" pin="120,690" width="8" x="46" y="186"/> <circ-port height="8" pin="120,720" width="8" x="46" y="196"/> <circ-port height="8" pin="160,870" width="8" x="46" y="226"/> <circ-port height="10" pin="690,400" width="10" x="135" y="65"/> <circ-port height="10" pin="690,430" width="10" x="135" y="75"/> <circ-port height="10" pin="690,460" width="10" x="135" y="85"/> <circ-port height="10" pin="690,490" width="10" x="135" y="95"/> <circ-port height="10" pin="690,630" width="10" x="135" y="105"/> <circ-port height="10" pin="690,660" width="10" x="135" y="115"/> <circ-port height="10" pin="690,690" width="10" x="135" y="125"/> <circ-port height="10" pin="690,720" width="10" x="135" y="135"/> <circ-port height="8" pin="120,110" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(120,400)" to="(690,400)"/> <wire from="(630,460)" to="(690,460)"/> <wire from="(350,410)" to="(470,410)"/> <wire from="(250,120)" to="(250,200)"/> <wire from="(490,600)" to="(790,600)"/> <wire from="(200,850)" to="(240,850)"/> <wire from="(450,640)" to="(450,730)"/> <wire from="(510,700)" to="(530,700)"/> <wire from="(330,270)" to="(360,270)"/> <wire from="(330,670)" to="(360,670)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(440,470)" to="(460,470)"/> <wire from="(400,520)" to="(410,520)"/> <wire from="(300,600)" to="(300,780)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(190,560)" to="(520,560)"/> <wire from="(200,800)" to="(210,800)"/> <wire from="(470,710)" to="(470,760)"/> <wire from="(160,110)" to="(230,110)"/> <wire from="(500,580)" to="(500,640)"/> <wire from="(270,140)" to="(270,260)"/> <wire from="(400,200)" to="(460,200)"/> <wire from="(350,110)" to="(350,180)"/> <wire from="(400,450)" to="(400,460)"/> <wire from="(630,430)" to="(690,430)"/> <wire from="(460,430)" to="(460,440)"/> <wire from="(500,470)" to="(500,480)"/> <wire from="(300,600)" to="(340,600)"/> <wire from="(220,510)" to="(220,540)"/> <wire from="(420,320)" to="(460,320)"/> <wire from="(210,520)" to="(240,520)"/> <wire from="(190,240)" to="(190,280)"/> <wire from="(490,410)" to="(510,410)"/> <wire from="(200,650)" to="(200,690)"/> <wire from="(320,370)" to="(320,410)"/> <wire from="(310,580)" to="(310,750)"/> <wire from="(340,390)" to="(490,390)"/> <wire from="(220,540)" to="(240,540)"/> <wire from="(510,480)" to="(510,530)"/> <wire from="(460,450)" to="(590,450)"/> <wire from="(450,420)" to="(450,480)"/> <wire from="(250,580)" to="(310,580)"/> <wire from="(510,690)" to="(510,700)"/> <wire from="(420,180)" to="(420,320)"/> <wire from="(400,740)" to="(400,750)"/> <wire from="(630,720)" to="(690,720)"/> <wire from="(480,660)" to="(480,670)"/> <wire from="(470,710)" to="(590,710)"/> <wire from="(550,420)" to="(590,420)"/> <wire from="(550,500)" to="(590,500)"/> <wire from="(470,410)" to="(470,430)"/> <wire from="(500,680)" to="(500,700)"/> <wire from="(190,640)" to="(190,720)"/> <wire from="(240,770)" to="(240,850)"/> <wire from="(250,120)" to="(290,120)"/> <wire from="(330,670)" to="(330,700)"/> <wire from="(310,580)" to="(350,580)"/> <wire from="(240,740)" to="(240,770)"/> <wire from="(340,390)" to="(340,490)"/> <wire from="(210,490)" to="(240,490)"/> <wire from="(330,130)" to="(360,130)"/> <wire from="(330,700)" to="(350,700)"/> <wire from="(220,510)" to="(240,510)"/> <wire from="(200,810)" to="(220,810)"/> <wire from="(340,600)" to="(490,600)"/> <wire from="(400,460)" to="(410,460)"/> <wire from="(310,420)" to="(450,420)"/> <wire from="(400,540)" to="(410,540)"/> <wire from="(500,640)" to="(510,640)"/> <wire from="(280,500)" to="(290,500)"/> <wire from="(350,250)" to="(360,250)"/> <wire from="(500,580)" to="(770,580)"/> <wire from="(450,730)" to="(530,730)"/> <wire from="(120,490)" to="(190,490)"/> <wire from="(520,500)" to="(530,500)"/> <wire from="(120,630)" to="(690,630)"/> <wire from="(600,250)" to="(600,390)"/> <wire from="(460,690)" to="(510,690)"/> <wire from="(630,690)" to="(690,690)"/> <wire from="(550,470)" to="(590,470)"/> <wire from="(200,60)" to="(200,140)"/> <wire from="(460,450)" to="(460,470)"/> <wire from="(490,390)" to="(600,390)"/> <wire from="(230,700)" to="(230,720)"/> <wire from="(340,490)" to="(340,520)"/> <wire from="(230,700)" to="(330,700)"/> <wire from="(190,200)" to="(220,200)"/> <wire from="(330,340)" to="(360,340)"/> <wire from="(320,410)" to="(350,410)"/> <wire from="(340,520)" to="(360,520)"/> <wire from="(350,580)" to="(500,580)"/> <wire from="(400,750)" to="(410,750)"/> <wire from="(210,440)" to="(210,490)"/> <wire from="(120,690)" to="(200,690)"/> <wire from="(190,280)" to="(270,280)"/> <wire from="(350,460)" to="(360,460)"/> <wire from="(280,530)" to="(360,530)"/> <wire from="(340,600)" to="(340,720)"/> <wire from="(350,180)" to="(350,250)"/> <wire from="(310,750)" to="(360,750)"/> <wire from="(400,680)" to="(400,690)"/> <wire from="(630,660)" to="(690,660)"/> <wire from="(220,540)" to="(220,810)"/> <wire from="(770,190)" to="(770,580)"/> <wire from="(550,440)" to="(590,440)"/> <wire from="(250,200)" to="(360,200)"/> <wire from="(120,660)" to="(480,660)"/> <wire from="(230,110)" to="(230,140)"/> <wire from="(210,490)" to="(210,520)"/> <wire from="(200,60)" to="(420,60)"/> <wire from="(270,260)" to="(290,260)"/> <wire from="(290,760)" to="(310,760)"/> <wire from="(340,490)" to="(360,490)"/> <wire from="(350,580)" to="(350,690)"/> <wire from="(350,70)" to="(350,110)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(160,870)" to="(180,870)"/> <wire from="(420,180)" to="(430,180)"/> <wire from="(400,480)" to="(410,480)"/> <wire from="(350,110)" to="(360,110)"/> <wire from="(560,130)" to="(560,370)"/> <wire from="(300,780)" to="(360,780)"/> <wire from="(190,200)" to="(190,210)"/> <wire from="(210,440)" to="(330,440)"/> <wire from="(550,650)" to="(590,650)"/> <wire from="(550,730)" to="(590,730)"/> <wire from="(320,370)" to="(560,370)"/> <wire from="(230,750)" to="(230,840)"/> <wire from="(230,720)" to="(230,750)"/> <wire from="(500,680)" to="(590,680)"/> <wire from="(330,440)" to="(360,440)"/> <wire from="(330,760)" to="(360,760)"/> <wire from="(230,750)" to="(250,750)"/> <wire from="(450,180)" to="(460,180)"/> <wire from="(400,690)" to="(410,690)"/> <wire from="(400,770)" to="(410,770)"/> <wire from="(240,770)" to="(250,770)"/> <wire from="(350,320)" to="(360,320)"/> <wire from="(270,280)" to="(270,340)"/> <wire from="(120,720)" to="(190,720)"/> <wire from="(120,240)" to="(190,240)"/> <wire from="(290,730)" to="(360,730)"/> <wire from="(400,250)" to="(600,250)"/> <wire from="(420,60)" to="(420,180)"/> <wire from="(120,460)" to="(310,460)"/> <wire from="(790,330)" to="(790,600)"/> <wire from="(550,700)" to="(590,700)"/> <wire from="(490,390)" to="(490,410)"/> <wire from="(120,70)" to="(350,70)"/> <wire from="(230,140)" to="(270,140)"/> <wire from="(270,340)" to="(310,340)"/> <wire from="(320,550)" to="(360,550)"/> <wire from="(200,840)" to="(230,840)"/> <wire from="(440,760)" to="(470,760)"/> <wire from="(400,130)" to="(560,130)"/> <wire from="(270,280)" to="(290,280)"/> <wire from="(490,660)" to="(510,660)"/> <wire from="(230,720)" to="(250,720)"/> <wire from="(350,690)" to="(360,690)"/> <wire from="(520,500)" to="(520,560)"/> <wire from="(240,740)" to="(250,740)"/> <wire from="(350,410)" to="(350,460)"/> <wire from="(120,210)" to="(190,210)"/> <wire from="(440,530)" to="(510,530)"/> <wire from="(200,650)" to="(460,650)"/> <wire from="(190,640)" to="(450,640)"/> <wire from="(400,340)" to="(460,340)"/> <wire from="(350,250)" to="(350,320)"/> <wire from="(440,700)" to="(500,700)"/> <wire from="(190,490)" to="(190,560)"/> <wire from="(450,480)" to="(500,480)"/> <wire from="(320,410)" to="(320,550)"/> <wire from="(480,670)" to="(530,670)"/> <wire from="(310,500)" to="(360,500)"/> <wire from="(250,600)" to="(300,600)"/> <wire from="(400,510)" to="(400,520)"/> <wire from="(630,490)" to="(690,490)"/> <wire from="(550,670)" to="(590,670)"/> <wire from="(500,330)" to="(790,330)"/> <wire from="(330,440)" to="(330,470)"/> <wire from="(210,520)" to="(210,800)"/> <wire from="(470,430)" to="(510,430)"/> <wire from="(500,470)" to="(530,470)"/> <wire from="(330,470)" to="(350,470)"/> <wire from="(340,720)" to="(360,720)"/> <wire from="(310,420)" to="(310,460)"/> <wire from="(120,430)" to="(460,430)"/> <wire from="(460,650)" to="(460,690)"/> <wire from="(400,710)" to="(410,710)"/> <wire from="(350,180)" to="(360,180)"/> <wire from="(500,190)" to="(770,190)"/> <wire from="(510,480)" to="(590,480)"/> <wire from="(490,600)" to="(490,660)"/> <wire from="(460,440)" to="(530,440)"/> <comp lib="1" loc="(550,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(517,323)" name="Text"> <a name="text" val="DSAH"/> </comp> <comp lib="1" loc="(630,490)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,450)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,660)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(240,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ACR"/> </comp> <comp lib="6" loc="(779,613)" name="Text"> <a name="text" val="DSAH"/> </comp> <comp lib="1" loc="(400,680)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,530)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(400,120)" name="D_Latch"> <a name="label" val="daal_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(400,770)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(280,500)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,460)" name="Pin"> <a name="label" val="SB2"/> </comp> <comp lib="1" loc="(160,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,510)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(582,386)" name="Text"> <a name="text" val="DSAL"/> </comp> <comp lib="1" loc="(330,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,760)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,460)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(280,530)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(400,740)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/carry3"/> </comp> <comp lib="1" loc="(550,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(400,540)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(400,190)" name="D_Latch"> <a name="label" val="daah_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(400,710)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="6" loc="(514,242)" name="Text"> <a name="text" val="DSAL"/> </comp> <comp lib="6" loc="(515,123)" name="Text"> <a name="text" val="DAAL"/> </comp> <comp lib="0" loc="(690,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,430)" name="Pin"> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(690,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(630,690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,400)" name="Pin"> <a name="label" val="SB0"/> </comp> <comp lib="1" loc="(330,130)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(749,575)" name="Text"> <a name="text" val="DAAH"/> </comp> <comp loc="(400,330)" name="D_Latch"> <a name="label" val="dsah_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(630,720)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,490)" name="Pin"> <a name="label" val="SB3"/> </comp> <comp lib="1" loc="(550,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(690,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(450,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(550,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,720)" name="Pin"> <a name="label" val="SB7"/> </comp> <comp lib="1" loc="(440,470)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(160,870)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="/ADDx"/> </comp> <comp lib="1" loc="(550,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(180,870)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(299,376)" name="Text"> <a name="text" val="DAAL"/> </comp> <comp lib="0" loc="(120,630)" name="Pin"> <a name="label" val="SB4"/> </comp> <comp lib="1" loc="(550,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(400,260)" name="D_Latch"> <a name="label" val="dsal_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(630,430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,700)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(690,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DSA"/> </comp> <comp lib="0" loc="(120,660)" name="Pin"> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="label" val="SB6"/> </comp> <comp lib="6" loc="(514,181)" name="Text"> <a name="text" val="DAAH"/> </comp> <comp lib="1" loc="(290,730)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,480)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DAA"/> </comp> <comp lib="1" loc="(330,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(690,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out3"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="ALU_AC"> <a name="circuit" val="ALU_AC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="290" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="41">AC</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="74">PHI2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="94">SB/AC</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="104">AC/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="135">SB/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="114">AC/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="125">SB/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="183">BCD In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="224">SB In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="101" y="331">AC Dbg</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="126" y="263">ADH Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="127" y="243">DB Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="128" y="224">SB Out</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="244">DB In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="263">ADH In</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="294">SB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="304">DB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="314">ADH_Dirty</text> <circ-port height="8" pin="120,70" width="8" x="46" y="66"/> <circ-port height="8" pin="120,150" width="8" x="46" y="86"/> <circ-port height="8" pin="120,180" width="8" x="46" y="96"/> <circ-port height="8" pin="120,210" width="8" x="46" y="106"/> <circ-port height="8" pin="120,240" width="8" x="46" y="116"/> <circ-port height="8" pin="120,270" width="8" x="46" y="126"/> <circ-port height="8" pin="180,410" width="8" x="46" y="176"/> <circ-port height="8" pin="600,310" width="8" x="46" y="216"/> <circ-port height="10" pin="880,310" width="10" x="145" y="215"/> <circ-port height="10" pin="880,380" width="10" x="145" y="235"/> <circ-port height="10" pin="880,450" width="10" x="145" y="255"/> <circ-port height="10" pin="680,10" width="10" x="95" y="335"/> <circ-port height="8" pin="600,380" width="8" x="46" y="236"/> <circ-port height="8" pin="600,450" width="8" x="46" y="256"/> <circ-port height="8" pin="120,560" width="8" x="46" y="286"/> <circ-port height="8" pin="120,590" width="8" x="46" y="296"/> <circ-port height="8" pin="120,620" width="8" x="46" y="306"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(310,420)" to="(310,490)"/> <wire from="(310,140)" to="(310,210)"/> <wire from="(340,130)" to="(340,200)"/> <wire from="(340,410)" to="(340,480)"/> <wire from="(190,90)" to="(830,90)"/> <wire from="(750,570)" to="(870,570)"/> <wire from="(670,550)" to="(720,550)"/> <wire from="(700,40)" to="(700,180)"/> <wire from="(650,280)" to="(650,600)"/> <wire from="(510,10)" to="(680,10)"/> <wire from="(150,620)" to="(150,700)"/> <wire from="(140,120)" to="(310,120)"/> <wire from="(180,60)" to="(800,60)"/> <wire from="(650,680)" to="(760,680)"/> <wire from="(260,430)" to="(300,430)"/> <wire from="(670,50)" to="(670,220)"/> <wire from="(710,190)" to="(860,190)"/> <wire from="(120,620)" to="(150,620)"/> <wire from="(470,30)" to="(470,580)"/> <wire from="(400,30)" to="(400,130)"/> <wire from="(440,580)" to="(470,580)"/> <wire from="(640,230)" to="(660,230)"/> <wire from="(600,310)" to="(620,310)"/> <wire from="(320,220)" to="(350,220)"/> <wire from="(320,500)" to="(350,500)"/> <wire from="(640,270)" to="(800,270)"/> <wire from="(630,530)" to="(630,690)"/> <wire from="(410,30)" to="(410,200)"/> <wire from="(120,150)" to="(140,150)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(430,30)" to="(430,340)"/> <wire from="(830,90)" to="(830,280)"/> <wire from="(340,620)" to="(350,620)"/> <wire from="(220,640)" to="(300,640)"/> <wire from="(340,340)" to="(350,340)"/> <wire from="(220,360)" to="(300,360)"/> <wire from="(510,10)" to="(510,190)"/> <wire from="(220,340)" to="(230,340)"/> <wire from="(420,30)" to="(420,270)"/> <wire from="(190,90)" to="(190,270)"/> <wire from="(230,220)" to="(300,220)"/> <wire from="(440,30)" to="(440,410)"/> <wire from="(230,220)" to="(230,340)"/> <wire from="(120,270)" to="(190,270)"/> <wire from="(720,520)" to="(730,520)"/> <wire from="(730,610)" to="(740,610)"/> <wire from="(310,350)" to="(310,420)"/> <wire from="(340,340)" to="(340,410)"/> <wire from="(450,30)" to="(450,480)"/> <wire from="(650,620)" to="(700,620)"/> <wire from="(120,240)" to="(180,240)"/> <wire from="(120,560)" to="(180,560)"/> <wire from="(460,30)" to="(460,550)"/> <wire from="(120,210)" to="(170,210)"/> <wire from="(310,120)" to="(310,140)"/> <wire from="(730,430)" to="(770,430)"/> <wire from="(830,520)" to="(830,540)"/> <wire from="(120,180)" to="(160,180)"/> <wire from="(750,310)" to="(860,310)"/> <wire from="(840,610)" to="(840,630)"/> <wire from="(800,60)" to="(800,270)"/> <wire from="(670,380)" to="(670,550)"/> <wire from="(120,70)" to="(340,70)"/> <wire from="(320,150)" to="(350,150)"/> <wire from="(160,40)" to="(700,40)"/> <wire from="(320,430)" to="(350,430)"/> <wire from="(180,680)" to="(650,680)"/> <wire from="(220,380)" to="(240,380)"/> <wire from="(340,270)" to="(350,270)"/> <wire from="(340,550)" to="(350,550)"/> <wire from="(220,400)" to="(220,640)"/> <wire from="(220,390)" to="(230,390)"/> <wire from="(650,620)" to="(650,680)"/> <wire from="(340,70)" to="(340,130)"/> <wire from="(390,550)" to="(460,550)"/> <wire from="(740,550)" to="(750,550)"/> <wire from="(240,290)" to="(240,350)"/> <wire from="(600,450)" to="(610,450)"/> <wire from="(310,280)" to="(310,350)"/> <wire from="(390,480)" to="(450,480)"/> <wire from="(310,560)" to="(310,630)"/> <wire from="(780,640)" to="(830,640)"/> <wire from="(340,550)" to="(340,620)"/> <wire from="(340,270)" to="(340,340)"/> <wire from="(620,310)" to="(620,640)"/> <wire from="(770,550)" to="(820,550)"/> <wire from="(650,280)" to="(830,280)"/> <wire from="(240,290)" to="(300,290)"/> <wire from="(860,310)" to="(860,640)"/> <wire from="(390,410)" to="(440,410)"/> <wire from="(160,40)" to="(160,180)"/> <wire from="(170,50)" to="(670,50)"/> <wire from="(690,510)" to="(790,510)"/> <wire from="(700,600)" to="(800,600)"/> <wire from="(780,640)" to="(780,660)"/> <wire from="(220,370)" to="(260,370)"/> <wire from="(870,230)" to="(870,380)"/> <wire from="(770,620)" to="(770,700)"/> <wire from="(620,310)" to="(730,310)"/> <wire from="(140,120)" to="(140,150)"/> <wire from="(390,340)" to="(430,340)"/> <wire from="(860,310)" to="(880,310)"/> <wire from="(850,380)" to="(870,380)"/> <wire from="(170,50)" to="(170,210)"/> <wire from="(390,270)" to="(420,270)"/> <wire from="(320,360)" to="(350,360)"/> <wire from="(320,640)" to="(350,640)"/> <wire from="(390,200)" to="(410,200)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(220,350)" to="(240,350)"/> <wire from="(340,480)" to="(350,480)"/> <wire from="(390,130)" to="(400,130)"/> <wire from="(340,200)" to="(350,200)"/> <wire from="(860,190)" to="(860,310)"/> <wire from="(180,60)" to="(180,240)"/> <wire from="(230,390)" to="(230,570)"/> <wire from="(170,690)" to="(630,690)"/> <wire from="(510,190)" to="(640,190)"/> <wire from="(640,270)" to="(640,510)"/> <wire from="(820,520)" to="(830,520)"/> <wire from="(830,610)" to="(840,610)"/> <wire from="(870,450)" to="(880,450)"/> <wire from="(310,490)" to="(310,560)"/> <wire from="(310,210)" to="(310,280)"/> <wire from="(340,200)" to="(340,270)"/> <wire from="(340,480)" to="(340,550)"/> <wire from="(650,600)" to="(700,600)"/> <wire from="(240,500)" to="(300,500)"/> <wire from="(640,190)" to="(690,190)"/> <wire from="(640,510)" to="(690,510)"/> <wire from="(390,620)" to="(440,620)"/> <wire from="(680,230)" to="(870,230)"/> <wire from="(120,590)" to="(170,590)"/> <wire from="(630,530)" to="(690,530)"/> <wire from="(750,570)" to="(750,640)"/> <wire from="(150,700)" to="(770,700)"/> <wire from="(620,640)" to="(730,640)"/> <wire from="(610,450)" to="(610,660)"/> <wire from="(760,530)" to="(760,680)"/> <wire from="(730,520)" to="(730,540)"/> <wire from="(740,610)" to="(740,630)"/> <wire from="(610,660)" to="(780,660)"/> <wire from="(640,190)" to="(640,230)"/> <wire from="(480,10)" to="(510,10)"/> <wire from="(320,290)" to="(350,290)"/> <wire from="(170,590)" to="(170,690)"/> <wire from="(320,570)" to="(350,570)"/> <wire from="(850,380)" to="(850,550)"/> <wire from="(760,530)" to="(790,530)"/> <wire from="(770,620)" to="(800,620)"/> <wire from="(340,130)" to="(350,130)"/> <wire from="(220,150)" to="(300,150)"/> <wire from="(340,410)" to="(350,410)"/> <wire from="(600,380)" to="(670,380)"/> <wire from="(730,310)" to="(730,430)"/> <wire from="(770,430)" to="(770,550)"/> <wire from="(870,450)" to="(870,570)"/> <wire from="(220,150)" to="(220,330)"/> <wire from="(260,370)" to="(260,430)"/> <wire from="(230,570)" to="(300,570)"/> <wire from="(180,560)" to="(180,680)"/> <wire from="(840,550)" to="(850,550)"/> <wire from="(240,380)" to="(240,500)"/> <wire from="(870,380)" to="(880,380)"/> <wire from="(750,310)" to="(750,550)"/> <wire from="(850,640)" to="(860,640)"/> <comp lib="0" loc="(120,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC/SB"/> </comp> <comp lib="0" loc="(120,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB_Dirty"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/ADH"/> </comp> <comp lib="0" loc="(600,310)" name="Pin"> <a name="width" val="8"/> <a name="label" val="SB_In"/> </comp> <comp lib="1" loc="(320,220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(680,230)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(740,550)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(320,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(680,10)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="AC_Debug"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(320,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/DB"/> </comp> <comp lib="1" loc="(730,610)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(820,520)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,380)" name="Pin"> <a name="width" val="8"/> <a name="label" val="DB_In"/> </comp> <comp lib="1" loc="(850,640)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(320,500)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(390,350)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(750,640)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(880,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="SB_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(830,610)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(390,630)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(390,560)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(200,410)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(390,490)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(720,520)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(880,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="ADH_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB/AC"/> </comp> <comp loc="(390,140)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(180,410)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ins"/> </comp> <comp lib="1" loc="(710,190)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp loc="(390,280)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(600,450)" name="Pin"> <a name="width" val="8"/> <a name="label" val="ADH_In"/> </comp> <comp lib="0" loc="(880,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_Out"/> <a name="labelloc" val="east"/> </comp> <comp loc="(390,420)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(320,570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB_Dirty"/> </comp> <comp lib="0" loc="(120,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADH_Dirty"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC/DB"/> </comp> <comp lib="0" loc="(480,10)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(320,360)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(390,210)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(840,550)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(320,640)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(320,430)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> </circuit> <circuit name="ADD_SB7"> <a name="circuit" val="ADD_SB7"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="115" stroke="#000000" stroke-width="2" width="90" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="48">ADD_SB7</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="111" y="74">#ADD/SB7</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="65" y="74">PHI1</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="65" y="84">PHI2</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="72" y="103">/C_OUT</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="124">/ready</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="62" y="144">SR</text> <text font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="164">/ROR</text> <circ-port height="8" pin="160,50" width="8" x="46" y="66"/> <circ-port height="8" pin="160,80" width="8" x="46" y="76"/> <circ-port height="8" pin="160,140" width="8" x="46" y="96"/> <circ-port height="8" pin="160,230" width="8" x="46" y="116"/> <circ-port height="8" pin="160,350" width="8" x="46" y="136"/> <circ-port height="8" pin="160,460" width="8" x="46" y="156"/> <circ-port height="10" pin="890,410" width="10" x="135" y="65"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(160,460)" to="(800,460)"/> <wire from="(440,220)" to="(630,220)"/> <wire from="(160,50)" to="(220,50)"/> <wire from="(540,140)" to="(540,270)"/> <wire from="(500,80)" to="(810,80)"/> <wire from="(310,250)" to="(310,270)"/> <wire from="(310,210)" to="(310,230)"/> <wire from="(220,50)" to="(710,50)"/> <wire from="(710,50)" to="(810,50)"/> <wire from="(390,80)" to="(500,80)"/> <wire from="(800,380)" to="(800,400)"/> <wire from="(550,430)" to="(720,430)"/> <wire from="(500,310)" to="(540,310)"/> <wire from="(230,270)" to="(260,270)"/> <wire from="(230,80)" to="(390,80)"/> <wire from="(500,310)" to="(500,410)"/> <wire from="(800,420)" to="(800,460)"/> <wire from="(520,330)" to="(540,330)"/> <wire from="(650,260)" to="(670,260)"/> <wire from="(590,250)" to="(620,250)"/> <wire from="(800,400)" to="(830,400)"/> <wire from="(800,420)" to="(830,420)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(760,410)" to="(830,410)"/> <wire from="(710,50)" to="(710,240)"/> <wire from="(590,250)" to="(590,310)"/> <wire from="(160,350)" to="(230,350)"/> <wire from="(710,410)" to="(720,410)"/> <wire from="(390,80)" to="(390,220)"/> <wire from="(230,270)" to="(230,350)"/> <wire from="(230,350)" to="(230,430)"/> <wire from="(760,260)" to="(800,260)"/> <wire from="(200,140)" to="(240,140)"/> <wire from="(630,220)" to="(630,240)"/> <wire from="(710,240)" to="(710,410)"/> <wire from="(520,380)" to="(800,380)"/> <wire from="(870,410)" to="(890,410)"/> <wire from="(500,80)" to="(500,310)"/> <wire from="(220,50)" to="(220,210)"/> <wire from="(280,270)" to="(310,270)"/> <wire from="(280,210)" to="(310,210)"/> <wire from="(370,240)" to="(400,240)"/> <wire from="(310,250)" to="(330,250)"/> <wire from="(310,230)" to="(330,230)"/> <wire from="(690,260)" to="(720,260)"/> <wire from="(230,430)" to="(510,430)"/> <wire from="(230,80)" to="(230,120)"/> <wire from="(160,140)" to="(180,140)"/> <wire from="(390,220)" to="(400,220)"/> <wire from="(500,410)" to="(510,410)"/> <wire from="(160,230)" to="(240,230)"/> <wire from="(800,260)" to="(800,380)"/> <wire from="(230,120)" to="(240,120)"/> <wire from="(160,80)" to="(230,80)"/> <wire from="(540,270)" to="(620,270)"/> <wire from="(280,140)" to="(540,140)"/> <wire from="(520,330)" to="(520,380)"/> <wire from="(710,240)" to="(720,240)"/> <wire from="(580,310)" to="(590,310)"/> <comp loc="(440,230)" name="D_Latch"> <a name="label" val="mux_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(280,220)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(760,250)" name="D_Latch"> <a name="label" val="ff_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(280,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(550,420)" name="D_Latch"> <a name="label" val="sr_latch1"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(580,320)" name="D_Latch"> <a name="label" val="ff_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(200,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ROR"/> </comp> <comp lib="1" loc="(690,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ready"/> </comp> <comp lib="0" loc="(890,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#ADD/SB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SR"/> </comp> <comp loc="(280,130)" name="D_Latch"> <a name="label" val="cout_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(870,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="2" loc="(650,260)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="6" loc="(670,338)" name="Text"> <a name="text" val="FF"/> </comp> <comp lib="0" loc="(160,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/C_OUT"/> </comp> <comp lib="1" loc="(370,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(760,420)" name="D_Latch"> <a name="label" val="sr_latch2"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> </circuit> <circuit name="PRECHARGE"> <a name="circuit" val="PRECHARGE"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="105" stroke="#000000" stroke-width="2" width="70" x="50" y="55"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="95">SB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="115">DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">ADL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="153">ADH</text> <text font-family="SansSerif" font-size="8" text-anchor="middle" x="67" y="65">PHI2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="50">PRECHARGE</text> <text font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="74">0/ADD</text> <text font-family="SansSerif" font-size="8" text-anchor="middle" x="72" y="83">SB/ADD</text> <circ-port height="8" pin="130,40" width="8" x="46" y="56"/> <circ-port height="8" pin="190,150" width="8" x="46" y="86"/> <circ-port height="8" pin="190,280" width="8" x="46" y="106"/> <circ-port height="8" pin="190,400" width="8" x="46" y="126"/> <circ-port height="8" pin="190,540" width="8" x="46" y="146"/> <circ-port height="10" pin="360,150" width="10" x="115" y="85"/> <circ-port height="10" pin="360,280" width="10" x="115" y="105"/> <circ-port height="10" pin="360,400" width="10" x="115" y="125"/> <circ-port height="10" pin="360,540" width="10" x="115" y="145"/> <circ-port height="8" pin="130,60" width="8" x="46" y="66"/> <circ-port height="8" pin="130,80" width="8" x="46" y="76"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(310,80)" to="(310,150)"/> <wire from="(210,210)" to="(210,280)"/> <wire from="(200,330)" to="(200,400)"/> <wire from="(200,470)" to="(200,540)"/> <wire from="(260,320)" to="(260,460)"/> <wire from="(160,40)" to="(160,50)"/> <wire from="(160,70)" to="(160,80)"/> <wire from="(310,150)" to="(360,150)"/> <wire from="(310,280)" to="(360,280)"/> <wire from="(310,400)" to="(360,400)"/> <wire from="(310,540)" to="(360,540)"/> <wire from="(200,330)" to="(250,330)"/> <wire from="(200,470)" to="(250,470)"/> <wire from="(260,60)" to="(260,200)"/> <wire from="(220,70)" to="(220,150)"/> <wire from="(260,40)" to="(260,60)"/> <wire from="(220,40)" to="(220,60)"/> <wire from="(130,60)" to="(170,60)"/> <wire from="(220,40)" to="(260,40)"/> <wire from="(210,210)" to="(250,210)"/> <wire from="(130,80)" to="(160,80)"/> <wire from="(190,150)" to="(220,150)"/> <wire from="(220,70)" to="(250,70)"/> <wire from="(280,220)" to="(310,220)"/> <wire from="(280,340)" to="(310,340)"/> <wire from="(280,480)" to="(310,480)"/> <wire from="(280,80)" to="(310,80)"/> <wire from="(230,230)" to="(250,230)"/> <wire from="(230,350)" to="(250,350)"/> <wire from="(230,490)" to="(250,490)"/> <wire from="(200,60)" to="(220,60)"/> <wire from="(190,280)" to="(210,280)"/> <wire from="(160,50)" to="(170,50)"/> <wire from="(160,70)" to="(170,70)"/> <wire from="(240,90)" to="(250,90)"/> <wire from="(190,400)" to="(200,400)"/> <wire from="(190,540)" to="(200,540)"/> <wire from="(130,40)" to="(140,40)"/> <wire from="(310,220)" to="(310,280)"/> <wire from="(310,340)" to="(310,400)"/> <wire from="(310,480)" to="(310,540)"/> <wire from="(260,200)" to="(260,320)"/> <comp lib="0" loc="(230,490)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(360,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="SB_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(360,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="ADL_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(190,150)" name="Pin"> <a name="width" val="8"/> <a name="pull" val="up"/> <a name="label" val="SB_In"/> </comp> <comp lib="2" loc="(280,340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(230,230)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(280,220)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADD"/> </comp> <comp lib="0" loc="(360,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="DB_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(200,60)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(360,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="ADH_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,540)" name="Pin"> <a name="width" val="8"/> <a name="pull" val="up"/> <a name="label" val="ADH_In"/> </comp> <comp lib="2" loc="(280,480)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="width" val="8"/> <a name="pull" val="up"/> <a name="label" val="ADL_In"/> </comp> <comp lib="0" loc="(230,350)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(240,90)" name="Constant"> <a name="width" val="8"/> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(280,80)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(293,622)" name="Text"> <a name="text" val="Take into account that the tristate bus inputs are pulled up to 1, to simulate precharge."/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(190,280)" name="Pin"> <a name="width" val="8"/> <a name="pull" val="up"/> <a name="label" val="DB_In"/> </comp> </circuit> <circuit name="CONST_GEN"> <a name="circuit" val="CONST_GEN"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="103" stroke="#000000" stroke-width="2" width="91" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="84">0/ADL2</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="64">0/ADL0</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="74">0/ADL1</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="94">0/ADH0</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="104">0/ADH17</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="94" y="123">ADL</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="94" y="143">ADH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="46">CONST_GEN</text> <circ-port height="8" pin="110,290" width="8" x="46" y="86"/> <circ-port height="8" pin="110,320" width="8" x="46" y="96"/> <circ-port height="8" pin="110,60" width="8" x="46" y="56"/> <circ-port height="8" pin="110,90" width="8" x="46" y="66"/> <circ-port height="8" pin="110,120" width="8" x="46" y="76"/> <circ-port height="8" pin="170,230" width="8" x="46" y="116"/> <circ-port height="8" pin="160,460" width="8" x="46" y="136"/> <circ-port height="10" pin="500,230" width="10" x="135" y="115"/> <circ-port height="10" pin="460,450" width="10" x="135" y="135"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(220,170)" to="(280,170)"/> <wire from="(190,420)" to="(250,420)"/> <wire from="(290,170)" to="(340,170)"/> <wire from="(220,180)" to="(270,180)"/> <wire from="(190,430)" to="(240,430)"/> <wire from="(110,290)" to="(280,290)"/> <wire from="(270,510)" to="(270,540)"/> <wire from="(270,390)" to="(270,420)"/> <wire from="(220,190)" to="(260,190)"/> <wire from="(190,440)" to="(230,440)"/> <wire from="(250,460)" to="(290,460)"/> <wire from="(390,440)" to="(430,440)"/> <wire from="(170,230)" to="(200,230)"/> <wire from="(220,200)" to="(250,200)"/> <wire from="(190,450)" to="(220,450)"/> <wire from="(340,390)" to="(430,390)"/> <wire from="(420,200)" to="(450,200)"/> <wire from="(200,370)" to="(290,370)"/> <wire from="(220,450)" to="(220,550)"/> <wire from="(110,60)" to="(320,60)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(450,450)" to="(460,450)"/> <wire from="(320,160)" to="(330,160)"/> <wire from="(270,510)" to="(280,510)"/> <wire from="(270,390)" to="(280,390)"/> <wire from="(370,150)" to="(450,150)"/> <wire from="(220,220)" to="(230,220)"/> <wire from="(190,390)" to="(200,390)"/> <wire from="(280,200)" to="(340,200)"/> <wire from="(110,120)" to="(300,120)"/> <wire from="(380,430)" to="(430,430)"/> <wire from="(240,490)" to="(290,490)"/> <wire from="(340,390)" to="(340,410)"/> <wire from="(200,370)" to="(200,390)"/> <wire from="(280,170)" to="(280,200)"/> <wire from="(270,480)" to="(270,510)"/> <wire from="(410,190)" to="(450,190)"/> <wire from="(190,400)" to="(290,400)"/> <wire from="(310,190)" to="(330,190)"/> <wire from="(370,210)" to="(390,210)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(250,420)" to="(250,460)"/> <wire from="(230,270)" to="(440,270)"/> <wire from="(350,400)" to="(350,440)"/> <wire from="(240,210)" to="(240,260)"/> <wire from="(270,480)" to="(280,480)"/> <wire from="(370,180)" to="(380,180)"/> <wire from="(260,190)" to="(260,240)"/> <wire from="(360,410)" to="(360,470)"/> <wire from="(320,560)" to="(390,560)"/> <wire from="(240,260)" to="(430,260)"/> <wire from="(370,420)" to="(430,420)"/> <wire from="(320,530)" to="(380,530)"/> <wire from="(280,290)" to="(280,360)"/> <wire from="(270,320)" to="(270,390)"/> <wire from="(230,520)" to="(290,520)"/> <wire from="(400,180)" to="(450,180)"/> <wire from="(240,140)" to="(240,150)"/> <wire from="(320,500)" to="(370,500)"/> <wire from="(380,160)" to="(380,180)"/> <wire from="(410,350)" to="(410,370)"/> <wire from="(230,440)" to="(230,520)"/> <wire from="(250,250)" to="(420,250)"/> <wire from="(370,420)" to="(370,500)"/> <wire from="(270,450)" to="(270,480)"/> <wire from="(320,470)" to="(360,470)"/> <wire from="(240,140)" to="(340,140)"/> <wire from="(380,430)" to="(380,530)"/> <wire from="(110,320)" to="(270,320)"/> <wire from="(320,350)" to="(410,350)"/> <wire from="(470,230)" to="(500,230)"/> <wire from="(300,220)" to="(330,220)"/> <wire from="(320,440)" to="(350,440)"/> <wire from="(320,410)" to="(340,410)"/> <wire from="(390,170)" to="(390,210)"/> <wire from="(260,240)" to="(410,240)"/> <wire from="(220,150)" to="(240,150)"/> <wire from="(440,220)" to="(450,220)"/> <wire from="(270,570)" to="(280,570)"/> <wire from="(270,450)" to="(280,450)"/> <wire from="(420,200)" to="(420,250)"/> <wire from="(400,180)" to="(400,230)"/> <wire from="(410,190)" to="(410,240)"/> <wire from="(430,210)" to="(430,260)"/> <wire from="(440,220)" to="(440,270)"/> <wire from="(160,460)" to="(170,460)"/> <wire from="(110,90)" to="(310,90)"/> <wire from="(220,550)" to="(290,550)"/> <wire from="(270,230)" to="(400,230)"/> <wire from="(390,440)" to="(390,560)"/> <wire from="(360,410)" to="(430,410)"/> <wire from="(390,170)" to="(450,170)"/> <wire from="(290,160)" to="(290,170)"/> <wire from="(260,410)" to="(260,430)"/> <wire from="(320,380)" to="(430,380)"/> <wire from="(270,540)" to="(270,570)"/> <wire from="(270,420)" to="(270,450)"/> <wire from="(190,340)" to="(290,340)"/> <wire from="(320,60)" to="(320,160)"/> <wire from="(310,90)" to="(310,190)"/> <wire from="(300,120)" to="(300,220)"/> <wire from="(260,430)" to="(290,430)"/> <wire from="(430,210)" to="(450,210)"/> <wire from="(190,340)" to="(190,380)"/> <wire from="(250,200)" to="(250,250)"/> <wire from="(230,220)" to="(230,270)"/> <wire from="(270,540)" to="(280,540)"/> <wire from="(270,420)" to="(280,420)"/> <wire from="(350,400)" to="(430,400)"/> <wire from="(270,180)" to="(270,230)"/> <wire from="(220,160)" to="(290,160)"/> <wire from="(190,410)" to="(260,410)"/> <wire from="(380,160)" to="(450,160)"/> <wire from="(240,430)" to="(240,490)"/> <comp lib="0" loc="(110,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADL1"/> </comp> <comp lib="0" loc="(170,230)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADL_In"/> </comp> <comp lib="0" loc="(110,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADH17"/> </comp> <comp lib="1" loc="(320,530)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADH0"/> </comp> <comp lib="1" loc="(320,500)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(370,180)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(110,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADL2"/> </comp> <comp lib="0" loc="(170,460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0/ADL0"/> </comp> <comp lib="0" loc="(200,230)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(320,380)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(320,560)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(320,350)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(370,150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(500,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADL_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(450,450)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADH_In"/> </comp> <comp lib="0" loc="(460,450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="ADH_Out"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(370,210)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="0" loc="(470,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(320,470)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(320,440)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> <comp lib="1" loc="(320,410)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate1" val="true"/> </comp> </circuit> <circuit name="BUS_MUX_HACK"> <a name="circuit" val="BUS_MUX_HACK"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="none" height="130" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="64">Y/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="74">X/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="84">S/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="94">AC/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="104">AC/SB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="114">ADD/SB06</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="124">ADD/SB7</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="134">PCL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="144">PCH/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="154">PCH/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="164">DL/ADH</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="173">DL/DB</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="72">SB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="83">DB_Dirty</text> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="131" y="94">ADH_Dirty</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="103" y="44">BUS_MUX_HACK</text> <text font-family="SansSerif" font-size="7" text-anchor="middle" x="131" y="122">SB/DB Conflict</text> <circ-port height="8" pin="110,50" width="8" x="46" y="56"/> <circ-port height="8" pin="110,80" width="8" x="46" y="66"/> <circ-port height="8" pin="110,110" width="8" x="46" y="76"/> <circ-port height="8" pin="110,200" width="8" x="46" y="86"/> <circ-port height="8" pin="110,230" width="8" x="46" y="96"/> <circ-port height="8" pin="110,260" width="8" x="46" y="106"/> <circ-port height="8" pin="110,290" width="8" x="46" y="116"/> <circ-port height="8" pin="110,340" width="8" x="46" y="126"/> <circ-port height="8" pin="110,370" width="8" x="46" y="136"/> <circ-port height="8" pin="110,400" width="8" x="46" y="146"/> <circ-port height="8" pin="110,450" width="8" x="46" y="156"/> <circ-port height="8" pin="110,480" width="8" x="46" y="166"/> <circ-port height="10" pin="570,160" width="10" x="155" y="65"/> <circ-port height="10" pin="570,200" width="10" x="155" y="75"/> <circ-port height="10" pin="570,240" width="10" x="155" y="85"/> <circ-port height="10" pin="570,280" width="10" x="155" y="115"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(400,100)" to="(450,100)"/> <wire from="(260,240)" to="(310,240)"/> <wire from="(120,280)" to="(120,290)"/> <wire from="(110,400)" to="(290,400)"/> <wire from="(250,230)" to="(250,370)"/> <wire from="(400,240)" to="(570,240)"/> <wire from="(530,200)" to="(570,200)"/> <wire from="(530,160)" to="(570,160)"/> <wire from="(490,90)" to="(490,110)"/> <wire from="(510,110)" to="(510,140)"/> <wire from="(110,110)" to="(210,110)"/> <wire from="(210,90)" to="(310,90)"/> <wire from="(420,120)" to="(450,120)"/> <wire from="(550,280)" to="(570,280)"/> <wire from="(220,110)" to="(310,110)"/> <wire from="(290,430)" to="(320,430)"/> <wire from="(110,260)" to="(130,260)"/> <wire from="(490,170)" to="(500,170)"/> <wire from="(490,210)" to="(500,210)"/> <wire from="(400,100)" to="(400,150)"/> <wire from="(550,90)" to="(550,280)"/> <wire from="(110,290)" to="(120,290)"/> <wire from="(120,280)" to="(130,280)"/> <wire from="(160,270)" to="(230,270)"/> <wire from="(240,210)" to="(310,210)"/> <wire from="(220,110)" to="(220,230)"/> <wire from="(240,210)" to="(240,340)"/> <wire from="(490,90)" to="(550,90)"/> <wire from="(250,230)" to="(310,230)"/> <wire from="(210,80)" to="(210,90)"/> <wire from="(210,100)" to="(210,110)"/> <wire from="(350,440)" to="(400,440)"/> <wire from="(400,240)" to="(400,440)"/> <wire from="(110,50)" to="(220,50)"/> <wire from="(110,230)" to="(220,230)"/> <wire from="(230,120)" to="(230,270)"/> <wire from="(400,190)" to="(400,220)"/> <wire from="(290,400)" to="(290,430)"/> <wire from="(400,150)" to="(500,150)"/> <wire from="(400,190)" to="(500,190)"/> <wire from="(220,50)" to="(220,80)"/> <wire from="(110,80)" to="(210,80)"/> <wire from="(360,100)" to="(400,100)"/> <wire from="(360,220)" to="(400,220)"/> <wire from="(210,100)" to="(310,100)"/> <wire from="(420,120)" to="(420,220)"/> <wire from="(220,80)" to="(310,80)"/> <wire from="(400,220)" to="(420,220)"/> <wire from="(110,480)" to="(260,480)"/> <wire from="(490,110)" to="(510,110)"/> <wire from="(110,450)" to="(320,450)"/> <wire from="(510,140)" to="(510,180)"/> <wire from="(480,110)" to="(490,110)"/> <wire from="(230,120)" to="(310,120)"/> <wire from="(260,240)" to="(260,480)"/> <wire from="(110,370)" to="(250,370)"/> <wire from="(110,200)" to="(310,200)"/> <wire from="(110,340)" to="(240,340)"/> <comp lib="1" loc="(360,100)" name="OR Gate"/> <comp lib="0" loc="(490,210)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(110,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL_DB"/> </comp> <comp lib="2" loc="(530,160)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(570,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="ADH_Dirty"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SB_Dirty"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,170)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="2" loc="(530,200)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(360,220)" name="OR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD_SB7"/> </comp> <comp lib="1" loc="(350,440)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(110,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC_DB"/> </comp> <comp lib="0" loc="(110,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ADD_SB06"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="X_SB"/> </comp> <comp lib="0" loc="(110,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DL_ADH"/> </comp> <comp lib="1" loc="(160,270)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="DB_Dirty"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(480,110)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S_SB"/> </comp> <comp lib="0" loc="(110,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AC_SB"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="Y_SB"/> </comp> <comp lib="0" loc="(570,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SBDB_Clutch"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="D_Latch"> <a name="circuit" val="D_Latch"/> <a name="clabel" val=""/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#0eff00" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="46">DLATCH</text> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="120,140" width="8" x="46" y="56"/> <circ-port height="8" pin="120,200" width="8" x="46" y="76"/> <circ-port height="10" pin="360,160" width="10" x="85" y="55"/> <circ-port height="10" pin="360,180" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(140,160)" to="(220,160)"/> <wire from="(140,180)" to="(220,180)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,180)" to="(140,200)"/> <wire from="(260,160)" to="(360,160)"/> <wire from="(260,180)" to="(360,180)"/> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(140,200)"/> <comp lib="0" loc="(360,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> </comp> <comp lib="0" loc="(360,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NOT_Q"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> <comp lib="4" loc="(260,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> </circuit> <circuit name="DFF_Level"> <a name="circuit" val="DFF_Level"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ffc228" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="46">DFF_HI</text> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <circ-port height="8" pin="120,140" width="8" x="46" y="56"/> <circ-port height="8" pin="120,200" width="8" x="46" y="76"/> <circ-port height="10" pin="370,160" width="10" x="85" y="55"/> <circ-port height="10" pin="370,180" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(140,180)" to="(230,180)"/> <wire from="(140,160)" to="(230,160)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,180)" to="(140,200)"/> <wire from="(270,160)" to="(370,160)"/> <wire from="(270,180)" to="(370,180)"/> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(140,200)"/> <comp lib="6" loc="(262,246)" name="Text"> <a name="text" val="To simplify importing into Logisim Evo."/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> <comp lib="4" loc="(270,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(370,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> </comp> <comp lib="0" loc="(370,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NOT_Q"/> </comp> </circuit> <circuit name="DFF_Posedge"> <a name="circuit" val="DFF_Posedge"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <rect fill="#ffad30" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="46">DFF_PosEdge</text> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="120,140" width="8" x="46" y="56"/> <circ-port height="8" pin="120,200" width="8" x="46" y="76"/> <circ-port height="10" pin="350,160" width="10" x="85" y="55"/> <circ-port height="10" pin="350,180" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(260,180)" to="(350,180)"/> <wire from="(260,160)" to="(350,160)"/> <wire from="(140,180)" to="(220,180)"/> <wire from="(140,160)" to="(220,160)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,180)" to="(140,200)"/> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(140,200)"/> <comp lib="6" loc="(244,238)" name="Text"> <a name="text" val="To simplify importing into Logisim Evo."/> </comp> <comp lib="0" loc="(350,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> <comp lib="0" loc="(350,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="NOT_Q"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> <comp lib="6" loc="(238,145)" name="Text"> <a name="text" val="posedge"/> </comp> <comp lib="4" loc="(260,160)" name="D Flip-Flop"> <a name="trigger" val="falling"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <main name="MAIN"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="MAIN"> <a name="circuit" val="MAIN"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> </circuit> <circuit name="2C02_NTSC"> <a name="circuit" val="2C02_NTSC"/> <a name="clabel" val="2C02G NTSC"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M227,50 Q231,60 235,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#a8ff7d" height="570" stroke="#000000" stroke-width="2" width="340" x="50" y="50"/> <polyline fill="none" points="121,52 121,620" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="321,50 321,620" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="424">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="354">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="374">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="394">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="110">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="140">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="170">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="200">DB3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="231">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="260">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="289">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="319">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="362" y="605">VIDEO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="365" y="585">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="584">/INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="459">EXT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="489">EXT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="519">EXT2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="549">EXT3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="604">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="74">ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="367" y="564">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="544">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="424">PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="444">PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="366" y="464">PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="367" y="483">PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="366" y="503">PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="367" y="523">PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="368" y="114">AD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="154">AD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="194">AD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="234">AD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="370" y="274">AD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="314">AD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="369" y="355">AD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="370" y="394">AD7</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="217" y="84">PPU</text> <circ-port height="10" pin="120,500" width="10" x="385" y="595"/> <circ-port height="8" pin="120,690" width="8" x="386" y="576"/> <circ-port height="10" pin="120,1850" width="10" x="45" y="575"/> <circ-port height="8" pin="1390,110" width="8" x="46" y="386"/> <circ-port height="8" pin="1430,110" width="8" x="46" y="366"/> <circ-port height="8" pin="1470,110" width="8" x="46" y="346"/> <circ-port height="8" pin="1510,110" width="8" x="46" y="76"/> <circ-port height="10" pin="2580,110" width="10" x="45" y="315"/> <circ-port height="8" pin="2600,110" width="8" x="46" y="306"/> <circ-port height="10" pin="2530,110" width="10" x="45" y="285"/> <circ-port height="8" pin="2550,110" width="8" x="46" y="276"/> <circ-port height="10" pin="2470,110" width="10" x="45" y="255"/> <circ-port height="8" pin="2490,110" width="8" x="46" y="246"/> <circ-port height="10" pin="2410,110" width="10" x="45" y="225"/> <circ-port height="8" pin="2430,110" width="8" x="46" y="216"/> <circ-port height="10" pin="2350,110" width="10" x="45" y="195"/> <circ-port height="8" pin="2370,110" width="8" x="46" y="186"/> <circ-port height="10" pin="2290,110" width="10" x="45" y="165"/> <circ-port height="8" pin="2310,110" width="8" x="46" y="156"/> <circ-port height="10" pin="2230,110" width="10" x="45" y="135"/> <circ-port height="8" pin="2250,110" width="8" x="46" y="126"/> <circ-port height="10" pin="2170,110" width="10" x="45" y="105"/> <circ-port height="8" pin="2190,110" width="8" x="46" y="96"/> <circ-port height="10" pin="1980,4640" width="10" x="385" y="535"/> <circ-port height="10" pin="2030,4640" width="10" x="385" y="555"/> <circ-port height="10" pin="2080,4640" width="10" x="385" y="515"/> <circ-port height="10" pin="2130,4640" width="10" x="385" y="495"/> <circ-port height="10" pin="2180,4640" width="10" x="385" y="475"/> <circ-port height="10" pin="2230,4640" width="10" x="385" y="455"/> <circ-port height="10" pin="2280,4640" width="10" x="385" y="435"/> <circ-port height="10" pin="2330,4640" width="10" x="385" y="415"/> <circ-port height="10" pin="2380,4640" width="10" x="385" y="375"/> <circ-port height="10" pin="2430,4640" width="10" x="385" y="335"/> <circ-port height="10" pin="2480,4640" width="10" x="385" y="295"/> <circ-port height="10" pin="2530,4640" width="10" x="385" y="255"/> <circ-port height="10" pin="2580,4640" width="10" x="385" y="215"/> <circ-port height="10" pin="2630,4640" width="10" x="385" y="175"/> <circ-port height="10" pin="2680,4640" width="10" x="385" y="135"/> <circ-port height="10" pin="2730,4640" width="10" x="385" y="95"/> <circ-port height="10" pin="2810,4640" width="10" x="385" y="65"/> <circ-port height="8" pin="2890,4640" width="8" x="386" y="396"/> <circ-port height="8" pin="2940,4640" width="8" x="386" y="356"/> <circ-port height="8" pin="2990,4640" width="8" x="386" y="316"/> <circ-port height="8" pin="3040,4640" width="8" x="386" y="276"/> <circ-port height="8" pin="3090,4640" width="8" x="386" y="236"/> <circ-port height="8" pin="3140,4640" width="8" x="386" y="196"/> <circ-port height="8" pin="3190,4640" width="8" x="386" y="156"/> <circ-port height="8" pin="3240,4640" width="8" x="386" y="116"/> <circ-port height="10" pin="2870,110" width="10" x="45" y="455"/> <circ-port height="8" pin="2930,110" width="8" x="46" y="446"/> <circ-port height="10" pin="2990,110" width="10" x="45" y="485"/> <circ-port height="8" pin="3050,110" width="8" x="46" y="476"/> <circ-port height="10" pin="3110,110" width="10" x="45" y="515"/> <circ-port height="8" pin="3170,110" width="8" x="46" y="506"/> <circ-port height="10" pin="3230,110" width="10" x="45" y="545"/> <circ-port height="8" pin="3290,110" width="8" x="46" y="536"/> <circ-port height="8" pin="120,590" width="8" x="46" y="596"/> <circ-port height="8" pin="1560,110" width="8" x="46" y="416"/> <circ-anchor facing="east" height="6" width="6" x="387" y="47"/> </appear> <wire from="(1710,1690)" to="(2260,1690)"/> <wire from="(2180,2730)" to="(2340,2730)"/> <wire from="(1420,3660)" to="(1420,3680)"/> <wire from="(3460,3260)" to="(3470,3260)"/> <wire from="(3390,3390)" to="(3390,3450)"/> <wire from="(1430,3670)" to="(1430,3700)"/> <wire from="(2550,740)" to="(2570,740)"/> <wire from="(2870,220)" to="(3030,220)"/> <wire from="(2830,290)" to="(2830,1730)"/> <wire from="(2540,2330)" to="(2560,2330)"/> <wire from="(3140,360)" to="(3170,360)"/> <wire from="(2230,420)" to="(2250,420)"/> <wire from="(2210,400)" to="(2230,400)"/> <wire from="(2230,170)" to="(2310,170)"/> <wire from="(1500,1550)" to="(1500,2000)"/> <wire from="(3340,3440)" to="(3370,3440)"/> <wire from="(2370,2690)" to="(2370,2740)"/> <wire from="(3090,330)" to="(3100,330)"/> <wire from="(2190,1420)" to="(2260,1420)"/> <wire from="(730,1880)" to="(730,1960)"/> <wire from="(1930,920)" to="(2180,920)"/> <wire from="(1410,3650)" to="(1410,3660)"/> <wire from="(660,2950)" to="(660,3420)"/> <wire from="(2370,2690)" to="(2570,2690)"/> <wire from="(2630,4350)" to="(2640,4350)"/> <wire from="(1210,3240)" to="(1210,3870)"/> <wire from="(2270,430)" to="(2320,430)"/> <wire from="(410,2250)" to="(560,2250)"/> <wire from="(3420,2870)" to="(3460,2870)"/> <wire from="(3420,3190)" to="(3460,3190)"/> <wire from="(1250,3360)" to="(1320,3360)"/> <wire from="(2350,110)" to="(2350,130)"/> <wire from="(2500,1220)" to="(2500,1250)"/> <wire from="(1120,800)" to="(1120,840)"/> <wire from="(2980,720)" to="(2980,1380)"/> <wire from="(3120,3440)" to="(3120,3450)"/> <wire from="(2390,2710)" to="(2390,2740)"/> <wire from="(1440,3680)" to="(1440,3720)"/> <wire from="(1260,1690)" to="(1280,1690)"/> <wire from="(2170,2400)" to="(2200,2400)"/> <wire from="(2210,4360)" to="(2240,4360)"/> <wire from="(1870,450)" to="(1870,2970)"/> <wire from="(2940,4410)" to="(3540,4410)"/> <wire from="(800,3490)" to="(800,3500)"/> <wire from="(1250,3300)" to="(1250,3330)"/> <wire from="(2540,2460)" to="(2560,2460)"/> <wire from="(2980,4170)" to="(3010,4170)"/> <wire from="(2180,2100)" to="(2200,2100)"/> <wire from="(3300,1510)" to="(3300,1570)"/> <wire from="(760,320)" to="(820,320)"/> <wire from="(2210,4370)" to="(2230,4370)"/> <wire from="(1190,420)" to="(1190,550)"/> <wire from="(1260,3700)" to="(1320,3700)"/> <wire from="(1540,2810)" to="(2940,2810)"/> <wire from="(2210,4380)" to="(2220,4380)"/> <wire from="(3420,3010)" to="(3450,3010)"/> <wire from="(1270,3400)" to="(1320,3400)"/> <wire from="(1280,3650)" to="(1280,3660)"/> <wire from="(2960,4130)" to="(3010,4130)"/> <wire from="(800,3280)" to="(820,3280)"/> <wire from="(1290,1220)" to="(1300,1220)"/> <wire from="(3150,1290)" to="(3150,1500)"/> <wire from="(2580,4630)" to="(2580,4640)"/> <wire from="(3090,4500)" to="(3090,4520)"/> <wire from="(830,1920)" to="(830,1960)"/> <wire from="(220,2050)" to="(250,2050)"/> <wire from="(640,2480)" to="(660,2480)"/> <wire from="(990,800)" to="(990,840)"/> <wire from="(3300,3430)" to="(3300,3450)"/> <wire from="(2800,3350)" to="(2800,4250)"/> <wire from="(2990,110)" to="(2990,180)"/> <wire from="(620,2520)" to="(710,2520)"/> <wire from="(790,3260)" to="(820,3260)"/> <wire from="(1170,1400)" to="(1200,1400)"/> <wire from="(2370,130)" to="(2370,210)"/> <wire from="(1610,1140)" to="(1610,4000)"/> <wire from="(2230,440)" to="(2230,460)"/> <wire from="(2530,4580)" to="(2530,4610)"/> <wire from="(3250,2740)" to="(3250,2750)"/> <wire from="(3090,340)" to="(3090,360)"/> <wire from="(2290,180)" to="(2290,210)"/> <wire from="(1160,440)" to="(1180,440)"/> <wire from="(3330,1090)" to="(3600,1090)"/> <wire from="(2990,4320)" to="(3010,4320)"/> <wire from="(2540,4190)" to="(2560,4190)"/> <wire from="(2150,2600)" to="(2150,2700)"/> <wire from="(2160,2610)" to="(2160,2710)"/> <wire from="(2580,700)" to="(2610,700)"/> <wire from="(2170,2620)" to="(2170,2720)"/> <wire from="(2660,4310)" to="(2680,4310)"/> <wire from="(2180,2630)" to="(2180,2730)"/> <wire from="(2480,1770)" to="(2690,1770)"/> <wire from="(2490,1020)" to="(2490,1130)"/> <wire from="(2110,1030)" to="(2900,1030)"/> <wire from="(2470,170)" to="(2470,210)"/> <wire from="(700,3090)" to="(1210,3090)"/> <wire from="(190,190)" to="(190,330)"/> <wire from="(2490,1270)" to="(2500,1270)"/> <wire from="(2120,3820)" to="(3410,3820)"/> <wire from="(2940,490)" to="(2940,1250)"/> <wire from="(780,3690)" to="(820,3690)"/> <wire from="(1570,1260)" to="(1570,3130)"/> <wire from="(2460,160)" to="(2460,210)"/> <wire from="(2170,630)" to="(2180,630)"/> <wire from="(1130,1390)" to="(1130,1400)"/> <wire from="(2190,1360)" to="(2260,1360)"/> <wire from="(3050,110)" to="(3050,160)"/> <wire from="(2090,2020)" to="(2090,2340)"/> <wire from="(720,3330)" to="(740,3330)"/> <wire from="(780,3710)" to="(800,3710)"/> <wire from="(800,3730)" to="(820,3730)"/> <wire from="(1910,1280)" to="(2170,1280)"/> <wire from="(2610,4290)" to="(2730,4290)"/> <wire from="(1160,320)" to="(1240,320)"/> <wire from="(440,2170)" to="(440,2270)"/> <wire from="(850,2260)" to="(850,2370)"/> <wire from="(2130,4630)" to="(2130,4640)"/> <wire from="(2770,1150)" to="(2770,1920)"/> <wire from="(2540,2560)" to="(2590,2560)"/> <wire from="(2580,2580)" to="(2580,2710)"/> <wire from="(1250,3300)" to="(1320,3300)"/> <wire from="(1970,520)" to="(3010,520)"/> <wire from="(2410,110)" to="(2410,120)"/> <wire from="(780,3700)" to="(810,3700)"/> <wire from="(2360,4540)" to="(2360,4560)"/> <wire from="(1730,1670)" to="(2260,1670)"/> <wire from="(2720,3980)" to="(3010,3980)"/> <wire from="(3240,1450)" to="(3240,1520)"/> <wire from="(120,1850)" to="(190,1850)"/> <wire from="(1100,1360)" to="(1100,1400)"/> <wire from="(1180,800)" to="(1180,840)"/> <wire from="(780,3720)" to="(790,3720)"/> <wire from="(2210,4390)" to="(2210,4420)"/> <wire from="(2550,660)" to="(2590,660)"/> <wire from="(2580,4570)" to="(2580,4610)"/> <wire from="(2990,4530)" to="(2990,4640)"/> <wire from="(2990,2850)" to="(3010,2850)"/> <wire from="(1930,390)" to="(1930,740)"/> <wire from="(3420,2970)" to="(3430,2970)"/> <wire from="(720,3350)" to="(720,3360)"/> <wire from="(800,940)" to="(860,940)"/> <wire from="(930,420)" to="(930,550)"/> <wire from="(2980,4110)" to="(3010,4110)"/> <wire from="(1230,3410)" to="(1230,3500)"/> <wire from="(2220,4320)" to="(2240,4320)"/> <wire from="(1260,3320)" to="(1320,3320)"/> <wire from="(2560,2430)" to="(2570,2430)"/> <wire from="(2220,1770)" to="(2230,1770)"/> <wire from="(1290,1060)" to="(1930,1060)"/> <wire from="(2230,4340)" to="(2240,4340)"/> <wire from="(2630,3090)" to="(2890,3090)"/> <wire from="(2170,760)" to="(2180,760)"/> <wire from="(3460,2990)" to="(3490,2990)"/> <wire from="(2960,4110)" to="(2970,4110)"/> <wire from="(3390,1650)" to="(3410,1650)"/> <wire from="(850,1240)" to="(850,1260)"/> <wire from="(2740,3190)" to="(3010,3190)"/> <wire from="(1270,3340)" to="(1320,3340)"/> <wire from="(2810,4280)" to="(2810,4590)"/> <wire from="(180,240)" to="(180,590)"/> <wire from="(2460,160)" to="(2530,160)"/> <wire from="(2960,4070)" to="(3010,4070)"/> <wire from="(900,440)" to="(920,440)"/> <wire from="(780,3730)" to="(780,3770)"/> <wire from="(1070,300)" to="(1080,300)"/> <wire from="(2880,380)" to="(2880,2760)"/> <wire from="(1460,2540)" to="(1460,3050)"/> <wire from="(930,2060)" to="(960,2060)"/> <wire from="(2340,2730)" to="(2340,2740)"/> <wire from="(2540,4370)" to="(2640,4370)"/> <wire from="(2970,4090)" to="(3010,4090)"/> <wire from="(1210,380)" to="(1210,550)"/> <wire from="(1250,3350)" to="(1270,3350)"/> <wire from="(2140,700)" to="(2180,700)"/> <wire from="(1290,1160)" to="(1630,1160)"/> <wire from="(1050,800)" to="(1050,840)"/> <wire from="(3030,220)" to="(3030,240)"/> <wire from="(2430,4580)" to="(2530,4580)"/> <wire from="(2190,180)" to="(2290,180)"/> <wire from="(2940,1250)" to="(3370,1250)"/> <wire from="(2050,1470)" to="(2050,3870)"/> <wire from="(2890,4480)" to="(2910,4480)"/> <wire from="(2990,4260)" to="(3010,4260)"/> <wire from="(2170,4520)" to="(2330,4520)"/> <wire from="(3100,4510)" to="(3240,4510)"/> <wire from="(2550,930)" to="(2580,930)"/> <wire from="(2130,4550)" to="(2350,4550)"/> <wire from="(1160,1360)" to="(1160,1380)"/> <wire from="(800,3240)" to="(800,3250)"/> <wire from="(2110,820)" to="(2130,820)"/> <wire from="(2240,1270)" to="(2260,1270)"/> <wire from="(2170,4400)" to="(2190,4400)"/> <wire from="(2600,680)" to="(2610,680)"/> <wire from="(500,2170)" to="(500,2260)"/> <wire from="(2420,4540)" to="(2420,4590)"/> <wire from="(2190,2190)" to="(2200,2190)"/> <wire from="(780,3630)" to="(820,3630)"/> <wire from="(2980,3300)" to="(2990,3300)"/> <wire from="(2740,3960)" to="(3010,3960)"/> <wire from="(3240,1520)" to="(3240,1560)"/> <wire from="(2190,1300)" to="(2260,1300)"/> <wire from="(3330,760)" to="(3350,760)"/> <wire from="(3100,1560)" to="(3180,1560)"/> <wire from="(1430,3670)" to="(1440,3670)"/> <wire from="(800,3670)" to="(820,3670)"/> <wire from="(2830,290)" to="(2950,290)"/> <wire from="(150,2760)" to="(240,2760)"/> <wire from="(920,800)" to="(920,840)"/> <wire from="(1110,2070)" to="(1120,2070)"/> <wire from="(2540,2100)" to="(2540,2110)"/> <wire from="(790,3650)" to="(820,3650)"/> <wire from="(1150,1450)" to="(1180,1450)"/> <wire from="(2810,4610)" to="(2810,4640)"/> <wire from="(2550,2110)" to="(2550,2130)"/> <wire from="(2600,110)" to="(2600,190)"/> <wire from="(1390,110)" to="(1390,410)"/> <wire from="(2220,1870)" to="(2260,1870)"/> <wire from="(2470,110)" to="(2470,140)"/> <wire from="(1240,800)" to="(1240,840)"/> <wire from="(900,320)" to="(980,320)"/> <wire from="(810,3700)" to="(810,3710)"/> <wire from="(1510,110)" to="(1510,190)"/> <wire from="(3240,1450)" to="(3250,1450)"/> <wire from="(3050,1010)" to="(3050,1110)"/> <wire from="(610,2410)" to="(610,2480)"/> <wire from="(1670,1100)" to="(1670,1250)"/> <wire from="(760,3830)" to="(1500,3830)"/> <wire from="(2190,2320)" to="(2200,2320)"/> <wire from="(2250,2060)" to="(2260,2060)"/> <wire from="(2230,4280)" to="(2240,4280)"/> <wire from="(3420,2890)" to="(3450,2890)"/> <wire from="(2160,1020)" to="(2490,1020)"/> <wire from="(2350,2680)" to="(2350,2740)"/> <wire from="(3000,2810)" to="(3010,2810)"/> <wire from="(2630,4560)" to="(2630,4610)"/> <wire from="(1430,3440)" to="(1480,3440)"/> <wire from="(2190,1430)" to="(2260,1430)"/> <wire from="(1540,2370)" to="(1540,2810)"/> <wire from="(1250,3620)" to="(1260,3620)"/> <wire from="(1120,1770)" to="(1120,1820)"/> <wire from="(950,380)" to="(950,550)"/> <wire from="(2930,200)" to="(3050,200)"/> <wire from="(1260,1390)" to="(1270,1390)"/> <wire from="(2380,4630)" to="(2380,4640)"/> <wire from="(3350,3450)" to="(3390,3450)"/> <wire from="(230,350)" to="(250,350)"/> <wire from="(1540,2810)" to="(1540,3490)"/> <wire from="(390,2760)" to="(400,2760)"/> <wire from="(1110,800)" to="(1110,840)"/> <wire from="(1570,3130)" to="(3010,3130)"/> <wire from="(810,300)" to="(820,300)"/> <wire from="(2980,3310)" to="(2980,3330)"/> <wire from="(1510,350)" to="(1530,350)"/> <wire from="(2380,2710)" to="(2380,2740)"/> <wire from="(3460,3150)" to="(3460,3160)"/> <wire from="(1260,3320)" to="(1260,3340)"/> <wire from="(980,2370)" to="(1540,2370)"/> <wire from="(1230,340)" to="(1230,550)"/> <wire from="(2170,2410)" to="(2200,2410)"/> <wire from="(3170,110)" to="(3170,160)"/> <wire from="(3070,760)" to="(3090,760)"/> <wire from="(910,1360)" to="(910,1690)"/> <wire from="(3050,310)" to="(3050,350)"/> <wire from="(1290,880)" to="(1330,880)"/> <wire from="(2890,3090)" to="(2890,3250)"/> <wire from="(2240,1210)" to="(2260,1210)"/> <wire from="(3250,3390)" to="(3250,3450)"/> <wire from="(1430,3260)" to="(1470,3260)"/> <wire from="(2180,4560)" to="(2180,4610)"/> <wire from="(2530,110)" to="(2530,160)"/> <wire from="(560,2170)" to="(560,2250)"/> <wire from="(3480,1490)" to="(3500,1490)"/> <wire from="(1930,740)" to="(2180,740)"/> <wire from="(3100,1380)" to="(3100,1560)"/> <wire from="(3030,990)" to="(3030,1130)"/> <wire from="(1810,510)" to="(1810,1590)"/> <wire from="(2570,2140)" to="(2630,2140)"/> <wire from="(3240,2740)" to="(3240,2760)"/> <wire from="(220,2060)" to="(250,2060)"/> <wire from="(1130,1710)" to="(1140,1710)"/> <wire from="(980,800)" to="(980,840)"/> <wire from="(1310,480)" to="(1310,860)"/> <wire from="(3260,2760)" to="(3260,2790)"/> <wire from="(3110,110)" to="(3110,240)"/> <wire from="(3370,1590)" to="(3370,1620)"/> <wire from="(3080,4500)" to="(3080,4530)"/> <wire from="(410,2280)" to="(740,2280)"/> <wire from="(2940,4520)" to="(3040,4520)"/> <wire from="(3130,160)" to="(3170,160)"/> <wire from="(1170,2970)" to="(1770,2970)"/> <wire from="(760,3260)" to="(770,3260)"/> <wire from="(650,590)" to="(660,590)"/> <wire from="(2910,4480)" to="(3020,4480)"/> <wire from="(2900,2870)" to="(3010,2870)"/> <wire from="(3430,2930)" to="(3430,2940)"/> <wire from="(3460,3280)" to="(3460,3290)"/> <wire from="(2170,2220)" to="(2200,2220)"/> <wire from="(2550,680)" to="(2580,680)"/> <wire from="(2520,1310)" to="(2860,1310)"/> <wire from="(2470,1250)" to="(2490,1250)"/> <wire from="(1150,1420)" to="(1150,1450)"/> <wire from="(1810,3030)" to="(3010,3030)"/> <wire from="(3210,1560)" to="(3210,1620)"/> <wire from="(2180,2240)" to="(2200,2240)"/> <wire from="(2480,1590)" to="(2490,1590)"/> <wire from="(1260,3200)" to="(1320,3200)"/> <wire from="(3080,3450)" to="(3110,3450)"/> <wire from="(2190,2580)" to="(2200,2580)"/> <wire from="(1220,1360)" to="(1220,1430)"/> <wire from="(310,470)" to="(310,1960)"/> <wire from="(1050,2150)" to="(1050,2220)"/> <wire from="(2680,4550)" to="(2680,4610)"/> <wire from="(2170,960)" to="(2180,960)"/> <wire from="(3120,3390)" to="(3120,3430)"/> <wire from="(3000,3070)" to="(3010,3070)"/> <wire from="(2440,150)" to="(2440,210)"/> <wire from="(2830,1750)" to="(2830,4040)"/> <wire from="(3480,1380)" to="(3480,1490)"/> <wire from="(1450,3320)" to="(1450,3330)"/> <wire from="(3480,1510)" to="(3480,1550)"/> <wire from="(2330,4590)" to="(2390,4590)"/> <wire from="(3160,3430)" to="(3160,3450)"/> <wire from="(180,2800)" to="(200,2800)"/> <wire from="(1050,2150)" to="(1120,2150)"/> <wire from="(1260,3110)" to="(2670,3110)"/> <wire from="(1160,340)" to="(1230,340)"/> <wire from="(3150,3420)" to="(3150,3450)"/> <wire from="(2350,4540)" to="(2350,4550)"/> <wire from="(2140,900)" to="(2180,900)"/> <wire from="(2120,2480)" to="(2160,2480)"/> <wire from="(1170,800)" to="(1170,840)"/> <wire from="(3420,3130)" to="(3470,3130)"/> <wire from="(3170,3440)" to="(3170,3450)"/> <wire from="(850,1240)" to="(860,1240)"/> <wire from="(1130,3430)" to="(1150,3430)"/> <wire from="(560,630)" to="(570,630)"/> <wire from="(2540,2580)" to="(2580,2580)"/> <wire from="(2770,1920)" to="(2770,3050)"/> <wire from="(3300,2740)" to="(3300,2790)"/> <wire from="(2630,4310)" to="(2630,4350)"/> <wire from="(2490,180)" to="(2580,180)"/> <wire from="(2540,2400)" to="(2570,2400)"/> <wire from="(3010,520)" to="(3010,880)"/> <wire from="(1430,390)" to="(1530,390)"/> <wire from="(230,310)" to="(230,320)"/> <wire from="(3150,1500)" to="(3220,1500)"/> <wire from="(620,2170)" to="(620,2240)"/> <wire from="(3050,350)" to="(3080,350)"/> <wire from="(2220,2090)" to="(2240,2090)"/> <wire from="(3310,3390)" to="(3310,3450)"/> <wire from="(2600,760)" to="(2600,800)"/> <wire from="(1330,2120)" to="(1390,2120)"/> <wire from="(2320,160)" to="(2320,210)"/> <wire from="(2540,2100)" to="(2550,2100)"/> <wire from="(2420,2760)" to="(2880,2760)"/> <wire from="(2900,690)" to="(3350,690)"/> <wire from="(2250,1810)" to="(2260,1810)"/> <wire from="(2470,170)" to="(2550,170)"/> <wire from="(780,3510)" to="(820,3510)"/> <wire from="(3110,1070)" to="(3120,1070)"/> <wire from="(2940,260)" to="(2950,260)"/> <wire from="(2540,4280)" to="(2810,4280)"/> <wire from="(2470,4540)" to="(2730,4540)"/> <wire from="(3070,4540)" to="(3090,4540)"/> <wire from="(970,340)" to="(970,550)"/> <wire from="(2120,2480)" to="(2120,3820)"/> <wire from="(3110,310)" to="(3110,360)"/> <wire from="(2540,4340)" to="(2550,4340)"/> <wire from="(3300,1570)" to="(3320,1570)"/> <wire from="(2580,930)" to="(2580,1050)"/> <wire from="(2630,4630)" to="(2630,4640)"/> <wire from="(780,3530)" to="(800,3530)"/> <wire from="(800,3550)" to="(820,3550)"/> <wire from="(410,2260)" to="(500,2260)"/> <wire from="(220,400)" to="(250,400)"/> <wire from="(2430,140)" to="(2430,210)"/> <wire from="(2200,1920)" to="(2770,1920)"/> <wire from="(1930,920)" to="(1930,1040)"/> <wire from="(1250,300)" to="(1250,550)"/> <wire from="(3450,2890)" to="(3450,2920)"/> <wire from="(1210,3870)" to="(2050,3870)"/> <wire from="(2570,730)" to="(2570,740)"/> <wire from="(3450,2980)" to="(3490,2980)"/> <wire from="(930,2070)" to="(960,2070)"/> <wire from="(1250,3440)" to="(1320,3440)"/> <wire from="(780,3520)" to="(810,3520)"/> <wire from="(3430,2940)" to="(3490,2940)"/> <wire from="(2580,740)" to="(2580,760)"/> <wire from="(1040,800)" to="(1040,840)"/> <wire from="(2140,710)" to="(2180,710)"/> <wire from="(2590,750)" to="(2590,780)"/> <wire from="(780,3540)" to="(790,3540)"/> <wire from="(1810,1590)" to="(1810,3030)"/> <wire from="(2510,1500)" to="(2510,1590)"/> <wire from="(2690,1770)" to="(2690,3070)"/> <wire from="(3090,160)" to="(3090,240)"/> <wire from="(3380,4100)" to="(3380,4110)"/> <wire from="(3250,1490)" to="(3300,1490)"/> <wire from="(3390,1610)" to="(3530,1610)"/> <wire from="(2990,3310)" to="(3010,3310)"/> <wire from="(1830,490)" to="(1830,3010)"/> <wire from="(660,2950)" to="(1420,2950)"/> <wire from="(3010,2750)" to="(3100,2750)"/> <wire from="(1760,1500)" to="(2510,1500)"/> <wire from="(1260,3390)" to="(1260,3420)"/> <wire from="(2980,3290)" to="(3010,3290)"/> <wire from="(2910,4180)" to="(2940,4180)"/> <wire from="(2610,4290)" to="(2610,4410)"/> <wire from="(650,630)" to="(690,630)"/> <wire from="(1330,240)" to="(1330,880)"/> <wire from="(2190,2520)" to="(2200,2520)"/> <wire from="(370,470)" to="(370,1960)"/> <wire from="(2980,4270)" to="(2990,4270)"/> <wire from="(3180,3390)" to="(3180,3430)"/> <wire from="(2410,4540)" to="(2410,4600)"/> <wire from="(2190,1310)" to="(2260,1310)"/> <wire from="(2990,180)" to="(3070,180)"/> <wire from="(3390,1420)" to="(3390,1590)"/> <wire from="(2960,4210)" to="(3010,4210)"/> <wire from="(780,3550)" to="(780,3590)"/> <wire from="(3200,2770)" to="(3200,2790)"/> <wire from="(910,800)" to="(910,840)"/> <wire from="(2180,4630)" to="(2180,4640)"/> <wire from="(2560,2450)" to="(2560,2460)"/> <wire from="(2670,1420)" to="(2670,3110)"/> <wire from="(3230,110)" to="(3230,180)"/> <wire from="(2240,1810)" to="(2240,1830)"/> <wire from="(1790,1610)" to="(2260,1610)"/> <wire from="(900,340)" to="(970,340)"/> <wire from="(180,590)" to="(570,590)"/> <wire from="(1300,3220)" to="(1320,3220)"/> <wire from="(1830,3010)" to="(3010,3010)"/> <wire from="(1790,2500)" to="(2200,2500)"/> <wire from="(1230,800)" to="(1230,840)"/> <wire from="(2980,4150)" to="(2980,4170)"/> <wire from="(810,3380)" to="(820,3380)"/> <wire from="(780,3670)" to="(790,3670)"/> <wire from="(1420,3660)" to="(1440,3660)"/> <wire from="(1430,3350)" to="(1450,3350)"/> <wire from="(850,860)" to="(860,860)"/> <wire from="(2570,2460)" to="(2570,2480)"/> <wire from="(1760,1520)" to="(2490,1520)"/> <wire from="(3170,310)" to="(3170,360)"/> <wire from="(3460,3280)" to="(3470,3280)"/> <wire from="(2720,3230)" to="(2720,3980)"/> <wire from="(2470,1310)" to="(2500,1310)"/> <wire from="(3290,3430)" to="(3300,3430)"/> <wire from="(1130,3390)" to="(1130,3410)"/> <wire from="(740,3320)" to="(740,3330)"/> <wire from="(3370,3390)" to="(3370,3440)"/> <wire from="(3470,2850)" to="(3470,2900)"/> <wire from="(800,1550)" to="(1500,1550)"/> <wire from="(2350,2680)" to="(2560,2680)"/> <wire from="(3530,1500)" to="(3600,1500)"/> <wire from="(2230,440)" to="(2250,440)"/> <wire from="(2130,2260)" to="(2150,2260)"/> <wire from="(2180,2630)" to="(2200,2630)"/> <wire from="(780,3450)" to="(820,3450)"/> <wire from="(780,3770)" to="(820,3770)"/> <wire from="(3360,4120)" to="(3390,4120)"/> <wire from="(720,3300)" to="(720,3320)"/> <wire from="(3420,2910)" to="(3440,2910)"/> <wire from="(240,420)" to="(240,1470)"/> <wire from="(2500,1880)" to="(2500,1940)"/> <wire from="(2190,1440)" to="(2260,1440)"/> <wire from="(3100,1380)" to="(3180,1380)"/> <wire from="(800,3490)" to="(820,3490)"/> <wire from="(2550,720)" to="(2610,720)"/> <wire from="(2450,560)" to="(2770,560)"/> <wire from="(2990,4290)" to="(2990,4300)"/> <wire from="(580,340)" to="(580,500)"/> <wire from="(1790,2500)" to="(1790,3000)"/> <wire from="(200,1510)" to="(1050,1510)"/> <wire from="(1770,310)" to="(1780,310)"/> <wire from="(2290,150)" to="(2340,150)"/> <wire from="(2730,4540)" to="(2730,4610)"/> <wire from="(3450,2920)" to="(3490,2920)"/> <wire from="(790,3470)" to="(820,3470)"/> <wire from="(150,2840)" to="(170,2840)"/> <wire from="(2140,1070)" to="(2140,1150)"/> <wire from="(2330,4590)" to="(2330,4610)"/> <wire from="(240,1980)" to="(250,1980)"/> <wire from="(2580,680)" to="(2580,700)"/> <wire from="(680,2170)" to="(680,2290)"/> <wire from="(1710,940)" to="(1710,1690)"/> <wire from="(990,300)" to="(990,550)"/> <wire from="(2090,2020)" to="(2580,2020)"/> <wire from="(3270,2720)" to="(3330,2720)"/> <wire from="(1170,2970)" to="(1170,3390)"/> <wire from="(1060,440)" to="(1060,480)"/> <wire from="(510,2370)" to="(510,2930)"/> <wire from="(2140,650)" to="(2180,650)"/> <wire from="(1100,800)" to="(1100,840)"/> <wire from="(3330,1130)" to="(3640,1130)"/> <wire from="(2480,1710)" to="(2900,1710)"/> <wire from="(630,2430)" to="(710,2430)"/> <wire from="(1270,3660)" to="(1270,3680)"/> <wire from="(2960,4390)" to="(3490,4390)"/> <wire from="(3350,940)" to="(3350,990)"/> <wire from="(220,400)" to="(220,1490)"/> <wire from="(2730,2930)" to="(3010,2930)"/> <wire from="(2540,4400)" to="(2560,4400)"/> <wire from="(2520,2130)" to="(2550,2130)"/> <wire from="(810,3520)" to="(810,3530)"/> <wire from="(3150,3420)" to="(3160,3420)"/> <wire from="(2470,1130)" to="(2490,1130)"/> <wire from="(1520,1530)" to="(1520,1940)"/> <wire from="(1280,3760)" to="(1320,3760)"/> <wire from="(2180,2440)" to="(2200,2440)"/> <wire from="(2220,4400)" to="(2240,4400)"/> <wire from="(2990,4370)" to="(3440,4370)"/> <wire from="(2170,840)" to="(2180,840)"/> <wire from="(3070,4500)" to="(3070,4540)"/> <wire from="(2560,1810)" to="(2560,2000)"/> <wire from="(3000,3910)" to="(3010,3910)"/> <wire from="(2080,4540)" to="(2340,4540)"/> <wire from="(1270,3340)" to="(1270,3350)"/> <wire from="(3290,110)" to="(3290,220)"/> <wire from="(120,690)" to="(150,690)"/> <wire from="(1520,510)" to="(1530,510)"/> <wire from="(1430,3620)" to="(1440,3620)"/> <wire from="(1810,1590)" to="(2260,1590)"/> <wire from="(2030,4480)" to="(2030,4610)"/> <wire from="(1310,3180)" to="(1320,3180)"/> <wire from="(3080,350)" to="(3080,360)"/> <wire from="(1850,2990)" to="(3010,2990)"/> <wire from="(220,2070)" to="(250,2070)"/> <wire from="(970,800)" to="(970,840)"/> <wire from="(1120,1390)" to="(1130,1390)"/> <wire from="(1670,1250)" to="(2260,1250)"/> <wire from="(3300,1400)" to="(3300,1490)"/> <wire from="(2140,1150)" to="(2260,1150)"/> <wire from="(200,380)" to="(200,1510)"/> <wire from="(1370,1900)" to="(1370,2090)"/> <wire from="(3230,2740)" to="(3230,2770)"/> <wire from="(2960,4070)" to="(2960,4100)"/> <wire from="(2730,1690)" to="(2730,2930)"/> <wire from="(2720,3230)" to="(3010,3230)"/> <wire from="(2940,1250)" to="(2940,2810)"/> <wire from="(2280,190)" to="(2280,210)"/> <wire from="(2140,780)" to="(2180,780)"/> <wire from="(3290,3440)" to="(3290,3450)"/> <wire from="(1190,3000)" to="(1790,3000)"/> <wire from="(1460,3320)" to="(1480,3320)"/> <wire from="(420,2170)" to="(420,2230)"/> <wire from="(2220,1730)" to="(2220,1760)"/> <wire from="(2570,2400)" to="(2570,2420)"/> <wire from="(610,2480)" to="(620,2480)"/> <wire from="(1560,110)" to="(1560,150)"/> <wire from="(2580,930)" to="(3120,930)"/> <wire from="(2940,4240)" to="(2940,4410)"/> <wire from="(2540,2600)" to="(2570,2600)"/> <wire from="(2680,4350)" to="(2700,4350)"/> <wire from="(800,520)" to="(1180,520)"/> <wire from="(2550,700)" to="(2570,700)"/> <wire from="(2600,640)" to="(2600,680)"/> <wire from="(1480,3230)" to="(1480,3300)"/> <wire from="(2600,760)" to="(2610,760)"/> <wire from="(2440,4570)" to="(2580,4570)"/> <wire from="(2170,2250)" to="(2180,2250)"/> <wire from="(2250,160)" to="(2320,160)"/> <wire from="(3470,2900)" to="(3490,2900)"/> <wire from="(1670,1250)" to="(1670,3170)"/> <wire from="(1420,3620)" to="(1420,3630)"/> <wire from="(2630,4310)" to="(2640,4310)"/> <wire from="(740,2170)" to="(740,2280)"/> <wire from="(1190,3000)" to="(1190,3240)"/> <wire from="(2150,2700)" to="(2400,2700)"/> <wire from="(3420,3150)" to="(3460,3150)"/> <wire from="(2430,4630)" to="(2430,4640)"/> <wire from="(1250,3640)" to="(1320,3640)"/> <wire from="(2890,4510)" to="(2890,4640)"/> <wire from="(1520,1940)" to="(2500,1940)"/> <wire from="(1400,3700)" to="(1430,3700)"/> <wire from="(1950,370)" to="(1950,540)"/> <wire from="(1760,1520)" to="(1760,1820)"/> <wire from="(1160,800)" to="(1160,840)"/> <wire from="(780,920)" to="(860,920)"/> <wire from="(3010,880)" to="(3120,880)"/> <wire from="(2960,4120)" to="(2980,4120)"/> <wire from="(2990,4150)" to="(3010,4150)"/> <wire from="(2030,4480)" to="(2700,4480)"/> <wire from="(1890,430)" to="(1890,2950)"/> <wire from="(2520,2070)" to="(2550,2070)"/> <wire from="(3200,2770)" to="(3210,2770)"/> <wire from="(1250,3580)" to="(1250,3610)"/> <wire from="(2540,2420)" to="(2560,2420)"/> <wire from="(1280,3380)" to="(1320,3380)"/> <wire from="(2210,1130)" to="(2230,1130)"/> <wire from="(2240,2120)" to="(2260,2120)"/> <wire from="(2220,1780)" to="(2240,1780)"/> <wire from="(2560,2450)" to="(2570,2450)"/> <wire from="(2730,4290)" to="(2730,4410)"/> <wire from="(2480,1670)" to="(2750,1670)"/> <wire from="(2210,4340)" to="(2220,4340)"/> <wire from="(2250,2140)" to="(2260,2140)"/> <wire from="(490,470)" to="(490,1960)"/> <wire from="(1160,360)" to="(1220,360)"/> <wire from="(170,2820)" to="(170,2840)"/> <wire from="(2750,2910)" to="(3010,2910)"/> <wire from="(3110,760)" to="(3120,760)"/> <wire from="(2890,4510)" to="(3030,4510)"/> <wire from="(1270,3680)" to="(1320,3680)"/> <wire from="(660,2250)" to="(830,2250)"/> <wire from="(720,2240)" to="(830,2240)"/> <wire from="(800,3240)" to="(820,3240)"/> <wire from="(1520,450)" to="(1530,450)"/> <wire from="(1220,1430)" to="(1230,1430)"/> <wire from="(1030,800)" to="(1030,840)"/> <wire from="(2180,2270)" to="(2180,2280)"/> <wire from="(2550,800)" to="(2600,800)"/> <wire from="(2740,3190)" to="(2740,3960)"/> <wire from="(1980,4630)" to="(1980,4640)"/> <wire from="(1930,1190)" to="(2260,1190)"/> <wire from="(2490,1620)" to="(2490,1630)"/> <wire from="(930,2080)" to="(960,2080)"/> <wire from="(2200,1840)" to="(2200,1920)"/> <wire from="(2410,130)" to="(2410,210)"/> <wire from="(2230,400)" to="(2230,420)"/> <wire from="(2140,720)" to="(2180,720)"/> <wire from="(2500,190)" to="(2600,190)"/> <wire from="(480,2170)" to="(480,2220)"/> <wire from="(3490,3290)" to="(3490,4390)"/> <wire from="(3420,3270)" to="(3470,3270)"/> <wire from="(3440,2970)" to="(3490,2970)"/> <wire from="(2400,120)" to="(2400,210)"/> <wire from="(780,1900)" to="(1370,1900)"/> <wire from="(3160,2740)" to="(3160,2790)"/> <wire from="(3460,3160)" to="(3470,3160)"/> <wire from="(2190,270)" to="(2220,270)"/> <wire from="(1440,3580)" to="(1440,3610)"/> <wire from="(2630,720)" to="(2980,720)"/> <wire from="(2150,4400)" to="(2170,4400)"/> <wire from="(720,3340)" to="(820,3340)"/> <wire from="(700,3090)" to="(700,3310)"/> <wire from="(1210,3090)" to="(1210,3220)"/> <wire from="(1870,2970)" to="(3010,2970)"/> <wire from="(150,690)" to="(150,2760)"/> <wire from="(2250,1630)" to="(2260,1630)"/> <wire from="(590,2410)" to="(590,2440)"/> <wire from="(1770,2390)" to="(2150,2390)"/> <wire from="(3460,1550)" to="(3480,1550)"/> <wire from="(2400,4540)" to="(2400,4600)"/> <wire from="(2190,1320)" to="(2260,1320)"/> <wire from="(2480,1690)" to="(2730,1690)"/> <wire from="(1400,3660)" to="(1410,3660)"/> <wire from="(950,1360)" to="(950,1470)"/> <wire from="(2580,110)" to="(2580,180)"/> <wire from="(1290,990)" to="(1300,990)"/> <wire from="(900,800)" to="(900,840)"/> <wire from="(1110,2090)" to="(1120,2090)"/> <wire from="(2230,4370)" to="(2230,4380)"/> <wire from="(1210,3220)" to="(1280,3220)"/> <wire from="(1250,3580)" to="(1320,3580)"/> <wire from="(1590,4020)" to="(3010,4020)"/> <wire from="(3180,2760)" to="(3180,2790)"/> <wire from="(3420,3070)" to="(3480,3070)"/> <wire from="(230,2810)" to="(240,2810)"/> <wire from="(1410,3650)" to="(1440,3650)"/> <wire from="(240,260)" to="(250,260)"/> <wire from="(410,2290)" to="(680,2290)"/> <wire from="(1510,190)" to="(1510,350)"/> <wire from="(3050,160)" to="(3090,160)"/> <wire from="(820,960)" to="(820,1530)"/> <wire from="(810,3710)" to="(820,3710)"/> <wire from="(2280,4580)" to="(2380,4580)"/> <wire from="(1140,1360)" to="(1140,1400)"/> <wire from="(1220,800)" to="(1220,840)"/> <wire from="(1120,1770)" to="(1140,1770)"/> <wire from="(2170,2620)" to="(2200,2620)"/> <wire from="(1180,440)" to="(1180,520)"/> <wire from="(3420,2930)" to="(3430,2930)"/> <wire from="(2170,2300)" to="(2200,2300)"/> <wire from="(2550,760)" to="(2580,760)"/> <wire from="(3050,200)" to="(3050,240)"/> <wire from="(800,900)" to="(860,900)"/> <wire from="(900,360)" to="(960,360)"/> <wire from="(3250,1550)" to="(3320,1550)"/> <wire from="(1330,2090)" to="(1370,2090)"/> <wire from="(2240,1100)" to="(2260,1100)"/> <wire from="(3280,1390)" to="(3280,1450)"/> <wire from="(600,2200)" to="(830,2200)"/> <wire from="(1260,3600)" to="(1320,3600)"/> <wire from="(540,340)" to="(580,340)"/> <wire from="(3040,4540)" to="(3040,4640)"/> <wire from="(2230,4300)" to="(2240,4300)"/> <wire from="(540,2210)" to="(830,2210)"/> <wire from="(980,2090)" to="(980,2370)"/> <wire from="(3000,3150)" to="(3010,3150)"/> <wire from="(2110,1050)" to="(2110,1170)"/> <wire from="(3000,2830)" to="(3010,2830)"/> <wire from="(800,3710)" to="(800,3730)"/> <wire from="(1270,3620)" to="(1320,3620)"/> <wire from="(2190,1450)" to="(2260,1450)"/> <wire from="(1930,1060)" to="(1930,1190)"/> <wire from="(2320,430)" to="(2320,490)"/> <wire from="(2680,4630)" to="(2680,4640)"/> <wire from="(2170,2720)" to="(2360,2720)"/> <wire from="(420,2230)" to="(830,2230)"/> <wire from="(540,2170)" to="(540,2210)"/> <wire from="(1110,3240)" to="(1190,3240)"/> <wire from="(2580,1440)" to="(2580,2020)"/> <wire from="(1630,3230)" to="(2720,3230)"/> <wire from="(2080,4540)" to="(2080,4610)"/> <wire from="(2040,270)" to="(2050,270)"/> <wire from="(480,2220)" to="(830,2220)"/> <wire from="(3260,2740)" to="(3300,2740)"/> <wire from="(800,940)" to="(800,1550)"/> <wire from="(190,330)" to="(210,330)"/> <wire from="(3350,690)" to="(3350,760)"/> <wire from="(1050,2220)" to="(1460,2220)"/> <wire from="(1090,800)" to="(1090,840)"/> <wire from="(1250,3630)" to="(1270,3630)"/> <wire from="(2140,660)" to="(2180,660)"/> <wire from="(760,220)" to="(1350,220)"/> <wire from="(220,1490)" to="(990,1490)"/> <wire from="(780,3490)" to="(790,3490)"/> <wire from="(3420,3210)" to="(3470,3210)"/> <wire from="(1050,1510)" to="(1050,2130)"/> <wire from="(3220,2740)" to="(3220,2790)"/> <wire from="(2230,1850)" to="(2260,1850)"/> <wire from="(680,3070)" to="(680,3400)"/> <wire from="(760,1380)" to="(880,1380)"/> <wire from="(1020,240)" to="(1330,240)"/> <wire from="(2540,2480)" to="(2570,2480)"/> <wire from="(780,920)" to="(780,1570)"/> <wire from="(3200,1560)" to="(3210,1560)"/> <wire from="(1690,1080)" to="(1690,3210)"/> <wire from="(2410,4600)" to="(2430,4600)"/> <wire from="(1430,110)" to="(1430,390)"/> <wire from="(2180,2450)" to="(2200,2450)"/> <wire from="(2240,1230)" to="(2260,1230)"/> <wire from="(3350,1590)" to="(3350,1650)"/> <wire from="(2400,120)" to="(2410,120)"/> <wire from="(2250,1570)" to="(2260,1570)"/> <wire from="(1290,1140)" to="(1610,1140)"/> <wire from="(780,3590)" to="(820,3590)"/> <wire from="(3060,4500)" to="(3060,4540)"/> <wire from="(880,1360)" to="(880,1380)"/> <wire from="(3000,4240)" to="(3010,4240)"/> <wire from="(3480,1510)" to="(3500,1510)"/> <wire from="(3540,3170)" to="(3560,3170)"/> <wire from="(3030,310)" to="(3030,360)"/> <wire from="(1980,4460)" to="(2560,4460)"/> <wire from="(3160,3430)" to="(3180,3430)"/> <wire from="(3410,1650)" to="(3410,1670)"/> <wire from="(2320,300)" to="(2320,430)"/> <wire from="(3510,3030)" to="(3510,3050)"/> <wire from="(410,2270)" to="(440,2270)"/> <wire from="(2350,140)" to="(2350,210)"/> <wire from="(960,800)" to="(960,840)"/> <wire from="(220,2080)" to="(250,2080)"/> <wire from="(1130,1730)" to="(1140,1730)"/> <wire from="(1110,2030)" to="(1120,2030)"/> <wire from="(2240,2080)" to="(2240,2090)"/> <wire from="(510,2370)" to="(540,2370)"/> <wire from="(3030,1670)" to="(3410,1670)"/> <wire from="(2050,3870)" to="(3640,3870)"/> <wire from="(2460,4540)" to="(2460,4550)"/> <wire from="(3420,3030)" to="(3460,3030)"/> <wire from="(390,2390)" to="(540,2390)"/> <wire from="(2550,2070)" to="(2550,2080)"/> <wire from="(2230,4630)" to="(2230,4640)"/> <wire from="(1230,3500)" to="(1230,3600)"/> <wire from="(780,1900)" to="(780,1960)"/> <wire from="(2570,2600)" to="(2570,2690)"/> <wire from="(3030,820)" to="(3030,910)"/> <wire from="(1430,3290)" to="(1460,3290)"/> <wire from="(2230,1750)" to="(2230,1770)"/> <wire from="(1260,4130)" to="(2560,4130)"/> <wire from="(1200,1360)" to="(1200,1400)"/> <wire from="(720,3560)" to="(720,3870)"/> <wire from="(2970,4090)" to="(2970,4110)"/> <wire from="(740,3320)" to="(820,3320)"/> <wire from="(1890,2950)" to="(3010,2950)"/> <wire from="(3100,3390)" to="(3100,3440)"/> <wire from="(3380,4110)" to="(3390,4110)"/> <wire from="(1460,3350)" to="(1460,3380)"/> <wire from="(2110,1050)" to="(2580,1050)"/> <wire from="(2590,750)" to="(2610,750)"/> <wire from="(2540,2620)" to="(2560,2620)"/> <wire from="(1430,3410)" to="(1470,3410)"/> <wire from="(2220,4220)" to="(2240,4220)"/> <wire from="(2480,1610)" to="(2490,1610)"/> <wire from="(1610,4000)" to="(3010,4000)"/> <wire from="(780,3630)" to="(780,3660)"/> <wire from="(2560,4130)" to="(2560,4190)"/> <wire from="(600,2170)" to="(600,2200)"/> <wire from="(3400,1060)" to="(3400,1290)"/> <wire from="(3100,2750)" to="(3100,2790)"/> <wire from="(3000,3090)" to="(3010,3090)"/> <wire from="(2190,1390)" to="(2260,1390)"/> <wire from="(1450,3340)" to="(1450,3350)"/> <wire from="(920,440)" to="(920,550)"/> <wire from="(2450,300)" to="(2450,560)"/> <wire from="(2980,3270)" to="(2980,3280)"/> <wire from="(1470,3360)" to="(1470,3410)"/> <wire from="(1650,3190)" to="(2740,3190)"/> <wire from="(2190,110)" to="(2190,180)"/> <wire from="(3640,3470)" to="(3640,3870)"/> <wire from="(660,3420)" to="(820,3420)"/> <wire from="(3370,1420)" to="(3370,1450)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(1370,900)" to="(1760,900)"/> <wire from="(1150,3360)" to="(1150,3400)"/> <wire from="(3410,3820)" to="(3410,4090)"/> <wire from="(850,1260)" to="(860,1260)"/> <wire from="(2570,710)" to="(2610,710)"/> <wire from="(1260,3600)" to="(1260,3620)"/> <wire from="(2170,2370)" to="(2200,2370)"/> <wire from="(2610,2440)" to="(2610,2930)"/> <wire from="(1200,400)" to="(1200,550)"/> <wire from="(2480,1730)" to="(2830,1730)"/> <wire from="(2800,2890)" to="(3010,2890)"/> <wire from="(3330,1060)" to="(3400,1060)"/> <wire from="(3410,1590)" to="(3410,1650)"/> <wire from="(2160,980)" to="(2160,1020)"/> <wire from="(2110,1170)" to="(2260,1170)"/> <wire from="(2230,4570)" to="(2230,4610)"/> <wire from="(2310,170)" to="(2310,210)"/> <wire from="(1260,1360)" to="(1260,1390)"/> <wire from="(200,380)" to="(250,380)"/> <wire from="(2220,2110)" to="(2240,2110)"/> <wire from="(2770,3050)" to="(2770,3470)"/> <wire from="(3250,3450)" to="(3280,3450)"/> <wire from="(2250,110)" to="(2250,160)"/> <wire from="(710,2520)" to="(1390,2520)"/> <wire from="(3420,2990)" to="(3440,2990)"/> <wire from="(3290,3390)" to="(3290,3430)"/> <wire from="(1480,3370)" to="(1480,3440)"/> <wire from="(1160,380)" to="(1210,380)"/> <wire from="(3330,3430)" to="(3330,3450)"/> <wire from="(1250,3390)" to="(1260,3390)"/> <wire from="(210,1850)" to="(1330,1850)"/> <wire from="(3130,350)" to="(3130,360)"/> <wire from="(1020,800)" to="(1020,840)"/> <wire from="(1130,1670)" to="(1140,1670)"/> <wire from="(2410,2720)" to="(2590,2720)"/> <wire from="(2010,190)" to="(2010,240)"/> <wire from="(3420,3290)" to="(3460,3290)"/> <wire from="(3320,3420)" to="(3320,3450)"/> <wire from="(3430,2960)" to="(3490,2960)"/> <wire from="(2090,2340)" to="(2200,2340)"/> <wire from="(3030,1130)" to="(3030,1670)"/> <wire from="(2470,1440)" to="(2580,1440)"/> <wire from="(3080,4530)" to="(3140,4530)"/> <wire from="(1250,3370)" to="(1280,3370)"/> <wire from="(1250,3380)" to="(1270,3380)"/> <wire from="(3090,310)" to="(3090,330)"/> <wire from="(3120,340)" to="(3120,360)"/> <wire from="(790,3250)" to="(800,3250)"/> <wire from="(3340,3440)" to="(3340,3450)"/> <wire from="(1290,860)" to="(1310,860)"/> <wire from="(3390,4130)" to="(3390,4140)"/> <wire from="(3250,1510)" to="(3300,1510)"/> <wire from="(2960,3940)" to="(2980,3940)"/> <wire from="(1150,1380)" to="(1150,1400)"/> <wire from="(510,2930)" to="(2610,2930)"/> <wire from="(1390,2120)" to="(1390,2520)"/> <wire from="(800,3270)" to="(800,3280)"/> <wire from="(2590,2560)" to="(2590,2720)"/> <wire from="(1460,3290)" to="(1460,3320)"/> <wire from="(2590,690)" to="(2610,690)"/> <wire from="(3200,1380)" to="(3270,1380)"/> <wire from="(1480,1570)" to="(1480,1980)"/> <wire from="(1400,3640)" to="(1440,3640)"/> <wire from="(2350,130)" to="(2370,130)"/> <wire from="(3290,1380)" to="(3320,1380)"/> <wire from="(3150,180)" to="(3150,240)"/> <wire from="(760,780)" to="(760,1380)"/> <wire from="(3210,1620)" to="(3240,1620)"/> <wire from="(2190,2540)" to="(2200,2540)"/> <wire from="(2390,4540)" to="(2390,4590)"/> <wire from="(2120,560)" to="(2450,560)"/> <wire from="(760,3740)" to="(760,3830)"/> <wire from="(3370,910)" to="(3370,1010)"/> <wire from="(2170,600)" to="(2180,600)"/> <wire from="(350,470)" to="(350,1960)"/> <wire from="(1160,1390)" to="(1160,1400)"/> <wire from="(2980,4290)" to="(2990,4290)"/> <wire from="(1500,3380)" to="(1500,3830)"/> <wire from="(2190,1330)" to="(2260,1330)"/> <wire from="(3100,3440)" to="(3120,3440)"/> <wire from="(2470,1420)" to="(2670,1420)"/> <wire from="(3300,1400)" to="(3320,1400)"/> <wire from="(780,3680)" to="(800,3680)"/> <wire from="(1230,3500)" to="(1240,3500)"/> <wire from="(890,800)" to="(890,840)"/> <wire from="(2480,4630)" to="(2480,4640)"/> <wire from="(3160,3390)" to="(3160,3420)"/> <wire from="(760,220)" to="(760,320)"/> <wire from="(2970,4160)" to="(2970,4190)"/> <wire from="(1330,1750)" to="(1330,1850)"/> <wire from="(2140,860)" to="(2180,860)"/> <wire from="(680,3400)" to="(820,3400)"/> <wire from="(1300,3240)" to="(1320,3240)"/> <wire from="(1210,800)" to="(1210,840)"/> <wire from="(850,880)" to="(860,880)"/> <wire from="(1250,3400)" to="(1250,3440)"/> <wire from="(2230,1820)" to="(2230,1850)"/> <wire from="(1060,440)" to="(1080,440)"/> <wire from="(3070,340)" to="(3090,340)"/> <wire from="(900,380)" to="(950,380)"/> <wire from="(2550,910)" to="(3030,910)"/> <wire from="(3150,310)" to="(3150,350)"/> <wire from="(1110,3480)" to="(1150,3480)"/> <wire from="(3240,1620)" to="(3370,1620)"/> <wire from="(1420,1280)" to="(1420,2950)"/> <wire from="(200,2540)" to="(1460,2540)"/> <wire from="(3250,2750)" to="(3280,2750)"/> <wire from="(1120,1820)" to="(1760,1820)"/> <wire from="(2540,4250)" to="(2800,4250)"/> <wire from="(2250,1130)" to="(2260,1130)"/> <wire from="(3360,4140)" to="(3390,4140)"/> <wire from="(940,400)" to="(940,550)"/> <wire from="(2190,1460)" to="(2260,1460)"/> <wire from="(720,3870)" to="(1210,3870)"/> <wire from="(660,2170)" to="(660,2250)"/> <wire from="(3350,3390)" to="(3350,3430)"/> <wire from="(2830,4040)" to="(3010,4040)"/> <wire from="(3470,3190)" to="(3470,3210)"/> <wire from="(2030,4630)" to="(2030,4640)"/> <wire from="(1220,360)" to="(1220,550)"/> <wire from="(1770,330)" to="(1780,330)"/> <wire from="(2490,1250)" to="(2490,1260)"/> <wire from="(930,2030)" to="(960,2030)"/> <wire from="(1250,3720)" to="(1320,3720)"/> <wire from="(120,590)" to="(140,590)"/> <wire from="(2360,2720)" to="(2360,2740)"/> <wire from="(2800,1650)" to="(2800,2890)"/> <wire from="(1080,800)" to="(1080,840)"/> <wire from="(2140,670)" to="(2180,670)"/> <wire from="(2900,690)" to="(2900,1030)"/> <wire from="(2160,2610)" to="(2200,2610)"/> <wire from="(810,3530)" to="(820,3530)"/> <wire from="(2310,110)" to="(2310,140)"/> <wire from="(3130,160)" to="(3130,240)"/> <wire from="(3460,3180)" to="(3460,3190)"/> <wire from="(2150,820)" to="(2180,820)"/> <wire from="(1850,470)" to="(1850,2990)"/> <wire from="(3470,3000)" to="(3470,3050)"/> <wire from="(3030,1130)" to="(3120,1130)"/> <wire from="(2410,130)" to="(2430,130)"/> <wire from="(3480,3010)" to="(3480,3070)"/> <wire from="(1260,3670)" to="(1260,3700)"/> <wire from="(2980,3250)" to="(3010,3250)"/> <wire from="(3220,3390)" to="(3220,3450)"/> <wire from="(1400,3580)" to="(1440,3580)"/> <wire from="(2180,2460)" to="(2200,2460)"/> <wire from="(1630,1160)" to="(1630,3230)"/> <wire from="(1260,3420)" to="(1320,3420)"/> <wire from="(2230,4570)" to="(2370,4570)"/> <wire from="(1260,3740)" to="(1320,3740)"/> <wire from="(3170,3440)" to="(3200,3440)"/> <wire from="(3200,1550)" to="(3230,1550)"/> <wire from="(910,1690)" to="(1140,1690)"/> <wire from="(2890,3250)" to="(2960,3250)"/> <wire from="(800,3530)" to="(800,3550)"/> <wire from="(3460,2990)" to="(3460,3030)"/> <wire from="(1280,3370)" to="(1280,3380)"/> <wire from="(1470,3360)" to="(1480,3360)"/> <wire from="(3440,2970)" to="(3440,2990)"/> <wire from="(3370,1170)" to="(3370,1250)"/> <wire from="(2980,4110)" to="(2980,4120)"/> <wire from="(950,800)" to="(950,840)"/> <wire from="(3240,2770)" to="(3240,2790)"/> <wire from="(2880,380)" to="(3060,380)"/> <wire from="(2240,1770)" to="(2240,1780)"/> <wire from="(3450,2980)" to="(3450,3010)"/> <wire from="(3050,4500)" to="(3050,4530)"/> <wire from="(3210,2740)" to="(3210,2770)"/> <wire from="(2120,560)" to="(2120,640)"/> <wire from="(2450,4540)" to="(2450,4560)"/> <wire from="(2970,4190)" to="(3010,4190)"/> <wire from="(1460,3050)" to="(2770,3050)"/> <wire from="(1350,220)" to="(1350,900)"/> <wire from="(3430,2960)" to="(3430,2970)"/> <wire from="(1290,670)" to="(1910,670)"/> <wire from="(2960,3050)" to="(2980,3050)"/> <wire from="(3270,1450)" to="(3280,1450)"/> <wire from="(2580,740)" to="(2610,740)"/> <wire from="(3320,3420)" to="(3330,3420)"/> <wire from="(820,1530)" to="(1520,1530)"/> <wire from="(2470,1280)" to="(2490,1280)"/> <wire from="(3490,2830)" to="(3490,2890)"/> <wire from="(1110,3420)" to="(1150,3420)"/> <wire from="(1180,520)" to="(1180,550)"/> <wire from="(720,2170)" to="(720,2240)"/> <wire from="(2400,2700)" to="(2400,2740)"/> <wire from="(3420,2950)" to="(3490,2950)"/> <wire from="(2250,1710)" to="(2260,1710)"/> <wire from="(3090,4540)" to="(3090,4640)"/> <wire from="(3360,4080)" to="(3390,4080)"/> <wire from="(2170,2270)" to="(2180,2270)"/> <wire from="(3120,340)" to="(3130,340)"/> <wire from="(790,3650)" to="(790,3670)"/> <wire from="(2190,1400)" to="(2260,1400)"/> <wire from="(2730,4630)" to="(2730,4640)"/> <wire from="(120,2760)" to="(150,2760)"/> <wire from="(3470,3130)" to="(3470,3150)"/> <wire from="(3130,3430)" to="(3130,3450)"/> <wire from="(1260,1750)" to="(1330,1750)"/> <wire from="(2370,110)" to="(2370,120)"/> <wire from="(2450,4560)" to="(2630,4560)"/> <wire from="(2380,4600)" to="(2380,4610)"/> <wire from="(790,3750)" to="(820,3750)"/> <wire from="(960,360)" to="(960,550)"/> <wire from="(2860,3320)" to="(2960,3320)"/> <wire from="(3490,3020)" to="(3490,3090)"/> <wire from="(1730,920)" to="(1730,1670)"/> <wire from="(170,590)" to="(180,590)"/> <wire from="(1140,800)" to="(1140,840)"/> <wire from="(1330,2060)" to="(1350,2060)"/> <wire from="(2310,140)" to="(2350,140)"/> <wire from="(2170,2380)" to="(2200,2380)"/> <wire from="(1690,3210)" to="(3010,3210)"/> <wire from="(2520,1860)" to="(2520,1960)"/> <wire from="(2520,2090)" to="(2550,2090)"/> <wire from="(230,340)" to="(230,350)"/> <wire from="(1160,400)" to="(1200,400)"/> <wire from="(2210,4350)" to="(2230,4350)"/> <wire from="(1650,1120)" to="(1650,3190)"/> <wire from="(1470,370)" to="(1530,370)"/> <wire from="(780,3450)" to="(780,3480)"/> <wire from="(3050,1110)" to="(3120,1110)"/> <wire from="(2230,4380)" to="(2240,4380)"/> <wire from="(470,470)" to="(470,1960)"/> <wire from="(1060,480)" to="(1310,480)"/> <wire from="(2940,4520)" to="(2940,4640)"/> <wire from="(2480,1810)" to="(2560,1810)"/> <wire from="(2170,800)" to="(2180,800)"/> <wire from="(3280,2750)" to="(3280,2790)"/> <wire from="(3040,4540)" to="(3060,4540)"/> <wire from="(3180,2760)" to="(3200,2760)"/> <wire from="(1270,3620)" to="(1270,3630)"/> <wire from="(1670,3170)" to="(3010,3170)"/> <wire from="(3350,1650)" to="(3370,1650)"/> <wire from="(3440,2910)" to="(3440,2930)"/> <wire from="(1290,1200)" to="(1300,1200)"/> <wire from="(1310,3780)" to="(1320,3780)"/> <wire from="(1150,1380)" to="(1160,1380)"/> <wire from="(220,2030)" to="(250,2030)"/> <wire from="(1010,800)" to="(1010,840)"/> <wire from="(2900,1070)" to="(2900,1710)"/> <wire from="(2280,4630)" to="(2280,4640)"/> <wire from="(3100,330)" to="(3100,360)"/> <wire from="(2750,1670)" to="(2750,2910)"/> <wire from="(2170,190)" to="(2280,190)"/> <wire from="(1240,320)" to="(1240,550)"/> <wire from="(2170,2280)" to="(2170,2300)"/> <wire from="(3150,1290)" to="(3400,1290)"/> <wire from="(3170,220)" to="(3290,220)"/> <wire from="(2220,2100)" to="(2260,2100)"/> <wire from="(850,760)" to="(860,760)"/> <wire from="(2380,120)" to="(2380,210)"/> <wire from="(3460,3250)" to="(3460,3260)"/> <wire from="(2800,3350)" to="(3010,3350)"/> <wire from="(3460,3180)" to="(3470,3180)"/> <wire from="(2990,4300)" to="(3010,4300)"/> <wire from="(200,2090)" to="(200,2540)"/> <wire from="(3370,1620)" to="(3510,1620)"/> <wire from="(1110,3360)" to="(1150,3360)"/> <wire from="(2980,4280)" to="(3010,4280)"/> <wire from="(3240,1560)" to="(3240,1620)"/> <wire from="(1160,280)" to="(1260,280)"/> <wire from="(2380,4540)" to="(2380,4580)"/> <wire from="(1120,1360)" to="(1120,1390)"/> <wire from="(720,3360)" to="(820,3360)"/> <wire from="(650,660)" to="(690,660)"/> <wire from="(2560,4400)" to="(2560,4460)"/> <wire from="(2250,1650)" to="(2260,1650)"/> <wire from="(3280,1450)" to="(3370,1450)"/> <wire from="(2230,4190)" to="(2240,4190)"/> <wire from="(2050,1470)" to="(2170,1470)"/> <wire from="(3110,910)" to="(3120,910)"/> <wire from="(2110,940)" to="(2180,940)"/> <wire from="(2190,1340)" to="(2260,1340)"/> <wire from="(3140,4530)" to="(3140,4640)"/> <wire from="(2480,1830)" to="(2540,1830)"/> <wire from="(1290,1010)" to="(1300,1010)"/> <wire from="(2770,560)" to="(2770,1150)"/> <wire from="(1290,1080)" to="(1690,1080)"/> <wire from="(1390,1880)" to="(1390,2120)"/> <wire from="(1110,2110)" to="(1120,2110)"/> <wire from="(410,2240)" to="(620,2240)"/> <wire from="(1210,3240)" to="(1280,3240)"/> <wire from="(680,3070)" to="(2690,3070)"/> <wire from="(2430,110)" to="(2430,130)"/> <wire from="(2860,1310)" to="(2860,3320)"/> <wire from="(240,280)" to="(250,280)"/> <wire from="(2220,4380)" to="(2220,4400)"/> <wire from="(1970,350)" to="(1970,520)"/> <wire from="(3490,3170)" to="(3540,3170)"/> <wire from="(1460,3490)" to="(1460,3600)"/> <wire from="(2110,940)" to="(2110,1030)"/> <wire from="(1200,800)" to="(1200,840)"/> <wire from="(1290,1260)" to="(1570,1260)"/> <wire from="(3480,3010)" to="(3490,3010)"/> <wire from="(1290,1120)" to="(1650,1120)"/> <wire from="(1280,3660)" to="(1320,3660)"/> <wire from="(2240,2080)" to="(2260,2080)"/> <wire from="(1290,1100)" to="(1670,1100)"/> <wire from="(790,3720)" to="(790,3750)"/> <wire from="(820,960)" to="(860,960)"/> <wire from="(1290,1040)" to="(1930,1040)"/> <wire from="(900,400)" to="(940,400)"/> <wire from="(3460,1380)" to="(3480,1380)"/> <wire from="(3460,2870)" to="(3460,2910)"/> <wire from="(2990,4320)" to="(2990,4370)"/> <wire from="(3240,2760)" to="(3260,2760)"/> <wire from="(2540,4310)" to="(2550,4310)"/> <wire from="(2630,2140)" to="(2630,3090)"/> <wire from="(3150,180)" to="(3230,180)"/> <wire from="(2340,150)" to="(2340,210)"/> <wire from="(780,3500)" to="(800,3500)"/> <wire from="(1390,410)" to="(1530,410)"/> <wire from="(3390,4080)" to="(3390,4100)"/> <wire from="(1250,3340)" to="(1260,3340)"/> <wire from="(1240,1410)" to="(1250,1410)"/> <wire from="(3440,3330)" to="(3440,4370)"/> <wire from="(1070,280)" to="(1080,280)"/> <wire from="(570,2410)" to="(570,2520)"/> <wire from="(980,320)" to="(980,550)"/> <wire from="(2140,1070)" to="(2900,1070)"/> <wire from="(1290,1280)" to="(1420,1280)"/> <wire from="(3330,910)" to="(3370,910)"/> <wire from="(930,2040)" to="(960,2040)"/> <wire from="(2570,700)" to="(2570,710)"/> <wire from="(2150,2600)" to="(2200,2600)"/> <wire from="(800,520)" to="(800,900)"/> <wire from="(2520,1290)" to="(2520,1310)"/> <wire from="(2170,2220)" to="(2170,2240)"/> <wire from="(2320,490)" to="(2940,490)"/> <wire from="(1070,800)" to="(1070,840)"/> <wire from="(2140,680)" to="(2180,680)"/> <wire from="(2210,430)" to="(2250,430)"/> <wire from="(810,3220)" to="(820,3220)"/> <wire from="(1150,3440)" to="(1150,3480)"/> <wire from="(3440,2930)" to="(3490,2930)"/> <wire from="(1290,1180)" to="(1590,1180)"/> <wire from="(3550,1610)" to="(3560,1610)"/> <wire from="(3030,820)" to="(3120,820)"/> <wire from="(3190,4520)" to="(3190,4640)"/> <wire from="(3000,540)" to="(3000,1090)"/> <wire from="(1180,1360)" to="(1180,1390)"/> <wire from="(2490,110)" to="(2490,150)"/> <wire from="(2180,2470)" to="(2200,2470)"/> <wire from="(3420,2830)" to="(3490,2830)"/> <wire from="(720,3300)" to="(820,3300)"/> <wire from="(900,280)" to="(1000,280)"/> <wire from="(1290,900)" to="(1350,900)"/> <wire from="(760,780)" to="(860,780)"/> <wire from="(3110,1170)" to="(3120,1170)"/> <wire from="(3000,3940)" to="(3010,3940)"/> <wire from="(3110,850)" to="(3120,850)"/> <wire from="(1260,280)" to="(1260,550)"/> <wire from="(2130,4550)" to="(2130,4610)"/> <wire from="(630,2410)" to="(630,2430)"/> <wire from="(2420,4590)" to="(2480,4590)"/> <wire from="(2530,4630)" to="(2530,4640)"/> <wire from="(1790,530)" to="(1790,1610)"/> <wire from="(1770,350)" to="(1970,350)"/> <wire from="(3040,4500)" to="(3040,4520)"/> <wire from="(3200,2740)" to="(3200,2760)"/> <wire from="(2980,1380)" to="(3100,1380)"/> <wire from="(940,800)" to="(940,840)"/> <wire from="(1130,1750)" to="(1140,1750)"/> <wire from="(1110,2050)" to="(1120,2050)"/> <wire from="(3180,3450)" to="(3220,3450)"/> <wire from="(2560,2420)" to="(2560,2430)"/> <wire from="(3540,3170)" to="(3540,4410)"/> <wire from="(1400,3600)" to="(1430,3600)"/> <wire from="(1450,3330)" to="(1480,3330)"/> <wire from="(1980,4460)" to="(1980,4610)"/> <wire from="(2220,4320)" to="(2220,4340)"/> <wire from="(2440,4540)" to="(2440,4570)"/> <wire from="(1420,3630)" to="(1440,3630)"/> <wire from="(1430,3320)" to="(1450,3320)"/> <wire from="(1460,3350)" to="(1480,3350)"/> <wire from="(2430,140)" to="(2470,140)"/> <wire from="(1760,900)" to="(1760,1500)"/> <wire from="(2170,2260)" to="(2200,2260)"/> <wire from="(3130,350)" to="(3150,350)"/> <wire from="(1500,2000)" to="(2560,2000)"/> <wire from="(800,3670)" to="(800,3680)"/> <wire from="(1480,1980)" to="(2540,1980)"/> <wire from="(1460,1960)" to="(2520,1960)"/> <wire from="(3080,3390)" to="(3080,3450)"/> <wire from="(990,1360)" to="(990,1490)"/> <wire from="(2160,980)" to="(2180,980)"/> <wire from="(2180,2280)" to="(2200,2280)"/> <wire from="(1400,3720)" to="(1440,3720)"/> <wire from="(2220,4240)" to="(2240,4240)"/> <wire from="(2480,1630)" to="(2490,1630)"/> <wire from="(3070,180)" to="(3070,240)"/> <wire from="(2490,1520)" to="(2490,1570)"/> <wire from="(2230,4260)" to="(2240,4260)"/> <wire from="(1770,370)" to="(1950,370)"/> <wire from="(3460,2910)" to="(3490,2910)"/> <wire from="(3330,3430)" to="(3350,3430)"/> <wire from="(3360,4100)" to="(3380,4100)"/> <wire from="(3000,3110)" to="(3010,3110)"/> <wire from="(2190,1410)" to="(2260,1410)"/> <wire from="(1020,240)" to="(1020,320)"/> <wire from="(1210,3090)" to="(2630,3090)"/> <wire from="(170,2820)" to="(200,2820)"/> <wire from="(2990,3300)" to="(2990,3310)"/> <wire from="(2990,4260)" to="(2990,4270)"/> <wire from="(190,190)" to="(1370,190)"/> <wire from="(2700,4350)" to="(2700,4480)"/> <wire from="(3330,1170)" to="(3370,1170)"/> <wire from="(2080,4630)" to="(2080,4640)"/> <wire from="(3090,4520)" to="(3190,4520)"/> <wire from="(230,330)" to="(250,330)"/> <wire from="(2540,4220)" to="(2580,4220)"/> <wire from="(2170,110)" to="(2170,190)"/> <wire from="(2410,2720)" to="(2410,2740)"/> <wire from="(1950,540)" to="(3000,540)"/> <wire from="(2590,660)" to="(2590,690)"/> <wire from="(810,280)" to="(820,280)"/> <wire from="(3420,3170)" to="(3470,3170)"/> <wire from="(1770,390)" to="(1930,390)"/> <wire from="(3420,2850)" to="(3470,2850)"/> <wire from="(1110,3450)" to="(1130,3450)"/> <wire from="(2570,730)" to="(2610,730)"/> <wire from="(2170,2390)" to="(2200,2390)"/> <wire from="(2220,1800)" to="(2250,1800)"/> <wire from="(1000,280)" to="(1000,550)"/> <wire from="(3270,3390)" to="(3270,3440)"/> <wire from="(2960,4150)" to="(2980,4150)"/> <wire from="(2480,1750)" to="(2830,1750)"/> <wire from="(2540,2440)" to="(2570,2440)"/> <wire from="(1770,450)" to="(1870,450)"/> <wire from="(1290,940)" to="(1710,940)"/> <wire from="(2520,2110)" to="(2540,2110)"/> <wire from="(2960,4140)" to="(2990,4140)"/> <wire from="(2220,1810)" to="(2240,1810)"/> <wire from="(2240,1830)" to="(2260,1830)"/> <wire from="(3420,3090)" to="(3490,3090)"/> <wire from="(1470,110)" to="(1470,370)"/> <wire from="(1770,430)" to="(1890,430)"/> <wire from="(3160,2740)" to="(3190,2740)"/> <wire from="(2220,1820)" to="(2230,1820)"/> <wire from="(2960,4160)" to="(2970,4160)"/> <wire from="(790,3470)" to="(790,3490)"/> <wire from="(3110,790)" to="(3120,790)"/> <wire from="(3420,3330)" to="(3440,3330)"/> <wire from="(1430,3230)" to="(1480,3230)"/> <wire from="(2550,110)" to="(2550,170)"/> <wire from="(2170,4400)" to="(2170,4520)"/> <wire from="(1290,920)" to="(1730,920)"/> <wire from="(390,2300)" to="(390,2390)"/> <wire from="(2230,110)" to="(2230,170)"/> <wire from="(3390,1590)" to="(3390,1610)"/> <wire from="(1470,3310)" to="(1480,3310)"/> <wire from="(1240,1360)" to="(1240,1410)"/> <wire from="(220,2040)" to="(250,2040)"/> <wire from="(2480,1650)" to="(2800,1650)"/> <wire from="(1000,800)" to="(1000,840)"/> <wire from="(2390,2710)" to="(2580,2710)"/> <wire from="(1770,470)" to="(1850,470)"/> <wire from="(1770,410)" to="(1780,410)"/> <wire from="(790,3570)" to="(820,3570)"/> <wire from="(3070,310)" to="(3070,340)"/> <wire from="(1160,420)" to="(1190,420)"/> <wire from="(830,1920)" to="(1350,1920)"/> <wire from="(120,500)" to="(580,500)"/> <wire from="(3030,360)" to="(3070,360)"/> <wire from="(1280,4110)" to="(2580,4110)"/> <wire from="(2220,1790)" to="(2260,1790)"/> <wire from="(3100,4500)" to="(3100,4510)"/> <wire from="(790,3270)" to="(800,3270)"/> <wire from="(1160,1390)" to="(1180,1390)"/> <wire from="(1430,3600)" to="(1430,3620)"/> <wire from="(1770,510)" to="(1810,510)"/> <wire from="(2870,110)" to="(2870,220)"/> <wire from="(2960,4170)" to="(2960,4210)"/> <wire from="(2160,2710)" to="(2380,2710)"/> <wire from="(1050,1360)" to="(1050,1510)"/> <wire from="(2470,1220)" to="(2500,1220)"/> <wire from="(2480,1880)" to="(2500,1880)"/> <wire from="(2220,1830)" to="(2220,1870)"/> <wire from="(1280,3760)" to="(1280,4110)"/> <wire from="(2980,3330)" to="(3010,3330)"/> <wire from="(3140,3390)" to="(3140,3450)"/> <wire from="(2480,1570)" to="(2490,1570)"/> <wire from="(2490,1260)" to="(2500,1260)"/> <wire from="(710,2430)" to="(710,2520)"/> <wire from="(1370,190)" to="(1370,900)"/> <wire from="(3640,1130)" to="(3640,3470)"/> <wire from="(2190,2560)" to="(2200,2560)"/> <wire from="(330,470)" to="(330,1960)"/> <wire from="(3000,3050)" to="(3010,3050)"/> <wire from="(3000,3370)" to="(3010,3370)"/> <wire from="(3350,1420)" to="(3350,1590)"/> <wire from="(2190,1350)" to="(2260,1350)"/> <wire from="(2770,3470)" to="(3100,3470)"/> <wire from="(1770,490)" to="(1830,490)"/> <wire from="(3170,220)" to="(3170,240)"/> <wire from="(1460,3490)" to="(1540,3490)"/> <wire from="(2550,640)" to="(2600,640)"/> <wire from="(1050,2130)" to="(1120,2130)"/> <wire from="(570,2520)" to="(600,2520)"/> <wire from="(2430,4600)" to="(2430,4610)"/> <wire from="(2180,4560)" to="(2360,4560)"/> <wire from="(3240,4510)" to="(3240,4640)"/> <wire from="(2500,190)" to="(2500,210)"/> <wire from="(1430,3380)" to="(1460,3380)"/> <wire from="(2940,4240)" to="(2980,4240)"/> <wire from="(1770,530)" to="(1790,530)"/> <wire from="(1160,300)" to="(1250,300)"/> <wire from="(2370,4540)" to="(2370,4570)"/> <wire from="(1190,800)" to="(1190,840)"/> <wire from="(1400,3680)" to="(1420,3680)"/> <wire from="(2490,180)" to="(2490,210)"/> <wire from="(1130,3410)" to="(1150,3410)"/> <wire from="(1110,3390)" to="(1130,3390)"/> <wire from="(2480,1860)" to="(2520,1860)"/> <wire from="(1910,670)" to="(1910,1280)"/> <wire from="(2230,1750)" to="(2260,1750)"/> <wire from="(3510,3050)" to="(3520,3050)"/> <wire from="(2590,2440)" to="(2610,2440)"/> <wire from="(3230,2770)" to="(3240,2770)"/> <wire from="(1130,3430)" to="(1130,3450)"/> <wire from="(2010,240)" to="(2050,240)"/> <wire from="(2580,4110)" to="(2580,4220)"/> <wire from="(780,1570)" to="(1480,1570)"/> <wire from="(2290,110)" to="(2290,150)"/> <wire from="(2210,460)" to="(2230,460)"/> <wire from="(2240,1770)" to="(2260,1770)"/> <wire from="(1260,3110)" to="(1260,3200)"/> <wire from="(3510,1520)" to="(3510,1620)"/> <wire from="(1260,3740)" to="(1260,4130)"/> <wire from="(1460,1960)" to="(1460,2220)"/> <wire from="(2560,2620)" to="(2560,2680)"/> <wire from="(3110,1050)" to="(3120,1050)"/> <wire from="(3110,730)" to="(3120,730)"/> <wire from="(3470,3000)" to="(3490,3000)"/> <wire from="(1510,190)" to="(2010,190)"/> <wire from="(3360,3470)" to="(3640,3470)"/> <wire from="(3330,940)" to="(3350,940)"/> <wire from="(3270,3440)" to="(3290,3440)"/> <wire from="(730,1880)" to="(1390,1880)"/> <wire from="(2610,4410)" to="(2730,4410)"/> <wire from="(1250,3670)" to="(1260,3670)"/> <wire from="(2180,2240)" to="(2180,2250)"/> <wire from="(3330,3390)" to="(3330,3420)"/> <wire from="(2490,1590)" to="(2490,1600)"/> <wire from="(2490,1270)" to="(2490,1280)"/> <wire from="(930,2050)" to="(960,2050)"/> <wire from="(3420,3250)" to="(3460,3250)"/> <wire from="(900,420)" to="(930,420)"/> <wire from="(2330,4630)" to="(2330,4640)"/> <wire from="(390,2810)" to="(400,2810)"/> <wire from="(3130,310)" to="(3130,340)"/> <wire from="(240,420)" to="(250,420)"/> <wire from="(1250,3650)" to="(1280,3650)"/> <wire from="(1250,3660)" to="(1270,3660)"/> <wire from="(2500,1280)" to="(2500,1310)"/> <wire from="(1060,800)" to="(1060,840)"/> <wire from="(2140,690)" to="(2180,690)"/> <wire from="(2220,1730)" to="(2260,1730)"/> <wire from="(2280,4580)" to="(2280,4610)"/> <wire from="(2550,780)" to="(2590,780)"/> <wire from="(240,1470)" to="(950,1470)"/> <wire from="(3200,3390)" to="(3200,3440)"/> <wire from="(1270,3380)" to="(1270,3400)"/> <wire from="(1590,1180)" to="(1590,4020)"/> <wire from="(2210,4420)" to="(2240,4420)"/> <wire from="(2910,4180)" to="(2910,4480)"/> <wire from="(2190,240)" to="(2220,240)"/> <wire from="(2460,4550)" to="(2680,4550)"/> <wire from="(3120,3430)" to="(3130,3430)"/> <wire from="(2770,1150)" to="(3120,1150)"/> <wire from="(2380,4600)" to="(2400,4600)"/> <wire from="(2550,610)" to="(2570,610)"/> <wire from="(1020,320)" to="(1080,320)"/> <wire from="(2980,3270)" to="(3010,3270)"/> <wire from="(2430,4540)" to="(2430,4580)"/> <wire from="(790,3540)" to="(790,3570)"/> <wire from="(720,3560)" to="(760,3560)"/> <wire from="(2370,120)" to="(2380,120)"/> <wire from="(2170,880)" to="(2180,880)"/> <wire from="(1350,1920)" to="(1350,2060)"/> <wire from="(2190,1290)" to="(2260,1290)"/> <wire from="(680,2370)" to="(850,2370)"/> <wire from="(3410,1420)" to="(3410,1590)"/> <wire from="(1770,2390)" to="(1770,2970)"/> <wire from="(2900,1710)" to="(2900,2870)"/> <wire from="(1470,3260)" to="(1470,3310)"/> <wire from="(2990,4140)" to="(2990,4150)"/> <wire from="(1290,960)" to="(1300,960)"/> <wire from="(3000,1090)" to="(3120,1090)"/> <wire from="(930,800)" to="(930,840)"/> <wire from="(2250,1800)" to="(2250,1810)"/> <wire from="(2240,2110)" to="(2240,2120)"/> <wire from="(2230,4340)" to="(2230,4350)"/> <wire from="(2440,150)" to="(2490,150)"/> <wire from="(900,300)" to="(990,300)"/> <wire from="(2990,4530)" to="(3050,4530)"/> <wire from="(3600,1090)" to="(3600,1500)"/> <wire from="(3030,990)" to="(3350,990)"/> <wire from="(3050,1010)" to="(3370,1010)"/> <wire from="(2540,1830)" to="(2540,1980)"/> <wire from="(2480,4590)" to="(2480,4610)"/> <wire from="(2570,2120)" to="(2570,2140)"/> <wire from="(2960,4300)" to="(2960,4390)"/> <wire from="(1450,3340)" to="(1480,3340)"/> <wire from="(2930,110)" to="(2930,200)"/> <wire from="(180,240)" to="(250,240)"/> <wire from="(1400,3620)" to="(1420,3620)"/> <wire from="(3030,4500)" to="(3030,4510)"/> <wire from="(3420,3050)" to="(3470,3050)"/> <wire from="(1250,3680)" to="(1250,3720)"/> <wire from="(1100,1400)" to="(1120,1400)"/> <comp lib="0" loc="(2170,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(900,280)" name="H_COUNTER"/> <comp lib="6" loc="(353,110)" name="Text"> <a name="text" val="2C02 PPU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(2200,2100)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(1390,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3110,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2430,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(2347,35)" name="Text"> <a name="text" val="Logisim doesn't support bidirectional pads and wires"/> </comp> <comp lib="0" loc="(2810,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ALE"/> <a name="labelloc" val="south"/> </comp> <comp lib="4" loc="(3460,1380)" name="RAM"> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(2170,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(660,2480)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2540,2170)" name="MUX"/> <comp lib="0" loc="(3180,1380)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> </comp> <comp lib="0" loc="(2130,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA12"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(2280,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2240,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3078,58)" name="Text"> <a name="text" val="EXT INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(2190,2560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2270,430)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(2530,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2940,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2890,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2220,4240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1130,1750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3200,240)" name="EXT_IO"/> <comp lib="0" loc="(2130,820)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp loc="(2550,210)" name="CPU_DATA_IO"/> <comp lib="1" loc="(190,1850)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2680,4310)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(390,2300)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="1" loc="(2680,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3560,1610)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(3520,3050)" name="Tunnel"> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,2760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(2170,1470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1170,3390)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(2550,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1310,3180)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(660,590)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3360,3900)" name="BG_COLOR"/> <comp lib="0" loc="(2570,610)" name="Tunnel"> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2490,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1560,150)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(2140,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1780,330)" name="Tunnel"> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2250,2060)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2170,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2730,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2210,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,1130)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(400,2810)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3140,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(200,2090)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2040,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(3220,1500)" name="Demultiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1980,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(3260,710)" name="OAM_BUF_CONTROL"/> <comp lib="0" loc="(2420,2760)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1150,1420)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> </comp> <comp lib="0" loc="(2250,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(870,840)" name="CONTROL_UNIT_NTSC"/> <comp lib="1" loc="(2230,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1110,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(3530,1500)" name="Multiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(210,330)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2180,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1300,990)" name="Tunnel"> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2990,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="0" loc="(2580,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2660,4310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(2190,2320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3550,1610)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp loc="(2470,1080)" name="OAM_EVAL"/> <comp lib="0" loc="(640,2480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(1430,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2190,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(760,3560)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(2080,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1130,1710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2480,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3110,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(3290,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(1300,1200)" name="Tunnel"> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1070,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3070,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2170,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1230,3600)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2560,2330)" name="Tunnel"> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1770,300)" name="REGISTER_SELECT"/> <comp lib="0" loc="(3270,2720)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1110,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2150,2260)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(3000,2810)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2680,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(760,3260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2030,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2170,1280)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2240,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3250,1550)" name="Controlled Buffer"> <a name="width" val="5"/> </comp> <comp lib="0" loc="(2530,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1780,310)" name="Tunnel"> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(650,590)" name="PIXEL_CLOCK_NTSC"> <a name="label" val="PIXEL CLOCK"/> </comp> <comp lib="6" loc="(1814,60)" name="Text"> <a name="text" val="CPU INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(3230,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(770,3260)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> </comp> <comp lib="0" loc="(1230,1430)" name="Tunnel"> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,3220)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(2350,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1300,960)" name="Tunnel"> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2480,1550)" name="CONTROL_REGS_NTSC"/> <comp lib="0" loc="(1780,410)" name="Tunnel"> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1400,3530)" name="READ_$2007"/> <comp lib="0" loc="(2590,2440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1070,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2380,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2580,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2960,3940)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(230,2810)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(3460,1550)" name="RAM"> <a name="addrWidth" val="5"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(2130,2260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3330,1030)" name="OAM_BUFFER"/> <comp lib="0" loc="(2960,3050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2540,4170)" name="VRAM_BUS_CONTROL"/> <comp lib="0" loc="(1110,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3420,2790)" name="PICTURE_ADDRESS_GEN"/> <comp lib="0" loc="(2140,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2170,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3443,1333)" name="Text"> <a name="text" val="OAM1"/> </comp> <comp lib="0" loc="(1500,3380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2240,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2990,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1430,3160)" name="H_INVERSION"/> <comp lib="0" loc="(1130,1670)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1460,3600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2520,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2980,4240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> </comp> <comp lib="0" loc="(3180,1560)" name="Splitter"> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> </comp> <comp lib="0" loc="(2940,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(560,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(180,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2330,4520)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(2570,2120)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2240,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3360,3470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp loc="(1290,550)" name="HV_SELECT_NTSC"/> <comp lib="0" loc="(1130,1730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2080,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2150,4400)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1140,1670)" name="INTERRUPT_CONTROL"/> <comp lib="0" loc="(120,1850)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/INT"/> </comp> <comp lib="0" loc="(2330,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2200,1840)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2470,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(3370,1650)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2150,2390)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(810,3220)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2630,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(850,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3190,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(590,2440)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(2940,4180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2160,2480)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2550,4310)" name="Tunnel"> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2030,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="south"/> </comp> <comp lib="4" loc="(680,2370)" name="RAM"> <a name="addrWidth" val="5"/> <a name="dataWidth" val="6"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(2250,2140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2370,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3100,3470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2930,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp lib="0" loc="(810,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3010,2750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2630,720)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1230,3410)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2230,4190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1560,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2730,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3240,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3040,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD4"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(170,590)" name="NOT Gate"/> <comp lib="0" loc="(2980,3050)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="1" loc="(2180,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3000,3370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1180,1450)" name="Tunnel"> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1300,1010)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3910)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2810,4610)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2430,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3110,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1240,3500)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2870,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp lib="0" loc="(3170,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(2310,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2550,580)" name="OAM_CONTROL_NTSC"/> <comp lib="0" loc="(2210,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(2530,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3320)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2250,1710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1140,2010)" name="COLOR_CONTROL"/> <comp lib="0" loc="(3020,4480)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3060,380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(2130,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2190,4400)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="14"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="1"/> <a name="bit10" val="2"/> <a name="bit11" val="3"/> <a name="bit12" val="4"/> <a name="bit13" val="5"/> </comp> <comp lib="0" loc="(2990,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(850,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(600,2520)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2580,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3090,760)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="4" loc="(2680,4350)" name="D Flip-Flop"/> <comp lib="0" loc="(2230,4280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1310,3780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3090,4640)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD3"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(2662,4728)" name="Text"> <a name="text" val="VRAM INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(2210,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2210,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,4340)" name="Tunnel"> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2346,53)" name="Text"> <a name="text" val="So we have to add workaround by separate I/O wires"/> </comp> <comp lib="0" loc="(2960,4300)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="label" val="VOUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2380,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2190,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1520,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(2170,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3290,1380)" name="Controlled Inverter"> <a name="width" val="8"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2480,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3110,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,3740)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(3270,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(2520,2050)" name="SELECT_2.3.5.7_PIXEL"/> <comp lib="0" loc="(3330,2720)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3490,3290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2410,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2280,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(240,1980)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(270,1960)" name="COLOR_IO"/> <comp lib="0" loc="(2170,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3410,4090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1980,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2890,4480)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3443,1504)" name="Text"> <a name="text" val="OAM2"/> </comp> <comp lib="0" loc="(3050,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="0" loc="(2170,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2230,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2140,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2980,3940)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(400,2760)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2645,4404)" name="Text"> <a name="text" val="WR DELAY"/> </comp> <comp lib="0" loc="(2220,4220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3250)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(1470,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2600,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp loc="(250,230)" name="VIDEO_OUT_NTSC"/> <comp lib="6" loc="(142,2877)" name="Text"> <a name="text" val="Manual cleaning"/> </comp> <comp lib="0" loc="(3000,2830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,3240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3560,3170)" name="Tunnel"> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,1690)" name="Tunnel"> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2120,640)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(2330,4630)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="5" loc="(150,2840)" name="Button"/> <comp lib="0" loc="(1110,2070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1250,1410)" name="Tunnel"> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3490,3170)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2110,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(980,2090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(1510,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2630,4640)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2230,4300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,2260)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2430,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3510,3030)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(700,3310)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1300,1220)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2190,220)" name="RW_CONTROL"/> <comp lib="0" loc="(2180,2100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(240,2760)" name="RESET_FF"/> <comp loc="(1160,280)" name="V_COUNTER"/> <comp lib="0" loc="(2290,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp loc="(1110,3200)" name="OAM_FIFO"/> <comp lib="0" loc="(1270,1390)" name="Tunnel"> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1520,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2510,1590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> </circuit> <circuit name="2C04-0003_RGB"> <a name="circuit" val="2C04-0003_RGB"/> <a name="clabel" val="2C04-0003 RGB"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M634,52 Q638,62 642,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#dda2ff" height="572" stroke="#000000" stroke-width="2" width="340" x="420" y="51"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="115">AD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="585">/INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="395">AD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="356">AD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="732" y="606">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="605">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="235">AD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="524">PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="141">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="201">DB3</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="587" y="85">PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="85">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="315">AD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="195">AD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="442" y="425">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="375">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="736" y="465">PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="171">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="425">PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="355">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="75">ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="545">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="484">PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="232">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="290">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="275">AD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="261">DB5</text> <polyline fill="none" points="491,53 491,621" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="445">PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="320">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="735" y="586">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="395">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="111">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="565">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="736" y="504">PA12</text> <polyline fill="none" points="691,51 691,621" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="446" y="544">AGND</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="454">RED</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="484">GREEN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="444" y="515">BLUE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="155">AD1</text> <circ-port height="10" pin="150,660" width="10" x="755" y="595"/> <circ-port height="10" pin="150,700" width="10" x="415" y="505"/> <circ-port height="10" pin="150,730" width="10" x="415" y="475"/> <circ-port height="10" pin="150,760" width="10" x="415" y="445"/> <circ-port height="8" pin="90,970" width="8" x="756" y="576"/> <circ-port height="10" pin="100,1830" width="10" x="415" y="575"/> <circ-port height="8" pin="1330,160" width="8" x="416" y="416"/> <circ-port height="8" pin="1370,160" width="8" x="416" y="386"/> <circ-port height="8" pin="1410,160" width="8" x="416" y="366"/> <circ-port height="8" pin="1450,160" width="8" x="416" y="346"/> <circ-port height="8" pin="1490,160" width="8" x="416" y="76"/> <circ-port height="10" pin="2580,170" width="10" x="415" y="315"/> <circ-port height="8" pin="2600,170" width="8" x="416" y="306"/> <circ-port height="10" pin="2530,170" width="10" x="415" y="285"/> <circ-port height="8" pin="2550,170" width="8" x="416" y="276"/> <circ-port height="10" pin="2470,170" width="10" x="415" y="255"/> <circ-port height="8" pin="2490,170" width="8" x="416" y="246"/> <circ-port height="10" pin="2410,170" width="10" x="415" y="225"/> <circ-port height="8" pin="2430,170" width="8" x="416" y="216"/> <circ-port height="10" pin="2350,170" width="10" x="415" y="195"/> <circ-port height="8" pin="2370,170" width="8" x="416" y="186"/> <circ-port height="10" pin="2290,170" width="10" x="415" y="165"/> <circ-port height="8" pin="2310,170" width="8" x="416" y="156"/> <circ-port height="10" pin="2230,170" width="10" x="415" y="135"/> <circ-port height="8" pin="2250,170" width="8" x="416" y="126"/> <circ-port height="10" pin="2170,170" width="10" x="415" y="105"/> <circ-port height="8" pin="2190,170" width="8" x="416" y="96"/> <circ-port height="10" pin="1930,4710" width="10" x="755" y="555"/> <circ-port height="10" pin="1980,4710" width="10" x="755" y="535"/> <circ-port height="10" pin="2060,4710" width="10" x="755" y="515"/> <circ-port height="10" pin="2110,4710" width="10" x="755" y="495"/> <circ-port height="10" pin="2160,4710" width="10" x="755" y="475"/> <circ-port height="10" pin="2210,4710" width="10" x="755" y="455"/> <circ-port height="10" pin="2260,4710" width="10" x="755" y="435"/> <circ-port height="10" pin="2310,4710" width="10" x="755" y="415"/> <circ-port height="10" pin="2360,4710" width="10" x="755" y="375"/> <circ-port height="10" pin="2410,4710" width="10" x="755" y="335"/> <circ-port height="10" pin="2460,4710" width="10" x="755" y="295"/> <circ-port height="10" pin="2510,4710" width="10" x="755" y="255"/> <circ-port height="10" pin="2560,4710" width="10" x="755" y="215"/> <circ-port height="10" pin="2610,4710" width="10" x="755" y="175"/> <circ-port height="10" pin="2660,4710" width="10" x="755" y="135"/> <circ-port height="10" pin="2710,4710" width="10" x="755" y="95"/> <circ-port height="10" pin="2790,4710" width="10" x="755" y="65"/> <circ-port height="8" pin="2870,4710" width="8" x="756" y="396"/> <circ-port height="8" pin="2920,4710" width="8" x="756" y="356"/> <circ-port height="8" pin="2970,4710" width="8" x="756" y="316"/> <circ-port height="8" pin="3020,4710" width="8" x="756" y="276"/> <circ-port height="8" pin="3070,4710" width="8" x="756" y="236"/> <circ-port height="8" pin="3120,4710" width="8" x="756" y="196"/> <circ-port height="8" pin="3170,4710" width="8" x="756" y="156"/> <circ-port height="8" pin="3220,4710" width="8" x="756" y="116"/> <circ-port height="8" pin="90,800" width="8" x="416" y="536"/> <circ-port height="8" pin="90,870" width="8" x="416" y="596"/> <circ-anchor facing="east" height="6" width="6" x="757" y="47"/> </appear> <wire from="(2950,3380)" to="(2970,3380)"/> <wire from="(1750,560)" to="(1790,560)"/> <wire from="(1410,3650)" to="(1410,3670)"/> <wire from="(2940,4220)" to="(2940,4260)"/> <wire from="(2450,1270)" to="(2480,1270)"/> <wire from="(1110,2360)" to="(1340,2360)"/> <wire from="(2680,4380)" to="(2710,4380)"/> <wire from="(1260,3810)" to="(1260,4160)"/> <wire from="(2460,1930)" to="(2480,1930)"/> <wire from="(2200,1880)" to="(2200,1920)"/> <wire from="(1320,1730)" to="(1360,1730)"/> <wire from="(2470,230)" to="(2470,270)"/> <wire from="(2940,930)" to="(3100,930)"/> <wire from="(3060,1560)" to="(3090,1560)"/> <wire from="(2460,1620)" to="(2470,1620)"/> <wire from="(2470,1310)" to="(2480,1310)"/> <wire from="(1460,1640)" to="(1460,2030)"/> <wire from="(640,3060)" to="(640,3470)"/> <wire from="(2170,2610)" to="(2180,2610)"/> <wire from="(2460,220)" to="(2460,270)"/> <wire from="(2010,1110)" to="(2010,1240)"/> <wire from="(1750,540)" to="(1810,540)"/> <wire from="(160,220)" to="(160,380)"/> <wire from="(3220,4560)" to="(3220,4710)"/> <wire from="(1630,3200)" to="(2720,3200)"/> <wire from="(660,450)" to="(680,450)"/> <wire from="(2150,2660)" to="(2150,2730)"/> <wire from="(2610,770)" to="(2660,770)"/> <wire from="(2460,4700)" to="(2460,4710)"/> <wire from="(2410,170)" to="(2410,180)"/> <wire from="(3080,3400)" to="(3080,3430)"/> <wire from="(2160,4610)" to="(2340,4610)"/> <wire from="(2140,2650)" to="(2140,2730)"/> <wire from="(130,970)" to="(130,2810)"/> <wire from="(2680,3360)" to="(2970,3360)"/> <wire from="(1410,3430)" to="(1440,3430)"/> <wire from="(1750,580)" to="(1770,580)"/> <wire from="(1440,3740)" to="(1440,3900)"/> <wire from="(1140,350)" to="(1230,350)"/> <wire from="(2410,4650)" to="(2410,4680)"/> <wire from="(1170,850)" to="(1170,890)"/> <wire from="(1380,3730)" to="(1400,3730)"/> <wire from="(3380,3140)" to="(3430,3140)"/> <wire from="(2350,4590)" to="(2350,4620)"/> <wire from="(2140,1340)" to="(2240,1340)"/> <wire from="(1090,3440)" to="(1110,3440)"/> <wire from="(1110,3460)" to="(1130,3460)"/> <wire from="(2460,1910)" to="(2500,1910)"/> <wire from="(540,1620)" to="(550,1620)"/> <wire from="(1890,720)" to="(1890,1330)"/> <wire from="(630,430)" to="(640,430)"/> <wire from="(210,500)" to="(210,1520)"/> <wire from="(3260,2750)" to="(3260,2800)"/> <wire from="(2210,1800)" to="(2240,1800)"/> <wire from="(3270,3400)" to="(3270,3450)"/> <wire from="(1110,3480)" to="(1110,3500)"/> <wire from="(610,2560)" to="(1110,2560)"/> <wire from="(3130,1460)" to="(3140,1460)"/> <wire from="(2880,1760)" to="(2880,2880)"/> <wire from="(2220,1820)" to="(2240,1820)"/> <wire from="(1240,3790)" to="(1240,4180)"/> <wire from="(2160,2730)" to="(2170,2730)"/> <wire from="(2210,2140)" to="(2220,2140)"/> <wire from="(2260,4630)" to="(2260,4680)"/> <wire from="(3090,780)" to="(3100,780)"/> <wire from="(2520,4310)" to="(2790,4310)"/> <wire from="(2540,2670)" to="(2540,2730)"/> <wire from="(3310,990)" to="(3330,990)"/> <wire from="(2520,4370)" to="(2530,4370)"/> <wire from="(2460,220)" to="(2530,220)"/> <wire from="(1230,3720)" to="(1240,3720)"/> <wire from="(2160,2290)" to="(2160,2300)"/> <wire from="(3410,2900)" to="(3410,2930)"/> <wire from="(2470,1640)" to="(2470,1650)"/> <wire from="(2470,1320)" to="(2470,1330)"/> <wire from="(3410,2990)" to="(3450,2990)"/> <wire from="(2800,4090)" to="(2990,4090)"/> <wire from="(880,470)" to="(910,470)"/> <wire from="(3390,2950)" to="(3450,2950)"/> <wire from="(370,2860)" to="(380,2860)"/> <wire from="(2750,3060)" to="(2750,3470)"/> <wire from="(2560,4160)" to="(2560,4250)"/> <wire from="(1230,3700)" to="(1260,3700)"/> <wire from="(1230,3710)" to="(1250,3710)"/> <wire from="(2480,1330)" to="(2480,1360)"/> <wire from="(1040,850)" to="(1040,890)"/> <wire from="(2200,1780)" to="(2240,1780)"/> <wire from="(2190,240)" to="(2290,240)"/> <wire from="(2140,1470)" to="(2240,1470)"/> <wire from="(1250,3430)" to="(1250,3450)"/> <wire from="(1570,1230)" to="(1570,4070)"/> <wire from="(2890,4230)" to="(2890,4530)"/> <wire from="(2950,3320)" to="(2970,3320)"/> <wire from="(2440,4600)" to="(2660,4600)"/> <wire from="(2610,730)" to="(2640,730)"/> <wire from="(2360,4650)" to="(2380,4650)"/> <wire from="(1000,370)" to="(1060,370)"/> <wire from="(2780,3100)" to="(2780,3260)"/> <wire from="(2940,3300)" to="(2970,3300)"/> <wire from="(2410,4590)" to="(2410,4630)"/> <wire from="(2460,4640)" to="(2460,4680)"/> <wire from="(770,3590)" to="(770,3620)"/> <wire from="(700,3610)" to="(740,3610)"/> <wire from="(2230,1010)" to="(2240,1010)"/> <wire from="(930,1570)" to="(930,1720)"/> <wire from="(3090,1230)" to="(3100,1230)"/> <wire from="(660,2420)" to="(830,2420)"/> <wire from="(3210,1660)" to="(3230,1660)"/> <wire from="(290,570)" to="(290,2010)"/> <wire from="(1450,3310)" to="(1450,3360)"/> <wire from="(2970,4190)" to="(2970,4200)"/> <wire from="(3160,2780)" to="(3160,2800)"/> <wire from="(1270,1010)" to="(1280,1010)"/> <wire from="(3010,4550)" to="(3010,4560)"/> <wire from="(910,850)" to="(910,890)"/> <wire from="(590,2560)" to="(610,2560)"/> <wire from="(2230,1850)" to="(2230,1860)"/> <wire from="(2220,2160)" to="(2220,2170)"/> <wire from="(2970,4580)" to="(3030,4580)"/> <wire from="(880,350)" to="(970,350)"/> <wire from="(150,730)" to="(680,730)"/> <wire from="(3140,3400)" to="(3140,3430)"/> <wire from="(2520,1880)" to="(2520,2030)"/> <wire from="(2680,3360)" to="(2680,4280)"/> <wire from="(3020,1290)" to="(3020,1510)"/> <wire from="(2550,2170)" to="(2550,2190)"/> <wire from="(2940,4350)" to="(2940,4440)"/> <wire from="(1430,3390)" to="(1460,3390)"/> <wire from="(2600,170)" to="(2600,250)"/> <wire from="(100,1830)" to="(170,1830)"/> <wire from="(1380,3670)" to="(1400,3670)"/> <wire from="(2470,170)" to="(2470,200)"/> <wire from="(1230,3730)" to="(1230,3770)"/> <wire from="(1080,1450)" to="(1100,1450)"/> <wire from="(630,370)" to="(640,370)"/> <wire from="(1690,1740)" to="(2240,1740)"/> <wire from="(2660,810)" to="(2660,850)"/> <wire from="(1400,3710)" to="(1400,3730)"/> <wire from="(3420,3290)" to="(3430,3290)"/> <wire from="(3230,1630)" to="(3370,1630)"/> <wire from="(3430,2860)" to="(3430,2910)"/> <wire from="(1410,3720)" to="(1410,3750)"/> <wire from="(800,1600)" to="(1500,1600)"/> <wire from="(2520,2380)" to="(2540,2380)"/> <wire from="(3100,1570)" to="(3100,1630)"/> <wire from="(2170,2680)" to="(2180,2680)"/> <wire from="(3140,1460)" to="(3230,1460)"/> <wire from="(2120,2310)" to="(2130,2310)"/> <wire from="(3380,2920)" to="(3400,2920)"/> <wire from="(1030,1410)" to="(1030,1740)"/> <wire from="(3330,3400)" to="(3330,3440)"/> <wire from="(1390,3700)" to="(1390,3710)"/> <wire from="(2710,4700)" to="(2710,4710)"/> <wire from="(2630,780)" to="(2630,790)"/> <wire from="(2960,4310)" to="(2960,4320)"/> <wire from="(1190,3290)" to="(1190,3920)"/> <wire from="(1850,500)" to="(1850,2980)"/> <wire from="(3410,2930)" to="(3450,2930)"/> <wire from="(390,2300)" to="(540,2300)"/> <wire from="(1230,3410)" to="(1300,3410)"/> <wire from="(200,390)" to="(210,390)"/> <wire from="(2650,800)" to="(2650,830)"/> <wire from="(3230,2730)" to="(3290,2730)"/> <wire from="(1320,1820)" to="(1340,1820)"/> <wire from="(2480,1270)" to="(2480,1300)"/> <wire from="(1100,850)" to="(1100,890)"/> <wire from="(2200,760)" to="(2240,760)"/> <wire from="(2640,790)" to="(2640,810)"/> <wire from="(2140,1410)" to="(2240,1410)"/> <wire from="(1420,3730)" to="(1420,3770)"/> <wire from="(630,500)" to="(640,500)"/> <wire from="(3060,810)" to="(3080,810)"/> <wire from="(3080,1150)" to="(3100,1150)"/> <wire from="(780,3540)" to="(780,3550)"/> <wire from="(1230,3350)" to="(1230,3380)"/> <wire from="(2520,2510)" to="(2540,2510)"/> <wire from="(2960,4220)" to="(2990,4220)"/> <wire from="(2560,2630)" to="(2560,2730)"/> <wire from="(2200,4430)" to="(2220,4430)"/> <wire from="(740,370)" to="(800,370)"/> <wire from="(1240,3750)" to="(1300,3750)"/> <wire from="(1170,470)" to="(1170,600)"/> <wire from="(2530,170)" to="(2530,220)"/> <wire from="(1340,1910)" to="(1340,2360)"/> <wire from="(1250,3450)" to="(1300,3450)"/> <wire from="(2510,4630)" to="(2510,4680)"/> <wire from="(190,480)" to="(230,480)"/> <wire from="(3120,3430)" to="(3140,3430)"/> <wire from="(2100,1100)" to="(2680,1100)"/> <wire from="(1260,3700)" to="(1260,3710)"/> <wire from="(3320,1390)" to="(3340,1390)"/> <wire from="(2940,4180)" to="(2990,4180)"/> <wire from="(780,3330)" to="(800,3330)"/> <wire from="(3070,4550)" to="(3070,4570)"/> <wire from="(1270,1270)" to="(1280,1270)"/> <wire from="(350,570)" to="(350,2010)"/> <wire from="(200,2100)" to="(230,2100)"/> <wire from="(970,850)" to="(970,890)"/> <wire from="(2260,4700)" to="(2260,4710)"/> <wire from="(3190,2750)" to="(3190,2780)"/> <wire from="(190,480)" to="(190,1740)"/> <wire from="(770,3310)" to="(800,3310)"/> <wire from="(1150,1450)" to="(1180,1450)"/> <wire from="(1150,2440)" to="(2140,2440)"/> <wire from="(890,1410)" to="(890,1470)"/> <wire from="(1590,1190)" to="(1590,4050)"/> <wire from="(1440,3060)" to="(2750,3060)"/> <wire from="(1140,490)" to="(1160,490)"/> <wire from="(1550,1310)" to="(1550,3140)"/> <wire from="(630,310)" to="(640,310)"/> <wire from="(3410,1620)" to="(3420,1620)"/> <wire from="(2970,4370)" to="(2990,4370)"/> <wire from="(2460,1820)" to="(2670,1820)"/> <wire from="(3020,1290)" to="(3430,1290)"/> <wire from="(2470,1070)" to="(2470,1180)"/> <wire from="(2960,4350)" to="(2990,4350)"/> <wire from="(2470,1320)" to="(2480,1320)"/> <wire from="(2100,3870)" to="(3390,3870)"/> <wire from="(760,3740)" to="(800,3740)"/> <wire from="(2920,1390)" to="(2920,1570)"/> <wire from="(640,3060)" to="(1390,3060)"/> <wire from="(3430,2910)" to="(3450,2910)"/> <wire from="(2440,210)" to="(2440,270)"/> <wire from="(1110,1440)" to="(1110,1450)"/> <wire from="(700,3380)" to="(720,3380)"/> <wire from="(2070,2070)" to="(2070,2390)"/> <wire from="(1140,370)" to="(1220,370)"/> <wire from="(760,3760)" to="(780,3760)"/> <wire from="(780,3780)" to="(800,3780)"/> <wire from="(420,2220)" to="(420,2320)"/> <wire from="(830,2310)" to="(830,2420)"/> <wire from="(1980,4510)" to="(2550,4510)"/> <wire from="(2520,2610)" to="(2570,2610)"/> <wire from="(3380,3160)" to="(3420,3160)"/> <wire from="(2940,4440)" to="(3450,4440)"/> <wire from="(1230,3350)" to="(1300,3350)"/> <wire from="(760,3750)" to="(790,3750)"/> <wire from="(2340,4590)" to="(2340,4610)"/> <wire from="(1710,1720)" to="(2240,1720)"/> <wire from="(2700,4030)" to="(2990,4030)"/> <wire from="(190,2760)" to="(190,2810)"/> <wire from="(1080,1410)" to="(1080,1450)"/> <wire from="(1160,850)" to="(1160,890)"/> <wire from="(2200,700)" to="(2240,700)"/> <wire from="(760,3770)" to="(770,3770)"/> <wire from="(2640,730)" to="(2640,750)"/> <wire from="(2140,1350)" to="(2240,1350)"/> <wire from="(2710,4380)" to="(2710,4530)"/> <wire from="(630,440)" to="(640,440)"/> <wire from="(1440,2590)" to="(1440,3060)"/> <wire from="(3450,3300)" to="(3450,4440)"/> <wire from="(1090,1800)" to="(1090,2010)"/> <wire from="(1910,440)" to="(1910,790)"/> <wire from="(2490,240)" to="(2580,240)"/> <wire from="(700,3400)" to="(700,3410)"/> <wire from="(3160,2780)" to="(3170,2780)"/> <wire from="(780,990)" to="(840,990)"/> <wire from="(190,1830)" to="(690,1830)"/> <wire from="(2570,2490)" to="(2600,2490)"/> <wire from="(910,470)" to="(910,600)"/> <wire from="(2960,4160)" to="(2990,4160)"/> <wire from="(1210,3460)" to="(1210,3550)"/> <wire from="(1240,3370)" to="(1300,3370)"/> <wire from="(3210,3450)" to="(3240,3450)"/> <wire from="(2540,2480)" to="(2550,2480)"/> <wire from="(2320,220)" to="(2320,270)"/> <wire from="(2200,1820)" to="(2210,1820)"/> <wire from="(2230,890)" to="(2240,890)"/> <wire from="(2560,4620)" to="(2560,4680)"/> <wire from="(2190,4370)" to="(2200,4370)"/> <wire from="(2470,230)" to="(2550,230)"/> <wire from="(2150,2730)" to="(2160,2730)"/> <wire from="(2940,4160)" to="(2950,4160)"/> <wire from="(3090,1110)" to="(3100,1110)"/> <wire from="(1250,3390)" to="(1300,3390)"/> <wire from="(2940,4120)" to="(2990,4120)"/> <wire from="(2520,4400)" to="(2640,4400)"/> <wire from="(880,490)" to="(900,490)"/> <wire from="(2430,200)" to="(2430,270)"/> <wire from="(760,3780)" to="(760,3820)"/> <wire from="(1050,350)" to="(1060,350)"/> <wire from="(3290,3430)" to="(3290,3450)"/> <wire from="(660,540)" to="(660,700)"/> <wire from="(3280,3420)" to="(3280,3450)"/> <wire from="(2950,4140)" to="(2990,4140)"/> <wire from="(1030,850)" to="(1030,890)"/> <wire from="(1230,3400)" to="(1250,3400)"/> <wire from="(1190,430)" to="(1190,600)"/> <wire from="(3300,3440)" to="(3300,3450)"/> <wire from="(3400,2980)" to="(3450,2980)"/> <wire from="(2410,4630)" to="(2510,4630)"/> <wire from="(3380,3280)" to="(3430,3280)"/> <wire from="(2140,1480)" to="(2240,1480)"/> <wire from="(2030,1520)" to="(2030,3920)"/> <wire from="(1270,1210)" to="(1610,1210)"/> <wire from="(2660,690)" to="(2660,730)"/> <wire from="(2870,4530)" to="(2890,4530)"/> <wire from="(3120,2750)" to="(3120,2800)"/> <wire from="(2150,4570)" to="(2310,4570)"/> <wire from="(3420,3170)" to="(3430,3170)"/> <wire from="(3080,4560)" to="(3220,4560)"/> <wire from="(1140,1410)" to="(1140,1430)"/> <wire from="(2010,970)" to="(2240,970)"/> <wire from="(2110,4600)" to="(2330,4600)"/> <wire from="(780,3290)" to="(780,3300)"/> <wire from="(2750,1210)" to="(3100,1210)"/> <wire from="(2970,2770)" to="(3060,2770)"/> <wire from="(2630,760)" to="(2660,760)"/> <wire from="(2610,750)" to="(2630,750)"/> <wire from="(490,2940)" to="(2600,2940)"/> <wire from="(2220,1320)" to="(2240,1320)"/> <wire from="(480,2220)" to="(480,2310)"/> <wire from="(2400,4590)" to="(2400,4640)"/> <wire from="(760,3680)" to="(800,3680)"/> <wire from="(2170,2240)" to="(2180,2240)"/> <wire from="(3450,3180)" to="(3480,3180)"/> <wire from="(2720,4010)" to="(2990,4010)"/> <wire from="(3060,3440)" to="(3080,3440)"/> <wire from="(2650,800)" to="(2660,800)"/> <wire from="(780,3720)" to="(800,3720)"/> <wire from="(690,1660)" to="(690,1830)"/> <wire from="(1410,3720)" to="(1420,3720)"/> <wire from="(2510,4700)" to="(2510,4710)"/> <wire from="(3250,1600)" to="(3250,1620)"/> <wire from="(900,850)" to="(900,890)"/> <wire from="(2210,4400)" to="(2210,4410)"/> <wire from="(660,3080)" to="(2670,3080)"/> <wire from="(2970,4580)" to="(2970,4710)"/> <wire from="(2520,2150)" to="(2520,2160)"/> <wire from="(3140,2770)" to="(3140,2800)"/> <wire from="(770,3700)" to="(800,3700)"/> <wire from="(3380,3080)" to="(3440,3080)"/> <wire from="(3330,3470)" to="(3330,3540)"/> <wire from="(3000,1190)" to="(3100,1190)"/> <wire from="(2530,2160)" to="(2530,2180)"/> <wire from="(1130,1500)" to="(1160,1500)"/> <wire from="(220,290)" to="(230,290)"/> <wire from="(1370,160)" to="(1370,460)"/> <wire from="(590,2460)" to="(590,2510)"/> <wire from="(2200,1920)" to="(2240,1920)"/> <wire from="(1220,850)" to="(1220,890)"/> <wire from="(880,370)" to="(960,370)"/> <wire from="(630,380)" to="(640,380)"/> <wire from="(3380,2940)" to="(3390,2940)"/> <wire from="(790,3750)" to="(790,3760)"/> <wire from="(490,1600)" to="(550,1600)"/> <wire from="(3420,3340)" to="(3420,4420)"/> <wire from="(2160,2670)" to="(2180,2670)"/> <wire from="(2230,500)" to="(2250,500)"/> <wire from="(1650,1150)" to="(1650,1300)"/> <wire from="(740,3880)" to="(1480,3880)"/> <wire from="(2170,2370)" to="(2180,2370)"/> <wire from="(2230,1150)" to="(2240,1150)"/> <wire from="(2230,2110)" to="(2240,2110)"/> <wire from="(2210,4330)" to="(2220,4330)"/> <wire from="(2960,2840)" to="(2970,2840)"/> <wire from="(2610,960)" to="(3010,960)"/> <wire from="(1410,3490)" to="(1460,3490)"/> <wire from="(3210,1430)" to="(3210,1600)"/> <wire from="(200,380)" to="(230,380)"/> <wire from="(1230,3670)" to="(1240,3670)"/> <wire from="(930,430)" to="(930,600)"/> <wire from="(530,1680)" to="(550,1680)"/> <wire from="(1240,1440)" to="(1250,1440)"/> <wire from="(470,570)" to="(470,2010)"/> <wire from="(2610,850)" to="(2660,850)"/> <wire from="(3220,2750)" to="(3260,2750)"/> <wire from="(2060,4700)" to="(2060,4710)"/> <wire from="(2290,210)" to="(2340,210)"/> <wire from="(210,400)" to="(230,400)"/> <wire from="(370,2810)" to="(380,2810)"/> <wire from="(1090,850)" to="(1090,890)"/> <wire from="(2200,770)" to="(2240,770)"/> <wire from="(1490,400)" to="(1510,400)"/> <wire from="(790,350)" to="(800,350)"/> <wire from="(3380,3220)" to="(3430,3220)"/> <wire from="(630,510)" to="(640,510)"/> <wire from="(1210,390)" to="(1210,600)"/> <wire from="(1240,3370)" to="(1240,3390)"/> <wire from="(710,1910)" to="(1340,1910)"/> <wire from="(3180,2750)" to="(3180,2800)"/> <wire from="(2520,4430)" to="(2550,4430)"/> <wire from="(1270,930)" to="(1310,930)"/> <wire from="(1410,3310)" to="(1450,3310)"/> <wire from="(2220,1260)" to="(2240,1260)"/> <wire from="(2750,1210)" to="(2750,1970)"/> <wire from="(3130,3440)" to="(3160,3440)"/> <wire from="(1930,4700)" to="(1930,4710)"/> <wire from="(3370,1530)" to="(3370,1630)"/> <wire from="(540,2220)" to="(540,2300)"/> <wire from="(1490,160)" to="(1490,300)"/> <wire from="(3020,1170)" to="(3100,1170)"/> <wire from="(2650,740)" to="(2660,740)"/> <wire from="(1030,1740)" to="(1110,1740)"/> <wire from="(3470,3040)" to="(3470,3060)"/> <wire from="(1790,560)" to="(1790,1640)"/> <wire from="(200,2110)" to="(230,2110)"/> <wire from="(960,850)" to="(960,890)"/> <wire from="(3380,3040)" to="(3420,3040)"/> <wire from="(2720,3200)" to="(2970,3200)"/> <wire from="(3060,4550)" to="(3060,4580)"/> <wire from="(2610,4610)" to="(2610,4680)"/> <wire from="(1290,530)" to="(1290,910)"/> <wire from="(390,2330)" to="(720,2330)"/> <wire from="(2920,4570)" to="(3020,4570)"/> <wire from="(930,1570)" to="(2470,1570)"/> <wire from="(2280,250)" to="(2280,270)"/> <wire from="(740,3310)" to="(750,3310)"/> <wire from="(2890,4530)" to="(3000,4530)"/> <wire from="(630,320)" to="(640,320)"/> <wire from="(150,700)" to="(660,700)"/> <wire from="(2950,3080)" to="(2970,3080)"/> <wire from="(2150,2270)" to="(2180,2270)"/> <wire from="(2670,1820)" to="(2670,3080)"/> <wire from="(3280,3420)" to="(3290,3420)"/> <wire from="(2610,810)" to="(2640,810)"/> <wire from="(3060,3400)" to="(3060,3440)"/> <wire from="(2450,1300)" to="(2470,1300)"/> <wire from="(2160,2290)" to="(2180,2290)"/> <wire from="(2200,4250)" to="(2220,4250)"/> <wire from="(1130,1470)" to="(1130,1500)"/> <wire from="(1240,3250)" to="(1300,3250)"/> <wire from="(2460,1640)" to="(2470,1640)"/> <wire from="(2170,2630)" to="(2180,2630)"/> <wire from="(1200,1410)" to="(1200,1480)"/> <wire from="(2250,220)" to="(2320,220)"/> <wire from="(3270,1430)" to="(3270,1600)"/> <wire from="(1430,3370)" to="(1430,3380)"/> <wire from="(2310,4640)" to="(2370,4640)"/> <wire from="(1790,1640)" to="(1790,3040)"/> <wire from="(2160,4610)" to="(2160,4680)"/> <wire from="(3090,3430)" to="(3090,3450)"/> <wire from="(2940,3280)" to="(2940,3290)"/> <wire from="(3020,1510)" to="(3080,1510)"/> <wire from="(1140,390)" to="(1210,390)"/> <wire from="(1550,3140)" to="(2970,3140)"/> <wire from="(2330,4590)" to="(2330,4600)"/> <wire from="(1150,850)" to="(1150,890)"/> <wire from="(2200,710)" to="(2240,710)"/> <wire from="(2100,2530)" to="(2140,2530)"/> <wire from="(830,1290)" to="(840,1290)"/> <wire from="(2140,1360)" to="(2240,1360)"/> <wire from="(1110,3480)" to="(1130,3480)"/> <wire from="(540,1640)" to="(550,1640)"/> <wire from="(2520,2630)" to="(2560,2630)"/> <wire from="(2520,2450)" to="(2550,2450)"/> <wire from="(760,1640)" to="(1460,1640)"/> <wire from="(1410,440)" to="(1510,440)"/> <wire from="(210,360)" to="(210,370)"/> <wire from="(2880,2880)" to="(2970,2880)"/> <wire from="(600,2220)" to="(600,2290)"/> <wire from="(2160,2420)" to="(2180,2420)"/> <wire from="(2520,2150)" to="(2530,2150)"/> <wire from="(2230,1860)" to="(2240,1860)"/> <wire from="(2210,2160)" to="(2220,2160)"/> <wire from="(2100,1220)" to="(2240,1220)"/> <wire from="(760,3560)" to="(800,3560)"/> <wire from="(2140,2730)" to="(2150,2730)"/> <wire from="(3020,1060)" to="(3350,1060)"/> <wire from="(3380,3000)" to="(3400,3000)"/> <wire from="(3000,1040)" to="(3330,1040)"/> <wire from="(90,970)" to="(130,970)"/> <wire from="(2650,1470)" to="(2650,3120)"/> <wire from="(2450,4590)" to="(2710,4590)"/> <wire from="(950,390)" to="(950,600)"/> <wire from="(3050,4590)" to="(3070,4590)"/> <wire from="(2100,2530)" to="(2100,3870)"/> <wire from="(760,3580)" to="(780,3580)"/> <wire from="(780,3600)" to="(800,3600)"/> <wire from="(390,2310)" to="(480,2310)"/> <wire from="(2180,1970)" to="(2750,1970)"/> <wire from="(1020,850)" to="(1020,890)"/> <wire from="(1230,350)" to="(1230,600)"/> <wire from="(2750,1970)" to="(2750,3060)"/> <wire from="(660,2510)" to="(690,2510)"/> <wire from="(1810,540)" to="(1810,3020)"/> <wire from="(3250,3400)" to="(3250,3430)"/> <wire from="(3380,3300)" to="(3420,3300)"/> <wire from="(1190,3920)" to="(2030,3920)"/> <wire from="(1230,3490)" to="(1300,3490)"/> <wire from="(760,3570)" to="(790,3570)"/> <wire from="(2310,4700)" to="(2310,4710)"/> <wire from="(3390,2970)" to="(3450,2970)"/> <wire from="(210,1520)" to="(930,1520)"/> <wire from="(2410,190)" to="(2410,270)"/> <wire from="(2230,460)" to="(2230,480)"/> <wire from="(490,1470)" to="(890,1470)"/> <wire from="(2660,4600)" to="(2660,4680)"/> <wire from="(2500,250)" to="(2600,250)"/> <wire from="(760,3590)" to="(770,3590)"/> <wire from="(2490,1550)" to="(2490,1640)"/> <wire from="(2140,1490)" to="(2240,1490)"/> <wire from="(3360,4150)" to="(3360,4160)"/> <wire from="(2400,180)" to="(2400,270)"/> <wire from="(2190,330)" to="(2220,330)"/> <wire from="(2640,790)" to="(2660,790)"/> <wire from="(1270,1090)" to="(2010,1090)"/> <wire from="(1740,1550)" to="(2490,1550)"/> <wire from="(1240,3440)" to="(1240,3470)"/> <wire from="(490,1470)" to="(490,1600)"/> <wire from="(3160,1520)" to="(3160,1580)"/> <wire from="(2890,4230)" to="(2920,4230)"/> <wire from="(3310,810)" to="(3340,810)"/> <wire from="(1310,290)" to="(1310,930)"/> <wire from="(150,660)" to="(640,660)"/> <wire from="(2170,2570)" to="(2180,2570)"/> <wire from="(2390,4590)" to="(2390,4650)"/> <wire from="(2940,4260)" to="(2990,4260)"/> <wire from="(2580,170)" to="(2580,240)"/> <wire from="(3120,3400)" to="(3120,3420)"/> <wire from="(760,3600)" to="(760,3640)"/> <wire from="(890,850)" to="(890,890)"/> <wire from="(190,2810)" to="(220,2810)"/> <wire from="(2540,2500)" to="(2540,2510)"/> <wire from="(2190,950)" to="(2240,950)"/> <wire from="(1770,1660)" to="(2240,1660)"/> <wire from="(2550,2510)" to="(2550,2530)"/> <wire from="(2220,1860)" to="(2220,1880)"/> <wire from="(880,390)" to="(950,390)"/> <wire from="(1280,3270)" to="(1300,3270)"/> <wire from="(1790,3040)" to="(2970,3040)"/> <wire from="(1480,1620)" to="(1480,2050)"/> <wire from="(2030,1520)" to="(2120,1520)"/> <wire from="(1210,850)" to="(1210,890)"/> <wire from="(2960,4200)" to="(2960,4220)"/> <wire from="(830,910)" to="(840,910)"/> <wire from="(760,3720)" to="(770,3720)"/> <wire from="(790,3430)" to="(800,3430)"/> <wire from="(1400,3710)" to="(1420,3710)"/> <wire from="(1410,3400)" to="(1430,3400)"/> <wire from="(1090,1800)" to="(1110,1800)"/> <wire from="(540,1580)" to="(550,1580)"/> <wire from="(630,390)" to="(640,390)"/> <wire from="(3020,1060)" to="(3020,1170)"/> <wire from="(490,2420)" to="(490,2940)"/> <wire from="(2150,2660)" to="(2180,2660)"/> <wire from="(1110,3440)" to="(1110,3460)"/> <wire from="(720,3370)" to="(720,3380)"/> <wire from="(2450,1360)" to="(2480,1360)"/> <wire from="(2220,1030)" to="(2220,1070)"/> <wire from="(2310,4640)" to="(2310,4680)"/> <wire from="(3210,2760)" to="(3240,2760)"/> <wire from="(760,3820)" to="(800,3820)"/> <wire from="(760,3500)" to="(800,3500)"/> <wire from="(3340,4170)" to="(3370,4170)"/> <wire from="(700,3350)" to="(700,3370)"/> <wire from="(2100,1100)" to="(2100,1220)"/> <wire from="(2710,1740)" to="(2710,2940)"/> <wire from="(2480,1930)" to="(2480,1990)"/> <wire from="(2550,2190)" to="(2620,2190)"/> <wire from="(780,3540)" to="(800,3540)"/> <wire from="(3430,3200)" to="(3430,3220)"/> <wire from="(2610,4440)" to="(2730,4440)"/> <wire from="(1040,490)" to="(1040,530)"/> <wire from="(2040,330)" to="(2050,330)"/> <wire from="(3100,1460)" to="(3100,1530)"/> <wire from="(1930,4530)" to="(2710,4530)"/> <wire from="(1750,360)" to="(1760,360)"/> <wire from="(3310,3400)" to="(3310,3430)"/> <wire from="(770,3520)" to="(800,3520)"/> <wire from="(2120,1120)" to="(2120,1200)"/> <wire from="(2710,4590)" to="(2710,4680)"/> <wire from="(220,2030)" to="(230,2030)"/> <wire from="(660,2220)" to="(660,2340)"/> <wire from="(1690,990)" to="(1690,1740)"/> <wire from="(970,350)" to="(970,600)"/> <wire from="(3340,740)" to="(3340,810)"/> <wire from="(2070,2070)" to="(2560,2070)"/> <wire from="(1080,850)" to="(1080,890)"/> <wire from="(2550,4430)" to="(2550,4510)"/> <wire from="(2460,1760)" to="(2880,1760)"/> <wire from="(1970,570)" to="(2320,570)"/> <wire from="(3420,3190)" to="(3420,3200)"/> <wire from="(630,520)" to="(640,520)"/> <wire from="(3330,990)" to="(3330,1040)"/> <wire from="(1250,3710)" to="(1250,3730)"/> <wire from="(1650,1300)" to="(1650,3180)"/> <wire from="(3180,3400)" to="(3180,3450)"/> <wire from="(2500,2180)" to="(2530,2180)"/> <wire from="(2010,1240)" to="(2240,1240)"/> <wire from="(790,3570)" to="(790,3580)"/> <wire from="(3430,3010)" to="(3430,3060)"/> <wire from="(2450,1180)" to="(2470,1180)"/> <wire from="(3440,3020)" to="(3440,3080)"/> <wire from="(1260,3810)" to="(1300,3810)"/> <wire from="(2940,3260)" to="(2970,3260)"/> <wire from="(2160,2490)" to="(2180,2490)"/> <wire from="(2970,4420)" to="(3420,4420)"/> <wire from="(2400,180)" to="(2410,180)"/> <wire from="(2230,650)" to="(2240,650)"/> <wire from="(1240,3120)" to="(1240,3250)"/> <wire from="(3050,4550)" to="(3050,4590)"/> <wire from="(2540,1860)" to="(2540,2050)"/> <wire from="(2980,3960)" to="(2990,3960)"/> <wire from="(3000,1680)" to="(3270,1680)"/> <wire from="(3420,3000)" to="(3420,3040)"/> <wire from="(2060,4590)" to="(2320,4590)"/> <wire from="(1250,3390)" to="(1250,3400)"/> <wire from="(3250,1660)" to="(3270,1660)"/> <wire from="(2450,360)" to="(2450,610)"/> <wire from="(1500,560)" to="(1510,560)"/> <wire from="(3400,2980)" to="(3400,3000)"/> <wire from="(1410,3670)" to="(1420,3670)"/> <wire from="(2320,360)" to="(2320,490)"/> <wire from="(1790,1640)" to="(2240,1640)"/> <wire from="(1290,3230)" to="(1300,3230)"/> <wire from="(2560,4700)" to="(2560,4710)"/> <wire from="(1810,3020)" to="(2970,3020)"/> <wire from="(3200,2780)" to="(3200,2800)"/> <wire from="(2350,200)" to="(2350,270)"/> <wire from="(330,570)" to="(330,2010)"/> <wire from="(200,2120)" to="(230,2120)"/> <wire from="(950,850)" to="(950,890)"/> <wire from="(1100,1760)" to="(1110,1760)"/> <wire from="(1100,1440)" to="(1110,1440)"/> <wire from="(2120,1200)" to="(2240,1200)"/> <wire from="(3140,3450)" to="(3180,3450)"/> <wire from="(3410,2990)" to="(3410,3020)"/> <wire from="(1650,1300)" to="(2240,1300)"/> <wire from="(3170,2750)" to="(3170,2780)"/> <wire from="(2940,4120)" to="(2940,4150)"/> <wire from="(180,2760)" to="(190,2760)"/> <wire from="(1490,300)" to="(1490,400)"/> <wire from="(2550,2450)" to="(2550,2470)"/> <wire from="(2320,490)" to="(2320,570)"/> <wire from="(2940,590)" to="(2940,930)"/> <wire from="(1440,3900)" to="(1970,3900)"/> <wire from="(1440,3370)" to="(1460,3370)"/> <wire from="(400,2220)" to="(400,2280)"/> <wire from="(3000,1040)" to="(3000,1190)"/> <wire from="(2200,1780)" to="(2200,1810)"/> <wire from="(3390,2970)" to="(3390,2980)"/> <wire from="(630,330)" to="(640,330)"/> <wire from="(2920,3060)" to="(2940,3060)"/> <wire from="(2920,4290)" to="(2920,4460)"/> <wire from="(2520,2650)" to="(2550,2650)"/> <wire from="(3320,3470)" to="(3330,3470)"/> <wire from="(3100,1530)" to="(3100,1570)"/> <wire from="(780,570)" to="(1160,570)"/> <wire from="(3450,2840)" to="(3450,2900)"/> <wire from="(3380,2960)" to="(3450,2960)"/> <wire from="(1460,3280)" to="(1460,3350)"/> <wire from="(2680,980)" to="(2680,1100)"/> <wire from="(2420,4620)" to="(2560,4620)"/> <wire from="(2150,2300)" to="(2160,2300)"/> <wire from="(2800,1800)" to="(2800,4090)"/> <wire from="(1400,3670)" to="(1400,3680)"/> <wire from="(3290,3430)" to="(3310,3430)"/> <wire from="(2630,4380)" to="(2640,4380)"/> <wire from="(3430,3140)" to="(3430,3160)"/> <wire from="(720,2220)" to="(720,2330)"/> <wire from="(2090,4430)" to="(2150,4430)"/> <wire from="(2190,170)" to="(2190,240)"/> <wire from="(2110,4700)" to="(2110,4710)"/> <wire from="(2860,3280)" to="(2920,3280)"/> <wire from="(1910,790)" to="(2240,790)"/> <wire from="(1870,480)" to="(1870,2960)"/> <wire from="(1230,3690)" to="(1300,3690)"/> <wire from="(150,2850)" to="(170,2850)"/> <wire from="(3060,2770)" to="(3060,2800)"/> <wire from="(3450,3030)" to="(3450,3100)"/> <wire from="(1500,1990)" to="(2480,1990)"/> <wire from="(1380,3750)" to="(1410,3750)"/> <wire from="(1140,850)" to="(1140,890)"/> <wire from="(2200,720)" to="(2240,720)"/> <wire from="(2870,4560)" to="(2870,4710)"/> <wire from="(760,970)" to="(840,970)"/> <wire from="(2140,1370)" to="(2240,1370)"/> <wire from="(1190,3100)" to="(2620,3100)"/> <wire from="(630,460)" to="(640,460)"/> <wire from="(2210,2150)" to="(2240,2150)"/> <wire from="(2940,4170)" to="(2960,4170)"/> <wire from="(2970,4200)" to="(2990,4200)"/> <wire from="(2210,870)" to="(2240,870)"/> <wire from="(2500,2120)" to="(2530,2120)"/> <wire from="(1230,3630)" to="(1230,3660)"/> <wire from="(2310,230)" to="(2310,270)"/> <wire from="(2520,2470)" to="(2540,2470)"/> <wire from="(1260,3430)" to="(1300,3430)"/> <wire from="(2160,2430)" to="(2180,2430)"/> <wire from="(2190,1180)" to="(2210,1180)"/> <wire from="(2200,1830)" to="(2220,1830)"/> <wire from="(2220,2170)" to="(2240,2170)"/> <wire from="(2190,4380)" to="(2210,4380)"/> <wire from="(2250,170)" to="(2250,220)"/> <wire from="(2460,1780)" to="(2470,1780)"/> <wire from="(2540,2500)" to="(2550,2500)"/> <wire from="(2460,1720)" to="(2730,1720)"/> <wire from="(2230,2190)" to="(2240,2190)"/> <wire from="(1140,410)" to="(1200,410)"/> <wire from="(2210,4410)" to="(2220,4410)"/> <wire from="(2710,2940)" to="(2970,2940)"/> <wire from="(2130,2730)" to="(2140,2730)"/> <wire from="(2880,740)" to="(3340,740)"/> <wire from="(2700,3240)" to="(2970,3240)"/> <wire from="(700,2290)" to="(810,2290)"/> <wire from="(3090,1130)" to="(3100,1130)"/> <wire from="(2870,4560)" to="(3010,4560)"/> <wire from="(3100,1460)" to="(3110,1460)"/> <wire from="(1250,3730)" to="(1300,3730)"/> <wire from="(3240,2760)" to="(3240,2800)"/> <wire from="(640,2300)" to="(810,2300)"/> <wire from="(3140,2770)" to="(3160,2770)"/> <wire from="(150,2870)" to="(150,2900)"/> <wire from="(1500,500)" to="(1510,500)"/> <wire from="(3400,2920)" to="(3400,2940)"/> <wire from="(780,3290)" to="(800,3290)"/> <wire from="(1200,1480)" to="(1210,1480)"/> <wire from="(1010,850)" to="(1010,890)"/> <wire from="(650,910)" to="(680,910)"/> <wire from="(2600,2490)" to="(2600,2940)"/> <wire from="(1980,4700)" to="(1980,4710)"/> <wire from="(2160,2320)" to="(2160,2330)"/> <wire from="(2860,1360)" to="(2860,3280)"/> <wire from="(2470,1670)" to="(2470,1680)"/> <wire from="(2190,830)" to="(2240,830)"/> <wire from="(2180,610)" to="(2180,690)"/> <wire from="(2180,1890)" to="(2180,1970)"/> <wire from="(460,2220)" to="(460,2270)"/> <wire from="(2140,1500)" to="(2240,1500)"/> <wire from="(3420,3260)" to="(3420,3270)"/> <wire from="(3420,3190)" to="(3430,3190)"/> <wire from="(570,2460)" to="(570,2470)"/> <wire from="(2660,4340)" to="(2680,4340)"/> <wire from="(1420,3630)" to="(1420,3660)"/> <wire from="(2630,780)" to="(2660,780)"/> <wire from="(2960,4310)" to="(2990,4310)"/> <wire from="(680,3100)" to="(1190,3100)"/> <wire from="(1340,1820)" to="(1340,1910)"/> <wire from="(2350,190)" to="(2370,190)"/> <wire from="(700,3390)" to="(800,3390)"/> <wire from="(1830,3000)" to="(2970,3000)"/> <wire from="(680,450)" to="(680,730)"/> <wire from="(2180,610)" to="(2450,610)"/> <wire from="(2230,1680)" to="(2240,1680)"/> <wire from="(2210,4220)" to="(2220,4220)"/> <wire from="(2380,4590)" to="(2380,4650)"/> <wire from="(810,1930)" to="(810,2010)"/> <wire from="(3340,1500)" to="(3360,1500)"/> <wire from="(1380,3710)" to="(1390,3710)"/> <wire from="(2460,1740)" to="(2710,1740)"/> <wire from="(930,1410)" to="(930,1520)"/> <wire from="(2610,4320)" to="(2730,4320)"/> <wire from="(880,850)" to="(880,890)"/> <wire from="(1270,1040)" to="(1280,1040)"/> <wire from="(1190,3270)" to="(1260,3270)"/> <wire from="(1230,3630)" to="(1300,3630)"/> <wire from="(1570,4070)" to="(2990,4070)"/> <wire from="(3230,1600)" to="(3230,1630)"/> <wire from="(1390,3700)" to="(1420,3700)"/> <wire from="(390,2340)" to="(660,2340)"/> <wire from="(2200,4410)" to="(2200,4430)"/> <wire from="(2260,4630)" to="(2360,4630)"/> <wire from="(1120,1410)" to="(1120,1450)"/> <wire from="(1200,850)" to="(1200,890)"/> <wire from="(790,3760)" to="(800,3760)"/> <wire from="(2920,4460)" to="(3480,4460)"/> <wire from="(630,400)" to="(640,400)"/> <wire from="(1160,490)" to="(1160,570)"/> <wire from="(2950,3160)" to="(2970,3160)"/> <wire from="(800,1010)" to="(800,1600)"/> <wire from="(2150,2350)" to="(2180,2350)"/> <wire from="(3440,3020)" to="(3450,3020)"/> <wire from="(780,950)" to="(840,950)"/> <wire from="(880,410)" to="(940,410)"/> <wire from="(1240,3650)" to="(1300,3650)"/> <wire from="(2610,980)" to="(2680,980)"/> <wire from="(580,2250)" to="(810,2250)"/> <wire from="(3070,1570)" to="(3070,1630)"/> <wire from="(2230,850)" to="(2240,850)"/> <wire from="(3020,4590)" to="(3020,4710)"/> <wire from="(520,2260)" to="(810,2260)"/> <wire from="(780,3760)" to="(780,3780)"/> <wire from="(1250,3670)" to="(1300,3670)"/> <wire from="(3340,1520)" to="(3340,1560)"/> <wire from="(3420,2880)" to="(3420,2920)"/> <wire from="(3200,2770)" to="(3220,2770)"/> <wire from="(3340,1390)" to="(3340,1500)"/> <wire from="(2520,4340)" to="(2530,4340)"/> <wire from="(3230,3440)" to="(3250,3440)"/> <wire from="(520,2220)" to="(520,2260)"/> <wire from="(400,2280)" to="(810,2280)"/> <wire from="(1090,3290)" to="(1170,3290)"/> <wire from="(2560,1490)" to="(2560,2070)"/> <wire from="(2960,4340)" to="(2960,4350)"/> <wire from="(450,570)" to="(450,2010)"/> <wire from="(460,2270)" to="(810,2270)"/> <wire from="(2360,4700)" to="(2360,4710)"/> <wire from="(130,2900)" to="(150,2900)"/> <wire from="(1670,1130)" to="(1670,3220)"/> <wire from="(1230,3680)" to="(1250,3680)"/> <wire from="(1070,850)" to="(1070,890)"/> <wire from="(2140,2650)" to="(2180,2650)"/> <wire from="(740,270)" to="(1330,270)"/> <wire from="(3400,2940)" to="(3450,2940)"/> <wire from="(780,990)" to="(780,1620)"/> <wire from="(760,3540)" to="(770,3540)"/> <wire from="(2060,4590)" to="(2060,4680)"/> <wire from="(650,870)" to="(660,870)"/> <wire from="(2310,170)" to="(2310,200)"/> <wire from="(2140,1440)" to="(2240,1440)"/> <wire from="(630,530)" to="(640,530)"/> <wire from="(2210,1900)" to="(2240,1900)"/> <wire from="(740,1430)" to="(860,1430)"/> <wire from="(2520,2530)" to="(2550,2530)"/> <wire from="(1000,290)" to="(1310,290)"/> <wire from="(3080,3430)" to="(3090,3430)"/> <wire from="(2410,190)" to="(2430,190)"/> <wire from="(2390,4650)" to="(2410,4650)"/> <wire from="(1980,4510)" to="(1980,4680)"/> <wire from="(1410,160)" to="(1410,440)"/> <wire from="(2160,2500)" to="(2180,2500)"/> <wire from="(3380,2840)" to="(3450,2840)"/> <wire from="(2220,1280)" to="(2240,1280)"/> <wire from="(1270,1190)" to="(1590,1190)"/> <wire from="(2230,1620)" to="(2240,1620)"/> <wire from="(760,3640)" to="(800,3640)"/> <wire from="(760,970)" to="(760,1640)"/> <wire from="(3040,4550)" to="(3040,4590)"/> <wire from="(860,1410)" to="(860,1430)"/> <wire from="(2170,990)" to="(2240,990)"/> <wire from="(3160,1580)" to="(3180,1580)"/> <wire from="(150,870)" to="(570,870)"/> <wire from="(2780,3260)" to="(2920,3260)"/> <wire from="(3110,1500)" to="(3160,1500)"/> <wire from="(390,2320)" to="(420,2320)"/> <wire from="(3160,2750)" to="(3160,2770)"/> <wire from="(200,2130)" to="(230,2130)"/> <wire from="(940,850)" to="(940,890)"/> <wire from="(2220,2130)" to="(2220,2140)"/> <wire from="(490,2420)" to="(520,2420)"/> <wire from="(370,2440)" to="(520,2440)"/> <wire from="(2440,4590)" to="(2440,4600)"/> <wire from="(2530,2120)" to="(2530,2130)"/> <wire from="(1210,3550)" to="(1210,3650)"/> <wire from="(1410,3340)" to="(1440,3340)"/> <wire from="(2210,1800)" to="(2210,1820)"/> <wire from="(2550,2650)" to="(2550,2730)"/> <wire from="(3010,870)" to="(3010,960)"/> <wire from="(2200,4350)" to="(2200,4370)"/> <wire from="(1240,4180)" to="(2540,4180)"/> <wire from="(700,3610)" to="(700,3920)"/> <wire from="(1180,1410)" to="(1180,1450)"/> <wire from="(2730,2920)" to="(2970,2920)"/> <wire from="(2950,4140)" to="(2950,4160)"/> <wire from="(3310,1120)" to="(3430,1120)"/> <wire from="(2170,990)" to="(2170,1080)"/> <wire from="(720,3370)" to="(800,3370)"/> <wire from="(1850,2980)" to="(2970,2980)"/> <wire from="(560,910)" to="(570,910)"/> <wire from="(630,340)" to="(640,340)"/> <wire from="(2540,4180)" to="(2540,4220)"/> <wire from="(3360,4160)" to="(3370,4160)"/> <wire from="(2950,3100)" to="(2970,3100)"/> <wire from="(3250,1620)" to="(3390,1620)"/> <wire from="(1440,3400)" to="(1440,3430)"/> <wire from="(2520,2670)" to="(2540,2670)"/> <wire from="(2200,4270)" to="(2220,4270)"/> <wire from="(1410,3460)" to="(1450,3460)"/> <wire from="(2460,1660)" to="(2470,1660)"/> <wire from="(3300,3440)" to="(3330,3440)"/> <wire from="(1590,4050)" to="(2990,4050)"/> <wire from="(760,3680)" to="(760,3710)"/> <wire from="(2210,4290)" to="(2220,4290)"/> <wire from="(3420,2920)" to="(3450,2920)"/> <wire from="(580,2220)" to="(580,2250)"/> <wire from="(1110,2360)" to="(1110,2560)"/> <wire from="(3250,1430)" to="(3250,1600)"/> <wire from="(1430,3390)" to="(1430,3400)"/> <wire from="(3040,3400)" to="(3040,3450)"/> <wire from="(2630,750)" to="(2630,760)"/> <wire from="(900,490)" to="(900,600)"/> <wire from="(90,870)" to="(120,870)"/> <wire from="(2950,3310)" to="(2950,3320)"/> <wire from="(1450,3410)" to="(1450,3460)"/> <wire from="(640,550)" to="(640,660)"/> <wire from="(2370,170)" to="(2370,180)"/> <wire from="(640,3470)" to="(800,3470)"/> <wire from="(1350,950)" to="(1740,950)"/> <wire from="(210,360)" to="(230,360)"/> <wire from="(2520,4250)" to="(2560,4250)"/> <wire from="(2200,730)" to="(2240,730)"/> <wire from="(530,1720)" to="(930,1720)"/> <wire from="(1130,3410)" to="(1130,3450)"/> <wire from="(3380,2860)" to="(3430,2860)"/> <wire from="(3080,3440)" to="(3080,3450)"/> <wire from="(3380,3180)" to="(3430,3180)"/> <wire from="(1150,2440)" to="(1150,3440)"/> <wire from="(3390,3870)" to="(3390,4140)"/> <wire from="(830,1310)" to="(840,1310)"/> <wire from="(2310,200)" to="(2350,200)"/> <wire from="(2140,1380)" to="(2240,1380)"/> <wire from="(2500,1360)" to="(2860,1360)"/> <wire from="(540,1660)" to="(550,1660)"/> <wire from="(630,470)" to="(640,470)"/> <wire from="(1240,3650)" to="(1240,3670)"/> <wire from="(1180,450)" to="(1180,600)"/> <wire from="(1240,1410)" to="(1240,1440)"/> <wire from="(2160,2440)" to="(2180,2440)"/> <wire from="(3380,3100)" to="(3450,3100)"/> <wire from="(2570,2610)" to="(2570,2730)"/> <wire from="(1460,3420)" to="(1460,3490)"/> <wire from="(2610,660)" to="(2620,660)"/> <wire from="(3120,2750)" to="(3150,2750)"/> <wire from="(3230,3400)" to="(3230,3440)"/> <wire from="(2210,4620)" to="(2210,4680)"/> <wire from="(1140,430)" to="(1190,430)"/> <wire from="(1230,3440)" to="(1240,3440)"/> <wire from="(2610,4700)" to="(2610,4710)"/> <wire from="(3260,3430)" to="(3260,3450)"/> <wire from="(1000,850)" to="(1000,890)"/> <wire from="(1870,2960)" to="(2970,2960)"/> <wire from="(2070,2390)" to="(2180,2390)"/> <wire from="(2170,250)" to="(2280,250)"/> <wire from="(3060,4580)" to="(3120,4580)"/> <wire from="(1230,3420)" to="(1260,3420)"/> <wire from="(2450,1490)" to="(2560,1490)"/> <wire from="(1230,3430)" to="(1250,3430)"/> <wire from="(770,3300)" to="(780,3300)"/> <wire from="(670,1600)" to="(680,1600)"/> <wire from="(2140,1510)" to="(2240,1510)"/> <wire from="(2380,180)" to="(2380,270)"/> <wire from="(1270,910)" to="(1290,910)"/> <wire from="(630,280)" to="(640,280)"/> <wire from="(3370,4180)" to="(3370,4190)"/> <wire from="(2920,770)" to="(2920,1390)"/> <wire from="(3100,3400)" to="(3100,3450)"/> <wire from="(2940,3990)" to="(2960,3990)"/> <wire from="(1130,1430)" to="(1130,1450)"/> <wire from="(780,3320)" to="(780,3330)"/> <wire from="(1270,1110)" to="(2010,1110)"/> <wire from="(1440,3340)" to="(1440,3370)"/> <wire from="(1930,4530)" to="(1930,4680)"/> <wire from="(3570,3540)" to="(3570,3920)"/> <wire from="(2940,3340)" to="(2970,3340)"/> <wire from="(1380,3690)" to="(1420,3690)"/> <wire from="(2220,1030)" to="(2240,1030)"/> <wire from="(1350,220)" to="(1350,950)"/> <wire from="(740,830)" to="(740,1430)"/> <wire from="(2170,2590)" to="(2180,2590)"/> <wire from="(2370,4590)" to="(2370,4640)"/> <wire from="(740,3790)" to="(740,3880)"/> <wire from="(3350,960)" to="(3350,1060)"/> <wire from="(2960,3060)" to="(2970,3060)"/> <wire from="(90,800)" to="(130,800)"/> <wire from="(1480,3430)" to="(1480,3880)"/> <wire from="(2780,1700)" to="(2780,2900)"/> <wire from="(1140,1440)" to="(1140,1450)"/> <wire from="(2170,1080)" to="(2880,1080)"/> <wire from="(2450,1470)" to="(2650,1470)"/> <wire from="(760,3730)" to="(780,3730)"/> <wire from="(1210,3550)" to="(1220,3550)"/> <wire from="(1040,490)" to="(1060,490)"/> <wire from="(870,850)" to="(870,890)"/> <wire from="(550,2560)" to="(570,2560)"/> <wire from="(2160,4700)" to="(2160,4710)"/> <wire from="(1240,3120)" to="(2650,3120)"/> <wire from="(3160,1410)" to="(3160,1500)"/> <wire from="(1090,2010)" to="(2500,2010)"/> <wire from="(2150,4430)" to="(2150,4570)"/> <wire from="(740,270)" to="(740,370)"/> <wire from="(2950,4210)" to="(2950,4240)"/> <wire from="(2430,170)" to="(2430,190)"/> <wire from="(2650,710)" to="(2650,740)"/> <wire from="(1280,3290)" to="(1300,3290)"/> <wire from="(1190,850)" to="(1190,890)"/> <wire from="(830,930)" to="(840,930)"/> <wire from="(2210,1870)" to="(2210,1900)"/> <wire from="(1230,3450)" to="(1230,3490)"/> <wire from="(660,3450)" to="(800,3450)"/> <wire from="(630,410)" to="(640,410)"/> <wire from="(3470,3060)" to="(3480,3060)"/> <wire from="(2630,4340)" to="(2630,4380)"/> <wire from="(880,430)" to="(930,430)"/> <wire from="(3190,2780)" to="(3200,2780)"/> <wire from="(1890,1330)" to="(2120,1330)"/> <wire from="(780,1620)" to="(1480,1620)"/> <wire from="(1090,3530)" to="(1130,3530)"/> <wire from="(180,2590)" to="(1440,2590)"/> <wire from="(2230,1180)" to="(2240,1180)"/> <wire from="(3340,4190)" to="(3370,4190)"/> <wire from="(920,450)" to="(920,600)"/> <wire from="(3430,3010)" to="(3450,3010)"/> <wire from="(640,2220)" to="(640,2300)"/> <wire from="(700,3920)" to="(1190,3920)"/> <wire from="(1330,160)" to="(1330,170)"/> <wire from="(2340,210)" to="(2340,270)"/> <wire from="(2920,1570)" to="(3040,1570)"/> <wire from="(2620,2190)" to="(2620,3100)"/> <wire from="(3290,3400)" to="(3290,3420)"/> <wire from="(1830,520)" to="(1830,3000)"/> <wire from="(2470,1300)" to="(2470,1310)"/> <wire from="(3380,3260)" to="(3420,3260)"/> <wire from="(1200,410)" to="(1200,600)"/> <wire from="(1750,380)" to="(1760,380)"/> <wire from="(1230,3770)" to="(1300,3770)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(1610,1210)" to="(1610,3240)"/> <wire from="(1060,850)" to="(1060,890)"/> <wire from="(2210,490)" to="(2250,490)"/> <wire from="(790,3580)" to="(800,3580)"/> <wire from="(1950,590)" to="(2940,590)"/> <wire from="(2140,1450)" to="(2240,1450)"/> <wire from="(2880,740)" to="(2880,1080)"/> <wire from="(2190,4450)" to="(2220,4450)"/> <wire from="(2640,750)" to="(2660,750)"/> <wire from="(590,2510)" to="(640,2510)"/> <wire from="(1240,3720)" to="(1240,3750)"/> <wire from="(2940,3280)" to="(2970,3280)"/> <wire from="(2490,170)" to="(2490,210)"/> <wire from="(2160,2510)" to="(2180,2510)"/> <wire from="(1380,3630)" to="(1420,3630)"/> <wire from="(1240,3790)" to="(1300,3790)"/> <wire from="(1240,3470)" to="(1300,3470)"/> <wire from="(1500,1600)" to="(1500,1990)"/> <wire from="(2610,4320)" to="(2610,4440)"/> <wire from="(3480,3180)" to="(3510,3180)"/> <wire from="(2210,4620)" to="(2350,4620)"/> <wire from="(780,3580)" to="(780,3600)"/> <wire from="(3160,3400)" to="(3160,3440)"/> <wire from="(1270,1330)" to="(1390,1330)"/> <wire from="(1970,570)" to="(1970,3900)"/> <wire from="(3480,1150)" to="(3480,1510)"/> <wire from="(1260,3420)" to="(1260,3430)"/> <wire from="(1450,3410)" to="(1460,3410)"/> <wire from="(2960,4160)" to="(2960,4170)"/> <wire from="(310,570)" to="(310,2010)"/> <wire from="(670,1660)" to="(690,1660)"/> <wire from="(930,850)" to="(930,890)"/> <wire from="(1100,1780)" to="(1110,1780)"/> <wire from="(2220,1820)" to="(2220,1830)"/> <wire from="(2780,2900)" to="(2970,2900)"/> <wire from="(2210,4370)" to="(2210,4380)"/> <wire from="(2610,690)" to="(2660,690)"/> <wire from="(3030,4550)" to="(3030,4580)"/> <wire from="(2190,910)" to="(2240,910)"/> <wire from="(2430,4590)" to="(2430,4610)"/> <wire from="(2950,4240)" to="(2990,4240)"/> <wire from="(3380,3060)" to="(3430,3060)"/> <wire from="(1330,270)" to="(1330,950)"/> <wire from="(2430,200)" to="(2470,200)"/> <wire from="(630,350)" to="(640,350)"/> <wire from="(3420,3270)" to="(3430,3270)"/> <wire from="(3350,3400)" to="(3350,3450)"/> <wire from="(130,2810)" to="(190,2810)"/> <wire from="(1270,720)" to="(1890,720)"/> <wire from="(3070,4590)" to="(3070,4710)"/> <wire from="(2450,1330)" to="(2470,1330)"/> <wire from="(1090,3470)" to="(1130,3470)"/> <wire from="(700,2220)" to="(700,2290)"/> <wire from="(3310,1190)" to="(3570,1190)"/> <wire from="(1160,570)" to="(1160,600)"/> <wire from="(2230,1760)" to="(2240,1760)"/> <wire from="(3340,4130)" to="(3370,4130)"/> <wire from="(2150,2320)" to="(2160,2320)"/> <wire from="(770,3700)" to="(770,3720)"/> <wire from="(2730,1720)" to="(2730,2920)"/> <wire from="(3310,1230)" to="(3330,1230)"/> <wire from="(3320,1560)" to="(3340,1560)"/> <wire from="(2010,970)" to="(2010,1090)"/> <wire from="(2430,4610)" to="(2610,4610)"/> <wire from="(3310,3450)" to="(3350,3450)"/> <wire from="(2410,4700)" to="(2410,4710)"/> <wire from="(3380,2880)" to="(3420,2880)"/> <wire from="(3380,3200)" to="(3420,3200)"/> <wire from="(130,690)" to="(130,800)"/> <wire from="(770,3800)" to="(800,3800)"/> <wire from="(710,1910)" to="(710,2010)"/> <wire from="(150,2870)" to="(170,2870)"/> <wire from="(940,410)" to="(940,600)"/> <wire from="(2170,170)" to="(2170,250)"/> <wire from="(2450,610)" to="(2750,610)"/> <wire from="(1710,970)" to="(1710,1720)"/> <wire from="(2680,980)" to="(3100,980)"/> <wire from="(200,370)" to="(210,370)"/> <wire from="(1630,1170)" to="(1630,3200)"/> <wire from="(1120,850)" to="(1120,890)"/> <wire from="(2200,740)" to="(2240,740)"/> <wire from="(2680,770)" to="(2920,770)"/> <wire from="(2360,4650)" to="(2360,4680)"/> <wire from="(2140,1390)" to="(2240,1390)"/> <wire from="(630,480)" to="(640,480)"/> <wire from="(2610,830)" to="(2650,830)"/> <wire from="(2190,4390)" to="(2220,4390)"/> <wire from="(2500,1910)" to="(2500,2010)"/> <wire from="(3020,4590)" to="(3040,4590)"/> <wire from="(2500,2140)" to="(2530,2140)"/> <wire from="(1140,450)" to="(1180,450)"/> <wire from="(210,390)" to="(210,400)"/> <wire from="(2460,1800)" to="(2800,1800)"/> <wire from="(3140,1400)" to="(3140,1460)"/> <wire from="(2160,2450)" to="(2180,2450)"/> <wire from="(2190,4400)" to="(2210,4400)"/> <wire from="(1450,420)" to="(1510,420)"/> <wire from="(760,3500)" to="(760,3530)"/> <wire from="(2230,930)" to="(2240,930)"/> <wire from="(2190,4410)" to="(2200,4410)"/> <wire from="(3110,1560)" to="(3180,1560)"/> <wire from="(3380,3020)" to="(3410,3020)"/> <wire from="(1040,530)" to="(1290,530)"/> <wire from="(2460,1860)" to="(2540,1860)"/> <wire from="(810,1930)" to="(1360,1930)"/> <wire from="(2550,170)" to="(2550,230)"/> <wire from="(2230,170)" to="(2230,230)"/> <wire from="(2030,3920)" to="(3570,3920)"/> <wire from="(1250,3670)" to="(1250,3680)"/> <wire from="(1290,3830)" to="(1300,3830)"/> <wire from="(2220,1070)" to="(2470,1070)"/> <wire from="(3310,1150)" to="(3480,1150)"/> <wire from="(1270,1250)" to="(1280,1250)"/> <wire from="(200,2080)" to="(230,2080)"/> <wire from="(990,850)" to="(990,890)"/> <wire from="(1130,1430)" to="(1140,1430)"/> <wire from="(1100,1720)" to="(1110,1720)"/> <wire from="(2880,1120)" to="(2880,1760)"/> <wire from="(210,500)" to="(230,500)"/> <wire from="(1220,370)" to="(1220,600)"/> <wire from="(2150,2330)" to="(2150,2350)"/> <wire from="(830,810)" to="(840,810)"/> <wire from="(3210,2750)" to="(3210,2760)"/> <wire from="(2700,3240)" to="(2700,4030)"/> <wire from="(630,290)" to="(640,290)"/> <wire from="(180,2140)" to="(180,2590)"/> <wire from="(2520,4220)" to="(2540,4220)"/> <wire from="(1090,3410)" to="(1130,3410)"/> <wire from="(2610,790)" to="(2630,790)"/> <wire from="(2960,4330)" to="(2990,4330)"/> <wire from="(2920,4290)" to="(2950,4290)"/> <wire from="(2360,4590)" to="(2360,4630)"/> <wire from="(1140,330)" to="(1240,330)"/> <wire from="(3040,3450)" to="(3070,3450)"/> <wire from="(3210,1600)" to="(3210,1660)"/> <wire from="(1100,1410)" to="(1100,1440)"/> <wire from="(700,3410)" to="(800,3410)"/> <wire from="(2230,1700)" to="(2240,1700)"/> <wire from="(150,760)" to="(700,760)"/> <wire from="(3090,960)" to="(3100,960)"/> <wire from="(3060,1570)" to="(3070,1570)"/> <wire from="(1170,2550)" to="(2180,2550)"/> <wire from="(2630,4340)" to="(2640,4340)"/> <wire from="(3340,1520)" to="(3360,1520)"/> <wire from="(2920,4570)" to="(2920,4710)"/> <wire from="(2460,1880)" to="(2520,1880)"/> <wire from="(1950,400)" to="(1950,590)"/> <wire from="(1270,1130)" to="(1670,1130)"/> <wire from="(3120,3430)" to="(3120,3450)"/> <wire from="(1270,1060)" to="(1280,1060)"/> <wire from="(2790,4700)" to="(2790,4710)"/> <wire from="(3270,1660)" to="(3270,1680)"/> <wire from="(200,2860)" to="(220,2860)"/> <wire from="(390,2290)" to="(600,2290)"/> <wire from="(1190,3290)" to="(1260,3290)"/> <wire from="(3110,3420)" to="(3110,3450)"/> <wire from="(2500,250)" to="(2500,270)"/> <wire from="(2750,610)" to="(2750,1210)"/> <wire from="(1180,850)" to="(1180,890)"/> <wire from="(1270,1310)" to="(1550,1310)"/> <wire from="(3130,3440)" to="(3130,3450)"/> <wire from="(2490,240)" to="(2490,270)"/> <wire from="(2190,4420)" to="(2190,4450)"/> <wire from="(630,420)" to="(640,420)"/> <wire from="(2720,3200)" to="(2720,4010)"/> <wire from="(2950,2860)" to="(2970,2860)"/> <wire from="(3380,2980)" to="(3390,2980)"/> <wire from="(1650,3180)" to="(2970,3180)"/> <wire from="(1490,300)" to="(2050,300)"/> <wire from="(2290,170)" to="(2290,210)"/> <wire from="(1270,1170)" to="(1630,1170)"/> <wire from="(1260,3710)" to="(1300,3710)"/> <wire from="(2210,520)" to="(2230,520)"/> <wire from="(2220,2130)" to="(2240,2130)"/> <wire from="(2200,4350)" to="(2220,4350)"/> <wire from="(770,3770)" to="(770,3800)"/> <wire from="(2730,4320)" to="(2730,4440)"/> <wire from="(800,1010)" to="(840,1010)"/> <wire from="(2210,4370)" to="(2220,4370)"/> <wire from="(880,450)" to="(920,450)"/> <wire from="(1270,1150)" to="(1650,1150)"/> <wire from="(3420,3000)" to="(3450,3000)"/> <wire from="(700,360)" to="(700,760)"/> <wire from="(970,1410)" to="(970,1430)"/> <wire from="(2970,4370)" to="(2970,4420)"/> <wire from="(1360,1730)" to="(1360,1930)"/> <wire from="(2660,4700)" to="(2660,4710)"/> <wire from="(1370,460)" to="(1510,460)"/> <wire from="(3370,4130)" to="(3370,4150)"/> <wire from="(760,3550)" to="(780,3550)"/> <wire from="(1230,3390)" to="(1240,3390)"/> <wire from="(1220,1460)" to="(1230,1460)"/> <wire from="(1050,330)" to="(1060,330)"/> <wire from="(960,370)" to="(960,600)"/> <wire from="(2120,1120)" to="(2880,1120)"/> <wire from="(3310,960)" to="(3350,960)"/> <wire from="(550,2460)" to="(550,2560)"/> <wire from="(3230,1430)" to="(3230,1460)"/> <wire from="(780,570)" to="(780,950)"/> <wire from="(2500,1340)" to="(2500,1360)"/> <wire from="(3120,4580)" to="(3120,4710)"/> <wire from="(2150,2270)" to="(2150,2290)"/> <wire from="(1670,3220)" to="(2970,3220)"/> <wire from="(1050,850)" to="(1050,890)"/> <wire from="(1130,3490)" to="(1130,3530)"/> <wire from="(790,3270)" to="(800,3270)"/> <wire from="(2140,1460)" to="(2240,1460)"/> <wire from="(630,550)" to="(640,550)"/> <wire from="(2190,300)" to="(2220,300)"/> <wire from="(2970,4290)" to="(2990,4290)"/> <wire from="(1270,1230)" to="(1570,1230)"/> <wire from="(3010,870)" to="(3100,870)"/> <wire from="(2520,4280)" to="(2680,4280)"/> <wire from="(2620,3100)" to="(2780,3100)"/> <wire from="(1160,1410)" to="(1160,1440)"/> <wire from="(2160,2520)" to="(2180,2520)"/> <wire from="(2150,4430)" to="(2170,4430)"/> <wire from="(3270,1600)" to="(3270,1660)"/> <wire from="(700,3350)" to="(800,3350)"/> <wire from="(880,330)" to="(980,330)"/> <wire from="(660,360)" to="(700,360)"/> <wire from="(2230,680)" to="(2240,680)"/> <wire from="(2370,180)" to="(2380,180)"/> <wire from="(1270,950)" to="(1330,950)"/> <wire from="(1390,1330)" to="(1390,3060)"/> <wire from="(740,830)" to="(840,830)"/> <wire from="(2940,3310)" to="(2950,3310)"/> <wire from="(3090,900)" to="(3100,900)"/> <wire from="(2980,3990)" to="(2990,3990)"/> <wire from="(1240,330)" to="(1240,600)"/> <wire from="(2790,4310)" to="(2790,4680)"/> <wire from="(3110,1520)" to="(3160,1520)"/> <wire from="(1750,400)" to="(1950,400)"/> <wire from="(2400,4640)" to="(2460,4640)"/> <wire from="(1770,580)" to="(1770,1660)"/> <wire from="(3330,3540)" to="(3570,3540)"/> <wire from="(2920,1390)" to="(3040,1390)"/> <wire from="(920,850)" to="(920,890)"/> <wire from="(2210,4700)" to="(2210,4710)"/> <wire from="(2440,210)" to="(2490,210)"/> <wire from="(2540,2470)" to="(2540,2480)"/> <wire from="(1380,3650)" to="(1410,3650)"/> <wire from="(1430,3380)" to="(1460,3380)"/> <wire from="(1170,2550)" to="(1170,3290)"/> <wire from="(2420,4590)" to="(2420,4620)"/> <wire from="(1190,3100)" to="(1190,3270)"/> <wire from="(1400,3680)" to="(1420,3680)"/> <wire from="(1410,3370)" to="(1430,3370)"/> <wire from="(1440,3400)" to="(1460,3400)"/> <wire from="(3020,4550)" to="(3020,4570)"/> <wire from="(190,1740)" to="(1030,1740)"/> <wire from="(2610,710)" to="(2650,710)"/> <wire from="(1740,950)" to="(1740,1550)"/> <wire from="(2950,3120)" to="(2970,3120)"/> <wire from="(2150,2310)" to="(2180,2310)"/> <wire from="(3250,3430)" to="(3260,3430)"/> <wire from="(780,3720)" to="(780,3730)"/> <wire from="(3000,1190)" to="(3000,1680)"/> <wire from="(1460,2030)" to="(2520,2030)"/> <wire from="(1480,2050)" to="(2540,2050)"/> <wire from="(2160,2330)" to="(2180,2330)"/> <wire from="(3070,1630)" to="(3100,1630)"/> <wire from="(2230,480)" to="(2250,480)"/> <wire from="(2210,460)" to="(2230,460)"/> <wire from="(1380,3770)" to="(1420,3770)"/> <wire from="(680,3100)" to="(680,3360)"/> <wire from="(2460,1680)" to="(2470,1680)"/> <wire from="(2230,230)" to="(2310,230)"/> <wire from="(3150,1390)" to="(3180,1390)"/> <wire from="(2470,1570)" to="(2470,1620)"/> <wire from="(2230,810)" to="(2240,810)"/> <wire from="(2210,4310)" to="(2220,4310)"/> <wire from="(3060,1390)" to="(3130,1390)"/> <wire from="(3380,2900)" to="(3410,2900)"/> <wire from="(3340,4150)" to="(3360,4150)"/> <wire from="(3570,1190)" to="(3570,3540)"/> <wire from="(2960,2820)" to="(2970,2820)"/> <wire from="(160,220)" to="(1350,220)"/> <wire from="(3160,1410)" to="(3180,1410)"/> <wire from="(1000,290)" to="(1000,370)"/> <wire from="(2750,3470)" to="(3060,3470)"/> <wire from="(1610,3240)" to="(2700,3240)"/> <wire from="(3070,4570)" to="(3170,4570)"/> <wire from="(2270,490)" to="(2320,490)"/> <wire from="(610,2460)" to="(610,2560)"/> <wire from="(2110,4600)" to="(2110,4680)"/> <wire from="(3480,3180)" to="(3480,4460)"/> <wire from="(2350,170)" to="(2350,190)"/> <wire from="(2200,750)" to="(2240,750)"/> <wire from="(1750,440)" to="(1910,440)"/> <wire from="(2940,3320)" to="(2940,3340)"/> <wire from="(790,330)" to="(800,330)"/> <wire from="(2140,1400)" to="(2240,1400)"/> <wire from="(1090,3500)" to="(1110,3500)"/> <wire from="(3170,4570)" to="(3170,4710)"/> <wire from="(630,490)" to="(640,490)"/> <wire from="(3420,3160)" to="(3420,3170)"/> <wire from="(2200,1850)" to="(2230,1850)"/> <wire from="(980,330)" to="(980,600)"/> <wire from="(3210,3400)" to="(3210,3450)"/> <wire from="(2940,4200)" to="(2960,4200)"/> <wire from="(2520,2490)" to="(2550,2490)"/> <wire from="(1750,500)" to="(1850,500)"/> <wire from="(3110,3420)" to="(3120,3420)"/> <wire from="(2500,2160)" to="(2520,2160)"/> <wire from="(2940,4190)" to="(2970,4190)"/> <wire from="(2160,2460)" to="(2180,2460)"/> <wire from="(2170,2150)" to="(2190,2150)"/> <wire from="(2170,870)" to="(2190,870)"/> <wire from="(2200,1860)" to="(2220,1860)"/> <wire from="(2220,1880)" to="(2240,1880)"/> <wire from="(1270,990)" to="(1690,990)"/> <wire from="(2170,2680)" to="(2170,2730)"/> <wire from="(3100,1630)" to="(3230,1630)"/> <wire from="(1750,480)" to="(1870,480)"/> <wire from="(1450,160)" to="(1450,420)"/> <wire from="(3390,1510)" to="(3480,1510)"/> <wire from="(2200,1870)" to="(2210,1870)"/> <wire from="(1410,3280)" to="(1460,3280)"/> <wire from="(2940,4210)" to="(2950,4210)"/> <wire from="(3090,840)" to="(3100,840)"/> <wire from="(770,3520)" to="(770,3540)"/> <wire from="(1270,970)" to="(1710,970)"/> <wire from="(370,2350)" to="(370,2440)"/> <wire from="(2160,2670)" to="(2160,2730)"/> <wire from="(3430,1120)" to="(3430,1290)"/> <wire from="(530,1680)" to="(530,1720)"/> <wire from="(1220,1410)" to="(1220,1460)"/> <wire from="(1450,3360)" to="(1460,3360)"/> <wire from="(3200,2750)" to="(3200,2770)"/> <wire from="(2460,1700)" to="(2780,1700)"/> <wire from="(200,2090)" to="(230,2090)"/> <wire from="(980,850)" to="(980,890)"/> <wire from="(650,940)" to="(680,940)"/> <wire from="(1750,520)" to="(1830,520)"/> <wire from="(1750,460)" to="(1760,460)"/> <wire from="(3220,2770)" to="(3220,2800)"/> <wire from="(3380,3340)" to="(3420,3340)"/> <wire from="(770,3620)" to="(800,3620)"/> <wire from="(2370,190)" to="(2370,270)"/> <wire from="(1140,470)" to="(1170,470)"/> <wire from="(2230,500)" to="(2230,520)"/> <wire from="(3250,3440)" to="(3250,3450)"/> <wire from="(1260,4160)" to="(2560,4160)"/> <wire from="(660,3080)" to="(660,3450)"/> <wire from="(2200,1840)" to="(2240,1840)"/> <wire from="(3080,4550)" to="(3080,4560)"/> <wire from="(770,3320)" to="(780,3320)"/> <wire from="(2290,240)" to="(2290,270)"/> <wire from="(1140,1440)" to="(1160,1440)"/> <wire from="(3390,2940)" to="(3390,2950)"/> <wire from="(630,300)" to="(640,300)"/> <wire from="(3420,3290)" to="(3420,3300)"/> <comp lib="0" loc="(1210,1480)" name="Tunnel"> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2310,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2160,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2210,4330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2210,1180)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(3080,810)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(2040,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2310,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2560,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(680,3360)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp loc="(630,260)" name="VIDEO_OUT_RGB"/> <comp lib="0" loc="(2210,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2364,103)" name="Text"> <a name="text" val="So we have to add workaround by separate I/O wires"/> </comp> <comp lib="0" loc="(2190,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2920,4230)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2950,4290)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> </comp> <comp lib="1" loc="(2660,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2550,2170)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(830,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(740,3310)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2260,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1370,160)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3320,3470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2510,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1760,460)" name="Tunnel"> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2140,2530)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(3470,3040)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(1794,110)" name="Text"> <a name="text" val="CPU INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(180,2140)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="1" loc="(2360,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1130,1470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> </comp> <comp lib="0" loc="(2790,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ALE"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(90,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(90,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(2200,4270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2170,4430)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="14"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="1"/> <a name="bit10" val="2"/> <a name="bit11" val="3"/> <a name="bit12" val="4"/> <a name="bit13" val="5"/> </comp> <comp lib="0" loc="(1330,170)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(2230,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1160,1500)" name="Tunnel"> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1480,3430)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2870,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2200,4250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3390,4140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2170,2590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2120,2310)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(570,2470)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(2230,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3060,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2660,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2530,4370)" name="Tunnel"> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2570,2490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2230,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(540,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3303,1514)" name="Text"> <a name="text" val="OAM2"/> </comp> <comp lib="0" loc="(2170,2610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(150,730)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="GREEN"/> </comp> <comp lib="0" loc="(2230,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,1180)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3040,1390)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> </comp> <comp lib="0" loc="(2230,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2210,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2970,2770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(150,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1440,3740)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(790,3430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2660,4340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="1" loc="(3110,1560)" name="Controlled Buffer"> <a name="width" val="5"/> </comp> <comp lib="0" loc="(3420,1620)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2360,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2310,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA8"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(2882,4808)" name="Text"> <a name="text" val="VRAM INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp loc="(2450,1130)" name="OAM_EVAL"/> <comp lib="0" loc="(2580,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1050,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2210,4290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2490,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2210,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1230,1460)" name="Tunnel"> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3040,1570)" name="Splitter"> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> </comp> <comp lib="0" loc="(2950,2860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3150,1390)" name="Controlled Inverter"> <a name="width" val="8"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(740,3610)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2680,4340)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,4350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(660,870)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1980,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="south"/> </comp> <comp lib="4" loc="(660,2420)" name="RAM"> <a name="addrWidth" val="5"/> <a name="dataWidth" val="6"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(1250,1440)" name="Tunnel"> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2220,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(660,2510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(790,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3310,760)" name="OAM_BUF_CONTROL_RGB"/> <comp lib="0" loc="(2940,3990)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2366,79)" name="Text"> <a name="text" val="Logisim doesn't support bidirectional pads and wires"/> </comp> <comp lib="0" loc="(3090,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2170,2370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2556,2747)" name="Text"> <a name="text" val="NOT USED"/> </comp> <comp lib="0" loc="(2130,2310)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(3080,1150)" name="Constant"/> <comp lib="0" loc="(90,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="AGND"/> </comp> <comp lib="1" loc="(3130,1460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2940,3060)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(1290,3830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(650,870)" name="PIXEL_CLOCK_NTSC"/> <comp lib="0" loc="(2120,1330)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2170,2240)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(180,380)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2950,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(540,1580)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2790,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1500,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(2960,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3510,3180)" name="Tunnel"> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2290,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(660,540)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3090,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2190,280)" name="RW_CONTROL"/> <comp lib="6" loc="(2660,4434)" name="Text"> <a name="text" val="WR DELAY"/> </comp> <comp lib="0" loc="(2920,3060)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2150)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp loc="(3380,2800)" name="PICTURE_ADDRESS_GEN"/> <comp lib="0" loc="(2710,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2460,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA5"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(2410,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(1320,1700)" name="COLOR_CONTROL_RGB"/> <comp lib="0" loc="(2210,4310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3480,3060)" name="Tunnel"> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,870)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="1" loc="(570,2560)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2170,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1140,330)" name="V_COUNTER"/> <comp lib="0" loc="(1490,160)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(125,2929)" name="Text"> <a name="text" val="Manual cleaning"/> </comp> <comp lib="0" loc="(1330,160)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2190,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2410,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2870,4530)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2620,660)" name="Tunnel"> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2110,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(790,3270)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3020,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2920,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD6"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,330)" name="H_COUNTER"/> <comp lib="0" loc="(2220,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2260,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2950,3120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2680,770)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="4" loc="(3320,1560)" name="RAM"> <a name="addrWidth" val="5"/> <a name="bus" val="separate"/> </comp> <comp lib="1" loc="(170,1830)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(1750,350)" name="REGISTER_SELECT"/> <comp lib="0" loc="(3230,2730)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(3230,1660)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2180,690)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(1980,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3000,4530)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(2710,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3090,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(220,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(180,2760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(1280,1250)" name="Tunnel"> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2950,3100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,1700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2520,4200)" name="VRAM_BUS_CONTROL"/> <comp lib="0" loc="(3450,3180)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1500,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2170,2150)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2140,2440)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(1930,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3090,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2110,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1930,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3090,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,1270)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(200,2860)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2310,4570)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1280,1040)" name="Tunnel"> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1450,160)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1050,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2510,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(830,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2970,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD5"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3310,1090)" name="OAM_BUFFER"/> <comp lib="0" loc="(560,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2540,2380)" name="Tunnel"> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(790,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3340,3950)" name="BG_COLOR"/> <comp lib="0" loc="(2950,3080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1100,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2920,3260)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(2950,3160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(370,2350)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp loc="(850,890)" name="CONTROL_UNIT_NTSC"/> <comp lib="0" loc="(830,2310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1760,360)" name="Tunnel"> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(550,1580)" name="INTERRUPT_CONTROL"/> <comp lib="0" loc="(830,1310)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="5" loc="(130,2900)" name="Button"/> <comp lib="0" loc="(2430,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(100,1830)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/INT"/> </comp> <comp lib="0" loc="(3090,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(2680,4380)" name="D Flip-Flop"/> <comp lib="2" loc="(3390,1510)" name="Multiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2090,4430)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2460,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3450,3300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2980,3960)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(150,760)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="RED"/> </comp> <comp lib="0" loc="(690,2510)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1270,600)" name="HV_SELECT_NTSC"/> <comp lib="1" loc="(2610,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3060,3470)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp loc="(2550,270)" name="CPU_DATA_IO"/> <comp loc="(2520,2220)" name="MUX"/> <comp lib="1" loc="(2210,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,450)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2210,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(220,2810)" name="RESET_FF"/> <comp lib="0" loc="(3410,1620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="6" loc="(1801,424)" name="Text"> <a name="text" val="/R4 NOT USED"/> </comp> <comp lib="6" loc="(3303,1343)" name="Text"> <a name="text" val="OAM1"/> </comp> <comp loc="(1410,3210)" name="H_INVERSION"/> <comp lib="0" loc="(2560,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1280,1060)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1290,3230)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2500,2100)" name="SELECT_2.3.5.7_PIXEL"/> <comp loc="(2460,1600)" name="CONTROL_REGS_NTSC"/> <comp lib="0" loc="(2120,1520)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(2060,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2210,4220)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(150,660)" name="Pin"> <a name="output" val="true"/> <a name="label" val="/SYNC"/> </comp> <comp lib="6" loc="(970,1446)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="0" loc="(2530,4340)" name="Tunnel"> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2490,1640)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1260,3290)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2230,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1760,380)" name="Tunnel"> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1210,3650)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2920,3280)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2130,2730)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(3369,1235)" name="Text"> <a name="text" val="NOT USED"/> </comp> <comp lib="0" loc="(740,3790)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2170,2630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(660,360)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(680,1600)" name="Tunnel"> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2470,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3290,2730)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2503,1785)" name="Text"> <a name="text" val="NOT USED"/> </comp> <comp lib="0" loc="(1100,1720)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2530,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(380,2810)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1100,1780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(3320,1390)" name="RAM"> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(3170,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3120,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2180,1890)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(540,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2610,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2170,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(540,1660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1090,3250)" name="OAM_FIFO"/> <comp lib="0" loc="(2230,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1410,160)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2960,2820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3090,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(3080,1510)" name="Demultiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp loc="(260,2010)" name="COLOR_IO_RGB"/> <comp lib="1" loc="(2160,4700)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1260,3270)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(2060,4710)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1150,3440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(2170,2570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1380,3580)" name="READ_$2007"/> <comp lib="0" loc="(1220,3550)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2410,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2500,1340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2370,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(220,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,3310)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> </comp> <comp loc="(2610,630)" name="OAM_CONTROL_NTSC"/> <comp lib="0" loc="(380,2860)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2220,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,1010)" name="Tunnel"> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2600,170)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(403,99)" name="Text"> <a name="text" val="2C04 - 0003 RGB PPU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(1210,3460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2270,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2230,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3990)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="1" loc="(150,870)" name="NOT Gate"/> <comp lib="0" loc="(3220,4710)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2350,170)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(150,700)" name="Pin"> <a name="output" val="true"/> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="BLUE"/> </comp> </circuit> <circuit name="2C07_PAL"> <a name="circuit" val="2C07_PAL"/> <a name="clabel" val="2C07 PAL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M655,33 Q659,43 663,33" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff9955" height="570" stroke="#000000" stroke-width="2" width="340" x="420" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="95">AD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="565">/INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="375">AD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="336">AD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="733" y="586">VIDEO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="585">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="470">EXT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="215">AD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="504">PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="121">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="181">DB3</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="588" y="65">PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="65">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="295">AD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="175">AD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="405">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="355">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="445">PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="151">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="405">PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="335">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="55">ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="525">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="464">PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="212">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="270">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="255">AD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="241">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="440">EXT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="500">EXT2</text> <polyline fill="none" points="492,33 492,601" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="425">PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="300">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="736" y="566">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="375">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="91">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="545">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="484">PA12</text> <polyline fill="none" points="692,31 692,601" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="135">AD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="530">EXT3</text> <circ-port height="10" pin="150,510" width="10" x="755" y="575"/> <circ-port height="8" pin="120,690" width="8" x="756" y="556"/> <circ-port height="10" pin="120,1830" width="10" x="415" y="555"/> <circ-port height="8" pin="1350,110" width="8" x="416" y="396"/> <circ-port height="8" pin="1390,110" width="8" x="416" y="366"/> <circ-port height="8" pin="1430,110" width="8" x="416" y="346"/> <circ-port height="8" pin="1470,110" width="8" x="416" y="326"/> <circ-port height="8" pin="1510,110" width="8" x="416" y="56"/> <circ-port height="10" pin="2530,110" width="10" x="415" y="295"/> <circ-port height="8" pin="2550,110" width="8" x="416" y="286"/> <circ-port height="10" pin="2480,110" width="10" x="415" y="265"/> <circ-port height="8" pin="2500,110" width="8" x="416" y="256"/> <circ-port height="10" pin="2420,110" width="10" x="415" y="235"/> <circ-port height="8" pin="2440,110" width="8" x="416" y="226"/> <circ-port height="10" pin="2360,110" width="10" x="415" y="205"/> <circ-port height="8" pin="2380,110" width="8" x="416" y="196"/> <circ-port height="10" pin="2300,110" width="10" x="415" y="175"/> <circ-port height="8" pin="2320,110" width="8" x="416" y="166"/> <circ-port height="10" pin="2240,110" width="10" x="415" y="145"/> <circ-port height="8" pin="2260,110" width="8" x="416" y="136"/> <circ-port height="10" pin="2180,110" width="10" x="415" y="115"/> <circ-port height="8" pin="2200,110" width="8" x="416" y="106"/> <circ-port height="10" pin="2120,110" width="10" x="415" y="85"/> <circ-port height="8" pin="2140,110" width="8" x="416" y="76"/> <circ-port height="10" pin="2870,110" width="10" x="415" y="435"/> <circ-port height="8" pin="2930,110" width="8" x="416" y="426"/> <circ-port height="10" pin="2990,110" width="10" x="415" y="465"/> <circ-port height="8" pin="3050,110" width="8" x="416" y="456"/> <circ-port height="10" pin="3110,110" width="10" x="415" y="495"/> <circ-port height="8" pin="3170,110" width="8" x="416" y="486"/> <circ-port height="10" pin="3230,110" width="10" x="415" y="525"/> <circ-port height="8" pin="3290,110" width="8" x="416" y="516"/> <circ-port height="10" pin="1980,4660" width="10" x="755" y="515"/> <circ-port height="10" pin="2030,4660" width="10" x="755" y="535"/> <circ-port height="10" pin="2080,4660" width="10" x="755" y="495"/> <circ-port height="10" pin="2130,4660" width="10" x="755" y="475"/> <circ-port height="10" pin="2180,4660" width="10" x="755" y="455"/> <circ-port height="10" pin="2230,4660" width="10" x="755" y="435"/> <circ-port height="10" pin="2280,4660" width="10" x="755" y="415"/> <circ-port height="10" pin="2330,4660" width="10" x="755" y="395"/> <circ-port height="10" pin="2380,4660" width="10" x="755" y="355"/> <circ-port height="10" pin="2430,4660" width="10" x="755" y="315"/> <circ-port height="10" pin="2480,4660" width="10" x="755" y="275"/> <circ-port height="10" pin="2530,4660" width="10" x="755" y="235"/> <circ-port height="10" pin="2580,4660" width="10" x="755" y="195"/> <circ-port height="10" pin="2630,4660" width="10" x="755" y="155"/> <circ-port height="10" pin="2680,4660" width="10" x="755" y="115"/> <circ-port height="10" pin="2730,4660" width="10" x="755" y="75"/> <circ-port height="10" pin="2810,4660" width="10" x="755" y="45"/> <circ-port height="8" pin="2890,4660" width="8" x="756" y="376"/> <circ-port height="8" pin="2940,4660" width="8" x="756" y="336"/> <circ-port height="8" pin="2990,4660" width="8" x="756" y="296"/> <circ-port height="8" pin="3040,4660" width="8" x="756" y="256"/> <circ-port height="8" pin="3090,4660" width="8" x="756" y="216"/> <circ-port height="8" pin="3140,4660" width="8" x="756" y="176"/> <circ-port height="8" pin="3190,4660" width="8" x="756" y="136"/> <circ-port height="8" pin="3240,4660" width="8" x="756" y="96"/> <circ-port height="8" pin="120,590" width="8" x="416" y="576"/> <circ-anchor facing="east" height="6" width="6" x="757" y="27"/> </appear> <wire from="(1730,940)" to="(1730,1670)"/> <wire from="(1710,1690)" to="(2260,1690)"/> <wire from="(1750,900)" to="(1750,1500)"/> <wire from="(2180,2730)" to="(2340,2730)"/> <wire from="(1420,3660)" to="(1420,3680)"/> <wire from="(3460,3260)" to="(3470,3260)"/> <wire from="(3290,3410)" to="(3300,3410)"/> <wire from="(1430,3670)" to="(1430,3700)"/> <wire from="(2550,740)" to="(2570,740)"/> <wire from="(2870,220)" to="(3030,220)"/> <wire from="(2540,2330)" to="(2560,2330)"/> <wire from="(3140,360)" to="(3170,360)"/> <wire from="(2120,1410)" to="(2260,1410)"/> <wire from="(2250,2050)" to="(2260,2050)"/> <wire from="(1500,1550)" to="(1500,2000)"/> <wire from="(2370,2690)" to="(2370,2740)"/> <wire from="(2140,2260)" to="(2150,2260)"/> <wire from="(3090,330)" to="(3100,330)"/> <wire from="(2390,150)" to="(2390,210)"/> <wire from="(2140,1050)" to="(2140,1170)"/> <wire from="(730,1880)" to="(730,1960)"/> <wire from="(3390,3390)" to="(3390,3430)"/> <wire from="(1410,3650)" to="(1410,3660)"/> <wire from="(2370,2690)" to="(2570,2690)"/> <wire from="(3340,1530)" to="(3360,1530)"/> <wire from="(2620,720)" to="(2930,720)"/> <wire from="(2980,4260)" to="(2980,4270)"/> <wire from="(1210,3240)" to="(1210,3870)"/> <wire from="(3620,1180)" to="(3620,3500)"/> <wire from="(410,2250)" to="(560,2250)"/> <wire from="(3420,2870)" to="(3460,2870)"/> <wire from="(3420,3190)" to="(3460,3190)"/> <wire from="(1250,3360)" to="(1320,3360)"/> <wire from="(230,340)" to="(250,340)"/> <wire from="(2160,1070)" to="(2160,1150)"/> <wire from="(2080,4640)" to="(2080,4660)"/> <wire from="(2500,1220)" to="(2500,1250)"/> <wire from="(1100,1740)" to="(1100,1780)"/> <wire from="(1120,800)" to="(1120,840)"/> <wire from="(2390,2710)" to="(2390,2740)"/> <wire from="(210,1510)" to="(1050,1510)"/> <wire from="(1440,3680)" to="(1440,3720)"/> <wire from="(2530,4580)" to="(2530,4620)"/> <wire from="(2170,2400)" to="(2200,2400)"/> <wire from="(630,2520)" to="(1390,2520)"/> <wire from="(2440,180)" to="(2530,180)"/> <wire from="(1870,450)" to="(1870,2970)"/> <wire from="(2540,4380)" to="(2560,4380)"/> <wire from="(800,3490)" to="(800,3500)"/> <wire from="(3150,3400)" to="(3160,3400)"/> <wire from="(1250,3300)" to="(1250,3330)"/> <wire from="(3130,1530)" to="(3200,1530)"/> <wire from="(2540,2460)" to="(2560,2460)"/> <wire from="(3160,1370)" to="(3160,1430)"/> <wire from="(1930,740)" to="(2170,740)"/> <wire from="(2980,4170)" to="(3010,4170)"/> <wire from="(2220,4380)" to="(2240,4380)"/> <wire from="(760,320)" to="(820,320)"/> <wire from="(2270,160)" to="(2270,210)"/> <wire from="(1190,420)" to="(1190,550)"/> <wire from="(1260,3700)" to="(1320,3700)"/> <wire from="(2420,170)" to="(2500,170)"/> <wire from="(3420,3010)" to="(3450,3010)"/> <wire from="(1270,3400)" to="(1320,3400)"/> <wire from="(200,200)" to="(1260,200)"/> <wire from="(1280,3650)" to="(1280,3660)"/> <wire from="(1910,1280)" to="(2100,1280)"/> <wire from="(2960,4130)" to="(3010,4130)"/> <wire from="(800,3280)" to="(820,3280)"/> <wire from="(1290,1220)" to="(1300,1220)"/> <wire from="(2380,140)" to="(2380,210)"/> <wire from="(2570,2130)" to="(2630,2130)"/> <wire from="(3090,4500)" to="(3090,4520)"/> <wire from="(830,1920)" to="(830,1960)"/> <wire from="(220,2050)" to="(250,2050)"/> <wire from="(990,800)" to="(990,840)"/> <wire from="(200,200)" to="(200,300)"/> <wire from="(1110,1680)" to="(1120,1680)"/> <wire from="(2990,110)" to="(2990,180)"/> <wire from="(790,3260)" to="(820,3260)"/> <wire from="(1170,1400)" to="(1200,1400)"/> <wire from="(1610,1140)" to="(1610,4000)"/> <wire from="(2180,390)" to="(2180,410)"/> <wire from="(3250,2740)" to="(3250,2750)"/> <wire from="(3290,3420)" to="(3290,3430)"/> <wire from="(3090,340)" to="(3090,360)"/> <wire from="(1160,440)" to="(1180,440)"/> <wire from="(2150,1000)" to="(2150,1030)"/> <wire from="(2990,4320)" to="(3010,4320)"/> <wire from="(2150,2600)" to="(2150,2700)"/> <wire from="(2160,2610)" to="(2160,2710)"/> <wire from="(2170,2620)" to="(2170,2720)"/> <wire from="(2180,2630)" to="(2180,2730)"/> <wire from="(2480,1770)" to="(2690,1770)"/> <wire from="(2980,4300)" to="(3010,4300)"/> <wire from="(3230,1570)" to="(3230,1630)"/> <wire from="(700,3090)" to="(1210,3090)"/> <wire from="(2490,1270)" to="(2500,1270)"/> <wire from="(2120,1350)" to="(2260,1350)"/> <wire from="(2120,3820)" to="(3410,3820)"/> <wire from="(780,3690)" to="(820,3690)"/> <wire from="(840,1530)" to="(1520,1530)"/> <wire from="(1570,1260)" to="(1570,3130)"/> <wire from="(1130,1390)" to="(1130,1400)"/> <wire from="(3050,110)" to="(3050,160)"/> <wire from="(2770,3480)" to="(3100,3480)"/> <wire from="(3360,1490)" to="(3380,1490)"/> <wire from="(2090,2020)" to="(2090,2340)"/> <wire from="(720,3330)" to="(740,3330)"/> <wire from="(1160,320)" to="(1240,320)"/> <wire from="(800,3730)" to="(820,3730)"/> <wire from="(780,3710)" to="(800,3710)"/> <wire from="(440,2170)" to="(440,2270)"/> <wire from="(850,2260)" to="(850,2370)"/> <wire from="(3290,1630)" to="(3290,1650)"/> <wire from="(1460,3500)" to="(1540,3500)"/> <wire from="(2540,2560)" to="(2590,2560)"/> <wire from="(2580,2580)" to="(2580,2710)"/> <wire from="(2120,4380)" to="(2170,4380)"/> <wire from="(1250,3300)" to="(1320,3300)"/> <wire from="(2120,860)" to="(2170,860)"/> <wire from="(780,3700)" to="(810,3700)"/> <wire from="(2360,4540)" to="(2360,4560)"/> <wire from="(1730,1670)" to="(2260,1670)"/> <wire from="(210,2710)" to="(210,2760)"/> <wire from="(1100,1360)" to="(1100,1400)"/> <wire from="(1180,800)" to="(1180,840)"/> <wire from="(780,3720)" to="(790,3720)"/> <wire from="(2550,660)" to="(2590,660)"/> <wire from="(2210,4300)" to="(2240,4300)"/> <wire from="(2990,2850)" to="(3010,2850)"/> <wire from="(1930,390)" to="(1930,740)"/> <wire from="(3420,2970)" to="(3430,2970)"/> <wire from="(720,3350)" to="(720,3360)"/> <wire from="(930,420)" to="(930,550)"/> <wire from="(2980,4110)" to="(3010,4110)"/> <wire from="(1230,3410)" to="(1230,3500)"/> <wire from="(2220,2080)" to="(2240,2080)"/> <wire from="(2220,4320)" to="(2240,4320)"/> <wire from="(1260,3320)" to="(1320,3320)"/> <wire from="(2560,2430)" to="(2570,2430)"/> <wire from="(2540,2090)" to="(2550,2090)"/> <wire from="(3070,1540)" to="(3070,1600)"/> <wire from="(2220,1770)" to="(2230,1770)"/> <wire from="(1290,1060)" to="(1930,1060)"/> <wire from="(2630,3090)" to="(2890,3090)"/> <wire from="(3460,2990)" to="(3490,2990)"/> <wire from="(2960,4110)" to="(2970,4110)"/> <wire from="(3110,1060)" to="(3120,1060)"/> <wire from="(1270,3340)" to="(1320,3340)"/> <wire from="(2580,4570)" to="(2580,4620)"/> <wire from="(180,240)" to="(180,590)"/> <wire from="(2960,4070)" to="(3010,4070)"/> <wire from="(2540,4350)" to="(2660,4350)"/> <wire from="(900,440)" to="(920,440)"/> <wire from="(780,3730)" to="(780,3770)"/> <wire from="(1070,300)" to="(1080,300)"/> <wire from="(2880,380)" to="(2880,2760)"/> <wire from="(680,2460)" to="(700,2460)"/> <wire from="(1460,2540)" to="(1460,3050)"/> <wire from="(2240,150)" to="(2290,150)"/> <wire from="(930,2060)" to="(960,2060)"/> <wire from="(2340,2730)" to="(2340,2740)"/> <wire from="(3250,1400)" to="(3250,1430)"/> <wire from="(2330,4640)" to="(2330,4660)"/> <wire from="(2970,4090)" to="(3010,4090)"/> <wire from="(1210,380)" to="(1210,550)"/> <wire from="(1250,3350)" to="(1270,3350)"/> <wire from="(1290,1160)" to="(1630,1160)"/> <wire from="(1050,800)" to="(1050,840)"/> <wire from="(2130,690)" to="(2170,690)"/> <wire from="(3030,220)" to="(3030,240)"/> <wire from="(1540,3500)" to="(3620,3500)"/> <wire from="(2430,4580)" to="(2530,4580)"/> <wire from="(2050,1470)" to="(2050,3870)"/> <wire from="(2890,4480)" to="(2910,4480)"/> <wire from="(2170,4520)" to="(2330,4520)"/> <wire from="(3100,4510)" to="(3240,4510)"/> <wire from="(2130,4550)" to="(2350,4550)"/> <wire from="(1160,1360)" to="(1160,1380)"/> <wire from="(3370,1070)" to="(3370,1250)"/> <wire from="(800,3240)" to="(800,3250)"/> <wire from="(2770,1160)" to="(3120,1160)"/> <wire from="(2110,820)" to="(2130,820)"/> <wire from="(3290,1570)" to="(3290,1630)"/> <wire from="(500,2170)" to="(500,2260)"/> <wire from="(2420,4540)" to="(2420,4590)"/> <wire from="(2120,1290)" to="(2260,1290)"/> <wire from="(2190,2190)" to="(2200,2190)"/> <wire from="(780,3630)" to="(820,3630)"/> <wire from="(2160,880)" to="(2170,880)"/> <wire from="(2980,3300)" to="(2990,3300)"/> <wire from="(1430,3670)" to="(1440,3670)"/> <wire from="(800,3670)" to="(820,3670)"/> <wire from="(2270,420)" to="(2270,490)"/> <wire from="(920,800)" to="(920,840)"/> <wire from="(610,2520)" to="(630,2520)"/> <wire from="(1110,2070)" to="(1120,2070)"/> <wire from="(2230,4350)" to="(2230,4360)"/> <wire from="(2990,4530)" to="(2990,4660)"/> <wire from="(3520,3170)" to="(3520,4410)"/> <wire from="(790,3650)" to="(820,3650)"/> <wire from="(2230,190)" to="(2230,210)"/> <wire from="(840,960)" to="(840,1530)"/> <wire from="(610,2410)" to="(610,2460)"/> <wire from="(1390,110)" to="(1390,410)"/> <wire from="(2220,1870)" to="(2260,1870)"/> <wire from="(1240,800)" to="(1240,840)"/> <wire from="(900,320)" to="(980,320)"/> <wire from="(1150,1460)" to="(1170,1460)"/> <wire from="(3130,1490)" to="(3180,1490)"/> <wire from="(810,3700)" to="(810,3710)"/> <wire from="(1670,1100)" to="(1670,1250)"/> <wire from="(760,3830)" to="(1500,3830)"/> <wire from="(3170,1360)" to="(3200,1360)"/> <wire from="(2120,1420)" to="(2260,1420)"/> <wire from="(2190,2320)" to="(2200,2320)"/> <wire from="(2250,1100)" to="(2260,1100)"/> <wire from="(2230,4280)" to="(2240,4280)"/> <wire from="(2630,4560)" to="(2630,4620)"/> <wire from="(3420,2890)" to="(3450,2890)"/> <wire from="(2350,2680)" to="(2350,2740)"/> <wire from="(3000,2810)" to="(3010,2810)"/> <wire from="(1430,3440)" to="(1480,3440)"/> <wire from="(2200,160)" to="(2270,160)"/> <wire from="(3180,1380)" to="(3200,1380)"/> <wire from="(840,960)" to="(860,960)"/> <wire from="(1250,3620)" to="(1260,3620)"/> <wire from="(910,1360)" to="(910,1660)"/> <wire from="(950,380)" to="(950,550)"/> <wire from="(2930,200)" to="(3050,200)"/> <wire from="(2550,720)" to="(2600,720)"/> <wire from="(540,330)" to="(570,330)"/> <wire from="(820,940)" to="(820,1550)"/> <wire from="(390,2760)" to="(400,2760)"/> <wire from="(1110,800)" to="(1110,840)"/> <wire from="(1570,3130)" to="(3010,3130)"/> <wire from="(810,300)" to="(820,300)"/> <wire from="(2980,3310)" to="(2980,3330)"/> <wire from="(1510,350)" to="(1530,350)"/> <wire from="(2380,2710)" to="(2380,2740)"/> <wire from="(2110,560)" to="(2400,560)"/> <wire from="(3460,3150)" to="(3460,3160)"/> <wire from="(1260,3320)" to="(1260,3340)"/> <wire from="(980,2370)" to="(1540,2370)"/> <wire from="(1230,340)" to="(1230,550)"/> <wire from="(2170,2410)" to="(2200,2410)"/> <wire from="(3070,760)" to="(3090,760)"/> <wire from="(3170,110)" to="(3170,160)"/> <wire from="(2520,2120)" to="(2550,2120)"/> <wire from="(800,920)" to="(800,1570)"/> <wire from="(3050,310)" to="(3050,350)"/> <wire from="(1290,960)" to="(1710,960)"/> <wire from="(1290,880)" to="(1330,880)"/> <wire from="(2890,3090)" to="(2890,3250)"/> <wire from="(3120,1600)" to="(3250,1600)"/> <wire from="(1430,3260)" to="(1470,3260)"/> <wire from="(2770,1160)" to="(2770,1920)"/> <wire from="(2250,1230)" to="(2260,1230)"/> <wire from="(1510,110)" to="(1510,240)"/> <wire from="(3430,3480)" to="(3590,3480)"/> <wire from="(560,2170)" to="(560,2250)"/> <wire from="(3250,3390)" to="(3250,3430)"/> <wire from="(1290,940)" to="(1730,940)"/> <wire from="(3160,3410)" to="(3180,3410)"/> <wire from="(3040,1120)" to="(3120,1120)"/> <wire from="(2180,4560)" to="(2180,4620)"/> <wire from="(1810,510)" to="(1810,1590)"/> <wire from="(3240,2740)" to="(3240,2760)"/> <wire from="(220,2060)" to="(250,2060)"/> <wire from="(980,800)" to="(980,840)"/> <wire from="(1310,480)" to="(1310,860)"/> <wire from="(3260,2760)" to="(3260,2790)"/> <wire from="(3420,3330)" to="(3460,3330)"/> <wire from="(3110,110)" to="(3110,240)"/> <wire from="(3080,4500)" to="(3080,4530)"/> <wire from="(410,2280)" to="(740,2280)"/> <wire from="(2940,4520)" to="(3040,4520)"/> <wire from="(2360,130)" to="(2360,210)"/> <wire from="(3130,160)" to="(3170,160)"/> <wire from="(3030,990)" to="(3030,1140)"/> <wire from="(1510,240)" to="(1510,350)"/> <wire from="(2350,120)" to="(2350,210)"/> <wire from="(2450,190)" to="(2550,190)"/> <wire from="(650,590)" to="(660,590)"/> <wire from="(780,780)" to="(860,780)"/> <wire from="(2910,4480)" to="(3020,4480)"/> <wire from="(2580,4640)" to="(2580,4660)"/> <wire from="(3430,2930)" to="(3430,2940)"/> <wire from="(3460,3280)" to="(3460,3290)"/> <wire from="(2490,1030)" to="(2490,1130)"/> <wire from="(2140,270)" to="(2170,270)"/> <wire from="(2170,2220)" to="(2200,2220)"/> <wire from="(2550,680)" to="(2580,680)"/> <wire from="(2470,1250)" to="(2490,1250)"/> <wire from="(2520,1310)" to="(2860,1310)"/> <wire from="(1810,3030)" to="(3010,3030)"/> <wire from="(2180,2240)" to="(2200,2240)"/> <wire from="(2220,4200)" to="(2240,4200)"/> <wire from="(2480,1590)" to="(2490,1590)"/> <wire from="(1260,3200)" to="(1320,3200)"/> <wire from="(2120,1360)" to="(2260,1360)"/> <wire from="(2190,2580)" to="(2200,2580)"/> <wire from="(310,470)" to="(310,1960)"/> <wire from="(1050,2150)" to="(1050,2220)"/> <wire from="(2160,630)" to="(2170,630)"/> <wire from="(3000,3070)" to="(3010,3070)"/> <wire from="(1450,3320)" to="(1450,3330)"/> <wire from="(1770,1520)" to="(1770,1780)"/> <wire from="(2530,110)" to="(2530,180)"/> <wire from="(2330,4590)" to="(2390,4590)"/> <wire from="(1290,1040)" to="(1300,1040)"/> <wire from="(2930,1360)" to="(2980,1360)"/> <wire from="(3120,3390)" to="(3120,3410)"/> <wire from="(1050,2150)" to="(1120,2150)"/> <wire from="(1160,340)" to="(1230,340)"/> <wire from="(1260,3110)" to="(2670,3110)"/> <wire from="(2350,4540)" to="(2350,4550)"/> <wire from="(2130,4640)" to="(2130,4660)"/> <wire from="(1220,1360)" to="(1220,1460)"/> <wire from="(2120,2480)" to="(2160,2480)"/> <wire from="(1170,800)" to="(1170,840)"/> <wire from="(1150,1420)" to="(1150,1460)"/> <wire from="(3420,3130)" to="(3470,3130)"/> <wire from="(1260,1720)" to="(1260,1830)"/> <wire from="(2720,4330)" to="(2720,4480)"/> <wire from="(1130,3430)" to="(1150,3430)"/> <wire from="(560,630)" to="(570,630)"/> <wire from="(2540,2580)" to="(2580,2580)"/> <wire from="(2770,1920)" to="(2770,3050)"/> <wire from="(3300,2740)" to="(3300,2790)"/> <wire from="(2540,2400)" to="(2570,2400)"/> <wire from="(2520,2060)" to="(2550,2060)"/> <wire from="(3150,1430)" to="(3160,1430)"/> <wire from="(1430,390)" to="(1530,390)"/> <wire from="(1650,3190)" to="(2720,3190)"/> <wire from="(620,2170)" to="(620,2240)"/> <wire from="(3050,350)" to="(3080,350)"/> <wire from="(2240,2110)" to="(2260,2110)"/> <wire from="(2600,760)" to="(2600,800)"/> <wire from="(3250,3430)" to="(3280,3430)"/> <wire from="(1950,540)" to="(2960,540)"/> <wire from="(1330,2120)" to="(1390,2120)"/> <wire from="(2420,2760)" to="(2880,2760)"/> <wire from="(2250,1810)" to="(2260,1810)"/> <wire from="(2210,4330)" to="(2220,4330)"/> <wire from="(780,3510)" to="(820,3510)"/> <wire from="(2250,2130)" to="(2260,2130)"/> <wire from="(2160,760)" to="(2170,760)"/> <wire from="(3040,1010)" to="(3370,1010)"/> <wire from="(2940,260)" to="(2950,260)"/> <wire from="(180,2820)" to="(180,2850)"/> <wire from="(2270,300)" to="(2270,420)"/> <wire from="(3310,3390)" to="(3310,3430)"/> <wire from="(2470,4540)" to="(2730,4540)"/> <wire from="(3070,4540)" to="(3090,4540)"/> <wire from="(970,340)" to="(970,550)"/> <wire from="(2120,2480)" to="(2120,3820)"/> <wire from="(3110,310)" to="(3110,360)"/> <wire from="(3330,3410)" to="(3330,3430)"/> <wire from="(780,3530)" to="(800,3530)"/> <wire from="(800,3550)" to="(820,3550)"/> <wire from="(410,2260)" to="(500,2260)"/> <wire from="(2200,1920)" to="(2770,1920)"/> <wire from="(1240,1440)" to="(1250,1440)"/> <wire from="(1990,270)" to="(2000,270)"/> <wire from="(1250,300)" to="(1250,550)"/> <wire from="(3370,3450)" to="(3370,3480)"/> <wire from="(3450,2890)" to="(3450,2920)"/> <wire from="(2680,4550)" to="(2680,4620)"/> <wire from="(1210,3870)" to="(2050,3870)"/> <wire from="(2570,730)" to="(2570,740)"/> <wire from="(3450,2980)" to="(3490,2980)"/> <wire from="(930,2070)" to="(960,2070)"/> <wire from="(3320,3400)" to="(3320,3430)"/> <wire from="(1250,3440)" to="(1320,3440)"/> <wire from="(780,3520)" to="(810,3520)"/> <wire from="(3430,2940)" to="(3490,2940)"/> <wire from="(2580,740)" to="(2580,760)"/> <wire from="(230,1470)" to="(950,1470)"/> <wire from="(1040,800)" to="(1040,840)"/> <wire from="(2130,700)" to="(2170,700)"/> <wire from="(2590,750)" to="(2590,780)"/> <wire from="(780,3540)" to="(790,3540)"/> <wire from="(1810,1590)" to="(1810,3030)"/> <wire from="(2510,1500)" to="(2510,1590)"/> <wire from="(2690,1770)" to="(2690,3070)"/> <wire from="(3340,3420)" to="(3340,3430)"/> <wire from="(3090,160)" to="(3090,240)"/> <wire from="(3380,4100)" to="(3380,4110)"/> <wire from="(2990,3310)" to="(3010,3310)"/> <wire from="(1830,490)" to="(1830,3010)"/> <wire from="(3010,2750)" to="(3100,2750)"/> <wire from="(1260,3390)" to="(1260,3420)"/> <wire from="(2980,3290)" to="(3010,3290)"/> <wire from="(2910,4180)" to="(2940,4180)"/> <wire from="(3330,760)" to="(3360,760)"/> <wire from="(650,630)" to="(690,630)"/> <wire from="(780,780)" to="(780,1380)"/> <wire from="(1330,240)" to="(1330,880)"/> <wire from="(2190,2520)" to="(2200,2520)"/> <wire from="(2120,1300)" to="(2260,1300)"/> <wire from="(2350,120)" to="(2360,120)"/> <wire from="(370,470)" to="(370,1960)"/> <wire from="(2980,880)" to="(3120,880)"/> <wire from="(2410,4540)" to="(2410,4600)"/> <wire from="(3100,3420)" to="(3120,3420)"/> <wire from="(2990,180)" to="(3070,180)"/> <wire from="(3230,1630)" to="(3250,1630)"/> <wire from="(2960,4210)" to="(3010,4210)"/> <wire from="(2300,140)" to="(2300,210)"/> <wire from="(780,3550)" to="(780,3590)"/> <wire from="(3180,3390)" to="(3180,3410)"/> <wire from="(3200,2770)" to="(3200,2790)"/> <wire from="(210,2760)" to="(240,2760)"/> <wire from="(910,800)" to="(910,840)"/> <wire from="(3330,1070)" to="(3370,1070)"/> <wire from="(2560,2450)" to="(2560,2460)"/> <wire from="(2670,1420)" to="(2670,3110)"/> <wire from="(2240,1810)" to="(2240,1830)"/> <wire from="(1790,1610)" to="(2260,1610)"/> <wire from="(3230,110)" to="(3230,180)"/> <wire from="(900,340)" to="(970,340)"/> <wire from="(180,590)" to="(570,590)"/> <wire from="(1830,3010)" to="(3010,3010)"/> <wire from="(1300,3220)" to="(1320,3220)"/> <wire from="(1230,800)" to="(1230,840)"/> <wire from="(2980,4150)" to="(2980,4170)"/> <wire from="(850,860)" to="(860,860)"/> <wire from="(810,3380)" to="(820,3380)"/> <wire from="(780,3670)" to="(790,3670)"/> <wire from="(1420,3660)" to="(1440,3660)"/> <wire from="(1430,3350)" to="(1450,3350)"/> <wire from="(2570,2460)" to="(2570,2480)"/> <wire from="(1100,1740)" to="(1120,1740)"/> <wire from="(3040,1010)" to="(3040,1120)"/> <wire from="(3170,310)" to="(3170,360)"/> <wire from="(3460,3280)" to="(3470,3280)"/> <wire from="(2470,1310)" to="(2500,1310)"/> <wire from="(1130,3390)" to="(1130,3410)"/> <wire from="(740,3320)" to="(740,3330)"/> <wire from="(3250,1600)" to="(3390,1600)"/> <wire from="(3470,2850)" to="(3470,2900)"/> <wire from="(2350,2680)" to="(2560,2680)"/> <wire from="(200,300)" to="(250,300)"/> <wire from="(2150,1000)" to="(2170,1000)"/> <wire from="(2180,2630)" to="(2200,2630)"/> <wire from="(3120,1540)" to="(3120,1600)"/> <wire from="(2120,1430)" to="(2260,1430)"/> <wire from="(780,3450)" to="(820,3450)"/> <wire from="(800,1570)" to="(1480,1570)"/> <wire from="(780,3770)" to="(820,3770)"/> <wire from="(3360,4120)" to="(3390,4120)"/> <wire from="(3160,1430)" to="(3250,1430)"/> <wire from="(720,3300)" to="(720,3320)"/> <wire from="(3420,2910)" to="(3440,2910)"/> <wire from="(2500,1880)" to="(2500,1940)"/> <wire from="(1630,3230)" to="(2840,3230)"/> <wire from="(2400,300)" to="(2400,560)"/> <wire from="(800,3490)" to="(820,3490)"/> <wire from="(2630,4390)" to="(2750,4390)"/> <wire from="(2140,110)" to="(2140,180)"/> <wire from="(3370,3390)" to="(3370,3420)"/> <wire from="(1770,310)" to="(1780,310)"/> <wire from="(3450,2920)" to="(3490,2920)"/> <wire from="(790,3470)" to="(820,3470)"/> <wire from="(230,360)" to="(250,360)"/> <wire from="(2380,4640)" to="(2380,4660)"/> <wire from="(240,1980)" to="(250,1980)"/> <wire from="(2580,680)" to="(2580,700)"/> <wire from="(680,2170)" to="(680,2290)"/> <wire from="(990,300)" to="(990,550)"/> <wire from="(3360,690)" to="(3360,760)"/> <wire from="(2090,2020)" to="(2580,2020)"/> <wire from="(3270,2720)" to="(3330,2720)"/> <wire from="(1060,440)" to="(1060,480)"/> <wire from="(510,2370)" to="(510,2930)"/> <wire from="(1100,800)" to="(1100,840)"/> <wire from="(2480,1710)" to="(2900,1710)"/> <wire from="(2330,4590)" to="(2330,4620)"/> <wire from="(2730,4540)" to="(2730,4620)"/> <wire from="(570,330)" to="(570,510)"/> <wire from="(2050,3870)" to="(3430,3870)"/> <wire from="(1270,3660)" to="(1270,3680)"/> <wire from="(2960,4390)" to="(3490,4390)"/> <wire from="(3350,940)" to="(3350,990)"/> <wire from="(2730,2930)" to="(3010,2930)"/> <wire from="(810,3520)" to="(810,3530)"/> <wire from="(2470,1130)" to="(2490,1130)"/> <wire from="(2260,170)" to="(2260,210)"/> <wire from="(1520,1530)" to="(1520,1940)"/> <wire from="(1280,3760)" to="(1320,3760)"/> <wire from="(2960,1100)" to="(3120,1100)"/> <wire from="(2180,2440)" to="(2200,2440)"/> <wire from="(3170,3420)" to="(3200,3420)"/> <wire from="(2200,110)" to="(2200,160)"/> <wire from="(2800,2890)" to="(2930,2890)"/> <wire from="(3070,4500)" to="(3070,4540)"/> <wire from="(2560,1810)" to="(2560,2000)"/> <wire from="(3000,3910)" to="(3010,3910)"/> <wire from="(2080,4540)" to="(2340,4540)"/> <wire from="(1270,3340)" to="(1270,3350)"/> <wire from="(3340,1360)" to="(3360,1360)"/> <wire from="(3290,110)" to="(3290,220)"/> <wire from="(120,690)" to="(150,690)"/> <wire from="(1520,510)" to="(1530,510)"/> <wire from="(1430,3620)" to="(1440,3620)"/> <wire from="(1810,1590)" to="(2260,1590)"/> <wire from="(1310,3180)" to="(1320,3180)"/> <wire from="(210,390)" to="(210,1510)"/> <wire from="(3080,350)" to="(3080,360)"/> <wire from="(1850,2990)" to="(3010,2990)"/> <wire from="(220,2070)" to="(250,2070)"/> <wire from="(1120,1390)" to="(1130,1390)"/> <wire from="(970,800)" to="(970,840)"/> <wire from="(1110,1700)" to="(1120,1700)"/> <wire from="(1670,1250)" to="(2260,1250)"/> <wire from="(2240,2070)" to="(2240,2080)"/> <wire from="(1370,1900)" to="(1370,2090)"/> <wire from="(3230,2740)" to="(3230,2770)"/> <wire from="(2030,4480)" to="(2030,4620)"/> <wire from="(2550,2060)" to="(2550,2070)"/> <wire from="(2960,4070)" to="(2960,4100)"/> <wire from="(200,2710)" to="(210,2710)"/> <wire from="(2730,1690)" to="(2730,2930)"/> <wire from="(1460,3320)" to="(1480,3320)"/> <wire from="(420,2170)" to="(420,2230)"/> <wire from="(2220,1730)" to="(2220,1760)"/> <wire from="(2570,2400)" to="(2570,2420)"/> <wire from="(3430,1590)" to="(3440,1590)"/> <wire from="(2940,4240)" to="(2940,4410)"/> <wire from="(2570,710)" to="(2600,710)"/> <wire from="(2540,2600)" to="(2570,2600)"/> <wire from="(3320,3400)" to="(3330,3400)"/> <wire from="(2550,700)" to="(2570,700)"/> <wire from="(2300,130)" to="(2320,130)"/> <wire from="(2600,640)" to="(2600,680)"/> <wire from="(2590,750)" to="(2600,750)"/> <wire from="(1480,3230)" to="(1480,3300)"/> <wire from="(2440,4570)" to="(2580,4570)"/> <wire from="(2170,2250)" to="(2180,2250)"/> <wire from="(2160,960)" to="(2170,960)"/> <wire from="(2820,1750)" to="(2820,4040)"/> <wire from="(3470,2900)" to="(3490,2900)"/> <wire from="(1670,1250)" to="(1670,3170)"/> <wire from="(3060,1540)" to="(3070,1540)"/> <wire from="(2650,4330)" to="(2660,4330)"/> <wire from="(1420,3620)" to="(1420,3630)"/> <wire from="(740,2170)" to="(740,2280)"/> <wire from="(3130,3410)" to="(3130,3430)"/> <wire from="(2150,2700)" to="(2400,2700)"/> <wire from="(3420,3150)" to="(3460,3150)"/> <wire from="(1250,3640)" to="(1320,3640)"/> <wire from="(170,2800)" to="(190,2800)"/> <wire from="(180,2820)" to="(190,2820)"/> <wire from="(1520,1940)" to="(2500,1940)"/> <wire from="(1400,3700)" to="(1430,3700)"/> <wire from="(1950,370)" to="(1950,540)"/> <wire from="(1160,800)" to="(1160,840)"/> <wire from="(2890,4510)" to="(2890,4660)"/> <wire from="(2840,3980)" to="(3010,3980)"/> <wire from="(2960,4120)" to="(2980,4120)"/> <wire from="(2990,4150)" to="(3010,4150)"/> <wire from="(1890,430)" to="(1890,2950)"/> <wire from="(3620,490)" to="(3620,1180)"/> <wire from="(3200,2770)" to="(3210,2770)"/> <wire from="(230,320)" to="(230,330)"/> <wire from="(1250,3580)" to="(1250,3610)"/> <wire from="(2540,2420)" to="(2560,2420)"/> <wire from="(1280,3380)" to="(1320,3380)"/> <wire from="(2220,1780)" to="(2240,1780)"/> <wire from="(2210,1130)" to="(2230,1130)"/> <wire from="(2220,2100)" to="(2240,2100)"/> <wire from="(2560,2450)" to="(2570,2450)"/> <wire from="(1370,900)" to="(1750,900)"/> <wire from="(2480,1670)" to="(2750,1670)"/> <wire from="(1160,360)" to="(1220,360)"/> <wire from="(2230,4360)" to="(2240,4360)"/> <wire from="(490,470)" to="(490,1960)"/> <wire from="(2750,2910)" to="(3010,2910)"/> <wire from="(2900,690)" to="(3360,690)"/> <wire from="(3330,1100)" to="(3480,1100)"/> <wire from="(3110,1080)" to="(3120,1080)"/> <wire from="(3110,760)" to="(3120,760)"/> <wire from="(2890,4510)" to="(3030,4510)"/> <wire from="(210,390)" to="(250,390)"/> <wire from="(1270,3680)" to="(1320,3680)"/> <wire from="(660,2250)" to="(830,2250)"/> <wire from="(720,2240)" to="(830,2240)"/> <wire from="(2570,930)" to="(2570,1050)"/> <wire from="(1520,450)" to="(1530,450)"/> <wire from="(220,410)" to="(250,410)"/> <wire from="(800,3240)" to="(820,3240)"/> <wire from="(1030,800)" to="(1030,840)"/> <wire from="(1110,1640)" to="(1120,1640)"/> <wire from="(2180,2270)" to="(2180,2280)"/> <wire from="(2550,800)" to="(2600,800)"/> <wire from="(2980,1540)" to="(3040,1540)"/> <wire from="(1930,1190)" to="(2260,1190)"/> <wire from="(2490,1620)" to="(2490,1630)"/> <wire from="(930,2080)" to="(960,2080)"/> <wire from="(230,430)" to="(250,430)"/> <wire from="(2200,1840)" to="(2200,1920)"/> <wire from="(2130,710)" to="(2170,710)"/> <wire from="(2160,420)" to="(2200,420)"/> <wire from="(480,2170)" to="(480,2220)"/> <wire from="(3490,3290)" to="(3490,4390)"/> <wire from="(3420,3270)" to="(3470,3270)"/> <wire from="(3440,2970)" to="(3490,2970)"/> <wire from="(2260,110)" to="(2260,140)"/> <wire from="(2630,4640)" to="(2630,4660)"/> <wire from="(780,1900)" to="(1370,1900)"/> <wire from="(2840,3230)" to="(2840,3980)"/> <wire from="(3160,2740)" to="(3160,2790)"/> <wire from="(3460,3160)" to="(3470,3160)"/> <wire from="(2960,2860)" to="(2960,2900)"/> <wire from="(2680,4290)" to="(2700,4290)"/> <wire from="(3010,1480)" to="(3100,1480)"/> <wire from="(1440,3580)" to="(1440,3610)"/> <wire from="(2980,4260)" to="(3010,4260)"/> <wire from="(2360,130)" to="(2380,130)"/> <wire from="(720,3340)" to="(820,3340)"/> <wire from="(700,3090)" to="(700,3310)"/> <wire from="(2590,690)" to="(2600,690)"/> <wire from="(1210,3090)" to="(1210,3220)"/> <wire from="(1870,2970)" to="(3010,2970)"/> <wire from="(150,690)" to="(150,2760)"/> <wire from="(2250,1630)" to="(2260,1630)"/> <wire from="(2120,1310)" to="(2260,1310)"/> <wire from="(3490,3170)" to="(3520,3170)"/> <wire from="(2230,4170)" to="(2240,4170)"/> <wire from="(2400,4540)" to="(2400,4600)"/> <wire from="(2960,540)" to="(2960,1100)"/> <wire from="(590,2410)" to="(590,2430)"/> <wire from="(1400,3660)" to="(1410,3660)"/> <wire from="(2480,1690)" to="(2730,1690)"/> <wire from="(950,1360)" to="(950,1470)"/> <wire from="(2630,4270)" to="(2750,4270)"/> <wire from="(900,800)" to="(900,840)"/> <wire from="(3270,1570)" to="(3270,1590)"/> <wire from="(1110,2090)" to="(1120,2090)"/> <wire from="(1210,3220)" to="(1280,3220)"/> <wire from="(1250,3580)" to="(1320,3580)"/> <wire from="(1590,4020)" to="(3010,4020)"/> <wire from="(3180,2760)" to="(3180,2790)"/> <wire from="(3420,3070)" to="(3480,3070)"/> <wire from="(1410,3650)" to="(1440,3650)"/> <wire from="(240,260)" to="(250,260)"/> <wire from="(410,2290)" to="(680,2290)"/> <wire from="(3050,160)" to="(3090,160)"/> <wire from="(2180,4640)" to="(2180,4660)"/> <wire from="(2220,4360)" to="(2220,4380)"/> <wire from="(810,3710)" to="(820,3710)"/> <wire from="(2280,4580)" to="(2380,4580)"/> <wire from="(1140,1360)" to="(1140,1400)"/> <wire from="(1220,800)" to="(1220,840)"/> <wire from="(2170,2620)" to="(2200,2620)"/> <wire from="(3420,2930)" to="(3430,2930)"/> <wire from="(2170,2300)" to="(2200,2300)"/> <wire from="(1260,200)" to="(1260,280)"/> <wire from="(2550,760)" to="(2580,760)"/> <wire from="(1290,980)" to="(2170,980)"/> <wire from="(3050,200)" to="(3050,240)"/> <wire from="(3040,4540)" to="(3040,4660)"/> <wire from="(900,360)" to="(960,360)"/> <wire from="(120,1830)" to="(170,1830)"/> <wire from="(1330,2090)" to="(1370,2090)"/> <wire from="(600,2200)" to="(830,2200)"/> <wire from="(1260,3600)" to="(1320,3600)"/> <wire from="(820,940)" to="(860,940)"/> <wire from="(2120,1440)" to="(2260,1440)"/> <wire from="(540,2210)" to="(830,2210)"/> <wire from="(980,2090)" to="(980,2370)"/> <wire from="(3000,3150)" to="(3010,3150)"/> <wire from="(3000,2830)" to="(3010,2830)"/> <wire from="(800,3710)" to="(800,3730)"/> <wire from="(1270,3620)" to="(1320,3620)"/> <wire from="(3230,1400)" to="(3230,1570)"/> <wire from="(2540,4290)" to="(2550,4290)"/> <wire from="(1930,1060)" to="(1930,1190)"/> <wire from="(2170,2720)" to="(2360,2720)"/> <wire from="(420,2230)" to="(830,2230)"/> <wire from="(540,2170)" to="(540,2210)"/> <wire from="(1110,3240)" to="(1190,3240)"/> <wire from="(2580,1440)" to="(2580,2020)"/> <wire from="(2980,4290)" to="(2980,4300)"/> <wire from="(3460,3330)" to="(3460,4370)"/> <wire from="(2320,110)" to="(2320,120)"/> <wire from="(480,2220)" to="(830,2220)"/> <wire from="(3260,2740)" to="(3300,2740)"/> <wire from="(3100,3450)" to="(3100,3480)"/> <wire from="(2080,4540)" to="(2080,4620)"/> <wire from="(2140,1050)" to="(2570,1050)"/> <wire from="(1050,2220)" to="(1460,2220)"/> <wire from="(1090,800)" to="(1090,840)"/> <wire from="(1250,3630)" to="(1270,3630)"/> <wire from="(2130,650)" to="(2170,650)"/> <wire from="(2560,4380)" to="(2560,4460)"/> <wire from="(760,220)" to="(1350,220)"/> <wire from="(220,1490)" to="(990,1490)"/> <wire from="(2260,140)" to="(2300,140)"/> <wire from="(780,3490)" to="(790,3490)"/> <wire from="(220,410)" to="(220,1490)"/> <wire from="(3420,3210)" to="(3470,3210)"/> <wire from="(1180,440)" to="(1180,550)"/> <wire from="(1050,1510)" to="(1050,2130)"/> <wire from="(3220,2740)" to="(3220,2790)"/> <wire from="(2230,1850)" to="(2260,1850)"/> <wire from="(680,3070)" to="(680,3400)"/> <wire from="(1020,240)" to="(1330,240)"/> <wire from="(2540,2480)" to="(2570,2480)"/> <wire from="(1690,1080)" to="(1690,3210)"/> <wire from="(2410,4600)" to="(2430,4600)"/> <wire from="(2150,820)" to="(2170,820)"/> <wire from="(1430,110)" to="(1430,390)"/> <wire from="(2180,2450)" to="(2200,2450)"/> <wire from="(3390,1500)" to="(3390,1600)"/> <wire from="(2250,1570)" to="(2260,1570)"/> <wire from="(1290,1140)" to="(1610,1140)"/> <wire from="(780,3590)" to="(820,3590)"/> <wire from="(2160,840)" to="(2170,840)"/> <wire from="(3060,4500)" to="(3060,4540)"/> <wire from="(880,1360)" to="(880,1380)"/> <wire from="(3000,4240)" to="(3010,4240)"/> <wire from="(2990,3910)" to="(3000,3910)"/> <wire from="(2960,1650)" to="(3290,1650)"/> <wire from="(1980,4460)" to="(2560,4460)"/> <wire from="(3030,310)" to="(3030,360)"/> <wire from="(2880,2900)" to="(2960,2900)"/> <wire from="(750,3260)" to="(770,3260)"/> <wire from="(3510,3030)" to="(3510,3050)"/> <wire from="(410,2270)" to="(440,2270)"/> <wire from="(960,800)" to="(960,840)"/> <wire from="(220,2080)" to="(250,2080)"/> <wire from="(1110,2030)" to="(1120,2030)"/> <wire from="(3180,3430)" to="(3220,3430)"/> <wire from="(510,2370)" to="(540,2370)"/> <wire from="(2460,4540)" to="(2460,4550)"/> <wire from="(390,2390)" to="(540,2390)"/> <wire from="(3420,3030)" to="(3460,3030)"/> <wire from="(1230,3500)" to="(1230,3600)"/> <wire from="(780,1900)" to="(780,1960)"/> <wire from="(2570,2600)" to="(2570,2690)"/> <wire from="(1540,2370)" to="(1540,3500)"/> <wire from="(2120,190)" to="(2230,190)"/> <wire from="(3030,820)" to="(3030,910)"/> <wire from="(1430,3290)" to="(1460,3290)"/> <wire from="(2230,1750)" to="(2230,1770)"/> <wire from="(1260,4130)" to="(2560,4130)"/> <wire from="(2330,120)" to="(2330,210)"/> <wire from="(660,3050)" to="(660,3420)"/> <wire from="(1200,1360)" to="(1200,1400)"/> <wire from="(720,3560)" to="(720,3870)"/> <wire from="(2970,4090)" to="(2970,4110)"/> <wire from="(740,3320)" to="(820,3320)"/> <wire from="(1890,2950)" to="(3010,2950)"/> <wire from="(2560,4130)" to="(2560,4170)"/> <wire from="(2100,1040)" to="(2900,1040)"/> <wire from="(3360,3450)" to="(3370,3450)"/> <wire from="(3380,4110)" to="(3390,4110)"/> <wire from="(1290,920)" to="(2170,920)"/> <wire from="(1460,3350)" to="(1460,3380)"/> <wire from="(2580,740)" to="(2600,740)"/> <wire from="(2540,2620)" to="(2560,2620)"/> <wire from="(1430,3410)" to="(1470,3410)"/> <wire from="(2220,4220)" to="(2240,4220)"/> <wire from="(2480,1610)" to="(2490,1610)"/> <wire from="(2700,1070)" to="(2900,1070)"/> <wire from="(1610,4000)" to="(3010,4000)"/> <wire from="(780,3630)" to="(780,3660)"/> <wire from="(600,2170)" to="(600,2200)"/> <wire from="(2230,4240)" to="(2240,4240)"/> <wire from="(3330,3410)" to="(3350,3410)"/> <wire from="(3100,2750)" to="(3100,2790)"/> <wire from="(3000,3090)" to="(3010,3090)"/> <wire from="(3290,1400)" to="(3290,1570)"/> <wire from="(1450,3340)" to="(1450,3350)"/> <wire from="(920,440)" to="(920,550)"/> <wire from="(2980,3270)" to="(2980,3280)"/> <wire from="(1470,3360)" to="(1470,3410)"/> <wire from="(660,3420)" to="(820,3420)"/> <wire from="(2660,1100)" to="(2720,1100)"/> <wire from="(3100,3390)" to="(3100,3420)"/> <wire from="(2540,4200)" to="(2580,4200)"/> <wire from="(2380,110)" to="(2380,130)"/> <wire from="(2430,4640)" to="(2430,4660)"/> <wire from="(1170,2390)" to="(1170,3390)"/> <wire from="(1150,3360)" to="(1150,3400)"/> <wire from="(3410,3820)" to="(3410,4090)"/> <wire from="(1260,3600)" to="(1260,3620)"/> <wire from="(2170,2370)" to="(2200,2370)"/> <wire from="(1510,240)" to="(2000,240)"/> <wire from="(2610,2440)" to="(2610,2930)"/> <wire from="(1200,400)" to="(1200,550)"/> <wire from="(2520,2080)" to="(2550,2080)"/> <wire from="(2770,3050)" to="(2770,3480)"/> <wire from="(2160,450)" to="(2180,450)"/> <wire from="(2230,4570)" to="(2230,4620)"/> <wire from="(2190,2090)" to="(2200,2090)"/> <wire from="(3420,2990)" to="(3440,2990)"/> <wire from="(2700,3350)" to="(2700,4230)"/> <wire from="(1480,3370)" to="(1480,3440)"/> <wire from="(2290,150)" to="(2290,210)"/> <wire from="(1160,380)" to="(1210,380)"/> <wire from="(1250,3390)" to="(1260,3390)"/> <wire from="(3130,350)" to="(3130,360)"/> <wire from="(1020,800)" to="(1020,840)"/> <wire from="(3290,3390)" to="(3290,3410)"/> <wire from="(2410,2720)" to="(2590,2720)"/> <wire from="(3420,3290)" to="(3460,3290)"/> <wire from="(1260,1360)" to="(1260,1420)"/> <wire from="(3430,2960)" to="(3490,2960)"/> <wire from="(2090,2340)" to="(2200,2340)"/> <wire from="(2470,1440)" to="(2580,1440)"/> <wire from="(3080,4530)" to="(3140,4530)"/> <wire from="(1980,4640)" to="(1980,4660)"/> <wire from="(1250,3370)" to="(1280,3370)"/> <wire from="(1250,3380)" to="(1270,3380)"/> <wire from="(2130,720)" to="(2170,720)"/> <wire from="(2220,2090)" to="(2260,2090)"/> <wire from="(3090,310)" to="(3090,330)"/> <wire from="(3120,340)" to="(3120,360)"/> <wire from="(790,3250)" to="(800,3250)"/> <wire from="(1290,860)" to="(1310,860)"/> <wire from="(3390,4130)" to="(3390,4140)"/> <wire from="(2960,3940)" to="(2980,3940)"/> <wire from="(1150,1380)" to="(1150,1400)"/> <wire from="(510,2930)" to="(2610,2930)"/> <wire from="(1390,2120)" to="(1390,2520)"/> <wire from="(800,3270)" to="(800,3280)"/> <wire from="(2590,2560)" to="(2590,2720)"/> <wire from="(3010,1250)" to="(3010,1480)"/> <wire from="(1460,3290)" to="(1460,3320)"/> <wire from="(2440,110)" to="(2440,150)"/> <wire from="(3180,1490)" to="(3180,1550)"/> <wire from="(1480,1570)" to="(1480,1980)"/> <wire from="(1400,3640)" to="(1440,3640)"/> <wire from="(1750,1500)" to="(2510,1500)"/> <wire from="(3150,180)" to="(3150,240)"/> <wire from="(2190,2540)" to="(2200,2540)"/> <wire from="(2390,4540)" to="(2390,4590)"/> <wire from="(2120,1320)" to="(2260,1320)"/> <wire from="(760,3740)" to="(760,3830)"/> <wire from="(3370,910)" to="(3370,1010)"/> <wire from="(350,470)" to="(350,1960)"/> <wire from="(2960,1140)" to="(3030,1140)"/> <wire from="(1160,1390)" to="(1160,1400)"/> <wire from="(2270,490)" to="(3620,490)"/> <wire from="(1500,3380)" to="(1500,3830)"/> <wire from="(2470,1420)" to="(2670,1420)"/> <wire from="(780,3680)" to="(800,3680)"/> <wire from="(1230,3500)" to="(1240,3500)"/> <wire from="(1290,1000)" to="(1300,1000)"/> <wire from="(890,800)" to="(890,840)"/> <wire from="(2980,1360)" to="(3040,1360)"/> <wire from="(2170,4380)" to="(2170,4520)"/> <wire from="(760,220)" to="(760,320)"/> <wire from="(2970,4160)" to="(2970,4190)"/> <wire from="(680,3400)" to="(820,3400)"/> <wire from="(2810,4640)" to="(2810,4660)"/> <wire from="(1300,3240)" to="(1320,3240)"/> <wire from="(1210,800)" to="(1210,840)"/> <wire from="(3160,3390)" to="(3160,3400)"/> <wire from="(1060,440)" to="(1080,440)"/> <wire from="(1250,3400)" to="(1250,3440)"/> <wire from="(2230,1820)" to="(2230,1850)"/> <wire from="(2380,140)" to="(2420,140)"/> <wire from="(1710,960)" to="(1710,1690)"/> <wire from="(3070,340)" to="(3090,340)"/> <wire from="(2650,4290)" to="(2650,4330)"/> <wire from="(900,380)" to="(950,380)"/> <wire from="(2550,910)" to="(3030,910)"/> <wire from="(3150,310)" to="(3150,350)"/> <wire from="(1110,3480)" to="(1150,3480)"/> <wire from="(2160,390)" to="(2180,390)"/> <wire from="(2150,1030)" to="(2490,1030)"/> <wire from="(2180,410)" to="(2200,410)"/> <wire from="(2240,2070)" to="(2260,2070)"/> <wire from="(200,2540)" to="(1460,2540)"/> <wire from="(3250,2750)" to="(3280,2750)"/> <wire from="(1970,520)" to="(2980,520)"/> <wire from="(230,430)" to="(230,1470)"/> <wire from="(2120,1450)" to="(2260,1450)"/> <wire from="(2250,1130)" to="(2260,1130)"/> <wire from="(3360,4140)" to="(3390,4140)"/> <wire from="(940,400)" to="(940,550)"/> <wire from="(660,2170)" to="(660,2250)"/> <wire from="(720,3870)" to="(1210,3870)"/> <wire from="(1350,110)" to="(1350,120)"/> <wire from="(3270,3420)" to="(3290,3420)"/> <wire from="(3350,3390)" to="(3350,3410)"/> <wire from="(150,2850)" to="(180,2850)"/> <wire from="(3470,3190)" to="(3470,3210)"/> <wire from="(1260,1420)" to="(1270,1420)"/> <wire from="(3120,1430)" to="(3120,1500)"/> <wire from="(1220,360)" to="(1220,550)"/> <wire from="(1770,330)" to="(1780,330)"/> <wire from="(2490,1250)" to="(2490,1260)"/> <wire from="(930,2030)" to="(960,2030)"/> <wire from="(1250,3720)" to="(1320,3720)"/> <wire from="(120,590)" to="(140,590)"/> <wire from="(190,340)" to="(210,340)"/> <wire from="(2220,420)" to="(2270,420)"/> <wire from="(2120,110)" to="(2120,190)"/> <wire from="(3370,3480)" to="(3430,3480)"/> <wire from="(2360,2720)" to="(2360,2740)"/> <wire from="(2900,690)" to="(2900,1040)"/> <wire from="(2800,1650)" to="(2800,2890)"/> <wire from="(2130,660)" to="(2170,660)"/> <wire from="(1080,800)" to="(1080,840)"/> <wire from="(2160,2610)" to="(2200,2610)"/> <wire from="(810,3530)" to="(820,3530)"/> <wire from="(2680,4640)" to="(2680,4660)"/> <wire from="(3460,3180)" to="(3460,3190)"/> <wire from="(3130,160)" to="(3130,240)"/> <wire from="(2210,4400)" to="(2240,4400)"/> <wire from="(1850,470)" to="(1850,2990)"/> <wire from="(610,2460)" to="(660,2460)"/> <wire from="(2990,4370)" to="(3460,4370)"/> <wire from="(3120,3410)" to="(3130,3410)"/> <wire from="(3470,3000)" to="(3470,3050)"/> <wire from="(3480,3010)" to="(3480,3070)"/> <wire from="(1260,3670)" to="(1260,3700)"/> <wire from="(2980,3250)" to="(3010,3250)"/> <wire from="(1400,3580)" to="(1440,3580)"/> <wire from="(2180,2460)" to="(2200,2460)"/> <wire from="(1630,1160)" to="(1630,3230)"/> <wire from="(1260,3420)" to="(1320,3420)"/> <wire from="(1260,3740)" to="(1320,3740)"/> <wire from="(2230,4570)" to="(2370,4570)"/> <wire from="(2630,4270)" to="(2630,4390)"/> <wire from="(2890,3250)" to="(2960,3250)"/> <wire from="(800,3530)" to="(800,3550)"/> <wire from="(2500,110)" to="(2500,170)"/> <wire from="(3220,3390)" to="(3220,3430)"/> <wire from="(1290,1280)" to="(1410,1280)"/> <wire from="(3460,2990)" to="(3460,3030)"/> <wire from="(2180,110)" to="(2180,170)"/> <wire from="(3270,1630)" to="(3290,1630)"/> <wire from="(1280,3370)" to="(1280,3380)"/> <wire from="(1470,3360)" to="(1480,3360)"/> <wire from="(3440,2970)" to="(3440,2990)"/> <wire from="(2980,4110)" to="(2980,4120)"/> <wire from="(950,800)" to="(950,840)"/> <wire from="(3240,2770)" to="(3240,2790)"/> <wire from="(1110,1720)" to="(1120,1720)"/> <wire from="(2880,380)" to="(3060,380)"/> <wire from="(2240,1770)" to="(2240,1780)"/> <wire from="(2630,2130)" to="(2630,3090)"/> <wire from="(2140,1170)" to="(2260,1170)"/> <wire from="(2950,2870)" to="(3010,2870)"/> <wire from="(3450,2980)" to="(3450,3010)"/> <wire from="(3050,4500)" to="(3050,4530)"/> <wire from="(3210,2740)" to="(3210,2770)"/> <wire from="(2230,4640)" to="(2230,4660)"/> <wire from="(2450,4540)" to="(2450,4560)"/> <wire from="(2180,430)" to="(2180,450)"/> <wire from="(2970,4190)" to="(3010,4190)"/> <wire from="(2210,4300)" to="(2210,4320)"/> <wire from="(1460,3050)" to="(2770,3050)"/> <wire from="(2840,3230)" to="(3010,3230)"/> <wire from="(1350,220)" to="(1350,900)"/> <wire from="(2480,1790)" to="(2840,1790)"/> <wire from="(3430,2960)" to="(3430,2970)"/> <wire from="(1290,670)" to="(1910,670)"/> <wire from="(2960,3050)" to="(2980,3050)"/> <wire from="(2880,2860)" to="(2880,2900)"/> <wire from="(2570,730)" to="(2600,730)"/> <wire from="(150,2760)" to="(210,2760)"/> <wire from="(3120,1500)" to="(3120,1540)"/> <wire from="(3090,4540)" to="(3090,4660)"/> <wire from="(2470,1280)" to="(2490,1280)"/> <wire from="(3490,2830)" to="(3490,2890)"/> <wire from="(1110,3420)" to="(1150,3420)"/> <wire from="(720,2170)" to="(720,2240)"/> <wire from="(2400,2700)" to="(2400,2740)"/> <wire from="(3330,1140)" to="(3590,1140)"/> <wire from="(3420,2950)" to="(3490,2950)"/> <wire from="(2050,1470)" to="(2100,1470)"/> <wire from="(2250,1710)" to="(2260,1710)"/> <wire from="(2120,1390)" to="(2260,1390)"/> <wire from="(820,1550)" to="(1500,1550)"/> <wire from="(3360,4080)" to="(3390,4080)"/> <wire from="(3340,3420)" to="(3370,3420)"/> <wire from="(2170,2270)" to="(2180,2270)"/> <wire from="(3120,340)" to="(3130,340)"/> <wire from="(660,3050)" to="(1410,3050)"/> <wire from="(790,3650)" to="(790,3670)"/> <wire from="(3470,3130)" to="(3470,3150)"/> <wire from="(1240,1660)" to="(1250,1660)"/> <wire from="(190,180)" to="(1370,180)"/> <wire from="(2450,4560)" to="(2630,4560)"/> <wire from="(2120,900)" to="(2170,900)"/> <wire from="(230,320)" to="(250,320)"/> <wire from="(790,3750)" to="(820,3750)"/> <wire from="(960,360)" to="(960,550)"/> <wire from="(3490,3020)" to="(3490,3090)"/> <wire from="(2450,190)" to="(2450,210)"/> <wire from="(2380,4600)" to="(2380,4620)"/> <wire from="(170,590)" to="(180,590)"/> <wire from="(1140,800)" to="(1140,840)"/> <wire from="(1330,2060)" to="(1350,2060)"/> <wire from="(3120,3420)" to="(3120,3430)"/> <wire from="(2440,180)" to="(2440,210)"/> <wire from="(2570,930)" to="(3120,930)"/> <wire from="(2170,2380)" to="(2200,2380)"/> <wire from="(2210,4340)" to="(2240,4340)"/> <wire from="(1690,3210)" to="(3010,3210)"/> <wire from="(2860,1310)" to="(2860,3270)"/> <wire from="(2520,1860)" to="(2520,1960)"/> <wire from="(2980,520)" to="(2980,880)"/> <wire from="(1160,400)" to="(1200,400)"/> <wire from="(2240,110)" to="(2240,150)"/> <wire from="(2480,1750)" to="(2820,1750)"/> <wire from="(2520,2100)" to="(2540,2100)"/> <wire from="(2210,4350)" to="(2230,4350)"/> <wire from="(1650,1120)" to="(1650,3190)"/> <wire from="(1470,370)" to="(1530,370)"/> <wire from="(2940,4410)" to="(3520,4410)"/> <wire from="(780,3450)" to="(780,3480)"/> <wire from="(2210,4360)" to="(2220,4360)"/> <wire from="(470,470)" to="(470,1960)"/> <wire from="(1060,480)" to="(1310,480)"/> <wire from="(2480,1810)" to="(2560,1810)"/> <wire from="(3120,1430)" to="(3130,1430)"/> <wire from="(3280,2750)" to="(3280,2790)"/> <wire from="(3040,4540)" to="(3060,4540)"/> <wire from="(3180,2760)" to="(3200,2760)"/> <wire from="(1270,3620)" to="(1270,3630)"/> <wire from="(1670,3170)" to="(3010,3170)"/> <wire from="(3440,2910)" to="(3440,2930)"/> <wire from="(1290,1200)" to="(1300,1200)"/> <wire from="(1310,3780)" to="(1320,3780)"/> <wire from="(1150,1380)" to="(1160,1380)"/> <wire from="(220,2030)" to="(250,2030)"/> <wire from="(1010,800)" to="(1010,840)"/> <wire from="(3300,3410)" to="(3300,3430)"/> <wire from="(2720,3190)" to="(2720,3960)"/> <wire from="(2900,1070)" to="(2900,1710)"/> <wire from="(2030,4480)" to="(2720,4480)"/> <wire from="(3100,330)" to="(3100,360)"/> <wire from="(2750,1670)" to="(2750,2910)"/> <wire from="(1240,320)" to="(1240,550)"/> <wire from="(2720,3190)" to="(3010,3190)"/> <wire from="(2170,2280)" to="(2170,2300)"/> <wire from="(3170,220)" to="(3290,220)"/> <wire from="(850,760)" to="(860,760)"/> <wire from="(2160,1150)" to="(2260,1150)"/> <wire from="(3460,3250)" to="(3460,3260)"/> <wire from="(2140,240)" to="(2170,240)"/> <wire from="(3460,3180)" to="(3470,3180)"/> <wire from="(1370,180)" to="(1370,900)"/> <wire from="(2540,4170)" to="(2560,4170)"/> <wire from="(200,2090)" to="(200,2540)"/> <wire from="(2700,4330)" to="(2720,4330)"/> <wire from="(1110,3360)" to="(1150,3360)"/> <wire from="(2980,4280)" to="(3010,4280)"/> <wire from="(1160,280)" to="(1260,280)"/> <wire from="(2380,4540)" to="(2380,4580)"/> <wire from="(1120,1360)" to="(1120,1390)"/> <wire from="(720,3360)" to="(820,3360)"/> <wire from="(2250,1650)" to="(2260,1650)"/> <wire from="(2120,1330)" to="(2260,1330)"/> <wire from="(2320,120)" to="(2330,120)"/> <wire from="(2160,600)" to="(2170,600)"/> <wire from="(3110,910)" to="(3120,910)"/> <wire from="(2980,1360)" to="(2980,1540)"/> <wire from="(2650,4290)" to="(2660,4290)"/> <wire from="(1190,2500)" to="(2200,2500)"/> <wire from="(3360,1470)" to="(3380,1470)"/> <wire from="(2940,4520)" to="(2940,4660)"/> <wire from="(2480,1830)" to="(2540,1830)"/> <wire from="(1290,1080)" to="(1690,1080)"/> <wire from="(1390,1880)" to="(1390,2120)"/> <wire from="(570,2520)" to="(590,2520)"/> <wire from="(1110,2110)" to="(1120,2110)"/> <wire from="(220,2810)" to="(240,2810)"/> <wire from="(410,2240)" to="(620,2240)"/> <wire from="(1210,3240)" to="(1280,3240)"/> <wire from="(2390,150)" to="(2440,150)"/> <wire from="(680,3070)" to="(2690,3070)"/> <wire from="(2660,1050)" to="(2720,1050)"/> <wire from="(3250,1570)" to="(3250,1600)"/> <wire from="(2770,560)" to="(2770,1160)"/> <wire from="(1100,1780)" to="(1770,1780)"/> <wire from="(2480,4640)" to="(2480,4660)"/> <wire from="(240,280)" to="(250,280)"/> <wire from="(2720,3960)" to="(3010,3960)"/> <wire from="(1970,350)" to="(1970,520)"/> <wire from="(1200,800)" to="(1200,840)"/> <wire from="(1290,1260)" to="(1570,1260)"/> <wire from="(2210,4370)" to="(2210,4400)"/> <wire from="(3480,3010)" to="(3490,3010)"/> <wire from="(800,920)" to="(860,920)"/> <wire from="(3060,1360)" to="(3150,1360)"/> <wire from="(1290,1120)" to="(1650,1120)"/> <wire from="(1280,3660)" to="(1320,3660)"/> <wire from="(1290,1100)" to="(1670,1100)"/> <wire from="(2180,170)" to="(2260,170)"/> <wire from="(790,3720)" to="(790,3750)"/> <wire from="(2750,4270)" to="(2750,4390)"/> <wire from="(2960,1140)" to="(2960,1650)"/> <wire from="(2120,1460)" to="(2260,1460)"/> <wire from="(900,400)" to="(940,400)"/> <wire from="(3360,1490)" to="(3360,1530)"/> <wire from="(3460,2870)" to="(3460,2910)"/> <wire from="(2990,4320)" to="(2990,4370)"/> <wire from="(3360,1360)" to="(3360,1470)"/> <wire from="(3240,2760)" to="(3260,2760)"/> <wire from="(3150,180)" to="(3230,180)"/> <wire from="(780,3500)" to="(800,3500)"/> <wire from="(1390,410)" to="(1530,410)"/> <wire from="(3390,4080)" to="(3390,4100)"/> <wire from="(3070,1600)" to="(3120,1600)"/> <wire from="(1250,3340)" to="(1260,3340)"/> <wire from="(1070,280)" to="(1080,280)"/> <wire from="(570,2410)" to="(570,2520)"/> <wire from="(980,320)" to="(980,550)"/> <wire from="(3330,910)" to="(3370,910)"/> <wire from="(2930,720)" to="(2930,1360)"/> <wire from="(930,2040)" to="(960,2040)"/> <wire from="(2570,700)" to="(2570,710)"/> <wire from="(3330,1180)" to="(3620,1180)"/> <wire from="(2150,2600)" to="(2200,2600)"/> <wire from="(2520,1290)" to="(2520,1310)"/> <wire from="(3140,4530)" to="(3140,4660)"/> <wire from="(2030,4640)" to="(2030,4660)"/> <wire from="(2170,2220)" to="(2170,2240)"/> <wire from="(2300,110)" to="(2300,130)"/> <wire from="(1070,800)" to="(1070,840)"/> <wire from="(2130,670)" to="(2170,670)"/> <wire from="(810,3220)" to="(820,3220)"/> <wire from="(1150,3440)" to="(1150,3480)"/> <wire from="(3440,2930)" to="(3490,2930)"/> <wire from="(1240,1720)" to="(1260,1720)"/> <wire from="(1980,4460)" to="(1980,4620)"/> <wire from="(1290,1180)" to="(1590,1180)"/> <wire from="(2810,4260)" to="(2810,4620)"/> <wire from="(2540,4230)" to="(2700,4230)"/> <wire from="(3030,1140)" to="(3120,1140)"/> <wire from="(3030,820)" to="(3120,820)"/> <wire from="(1180,1360)" to="(1180,1390)"/> <wire from="(2180,2470)" to="(2200,2470)"/> <wire from="(2170,4380)" to="(2190,4380)"/> <wire from="(3420,2830)" to="(3490,2830)"/> <wire from="(2550,610)" to="(2560,610)"/> <wire from="(720,3300)" to="(820,3300)"/> <wire from="(900,280)" to="(1000,280)"/> <wire from="(2250,1270)" to="(2260,1270)"/> <wire from="(190,1830)" to="(1260,1830)"/> <wire from="(1290,900)" to="(1350,900)"/> <wire from="(3110,850)" to="(3120,850)"/> <wire from="(2160,1070)" to="(2680,1070)"/> <wire from="(3000,3940)" to="(3010,3940)"/> <wire from="(3520,3170)" to="(3540,3170)"/> <wire from="(3180,1550)" to="(3200,1550)"/> <wire from="(1260,280)" to="(1260,550)"/> <wire from="(2420,4590)" to="(2480,4590)"/> <wire from="(1790,530)" to="(1790,1610)"/> <wire from="(1770,350)" to="(1970,350)"/> <wire from="(3040,4500)" to="(3040,4520)"/> <wire from="(3200,2740)" to="(3200,2760)"/> <wire from="(940,800)" to="(940,840)"/> <wire from="(1110,2050)" to="(1120,2050)"/> <wire from="(2240,2100)" to="(2240,2110)"/> <wire from="(2220,4320)" to="(2220,4330)"/> <wire from="(2560,2420)" to="(2560,2430)"/> <wire from="(2120,780)" to="(2170,780)"/> <wire from="(2110,560)" to="(2110,640)"/> <wire from="(2570,2110)" to="(2570,2130)"/> <wire from="(2320,130)" to="(2320,210)"/> <wire from="(1400,3600)" to="(1430,3600)"/> <wire from="(1450,3330)" to="(1480,3330)"/> <wire from="(1190,2500)" to="(1190,3240)"/> <wire from="(2440,4540)" to="(2440,4570)"/> <wire from="(2840,290)" to="(2950,290)"/> <wire from="(1420,3630)" to="(1440,3630)"/> <wire from="(1430,3320)" to="(1450,3320)"/> <wire from="(1460,3350)" to="(1480,3350)"/> <wire from="(3130,1470)" to="(3180,1470)"/> <wire from="(1410,1280)" to="(1410,3050)"/> <wire from="(2240,180)" to="(2240,210)"/> <wire from="(2170,2260)" to="(2200,2260)"/> <wire from="(3130,350)" to="(3150,350)"/> <wire from="(1500,2000)" to="(2560,2000)"/> <wire from="(3270,1590)" to="(3410,1590)"/> <wire from="(800,3670)" to="(800,3680)"/> <wire from="(1480,1980)" to="(2540,1980)"/> <wire from="(1460,1960)" to="(2520,1960)"/> <wire from="(2420,170)" to="(2420,210)"/> <wire from="(990,1360)" to="(990,1490)"/> <wire from="(2180,2280)" to="(2200,2280)"/> <wire from="(1400,3720)" to="(1440,3720)"/> <wire from="(2480,1630)" to="(2490,1630)"/> <wire from="(3590,1140)" to="(3590,3480)"/> <wire from="(3070,180)" to="(3070,240)"/> <wire from="(2120,1400)" to="(2260,1400)"/> <wire from="(2490,1520)" to="(2490,1570)"/> <wire from="(2230,4260)" to="(2240,4260)"/> <wire from="(2410,160)" to="(2410,210)"/> <wire from="(3460,2910)" to="(3490,2910)"/> <wire from="(1770,370)" to="(1950,370)"/> <wire from="(3080,3390)" to="(3080,3430)"/> <wire from="(3360,4100)" to="(3380,4100)"/> <wire from="(3000,3110)" to="(3010,3110)"/> <wire from="(3270,1400)" to="(3270,1570)"/> <wire from="(2660,1050)" to="(2660,1100)"/> <wire from="(1020,240)" to="(1020,320)"/> <wire from="(2700,3350)" to="(3010,3350)"/> <wire from="(1210,3090)" to="(2630,3090)"/> <wire from="(3060,1530)" to="(3110,1530)"/> <wire from="(2130,4550)" to="(2130,4620)"/> <wire from="(630,2410)" to="(630,2520)"/> <wire from="(2990,3300)" to="(2990,3310)"/> <wire from="(2360,110)" to="(2360,120)"/> <wire from="(2400,560)" to="(2770,560)"/> <wire from="(3350,3430)" to="(3390,3430)"/> <wire from="(3090,4520)" to="(3190,4520)"/> <wire from="(2410,2720)" to="(2410,2740)"/> <wire from="(2590,660)" to="(2590,690)"/> <wire from="(810,280)" to="(820,280)"/> <wire from="(3420,3170)" to="(3470,3170)"/> <wire from="(3420,2850)" to="(3470,2850)"/> <wire from="(1770,390)" to="(1930,390)"/> <wire from="(1110,3450)" to="(1130,3450)"/> <wire from="(3190,4520)" to="(3190,4660)"/> <wire from="(2730,4640)" to="(2730,4660)"/> <wire from="(2170,2390)" to="(2200,2390)"/> <wire from="(2220,1800)" to="(2250,1800)"/> <wire from="(1000,280)" to="(1000,550)"/> <wire from="(2960,4150)" to="(2980,4150)"/> <wire from="(2540,2440)" to="(2570,2440)"/> <wire from="(1770,450)" to="(1870,450)"/> <wire from="(230,350)" to="(230,360)"/> <wire from="(2960,4140)" to="(2990,4140)"/> <wire from="(2220,1810)" to="(2240,1810)"/> <wire from="(2240,1830)" to="(2260,1830)"/> <wire from="(3410,1480)" to="(3480,1480)"/> <wire from="(3420,3090)" to="(3490,3090)"/> <wire from="(780,1380)" to="(880,1380)"/> <wire from="(1470,110)" to="(1470,370)"/> <wire from="(1770,430)" to="(1890,430)"/> <wire from="(3160,2740)" to="(3190,2740)"/> <wire from="(2250,1210)" to="(2260,1210)"/> <wire from="(2220,1820)" to="(2230,1820)"/> <wire from="(2160,800)" to="(2170,800)"/> <wire from="(2960,4160)" to="(2970,4160)"/> <wire from="(790,3470)" to="(790,3490)"/> <wire from="(3110,790)" to="(3120,790)"/> <wire from="(1430,3230)" to="(1480,3230)"/> <wire from="(390,2300)" to="(390,2390)"/> <wire from="(2880,2860)" to="(2960,2860)"/> <wire from="(2410,160)" to="(2480,160)"/> <wire from="(910,1660)" to="(1120,1660)"/> <wire from="(1470,3310)" to="(1480,3310)"/> <wire from="(1220,1460)" to="(1230,1460)"/> <wire from="(220,2040)" to="(250,2040)"/> <wire from="(2480,1650)" to="(2800,1650)"/> <wire from="(1000,800)" to="(1000,840)"/> <wire from="(2390,2710)" to="(2580,2710)"/> <wire from="(1770,470)" to="(1850,470)"/> <wire from="(1770,410)" to="(1780,410)"/> <wire from="(3270,3390)" to="(3270,3420)"/> <wire from="(790,3570)" to="(820,3570)"/> <wire from="(2280,4640)" to="(2280,4660)"/> <wire from="(3070,310)" to="(3070,340)"/> <wire from="(1160,420)" to="(1190,420)"/> <wire from="(830,1920)" to="(1350,1920)"/> <wire from="(3030,360)" to="(3070,360)"/> <wire from="(2840,290)" to="(2840,1790)"/> <wire from="(1280,4110)" to="(2580,4110)"/> <wire from="(2220,1790)" to="(2260,1790)"/> <wire from="(3100,4500)" to="(3100,4510)"/> <wire from="(790,3270)" to="(800,3270)"/> <wire from="(2140,180)" to="(2240,180)"/> <wire from="(1160,1390)" to="(1180,1390)"/> <wire from="(1170,2390)" to="(2150,2390)"/> <wire from="(1430,3600)" to="(1430,3620)"/> <wire from="(1240,1360)" to="(1240,1440)"/> <wire from="(1770,510)" to="(1810,510)"/> <wire from="(2100,940)" to="(2100,1040)"/> <wire from="(2870,110)" to="(2870,220)"/> <wire from="(2960,4170)" to="(2960,4210)"/> <wire from="(2160,2710)" to="(2380,2710)"/> <wire from="(1050,1360)" to="(1050,1510)"/> <wire from="(2470,1220)" to="(2500,1220)"/> <wire from="(2480,1880)" to="(2500,1880)"/> <wire from="(2220,1830)" to="(2220,1870)"/> <wire from="(1280,3760)" to="(1280,4110)"/> <wire from="(2580,700)" to="(2600,700)"/> <wire from="(2980,3330)" to="(3010,3330)"/> <wire from="(2480,1570)" to="(2490,1570)"/> <wire from="(2490,1260)" to="(2500,1260)"/> <wire from="(3080,3430)" to="(3110,3430)"/> <wire from="(650,670)" to="(690,670)"/> <wire from="(2190,2560)" to="(2200,2560)"/> <wire from="(2120,1340)" to="(2260,1340)"/> <wire from="(330,470)" to="(330,1960)"/> <wire from="(3000,3050)" to="(3010,3050)"/> <wire from="(3140,3390)" to="(3140,3430)"/> <wire from="(3000,3370)" to="(3010,3370)"/> <wire from="(2100,940)" to="(2170,940)"/> <wire from="(2720,1050)" to="(2720,1100)"/> <wire from="(1770,490)" to="(1830,490)"/> <wire from="(1290,1020)" to="(1300,1020)"/> <wire from="(190,180)" to="(190,340)"/> <wire from="(3170,220)" to="(3170,240)"/> <wire from="(3240,4510)" to="(3240,4660)"/> <wire from="(3160,3410)" to="(3160,3430)"/> <wire from="(2550,640)" to="(2600,640)"/> <wire from="(1050,2130)" to="(1120,2130)"/> <wire from="(3180,1380)" to="(3180,1470)"/> <wire from="(3150,3400)" to="(3150,3430)"/> <wire from="(2180,4560)" to="(2360,4560)"/> <wire from="(2860,3270)" to="(2960,3270)"/> <wire from="(2430,4600)" to="(2430,4620)"/> <wire from="(1460,3500)" to="(1460,3600)"/> <wire from="(1430,3380)" to="(1460,3380)"/> <wire from="(2550,110)" to="(2550,190)"/> <wire from="(2940,4240)" to="(2980,4240)"/> <wire from="(1160,300)" to="(1250,300)"/> <wire from="(1770,530)" to="(1790,530)"/> <wire from="(2370,4540)" to="(2370,4570)"/> <wire from="(1190,800)" to="(1190,840)"/> <wire from="(1400,3680)" to="(1420,3680)"/> <wire from="(2420,110)" to="(2420,140)"/> <wire from="(3170,3420)" to="(3170,3430)"/> <wire from="(1130,3410)" to="(1150,3410)"/> <wire from="(1110,3390)" to="(1130,3390)"/> <wire from="(2480,1860)" to="(2520,1860)"/> <wire from="(1910,670)" to="(1910,1280)"/> <wire from="(2230,1750)" to="(2260,1750)"/> <wire from="(3510,3050)" to="(3520,3050)"/> <wire from="(3230,2770)" to="(3240,2770)"/> <wire from="(2590,2440)" to="(2610,2440)"/> <wire from="(1130,3430)" to="(1130,3450)"/> <wire from="(2280,4580)" to="(2280,4620)"/> <wire from="(2180,430)" to="(2200,430)"/> <wire from="(2240,1770)" to="(2260,1770)"/> <wire from="(1260,3110)" to="(1260,3200)"/> <wire from="(1260,3740)" to="(1260,4130)"/> <wire from="(1460,1960)" to="(1460,2220)"/> <wire from="(2560,2620)" to="(2560,2680)"/> <wire from="(3110,730)" to="(3120,730)"/> <wire from="(3470,3000)" to="(3490,3000)"/> <wire from="(2540,4260)" to="(2810,4260)"/> <wire from="(3330,940)" to="(3350,940)"/> <wire from="(2540,4320)" to="(2550,4320)"/> <wire from="(730,1880)" to="(1390,1880)"/> <wire from="(1250,3670)" to="(1260,3670)"/> <wire from="(2180,2240)" to="(2180,2250)"/> <wire from="(2490,1590)" to="(2490,1600)"/> <wire from="(2490,1270)" to="(2490,1280)"/> <wire from="(930,2050)" to="(960,2050)"/> <wire from="(3420,3250)" to="(3460,3250)"/> <wire from="(2820,4040)" to="(3010,4040)"/> <wire from="(900,420)" to="(930,420)"/> <wire from="(390,2810)" to="(400,2810)"/> <wire from="(3130,310)" to="(3130,340)"/> <wire from="(2580,4110)" to="(2580,4200)"/> <wire from="(1250,3650)" to="(1280,3650)"/> <wire from="(3010,1250)" to="(3370,1250)"/> <wire from="(1250,3660)" to="(1270,3660)"/> <wire from="(2130,680)" to="(2170,680)"/> <wire from="(2500,1280)" to="(2500,1310)"/> <wire from="(1060,800)" to="(1060,840)"/> <wire from="(2220,1730)" to="(2260,1730)"/> <wire from="(2550,780)" to="(2590,780)"/> <wire from="(3330,3390)" to="(3330,3400)"/> <wire from="(1270,3380)" to="(1270,3400)"/> <wire from="(1590,1180)" to="(1590,4020)"/> <wire from="(2910,4180)" to="(2910,4480)"/> <wire from="(2460,4550)" to="(2680,4550)"/> <wire from="(3480,1100)" to="(3480,1480)"/> <wire from="(2380,4600)" to="(2400,4600)"/> <wire from="(2550,930)" to="(2570,930)"/> <wire from="(1020,320)" to="(1080,320)"/> <wire from="(2980,3270)" to="(3010,3270)"/> <wire from="(2430,4540)" to="(2430,4580)"/> <wire from="(2900,2870)" to="(2930,2870)"/> <wire from="(790,3540)" to="(790,3570)"/> <wire from="(720,3560)" to="(760,3560)"/> <wire from="(2480,110)" to="(2480,160)"/> <wire from="(3110,1180)" to="(3120,1180)"/> <wire from="(1350,1920)" to="(1350,2060)"/> <wire from="(680,2370)" to="(850,2370)"/> <wire from="(150,510)" to="(570,510)"/> <wire from="(2900,1710)" to="(2900,2870)"/> <wire from="(1470,3260)" to="(1470,3310)"/> <wire from="(2990,4140)" to="(2990,4150)"/> <wire from="(930,800)" to="(930,840)"/> <wire from="(2250,1800)" to="(2250,1810)"/> <wire from="(2950,2890)" to="(3010,2890)"/> <wire from="(900,300)" to="(990,300)"/> <wire from="(1770,1520)" to="(2490,1520)"/> <wire from="(2990,4530)" to="(3050,4530)"/> <wire from="(3200,3390)" to="(3200,3420)"/> <wire from="(2540,2090)" to="(2540,2100)"/> <wire from="(3030,990)" to="(3350,990)"/> <wire from="(2540,1830)" to="(2540,1980)"/> <wire from="(2550,2100)" to="(2550,2120)"/> <wire from="(3430,3480)" to="(3430,3870)"/> <wire from="(2960,4300)" to="(2960,4390)"/> <wire from="(1450,3340)" to="(1480,3340)"/> <wire from="(2930,110)" to="(2930,200)"/> <wire from="(180,240)" to="(250,240)"/> <wire from="(2480,4590)" to="(2480,4620)"/> <wire from="(1400,3620)" to="(1420,3620)"/> <wire from="(3030,4500)" to="(3030,4510)"/> <wire from="(3420,3050)" to="(3470,3050)"/> <wire from="(1250,800)" to="(1250,840)"/> <wire from="(1250,3680)" to="(1250,3720)"/> <wire from="(2530,4640)" to="(2530,4660)"/> <wire from="(1100,1400)" to="(1120,1400)"/> <comp lib="0" loc="(2260,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(810,3220)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2280,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(200,2710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/RES"/> </comp> <comp lib="1" loc="(2950,2890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1110,1700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2110,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,2810)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3010,2750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2280,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA9"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(3078,64)" name="Text"> <a name="text" val="EXT INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(2190,4380)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="14"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="1"/> <a name="bit10" val="2"/> <a name="bit11" val="3"/> <a name="bit12" val="4"/> <a name="bit13" val="5"/> </comp> <comp lib="1" loc="(2380,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3050,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="0" loc="(2160,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2590,2440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2220,4220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1980,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(3200,240)" name="EXT_IO"/> <comp lib="1" loc="(2680,1070)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(150,510)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="label" val="VOUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3110,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2380,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA7"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(170,590)" name="NOT Gate"/> <comp lib="1" loc="(220,2810)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1300,1040)" name="Tunnel"> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1110,3200)" name="OAM_FIFO"/> <comp lib="6" loc="(2347,35)" name="Text"> <a name="text" val="Logisim doesn't support bidirectional pads and wires"/> </comp> <comp lib="0" loc="(2250,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1290,840)" name="CONTROL_UNIT_PAL"/> <comp lib="0" loc="(1300,1220)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1290,550)" name="HV_SELECT_PAL"/> <comp lib="6" loc="(2911,2884)" name="Text"> <a name="text" val="PAL!!!"/> </comp> <comp lib="0" loc="(2500,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1500,3380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2200,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(240,1980)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,4290)" name="Tunnel"> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3430,1590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(2810,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ALE"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2030,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2330,4520)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1070,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(650,590)" name="PIXEL_CLOCK_PAL"/> <comp loc="(2540,4150)" name="VRAM_BUS_CONTROL"/> <comp lib="0" loc="(1780,310)" name="Tunnel"> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3020,4480)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1350,120)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(660,590)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3290,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(2360,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(810,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3910)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3250,1630)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,1440)" name="Tunnel"> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2500,210)" name="CPU_DATA_IO"/> <comp lib="0" loc="(1110,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3510,3030)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3040,1540)" name="Splitter"> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> </comp> <comp lib="0" loc="(1240,3500)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(680,2460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="1" loc="(2630,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2100,1470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3190,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3520,3050)" name="Tunnel"> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2980,3050)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(3090,760)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(2180,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2530,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA4"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1814,60)" name="Text"> <a name="text" val="CPU INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(1300,1200)" name="Tunnel"> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,3240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="4" loc="(2700,4330)" name="D Flip-Flop"/> <comp lib="0" loc="(2160,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2730,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2210,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2990,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1980,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3360,3900)" name="BG_COLOR"/> <comp lib="1" loc="(2580,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2250,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2220,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2190,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2300,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp loc="(900,280)" name="H_COUNTER"/> <comp lib="1" loc="(2430,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1520,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(3340,1360)" name="RAM"> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(3110,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(540,220)" name="VIDEO_OUT_PAL"/> <comp lib="0" loc="(850,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3330,1040)" name="OAM_BUFFER"/> <comp lib="0" loc="(700,2460)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2580,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1070,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(270,1960)" name="COLOR_IO"/> <comp lib="1" loc="(2480,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2180,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2990,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2440,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(2689,1095)" name="Text"> <a name="text" val="!!!PAL"/> </comp> <comp lib="0" loc="(2960,3270)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1150,1420)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> </comp> <comp lib="0" loc="(2220,4200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2420,2760)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(3420,2790)" name="PICTURE_ADDRESS_GEN"/> <comp lib="1" loc="(3150,1430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3110,1060)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2140,2260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2560,610)" name="Tunnel"> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2620,720)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2380,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3170,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(210,340)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2960,4300)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(2150,2390)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(760,3560)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3040,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2890,4480)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1300,1020)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3270,2720)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(3440,1590)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2160,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2630,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2930,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp lib="0" loc="(2200,2090)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(2130,820)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="6" loc="(142,2877)" name="Text"> <a name="text" val="Manual cleaning"/> </comp> <comp lib="0" loc="(2190,2580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(390,2300)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(2230,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3000,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2110,640)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3140,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2510,1590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(2190,2320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2080,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(2140,220)" name="RW_CONTROL"/> <comp lib="0" loc="(240,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1350,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2430,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1460,3600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1470,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3040,1360)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> </comp> <comp lib="0" loc="(2990,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="0" loc="(1250,1660)" name="Tunnel"> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3940)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1230,1460)" name="Tunnel"> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2130,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4170)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1160,280)" name="V_COUNTER"/> <comp lib="0" loc="(3090,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1110,2070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(980,2090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3000,3370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3410,4090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2150,2260)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2160,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,1180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2120,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2675,4382)" name="Text"> <a name="text" val="WR DELAY"/> </comp> <comp lib="0" loc="(3110,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(170,1830)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2730,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(680,2370)" name="RAM"> <a name="addrWidth" val="5"/> <a name="dataWidth" val="6"/> <a name="bus" val="separate"/> </comp> <comp lib="6" loc="(3323,1484)" name="Text"> <a name="text" val="OAM2"/> </comp> <comp lib="0" loc="(2550,4320)" name="Tunnel"> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,2130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1780,330)" name="Tunnel"> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2240,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2200,1840)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(1430,3160)" name="H_INVERSION"/> <comp lib="0" loc="(2700,4290)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="5" loc="(150,2850)" name="Button"/> <comp lib="6" loc="(3323,1313)" name="Text"> <a name="text" val="OAM1"/> </comp> <comp lib="6" loc="(2662,4748)" name="Text"> <a name="text" val="VRAM INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp loc="(1400,3530)" name="READ_$2007"/> <comp lib="1" loc="(2530,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2190,2520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1230,3410)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(2030,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2960,3250)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(2140,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2960,3050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1120,1640)" name="INTERRUPT_CONTROL"/> <comp lib="0" loc="(2560,2330)" name="Tunnel"> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3060,380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp loc="(2540,2170)" name="MUX"/> <comp lib="0" loc="(1110,1720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2520,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1110,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(2190,2560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3100,3450)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2230,1130)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(2160,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3260,710)" name="OAM_BUF_CONTROL"/> <comp loc="(1770,300)" name="REGISTER_SELECT"/> <comp lib="0" loc="(2160,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(200,2090)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(3490,3290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(850,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2980,4240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> </comp> <comp lib="1" loc="(590,2520)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3000,3090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(3340,1530)" name="RAM"> <a name="addrWidth" val="5"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(3240,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2940,4180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2250,1710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1280,3220)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(1230,3600)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(3070,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2680,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2890,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(760,3740)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(2230,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(2520,2040)" name="SELECT_2.3.5.7_PIXEL"/> <comp lib="0" loc="(3330,2720)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1510,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2120,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2680,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="2" loc="(3410,1480)" name="Multiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(3230,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(2100,1280)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(400,2760)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(770,3260)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> </comp> <comp loc="(2480,1550)" name="CONTROL_REGS_PAL"/> <comp lib="0" loc="(2680,4290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp loc="(240,2760)" name="RESET_FF"/> <comp lib="0" loc="(2130,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(3000,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(700,3310)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2080,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2320,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(850,2260)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1310,3180)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,3260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2550,580)" name="OAM_CONTROL_PAL"/> <comp lib="0" loc="(2530,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3490,3170)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(3110,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(2980,3940)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(1310,3780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1990,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3170,1360)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2420,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2550,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2470,1080)" name="OAM_EVAL"/> <comp lib="0" loc="(1300,1000)" name="Tunnel"> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(560,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1170,1460)" name="Tunnel"> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS1"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2330,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3360,3450)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(3000,2830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2120,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/INT"/> </comp> <comp lib="0" loc="(3540,3170)" name="Tunnel"> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2480,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA5"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(256,148)" name="Text"> <a name="text" val="2C07 PPU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(590,2430)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(2330,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1170,3390)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="2" loc="(3100,1480)" name="Demultiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2570,2110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2120,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2480,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2230,4280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(3130,1530)" name="Controlled Buffer"> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1270,1420)" name="Tunnel"> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(400,2810)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1780,410)" name="Tunnel"> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1390,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3110,1080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1520,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(2345,59)" name="Text"> <a name="text" val="So we have to add workaround by separate I/O wires"/> </comp> <comp lib="0" loc="(1110,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2950,2870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2180,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2870,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp lib="0" loc="(2120,4380)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1140,2010)" name="COLOR_CONTROL"/> <comp lib="0" loc="(2160,2480)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="1" loc="(2810,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> </circuit> <circuit name="D-latch"> <a name="circuit" val="D-latch"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#3dff63" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <polyline fill="none" points="51,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="48">D LATCH</text> <circ-port height="8" pin="110,110" width="8" x="46" y="56"/> <circ-port height="8" pin="110,170" width="8" x="46" y="76"/> <circ-port height="10" pin="230,110" width="10" x="85" y="55"/> <circ-port height="10" pin="230,170" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(130,110)" to="(130,130)"/> <wire from="(130,150)" to="(130,170)"/> <wire from="(210,150)" to="(210,170)"/> <wire from="(210,110)" to="(210,130)"/> <wire from="(110,170)" to="(130,170)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(130,130)" to="(150,130)"/> <wire from="(130,150)" to="(150,150)"/> <wire from="(190,150)" to="(210,150)"/> <wire from="(190,130)" to="(210,130)"/> <wire from="(210,170)" to="(230,170)"/> <wire from="(210,110)" to="(230,110)"/> <comp lib="4" loc="(190,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(230,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(230,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> </circuit> <circuit name="PIXEL_CLOCK_NTSC"> <a name="circuit" val="PIXEL_CLOCK_NTSC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff6c3c" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="74">/CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="114">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="145">/PCLK</text> <circ-port height="8" pin="60,30" width="8" x="46" y="66"/> <circ-port height="8" pin="60,130" width="8" x="46" y="106"/> <circ-port height="10" pin="650,150" width="10" x="125" y="65"/> <circ-port height="10" pin="760,640" width="10" x="125" y="135"/> <circ-port height="10" pin="760,440" width="10" x="125" y="105"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(400,480)" to="(450,480)"/> <wire from="(370,510)" to="(370,650)"/> <wire from="(400,680)" to="(400,690)"/> <wire from="(140,660)" to="(190,660)"/> <wire from="(400,480)" to="(400,490)"/> <wire from="(510,350)" to="(510,360)"/> <wire from="(510,550)" to="(510,560)"/> <wire from="(490,130)" to="(490,140)"/> <wire from="(430,360)" to="(430,560)"/> <wire from="(550,360)" to="(590,360)"/> <wire from="(550,640)" to="(590,640)"/> <wire from="(510,640)" to="(550,640)"/> <wire from="(550,520)" to="(590,520)"/> <wire from="(510,560)" to="(550,560)"/> <wire from="(550,560)" to="(590,560)"/> <wire from="(510,720)" to="(550,720)"/> <wire from="(550,720)" to="(590,720)"/> <wire from="(590,640)" to="(630,640)"/> <wire from="(630,640)" to="(670,640)"/> <wire from="(630,440)" to="(670,440)"/> <wire from="(590,360)" to="(630,360)"/> <wire from="(590,520)" to="(630,520)"/> <wire from="(590,560)" to="(630,560)"/> <wire from="(590,720)" to="(630,720)"/> <wire from="(170,560)" to="(170,640)"/> <wire from="(550,150)" to="(650,150)"/> <wire from="(340,710)" to="(380,710)"/> <wire from="(510,360)" to="(550,360)"/> <wire from="(510,520)" to="(550,520)"/> <wire from="(270,540)" to="(270,650)"/> <wire from="(670,640)" to="(760,640)"/> <wire from="(670,440)" to="(760,440)"/> <wire from="(170,640)" to="(190,640)"/> <wire from="(370,650)" to="(380,650)"/> <wire from="(300,560)" to="(430,560)"/> <wire from="(300,360)" to="(430,360)"/> <wire from="(670,550)" to="(680,550)"/> <wire from="(450,480)" to="(450,600)"/> <wire from="(410,50)" to="(410,120)"/> <wire from="(630,720)" to="(630,730)"/> <wire from="(630,520)" to="(630,530)"/> <wire from="(250,50)" to="(250,120)"/> <wire from="(400,530)" to="(400,540)"/> <wire from="(300,360)" to="(300,560)"/> <wire from="(400,730)" to="(400,740)"/> <wire from="(430,570)" to="(430,770)"/> <wire from="(670,550)" to="(670,640)"/> <wire from="(510,360)" to="(510,380)"/> <wire from="(510,560)" to="(510,580)"/> <wire from="(230,650)" to="(270,650)"/> <wire from="(550,640)" to="(550,660)"/> <wire from="(510,640)" to="(510,660)"/> <wire from="(550,360)" to="(550,380)"/> <wire from="(550,560)" to="(550,580)"/> <wire from="(630,360)" to="(630,380)"/> <wire from="(630,640)" to="(630,660)"/> <wire from="(590,640)" to="(590,660)"/> <wire from="(630,560)" to="(630,580)"/> <wire from="(630,440)" to="(630,460)"/> <wire from="(590,360)" to="(590,380)"/> <wire from="(590,560)" to="(590,580)"/> <wire from="(170,540)" to="(270,540)"/> <wire from="(470,400)" to="(470,680)"/> <wire from="(150,140)" to="(180,140)"/> <wire from="(250,50)" to="(410,50)"/> <wire from="(250,450)" to="(250,560)"/> <wire from="(90,210)" to="(490,210)"/> <wire from="(170,560)" to="(250,560)"/> <wire from="(300,570)" to="(430,570)"/> <wire from="(300,770)" to="(430,770)"/> <wire from="(400,680)" to="(470,680)"/> <wire from="(700,520)" to="(700,530)"/> <wire from="(490,140)" to="(490,210)"/> <wire from="(400,420)" to="(400,430)"/> <wire from="(300,570)" to="(300,770)"/> <wire from="(400,620)" to="(400,630)"/> <wire from="(530,600)" to="(570,600)"/> <wire from="(530,400)" to="(570,400)"/> <wire from="(530,680)" to="(570,680)"/> <wire from="(530,480)" to="(570,480)"/> <wire from="(570,480)" to="(610,480)"/> <wire from="(570,600)" to="(610,600)"/> <wire from="(570,680)" to="(610,680)"/> <wire from="(570,400)" to="(610,400)"/> <wire from="(170,460)" to="(170,540)"/> <wire from="(270,650)" to="(370,650)"/> <wire from="(340,450)" to="(380,450)"/> <wire from="(90,440)" to="(90,660)"/> <wire from="(490,680)" to="(530,680)"/> <wire from="(450,480)" to="(490,480)"/> <wire from="(490,400)" to="(530,400)"/> <wire from="(490,600)" to="(530,600)"/> <wire from="(490,480)" to="(530,480)"/> <wire from="(450,600)" to="(490,600)"/> <wire from="(460,140)" to="(490,140)"/> <wire from="(80,30)" to="(170,30)"/> <wire from="(470,400)" to="(490,400)"/> <wire from="(470,680)" to="(490,680)"/> <wire from="(60,30)" to="(80,30)"/> <wire from="(80,50)" to="(100,50)"/> <wire from="(170,460)" to="(190,460)"/> <wire from="(670,440)" to="(670,540)"/> <wire from="(370,510)" to="(380,510)"/> <wire from="(90,150)" to="(90,210)"/> <wire from="(340,450)" to="(340,710)"/> <wire from="(550,140)" to="(550,150)"/> <wire from="(400,670)" to="(400,680)"/> <wire from="(400,470)" to="(400,480)"/> <wire from="(60,130)" to="(110,130)"/> <wire from="(510,500)" to="(510,520)"/> <wire from="(80,30)" to="(80,50)"/> <wire from="(170,30)" to="(170,120)"/> <wire from="(220,140)" to="(260,140)"/> <wire from="(300,140)" to="(340,140)"/> <wire from="(550,620)" to="(550,640)"/> <wire from="(510,620)" to="(510,640)"/> <wire from="(550,500)" to="(550,520)"/> <wire from="(550,700)" to="(550,720)"/> <wire from="(510,700)" to="(510,720)"/> <wire from="(630,420)" to="(630,440)"/> <wire from="(630,700)" to="(630,720)"/> <wire from="(630,620)" to="(630,640)"/> <wire from="(380,140)" to="(420,140)"/> <wire from="(90,440)" to="(190,440)"/> <wire from="(630,500)" to="(630,520)"/> <wire from="(590,620)" to="(590,640)"/> <wire from="(590,700)" to="(590,720)"/> <wire from="(590,500)" to="(590,520)"/> <wire from="(490,210)" to="(530,210)"/> <wire from="(490,130)" to="(530,130)"/> <wire from="(330,30)" to="(330,120)"/> <wire from="(550,420)" to="(550,460)"/> <wire from="(590,420)" to="(590,460)"/> <wire from="(250,450)" to="(340,450)"/> <wire from="(170,30)" to="(330,30)"/> <wire from="(90,660)" to="(120,660)"/> <wire from="(90,210)" to="(90,440)"/> <wire from="(90,150)" to="(110,150)"/> <wire from="(230,450)" to="(250,450)"/> <wire from="(510,420)" to="(510,460)"/> <wire from="(410,120)" to="(420,120)"/> <wire from="(330,120)" to="(340,120)"/> <wire from="(170,120)" to="(180,120)"/> <wire from="(250,120)" to="(260,120)"/> <wire from="(670,540)" to="(680,540)"/> <wire from="(460,120)" to="(530,120)"/> <wire from="(120,50)" to="(250,50)"/> <comp loc="(380,130)" name="D-latch"/> <comp lib="0" loc="(630,530)" name="Ground"/> <comp lib="0" loc="(60,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(510,550)" name="Power"/> <comp lib="6" loc="(318,199)" name="Text"> <a name="text" val="Pixel clock is disabled during RESET (PPU stall)"/> </comp> <comp lib="0" loc="(400,470)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(420,381)" name="Text"> <a name="text" val="I"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(510,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(630,730)" name="Ground"/> <comp lib="0" loc="(550,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(300,130)" name="D-latch"/> <comp lib="0" loc="(400,540)" name="Ground"/> <comp lib="1" loc="(140,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(400,690)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(400,490)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(550,140)" name="Splitter"> <a name="facing" val="west"/> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(400,620)" name="Power"/> <comp lib="0" loc="(550,660)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(220,130)" name="D-latch"/> <comp lib="6" loc="(318,173)" name="Text"> <a name="text" val="PCLK = CLK / 4"/> </comp> <comp lib="0" loc="(630,420)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,660)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(129,644)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(230,650)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(510,350)" name="Power"/> <comp lib="0" loc="(590,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(510,420)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,420)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(120,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(760,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(368,324)" name="Text"> <a name="text" val="PCLK DISTRIBUTION"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(590,420)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(460,130)" name="D-latch"/> <comp lib="0" loc="(510,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(400,420)" name="Power"/> <comp lib="0" loc="(60,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="0" loc="(550,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(417,591)" name="Text"> <a name="text" val="II"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(400,740)" name="Ground"/> <comp lib="1" loc="(150,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(552,214)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(630,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(630,660)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(760,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(650,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(400,670)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(630,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(510,660)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(700,530)" name="Splitter"> <a name="facing" val="west"/> </comp> </circuit> <circuit name="PIXEL_CLOCK_PAL"> <a name="circuit" val="PIXEL_CLOCK_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7c40" height="121" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="74">/CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="155">/PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="114">PCLK</text> <circ-port height="8" pin="80,60" width="8" x="46" y="66"/> <circ-port height="8" pin="80,240" width="8" x="46" y="106"/> <circ-port height="10" pin="960,260" width="10" x="125" y="65"/> <circ-port height="10" pin="880,730" width="10" x="125" y="145"/> <circ-port height="10" pin="880,530" width="10" x="125" y="105"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(520,450)" to="(520,650)"/> <wire from="(600,440)" to="(600,450)"/> <wire from="(600,640)" to="(600,650)"/> <wire from="(690,250)" to="(740,250)"/> <wire from="(910,230)" to="(910,240)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(460,600)" to="(460,740)"/> <wire from="(490,570)" to="(490,580)"/> <wire from="(230,750)" to="(280,750)"/> <wire from="(490,770)" to="(490,780)"/> <wire from="(600,610)" to="(640,610)"/> <wire from="(600,730)" to="(640,730)"/> <wire from="(600,530)" to="(640,530)"/> <wire from="(600,650)" to="(640,650)"/> <wire from="(600,450)" to="(640,450)"/> <wire from="(640,450)" to="(680,450)"/> <wire from="(640,530)" to="(680,530)"/> <wire from="(600,810)" to="(640,810)"/> <wire from="(680,450)" to="(720,450)"/> <wire from="(680,530)" to="(720,530)"/> <wire from="(640,810)" to="(680,810)"/> <wire from="(640,730)" to="(680,730)"/> <wire from="(640,650)" to="(680,650)"/> <wire from="(640,610)" to="(680,610)"/> <wire from="(680,610)" to="(720,610)"/> <wire from="(680,810)" to="(720,810)"/> <wire from="(680,650)" to="(720,650)"/> <wire from="(680,730)" to="(720,730)"/> <wire from="(260,650)" to="(260,730)"/> <wire from="(430,800)" to="(470,800)"/> <wire from="(780,290)" to="(800,290)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(260,170)" to="(280,170)"/> <wire from="(260,730)" to="(280,730)"/> <wire from="(180,360)" to="(180,530)"/> <wire from="(360,630)" to="(360,740)"/> <wire from="(540,570)" to="(540,690)"/> <wire from="(460,740)" to="(470,740)"/> <wire from="(390,650)" to="(520,650)"/> <wire from="(390,450)" to="(520,450)"/> <wire from="(840,240)" to="(850,240)"/> <wire from="(520,660)" to="(520,860)"/> <wire from="(720,610)" to="(720,620)"/> <wire from="(720,810)" to="(720,820)"/> <wire from="(560,300)" to="(740,300)"/> <wire from="(490,620)" to="(490,630)"/> <wire from="(490,820)" to="(490,830)"/> <wire from="(390,450)" to="(390,650)"/> <wire from="(560,490)" to="(560,770)"/> <wire from="(840,210)" to="(840,240)"/> <wire from="(260,630)" to="(360,630)"/> <wire from="(80,60)" to="(120,60)"/> <wire from="(600,650)" to="(600,670)"/> <wire from="(600,730)" to="(600,750)"/> <wire from="(640,530)" to="(640,550)"/> <wire from="(640,450)" to="(640,470)"/> <wire from="(600,530)" to="(600,550)"/> <wire from="(600,450)" to="(600,470)"/> <wire from="(320,740)" to="(360,740)"/> <wire from="(680,730)" to="(680,750)"/> <wire from="(680,650)" to="(680,670)"/> <wire from="(640,730)" to="(640,750)"/> <wire from="(640,650)" to="(640,670)"/> <wire from="(680,450)" to="(680,470)"/> <wire from="(680,530)" to="(680,550)"/> <wire from="(720,450)" to="(720,470)"/> <wire from="(720,530)" to="(720,550)"/> <wire from="(720,650)" to="(720,670)"/> <wire from="(720,730)" to="(720,750)"/> <wire from="(800,290)" to="(800,330)"/> <wire from="(560,160)" to="(580,160)"/> <wire from="(540,180)" to="(560,180)"/> <wire from="(640,160)" to="(660,160)"/> <wire from="(620,180)" to="(640,180)"/> <wire from="(700,180)" to="(720,180)"/> <wire from="(180,60)" to="(180,160)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(320,160)" to="(340,160)"/> <wire from="(400,160)" to="(420,160)"/> <wire from="(480,160)" to="(500,160)"/> <wire from="(340,540)" to="(340,650)"/> <wire from="(180,180)" to="(200,180)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(180,360)" to="(840,360)"/> <wire from="(260,650)" to="(340,650)"/> <wire from="(840,240)" to="(840,360)"/> <wire from="(260,190)" to="(260,240)"/> <wire from="(390,860)" to="(520,860)"/> <wire from="(390,660)" to="(520,660)"/> <wire from="(490,770)" to="(560,770)"/> <wire from="(480,90)" to="(480,160)"/> <wire from="(320,90)" to="(320,160)"/> <wire from="(910,210)" to="(910,220)"/> <wire from="(490,510)" to="(490,520)"/> <wire from="(490,710)" to="(490,720)"/> <wire from="(390,660)" to="(390,860)"/> <wire from="(260,160)" to="(260,170)"/> <wire from="(640,90)" to="(640,160)"/> <wire from="(540,570)" to="(580,570)"/> <wire from="(540,690)" to="(580,690)"/> <wire from="(620,490)" to="(660,490)"/> <wire from="(620,570)" to="(660,570)"/> <wire from="(580,690)" to="(620,690)"/> <wire from="(580,770)" to="(620,770)"/> <wire from="(620,770)" to="(660,770)"/> <wire from="(620,690)" to="(660,690)"/> <wire from="(580,490)" to="(620,490)"/> <wire from="(580,570)" to="(620,570)"/> <wire from="(660,690)" to="(700,690)"/> <wire from="(660,770)" to="(700,770)"/> <wire from="(660,570)" to="(700,570)"/> <wire from="(660,490)" to="(700,490)"/> <wire from="(180,180)" to="(180,330)"/> <wire from="(260,550)" to="(260,630)"/> <wire from="(360,740)" to="(460,740)"/> <wire from="(430,540)" to="(470,540)"/> <wire from="(180,530)" to="(180,750)"/> <wire from="(120,60)" to="(120,90)"/> <wire from="(160,90)" to="(320,90)"/> <wire from="(560,770)" to="(580,770)"/> <wire from="(560,490)" to="(580,490)"/> <wire from="(320,90)" to="(480,90)"/> <wire from="(180,60)" to="(400,60)"/> <wire from="(480,90)" to="(640,90)"/> <wire from="(260,550)" to="(280,550)"/> <wire from="(260,190)" to="(280,190)"/> <wire from="(720,730)" to="(880,730)"/> <wire from="(720,530)" to="(880,530)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(880,240)" to="(910,240)"/> <wire from="(460,600)" to="(470,600)"/> <wire from="(840,210)" to="(910,210)"/> <wire from="(720,180)" to="(720,230)"/> <wire from="(430,540)" to="(430,800)"/> <wire from="(120,60)" to="(180,60)"/> <wire from="(490,560)" to="(490,570)"/> <wire from="(80,240)" to="(260,240)"/> <wire from="(490,760)" to="(490,770)"/> <wire from="(640,180)" to="(640,250)"/> <wire from="(780,240)" to="(840,240)"/> <wire from="(180,330)" to="(800,330)"/> <wire from="(930,240)" to="(930,260)"/> <wire from="(600,590)" to="(600,610)"/> <wire from="(600,510)" to="(600,530)"/> <wire from="(380,180)" to="(420,180)"/> <wire from="(600,710)" to="(600,730)"/> <wire from="(640,590)" to="(640,610)"/> <wire from="(640,510)" to="(640,530)"/> <wire from="(600,790)" to="(600,810)"/> <wire from="(680,510)" to="(680,530)"/> <wire from="(640,790)" to="(640,810)"/> <wire from="(680,590)" to="(680,610)"/> <wire from="(640,710)" to="(640,730)"/> <wire from="(680,790)" to="(680,810)"/> <wire from="(680,710)" to="(680,730)"/> <wire from="(720,790)" to="(720,810)"/> <wire from="(720,710)" to="(720,730)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(180,530)" to="(280,530)"/> <wire from="(720,510)" to="(720,530)"/> <wire from="(720,590)" to="(720,610)"/> <wire from="(180,750)" to="(210,750)"/> <wire from="(400,60)" to="(400,160)"/> <wire from="(340,540)" to="(430,540)"/> <wire from="(560,180)" to="(580,180)"/> <wire from="(640,180)" to="(660,180)"/> <wire from="(400,60)" to="(560,60)"/> <wire from="(320,180)" to="(340,180)"/> <wire from="(320,540)" to="(340,540)"/> <wire from="(640,250)" to="(670,250)"/> <wire from="(930,260)" to="(960,260)"/> <wire from="(560,60)" to="(560,160)"/> <wire from="(180,160)" to="(200,160)"/> <wire from="(560,180)" to="(560,300)"/> <wire from="(720,230)" to="(720,280)"/> <comp lib="6" loc="(510,471)" name="Text"> <a name="text" val="I"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(680,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="1" loc="(780,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(240,170)" name="D-latch"/> <comp loc="(380,170)" name="D-latch"/> <comp lib="0" loc="(680,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(540,170)" name="D-latch"/> <comp loc="(460,170)" name="D-latch"/> <comp lib="6" loc="(650,175)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(680,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(880,240)" name="NOT Gate"/> <comp lib="6" loc="(191,176)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(679,238)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(860,229)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(490,710)" name="Power"/> <comp lib="0" loc="(600,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,830)" name="Ground"/> <comp lib="6" loc="(458,414)" name="Text"> <a name="text" val="PCLK DISTRIBUTION"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(620,170)" name="D-latch"/> <comp lib="0" loc="(640,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(720,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(160,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(414,229)" name="Text"> <a name="text" val="PCLK = CLK / 5"/> </comp> <comp lib="1" loc="(320,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(930,240)" name="Splitter"> <a name="facing" val="west"/> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(567,173)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="0" loc="(490,510)" name="Power"/> <comp lib="1" loc="(320,540)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(490,580)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="1" loc="(230,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(507,681)" name="Text"> <a name="text" val="II"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="0" loc="(600,640)" name="Power"/> <comp lib="0" loc="(720,820)" name="Ground"/> <comp lib="0" loc="(490,780)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(600,440)" name="Power"/> <comp lib="0" loc="(490,760)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(720,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(219,734)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(327,173)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="0" loc="(600,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(490,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(720,620)" name="Ground"/> <comp loc="(700,170)" name="D-latch"/> <comp lib="1" loc="(780,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(880,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(487,173)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(720,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(490,630)" name="Ground"/> <comp lib="1" loc="(690,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(960,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(880,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(335,318)" name="Text"> <a name="text" val="Pixel clock is disabled during RESET (PPU stall)"/> </comp> <comp lib="0" loc="(640,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(600,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(680,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(407,173)" name="Text"> <a name="text" val="7"/> </comp> </circuit> <circuit name="RESET_FF"> <a name="circuit" val="RESET_FF"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff3773" height="70" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="64">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="184" y="64">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="124" y="44">RESET FLIP/FLOP</text> <circ-port height="8" pin="80,60" width="8" x="46" y="56"/> <circ-port height="8" pin="80,160" width="8" x="46" y="106"/> <circ-port height="10" pin="430,30" width="10" x="195" y="105"/> <circ-port height="10" pin="430,150" width="10" x="195" y="55"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(80,160)" to="(270,160)"/> <wire from="(140,60)" to="(200,60)"/> <wire from="(310,70)" to="(330,70)"/> <wire from="(250,80)" to="(270,80)"/> <wire from="(250,140)" to="(270,140)"/> <wire from="(310,150)" to="(320,150)"/> <wire from="(250,120)" to="(330,120)"/> <wire from="(320,150)" to="(430,150)"/> <wire from="(320,100)" to="(320,150)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(250,80)" to="(250,100)"/> <wire from="(330,70)" to="(330,120)"/> <wire from="(200,30)" to="(430,30)"/> <wire from="(80,60)" to="(120,60)"/> <wire from="(200,60)" to="(270,60)"/> <wire from="(250,100)" to="(320,100)"/> <wire from="(200,30)" to="(200,60)"/> <comp lib="1" loc="(310,70)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(430,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RES"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(516,156)" name="Text"> <a name="text" val="(REG CLEAR)"/> </comp> <comp lib="6" loc="(292,203)" name="Text"> <a name="text" val="Reset flip/flop remains set after RESET, until not cleared by RESCL"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="1" loc="(310,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="1" loc="(140,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(388,111)" name="Text"> <a name="text" val="Reset flip/flop"/> </comp> <comp lib="0" loc="(430,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RC"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="HV_COUNTER_BIT"> <a name="circuit" val="HV_COUNTER_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M110,51 Q114,61 118,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fffca6" height="90" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="65">cin</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="137" y="74">Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="136" y="114">/Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="114">CLR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="133">cout</text> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,66 56,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,67 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,70" width="8" x="46" y="66"/> <circ-port height="8" pin="90,180" width="8" x="96" y="46"/> <circ-port height="8" pin="90,320" width="8" x="46" y="86"/> <circ-port height="8" pin="90,120" width="8" x="46" y="106"/> <circ-port height="10" pin="570,140" width="10" x="145" y="65"/> <circ-port height="10" pin="570,200" width="10" x="145" y="105"/> <circ-port height="10" pin="570,270" width="10" x="95" y="135"/> <circ-anchor facing="east" height="6" width="6" x="147" y="67"/> </appear> <wire from="(190,50)" to="(380,50)"/> <wire from="(460,160)" to="(520,160)"/> <wire from="(150,240)" to="(460,240)"/> <wire from="(520,200)" to="(570,200)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(430,170)" to="(430,320)"/> <wire from="(460,240)" to="(460,260)"/> <wire from="(460,160)" to="(460,240)"/> <wire from="(190,60)" to="(230,60)"/> <wire from="(310,120)" to="(310,150)"/> <wire from="(210,190)" to="(250,190)"/> <wire from="(290,170)" to="(330,170)"/> <wire from="(380,50)" to="(380,140)"/> <wire from="(460,260)" to="(500,260)"/> <wire from="(90,180)" to="(120,180)"/> <wire from="(120,180)" to="(120,280)"/> <wire from="(90,120)" to="(310,120)"/> <wire from="(370,160)" to="(400,160)"/> <wire from="(310,150)" to="(330,150)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(540,270)" to="(570,270)"/> <wire from="(440,160)" to="(460,160)"/> <wire from="(480,280)" to="(500,280)"/> <wire from="(230,60)" to="(230,170)"/> <wire from="(90,320)" to="(430,320)"/> <wire from="(150,200)" to="(170,200)"/> <wire from="(120,280)" to="(460,280)"/> <wire from="(520,160)" to="(520,200)"/> <wire from="(230,170)" to="(250,170)"/> <wire from="(90,70)" to="(170,70)"/> <wire from="(440,140)" to="(570,140)"/> <comp lib="4" loc="(440,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(540,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,70)" name="Splitter"/> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="in"/> </comp> <comp lib="6" loc="(116,174)" name="Text"> <a name="text" val="carry_in"/> </comp> <comp lib="6" loc="(137,313)" name="Text"> <a name="text" val="global RESET"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="carry_out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(290,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(134,115)" name="Text"> <a name="text" val="clear manually"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="clear"/> </comp> <comp lib="1" loc="(480,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(210,190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="H_COUNTER"> <a name="circuit" val="H_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M60,50 Q64,60 68,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffee3f" height="200" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="91" y="160">H</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="74">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="114">HC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">PCLK</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,75" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="234">8</text> <circ-port height="8" pin="60,70" width="8" x="46" y="86"/> <circ-port height="8" pin="60,150" width="8" x="46" y="106"/> <circ-port height="8" pin="60,110" width="8" x="46" y="66"/> <circ-port height="10" pin="370,110" width="10" x="125" y="65"/> <circ-port height="10" pin="370,220" width="10" x="125" y="85"/> <circ-port height="10" pin="370,330" width="10" x="125" y="105"/> <circ-port height="10" pin="370,440" width="10" x="125" y="125"/> <circ-port height="10" pin="370,550" width="10" x="125" y="145"/> <circ-port height="10" pin="370,740" width="10" x="125" y="165"/> <circ-port height="10" pin="370,850" width="10" x="125" y="185"/> <circ-port height="10" pin="370,960" width="10" x="125" y="205"/> <circ-port height="10" pin="370,1070" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(100,110)" to="(160,110)"/> <wire from="(100,330)" to="(160,330)"/> <wire from="(100,850)" to="(160,850)"/> <wire from="(100,550)" to="(160,550)"/> <wire from="(60,150)" to="(120,150)"/> <wire from="(100,1070)" to="(160,1070)"/> <wire from="(300,480)" to="(300,620)"/> <wire from="(260,110)" to="(370,110)"/> <wire from="(260,330)" to="(370,330)"/> <wire from="(260,850)" to="(370,850)"/> <wire from="(260,550)" to="(370,550)"/> <wire from="(260,1070)" to="(370,1070)"/> <wire from="(210,70)" to="(210,90)"/> <wire from="(210,810)" to="(210,830)"/> <wire from="(210,290)" to="(210,310)"/> <wire from="(210,1030)" to="(210,1050)"/> <wire from="(210,510)" to="(210,530)"/> <wire from="(60,110)" to="(100,110)"/> <wire from="(120,150)" to="(160,150)"/> <wire from="(120,370)" to="(160,370)"/> <wire from="(120,890)" to="(160,890)"/> <wire from="(290,590)" to="(290,620)"/> <wire from="(120,590)" to="(160,590)"/> <wire from="(120,1110)" to="(160,1110)"/> <wire from="(260,890)" to="(280,890)"/> <wire from="(260,1110)" to="(280,1110)"/> <wire from="(140,130)" to="(140,240)"/> <wire from="(120,890)" to="(120,1000)"/> <wire from="(140,870)" to="(140,980)"/> <wire from="(140,350)" to="(140,460)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,570)" to="(160,570)"/> <wire from="(140,1090)" to="(160,1090)"/> <wire from="(140,350)" to="(160,350)"/> <wire from="(140,870)" to="(160,870)"/> <wire from="(100,850)" to="(100,960)"/> <wire from="(100,330)" to="(100,440)"/> <wire from="(120,150)" to="(120,260)"/> <wire from="(120,370)" to="(120,480)"/> <wire from="(100,110)" to="(100,220)"/> <wire from="(260,150)" to="(330,150)"/> <wire from="(260,260)" to="(320,260)"/> <wire from="(100,220)" to="(160,220)"/> <wire from="(100,740)" to="(160,740)"/> <wire from="(100,440)" to="(160,440)"/> <wire from="(100,960)" to="(160,960)"/> <wire from="(260,370)" to="(310,370)"/> <wire from="(310,680)" to="(310,700)"/> <wire from="(330,150)" to="(330,620)"/> <wire from="(260,220)" to="(370,220)"/> <wire from="(260,740)" to="(370,740)"/> <wire from="(260,440)" to="(370,440)"/> <wire from="(260,960)" to="(370,960)"/> <wire from="(210,700)" to="(210,720)"/> <wire from="(210,180)" to="(210,200)"/> <wire from="(210,920)" to="(210,940)"/> <wire from="(210,400)" to="(210,420)"/> <wire from="(210,620)" to="(210,640)"/> <wire from="(210,1140)" to="(210,1160)"/> <wire from="(120,260)" to="(160,260)"/> <wire from="(120,780)" to="(160,780)"/> <wire from="(120,480)" to="(160,480)"/> <wire from="(120,1000)" to="(160,1000)"/> <wire from="(260,480)" to="(300,480)"/> <wire from="(210,700)" to="(310,700)"/> <wire from="(260,590)" to="(290,590)"/> <wire from="(260,780)" to="(280,780)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(140,980)" to="(140,1090)"/> <wire from="(120,1000)" to="(120,1110)"/> <wire from="(120,480)" to="(120,590)"/> <wire from="(140,460)" to="(140,570)"/> <wire from="(120,780)" to="(120,890)"/> <wire from="(140,760)" to="(140,870)"/> <wire from="(320,260)" to="(320,620)"/> <wire from="(140,240)" to="(140,350)"/> <wire from="(140,460)" to="(160,460)"/> <wire from="(140,980)" to="(160,980)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(140,760)" to="(160,760)"/> <wire from="(100,740)" to="(100,850)"/> <wire from="(100,220)" to="(100,330)"/> <wire from="(100,960)" to="(100,1070)"/> <wire from="(100,440)" to="(100,550)"/> <wire from="(120,260)" to="(120,370)"/> <wire from="(60,70)" to="(140,70)"/> <wire from="(120,590)" to="(120,780)"/> <wire from="(140,570)" to="(140,760)"/> <wire from="(310,370)" to="(310,620)"/> <wire from="(140,70)" to="(140,130)"/> <wire from="(100,550)" to="(100,740)"/> <comp loc="(260,330)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(60,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(260,220)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,1070)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(60,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(370,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,110)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(60,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HC"/> </comp> <comp lib="0" loc="(370,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(222,667)" name="Text"> <a name="text" val="reduce propagation delay"/> </comp> <comp loc="(260,960)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,680)" name="NOR Gate"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(210,70)" name="Constant"> <a name="facing" val="south"/> </comp> <comp loc="(260,740)" name="HV_COUNTER_BIT"/> <comp loc="(260,550)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,440)" name="HV_COUNTER_BIT"/> <comp loc="(260,850)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H1"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="V_COUNTER"> <a name="circuit" val="V_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffee3f" height="200" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="74">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="114">VC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="234">VIN</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="91" y="164">V</text> <polyline fill="none" points="51,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="52,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="235">8</text> <circ-port height="8" pin="70,30" width="8" x="46" y="226"/> <circ-port height="8" pin="70,70" width="8" x="46" y="66"/> <circ-port height="8" pin="70,200" width="8" x="46" y="86"/> <circ-port height="8" pin="70,110" width="8" x="46" y="106"/> <circ-port height="10" pin="380,70" width="10" x="125" y="65"/> <circ-port height="10" pin="380,180" width="10" x="125" y="85"/> <circ-port height="10" pin="380,290" width="10" x="125" y="105"/> <circ-port height="10" pin="380,400" width="10" x="125" y="125"/> <circ-port height="10" pin="380,510" width="10" x="125" y="145"/> <circ-port height="10" pin="380,700" width="10" x="125" y="165"/> <circ-port height="10" pin="380,810" width="10" x="125" y="185"/> <circ-port height="10" pin="380,920" width="10" x="125" y="205"/> <circ-port height="10" pin="380,1030" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(110,180)" to="(170,180)"/> <wire from="(110,400)" to="(170,400)"/> <wire from="(110,700)" to="(170,700)"/> <wire from="(110,920)" to="(170,920)"/> <wire from="(270,330)" to="(320,330)"/> <wire from="(270,180)" to="(380,180)"/> <wire from="(270,700)" to="(380,700)"/> <wire from="(270,400)" to="(380,400)"/> <wire from="(270,920)" to="(380,920)"/> <wire from="(220,660)" to="(220,680)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,580)" to="(220,600)"/> <wire from="(220,1100)" to="(220,1120)"/> <wire from="(220,880)" to="(220,900)"/> <wire from="(220,360)" to="(220,380)"/> <wire from="(130,220)" to="(170,220)"/> <wire from="(130,740)" to="(170,740)"/> <wire from="(130,440)" to="(170,440)"/> <wire from="(130,960)" to="(170,960)"/> <wire from="(270,440)" to="(310,440)"/> <wire from="(320,30)" to="(360,30)"/> <wire from="(270,550)" to="(300,550)"/> <wire from="(270,740)" to="(290,740)"/> <wire from="(270,960)" to="(290,960)"/> <wire from="(70,30)" to="(220,30)"/> <wire from="(130,960)" to="(130,1070)"/> <wire from="(150,420)" to="(150,530)"/> <wire from="(110,700)" to="(110,810)"/> <wire from="(150,940)" to="(150,1050)"/> <wire from="(130,440)" to="(130,550)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(130,740)" to="(130,850)"/> <wire from="(150,720)" to="(150,830)"/> <wire from="(130,220)" to="(130,330)"/> <wire from="(110,920)" to="(110,1030)"/> <wire from="(150,420)" to="(170,420)"/> <wire from="(150,940)" to="(170,940)"/> <wire from="(150,200)" to="(170,200)"/> <wire from="(150,720)" to="(170,720)"/> <wire from="(110,180)" to="(110,290)"/> <wire from="(110,400)" to="(110,510)"/> <wire from="(270,110)" to="(350,110)"/> <wire from="(130,550)" to="(130,740)"/> <wire from="(150,530)" to="(150,720)"/> <wire from="(270,220)" to="(340,220)"/> <wire from="(320,330)" to="(320,580)"/> <wire from="(110,510)" to="(110,700)"/> <wire from="(110,70)" to="(170,70)"/> <wire from="(70,110)" to="(130,110)"/> <wire from="(110,510)" to="(170,510)"/> <wire from="(110,290)" to="(170,290)"/> <wire from="(110,1030)" to="(170,1030)"/> <wire from="(110,810)" to="(170,810)"/> <wire from="(310,440)" to="(310,580)"/> <wire from="(220,660)" to="(330,660)"/> <wire from="(330,640)" to="(330,660)"/> <wire from="(350,110)" to="(350,580)"/> <wire from="(270,70)" to="(380,70)"/> <wire from="(270,510)" to="(380,510)"/> <wire from="(270,1030)" to="(380,1030)"/> <wire from="(270,290)" to="(380,290)"/> <wire from="(270,810)" to="(380,810)"/> <wire from="(220,30)" to="(220,50)"/> <wire from="(220,470)" to="(220,490)"/> <wire from="(220,990)" to="(220,1010)"/> <wire from="(220,770)" to="(220,790)"/> <wire from="(220,250)" to="(220,270)"/> <wire from="(70,70)" to="(110,70)"/> <wire from="(130,110)" to="(170,110)"/> <wire from="(130,550)" to="(170,550)"/> <wire from="(300,550)" to="(300,580)"/> <wire from="(130,1070)" to="(170,1070)"/> <wire from="(130,330)" to="(170,330)"/> <wire from="(130,850)" to="(170,850)"/> <wire from="(360,30)" to="(360,580)"/> <wire from="(270,1070)" to="(290,1070)"/> <wire from="(270,850)" to="(290,850)"/> <wire from="(130,850)" to="(130,960)"/> <wire from="(150,830)" to="(150,940)"/> <wire from="(130,330)" to="(130,440)"/> <wire from="(150,310)" to="(150,420)"/> <wire from="(110,810)" to="(110,920)"/> <wire from="(130,110)" to="(130,220)"/> <wire from="(150,90)" to="(150,200)"/> <wire from="(340,220)" to="(340,580)"/> <wire from="(150,310)" to="(170,310)"/> <wire from="(150,830)" to="(170,830)"/> <wire from="(150,90)" to="(170,90)"/> <wire from="(150,530)" to="(170,530)"/> <wire from="(150,1050)" to="(170,1050)"/> <wire from="(110,70)" to="(110,180)"/> <wire from="(110,290)" to="(110,400)"/> <wire from="(70,200)" to="(150,200)"/> <wire from="(220,30)" to="(300,30)"/> <comp loc="(270,920)" name="HV_COUNTER_BIT"/> <comp loc="(270,180)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(70,70)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(380,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(270,290)" name="HV_COUNTER_BIT"/> <comp lib="1" loc="(330,640)" name="NOR Gate"> <a name="facing" val="south"/> <a name="inputs" val="6"/> </comp> <comp loc="(270,1030)" name="HV_COUNTER_BIT"/> <comp lib="6" loc="(232,627)" name="Text"> <a name="text" val="reduce propagation delay"/> </comp> <comp lib="0" loc="(380,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VC"/> </comp> <comp lib="0" loc="(380,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VIN"/> </comp> <comp loc="(270,70)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(380,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(320,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(270,810)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(70,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(270,400)" name="HV_COUNTER_BIT"/> <comp loc="(270,700)" name="HV_COUNTER_BIT"/> <comp loc="(270,510)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(380,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V2"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="HV_SELECT_NTSC"> <a name="circuit" val="HV_SELECT_NTSC"/> <a name="clabel" val="HV SELECT"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M221,51 Q225,61 229,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b2ff73" height="250" stroke="#000000" stroke-width="2" width="430" x="10" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="149" y="287">HPLA OUTPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="285">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="25" y="285">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="33" y="264">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="68">H8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="69">H0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="69">V8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="410" y="70">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="413" y="173">V POS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="350" y="287">VPLA OUTPUTS</text> <circ-port height="8" pin="80,170" width="8" x="66" y="46"/> <circ-port height="8" pin="80,250" width="8" x="76" y="46"/> <circ-port height="8" pin="80,330" width="8" x="86" y="46"/> <circ-port height="8" pin="80,410" width="8" x="96" y="46"/> <circ-port height="8" pin="80,490" width="8" x="106" y="46"/> <circ-port height="8" pin="80,570" width="8" x="116" y="46"/> <circ-port height="8" pin="80,650" width="8" x="126" y="46"/> <circ-port height="8" pin="80,730" width="8" x="136" y="46"/> <circ-port height="8" pin="80,810" width="8" x="146" y="46"/> <circ-port height="8" pin="80,890" width="8" x="6" y="276"/> <circ-port height="8" pin="80,930" width="8" x="6" y="256"/> <circ-port height="8" pin="80,1170" width="8" x="326" y="46"/> <circ-port height="8" pin="80,1250" width="8" x="336" y="46"/> <circ-port height="8" pin="80,1330" width="8" x="346" y="46"/> <circ-port height="8" pin="80,1410" width="8" x="356" y="46"/> <circ-port height="8" pin="80,1490" width="8" x="366" y="46"/> <circ-port height="8" pin="80,1570" width="8" x="376" y="46"/> <circ-port height="8" pin="80,1650" width="8" x="386" y="46"/> <circ-port height="8" pin="80,1730" width="8" x="396" y="46"/> <circ-port height="8" pin="80,1810" width="8" x="406" y="46"/> <circ-port height="10" pin="1070,1560" width="10" x="435" y="165"/> <circ-port height="10" pin="130,1010" width="10" x="285" y="295"/> <circ-port height="10" pin="280,1010" width="10" x="35" y="295"/> <circ-port height="10" pin="280,1930" width="10" x="305" y="295"/> <circ-port height="10" pin="350,1010" width="10" x="45" y="295"/> <circ-port height="10" pin="350,1930" width="10" x="315" y="295"/> <circ-port height="10" pin="420,1010" width="10" x="55" y="295"/> <circ-port height="10" pin="420,1930" width="10" x="325" y="295"/> <circ-port height="10" pin="490,1010" width="10" x="65" y="295"/> <circ-port height="10" pin="490,1930" width="10" x="335" y="295"/> <circ-port height="10" pin="560,1010" width="10" x="75" y="295"/> <circ-port height="10" pin="560,1930" width="10" x="345" y="295"/> <circ-port height="10" pin="630,1010" width="10" x="85" y="295"/> <circ-port height="10" pin="630,1930" width="10" x="355" y="295"/> <circ-port height="10" pin="700,1010" width="10" x="95" y="295"/> <circ-port height="10" pin="700,1930" width="10" x="365" y="295"/> <circ-port height="10" pin="770,1010" width="10" x="105" y="295"/> <circ-port height="10" pin="770,1930" width="10" x="375" y="295"/> <circ-port height="10" pin="840,1010" width="10" x="115" y="295"/> <circ-port height="10" pin="840,1930" width="10" x="385" y="295"/> <circ-port height="10" pin="910,1010" width="10" x="125" y="295"/> <circ-port height="10" pin="980,1010" width="10" x="135" y="295"/> <circ-port height="10" pin="1050,1010" width="10" x="145" y="295"/> <circ-port height="10" pin="1120,1010" width="10" x="155" y="295"/> <circ-port height="10" pin="1190,1010" width="10" x="165" y="295"/> <circ-port height="10" pin="1260,1010" width="10" x="175" y="295"/> <circ-port height="10" pin="1330,1010" width="10" x="185" y="295"/> <circ-port height="10" pin="1400,1010" width="10" x="195" y="295"/> <circ-port height="10" pin="1470,1010" width="10" x="205" y="295"/> <circ-port height="10" pin="1540,1010" width="10" x="215" y="295"/> <circ-port height="10" pin="1610,1010" width="10" x="225" y="295"/> <circ-port height="10" pin="1680,1010" width="10" x="235" y="295"/> <circ-port height="10" pin="1750,1010" width="10" x="245" y="295"/> <circ-port height="10" pin="1820,1010" width="10" x="255" y="295"/> <circ-port height="10" pin="1890,1010" width="10" x="265" y="295"/> <circ-anchor facing="east" height="6" width="6" x="437" y="47"/> </appear> <wire from="(1680,590)" to="(1680,670)"/> <wire from="(1680,270)" to="(1680,350)"/> <wire from="(1680,750)" to="(1680,830)"/> <wire from="(80,1570)" to="(260,1570)"/> <wire from="(280,790)" to="(280,870)"/> <wire from="(1610,870)" to="(1610,1010)"/> <wire from="(910,140)" to="(910,230)"/> <wire from="(560,1390)" to="(560,1470)"/> <wire from="(110,1650)" to="(470,1650)"/> <wire from="(840,1350)" to="(840,1430)"/> <wire from="(840,1510)" to="(840,1590)"/> <wire from="(980,190)" to="(980,910)"/> <wire from="(1520,810)" to="(1660,810)"/> <wire from="(1660,570)" to="(1730,570)"/> <wire from="(1660,250)" to="(1730,250)"/> <wire from="(1520,650)" to="(1660,650)"/> <wire from="(260,530)" to="(610,530)"/> <wire from="(1890,830)" to="(1890,1010)"/> <wire from="(560,910)" to="(560,1010)"/> <wire from="(280,1140)" to="(280,1310)"/> <wire from="(1380,770)" to="(1450,770)"/> <wire from="(400,170)" to="(540,170)"/> <wire from="(630,950)" to="(630,1010)"/> <wire from="(170,410)" to="(170,980)"/> <wire from="(1190,710)" to="(1190,750)"/> <wire from="(280,1590)" to="(280,1710)"/> <wire from="(1870,690)" to="(1900,690)"/> <wire from="(1870,370)" to="(1900,370)"/> <wire from="(1870,210)" to="(1900,210)"/> <wire from="(1870,530)" to="(1900,530)"/> <wire from="(260,1570)" to="(330,1570)"/> <wire from="(980,1330)" to="(980,1470)"/> <wire from="(820,1410)" to="(940,1410)"/> <wire from="(1470,350)" to="(1470,430)"/> <wire from="(1800,330)" to="(1900,330)"/> <wire from="(1260,140)" to="(1260,230)"/> <wire from="(1750,790)" to="(1750,870)"/> <wire from="(1520,610)" to="(1900,610)"/> <wire from="(350,670)" to="(350,750)"/> <wire from="(350,1310)" to="(350,1390)"/> <wire from="(350,350)" to="(350,430)"/> <wire from="(910,350)" to="(910,950)"/> <wire from="(350,510)" to="(350,590)"/> <wire from="(350,1470)" to="(350,1550)"/> <wire from="(980,1520)" to="(1020,1520)"/> <wire from="(630,790)" to="(630,870)"/> <wire from="(630,1590)" to="(630,1670)"/> <wire from="(630,1270)" to="(630,1350)"/> <wire from="(630,1750)" to="(630,1830)"/> <wire from="(630,1430)" to="(630,1510)"/> <wire from="(1050,140)" to="(1050,670)"/> <wire from="(910,270)" to="(910,350)"/> <wire from="(980,1520)" to="(980,1730)"/> <wire from="(130,1000)" to="(160,1000)"/> <wire from="(1450,490)" to="(1520,490)"/> <wire from="(1450,810)" to="(1520,810)"/> <wire from="(1330,190)" to="(1330,950)"/> <wire from="(1590,850)" to="(1730,850)"/> <wire from="(1470,510)" to="(1470,630)"/> <wire from="(420,390)" to="(420,430)"/> <wire from="(610,1570)" to="(680,1570)"/> <wire from="(610,1730)" to="(680,1730)"/> <wire from="(610,930)" to="(680,930)"/> <wire from="(980,950)" to="(980,1010)"/> <wire from="(610,770)" to="(680,770)"/> <wire from="(1540,230)" to="(1540,270)"/> <wire from="(330,650)" to="(400,650)"/> <wire from="(1540,390)" to="(1540,430)"/> <wire from="(330,490)" to="(400,490)"/> <wire from="(1610,140)" to="(1610,230)"/> <wire from="(1260,430)" to="(1260,510)"/> <wire from="(1400,140)" to="(1400,670)"/> <wire from="(1400,790)" to="(1400,1010)"/> <wire from="(1730,770)" to="(1900,770)"/> <wire from="(420,870)" to="(420,950)"/> <wire from="(420,1510)" to="(420,1590)"/> <wire from="(420,1350)" to="(420,1430)"/> <wire from="(260,690)" to="(680,690)"/> <wire from="(560,190)" to="(560,910)"/> <wire from="(700,190)" to="(700,270)"/> <wire from="(700,1470)" to="(700,1550)"/> <wire from="(700,1310)" to="(700,1390)"/> <wire from="(490,1550)" to="(490,1590)"/> <wire from="(1800,810)" to="(1870,810)"/> <wire from="(1470,830)" to="(1470,1010)"/> <wire from="(1820,350)" to="(1820,470)"/> <wire from="(1330,950)" to="(1330,1010)"/> <wire from="(400,650)" to="(610,650)"/> <wire from="(180,490)" to="(180,980)"/> <wire from="(110,1330)" to="(110,1370)"/> <wire from="(110,1650)" to="(110,1690)"/> <wire from="(110,1490)" to="(110,1530)"/> <wire from="(110,1810)" to="(110,1850)"/> <wire from="(110,1170)" to="(110,1210)"/> <wire from="(1520,210)" to="(1590,210)"/> <wire from="(1660,730)" to="(1800,730)"/> <wire from="(350,830)" to="(350,1010)"/> <wire from="(700,350)" to="(700,470)"/> <wire from="(1040,1560)" to="(1070,1560)"/> <wire from="(1890,550)" to="(1890,590)"/> <wire from="(1890,230)" to="(1890,270)"/> <wire from="(1890,390)" to="(1890,430)"/> <wire from="(490,1870)" to="(490,1930)"/> <wire from="(1890,710)" to="(1890,750)"/> <wire from="(960,930)" to="(1030,930)"/> <wire from="(680,1650)" to="(940,1650)"/> <wire from="(1100,770)" to="(1380,770)"/> <wire from="(1520,490)" to="(1730,490)"/> <wire from="(540,1370)" to="(680,1370)"/> <wire from="(1240,210)" to="(1450,210)"/> <wire from="(540,1530)" to="(680,1530)"/> <wire from="(750,450)" to="(1660,450)"/> <wire from="(840,140)" to="(840,190)"/> <wire from="(1050,670)" to="(1050,750)"/> <wire from="(490,140)" to="(490,270)"/> <wire from="(110,410)" to="(170,410)"/> <wire from="(1610,270)" to="(1610,350)"/> <wire from="(1020,1530)" to="(1020,1810)"/> <wire from="(130,1000)" to="(130,1010)"/> <wire from="(150,690)" to="(260,690)"/> <wire from="(150,530)" to="(260,530)"/> <wire from="(150,850)" to="(260,850)"/> <wire from="(150,210)" to="(260,210)"/> <wire from="(110,810)" to="(220,810)"/> <wire from="(490,430)" to="(490,510)"/> <wire from="(490,270)" to="(490,350)"/> <wire from="(490,1390)" to="(490,1470)"/> <wire from="(770,390)" to="(770,470)"/> <wire from="(770,550)" to="(770,630)"/> <wire from="(770,710)" to="(770,790)"/> <wire from="(770,1350)" to="(770,1430)"/> <wire from="(770,1510)" to="(770,1590)"/> <wire from="(770,870)" to="(770,950)"/> <wire from="(1610,590)" to="(1610,710)"/> <wire from="(1610,430)" to="(1610,550)"/> <wire from="(1590,250)" to="(1660,250)"/> <wire from="(1590,570)" to="(1660,570)"/> <wire from="(1450,330)" to="(1590,330)"/> <wire from="(80,250)" to="(110,250)"/> <wire from="(80,570)" to="(110,570)"/> <wire from="(80,410)" to="(110,410)"/> <wire from="(80,730)" to="(110,730)"/> <wire from="(170,410)" to="(260,410)"/> <wire from="(840,1230)" to="(840,1270)"/> <wire from="(840,1710)" to="(840,1750)"/> <wire from="(1310,170)" to="(1900,170)"/> <wire from="(180,490)" to="(330,490)"/> <wire from="(750,770)" to="(1100,770)"/> <wire from="(110,610)" to="(130,610)"/> <wire from="(110,290)" to="(130,290)"/> <wire from="(110,450)" to="(130,450)"/> <wire from="(110,770)" to="(130,770)"/> <wire from="(1820,830)" to="(1820,1010)"/> <wire from="(330,1290)" to="(470,1290)"/> <wire from="(330,330)" to="(470,330)"/> <wire from="(840,1870)" to="(840,1930)"/> <wire from="(330,1450)" to="(470,1450)"/> <wire from="(470,1850)" to="(540,1850)"/> <wire from="(80,890)" to="(540,890)"/> <wire from="(1590,690)" to="(1800,690)"/> <wire from="(750,1330)" to="(820,1330)"/> <wire from="(750,1490)" to="(820,1490)"/> <wire from="(610,1250)" to="(750,1250)"/> <wire from="(470,1370)" to="(540,1370)"/> <wire from="(610,1410)" to="(750,1410)"/> <wire from="(470,1530)" to="(540,1530)"/> <wire from="(1030,930)" to="(1240,930)"/> <wire from="(940,1510)" to="(1020,1510)"/> <wire from="(80,930)" to="(400,930)"/> <wire from="(1120,710)" to="(1120,790)"/> <wire from="(1680,470)" to="(1680,550)"/> <wire from="(110,1170)" to="(610,1170)"/> <wire from="(280,1310)" to="(280,1390)"/> <wire from="(280,350)" to="(280,430)"/> <wire from="(280,1470)" to="(280,1550)"/> <wire from="(840,350)" to="(840,950)"/> <wire from="(280,1790)" to="(280,1870)"/> <wire from="(560,1590)" to="(560,1670)"/> <wire from="(190,570)" to="(190,980)"/> <wire from="(840,270)" to="(840,350)"/> <wire from="(560,1140)" to="(560,1310)"/> <wire from="(110,1730)" to="(330,1730)"/> <wire from="(540,1850)" to="(750,1850)"/> <wire from="(1100,690)" to="(1170,690)"/> <wire from="(350,230)" to="(350,270)"/> <wire from="(1400,670)" to="(1400,790)"/> <wire from="(820,1730)" to="(980,1730)"/> <wire from="(560,1750)" to="(560,1870)"/> <wire from="(540,1570)" to="(610,1570)"/> <wire from="(910,950)" to="(910,1010)"/> <wire from="(540,1730)" to="(610,1730)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(820,250)" to="(890,250)"/> <wire from="(1240,370)" to="(1520,370)"/> <wire from="(680,330)" to="(820,330)"/> <wire from="(1470,230)" to="(1470,270)"/> <wire from="(680,170)" to="(820,170)"/> <wire from="(940,1480)" to="(1020,1480)"/> <wire from="(260,1450)" to="(330,1450)"/> <wire from="(260,1290)" to="(330,1290)"/> <wire from="(260,330)" to="(330,330)"/> <wire from="(1870,250)" to="(1900,250)"/> <wire from="(1870,410)" to="(1900,410)"/> <wire from="(1870,570)" to="(1900,570)"/> <wire from="(1870,730)" to="(1900,730)"/> <wire from="(1470,710)" to="(1470,790)"/> <wire from="(680,1530)" to="(870,1530)"/> <wire from="(680,1370)" to="(870,1370)"/> <wire from="(1750,510)" to="(1750,590)"/> <wire from="(1540,140)" to="(1540,230)"/> <wire from="(1750,670)" to="(1750,790)"/> <wire from="(350,1830)" to="(350,1930)"/> <wire from="(1590,410)" to="(1730,410)"/> <wire from="(1450,210)" to="(1520,210)"/> <wire from="(420,1230)" to="(420,1270)"/> <wire from="(420,1710)" to="(420,1750)"/> <wire from="(1260,950)" to="(1260,1010)"/> <wire from="(890,210)" to="(1240,210)"/> <wire from="(630,670)" to="(630,790)"/> <wire from="(1820,230)" to="(1820,270)"/> <wire from="(470,410)" to="(610,410)"/> <wire from="(1820,550)" to="(1820,590)"/> <wire from="(470,570)" to="(610,570)"/> <wire from="(1820,710)" to="(1820,750)"/> <wire from="(470,250)" to="(610,250)"/> <wire from="(610,1170)" to="(870,1170)"/> <wire from="(890,930)" to="(960,930)"/> <wire from="(420,1870)" to="(420,1930)"/> <wire from="(1020,1250)" to="(1020,1460)"/> <wire from="(900,1500)" to="(1020,1500)"/> <wire from="(1890,140)" to="(1890,230)"/> <wire from="(1540,750)" to="(1540,830)"/> <wire from="(1540,430)" to="(1540,510)"/> <wire from="(200,650)" to="(200,980)"/> <wire from="(1730,490)" to="(1900,490)"/> <wire from="(1730,650)" to="(1900,650)"/> <wire from="(400,730)" to="(1030,730)"/> <wire from="(420,430)" to="(420,510)"/> <wire from="(420,590)" to="(420,670)"/> <wire from="(700,710)" to="(700,790)"/> <wire from="(700,550)" to="(700,630)"/> <wire from="(700,1670)" to="(700,1750)"/> <wire from="(700,870)" to="(700,950)"/> <wire from="(110,1250)" to="(400,1250)"/> <wire from="(110,1410)" to="(400,1410)"/> <wire from="(110,730)" to="(210,730)"/> <wire from="(1800,210)" to="(1870,210)"/> <wire from="(1800,530)" to="(1870,530)"/> <wire from="(1380,650)" to="(1520,650)"/> <wire from="(1800,690)" to="(1870,690)"/> <wire from="(770,1230)" to="(770,1270)"/> <wire from="(770,1710)" to="(770,1750)"/> <wire from="(610,570)" to="(1590,570)"/> <wire from="(400,1490)" to="(610,1490)"/> <wire from="(400,850)" to="(610,850)"/> <wire from="(400,370)" to="(610,370)"/> <wire from="(400,1330)" to="(610,1330)"/> <wire from="(110,570)" to="(110,610)"/> <wire from="(1240,930)" to="(1310,930)"/> <wire from="(110,250)" to="(110,290)"/> <wire from="(110,410)" to="(110,450)"/> <wire from="(110,730)" to="(110,770)"/> <wire from="(110,330)" to="(260,330)"/> <wire from="(150,610)" to="(680,610)"/> <wire from="(150,450)" to="(680,450)"/> <wire from="(1520,250)" to="(1590,250)"/> <wire from="(1660,450)" to="(1800,450)"/> <wire from="(1520,410)" to="(1590,410)"/> <wire from="(1540,270)" to="(1540,390)"/> <wire from="(700,1830)" to="(700,1930)"/> <wire from="(770,1870)" to="(770,1930)"/> <wire from="(680,690)" to="(750,690)"/> <wire from="(680,530)" to="(750,530)"/> <wire from="(680,850)" to="(750,850)"/> <wire from="(1520,370)" to="(1730,370)"/> <wire from="(400,410)" to="(470,410)"/> <wire from="(400,570)" to="(470,570)"/> <wire from="(400,250)" to="(470,250)"/> <wire from="(400,1850)" to="(470,1850)"/> <wire from="(1240,410)" to="(1450,410)"/> <wire from="(420,750)" to="(420,870)"/> <wire from="(420,270)" to="(420,390)"/> <wire from="(150,370)" to="(400,370)"/> <wire from="(1610,790)" to="(1610,870)"/> <wire from="(1890,750)" to="(1890,830)"/> <wire from="(150,1370)" to="(260,1370)"/> <wire from="(150,1850)" to="(260,1850)"/> <wire from="(150,1530)" to="(260,1530)"/> <wire from="(150,1690)" to="(260,1690)"/> <wire from="(840,1140)" to="(840,1230)"/> <wire from="(490,1590)" to="(490,1670)"/> <wire from="(890,330)" to="(1450,330)"/> <wire from="(80,1730)" to="(110,1730)"/> <wire from="(770,140)" to="(770,310)"/> <wire from="(1450,690)" to="(1590,690)"/> <wire from="(80,1410)" to="(110,1410)"/> <wire from="(80,1250)" to="(110,1250)"/> <wire from="(1890,430)" to="(1890,550)"/> <wire from="(1890,270)" to="(1890,390)"/> <wire from="(1890,590)" to="(1890,710)"/> <wire from="(280,230)" to="(280,270)"/> <wire from="(280,550)" to="(280,590)"/> <wire from="(490,1140)" to="(490,1310)"/> <wire from="(110,1770)" to="(130,1770)"/> <wire from="(110,1450)" to="(130,1450)"/> <wire from="(110,1290)" to="(130,1290)"/> <wire from="(490,1750)" to="(490,1870)"/> <wire from="(750,1210)" to="(820,1210)"/> <wire from="(840,950)" to="(840,1010)"/> <wire from="(820,1250)" to="(1020,1250)"/> <wire from="(750,1850)" to="(820,1850)"/> <wire from="(750,1690)" to="(820,1690)"/> <wire from="(210,730)" to="(210,980)"/> <wire from="(1170,690)" to="(1450,690)"/> <wire from="(470,1570)" to="(540,1570)"/> <wire from="(470,1730)" to="(540,1730)"/> <wire from="(1680,670)" to="(1680,750)"/> <wire from="(1470,140)" to="(1470,230)"/> <wire from="(280,710)" to="(280,790)"/> <wire from="(1190,750)" to="(1190,1010)"/> <wire from="(980,1470)" to="(1020,1470)"/> <wire from="(560,1470)" to="(560,1550)"/> <wire from="(560,1310)" to="(560,1390)"/> <wire from="(840,1430)" to="(840,1510)"/> <wire from="(840,1270)" to="(840,1350)"/> <wire from="(350,140)" to="(350,230)"/> <wire from="(1680,350)" to="(1680,470)"/> <wire from="(630,390)" to="(630,430)"/> <wire from="(630,550)" to="(630,590)"/> <wire from="(630,230)" to="(630,270)"/> <wire from="(1660,650)" to="(1730,650)"/> <wire from="(490,590)" to="(490,1010)"/> <wire from="(1520,730)" to="(1660,730)"/> <wire from="(260,770)" to="(610,770)"/> <wire from="(150,290)" to="(750,290)"/> <wire from="(350,1710)" to="(350,1750)"/> <wire from="(350,1550)" to="(350,1590)"/> <wire from="(1750,230)" to="(1750,270)"/> <wire from="(1750,390)" to="(1750,430)"/> <wire from="(750,850)" to="(1590,850)"/> <wire from="(750,530)" to="(1590,530)"/> <wire from="(840,1750)" to="(840,1870)"/> <wire from="(840,1590)" to="(840,1710)"/> <wire from="(820,930)" to="(890,930)"/> <wire from="(700,140)" to="(700,190)"/> <wire from="(260,210)" to="(330,210)"/> <wire from="(1820,140)" to="(1820,230)"/> <wire from="(1470,270)" to="(1470,350)"/> <wire from="(1470,430)" to="(1470,510)"/> <wire from="(280,870)" to="(280,1010)"/> <wire from="(350,1390)" to="(350,1470)"/> <wire from="(350,590)" to="(350,670)"/> <wire from="(350,270)" to="(350,350)"/> <wire from="(350,750)" to="(350,830)"/> <wire from="(350,430)" to="(350,510)"/> <wire from="(630,870)" to="(630,950)"/> <wire from="(630,1350)" to="(630,1430)"/> <wire from="(630,1670)" to="(630,1750)"/> <wire from="(630,1510)" to="(630,1590)"/> <wire from="(630,1190)" to="(630,1270)"/> <wire from="(420,1140)" to="(420,1230)"/> <wire from="(1730,210)" to="(1800,210)"/> <wire from="(700,1550)" to="(700,1590)"/> <wire from="(110,650)" to="(200,650)"/> <wire from="(680,1810)" to="(1020,1810)"/> <wire from="(220,810)" to="(220,980)"/> <wire from="(1450,250)" to="(1520,250)"/> <wire from="(1590,770)" to="(1730,770)"/> <wire from="(1450,410)" to="(1520,410)"/> <wire from="(1680,830)" to="(1680,1010)"/> <wire from="(630,1830)" to="(630,1930)"/> <wire from="(610,1650)" to="(680,1650)"/> <wire from="(610,1810)" to="(680,1810)"/> <wire from="(610,530)" to="(680,530)"/> <wire from="(610,850)" to="(680,850)"/> <wire from="(420,950)" to="(420,1010)"/> <wire from="(330,570)" to="(400,570)"/> <wire from="(1540,630)" to="(1540,670)"/> <wire from="(330,730)" to="(400,730)"/> <wire from="(330,1690)" to="(400,1690)"/> <wire from="(330,410)" to="(400,410)"/> <wire from="(330,250)" to="(400,250)"/> <wire from="(1040,1540)" to="(1040,1560)"/> <wire from="(1820,750)" to="(1820,830)"/> <wire from="(1820,270)" to="(1820,350)"/> <wire from="(1730,850)" to="(1900,850)"/> <wire from="(540,890)" to="(960,890)"/> <wire from="(1750,870)" to="(1750,1010)"/> <wire from="(420,1270)" to="(420,1350)"/> <wire from="(770,1140)" to="(770,1230)"/> <wire from="(420,1430)" to="(420,1510)"/> <wire from="(700,270)" to="(700,350)"/> <wire from="(700,1390)" to="(700,1470)"/> <wire from="(260,1770)" to="(870,1770)"/> <wire from="(110,170)" to="(400,170)"/> <wire from="(1800,730)" to="(1870,730)"/> <wire from="(1800,570)" to="(1870,570)"/> <wire from="(1800,250)" to="(1870,250)"/> <wire from="(1820,590)" to="(1820,710)"/> <wire from="(110,1410)" to="(110,1450)"/> <wire from="(110,1730)" to="(110,1770)"/> <wire from="(110,1250)" to="(110,1290)"/> <wire from="(1660,330)" to="(1800,330)"/> <wire from="(1660,810)" to="(1800,810)"/> <wire from="(260,850)" to="(400,850)"/> <wire from="(770,950)" to="(770,1010)"/> <wire from="(540,1450)" to="(680,1450)"/> <wire from="(400,1570)" to="(470,1570)"/> <wire from="(540,170)" to="(680,170)"/> <wire from="(400,1730)" to="(470,1730)"/> <wire from="(540,1290)" to="(680,1290)"/> <wire from="(420,1590)" to="(420,1710)"/> <wire from="(420,1750)" to="(420,1870)"/> <wire from="(820,1690)" to="(870,1690)"/> <wire from="(820,1210)" to="(870,1210)"/> <wire from="(820,1850)" to="(870,1850)"/> <wire from="(150,1210)" to="(400,1210)"/> <wire from="(1610,350)" to="(1610,430)"/> <wire from="(150,770)" to="(260,770)"/> <wire from="(490,510)" to="(490,590)"/> <wire from="(490,350)" to="(490,430)"/> <wire from="(490,1470)" to="(490,1550)"/> <wire from="(490,1310)" to="(490,1390)"/> <wire from="(770,470)" to="(770,550)"/> <wire from="(770,310)" to="(770,390)"/> <wire from="(770,630)" to="(770,710)"/> <wire from="(770,790)" to="(770,870)"/> <wire from="(770,1430)" to="(770,1510)"/> <wire from="(770,1270)" to="(770,1350)"/> <wire from="(280,140)" to="(280,230)"/> <wire from="(1590,330)" to="(1660,330)"/> <wire from="(80,650)" to="(110,650)"/> <wire from="(80,330)" to="(110,330)"/> <wire from="(80,810)" to="(110,810)"/> <wire from="(80,170)" to="(110,170)"/> <wire from="(80,490)" to="(110,490)"/> <wire from="(1190,140)" to="(1190,710)"/> <wire from="(750,690)" to="(1100,690)"/> <wire from="(280,1550)" to="(280,1590)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(330,210)" to="(610,210)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(110,530)" to="(130,530)"/> <wire from="(330,1810)" to="(610,1810)"/> <wire from="(110,690)" to="(130,690)"/> <wire from="(1730,370)" to="(1870,370)"/> <wire from="(110,850)" to="(130,850)"/> <wire from="(1680,230)" to="(1680,270)"/> <wire from="(330,1370)" to="(470,1370)"/> <wire from="(1680,550)" to="(1680,590)"/> <wire from="(330,1530)" to="(470,1530)"/> <wire from="(750,1250)" to="(820,1250)"/> <wire from="(750,930)" to="(820,930)"/> <wire from="(1030,650)" to="(1380,650)"/> <wire from="(770,1750)" to="(770,1870)"/> <wire from="(770,1590)" to="(770,1710)"/> <wire from="(750,1730)" to="(820,1730)"/> <wire from="(750,1410)" to="(820,1410)"/> <wire from="(750,1570)" to="(820,1570)"/> <wire from="(280,1870)" to="(280,1930)"/> <wire from="(470,1450)" to="(540,1450)"/> <wire from="(610,1330)" to="(750,1330)"/> <wire from="(610,370)" to="(750,370)"/> <wire from="(470,1290)" to="(540,1290)"/> <wire from="(610,1490)" to="(750,1490)"/> <wire from="(1750,140)" to="(1750,230)"/> <wire from="(940,1410)" to="(940,1480)"/> <wire from="(220,810)" to="(330,810)"/> <wire from="(630,140)" to="(630,230)"/> <wire from="(280,1390)" to="(280,1470)"/> <wire from="(280,270)" to="(280,350)"/> <wire from="(280,1710)" to="(280,1790)"/> <wire from="(560,1670)" to="(560,1750)"/> <wire from="(840,190)" to="(840,270)"/> <wire from="(1660,210)" to="(1730,210)"/> <wire from="(910,230)" to="(910,270)"/> <wire from="(110,1810)" to="(330,1810)"/> <wire from="(820,1330)" to="(980,1330)"/> <wire from="(110,570)" to="(190,570)"/> <wire from="(540,1650)" to="(610,1650)"/> <wire from="(820,330)" to="(890,330)"/> <wire from="(280,430)" to="(280,550)"/> <wire from="(980,140)" to="(980,190)"/> <wire from="(280,590)" to="(280,710)"/> <wire from="(680,250)" to="(820,250)"/> <wire from="(260,1370)" to="(330,1370)"/> <wire from="(1470,790)" to="(1470,830)"/> <wire from="(260,1690)" to="(330,1690)"/> <wire from="(260,410)" to="(330,410)"/> <wire from="(260,1530)" to="(330,1530)"/> <wire from="(260,570)" to="(330,570)"/> <wire from="(260,250)" to="(330,250)"/> <wire from="(1870,810)" to="(1900,810)"/> <wire from="(610,410)" to="(1240,410)"/> <wire from="(1470,630)" to="(1470,710)"/> <wire from="(1800,450)" to="(1900,450)"/> <wire from="(900,1500)" to="(900,1570)"/> <wire from="(680,1290)" to="(870,1290)"/> <wire from="(680,1450)" to="(870,1450)"/> <wire from="(1750,430)" to="(1750,510)"/> <wire from="(1750,590)" to="(1750,670)"/> <wire from="(750,610)" to="(1450,610)"/> <wire from="(350,1750)" to="(350,1830)"/> <wire from="(1050,750)" to="(1050,950)"/> <wire from="(630,590)" to="(630,670)"/> <wire from="(1730,570)" to="(1800,570)"/> <wire from="(1730,250)" to="(1800,250)"/> <wire from="(1750,270)" to="(1750,390)"/> <wire from="(1030,730)" to="(1170,730)"/> <wire from="(1330,140)" to="(1330,190)"/> <wire from="(980,910)" to="(980,950)"/> <wire from="(1450,610)" to="(1520,610)"/> <wire from="(350,1140)" to="(350,1310)"/> <wire from="(1170,730)" to="(1520,730)"/> <wire from="(630,270)" to="(630,390)"/> <wire from="(630,430)" to="(630,550)"/> <wire from="(610,250)" to="(680,250)"/> <wire from="(700,950)" to="(700,1010)"/> <wire from="(1260,390)" to="(1260,430)"/> <wire from="(820,1570)" to="(900,1570)"/> <wire from="(350,1590)" to="(350,1710)"/> <wire from="(330,1570)" to="(400,1570)"/> <wire from="(330,1730)" to="(400,1730)"/> <wire from="(1540,670)" to="(1540,750)"/> <wire from="(1820,470)" to="(1820,550)"/> <wire from="(210,730)" to="(330,730)"/> <wire from="(1120,790)" to="(1120,1010)"/> <wire from="(420,190)" to="(420,270)"/> <wire from="(420,510)" to="(420,590)"/> <wire from="(420,670)" to="(420,750)"/> <wire from="(700,790)" to="(700,870)"/> <wire from="(700,470)" to="(700,550)"/> <wire from="(700,630)" to="(700,710)"/> <wire from="(700,1750)" to="(700,1830)"/> <wire from="(700,1590)" to="(700,1670)"/> <wire from="(110,1330)" to="(400,1330)"/> <wire from="(110,1490)" to="(400,1490)"/> <wire from="(700,1140)" to="(700,1310)"/> <wire from="(400,1210)" to="(750,1210)"/> <wire from="(400,1690)" to="(750,1690)"/> <wire from="(330,810)" to="(1450,810)"/> <wire from="(400,1250)" to="(610,1250)"/> <wire from="(400,930)" to="(610,930)"/> <wire from="(400,1410)" to="(610,1410)"/> <wire from="(110,330)" to="(110,370)"/> <wire from="(110,650)" to="(110,690)"/> <wire from="(110,490)" to="(110,530)"/> <wire from="(110,170)" to="(110,210)"/> <wire from="(110,810)" to="(110,850)"/> <wire from="(110,250)" to="(260,250)"/> <wire from="(1120,140)" to="(1120,710)"/> <wire from="(1050,950)" to="(1050,1010)"/> <wire from="(960,170)" to="(1310,170)"/> <wire from="(1660,530)" to="(1800,530)"/> <wire from="(1540,510)" to="(1540,630)"/> <wire from="(1610,550)" to="(1610,590)"/> <wire from="(680,770)" to="(750,770)"/> <wire from="(1610,230)" to="(1610,270)"/> <wire from="(680,450)" to="(750,450)"/> <wire from="(260,1850)" to="(400,1850)"/> <wire from="(680,610)" to="(750,610)"/> <wire from="(680,930)" to="(750,930)"/> <wire from="(680,1730)" to="(750,1730)"/> <wire from="(680,1570)" to="(750,1570)"/> <wire from="(820,170)" to="(960,170)"/> <wire from="(470,490)" to="(1240,490)"/> <wire from="(560,140)" to="(560,190)"/> <wire from="(400,490)" to="(470,490)"/> <wire from="(1240,490)" to="(1450,490)"/> <wire from="(940,1510)" to="(940,1650)"/> <wire from="(1680,140)" to="(1680,230)"/> <wire from="(1610,710)" to="(1610,790)"/> <wire from="(150,1290)" to="(260,1290)"/> <wire from="(150,1770)" to="(260,1770)"/> <wire from="(150,1450)" to="(260,1450)"/> <wire from="(610,650)" to="(1030,650)"/> <wire from="(490,1670)" to="(490,1750)"/> <wire from="(750,370)" to="(1240,370)"/> <wire from="(890,250)" to="(1450,250)"/> <wire from="(80,1810)" to="(110,1810)"/> <wire from="(80,1650)" to="(110,1650)"/> <wire from="(560,1550)" to="(560,1590)"/> <wire from="(610,210)" to="(890,210)"/> <wire from="(1450,770)" to="(1590,770)"/> <wire from="(1590,210)" to="(1660,210)"/> <wire from="(1590,530)" to="(1660,530)"/> <wire from="(80,1170)" to="(110,1170)"/> <wire from="(80,1490)" to="(110,1490)"/> <wire from="(80,1330)" to="(110,1330)"/> <wire from="(1540,830)" to="(1540,1010)"/> <wire from="(470,330)" to="(680,330)"/> <wire from="(1260,510)" to="(1260,950)"/> <wire from="(1730,410)" to="(1870,410)"/> <wire from="(110,1530)" to="(130,1530)"/> <wire from="(110,1210)" to="(130,1210)"/> <wire from="(110,1850)" to="(130,1850)"/> <wire from="(110,1690)" to="(130,1690)"/> <wire from="(110,1370)" to="(130,1370)"/> <wire from="(1260,230)" to="(1260,390)"/> <wire from="(560,1870)" to="(560,1930)"/> <wire from="(820,1490)" to="(1020,1490)"/> <wire from="(630,1140)" to="(630,1190)"/> <wire from="(190,570)" to="(260,570)"/> <wire from="(110,490)" to="(180,490)"/> <wire from="(470,1650)" to="(540,1650)"/> <wire from="(200,650)" to="(330,650)"/> <comp lib="0" loc="(1050,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,750)" name="Ground"/> <comp lib="0" loc="(1540,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,950)" name="Ground"/> <comp lib="0" loc="(80,1650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="0" loc="(560,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,550)" name="Ground"/> <comp lib="0" loc="(1570,270)" name="Ground"/> <comp lib="0" loc="(840,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(840,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,750)" name="Ground"/> <comp lib="0" loc="(590,390)" name="Ground"/> <comp lib="0" loc="(420,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(730,950)" name="Ground"/> <comp lib="0" loc="(1750,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1310)" name="Ground"/> <comp lib="0" loc="(380,1710)" name="Ground"/> <comp lib="0" loc="(660,870)" name="Ground"/> <comp lib="0" loc="(1500,510)" name="Ground"/> <comp lib="6" loc="(1331,1063)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(80,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="0" loc="(700,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1823,1063)" name="Text"> <a name="text" val="308"/> </comp> <comp lib="0" loc="(1710,430)" name="Ground"/> <comp lib="0" loc="(420,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,510)" name="Ground"/> <comp lib="0" loc="(240,1590)" name="Ground"/> <comp lib="0" loc="(1190,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1750,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(240,1310)" name="Ground"/> <comp lib="0" loc="(490,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(560,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1610,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(770,1982)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H1"/> </comp> <comp lib="0" loc="(280,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,390)" name="Ground"/> <comp lib="0" loc="(730,710)" name="Ground"/> <comp lib="0" loc="(380,1270)" name="Ground"/> <comp lib="0" loc="(730,1590)" name="Ground"/> <comp lib="0" loc="(1890,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1820,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,790)" name="Ground"/> <comp lib="0" loc="(1540,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,230)" name="Ground"/> <comp lib="0" loc="(560,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1330,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,870)" name="Ground"/> <comp lib="0" loc="(1640,830)" name="Ground"/> <comp lib="0" loc="(310,350)" name="Ground"/> <comp lib="0" loc="(280,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H7"/> </comp> <comp lib="0" loc="(1890,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(836,1063)" name="Text"> <a name="text" val="0-63"/> </comp> <comp lib="0" loc="(1010,670)" name="Ground"/> <comp lib="0" loc="(80,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="0" loc="(1500,390)" name="Ground"/> <comp lib="0" loc="(840,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,230)" name="Ground"/> <comp lib="0" loc="(730,390)" name="Ground"/> <comp lib="0" loc="(630,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1390)" name="Ground"/> <comp lib="0" loc="(450,1470)" name="Ground"/> <comp lib="0" loc="(420,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1190,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(150,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1820,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1780,550)" name="Ground"/> <comp lib="0" loc="(1640,350)" name="Ground"/> <comp lib="0" loc="(770,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H6"/> </comp> <comp lib="0" loc="(1640,270)" name="Ground"/> <comp lib="1" loc="(150,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1260,1062)" name="Text"> <a name="text" val="320-355"/> </comp> <comp lib="0" loc="(630,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,350)" name="Ground"/> <comp lib="0" loc="(1890,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,430)" name="Ground"/> <comp lib="0" loc="(280,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(980,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(350,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,710)" name="Ground"/> <comp lib="0" loc="(520,1390)" name="Ground"/> <comp lib="0" loc="(310,830)" name="Ground"/> <comp lib="0" loc="(1290,190)" name="Ground"/> <comp lib="0" loc="(420,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,1510)" name="Ground"/> <comp lib="0" loc="(700,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1230)" name="Ground"/> <comp lib="0" loc="(450,510)" name="Ground"/> <comp lib="6" loc="(1610,1063)" name="Text"> <a name="text" val="279"/> </comp> <comp lib="0" loc="(910,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,310)" name="Ground"/> <comp lib="0" loc="(350,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,470)" name="Ground"/> <comp lib="0" loc="(1540,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1050,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(490,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,750)" name="Ground"/> <comp lib="0" loc="(590,1830)" name="Ground"/> <comp lib="0" loc="(940,190)" name="Ground"/> <comp lib="0" loc="(1430,270)" name="Ground"/> <comp lib="6" loc="(276,1981)" name="Text"> <a name="text" val="247"/> </comp> <comp lib="0" loc="(380,1750)" name="Ground"/> <comp lib="0" loc="(1010,750)" name="Ground"/> <comp lib="0" loc="(1890,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,390)" name="Ground"/> <comp lib="0" loc="(660,1470)" name="Ground"/> <comp lib="0" loc="(420,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1290,950)" name="Ground"/> <comp lib="0" loc="(1850,270)" name="Ground"/> <comp lib="0" loc="(840,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1681,1064)" name="Text"> <a name="text" val="304"/> </comp> <comp lib="0" loc="(660,1550)" name="Ground"/> <comp lib="0" loc="(1850,550)" name="Ground"/> <comp lib="0" loc="(1430,710)" name="Ground"/> <comp lib="0" loc="(1120,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1820,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(489,1981)" name="Text"> <a name="text" val="241"/> </comp> <comp lib="0" loc="(350,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,230)" name="Ground"/> <comp lib="0" loc="(350,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,430)" name="Ground"/> <comp lib="0" loc="(730,870)" name="Ground"/> <comp lib="1" loc="(150,1770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1850,430)" name="Ground"/> <comp lib="0" loc="(80,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H2"/> </comp> <comp lib="0" loc="(240,1790)" name="Ground"/> <comp lib="0" loc="(350,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1870)" name="Ground"/> <comp lib="0" loc="(840,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,790)" name="Ground"/> <comp lib="0" loc="(1640,230)" name="Ground"/> <comp lib="0" loc="(280,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1350)" name="Ground"/> <comp lib="0" loc="(630,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1310)" name="Ground"/> <comp lib="6" loc="(629,1061)" name="Text"> <a name="text" val="339"/> </comp> <comp lib="0" loc="(1260,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(770,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,950)" name="Ground"/> <comp lib="0" loc="(630,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,750)" name="Ground"/> <comp lib="0" loc="(310,1710)" name="Ground"/> <comp lib="0" loc="(770,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1470)" name="Ground"/> <comp lib="0" loc="(520,1550)" name="Ground"/> <comp lib="0" loc="(770,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,270)" name="Ground"/> <comp lib="0" loc="(590,1350)" name="Ground"/> <comp lib="0" loc="(630,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1150,710)" name="Ground"/> <comp lib="0" loc="(1610,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,430)" name="Ground"/> <comp lib="0" loc="(450,590)" name="Ground"/> <comp lib="0" loc="(1750,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,790)" name="Ground"/> <comp lib="0" loc="(1570,350)" name="Ground"/> <comp lib="0" loc="(630,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="0" loc="(450,1310)" name="Ground"/> <comp lib="0" loc="(420,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,950)" name="Ground"/> <comp lib="0" loc="(1220,510)" name="Ground"/> <comp lib="0" loc="(240,1870)" name="Ground"/> <comp lib="0" loc="(1260,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,710)" name="Ground"/> <comp lib="0" loc="(1710,230)" name="Ground"/> <comp lib="0" loc="(1430,830)" name="Ground"/> <comp lib="0" loc="(800,1870)" name="Ground"/> <comp lib="0" loc="(730,1750)" name="Ground"/> <comp lib="0" loc="(1470,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VB"/> </comp> <comp lib="0" loc="(840,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,870)" name="Ground"/> <comp lib="0" loc="(1820,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,190)" name="Ground"/> <comp lib="0" loc="(380,670)" name="Ground"/> <comp lib="1" loc="(150,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(450,430)" name="Ground"/> <comp lib="0" loc="(730,1350)" name="Ground"/> <comp lib="0" loc="(1080,710)" name="Ground"/> <comp lib="0" loc="(80,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="0" loc="(1540,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,390)" name="Ground"/> <comp lib="0" loc="(590,1670)" name="Ground"/> <comp lib="0" loc="(1500,670)" name="Ground"/> <comp lib="1" loc="(150,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1540,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(520,1590)" name="Ground"/> <comp lib="0" loc="(310,1830)" name="Ground"/> <comp lib="6" loc="(557,1061)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(590,1270)" name="Ground"/> <comp lib="0" loc="(310,1310)" name="Ground"/> <comp lib="0" loc="(660,1590)" name="Ground"/> <comp lib="0" loc="(1780,590)" name="Ground"/> <comp lib="0" loc="(770,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1710)" name="Ground"/> <comp lib="0" loc="(380,590)" name="Ground"/> <comp lib="0" loc="(730,1870)" name="Ground"/> <comp lib="0" loc="(310,270)" name="Ground"/> <comp lib="0" loc="(630,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1510)" name="Ground"/> <comp lib="0" loc="(80,1410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp lib="6" loc="(699,1983)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(240,230)" name="Ground"/> <comp lib="0" loc="(660,630)" name="Ground"/> <comp lib="0" loc="(280,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(631,1982)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="1" loc="(150,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1330,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,230)" name="Ground"/> <comp lib="0" loc="(310,1390)" name="Ground"/> <comp lib="0" loc="(1400,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1470,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,790)" name="Ground"/> <comp lib="0" loc="(310,1550)" name="Ground"/> <comp lib="0" loc="(1430,230)" name="Ground"/> <comp lib="0" loc="(1260,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1670)" name="Ground"/> <comp lib="0" loc="(1610,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,950)" name="Ground"/> <comp lib="0" loc="(160,1000)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1750,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1510)" name="Ground"/> <comp lib="0" loc="(980,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1590)" name="Ground"/> <comp lib="0" loc="(1050,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,590)" name="Ground"/> <comp lib="0" loc="(1220,950)" name="Ground"/> <comp lib="6" loc="(839,1983)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="0" loc="(1570,550)" name="Ground"/> <comp lib="0" loc="(590,1190)" name="Ground"/> <comp lib="0" loc="(1330,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,710)" name="Ground"/> <comp lib="0" loc="(1820,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1890,1063)" name="Text"> <a name="text" val="340"/> </comp> <comp lib="0" loc="(380,1230)" name="Ground"/> <comp lib="1" loc="(150,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1400,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1190,1062)" name="Text"> <a name="text" val="4/5"/> </comp> <comp lib="0" loc="(800,350)" name="Ground"/> <comp lib="1" loc="(150,1530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(489,1062)" name="Text"> <a name="text" val="0-7, 256-263"/> </comp> <comp lib="1" loc="(150,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1640,550)" name="Ground"/> <comp lib="0" loc="(420,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1750,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,790)" name="Ground"/> <comp lib="0" loc="(660,1670)" name="Ground"/> <comp lib="0" loc="(1470,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(980,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1400,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1470,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,590)" name="Ground"/> <comp lib="0" loc="(910,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0"/> </comp> <comp lib="0" loc="(1570,870)" name="Ground"/> <comp lib="0" loc="(1190,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1430)" name="Ground"/> <comp lib="0" loc="(560,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,430)" name="Ground"/> <comp lib="0" loc="(630,1190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1470)" name="Ground"/> <comp lib="1" loc="(150,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1610,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1751,1065)" name="Text"> <a name="text" val="323"/> </comp> <comp lib="0" loc="(840,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,270)" name="Ground"/> <comp lib="0" loc="(420,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,270)" name="Ground"/> <comp lib="1" loc="(150,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(350,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(450,1390)" name="Ground"/> <comp lib="0" loc="(980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,1730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="0" loc="(420,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,430)" name="Ground"/> <comp lib="0" loc="(420,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H3"/> </comp> <comp lib="0" loc="(770,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1539,1063)" name="Text"> <a name="text" val="328"/> </comp> <comp lib="0" loc="(380,1870)" name="Ground"/> <comp lib="0" loc="(280,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,350)" name="Ground"/> <comp lib="0" loc="(800,1430)" name="Ground"/> <comp lib="0" loc="(490,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1590)" name="Ground"/> <comp lib="6" loc="(1051,1064)" name="Text"> <a name="text" val="0/1"/> </comp> <comp lib="0" loc="(350,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,630)" name="Ground"/> <comp lib="0" loc="(1850,830)" name="Ground"/> <comp lib="0" loc="(1750,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,230)" name="Ground"/> <comp lib="0" loc="(280,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(310,670)" name="Ground"/> <comp lib="0" loc="(520,1470)" name="Ground"/> <comp lib="0" loc="(240,870)" name="Ground"/> <comp lib="0" loc="(1640,670)" name="Ground"/> <comp lib="0" loc="(1820,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(770,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1890,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,790)" name="Ground"/> <comp lib="0" loc="(1430,510)" name="Ground"/> <comp lib="0" loc="(1850,590)" name="Ground"/> <comp lib="0" loc="(1610,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1190,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1750)" name="Ground"/> <comp lib="0" loc="(700,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1680,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,790)" name="Ground"/> <comp lib="0" loc="(660,470)" name="Ground"/> <comp lib="0" loc="(1610,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,350)" name="Ground"/> <comp lib="0" loc="(1470,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,230)" name="Ground"/> <comp lib="0" loc="(800,270)" name="Ground"/> <comp lib="0" loc="(280,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,750)" name="Ground"/> <comp lib="0" loc="(80,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H5"/> </comp> <comp lib="0" loc="(520,190)" name="Ground"/> <comp lib="0" loc="(700,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,230)" name="Ground"/> <comp lib="0" loc="(560,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(560,1981)" name="Text"> <a name="text" val="241"/> </comp> <comp lib="0" loc="(1680,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,830)" name="Ground"/> <comp lib="0" loc="(380,1430)" name="Ground"/> <comp lib="6" loc="(909,1065)" name="Text"> <a name="text" val="256-319"/> </comp> <comp lib="0" loc="(840,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(700,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H4"/> </comp> <comp lib="0" loc="(1820,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,270)" name="Ground"/> <comp lib="0" loc="(350,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1870)" name="Ground"/> <comp lib="0" loc="(730,1270)" name="Ground"/> <comp lib="0" loc="(80,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(380,1510)" name="Ground"/> <comp lib="0" loc="(240,590)" name="Ground"/> <comp lib="0" loc="(1470,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(450,1670)" name="Ground"/> <comp lib="0" loc="(700,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,670)" name="Ground"/> <comp lib="0" loc="(1640,750)" name="Ground"/> <comp lib="0" loc="(590,670)" name="Ground"/> <comp lib="0" loc="(1680,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(490,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(419,1981)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="0" loc="(350,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,270)" name="Ground"/> <comp lib="0" loc="(280,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(420,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1710)" name="Ground"/> <comp lib="0" loc="(1610,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(770,1063)" name="Text"> <a name="text" val="255"/> </comp> <comp lib="0" loc="(130,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,510)" name="Ground"/> <comp lib="6" loc="(348,1062)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="6" loc="(348,1982)" name="Text"> <a name="text" val="244"/> </comp> <comp lib="0" loc="(1500,430)" name="Ground"/> <comp lib="0" loc="(630,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1150,750)" name="Ground"/> <comp lib="0" loc="(870,270)" name="Ground"/> <comp lib="0" loc="(1680,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1070,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="VPOS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,550)" name="Ground"/> <comp lib="0" loc="(380,190)" name="Ground"/> <comp lib="0" loc="(450,270)" name="Ground"/> <comp lib="0" loc="(80,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V8"/> </comp> <comp lib="1" loc="(150,1690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1120,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(630,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1040,1540)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(280,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,1350)" name="Ground"/> <comp lib="0" loc="(630,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1050,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,350)" name="Ground"/> <comp lib="0" loc="(590,550)" name="Ground"/> <comp lib="0" loc="(80,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H8"/> </comp> <comp lib="0" loc="(1010,950)" name="Ground"/> <comp lib="0" loc="(1890,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1050,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,190)" name="Ground"/> <comp lib="0" loc="(80,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="0" loc="(560,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,830)" name="Ground"/> <comp lib="0" loc="(420,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(800,1710)" name="Ground"/> <comp lib="0" loc="(590,1750)" name="Ground"/> <comp lib="0" loc="(1750,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1330,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1890,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(310,230)" name="Ground"/> <comp lib="0" loc="(380,430)" name="Ground"/> <comp lib="0" loc="(730,550)" name="Ground"/> <comp lib="0" loc="(280,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,910)" name="Ground"/> <comp lib="0" loc="(980,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1500,630)" name="Ground"/> <comp lib="0" loc="(350,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1550)" name="Ground"/> <comp lib="0" loc="(590,950)" name="Ground"/> <comp lib="0" loc="(1710,670)" name="Ground"/> <comp lib="0" loc="(660,350)" name="Ground"/> <comp lib="0" loc="(490,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,270)" name="Ground"/> <comp lib="0" loc="(630,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,710)" name="Ground"/> <comp lib="0" loc="(560,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,710)" name="Ground"/> <comp lib="0" loc="(350,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1610,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,950)" name="Ground"/> <comp lib="0" loc="(700,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(1399,1063)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="0" loc="(490,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1270)" name="Ground"/> <comp lib="0" loc="(280,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,430)" name="Ground"/> <comp lib="6" loc="(419,1061)" name="Text"> <a name="text" val="65"/> </comp> <comp lib="0" loc="(700,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,590)" name="Ground"/> <comp lib="0" loc="(1710,870)" name="Ground"/> <comp lib="0" loc="(800,1590)" name="Ground"/> <comp lib="0" loc="(800,1750)" name="Ground"/> <comp lib="6" loc="(980,1063)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(450,1750)" name="Ground"/> <comp lib="0" loc="(1610,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,790)" name="Ground"/> <comp lib="0" loc="(1640,590)" name="Ground"/> <comp lib="0" loc="(1710,270)" name="Ground"/> <comp lib="0" loc="(350,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,630)" name="Ground"/> <comp lib="0" loc="(280,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,510)" name="Ground"/> <comp lib="0" loc="(1430,790)" name="Ground"/> <comp lib="1" loc="(150,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1750,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1610,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1750)" name="Ground"/> <comp lib="6" loc="(279,1060)" name="Text"> <a name="text" val="279"/> </comp> <comp lib="0" loc="(560,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(1469,1063)" name="Text"> <a name="text" val="270"/> </comp> <comp lib="0" loc="(1260,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,350)" name="Ground"/> <comp lib="0" loc="(660,1390)" name="Ground"/> <comp lib="0" loc="(1780,470)" name="Ground"/> <comp lib="0" loc="(490,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,1230)" name="Ground"/> <comp lib="1" loc="(150,1850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(350,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1890,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1550)" name="Ground"/> <comp lib="0" loc="(590,1430)" name="Ground"/> <comp lib="0" loc="(280,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1590)" name="Ground"/> <comp lib="0" loc="(910,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1470,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,590)" name="Ground"/> <comp lib="0" loc="(730,470)" name="Ground"/> <comp lib="0" loc="(560,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,910)" name="Ground"/> <comp lib="0" loc="(1610,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1121,1063)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="0" loc="(1710,390)" name="Ground"/> <comp lib="0" loc="(770,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1830)" name="Ground"/> <comp lib="0" loc="(1120,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1590)" name="Ground"/> <comp lib="0" loc="(770,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1750)" name="Ground"/> <comp lib="6" loc="(699,1061)" name="Text"> <a name="text" val="63"/> </comp> <comp lib="0" loc="(840,270)" name="Transistor"> <a name="type" val="n"/> </comp> </circuit> <circuit name="HV_SELECT_PAL"> <a name="circuit" val="HV_SELECT_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M226,51 Q230,61 234,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b2ff73" height="250" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="370" y="68">V8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="395" y="283">VPLA OUTPUTS</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="255" y="169">H/V SELECT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="284">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="174">V POS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="189" y="68">H0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="282">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="69">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="282">HPLA OTPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="264">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="68">H8</text> <circ-port height="8" pin="80,170" width="8" x="106" y="46"/> <circ-port height="8" pin="80,250" width="8" x="116" y="46"/> <circ-port height="8" pin="80,330" width="8" x="126" y="46"/> <circ-port height="8" pin="80,410" width="8" x="136" y="46"/> <circ-port height="8" pin="80,490" width="8" x="146" y="46"/> <circ-port height="8" pin="80,570" width="8" x="156" y="46"/> <circ-port height="8" pin="80,650" width="8" x="166" y="46"/> <circ-port height="8" pin="80,730" width="8" x="176" y="46"/> <circ-port height="8" pin="80,810" width="8" x="186" y="46"/> <circ-port height="8" pin="80,890" width="8" x="46" y="276"/> <circ-port height="8" pin="80,930" width="8" x="46" y="256"/> <circ-port height="8" pin="140,1170" width="8" x="366" y="46"/> <circ-port height="8" pin="140,1250" width="8" x="376" y="46"/> <circ-port height="8" pin="140,1330" width="8" x="386" y="46"/> <circ-port height="8" pin="140,1410" width="8" x="396" y="46"/> <circ-port height="8" pin="140,1490" width="8" x="406" y="46"/> <circ-port height="8" pin="140,1570" width="8" x="416" y="46"/> <circ-port height="8" pin="140,1650" width="8" x="426" y="46"/> <circ-port height="8" pin="140,1730" width="8" x="436" y="46"/> <circ-port height="8" pin="140,1810" width="8" x="446" y="46"/> <circ-port height="10" pin="1060,1560" width="10" x="475" y="165"/> <circ-port height="10" pin="130,1010" width="10" x="325" y="295"/> <circ-port height="10" pin="280,1020" width="10" x="75" y="295"/> <circ-port height="10" pin="280,1930" width="10" x="345" y="295"/> <circ-port height="10" pin="350,1020" width="10" x="85" y="295"/> <circ-port height="10" pin="350,1930" width="10" x="355" y="295"/> <circ-port height="10" pin="420,1020" width="10" x="95" y="295"/> <circ-port height="10" pin="420,1930" width="10" x="365" y="295"/> <circ-port height="10" pin="490,1020" width="10" x="105" y="295"/> <circ-port height="10" pin="490,1930" width="10" x="375" y="295"/> <circ-port height="10" pin="560,1020" width="10" x="115" y="295"/> <circ-port height="10" pin="560,1930" width="10" x="385" y="295"/> <circ-port height="10" pin="630,1020" width="10" x="125" y="295"/> <circ-port height="10" pin="630,1930" width="10" x="395" y="295"/> <circ-port height="10" pin="700,1020" width="10" x="135" y="295"/> <circ-port height="10" pin="700,1930" width="10" x="405" y="295"/> <circ-port height="10" pin="770,1020" width="10" x="145" y="295"/> <circ-port height="10" pin="770,1930" width="10" x="415" y="295"/> <circ-port height="10" pin="840,1020" width="10" x="155" y="295"/> <circ-port height="10" pin="840,1930" width="10" x="425" y="295"/> <circ-port height="10" pin="910,1020" width="10" x="165" y="295"/> <circ-port height="10" pin="910,1930" width="10" x="435" y="295"/> <circ-port height="10" pin="980,1020" width="10" x="175" y="295"/> <circ-port height="10" pin="1050,1020" width="10" x="185" y="295"/> <circ-port height="10" pin="1120,1020" width="10" x="195" y="295"/> <circ-port height="10" pin="1190,1020" width="10" x="205" y="295"/> <circ-port height="10" pin="1260,1020" width="10" x="215" y="295"/> <circ-port height="10" pin="1330,1020" width="10" x="225" y="295"/> <circ-port height="10" pin="1400,1020" width="10" x="235" y="295"/> <circ-port height="10" pin="1470,1020" width="10" x="245" y="295"/> <circ-port height="10" pin="1540,1020" width="10" x="255" y="295"/> <circ-port height="10" pin="1610,1020" width="10" x="265" y="295"/> <circ-port height="10" pin="1680,1020" width="10" x="275" y="295"/> <circ-port height="10" pin="1750,1020" width="10" x="285" y="295"/> <circ-port height="10" pin="1820,1020" width="10" x="295" y="295"/> <circ-port height="10" pin="1890,1020" width="10" x="305" y="295"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(1680,270)" to="(1680,350)"/> <wire from="(1610,870)" to="(1610,1020)"/> <wire from="(280,1270)" to="(280,1350)"/> <wire from="(280,1750)" to="(280,1830)"/> <wire from="(280,1590)" to="(280,1670)"/> <wire from="(910,140)" to="(910,230)"/> <wire from="(560,1390)" to="(560,1470)"/> <wire from="(980,190)" to="(980,910)"/> <wire from="(820,1770)" to="(930,1770)"/> <wire from="(820,1450)" to="(930,1450)"/> <wire from="(1660,250)" to="(1730,250)"/> <wire from="(1520,810)" to="(1660,810)"/> <wire from="(1520,490)" to="(1660,490)"/> <wire from="(1890,830)" to="(1890,1020)"/> <wire from="(910,1230)" to="(910,1270)"/> <wire from="(260,530)" to="(610,530)"/> <wire from="(560,910)" to="(560,1020)"/> <wire from="(260,1530)" to="(470,1530)"/> <wire from="(910,1870)" to="(910,1930)"/> <wire from="(400,170)" to="(540,170)"/> <wire from="(840,1350)" to="(840,1470)"/> <wire from="(1660,690)" to="(1870,690)"/> <wire from="(820,1330)" to="(890,1330)"/> <wire from="(170,410)" to="(170,980)"/> <wire from="(1190,710)" to="(1190,750)"/> <wire from="(280,1430)" to="(280,1550)"/> <wire from="(1870,370)" to="(1900,370)"/> <wire from="(260,1730)" to="(330,1730)"/> <wire from="(1870,690)" to="(1900,690)"/> <wire from="(260,1410)" to="(330,1410)"/> <wire from="(1870,210)" to="(1900,210)"/> <wire from="(1870,530)" to="(1900,530)"/> <wire from="(260,1250)" to="(330,1250)"/> <wire from="(1470,510)" to="(1470,590)"/> <wire from="(1470,350)" to="(1470,430)"/> <wire from="(1470,670)" to="(1470,750)"/> <wire from="(1800,330)" to="(1900,330)"/> <wire from="(1800,650)" to="(1900,650)"/> <wire from="(1260,140)" to="(1260,230)"/> <wire from="(630,950)" to="(630,1020)"/> <wire from="(350,670)" to="(350,750)"/> <wire from="(350,350)" to="(350,430)"/> <wire from="(910,350)" to="(910,950)"/> <wire from="(350,510)" to="(350,590)"/> <wire from="(350,1630)" to="(350,1710)"/> <wire from="(630,790)" to="(630,870)"/> <wire from="(630,1590)" to="(630,1670)"/> <wire from="(630,1270)" to="(630,1350)"/> <wire from="(630,1750)" to="(630,1830)"/> <wire from="(630,1430)" to="(630,1510)"/> <wire from="(890,1330)" to="(1000,1330)"/> <wire from="(1050,140)" to="(1050,670)"/> <wire from="(910,270)" to="(910,350)"/> <wire from="(140,1330)" to="(170,1330)"/> <wire from="(130,1000)" to="(160,1000)"/> <wire from="(140,1650)" to="(170,1650)"/> <wire from="(140,1490)" to="(170,1490)"/> <wire from="(140,1170)" to="(170,1170)"/> <wire from="(210,1770)" to="(750,1770)"/> <wire from="(140,1810)" to="(170,1810)"/> <wire from="(170,1490)" to="(330,1490)"/> <wire from="(1450,810)" to="(1520,810)"/> <wire from="(1450,490)" to="(1520,490)"/> <wire from="(1590,850)" to="(1730,850)"/> <wire from="(1330,190)" to="(1330,950)"/> <wire from="(1450,330)" to="(1520,330)"/> <wire from="(420,390)" to="(420,430)"/> <wire from="(170,1690)" to="(190,1690)"/> <wire from="(170,1370)" to="(190,1370)"/> <wire from="(170,1530)" to="(190,1530)"/> <wire from="(170,1210)" to="(190,1210)"/> <wire from="(170,1850)" to="(190,1850)"/> <wire from="(610,1570)" to="(680,1570)"/> <wire from="(610,1730)" to="(680,1730)"/> <wire from="(610,930)" to="(680,930)"/> <wire from="(610,770)" to="(680,770)"/> <wire from="(470,1810)" to="(610,1810)"/> <wire from="(330,650)" to="(400,650)"/> <wire from="(1540,710)" to="(1540,750)"/> <wire from="(210,1370)" to="(470,1370)"/> <wire from="(330,490)" to="(400,490)"/> <wire from="(1610,140)" to="(1610,230)"/> <wire from="(1260,430)" to="(1260,510)"/> <wire from="(1400,140)" to="(1400,670)"/> <wire from="(980,950)" to="(980,1020)"/> <wire from="(680,1370)" to="(930,1370)"/> <wire from="(420,870)" to="(420,950)"/> <wire from="(420,1190)" to="(420,1270)"/> <wire from="(420,1510)" to="(420,1590)"/> <wire from="(420,1350)" to="(420,1430)"/> <wire from="(420,1670)" to="(420,1750)"/> <wire from="(260,690)" to="(680,690)"/> <wire from="(560,190)" to="(560,910)"/> <wire from="(700,190)" to="(700,270)"/> <wire from="(700,1470)" to="(700,1550)"/> <wire from="(700,1310)" to="(700,1390)"/> <wire from="(490,1550)" to="(490,1590)"/> <wire from="(1800,810)" to="(1870,810)"/> <wire from="(1820,350)" to="(1820,470)"/> <wire from="(1820,670)" to="(1820,790)"/> <wire from="(680,1730)" to="(890,1730)"/> <wire from="(400,650)" to="(610,650)"/> <wire from="(180,490)" to="(180,980)"/> <wire from="(1470,830)" to="(1470,1020)"/> <wire from="(1520,690)" to="(1590,690)"/> <wire from="(260,1570)" to="(400,1570)"/> <wire from="(890,1250)" to="(1020,1250)"/> <wire from="(610,570)" to="(1450,570)"/> <wire from="(680,1450)" to="(750,1450)"/> <wire from="(700,350)" to="(700,470)"/> <wire from="(1400,790)" to="(1400,1020)"/> <wire from="(1890,550)" to="(1890,590)"/> <wire from="(1890,230)" to="(1890,270)"/> <wire from="(1890,390)" to="(1890,430)"/> <wire from="(1890,710)" to="(1890,750)"/> <wire from="(960,930)" to="(1030,930)"/> <wire from="(1100,770)" to="(1380,770)"/> <wire from="(350,830)" to="(350,1020)"/> <wire from="(540,1370)" to="(680,1370)"/> <wire from="(1240,210)" to="(1450,210)"/> <wire from="(540,1530)" to="(680,1530)"/> <wire from="(400,1650)" to="(470,1650)"/> <wire from="(750,450)" to="(1660,450)"/> <wire from="(840,140)" to="(840,190)"/> <wire from="(750,610)" to="(1660,610)"/> <wire from="(1050,670)" to="(1050,750)"/> <wire from="(490,140)" to="(490,270)"/> <wire from="(110,410)" to="(170,410)"/> <wire from="(1610,270)" to="(1610,350)"/> <wire from="(1020,1530)" to="(1020,1810)"/> <wire from="(130,1000)" to="(130,1010)"/> <wire from="(610,1170)" to="(930,1170)"/> <wire from="(150,690)" to="(260,690)"/> <wire from="(150,530)" to="(260,530)"/> <wire from="(150,850)" to="(260,850)"/> <wire from="(150,210)" to="(260,210)"/> <wire from="(110,810)" to="(220,810)"/> <wire from="(1330,950)" to="(1330,1020)"/> <wire from="(890,1850)" to="(930,1850)"/> <wire from="(890,1210)" to="(930,1210)"/> <wire from="(490,430)" to="(490,510)"/> <wire from="(490,270)" to="(490,350)"/> <wire from="(490,1390)" to="(490,1470)"/> <wire from="(330,1210)" to="(750,1210)"/> <wire from="(170,1170)" to="(400,1170)"/> <wire from="(330,1690)" to="(750,1690)"/> <wire from="(770,390)" to="(770,470)"/> <wire from="(770,550)" to="(770,630)"/> <wire from="(770,710)" to="(770,790)"/> <wire from="(770,870)" to="(770,950)"/> <wire from="(1610,590)" to="(1610,710)"/> <wire from="(1610,430)" to="(1610,550)"/> <wire from="(1610,750)" to="(1610,870)"/> <wire from="(1590,250)" to="(1660,250)"/> <wire from="(80,250)" to="(110,250)"/> <wire from="(80,570)" to="(110,570)"/> <wire from="(80,410)" to="(110,410)"/> <wire from="(80,730)" to="(110,730)"/> <wire from="(170,410)" to="(260,410)"/> <wire from="(840,1230)" to="(840,1270)"/> <wire from="(840,1550)" to="(840,1590)"/> <wire from="(1820,830)" to="(1820,1020)"/> <wire from="(180,490)" to="(330,490)"/> <wire from="(750,770)" to="(1100,770)"/> <wire from="(110,610)" to="(130,610)"/> <wire from="(110,290)" to="(130,290)"/> <wire from="(110,450)" to="(130,450)"/> <wire from="(110,770)" to="(130,770)"/> <wire from="(330,330)" to="(470,330)"/> <wire from="(1680,790)" to="(1680,830)"/> <wire from="(1680,470)" to="(1680,510)"/> <wire from="(840,1870)" to="(840,1930)"/> <wire from="(770,1350)" to="(770,1470)"/> <wire from="(80,890)" to="(540,890)"/> <wire from="(750,1330)" to="(820,1330)"/> <wire from="(1590,530)" to="(1800,530)"/> <wire from="(470,1370)" to="(540,1370)"/> <wire from="(610,1250)" to="(750,1250)"/> <wire from="(470,1530)" to="(540,1530)"/> <wire from="(1030,930)" to="(1240,930)"/> <wire from="(80,930)" to="(400,930)"/> <wire from="(1120,710)" to="(1120,790)"/> <wire from="(1680,630)" to="(1680,710)"/> <wire from="(280,350)" to="(280,430)"/> <wire from="(840,350)" to="(840,950)"/> <wire from="(910,1140)" to="(910,1230)"/> <wire from="(560,1590)" to="(560,1670)"/> <wire from="(190,570)" to="(190,980)"/> <wire from="(840,270)" to="(840,350)"/> <wire from="(840,1710)" to="(840,1790)"/> <wire from="(560,1140)" to="(560,1310)"/> <wire from="(1000,1470)" to="(1020,1470)"/> <wire from="(1540,140)" to="(1540,190)"/> <wire from="(540,1850)" to="(750,1850)"/> <wire from="(170,1330)" to="(170,1370)"/> <wire from="(170,1650)" to="(170,1690)"/> <wire from="(1100,690)" to="(1170,690)"/> <wire from="(170,1490)" to="(170,1530)"/> <wire from="(170,1810)" to="(170,1850)"/> <wire from="(170,1170)" to="(170,1210)"/> <wire from="(350,230)" to="(350,270)"/> <wire from="(1400,670)" to="(1400,790)"/> <wire from="(1380,650)" to="(1450,650)"/> <wire from="(560,1750)" to="(560,1870)"/> <wire from="(540,1570)" to="(610,1570)"/> <wire from="(540,1730)" to="(610,1730)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(820,250)" to="(890,250)"/> <wire from="(150,770)" to="(610,770)"/> <wire from="(820,1210)" to="(890,1210)"/> <wire from="(820,1850)" to="(890,1850)"/> <wire from="(1870,250)" to="(1900,250)"/> <wire from="(680,170)" to="(820,170)"/> <wire from="(1870,570)" to="(1900,570)"/> <wire from="(260,330)" to="(330,330)"/> <wire from="(1870,410)" to="(1900,410)"/> <wire from="(680,330)" to="(820,330)"/> <wire from="(1470,230)" to="(1470,270)"/> <wire from="(1870,730)" to="(1900,730)"/> <wire from="(910,950)" to="(910,1020)"/> <wire from="(1750,670)" to="(1750,750)"/> <wire from="(1750,510)" to="(1750,590)"/> <wire from="(1520,170)" to="(1900,170)"/> <wire from="(350,1350)" to="(350,1430)"/> <wire from="(910,1430)" to="(910,1510)"/> <wire from="(910,1270)" to="(910,1350)"/> <wire from="(1730,650)" to="(1800,650)"/> <wire from="(1590,570)" to="(1730,570)"/> <wire from="(1590,410)" to="(1730,410)"/> <wire from="(1590,730)" to="(1730,730)"/> <wire from="(890,210)" to="(1240,210)"/> <wire from="(630,670)" to="(630,790)"/> <wire from="(1820,230)" to="(1820,270)"/> <wire from="(470,410)" to="(610,410)"/> <wire from="(1820,550)" to="(1820,590)"/> <wire from="(470,570)" to="(610,570)"/> <wire from="(470,250)" to="(610,250)"/> <wire from="(910,1750)" to="(910,1870)"/> <wire from="(890,930)" to="(960,930)"/> <wire from="(420,1870)" to="(420,1930)"/> <wire from="(350,1510)" to="(350,1630)"/> <wire from="(330,1490)" to="(400,1490)"/> <wire from="(330,1330)" to="(400,1330)"/> <wire from="(1020,1250)" to="(1020,1460)"/> <wire from="(1890,140)" to="(1890,230)"/> <wire from="(1540,270)" to="(1540,350)"/> <wire from="(1540,750)" to="(1540,830)"/> <wire from="(1540,430)" to="(1540,510)"/> <wire from="(200,650)" to="(200,980)"/> <wire from="(1730,490)" to="(1900,490)"/> <wire from="(400,730)" to="(1030,730)"/> <wire from="(210,1610)" to="(330,1610)"/> <wire from="(1260,950)" to="(1260,1020)"/> <wire from="(420,430)" to="(420,510)"/> <wire from="(420,590)" to="(420,670)"/> <wire from="(700,710)" to="(700,790)"/> <wire from="(700,550)" to="(700,630)"/> <wire from="(700,1670)" to="(700,1750)"/> <wire from="(700,870)" to="(700,950)"/> <wire from="(110,730)" to="(210,730)"/> <wire from="(1800,210)" to="(1870,210)"/> <wire from="(1800,530)" to="(1870,530)"/> <wire from="(770,1230)" to="(770,1270)"/> <wire from="(770,1550)" to="(770,1590)"/> <wire from="(400,850)" to="(610,850)"/> <wire from="(400,1170)" to="(610,1170)"/> <wire from="(400,1490)" to="(610,1490)"/> <wire from="(400,370)" to="(610,370)"/> <wire from="(400,1330)" to="(610,1330)"/> <wire from="(110,570)" to="(110,610)"/> <wire from="(1240,930)" to="(1310,930)"/> <wire from="(110,250)" to="(110,290)"/> <wire from="(110,410)" to="(110,450)"/> <wire from="(110,730)" to="(110,770)"/> <wire from="(110,330)" to="(260,330)"/> <wire from="(150,610)" to="(680,610)"/> <wire from="(150,450)" to="(680,450)"/> <wire from="(1660,450)" to="(1800,450)"/> <wire from="(1660,770)" to="(1800,770)"/> <wire from="(1520,570)" to="(1590,570)"/> <wire from="(1520,250)" to="(1590,250)"/> <wire from="(1520,730)" to="(1590,730)"/> <wire from="(1520,410)" to="(1590,410)"/> <wire from="(1540,590)" to="(1540,710)"/> <wire from="(700,1830)" to="(700,1930)"/> <wire from="(680,690)" to="(750,690)"/> <wire from="(770,1870)" to="(770,1930)"/> <wire from="(680,530)" to="(750,530)"/> <wire from="(680,850)" to="(750,850)"/> <wire from="(400,410)" to="(470,410)"/> <wire from="(400,570)" to="(470,570)"/> <wire from="(400,250)" to="(470,250)"/> <wire from="(1240,410)" to="(1450,410)"/> <wire from="(1380,770)" to="(1660,770)"/> <wire from="(420,750)" to="(420,870)"/> <wire from="(420,270)" to="(420,390)"/> <wire from="(1000,1330)" to="(1000,1470)"/> <wire from="(150,370)" to="(400,370)"/> <wire from="(1890,750)" to="(1890,830)"/> <wire from="(840,1140)" to="(840,1230)"/> <wire from="(490,1590)" to="(490,1670)"/> <wire from="(490,1750)" to="(490,1830)"/> <wire from="(770,1710)" to="(770,1790)"/> <wire from="(1000,1520)" to="(1000,1730)"/> <wire from="(890,330)" to="(1450,330)"/> <wire from="(770,140)" to="(770,310)"/> <wire from="(1450,210)" to="(1590,210)"/> <wire from="(610,1410)" to="(890,1410)"/> <wire from="(1890,430)" to="(1890,550)"/> <wire from="(1890,270)" to="(1890,390)"/> <wire from="(1890,590)" to="(1890,710)"/> <wire from="(170,1250)" to="(260,1250)"/> <wire from="(170,1570)" to="(260,1570)"/> <wire from="(170,1730)" to="(260,1730)"/> <wire from="(170,1410)" to="(260,1410)"/> <wire from="(890,1650)" to="(980,1650)"/> <wire from="(280,230)" to="(280,270)"/> <wire from="(280,550)" to="(280,590)"/> <wire from="(280,710)" to="(280,750)"/> <wire from="(490,1140)" to="(490,1310)"/> <wire from="(750,1210)" to="(820,1210)"/> <wire from="(750,1850)" to="(820,1850)"/> <wire from="(750,1530)" to="(820,1530)"/> <wire from="(750,1690)" to="(820,1690)"/> <wire from="(210,730)" to="(210,980)"/> <wire from="(470,1570)" to="(540,1570)"/> <wire from="(470,1730)" to="(540,1730)"/> <wire from="(1450,650)" to="(1730,650)"/> <wire from="(980,1410)" to="(980,1480)"/> <wire from="(840,950)" to="(840,1020)"/> <wire from="(1470,140)" to="(1470,230)"/> <wire from="(280,1350)" to="(280,1430)"/> <wire from="(280,1670)" to="(280,1750)"/> <wire from="(560,1470)" to="(560,1550)"/> <wire from="(560,1310)" to="(560,1390)"/> <wire from="(1190,750)" to="(1190,1020)"/> <wire from="(840,1270)" to="(840,1350)"/> <wire from="(820,1690)" to="(930,1690)"/> <wire from="(350,140)" to="(350,230)"/> <wire from="(820,1530)" to="(930,1530)"/> <wire from="(1680,350)" to="(1680,470)"/> <wire from="(630,390)" to="(630,430)"/> <wire from="(280,1830)" to="(280,1930)"/> <wire from="(630,550)" to="(630,590)"/> <wire from="(630,230)" to="(630,270)"/> <wire from="(1680,510)" to="(1680,630)"/> <wire from="(1660,490)" to="(1730,490)"/> <wire from="(910,1630)" to="(910,1670)"/> <wire from="(490,590)" to="(490,1020)"/> <wire from="(150,290)" to="(750,290)"/> <wire from="(350,1230)" to="(350,1270)"/> <wire from="(350,1710)" to="(350,1750)"/> <wire from="(1750,230)" to="(1750,270)"/> <wire from="(1750,390)" to="(1750,430)"/> <wire from="(400,1850)" to="(540,1850)"/> <wire from="(750,850)" to="(1590,850)"/> <wire from="(750,530)" to="(1590,530)"/> <wire from="(420,1140)" to="(420,1190)"/> <wire from="(840,1590)" to="(840,1710)"/> <wire from="(820,930)" to="(890,930)"/> <wire from="(820,1250)" to="(890,1250)"/> <wire from="(700,140)" to="(700,190)"/> <wire from="(350,1870)" to="(350,1930)"/> <wire from="(260,210)" to="(330,210)"/> <wire from="(260,1330)" to="(330,1330)"/> <wire from="(1820,140)" to="(1820,230)"/> <wire from="(1470,590)" to="(1470,670)"/> <wire from="(1470,270)" to="(1470,350)"/> <wire from="(1470,430)" to="(1470,510)"/> <wire from="(1470,750)" to="(1470,830)"/> <wire from="(280,870)" to="(280,1020)"/> <wire from="(350,750)" to="(350,830)"/> <wire from="(350,430)" to="(350,510)"/> <wire from="(350,590)" to="(350,670)"/> <wire from="(350,270)" to="(350,350)"/> <wire from="(630,870)" to="(630,950)"/> <wire from="(630,1350)" to="(630,1430)"/> <wire from="(630,1670)" to="(630,1750)"/> <wire from="(630,1510)" to="(630,1590)"/> <wire from="(630,1190)" to="(630,1270)"/> <wire from="(890,1730)" to="(1000,1730)"/> <wire from="(140,1730)" to="(170,1730)"/> <wire from="(140,1570)" to="(170,1570)"/> <wire from="(1730,210)" to="(1800,210)"/> <wire from="(140,1250)" to="(170,1250)"/> <wire from="(140,1410)" to="(170,1410)"/> <wire from="(700,1550)" to="(700,1590)"/> <wire from="(110,650)" to="(200,650)"/> <wire from="(1680,830)" to="(1680,1020)"/> <wire from="(680,1810)" to="(1020,1810)"/> <wire from="(220,810)" to="(220,980)"/> <wire from="(1450,570)" to="(1520,570)"/> <wire from="(1450,250)" to="(1520,250)"/> <wire from="(1450,410)" to="(1520,410)"/> <wire from="(1450,730)" to="(1520,730)"/> <wire from="(630,1830)" to="(630,1930)"/> <wire from="(170,1450)" to="(190,1450)"/> <wire from="(170,1770)" to="(190,1770)"/> <wire from="(170,1290)" to="(190,1290)"/> <wire from="(170,1610)" to="(190,1610)"/> <wire from="(610,1650)" to="(680,1650)"/> <wire from="(610,1810)" to="(680,1810)"/> <wire from="(1170,690)" to="(1520,690)"/> <wire from="(610,530)" to="(680,530)"/> <wire from="(610,850)" to="(680,850)"/> <wire from="(210,1450)" to="(470,1450)"/> <wire from="(330,410)" to="(400,410)"/> <wire from="(330,730)" to="(400,730)"/> <wire from="(330,570)" to="(400,570)"/> <wire from="(330,250)" to="(400,250)"/> <wire from="(330,1850)" to="(400,1850)"/> <wire from="(210,1290)" to="(470,1290)"/> <wire from="(420,950)" to="(420,1020)"/> <wire from="(1040,1540)" to="(1040,1560)"/> <wire from="(1240,370)" to="(1730,370)"/> <wire from="(1820,270)" to="(1820,350)"/> <wire from="(1820,590)" to="(1820,670)"/> <wire from="(1750,870)" to="(1750,1020)"/> <wire from="(1730,850)" to="(1900,850)"/> <wire from="(680,1290)" to="(930,1290)"/> <wire from="(540,890)" to="(960,890)"/> <wire from="(420,1270)" to="(420,1350)"/> <wire from="(770,1140)" to="(770,1230)"/> <wire from="(420,1590)" to="(420,1670)"/> <wire from="(420,1430)" to="(420,1510)"/> <wire from="(700,270)" to="(700,350)"/> <wire from="(700,1390)" to="(700,1470)"/> <wire from="(110,170)" to="(400,170)"/> <wire from="(1800,570)" to="(1870,570)"/> <wire from="(1800,250)" to="(1870,250)"/> <wire from="(680,1650)" to="(890,1650)"/> <wire from="(1660,330)" to="(1800,330)"/> <wire from="(1810,670)" to="(1820,670)"/> <wire from="(1660,810)" to="(1800,810)"/> <wire from="(260,850)" to="(400,850)"/> <wire from="(890,1490)" to="(1020,1490)"/> <wire from="(260,1650)" to="(400,1650)"/> <wire from="(680,1530)" to="(750,1530)"/> <wire from="(820,1570)" to="(960,1570)"/> <wire from="(540,1450)" to="(680,1450)"/> <wire from="(540,170)" to="(680,170)"/> <wire from="(400,1570)" to="(470,1570)"/> <wire from="(540,1290)" to="(680,1290)"/> <wire from="(400,1730)" to="(470,1730)"/> <wire from="(420,1750)" to="(420,1870)"/> <wire from="(980,1510)" to="(980,1650)"/> <wire from="(1610,350)" to="(1610,430)"/> <wire from="(770,950)" to="(770,1020)"/> <wire from="(960,1500)" to="(1020,1500)"/> <wire from="(890,1610)" to="(930,1610)"/> <wire from="(490,510)" to="(490,590)"/> <wire from="(490,350)" to="(490,430)"/> <wire from="(490,1470)" to="(490,1550)"/> <wire from="(490,1310)" to="(490,1390)"/> <wire from="(770,470)" to="(770,550)"/> <wire from="(770,310)" to="(770,390)"/> <wire from="(770,630)" to="(770,710)"/> <wire from="(770,790)" to="(770,870)"/> <wire from="(770,1270)" to="(770,1350)"/> <wire from="(280,140)" to="(280,230)"/> <wire from="(1590,330)" to="(1660,330)"/> <wire from="(80,650)" to="(110,650)"/> <wire from="(80,330)" to="(110,330)"/> <wire from="(80,810)" to="(110,810)"/> <wire from="(80,170)" to="(110,170)"/> <wire from="(80,490)" to="(110,490)"/> <wire from="(1190,140)" to="(1190,710)"/> <wire from="(750,690)" to="(1100,690)"/> <wire from="(280,1550)" to="(280,1590)"/> <wire from="(280,1230)" to="(280,1270)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(330,210)" to="(610,210)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(110,530)" to="(130,530)"/> <wire from="(110,690)" to="(130,690)"/> <wire from="(1730,370)" to="(1870,370)"/> <wire from="(110,850)" to="(130,850)"/> <wire from="(1680,230)" to="(1680,270)"/> <wire from="(750,930)" to="(820,930)"/> <wire from="(750,1250)" to="(820,1250)"/> <wire from="(1030,650)" to="(1380,650)"/> <wire from="(770,1590)" to="(770,1710)"/> <wire from="(750,1570)" to="(820,1570)"/> <wire from="(1310,170)" to="(1520,170)"/> <wire from="(1170,730)" to="(1450,730)"/> <wire from="(470,1450)" to="(540,1450)"/> <wire from="(610,370)" to="(750,370)"/> <wire from="(610,1330)" to="(750,1330)"/> <wire from="(470,1290)" to="(540,1290)"/> <wire from="(1750,140)" to="(1750,230)"/> <wire from="(1680,710)" to="(1680,790)"/> <wire from="(210,1210)" to="(260,1210)"/> <wire from="(210,1530)" to="(260,1530)"/> <wire from="(210,730)" to="(260,730)"/> <wire from="(220,810)" to="(330,810)"/> <wire from="(630,140)" to="(630,230)"/> <wire from="(280,270)" to="(280,350)"/> <wire from="(980,1510)" to="(1020,1510)"/> <wire from="(560,1670)" to="(560,1750)"/> <wire from="(840,190)" to="(840,270)"/> <wire from="(840,1790)" to="(840,1870)"/> <wire from="(840,1470)" to="(840,1550)"/> <wire from="(350,1140)" to="(350,1230)"/> <wire from="(1660,210)" to="(1730,210)"/> <wire from="(910,230)" to="(910,270)"/> <wire from="(260,1810)" to="(470,1810)"/> <wire from="(170,1410)" to="(170,1450)"/> <wire from="(170,1730)" to="(170,1770)"/> <wire from="(170,1570)" to="(170,1610)"/> <wire from="(170,1250)" to="(170,1290)"/> <wire from="(110,570)" to="(190,570)"/> <wire from="(540,1650)" to="(610,1650)"/> <wire from="(820,330)" to="(890,330)"/> <wire from="(280,430)" to="(280,550)"/> <wire from="(280,750)" to="(280,870)"/> <wire from="(980,140)" to="(980,190)"/> <wire from="(280,590)" to="(280,710)"/> <wire from="(680,250)" to="(820,250)"/> <wire from="(260,410)" to="(330,410)"/> <wire from="(260,730)" to="(330,730)"/> <wire from="(260,570)" to="(330,570)"/> <wire from="(260,250)" to="(330,250)"/> <wire from="(1870,810)" to="(1900,810)"/> <wire from="(260,1210)" to="(330,1210)"/> <wire from="(610,410)" to="(1240,410)"/> <wire from="(1800,450)" to="(1900,450)"/> <wire from="(1800,770)" to="(1900,770)"/> <wire from="(1750,430)" to="(1750,510)"/> <wire from="(1750,590)" to="(1750,670)"/> <wire from="(350,1270)" to="(350,1350)"/> <wire from="(350,1430)" to="(350,1510)"/> <wire from="(980,1480)" to="(1020,1480)"/> <wire from="(1050,750)" to="(1050,950)"/> <wire from="(630,590)" to="(630,670)"/> <wire from="(910,1350)" to="(910,1430)"/> <wire from="(910,1670)" to="(910,1750)"/> <wire from="(1730,570)" to="(1800,570)"/> <wire from="(1730,250)" to="(1800,250)"/> <wire from="(1750,750)" to="(1750,870)"/> <wire from="(1750,270)" to="(1750,390)"/> <wire from="(1000,1520)" to="(1020,1520)"/> <wire from="(1030,730)" to="(1170,730)"/> <wire from="(1330,140)" to="(1330,190)"/> <wire from="(980,910)" to="(980,950)"/> <wire from="(630,270)" to="(630,390)"/> <wire from="(630,430)" to="(630,550)"/> <wire from="(610,250)" to="(680,250)"/> <wire from="(1820,790)" to="(1820,830)"/> <wire from="(910,1510)" to="(910,1630)"/> <wire from="(1260,390)" to="(1260,430)"/> <wire from="(1040,1560)" to="(1060,1560)"/> <wire from="(350,1750)" to="(350,1870)"/> <wire from="(330,1250)" to="(400,1250)"/> <wire from="(330,1730)" to="(400,1730)"/> <wire from="(330,1410)" to="(400,1410)"/> <wire from="(1540,350)" to="(1540,430)"/> <wire from="(1540,510)" to="(1540,590)"/> <wire from="(1540,190)" to="(1540,270)"/> <wire from="(1820,470)" to="(1820,550)"/> <wire from="(210,1850)" to="(330,1850)"/> <wire from="(210,1690)" to="(330,1690)"/> <wire from="(700,950)" to="(700,1020)"/> <wire from="(420,190)" to="(420,270)"/> <wire from="(420,510)" to="(420,590)"/> <wire from="(420,670)" to="(420,750)"/> <wire from="(700,790)" to="(700,870)"/> <wire from="(700,470)" to="(700,550)"/> <wire from="(700,630)" to="(700,710)"/> <wire from="(700,1750)" to="(700,1830)"/> <wire from="(700,1590)" to="(700,1670)"/> <wire from="(700,1140)" to="(700,1310)"/> <wire from="(330,810)" to="(1450,810)"/> <wire from="(400,930)" to="(610,930)"/> <wire from="(400,1250)" to="(610,1250)"/> <wire from="(400,1410)" to="(610,1410)"/> <wire from="(110,330)" to="(110,370)"/> <wire from="(110,650)" to="(110,690)"/> <wire from="(110,490)" to="(110,530)"/> <wire from="(110,170)" to="(110,210)"/> <wire from="(110,810)" to="(110,850)"/> <wire from="(110,250)" to="(260,250)"/> <wire from="(1120,140)" to="(1120,710)"/> <wire from="(960,170)" to="(1310,170)"/> <wire from="(1520,330)" to="(1590,330)"/> <wire from="(1610,550)" to="(1610,590)"/> <wire from="(680,770)" to="(750,770)"/> <wire from="(1610,230)" to="(1610,270)"/> <wire from="(680,450)" to="(750,450)"/> <wire from="(680,610)" to="(750,610)"/> <wire from="(680,930)" to="(750,930)"/> <wire from="(1610,710)" to="(1610,750)"/> <wire from="(680,1570)" to="(750,1570)"/> <wire from="(1120,790)" to="(1120,1020)"/> <wire from="(820,170)" to="(960,170)"/> <wire from="(470,490)" to="(1240,490)"/> <wire from="(560,140)" to="(560,190)"/> <wire from="(400,490)" to="(470,490)"/> <wire from="(1240,490)" to="(1450,490)"/> <wire from="(1680,140)" to="(1680,230)"/> <wire from="(960,1500)" to="(960,1570)"/> <wire from="(610,650)" to="(1030,650)"/> <wire from="(1050,950)" to="(1050,1020)"/> <wire from="(330,1610)" to="(890,1610)"/> <wire from="(490,1670)" to="(490,1750)"/> <wire from="(770,1790)" to="(770,1870)"/> <wire from="(770,1470)" to="(770,1550)"/> <wire from="(750,370)" to="(1240,370)"/> <wire from="(890,250)" to="(1450,250)"/> <wire from="(280,1140)" to="(280,1230)"/> <wire from="(560,1550)" to="(560,1590)"/> <wire from="(610,210)" to="(890,210)"/> <wire from="(1590,210)" to="(1660,210)"/> <wire from="(1590,690)" to="(1660,690)"/> <wire from="(610,1490)" to="(890,1490)"/> <wire from="(170,1650)" to="(260,1650)"/> <wire from="(170,1330)" to="(260,1330)"/> <wire from="(170,1810)" to="(260,1810)"/> <wire from="(890,1410)" to="(980,1410)"/> <wire from="(470,330)" to="(680,330)"/> <wire from="(1540,830)" to="(1540,1020)"/> <wire from="(1260,510)" to="(1260,950)"/> <wire from="(490,1830)" to="(490,1930)"/> <wire from="(1730,410)" to="(1870,410)"/> <wire from="(1730,730)" to="(1870,730)"/> <wire from="(1260,230)" to="(1260,390)"/> <wire from="(560,1870)" to="(560,1930)"/> <wire from="(750,1770)" to="(820,1770)"/> <wire from="(750,1450)" to="(820,1450)"/> <wire from="(630,1140)" to="(630,1190)"/> <wire from="(190,570)" to="(260,570)"/> <wire from="(110,490)" to="(180,490)"/> <wire from="(470,1650)" to="(540,1650)"/> <wire from="(200,650)" to="(330,650)"/> <comp lib="0" loc="(660,1830)" name="Ground"/> <comp lib="6" loc="(1049,1073)" name="Text"> <a name="text" val="0/1"/> </comp> <comp lib="0" loc="(1470,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,710)" name="Ground"/> <comp lib="0" loc="(140,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="0" loc="(1710,670)" name="Ground"/> <comp lib="0" loc="(840,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H8"/> </comp> <comp lib="0" loc="(660,350)" name="Ground"/> <comp lib="0" loc="(730,1710)" name="Ground"/> <comp lib="0" loc="(490,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1870)" name="Ground"/> <comp lib="0" loc="(1430,670)" name="Ground"/> <comp lib="0" loc="(280,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1270)" name="Ground"/> <comp lib="1" loc="(210,1610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(280,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,550)" name="Ground"/> <comp lib="0" loc="(770,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1470)" name="Ground"/> <comp lib="0" loc="(1850,230)" name="Ground"/> <comp lib="0" loc="(420,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1640,510)" name="Ground"/> <comp lib="0" loc="(770,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1890,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1780,470)" name="Ground"/> <comp lib="0" loc="(1820,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1916,734)" name="Text"> <a name="text" val="H1"/> </comp> <comp lib="0" loc="(520,1310)" name="Ground"/> <comp lib="0" loc="(1890,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1850,750)" name="Ground"/> <comp lib="0" loc="(140,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="0" loc="(240,230)" name="Ground"/> <comp lib="0" loc="(140,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="0" loc="(140,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="0" loc="(910,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1150,710)" name="Ground"/> <comp lib="0" loc="(1050,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1399,1072)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="0" loc="(910,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1680,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,350)" name="Ground"/> <comp lib="0" loc="(870,1510)" name="Ground"/> <comp lib="6" loc="(1819,1072)" name="Text"> <a name="text" val="306"/> </comp> <comp lib="0" loc="(1680,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1260,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1270)" name="Ground"/> <comp lib="0" loc="(1470,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(730,710)" name="Ground"/> <comp lib="0" loc="(1710,430)" name="Ground"/> <comp lib="6" loc="(1918,495)" name="Text"> <a name="text" val="H4"/> </comp> <comp lib="0" loc="(770,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(280,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(419,1981)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(630,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1010,670)" name="Ground"/> <comp lib="0" loc="(630,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(140,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V8"/> </comp> <comp lib="0" loc="(910,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(910,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,270)" name="Ground"/> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H6"/> </comp> <comp lib="0" loc="(380,750)" name="Ground"/> <comp lib="0" loc="(1430,270)" name="Ground"/> <comp lib="0" loc="(1750,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(310,1430)" name="Ground"/> <comp lib="0" loc="(840,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1330,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1680,1072)" name="Text"> <a name="text" val="302"/> </comp> <comp lib="0" loc="(660,950)" name="Ground"/> <comp lib="0" loc="(1220,510)" name="Ground"/> <comp lib="0" loc="(1850,590)" name="Ground"/> <comp lib="0" loc="(560,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1670)" name="Ground"/> <comp lib="0" loc="(1680,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,870)" name="Ground"/> <comp lib="0" loc="(840,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,190)" name="Ground"/> <comp lib="0" loc="(700,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1750,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1470,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(420,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,470)" name="Ground"/> <comp lib="0" loc="(420,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1919,174)" name="Text"> <a name="text" val="H8"/> </comp> <comp lib="0" loc="(910,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(310,1510)" name="Ground"/> <comp lib="0" loc="(910,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(421,1072)" name="Text"> <a name="text" val="65"/> </comp> <comp lib="0" loc="(450,1830)" name="Ground"/> <comp lib="0" loc="(1890,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(210,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1470,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(630,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VB"/> </comp> <comp lib="0" loc="(490,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,590)" name="Ground"/> <comp lib="6" loc="(1120,1073)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="0" loc="(910,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1350)" name="Ground"/> <comp lib="0" loc="(420,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1329,1072)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(490,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,870)" name="Ground"/> <comp lib="0" loc="(1360,670)" name="Ground"/> <comp lib="0" loc="(1750,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,310)" name="Ground"/> <comp lib="0" loc="(280,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1850,390)" name="Ground"/> <comp lib="0" loc="(1820,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(380,510)" name="Ground"/> <comp lib="0" loc="(590,1830)" name="Ground"/> <comp lib="0" loc="(1710,390)" name="Ground"/> <comp lib="0" loc="(630,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,510)" name="Ground"/> <comp lib="0" loc="(840,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1610,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(660,1390)" name="Ground"/> <comp lib="0" loc="(1400,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="1" loc="(150,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(770,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1750)" name="Ground"/> <comp lib="6" loc="(1918,575)" name="Text"> <a name="text" val="H3"/> </comp> <comp lib="0" loc="(1710,870)" name="Ground"/> <comp lib="0" loc="(1330,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(240,750)" name="Ground"/> <comp lib="0" loc="(800,1230)" name="Ground"/> <comp lib="0" loc="(700,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,510)" name="Ground"/> <comp lib="0" loc="(310,670)" name="Ground"/> <comp lib="0" loc="(450,1470)" name="Ground"/> <comp lib="0" loc="(870,1230)" name="Ground"/> <comp lib="0" loc="(630,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1780,350)" name="Ground"/> <comp lib="0" loc="(730,1550)" name="Ground"/> <comp lib="0" loc="(560,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,590)" name="Ground"/> <comp lib="0" loc="(1820,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,550)" name="Ground"/> <comp lib="0" loc="(700,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,230)" name="Ground"/> <comp lib="0" loc="(1680,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(839,1980)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="0" loc="(1540,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,830)" name="Ground"/> <comp lib="0" loc="(1540,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(560,1983)" name="Text"> <a name="text" val="241"/> </comp> <comp lib="0" loc="(1780,670)" name="Ground"/> <comp lib="0" loc="(980,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1430)" name="Ground"/> <comp lib="0" loc="(520,910)" name="Ground"/> <comp lib="0" loc="(420,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,590)" name="Ground"/> <comp lib="0" loc="(1570,350)" name="Ground"/> <comp lib="0" loc="(1010,750)" name="Ground"/> <comp lib="0" loc="(310,1630)" name="Ground"/> <comp lib="0" loc="(1190,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1890,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(489,1981)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(1290,190)" name="Ground"/> <comp lib="0" loc="(420,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,350)" name="Ground"/> <comp lib="0" loc="(660,1670)" name="Ground"/> <comp lib="0" loc="(870,350)" name="Ground"/> <comp lib="0" loc="(1540,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1640,710)" name="Ground"/> <comp lib="0" loc="(420,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,270)" name="Ground"/> <comp lib="0" loc="(240,1830)" name="Ground"/> <comp lib="0" loc="(1470,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(160,1000)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(520,1870)" name="Ground"/> <comp lib="0" loc="(840,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H3"/> </comp> <comp lib="0" loc="(630,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1430)" name="Ground"/> <comp lib="0" loc="(940,950)" name="Ground"/> <comp lib="0" loc="(730,1870)" name="Ground"/> <comp lib="0" loc="(490,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(350,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1150,750)" name="Ground"/> <comp lib="0" loc="(590,1590)" name="Ground"/> <comp lib="0" loc="(1750,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1850,430)" name="Ground"/> <comp lib="0" loc="(1050,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,390)" name="Ground"/> <comp lib="1" loc="(150,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(910,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,830)" name="Ground"/> <comp lib="0" loc="(420,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1918,256)" name="Text"> <a name="text" val="H7"/> </comp> <comp lib="0" loc="(590,1510)" name="Ground"/> <comp lib="0" loc="(1610,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(279,1981)" name="Text"> <a name="text" val="272"/> </comp> <comp lib="0" loc="(1470,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1190,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(520,1470)" name="Ground"/> <comp lib="0" loc="(380,1350)" name="Ground"/> <comp lib="0" loc="(420,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1050,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(450,1550)" name="Ground"/> <comp lib="0" loc="(1050,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,870)" name="Ground"/> <comp lib="0" loc="(800,1870)" name="Ground"/> <comp lib="0" loc="(1260,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,750)" name="Ground"/> <comp lib="0" loc="(280,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1500,190)" name="Ground"/> <comp lib="0" loc="(980,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(699,1981)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(280,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(488,1073)" name="Text"> <a name="text" val="0-7,256-263"/> </comp> <comp lib="0" loc="(380,430)" name="Ground"/> <comp lib="0" loc="(240,1590)" name="Ground"/> <comp lib="0" loc="(870,1350)" name="Ground"/> <comp lib="0" loc="(380,1510)" name="Ground"/> <comp lib="0" loc="(1570,550)" name="Ground"/> <comp lib="0" loc="(80,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H5"/> </comp> <comp lib="0" loc="(660,270)" name="Ground"/> <comp lib="0" loc="(1890,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1330,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(350,1980)" name="Text"> <a name="text" val="269"/> </comp> <comp lib="0" loc="(310,1750)" name="Ground"/> <comp lib="0" loc="(420,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,230)" name="Ground"/> <comp lib="0" loc="(1780,830)" name="Ground"/> <comp lib="0" loc="(280,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(140,1410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp lib="0" loc="(380,270)" name="Ground"/> <comp lib="0" loc="(870,1750)" name="Ground"/> <comp lib="0" loc="(730,630)" name="Ground"/> <comp lib="0" loc="(1540,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,710)" name="Ground"/> <comp lib="0" loc="(1290,950)" name="Ground"/> <comp lib="0" loc="(590,670)" name="Ground"/> <comp lib="0" loc="(700,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1190)" name="Ground"/> <comp lib="0" loc="(1820,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1917,654)" name="Text"> <a name="text" val="H2"/> </comp> <comp lib="0" loc="(380,1430)" name="Ground"/> <comp lib="0" loc="(1680,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(450,1750)" name="Ground"/> <comp lib="0" loc="(1220,950)" name="Ground"/> <comp lib="0" loc="(240,1270)" name="Ground"/> <comp lib="0" loc="(350,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1750)" name="Ground"/> <comp lib="0" loc="(520,1390)" name="Ground"/> <comp lib="0" loc="(700,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1270)" name="Ground"/> <comp lib="0" loc="(800,270)" name="Ground"/> <comp lib="0" loc="(840,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,950)" name="Ground"/> <comp lib="0" loc="(730,1350)" name="Ground"/> <comp lib="0" loc="(380,1750)" name="Ground"/> <comp lib="0" loc="(1640,270)" name="Ground"/> <comp lib="0" loc="(450,1390)" name="Ground"/> <comp lib="0" loc="(800,1270)" name="Ground"/> <comp lib="0" loc="(1780,270)" name="Ground"/> <comp lib="0" loc="(420,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,430)" name="Ground"/> <comp lib="6" loc="(909,1071)" name="Text"> <a name="text" val="256-319"/> </comp> <comp lib="0" loc="(700,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(279,1073)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="0" loc="(590,1750)" name="Ground"/> <comp lib="0" loc="(910,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1550)" name="Ground"/> <comp lib="0" loc="(1500,710)" name="Ground"/> <comp lib="0" loc="(630,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(450,430)" name="Ground"/> <comp lib="0" loc="(310,430)" name="Ground"/> <comp lib="0" loc="(560,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,230)" name="Ground"/> <comp lib="0" loc="(700,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(730,950)" name="Ground"/> <comp lib="0" loc="(770,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1310)" name="Ground"/> <comp lib="0" loc="(800,190)" name="Ground"/> <comp lib="0" loc="(520,1590)" name="Ground"/> <comp lib="0" loc="(1260,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,790)" name="Ground"/> <comp lib="0" loc="(1820,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="VPOS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(630,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1350)" name="Ground"/> <comp lib="0" loc="(1500,750)" name="Ground"/> <comp lib="0" loc="(490,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1550)" name="Ground"/> <comp lib="0" loc="(840,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,230)" name="Ground"/> <comp lib="0" loc="(730,1790)" name="Ground"/> <comp lib="0" loc="(910,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1590)" name="Ground"/> <comp lib="0" loc="(310,1270)" name="Ground"/> <comp lib="0" loc="(1780,550)" name="Ground"/> <comp lib="0" loc="(1750,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,590)" name="Ground"/> <comp lib="0" loc="(520,190)" name="Ground"/> <comp lib="0" loc="(240,430)" name="Ground"/> <comp lib="0" loc="(450,350)" name="Ground"/> <comp lib="0" loc="(700,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1190,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(979,1072)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(1820,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1680,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1640,350)" name="Ground"/> <comp lib="0" loc="(910,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1470)" name="Ground"/> <comp lib="0" loc="(490,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1590)" name="Ground"/> <comp lib="0" loc="(1500,350)" name="Ground"/> <comp lib="0" loc="(380,1670)" name="Ground"/> <comp lib="0" loc="(1430,590)" name="Ground"/> <comp lib="0" loc="(450,270)" name="Ground"/> <comp lib="0" loc="(910,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(768,1073)" name="Text"> <a name="text" val="255"/> </comp> <comp lib="0" loc="(560,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,630)" name="Ground"/> <comp lib="0" loc="(730,790)" name="Ground"/> <comp lib="0" loc="(1710,590)" name="Ground"/> <comp lib="0" loc="(730,870)" name="Ground"/> <comp lib="0" loc="(380,950)" name="Ground"/> <comp lib="0" loc="(1260,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(1538,1074)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(1820,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H4"/> </comp> <comp lib="0" loc="(1680,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1230)" name="Ground"/> <comp lib="0" loc="(700,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1040,1540)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(420,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1190,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,790)" name="Ground"/> <comp lib="0" loc="(1400,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(210,1770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(630,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(770,1980)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="0" loc="(310,350)" name="Ground"/> <comp lib="0" loc="(420,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1590)" name="Ground"/> <comp lib="0" loc="(1330,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(240,270)" name="Ground"/> <comp lib="0" loc="(140,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="0" loc="(560,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(630,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,910)" name="Ground"/> <comp lib="0" loc="(1570,270)" name="Ground"/> <comp lib="0" loc="(770,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,510)" name="Ground"/> <comp lib="0" loc="(380,670)" name="Ground"/> <comp lib="0" loc="(310,1230)" name="Ground"/> <comp lib="0" loc="(310,590)" name="Ground"/> <comp lib="0" loc="(140,1650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="0" loc="(700,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1670)" name="Ground"/> <comp lib="0" loc="(840,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(628,1982)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(280,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,870)" name="Ground"/> <comp lib="0" loc="(590,270)" name="Ground"/> <comp lib="1" loc="(210,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1710,270)" name="Ground"/> <comp lib="0" loc="(590,950)" name="Ground"/> <comp lib="0" loc="(660,470)" name="Ground"/> <comp lib="0" loc="(1750,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(520,1550)" name="Ground"/> <comp lib="0" loc="(800,1710)" name="Ground"/> <comp lib="0" loc="(1640,230)" name="Ground"/> <comp lib="0" loc="(1500,510)" name="Ground"/> <comp lib="0" loc="(1680,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,1750)" name="Ground"/> <comp lib="0" loc="(870,1630)" name="Ground"/> <comp lib="0" loc="(910,1630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,710)" name="Ground"/> <comp lib="0" loc="(630,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(700,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(980,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,230)" name="Ground"/> <comp lib="0" loc="(700,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,550)" name="Ground"/> <comp lib="0" loc="(840,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,750)" name="Ground"/> <comp lib="6" loc="(699,1070)" name="Text"> <a name="text" val="63"/> </comp> <comp lib="0" loc="(730,470)" name="Ground"/> <comp lib="0" loc="(630,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1610,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(560,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(210,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1750,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1350)" name="Ground"/> <comp lib="0" loc="(980,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1540,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H1"/> </comp> <comp lib="0" loc="(1220,230)" name="Ground"/> <comp lib="0" loc="(770,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1050,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1230)" name="Ground"/> <comp lib="0" loc="(490,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1918,816)" name="Text"> <a name="text" val="H0"/> </comp> <comp lib="0" loc="(1610,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,190)" name="Ground"/> <comp lib="0" loc="(80,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H2"/> </comp> <comp lib="0" loc="(770,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,430)" name="Ground"/> <comp lib="0" loc="(310,1710)" name="Ground"/> <comp lib="0" loc="(1430,230)" name="Ground"/> <comp lib="1" loc="(210,1690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(450,1310)" name="Ground"/> <comp lib="0" loc="(590,1190)" name="Ground"/> <comp lib="0" loc="(700,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1670)" name="Ground"/> <comp lib="0" loc="(1610,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(630,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1470)" name="Ground"/> <comp lib="0" loc="(80,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0"/> </comp> <comp lib="0" loc="(240,1670)" name="Ground"/> <comp lib="6" loc="(910,1980)" name="Text"> <a name="text" val="265"/> </comp> <comp lib="0" loc="(1890,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1260,1073)" name="Text"> <a name="text" val="320-355"/> </comp> <comp lib="0" loc="(730,390)" name="Ground"/> <comp lib="0" loc="(1820,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(348,1073)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="6" loc="(556,1073)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(1850,830)" name="Ground"/> <comp lib="0" loc="(660,190)" name="Ground"/> <comp lib="0" loc="(730,550)" name="Ground"/> <comp lib="0" loc="(420,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,710)" name="Ground"/> <comp lib="0" loc="(310,750)" name="Ground"/> <comp lib="0" loc="(770,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1350)" name="Ground"/> <comp lib="0" loc="(660,790)" name="Ground"/> <comp lib="0" loc="(350,1630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1188,1074)" name="Text"> <a name="text" val="4/5"/> </comp> <comp lib="0" loc="(350,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,550)" name="Ground"/> <comp lib="0" loc="(420,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,230)" name="Ground"/> <comp lib="0" loc="(560,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,430)" name="Ground"/> <comp lib="0" loc="(660,1590)" name="Ground"/> <comp lib="0" loc="(910,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(628,1073)" name="Text"> <a name="text" val="339"/> </comp> <comp lib="0" loc="(590,1670)" name="Ground"/> <comp lib="0" loc="(870,1270)" name="Ground"/> <comp lib="0" loc="(770,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,350)" name="Ground"/> <comp lib="6" loc="(1918,335)" name="Text"> <a name="text" val="H6"/> </comp> <comp lib="0" loc="(380,1870)" name="Ground"/> <comp lib="0" loc="(770,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(1469,1074)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="1" loc="(210,1530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(280,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,430)" name="Ground"/> <comp lib="0" loc="(1570,590)" name="Ground"/> <comp lib="0" loc="(380,390)" name="Ground"/> <comp lib="0" loc="(280,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H7"/> </comp> <comp lib="6" loc="(1919,415)" name="Text"> <a name="text" val="H5"/> </comp> <comp lib="0" loc="(1010,950)" name="Ground"/> <comp lib="0" loc="(1120,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,790)" name="Ground"/> <comp lib="1" loc="(150,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(350,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1890,1073)" name="Text"> <a name="text" val="340"/> </comp> <comp lib="0" loc="(700,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(130,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1640,830)" name="Ground"/> <comp lib="0" loc="(1610,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,870)" name="Ground"/> <comp lib="0" loc="(310,510)" name="Ground"/> <comp lib="0" loc="(560,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1120,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,830)" name="Ground"/> <comp lib="0" loc="(1500,270)" name="Ground"/> <comp lib="0" loc="(350,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1590)" name="Ground"/> <comp lib="0" loc="(660,630)" name="Ground"/> <comp lib="0" loc="(1540,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(80,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(590,790)" name="Ground"/> <comp lib="6" loc="(841,1071)" name="Text"> <a name="text" val="0-63"/> </comp> <comp lib="0" loc="(420,1190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,750)" name="Ground"/> <comp lib="0" loc="(1780,790)" name="Ground"/> <comp lib="1" loc="(150,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1430)" name="Ground"/> <comp lib="0" loc="(630,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(140,1730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="1" loc="(210,1850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1120,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,950)" name="Ground"/> <comp lib="0" loc="(280,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,390)" name="Ground"/> <comp lib="0" loc="(1470,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(210,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,710)" name="Ground"/> <comp lib="0" loc="(490,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1750,1073)" name="Text"> <a name="text" val="321"/> </comp> <comp lib="0" loc="(630,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,270)" name="Ground"/> <comp lib="0" loc="(840,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1550)" name="Ground"/> <comp lib="6" loc="(1609,1073)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="0" loc="(420,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,590)" name="Ground"/> <comp lib="0" loc="(630,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1790)" name="Ground"/> <comp lib="0" loc="(380,590)" name="Ground"/> <comp lib="0" loc="(1540,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,430)" name="Ground"/> <comp lib="0" loc="(700,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1870)" name="Ground"/> <comp lib="1" loc="(150,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="CONTROL_UNIT_NTSC"> <a name="circuit" val="CONTROL_UNIT_NTSC"/> <a name="clabel" val="CONTROL UNIT"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 26"/> <appear> <path d="M57,51 Q61,61 65,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffa029" height="520" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="559">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="312" y="545">H1''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="559">H2''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="352" y="544">H3''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="372" y="559">H4''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="390" y="545">H5''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="410" y="559">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="432" y="546">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="560">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="75">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="314">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="204">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="295">SC/CNT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="434">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="74">VIN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="447" y="495">0/HPOS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="459" y="173">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="453" y="254">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="154">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="475">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="452" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="333">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="374">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="133">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="458" y="394">/FO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="462" y="94">VC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="462" y="114">HC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="353">F/TA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="275">S/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="224">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="559">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="559">/VSET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="559">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="237" y="560">/PICTURE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="115">V8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="559">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="134">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="154">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="389" y="75">VPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="194" y="74">HPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="174">BLACK</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="464">EVEN/ODD CFG</text> <circ-port height="8" pin="150,110" width="8" x="46" y="66"/> <circ-port height="8" pin="190,330" width="8" x="326" y="46"/> <circ-port height="8" pin="150,480" width="8" x="46" y="126"/> <circ-port height="8" pin="150,520" width="8" x="46" y="146"/> <circ-port height="8" pin="150,600" width="8" x="96" y="46"/> <circ-port height="8" pin="150,670" width="8" x="106" y="46"/> <circ-port height="8" pin="150,740" width="8" x="116" y="46"/> <circ-port height="8" pin="150,810" width="8" x="126" y="46"/> <circ-port height="8" pin="150,880" width="8" x="136" y="46"/> <circ-port height="8" pin="150,950" width="8" x="146" y="46"/> <circ-port height="8" pin="150,1020" width="8" x="156" y="46"/> <circ-port height="8" pin="150,1090" width="8" x="166" y="46"/> <circ-port height="8" pin="150,1160" width="8" x="176" y="46"/> <circ-port height="8" pin="150,1230" width="8" x="186" y="46"/> <circ-port height="8" pin="150,1300" width="8" x="236" y="46"/> <circ-port height="8" pin="150,1370" width="8" x="206" y="46"/> <circ-port height="8" pin="150,1440" width="8" x="196" y="46"/> <circ-port height="8" pin="150,1510" width="8" x="216" y="46"/> <circ-port height="8" pin="150,1580" width="8" x="226" y="46"/> <circ-port height="8" pin="150,1650" width="8" x="266" y="46"/> <circ-port height="8" pin="150,1730" width="8" x="276" y="46"/> <circ-port height="8" pin="150,1810" width="8" x="76" y="46"/> <circ-port height="8" pin="150,1890" width="8" x="86" y="46"/> <circ-port height="8" pin="150,1970" width="8" x="286" y="46"/> <circ-port height="8" pin="150,2050" width="8" x="296" y="46"/> <circ-port height="8" pin="150,2120" width="8" x="246" y="46"/> <circ-port height="8" pin="150,2200" width="8" x="256" y="46"/> <circ-port height="8" pin="150,2270" width="8" x="356" y="46"/> <circ-port height="8" pin="150,2350" width="8" x="346" y="46"/> <circ-port height="8" pin="150,2440" width="8" x="376" y="46"/> <circ-port height="8" pin="150,2520" width="8" x="366" y="46"/> <circ-port height="8" pin="150,2590" width="8" x="386" y="46"/> <circ-port height="8" pin="150,2660" width="8" x="396" y="46"/> <circ-port height="8" pin="150,2730" width="8" x="406" y="46"/> <circ-port height="8" pin="150,2800" width="8" x="416" y="46"/> <circ-port height="8" pin="150,2880" width="8" x="426" y="46"/> <circ-port height="8" pin="150,2960" width="8" x="46" y="166"/> <circ-port height="8" pin="150,3210" width="8" x="306" y="46"/> <circ-port height="8" pin="150,3260" width="8" x="46" y="106"/> <circ-port height="8" pin="150,3370" width="8" x="46" y="86"/> <circ-port height="10" pin="800,130" width="10" x="285" y="565"/> <circ-port height="10" pin="800,190" width="10" x="305" y="565"/> <circ-port height="10" pin="800,250" width="10" x="325" y="565"/> <circ-port height="10" pin="800,310" width="10" x="345" y="565"/> <circ-port height="10" pin="800,370" width="10" x="365" y="565"/> <circ-port height="10" pin="800,430" width="10" x="385" y="565"/> <circ-port height="10" pin="800,480" width="10" x="405" y="565"/> <circ-port height="10" pin="800,520" width="10" x="425" y="565"/> <circ-port height="10" pin="800,560" width="10" x="445" y="565"/> <circ-port height="10" pin="800,600" width="10" x="475" y="265"/> <circ-port height="10" pin="800,640" width="10" x="475" y="125"/> <circ-port height="10" pin="800,710" width="10" x="475" y="145"/> <circ-port height="10" pin="800,810" width="10" x="475" y="485"/> <circ-port height="10" pin="800,860" width="10" x="475" y="245"/> <circ-port height="10" pin="800,950" width="10" x="475" y="465"/> <circ-port height="10" pin="800,1020" width="10" x="475" y="195"/> <circ-port height="10" pin="800,1090" width="10" x="475" y="405"/> <circ-port height="10" pin="800,1140" width="10" x="475" y="165"/> <circ-port height="10" pin="800,1210" width="10" x="475" y="305"/> <circ-port height="10" pin="800,1310" width="10" x="475" y="325"/> <circ-port height="10" pin="800,1360" width="10" x="475" y="345"/> <circ-port height="10" pin="800,1410" width="10" x="475" y="365"/> <circ-port height="10" pin="800,1530" width="10" x="475" y="385"/> <circ-port height="10" pin="800,1690" width="10" x="475" y="285"/> <circ-port height="10" pin="800,1830" width="10" x="135" y="565"/> <circ-port height="10" pin="800,1970" width="10" x="175" y="565"/> <circ-port height="10" pin="800,2380" width="10" x="235" y="565"/> <circ-port height="10" pin="800,2590" width="10" x="95" y="565"/> <circ-port height="10" pin="800,2680" width="10" x="65" y="565"/> <circ-port height="10" pin="800,2790" width="10" x="475" y="425"/> <circ-port height="10" pin="800,2880" width="10" x="475" y="215"/> <circ-port height="10" pin="800,3050" width="10" x="475" y="85"/> <circ-port height="10" pin="800,3210" width="10" x="475" y="65"/> <circ-port height="10" pin="800,3120" width="10" x="475" y="105"/> <circ-port height="10" pin="800,3180" width="10" x="45" y="445"/> <circ-port height="8" pin="800,3150" width="8" x="46" y="466"/> <circ-anchor facing="east" height="6" width="6" x="57" y="47"/> </appear> <wire from="(390,580)" to="(390,650)"/> <wire from="(2050,450)" to="(2050,480)"/> <wire from="(240,1070)" to="(240,1140)"/> <wire from="(1970,50)" to="(1970,80)"/> <wire from="(1730,450)" to="(1730,480)"/> <wire from="(1650,50)" to="(1650,80)"/> <wire from="(1330,50)" to="(1330,80)"/> <wire from="(1410,450)" to="(1410,480)"/> <wire from="(2210,80)" to="(2230,80)"/> <wire from="(1090,450)" to="(1090,480)"/> <wire from="(150,1580)" to="(260,1580)"/> <wire from="(1010,50)" to="(1010,80)"/> <wire from="(950,80)" to="(990,80)"/> <wire from="(300,1090)" to="(410,1090)"/> <wire from="(460,2250)" to="(460,2330)"/> <wire from="(480,250)" to="(520,250)"/> <wire from="(520,630)" to="(540,630)"/> <wire from="(240,2860)" to="(240,3020)"/> <wire from="(590,2290)" to="(620,2290)"/> <wire from="(390,1140)" to="(410,1140)"/> <wire from="(500,290)" to="(520,290)"/> <wire from="(380,700)" to="(380,740)"/> <wire from="(1890,80)" to="(1910,80)"/> <wire from="(300,740)" to="(310,740)"/> <wire from="(470,2390)" to="(470,2440)"/> <wire from="(2370,450)" to="(2370,480)"/> <wire from="(1570,80)" to="(1590,80)"/> <wire from="(240,2670)" to="(240,2790)"/> <wire from="(2290,50)" to="(2290,80)"/> <wire from="(1250,80)" to="(1270,80)"/> <wire from="(390,1350)" to="(390,1420)"/> <wire from="(1330,500)" to="(1330,520)"/> <wire from="(1830,130)" to="(1870,130)"/> <wire from="(1190,130)" to="(1230,130)"/> <wire from="(1970,500)" to="(1970,520)"/> <wire from="(1650,500)" to="(1650,520)"/> <wire from="(1510,130)" to="(1550,130)"/> <wire from="(2130,520)" to="(2210,520)"/> <wire from="(530,2260)" to="(530,2290)"/> <wire from="(1010,500)" to="(1010,520)"/> <wire from="(1170,520)" to="(1250,520)"/> <wire from="(1490,520)" to="(1570,520)"/> <wire from="(260,2420)" to="(280,2420)"/> <wire from="(310,2470)" to="(330,2470)"/> <wire from="(1810,520)" to="(1890,520)"/> <wire from="(2230,400)" to="(2470,400)"/> <wire from="(320,890)" to="(330,890)"/> <wire from="(310,1520)" to="(320,1520)"/> <wire from="(180,810)" to="(260,810)"/> <wire from="(440,430)" to="(520,430)"/> <wire from="(680,170)" to="(680,230)"/> <wire from="(2290,500)" to="(2290,520)"/> <wire from="(2150,130)" to="(2190,130)"/> <wire from="(2030,50)" to="(2030,80)"/> <wire from="(1730,480)" to="(1770,480)"/> <wire from="(1710,50)" to="(1710,80)"/> <wire from="(2050,480)" to="(2090,480)"/> <wire from="(1090,480)" to="(1130,480)"/> <wire from="(1390,50)" to="(1390,80)"/> <wire from="(1410,480)" to="(1450,480)"/> <wire from="(1070,50)" to="(1070,80)"/> <wire from="(740,430)" to="(800,430)"/> <wire from="(150,880)" to="(260,880)"/> <wire from="(150,2800)" to="(260,2800)"/> <wire from="(440,3260)" to="(440,3290)"/> <wire from="(220,2170)" to="(260,2170)"/> <wire from="(150,520)" to="(500,520)"/> <wire from="(1010,100)" to="(1030,100)"/> <wire from="(380,740)" to="(410,740)"/> <wire from="(450,1140)" to="(800,1140)"/> <wire from="(680,410)" to="(700,410)"/> <wire from="(240,930)" to="(260,930)"/> <wire from="(500,230)" to="(520,230)"/> <wire from="(360,2150)" to="(360,2390)"/> <wire from="(150,2200)" to="(220,2200)"/> <wire from="(560,430)" to="(700,430)"/> <wire from="(2370,480)" to="(2410,480)"/> <wire from="(2350,50)" to="(2350,80)"/> <wire from="(390,650)" to="(390,720)"/> <wire from="(2070,220)" to="(2070,250)"/> <wire from="(240,1140)" to="(240,1210)"/> <wire from="(150,3370)" to="(400,3370)"/> <wire from="(1950,100)" to="(1950,130)"/> <wire from="(1750,220)" to="(1750,250)"/> <wire from="(1630,100)" to="(1630,130)"/> <wire from="(2430,50)" to="(2450,50)"/> <wire from="(950,130)" to="(1010,130)"/> <wire from="(1430,220)" to="(1430,250)"/> <wire from="(1310,100)" to="(1310,130)"/> <wire from="(1110,220)" to="(1110,250)"/> <wire from="(2150,160)" to="(2230,160)"/> <wire from="(300,1160)" to="(410,1160)"/> <wire from="(560,3150)" to="(800,3150)"/> <wire from="(440,280)" to="(480,280)"/> <wire from="(1190,160)" to="(1270,160)"/> <wire from="(450,950)" to="(800,950)"/> <wire from="(530,2310)" to="(550,2310)"/> <wire from="(150,3210)" to="(500,3210)"/> <wire from="(1510,160)" to="(1590,160)"/> <wire from="(390,1210)" to="(410,1210)"/> <wire from="(1830,160)" to="(1910,160)"/> <wire from="(370,1320)" to="(520,1320)"/> <wire from="(250,2680)" to="(260,2680)"/> <wire from="(2110,50)" to="(2130,50)"/> <wire from="(150,2270)" to="(480,2270)"/> <wire from="(680,110)" to="(680,170)"/> <wire from="(1790,50)" to="(1810,50)"/> <wire from="(1470,50)" to="(1490,50)"/> <wire from="(2390,220)" to="(2390,250)"/> <wire from="(2270,100)" to="(2270,130)"/> <wire from="(450,1350)" to="(520,1350)"/> <wire from="(1150,50)" to="(1170,50)"/> <wire from="(240,3070)" to="(630,3070)"/> <wire from="(2090,50)" to="(2090,80)"/> <wire from="(1850,450)" to="(1850,480)"/> <wire from="(1770,50)" to="(1770,80)"/> <wire from="(1530,450)" to="(1530,480)"/> <wire from="(2450,520)" to="(2470,520)"/> <wire from="(1450,50)" to="(1450,80)"/> <wire from="(560,190)" to="(620,190)"/> <wire from="(1210,450)" to="(1210,480)"/> <wire from="(740,370)" to="(800,370)"/> <wire from="(1130,50)" to="(1130,80)"/> <wire from="(2330,80)" to="(2350,80)"/> <wire from="(630,3070)" to="(630,3100)"/> <wire from="(560,1360)" to="(800,1360)"/> <wire from="(220,1700)" to="(220,1730)"/> <wire from="(220,2020)" to="(220,2050)"/> <wire from="(390,1420)" to="(390,1510)"/> <wire from="(1050,80)" to="(1070,80)"/> <wire from="(680,350)" to="(700,350)"/> <wire from="(300,930)" to="(320,930)"/> <wire from="(240,2790)" to="(260,2790)"/> <wire from="(390,1980)" to="(410,1980)"/> <wire from="(500,170)" to="(520,170)"/> <wire from="(1090,560)" to="(1250,560)"/> <wire from="(410,3290)" to="(420,3290)"/> <wire from="(2010,80)" to="(2030,80)"/> <wire from="(1410,560)" to="(1570,560)"/> <wire from="(1690,80)" to="(1710,80)"/> <wire from="(1370,80)" to="(1390,80)"/> <wire from="(1730,560)" to="(1890,560)"/> <wire from="(2410,50)" to="(2410,80)"/> <wire from="(560,370)" to="(700,370)"/> <wire from="(2170,450)" to="(2170,480)"/> <wire from="(2050,560)" to="(2210,560)"/> <wire from="(2070,160)" to="(2070,190)"/> <wire from="(1750,160)" to="(1750,190)"/> <wire from="(620,520)" to="(800,520)"/> <wire from="(480,3130)" to="(530,3130)"/> <wire from="(1430,160)" to="(1430,190)"/> <wire from="(1110,160)" to="(1110,190)"/> <wire from="(150,950)" to="(260,950)"/> <wire from="(950,480)" to="(1050,480)"/> <wire from="(880,2990)" to="(880,3400)"/> <wire from="(1590,340)" to="(2230,340)"/> <wire from="(560,3130)" to="(560,3150)"/> <wire from="(450,1510)" to="(490,1510)"/> <wire from="(450,1210)" to="(800,1210)"/> <wire from="(450,1530)" to="(800,1530)"/> <wire from="(240,1000)" to="(260,1000)"/> <wire from="(710,3060)" to="(740,3060)"/> <wire from="(2390,160)" to="(2390,190)"/> <wire from="(390,720)" to="(390,790)"/> <wire from="(240,1210)" to="(240,1280)"/> <wire from="(350,1840)" to="(410,1840)"/> <wire from="(1790,100)" to="(1830,100)"/> <wire from="(1830,50)" to="(1830,80)"/> <wire from="(1510,50)" to="(1510,80)"/> <wire from="(1150,100)" to="(1190,100)"/> <wire from="(1190,50)" to="(1190,80)"/> <wire from="(1470,100)" to="(1510,100)"/> <wire from="(740,310)" to="(800,310)"/> <wire from="(240,110)" to="(240,580)"/> <wire from="(300,1230)" to="(410,1230)"/> <wire from="(240,2160)" to="(240,2570)"/> <wire from="(450,1020)" to="(800,1020)"/> <wire from="(680,290)" to="(700,290)"/> <wire from="(310,880)" to="(330,880)"/> <wire from="(490,1370)" to="(520,1370)"/> <wire from="(500,110)" to="(520,110)"/> <wire from="(400,460)" to="(550,460)"/> <wire from="(490,1840)" to="(490,2070)"/> <wire from="(2110,100)" to="(2150,100)"/> <wire from="(790,1690)" to="(800,1690)"/> <wire from="(560,310)" to="(700,310)"/> <wire from="(2430,100)" to="(2470,100)"/> <wire from="(450,1420)" to="(520,1420)"/> <wire from="(440,130)" to="(440,250)"/> <wire from="(470,3290)" to="(480,3290)"/> <wire from="(2150,50)" to="(2150,80)"/> <wire from="(1690,450)" to="(1730,450)"/> <wire from="(2070,100)" to="(2070,130)"/> <wire from="(1750,100)" to="(1750,130)"/> <wire from="(2010,450)" to="(2050,450)"/> <wire from="(1050,450)" to="(1090,450)"/> <wire from="(1430,100)" to="(1430,130)"/> <wire from="(1370,450)" to="(1410,450)"/> <wire from="(2230,50)" to="(2250,50)"/> <wire from="(1110,100)" to="(1110,130)"/> <wire from="(310,1540)" to="(310,1560)"/> <wire from="(300,2000)" to="(410,2000)"/> <wire from="(220,1860)" to="(260,1860)"/> <wire from="(390,2440)" to="(390,2860)"/> <wire from="(240,1850)" to="(240,2010)"/> <wire from="(310,690)" to="(330,690)"/> <wire from="(240,2860)" to="(260,2860)"/> <wire from="(350,3290)" to="(370,3290)"/> <wire from="(390,2370)" to="(410,2370)"/> <wire from="(1910,50)" to="(1930,50)"/> <wire from="(1590,50)" to="(1610,50)"/> <wire from="(2370,560)" to="(2470,560)"/> <wire from="(150,1890)" to="(220,1890)"/> <wire from="(2390,100)" to="(2390,130)"/> <wire from="(2330,450)" to="(2370,450)"/> <wire from="(1270,50)" to="(1290,50)"/> <wire from="(1970,450)" to="(1970,480)"/> <wire from="(1890,50)" to="(1890,80)"/> <wire from="(1650,450)" to="(1650,480)"/> <wire from="(1570,50)" to="(1570,80)"/> <wire from="(2450,80)" to="(2470,80)"/> <wire from="(1330,450)" to="(1330,480)"/> <wire from="(1250,50)" to="(1250,80)"/> <wire from="(2130,80)" to="(2150,80)"/> <wire from="(740,250)" to="(800,250)"/> <wire from="(950,430)" to="(2230,430)"/> <wire from="(150,1020)" to="(260,1020)"/> <wire from="(350,3310)" to="(350,3340)"/> <wire from="(310,710)" to="(310,740)"/> <wire from="(370,2460)" to="(410,2460)"/> <wire from="(590,1680)" to="(590,2170)"/> <wire from="(460,2250)" to="(480,2250)"/> <wire from="(450,2880)" to="(470,2880)"/> <wire from="(680,230)" to="(700,230)"/> <wire from="(490,1400)" to="(490,1510)"/> <wire from="(240,1070)" to="(260,1070)"/> <wire from="(240,2670)" to="(260,2670)"/> <wire from="(390,580)" to="(410,580)"/> <wire from="(580,640)" to="(800,640)"/> <wire from="(310,2430)" to="(320,2430)"/> <wire from="(1810,80)" to="(1830,80)"/> <wire from="(340,2920)" to="(470,2920)"/> <wire from="(1490,80)" to="(1510,80)"/> <wire from="(2290,450)" to="(2290,480)"/> <wire from="(1170,80)" to="(1190,80)"/> <wire from="(2210,50)" to="(2210,80)"/> <wire from="(390,790)" to="(390,860)"/> <wire from="(200,3040)" to="(260,3040)"/> <wire from="(240,1280)" to="(240,1350)"/> <wire from="(1750,130)" to="(1790,130)"/> <wire from="(1250,500)" to="(1250,520)"/> <wire from="(2070,130)" to="(2110,130)"/> <wire from="(190,80)" to="(190,90)"/> <wire from="(1110,130)" to="(1150,130)"/> <wire from="(1890,500)" to="(1890,520)"/> <wire from="(1570,500)" to="(1570,520)"/> <wire from="(1430,130)" to="(1470,130)"/> <wire from="(870,40)" to="(870,580)"/> <wire from="(420,310)" to="(420,330)"/> <wire from="(2390,220)" to="(2470,220)"/> <wire from="(70,3400)" to="(880,3400)"/> <wire from="(260,2390)" to="(260,2420)"/> <wire from="(450,1090)" to="(800,1090)"/> <wire from="(240,2160)" to="(260,2160)"/> <wire from="(260,2500)" to="(280,2500)"/> <wire from="(390,1350)" to="(410,1350)"/> <wire from="(370,700)" to="(380,700)"/> <wire from="(2210,500)" to="(2210,520)"/> <wire from="(190,80)" to="(390,80)"/> <wire from="(2390,130)" to="(2430,130)"/> <wire from="(1650,480)" to="(1690,480)"/> <wire from="(2210,540)" to="(2370,540)"/> <wire from="(1950,50)" to="(1950,80)"/> <wire from="(1630,50)" to="(1630,80)"/> <wire from="(1970,480)" to="(2010,480)"/> <wire from="(550,580)" to="(870,580)"/> <wire from="(1330,480)" to="(1370,480)"/> <wire from="(1310,50)" to="(1310,80)"/> <wire from="(740,190)" to="(800,190)"/> <wire from="(150,2880)" to="(260,2880)"/> <wire from="(990,50)" to="(990,80)"/> <wire from="(2230,190)" to="(2310,190)"/> <wire from="(1270,190)" to="(1350,190)"/> <wire from="(680,170)" to="(700,170)"/> <wire from="(1590,190)" to="(1670,190)"/> <wire from="(390,2440)" to="(410,2440)"/> <wire from="(310,650)" to="(310,690)"/> <wire from="(1910,190)" to="(1990,190)"/> <wire from="(560,110)" to="(650,110)"/> <wire from="(1250,540)" to="(1410,540)"/> <wire from="(1570,540)" to="(1730,540)"/> <wire from="(2290,480)" to="(2330,480)"/> <wire from="(1890,540)" to="(2050,540)"/> <wire from="(2270,50)" to="(2270,80)"/> <wire from="(950,190)" to="(1030,190)"/> <wire from="(1870,100)" to="(1870,130)"/> <wire from="(240,580)" to="(240,650)"/> <wire from="(1550,100)" to="(1550,130)"/> <wire from="(300,2590)" to="(800,2590)"/> <wire from="(1230,100)" to="(1230,130)"/> <wire from="(2350,50)" to="(2370,50)"/> <wire from="(150,1090)" to="(260,1090)"/> <wire from="(300,600)" to="(410,600)"/> <wire from="(560,1310)" to="(800,1310)"/> <wire from="(220,1650)" to="(220,1680)"/> <wire from="(220,1970)" to="(220,2000)"/> <wire from="(590,250)" to="(700,250)"/> <wire from="(990,500)" to="(990,520)"/> <wire from="(240,1140)" to="(260,1140)"/> <wire from="(390,650)" to="(410,650)"/> <wire from="(580,710)" to="(800,710)"/> <wire from="(2030,50)" to="(2050,50)"/> <wire from="(310,1540)" to="(320,1540)"/> <wire from="(150,2350)" to="(480,2350)"/> <wire from="(1710,50)" to="(1730,50)"/> <wire from="(440,130)" to="(520,130)"/> <wire from="(1390,50)" to="(1410,50)"/> <wire from="(1070,50)" to="(1090,50)"/> <wire from="(410,3310)" to="(480,3310)"/> <wire from="(2190,100)" to="(2190,130)"/> <wire from="(390,860)" to="(390,930)"/> <wire from="(2010,50)" to="(2010,80)"/> <wire from="(2090,450)" to="(2090,480)"/> <wire from="(240,1350)" to="(240,1420)"/> <wire from="(1770,450)" to="(1770,480)"/> <wire from="(1690,50)" to="(1690,80)"/> <wire from="(1450,450)" to="(1450,480)"/> <wire from="(1370,50)" to="(1370,80)"/> <wire from="(2250,80)" to="(2270,80)"/> <wire from="(740,130)" to="(800,130)"/> <wire from="(1130,450)" to="(1130,480)"/> <wire from="(1050,50)" to="(1050,80)"/> <wire from="(1270,280)" to="(1590,280)"/> <wire from="(320,790)" to="(320,870)"/> <wire from="(460,290)" to="(460,370)"/> <wire from="(300,1370)" to="(410,1370)"/> <wire from="(1910,280)" to="(2230,280)"/> <wire from="(450,2440)" to="(470,2440)"/> <wire from="(680,110)" to="(700,110)"/> <wire from="(620,1960)" to="(650,1960)"/> <wire from="(390,1420)" to="(410,1420)"/> <wire from="(390,2070)" to="(390,2370)"/> <wire from="(390,80)" to="(390,580)"/> <wire from="(1930,80)" to="(1950,80)"/> <wire from="(340,2920)" to="(340,3100)"/> <wire from="(500,520)" to="(500,700)"/> <wire from="(1610,80)" to="(1630,80)"/> <wire from="(2410,450)" to="(2410,480)"/> <wire from="(560,130)" to="(700,130)"/> <wire from="(2330,50)" to="(2330,80)"/> <wire from="(1290,80)" to="(1310,80)"/> <wire from="(1990,160)" to="(1990,190)"/> <wire from="(1410,540)" to="(1410,560)"/> <wire from="(1090,540)" to="(1090,560)"/> <wire from="(1670,160)" to="(1670,190)"/> <wire from="(1350,160)" to="(1350,190)"/> <wire from="(2050,540)" to="(2050,560)"/> <wire from="(1730,540)" to="(1730,560)"/> <wire from="(1030,160)" to="(1030,190)"/> <wire from="(480,250)" to="(480,270)"/> <wire from="(220,1680)" to="(260,1680)"/> <wire from="(220,2000)" to="(260,2000)"/> <wire from="(390,1820)" to="(390,1980)"/> <wire from="(730,2800)" to="(730,2960)"/> <wire from="(360,1530)" to="(370,1530)"/> <wire from="(2370,540)" to="(2370,560)"/> <wire from="(2310,160)" to="(2310,190)"/> <wire from="(2230,400)" to="(2230,430)"/> <wire from="(1710,100)" to="(1750,100)"/> <wire from="(2070,50)" to="(2070,80)"/> <wire from="(620,190)" to="(620,520)"/> <wire from="(1750,50)" to="(1750,80)"/> <wire from="(240,650)" to="(240,720)"/> <wire from="(2030,100)" to="(2070,100)"/> <wire from="(1070,100)" to="(1110,100)"/> <wire from="(1430,50)" to="(1430,80)"/> <wire from="(1390,100)" to="(1430,100)"/> <wire from="(1110,50)" to="(1110,80)"/> <wire from="(150,1160)" to="(260,1160)"/> <wire from="(310,1490)" to="(310,1520)"/> <wire from="(400,2090)" to="(400,2180)"/> <wire from="(520,480)" to="(520,630)"/> <wire from="(240,2570)" to="(240,2670)"/> <wire from="(560,3130)" to="(580,3130)"/> <wire from="(730,1700)" to="(750,1700)"/> <wire from="(240,1210)" to="(260,1210)"/> <wire from="(240,1850)" to="(260,1850)"/> <wire from="(390,720)" to="(410,720)"/> <wire from="(200,2520)" to="(280,2520)"/> <wire from="(240,3020)" to="(240,3070)"/> <wire from="(2390,50)" to="(2390,80)"/> <wire from="(2350,100)" to="(2390,100)"/> <wire from="(450,1820)" to="(520,1820)"/> <wire from="(390,930)" to="(390,1000)"/> <wire from="(1610,450)" to="(1650,450)"/> <wire from="(1990,100)" to="(1990,130)"/> <wire from="(2230,250)" to="(2390,250)"/> <wire from="(240,1420)" to="(240,1490)"/> <wire from="(1930,450)" to="(1970,450)"/> <wire from="(1590,340)" to="(1590,370)"/> <wire from="(1670,100)" to="(1670,130)"/> <wire from="(360,2390)" to="(410,2390)"/> <wire from="(1350,100)" to="(1350,130)"/> <wire from="(1290,450)" to="(1330,450)"/> <wire from="(2150,50)" to="(2170,50)"/> <wire from="(300,3040)" to="(740,3040)"/> <wire from="(1030,100)" to="(1030,130)"/> <wire from="(2210,500)" to="(2290,500)"/> <wire from="(990,540)" to="(1090,540)"/> <wire from="(400,2180)" to="(510,2180)"/> <wire from="(300,1440)" to="(410,1440)"/> <wire from="(350,3260)" to="(350,3290)"/> <wire from="(220,2170)" to="(220,2200)"/> <wire from="(450,650)" to="(540,650)"/> <wire from="(1250,500)" to="(1330,500)"/> <wire from="(1570,500)" to="(1650,500)"/> <wire from="(440,260)" to="(460,260)"/> <wire from="(590,1680)" to="(620,1680)"/> <wire from="(420,3120)" to="(440,3120)"/> <wire from="(400,40)" to="(870,40)"/> <wire from="(1890,500)" to="(1970,500)"/> <wire from="(950,250)" to="(1110,250)"/> <wire from="(1270,250)" to="(1430,250)"/> <wire from="(1830,50)" to="(1850,50)"/> <wire from="(1590,250)" to="(1750,250)"/> <wire from="(620,190)" to="(700,190)"/> <wire from="(150,1650)" to="(220,1650)"/> <wire from="(150,1970)" to="(220,1970)"/> <wire from="(1510,50)" to="(1530,50)"/> <wire from="(2250,450)" to="(2290,450)"/> <wire from="(530,3180)" to="(800,3180)"/> <wire from="(1910,250)" to="(2070,250)"/> <wire from="(2310,100)" to="(2310,130)"/> <wire from="(1190,50)" to="(1210,50)"/> <wire from="(2230,340)" to="(2230,370)"/> <wire from="(1890,450)" to="(1890,480)"/> <wire from="(460,370)" to="(520,370)"/> <wire from="(1810,50)" to="(1810,80)"/> <wire from="(1490,50)" to="(1490,80)"/> <wire from="(1570,450)" to="(1570,480)"/> <wire from="(2450,480)" to="(2470,480)"/> <wire from="(190,110)" to="(240,110)"/> <wire from="(200,2520)" to="(200,3040)"/> <wire from="(1250,450)" to="(1250,480)"/> <wire from="(1170,50)" to="(1170,80)"/> <wire from="(2370,80)" to="(2390,80)"/> <wire from="(950,560)" to="(990,560)"/> <wire from="(460,2330)" to="(480,2330)"/> <wire from="(300,1840)" to="(330,1840)"/> <wire from="(620,3120)" to="(650,3120)"/> <wire from="(1110,220)" to="(1270,220)"/> <wire from="(310,2510)" to="(320,2510)"/> <wire from="(2050,80)" to="(2070,80)"/> <wire from="(1430,220)" to="(1590,220)"/> <wire from="(1730,80)" to="(1750,80)"/> <wire from="(1410,80)" to="(1430,80)"/> <wire from="(1750,220)" to="(1910,220)"/> <wire from="(2450,50)" to="(2450,80)"/> <wire from="(1090,80)" to="(1110,80)"/> <wire from="(2130,50)" to="(2130,80)"/> <wire from="(2070,220)" to="(2230,220)"/> <wire from="(2210,450)" to="(2210,480)"/> <wire from="(1670,130)" to="(1710,130)"/> <wire from="(1490,500)" to="(1490,520)"/> <wire from="(1910,280)" to="(1910,310)"/> <wire from="(240,720)" to="(240,790)"/> <wire from="(1170,500)" to="(1170,520)"/> <wire from="(1590,280)" to="(1590,310)"/> <wire from="(1990,130)" to="(2030,130)"/> <wire from="(1350,130)" to="(1390,130)"/> <wire from="(1270,280)" to="(1270,310)"/> <wire from="(1810,500)" to="(1810,520)"/> <wire from="(150,1230)" to="(260,1230)"/> <wire from="(2290,520)" to="(2370,520)"/> <wire from="(1030,130)" to="(1070,130)"/> <wire from="(390,80)" to="(680,80)"/> <wire from="(380,670)" to="(380,700)"/> <wire from="(1330,520)" to="(1410,520)"/> <wire from="(240,1280)" to="(260,1280)"/> <wire from="(310,710)" to="(330,710)"/> <wire from="(1650,520)" to="(1730,520)"/> <wire from="(490,1840)" to="(520,1840)"/> <wire from="(390,790)" to="(410,790)"/> <wire from="(390,2070)" to="(410,2070)"/> <wire from="(350,3310)" to="(370,3310)"/> <wire from="(1970,520)" to="(2050,520)"/> <wire from="(400,2090)" to="(410,2090)"/> <wire from="(2450,500)" to="(2450,520)"/> <wire from="(2130,500)" to="(2130,520)"/> <wire from="(300,2780)" to="(750,2780)"/> <wire from="(2310,130)" to="(2350,130)"/> <wire from="(1010,520)" to="(1090,520)"/> <wire from="(2230,280)" to="(2230,310)"/> <wire from="(390,1000)" to="(390,1070)"/> <wire from="(1570,480)" to="(1610,480)"/> <wire from="(240,1490)" to="(240,1560)"/> <wire from="(1870,50)" to="(1870,80)"/> <wire from="(1890,480)" to="(1930,480)"/> <wire from="(390,3130)" to="(440,3130)"/> <wire from="(1550,50)" to="(1550,80)"/> <wire from="(1250,480)" to="(1290,480)"/> <wire from="(1230,50)" to="(1230,80)"/> <wire from="(510,2300)" to="(550,2300)"/> <wire from="(420,3140)" to="(420,3290)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(450,720)" to="(540,720)"/> <wire from="(400,40)" to="(400,460)"/> <wire from="(340,3100)" to="(370,3100)"/> <wire from="(520,3290)" to="(540,3290)"/> <wire from="(620,2190)" to="(620,2290)"/> <wire from="(320,2460)" to="(330,2460)"/> <wire from="(2230,370)" to="(2470,370)"/> <wire from="(2210,480)" to="(2250,480)"/> <wire from="(2190,50)" to="(2190,80)"/> <wire from="(2110,100)" to="(2110,130)"/> <wire from="(1910,220)" to="(1910,250)"/> <wire from="(350,3340)" to="(540,3340)"/> <wire from="(1790,100)" to="(1790,130)"/> <wire from="(1590,220)" to="(1590,250)"/> <wire from="(190,100)" to="(190,110)"/> <wire from="(1470,100)" to="(1470,130)"/> <wire from="(1270,220)" to="(1270,250)"/> <wire from="(2270,50)" to="(2290,50)"/> <wire from="(1150,100)" to="(1150,130)"/> <wire from="(470,2390)" to="(510,2390)"/> <wire from="(310,860)" to="(310,880)"/> <wire from="(2310,160)" to="(2390,160)"/> <wire from="(650,480)" to="(800,480)"/> <wire from="(990,50)" to="(1010,50)"/> <wire from="(1350,160)" to="(1430,160)"/> <wire from="(1670,160)" to="(1750,160)"/> <wire from="(560,250)" to="(590,250)"/> <wire from="(1990,160)" to="(2070,160)"/> <wire from="(240,580)" to="(260,580)"/> <wire from="(1950,50)" to="(1970,50)"/> <wire from="(300,650)" to="(310,650)"/> <wire from="(1630,50)" to="(1650,50)"/> <wire from="(460,2230)" to="(590,2230)"/> <wire from="(2430,100)" to="(2430,130)"/> <wire from="(150,3260)" to="(350,3260)"/> <wire from="(1030,160)" to="(1110,160)"/> <wire from="(1310,50)" to="(1330,50)"/> <wire from="(2230,220)" to="(2230,250)"/> <wire from="(2010,450)" to="(2010,480)"/> <wire from="(240,790)" to="(240,860)"/> <wire from="(1930,50)" to="(1930,80)"/> <wire from="(620,1830)" to="(800,1830)"/> <wire from="(1610,50)" to="(1610,80)"/> <wire from="(1690,450)" to="(1690,480)"/> <wire from="(1370,450)" to="(1370,480)"/> <wire from="(2170,80)" to="(2190,80)"/> <wire from="(1290,50)" to="(1290,80)"/> <wire from="(1050,450)" to="(1050,480)"/> <wire from="(950,370)" to="(1590,370)"/> <wire from="(150,1300)" to="(260,1300)"/> <wire from="(680,80)" to="(680,110)"/> <wire from="(300,810)" to="(410,810)"/> <wire from="(220,1860)" to="(220,1890)"/> <wire from="(690,3120)" to="(800,3120)"/> <wire from="(730,2800)" to="(750,2800)"/> <wire from="(990,500)" to="(1010,500)"/> <wire from="(510,2260)" to="(530,2260)"/> <wire from="(450,600)" to="(800,600)"/> <wire from="(240,1350)" to="(260,1350)"/> <wire from="(390,860)" to="(410,860)"/> <wire from="(390,1820)" to="(410,1820)"/> <wire from="(390,1510)" to="(390,1820)"/> <wire from="(550,460)" to="(550,580)"/> <wire from="(1850,80)" to="(1870,80)"/> <wire from="(2230,310)" to="(2470,310)"/> <wire from="(400,3320)" to="(400,3370)"/> <wire from="(530,3130)" to="(530,3180)"/> <wire from="(1530,80)" to="(1550,80)"/> <wire from="(2250,50)" to="(2250,80)"/> <wire from="(2330,450)" to="(2330,480)"/> <wire from="(470,2880)" to="(800,2880)"/> <wire from="(1210,80)" to="(1230,80)"/> <wire from="(390,1070)" to="(390,1140)"/> <wire from="(1910,160)" to="(1910,190)"/> <wire from="(1590,160)" to="(1590,190)"/> <wire from="(1270,160)" to="(1270,190)"/> <wire from="(190,330)" to="(420,330)"/> <wire from="(690,1970)" to="(800,1970)"/> <wire from="(460,2230)" to="(460,2250)"/> <wire from="(470,2880)" to="(470,2920)"/> <wire from="(490,1400)" to="(520,1400)"/> <wire from="(150,110)" to="(170,110)"/> <wire from="(550,2190)" to="(620,2190)"/> <wire from="(250,2780)" to="(260,2780)"/> <wire from="(540,2380)" to="(800,2380)"/> <wire from="(500,350)" to="(500,410)"/> <wire from="(440,3290)" to="(450,3290)"/> <wire from="(150,2960)" to="(730,2960)"/> <wire from="(2230,160)" to="(2230,190)"/> <wire from="(1630,100)" to="(1670,100)"/> <wire from="(1990,50)" to="(1990,80)"/> <wire from="(460,190)" to="(520,190)"/> <wire from="(1950,100)" to="(1990,100)"/> <wire from="(240,1560)" to="(240,1690)"/> <wire from="(730,1700)" to="(730,2800)"/> <wire from="(1670,50)" to="(1670,80)"/> <wire from="(1350,50)" to="(1350,80)"/> <wire from="(1310,100)" to="(1350,100)"/> <wire from="(150,600)" to="(260,600)"/> <wire from="(1030,50)" to="(1030,80)"/> <wire from="(220,2120)" to="(220,2150)"/> <wire from="(780,2790)" to="(800,2790)"/> <wire from="(450,860)" to="(800,860)"/> <wire from="(590,560)" to="(800,560)"/> <wire from="(240,2570)" to="(260,2570)"/> <wire from="(240,650)" to="(260,650)"/> <wire from="(590,2170)" to="(590,2230)"/> <wire from="(2270,100)" to="(2310,100)"/> <wire from="(2310,50)" to="(2310,80)"/> <wire from="(240,860)" to="(240,930)"/> <wire from="(1910,100)" to="(1910,130)"/> <wire from="(1850,450)" to="(1890,450)"/> <wire from="(1590,100)" to="(1590,130)"/> <wire from="(2390,50)" to="(2410,50)"/> <wire from="(1210,450)" to="(1250,450)"/> <wire from="(1270,100)" to="(1270,130)"/> <wire from="(1530,450)" to="(1570,450)"/> <wire from="(150,1370)" to="(260,1370)"/> <wire from="(240,2010)" to="(240,2160)"/> <wire from="(220,1700)" to="(260,1700)"/> <wire from="(220,2020)" to="(260,2020)"/> <wire from="(370,1530)" to="(410,1530)"/> <wire from="(500,700)" to="(540,700)"/> <wire from="(240,1690)" to="(240,1850)"/> <wire from="(710,3060)" to="(710,3100)"/> <wire from="(240,1420)" to="(260,1420)"/> <wire from="(240,3020)" to="(260,3020)"/> <wire from="(390,930)" to="(410,930)"/> <wire from="(320,870)" to="(330,870)"/> <wire from="(300,1490)" to="(310,1490)"/> <wire from="(2070,50)" to="(2090,50)"/> <wire from="(1750,50)" to="(1770,50)"/> <wire from="(150,1730)" to="(220,1730)"/> <wire from="(150,2050)" to="(220,2050)"/> <wire from="(1430,50)" to="(1450,50)"/> <wire from="(2170,450)" to="(2210,450)"/> <wire from="(500,290)" to="(500,350)"/> <wire from="(650,110)" to="(650,480)"/> <wire from="(1110,50)" to="(1130,50)"/> <wire from="(150,2440)" to="(280,2440)"/> <wire from="(2230,100)" to="(2230,130)"/> <wire from="(390,1140)" to="(390,1210)"/> <wire from="(2050,50)" to="(2050,80)"/> <wire from="(1730,50)" to="(1730,80)"/> <wire from="(1810,450)" to="(1810,480)"/> <wire from="(1490,450)" to="(1490,480)"/> <wire from="(300,2680)" to="(800,2680)"/> <wire from="(1410,50)" to="(1410,80)"/> <wire from="(150,480)" to="(520,480)"/> <wire from="(560,1830)" to="(620,1830)"/> <wire from="(1090,50)" to="(1090,80)"/> <wire from="(2290,80)" to="(2310,80)"/> <wire from="(1170,450)" to="(1170,480)"/> <wire from="(490,1370)" to="(490,1400)"/> <wire from="(320,2480)" to="(320,2510)"/> <wire from="(220,2150)" to="(260,2150)"/> <wire from="(150,810)" to="(180,810)"/> <wire from="(780,3050)" to="(800,3050)"/> <wire from="(1010,80)" to="(1030,80)"/> <wire from="(1970,80)" to="(1990,80)"/> <wire from="(1650,80)" to="(1670,80)"/> <wire from="(250,2730)" to="(250,2780)"/> <wire from="(1330,80)" to="(1350,80)"/> <wire from="(2450,450)" to="(2450,480)"/> <wire from="(2370,50)" to="(2370,80)"/> <wire from="(2130,450)" to="(2130,480)"/> <wire from="(1590,130)" to="(1630,130)"/> <wire from="(1410,500)" to="(1410,520)"/> <wire from="(1090,500)" to="(1090,520)"/> <wire from="(1910,130)" to="(1950,130)"/> <wire from="(1270,130)" to="(1310,130)"/> <wire from="(2050,500)" to="(2050,520)"/> <wire from="(150,2520)" to="(200,2520)"/> <wire from="(1730,500)" to="(1730,520)"/> <wire from="(150,670)" to="(260,670)"/> <wire from="(150,2590)" to="(260,2590)"/> <wire from="(1010,100)" to="(1010,130)"/> <wire from="(260,2420)" to="(260,2500)"/> <wire from="(260,2390)" to="(360,2390)"/> <wire from="(390,3100)" to="(420,3100)"/> <wire from="(530,2290)" to="(550,2290)"/> <wire from="(390,1510)" to="(410,1510)"/> <wire from="(420,3140)" to="(440,3140)"/> <wire from="(240,720)" to="(260,720)"/> <wire from="(2370,500)" to="(2370,520)"/> <wire from="(2230,130)" to="(2270,130)"/> <wire from="(500,230)" to="(500,290)"/> <wire from="(460,190)" to="(460,260)"/> <wire from="(300,2150)" to="(360,2150)"/> <wire from="(2110,50)" to="(2110,80)"/> <wire from="(240,930)" to="(240,1000)"/> <wire from="(1810,480)" to="(1850,480)"/> <wire from="(1790,50)" to="(1790,80)"/> <wire from="(1470,50)" to="(1470,80)"/> <wire from="(1170,480)" to="(1210,480)"/> <wire from="(1490,480)" to="(1530,480)"/> <wire from="(1150,50)" to="(1150,80)"/> <wire from="(150,1440)" to="(260,1440)"/> <wire from="(2390,190)" to="(2470,190)"/> <wire from="(530,2310)" to="(530,2340)"/> <wire from="(300,950)" to="(410,950)"/> <wire from="(70,2990)" to="(70,3400)"/> <wire from="(150,2730)" to="(250,2730)"/> <wire from="(350,3260)" to="(440,3260)"/> <wire from="(1110,190)" to="(1190,190)"/> <wire from="(1430,190)" to="(1510,190)"/> <wire from="(240,1490)" to="(260,1490)"/> <wire from="(390,1000)" to="(410,1000)"/> <wire from="(1750,190)" to="(1830,190)"/> <wire from="(500,3110)" to="(500,3210)"/> <wire from="(2070,190)" to="(2150,190)"/> <wire from="(300,1560)" to="(310,1560)"/> <wire from="(2130,480)" to="(2170,480)"/> <wire from="(150,2120)" to="(220,2120)"/> <wire from="(2430,50)" to="(2430,80)"/> <wire from="(590,250)" to="(590,560)"/> <wire from="(2030,100)" to="(2030,130)"/> <wire from="(1710,100)" to="(1710,130)"/> <wire from="(1390,100)" to="(1390,130)"/> <wire from="(2190,50)" to="(2210,50)"/> <wire from="(1070,100)" to="(1070,130)"/> <wire from="(950,310)" to="(1270,310)"/> <wire from="(1590,310)" to="(1910,310)"/> <wire from="(220,1810)" to="(220,1840)"/> <wire from="(1870,50)" to="(1890,50)"/> <wire from="(680,350)" to="(680,410)"/> <wire from="(500,170)" to="(500,230)"/> <wire from="(1550,50)" to="(1570,50)"/> <wire from="(2350,100)" to="(2350,130)"/> <wire from="(1230,50)" to="(1250,50)"/> <wire from="(240,2790)" to="(240,2860)"/> <wire from="(1850,50)" to="(1850,80)"/> <wire from="(1930,450)" to="(1930,480)"/> <wire from="(440,300)" to="(440,430)"/> <wire from="(1610,450)" to="(1610,480)"/> <wire from="(2410,80)" to="(2430,80)"/> <wire from="(1530,50)" to="(1530,80)"/> <wire from="(390,1210)" to="(390,1350)"/> <wire from="(1210,50)" to="(1210,80)"/> <wire from="(1290,450)" to="(1290,480)"/> <wire from="(150,740)" to="(260,740)"/> <wire from="(150,2660)" to="(260,2660)"/> <wire from="(420,3100)" to="(420,3120)"/> <wire from="(70,2990)" to="(880,2990)"/> <wire from="(950,520)" to="(990,520)"/> <wire from="(480,280)" to="(480,310)"/> <wire from="(390,1980)" to="(390,2070)"/> <wire from="(500,3210)" to="(800,3210)"/> <wire from="(510,2340)" to="(530,2340)"/> <wire from="(630,3100)" to="(650,3100)"/> <wire from="(240,790)" to="(260,790)"/> <wire from="(500,410)" to="(520,410)"/> <wire from="(390,2860)" to="(410,2860)"/> <wire from="(320,2480)" to="(330,2480)"/> <wire from="(300,860)" to="(310,860)"/> <wire from="(2090,80)" to="(2110,80)"/> <wire from="(1770,80)" to="(1790,80)"/> <wire from="(1450,80)" to="(1470,80)"/> <wire from="(2250,450)" to="(2250,480)"/> <wire from="(1130,80)" to="(1150,80)"/> <wire from="(2170,50)" to="(2170,80)"/> <wire from="(240,110)" to="(500,110)"/> <wire from="(240,1000)" to="(240,1070)"/> <wire from="(450,2370)" to="(510,2370)"/> <wire from="(1830,160)" to="(1830,190)"/> <wire from="(1250,540)" to="(1250,560)"/> <wire from="(1510,160)" to="(1510,190)"/> <wire from="(1890,540)" to="(1890,560)"/> <wire from="(1190,160)" to="(1190,190)"/> <wire from="(1570,540)" to="(1570,560)"/> <wire from="(150,1510)" to="(260,1510)"/> <wire from="(550,2170)" to="(590,2170)"/> <wire from="(300,1020)" to="(410,1020)"/> <wire from="(640,1680)" to="(750,1680)"/> <wire from="(560,1410)" to="(800,1410)"/> <wire from="(220,1840)" to="(260,1840)"/> <wire from="(450,2070)" to="(490,2070)"/> <wire from="(450,810)" to="(800,810)"/> <wire from="(240,1560)" to="(260,1560)"/> <wire from="(390,1070)" to="(410,1070)"/> <wire from="(320,890)" to="(320,930)"/> <wire from="(2210,540)" to="(2210,560)"/> <wire from="(680,290)" to="(680,350)"/> <wire from="(500,110)" to="(500,170)"/> <wire from="(2150,160)" to="(2150,190)"/> <wire from="(450,1980)" to="(650,1980)"/> <wire from="(1910,50)" to="(1910,80)"/> <wire from="(1870,100)" to="(1910,100)"/> <wire from="(1590,50)" to="(1590,80)"/> <wire from="(1230,100)" to="(1270,100)"/> <wire from="(1270,50)" to="(1270,80)"/> <wire from="(1550,100)" to="(1590,100)"/> <wire from="(370,1320)" to="(370,1530)"/> <wire from="(300,1680)" to="(590,1680)"/> <wire from="(440,270)" to="(480,270)"/> <wire from="(480,310)" to="(520,310)"/> <wire from="(300,1300)" to="(520,1300)"/> <wire from="(690,3100)" to="(710,3100)"/> <wire from="(300,790)" to="(320,790)"/> <wire from="(240,1690)" to="(260,1690)"/> <wire from="(240,2010)" to="(260,2010)"/> <wire from="(440,290)" to="(460,290)"/> <wire from="(500,350)" to="(520,350)"/> <wire from="(2190,100)" to="(2230,100)"/> <wire from="(2230,50)" to="(2230,80)"/> <wire from="(390,2370)" to="(390,2440)"/> <wire from="(1770,450)" to="(1810,450)"/> <wire from="(1830,100)" to="(1830,130)"/> <wire from="(180,3130)" to="(370,3130)"/> <wire from="(2090,450)" to="(2130,450)"/> <wire from="(620,1830)" to="(620,1960)"/> <wire from="(1510,100)" to="(1510,130)"/> <wire from="(1130,450)" to="(1170,450)"/> <wire from="(1190,100)" to="(1190,130)"/> <wire from="(1450,450)" to="(1490,450)"/> <wire from="(2310,50)" to="(2330,50)"/> <wire from="(180,810)" to="(180,3130)"/> <wire from="(2370,500)" to="(2450,500)"/> <wire from="(300,2880)" to="(410,2880)"/> <wire from="(320,2430)" to="(320,2460)"/> <wire from="(990,540)" to="(990,560)"/> <wire from="(1090,500)" to="(1170,500)"/> <wire from="(1030,50)" to="(1050,50)"/> <wire from="(380,670)" to="(410,670)"/> <wire from="(1410,500)" to="(1490,500)"/> <wire from="(240,860)" to="(260,860)"/> <wire from="(1730,500)" to="(1810,500)"/> <wire from="(2050,500)" to="(2130,500)"/> <wire from="(1990,50)" to="(2010,50)"/> <wire from="(1670,50)" to="(1690,50)"/> <wire from="(680,230)" to="(680,290)"/> <wire from="(250,2680)" to="(250,2730)"/> <wire from="(1350,50)" to="(1370,50)"/> <wire from="(150,1810)" to="(220,1810)"/> <wire from="(500,3110)" to="(580,3110)"/> <wire from="(540,3290)" to="(540,3340)"/> <wire from="(2470,100)" to="(2470,130)"/> <wire from="(2410,450)" to="(2450,450)"/> <wire from="(2150,100)" to="(2150,130)"/> <comp lib="6" loc="(140,2576)" name="Text"> <a name="text" val="241"/> </comp> <comp lib="6" loc="(334,2144)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp lib="6" loc="(138,1795)" name="Text"> <a name="text" val="279"/> </comp> <comp lib="4" loc="(300,2000)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(907,429)" name="Text"> <a name="text" val="H5''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp loc="(300,2580)" name="D-latch"/> <comp lib="0" loc="(800,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H1''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(906,189)" name="Text"> <a name="text" val="H1''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(150,2660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> </comp> <comp loc="(450,730)" name="D-latch"/> <comp lib="4" loc="(590,2290)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(300,1290)" name="D-latch"/> <comp lib="1" loc="(780,2790)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> </comp> <comp loc="(300,1150)" name="D-latch"/> <comp lib="0" loc="(150,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> </comp> <comp lib="6" loc="(139,2184)" name="Text"> <a name="text" val="328"/> </comp> <comp loc="(560,300)" name="D-latch"/> <comp lib="6" loc="(141,1003)" name="Text"> <a name="text" val="0-63"/> </comp> <comp lib="1" loc="(640,1680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(800,1360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TA"/> <a name="labelloc" val="east"/> </comp> <comp loc="(740,360)" name="D-latch"/> <comp lib="6" loc="(906,369)" name="Text"> <a name="text" val="H4''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(150,2350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> </comp> <comp lib="0" loc="(150,3260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V8"/> </comp> <comp lib="6" loc="(127,2235)" name="Text"> <a name="text" val="VPOS control"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(140,1355)" name="Text"> <a name="text" val="4/5"/> </comp> <comp lib="0" loc="(800,600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/EV"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,3030)" name="D-latch"/> <comp lib="6" loc="(139,1425)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="0" loc="(800,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1080)" name="D-latch"/> <comp lib="1" loc="(360,1530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(300,1680)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,1970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(800,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0''"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(370,880)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(344,2584)" name="Text"> <a name="text" val="/VSET"/> </comp> <comp lib="6" loc="(629,67)" name="Text"> <a name="text" val="DELAYED H"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp lib="1" loc="(350,1840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(800,3050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VC"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,660)" name="D-latch"/> <comp lib="0" loc="(150,1890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> </comp> <comp lib="0" loc="(800,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,1090)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(137,2333)" name="Text"> <a name="text" val="247"/> </comp> <comp lib="6" loc="(140,1146)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="6" loc="(138,1871)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="1" loc="(310,2430)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(139,583)" name="Text"> <a name="text" val="65"/> </comp> <comp lib="1" loc="(310,2510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(740,240)" name="D-latch"/> <comp loc="(450,870)" name="D-latch"/> <comp lib="6" loc="(139,1953)" name="Text"> <a name="text" val="323"/> </comp> <comp lib="0" loc="(150,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> </comp> <comp lib="0" loc="(150,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> </comp> <comp loc="(740,120)" name="D-latch"/> <comp lib="4" loc="(300,2150)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,2120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> </comp> <comp lib="0" loc="(150,2590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> </comp> <comp loc="(450,2380)" name="D-latch"/> <comp lib="0" loc="(800,950)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(138,2254)" name="Text"> <a name="text" val="244"/> </comp> <comp loc="(450,1990)" name="D-latch"/> <comp loc="(300,730)" name="D-latch"/> <comp lib="6" loc="(909,520)" name="Text"> <a name="text" val="/H1'"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(150,2050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> </comp> <comp lib="0" loc="(150,1650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> </comp> <comp loc="(450,2450)" name="D-latch"/> <comp lib="0" loc="(420,310)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="1" loc="(580,640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(140,2715)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(150,1970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> </comp> <comp lib="0" loc="(800,1690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> </comp> <comp lib="1" loc="(370,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> </comp> <comp lib="0" loc="(800,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H5''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(137,563)" name="Text"> <a name="text" val="HPOS control"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(510,2300)" name="Constant"/> <comp lib="1" loc="(780,3050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> </comp> <comp lib="0" loc="(150,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> </comp> <comp loc="(450,1010)" name="D-latch"/> <comp lib="0" loc="(800,3210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VIN"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,940)" name="D-latch"/> <comp loc="(300,1010)" name="D-latch"/> <comp loc="(300,800)" name="D-latch"/> <comp lib="4" loc="(410,3290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(800,2590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VSET"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1360)" name="D-latch"/> <comp lib="6" loc="(140,2504)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="1" loc="(790,1690)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(560,360)" name="D-latch"/> <comp lib="6" loc="(493,3020)" name="Text"> <a name="text" val="HV COUNTER CONTROL"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp loc="(300,1430)" name="D-latch"/> <comp lib="0" loc="(800,1970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BURST"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(704,2838)" name="Text"> <a name="text" val="BLACK"/> </comp> <comp loc="(560,240)" name="D-latch"/> <comp lib="6" loc="(235,3324)" name="Text"> <a name="text" val="EVEN/ODD flip/flop"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(300,870)" name="D-latch"/> <comp loc="(450,1220)" name="D-latch"/> <comp lib="0" loc="(800,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,2380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,3130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(300,1500)" name="D-latch"/> <comp lib="1" loc="(560,1830)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> </comp> <comp lib="1" loc="(540,2380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(138,1073)" name="Text"> <a name="text" val="256-319"/> </comp> <comp lib="0" loc="(150,2440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> </comp> <comp lib="6" loc="(325,2382)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp lib="0" loc="(150,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> </comp> <comp lib="0" loc="(150,3210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> </comp> <comp loc="(450,1150)" name="D-latch"/> <comp lib="6" loc="(139,935)" name="Text"> <a name="text" val="255"/> </comp> <comp lib="0" loc="(800,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(470,2224)" name="Text"> <a name="text" val="/HB"/> </comp> <comp loc="(740,180)" name="D-latch"/> <comp lib="6" loc="(139,1715)" name="Text"> <a name="text" val="304"/> </comp> <comp lib="0" loc="(150,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> </comp> <comp lib="6" loc="(138,2862)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="0" loc="(800,3120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/HPOS"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1570)" name="D-latch"/> <comp lib="0" loc="(150,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> </comp> <comp loc="(450,1520)" name="D-latch"/> <comp lib="6" loc="(139,3192)" name="Text"> <a name="text" val="340"/> </comp> <comp loc="(450,2870)" name="D-latch"/> <comp lib="6" loc="(907,131)" name="Text"> <a name="text" val="H0''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp loc="(450,2080)" name="D-latch"/> <comp lib="4" loc="(300,1840)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,1580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> </comp> <comp lib="1" loc="(560,1310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(300,2660)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,3370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(917,70)" name="Text"> <a name="text" val="PCLK"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="1" loc="(390,3100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(560,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(141,1564)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(150,2270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> </comp> <comp lib="0" loc="(150,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> </comp> <comp lib="1" loc="(560,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(143,1493)" name="Text"> <a name="text" val="320-355"/> </comp> <comp lib="6" loc="(907,248)" name="Text"> <a name="text" val="H2''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(705,1711)" name="Text"> <a name="text" val="BLACK"/> </comp> <comp lib="6" loc="(137,2786)" name="Text"> <a name="text" val="261"/> </comp> <comp lib="1" loc="(580,710)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> </comp> <comp lib="6" loc="(310,2120)" name="Text"> <a name="text" val="Back porch flip/flop"/> </comp> <comp lib="0" loc="(150,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> </comp> <comp lib="0" loc="(170,110)" name="Splitter"/> <comp lib="6" loc="(541,1675)" name="Text"> <a name="text" val="/HB"/> </comp> <comp lib="4" loc="(370,2460)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(140,792)" name="Text"> <a name="text" val="339"/> </comp> <comp loc="(450,660)" name="D-latch"/> <comp lib="0" loc="(800,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0'"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(310,2470)" name="Constant"/> <comp lib="0" loc="(150,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> </comp> <comp loc="(560,120)" name="D-latch"/> <comp lib="0" loc="(800,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H4''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(138,2424)" name="Text"> <a name="text" val="241"/> </comp> <comp lib="0" loc="(800,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/FO"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(909,558)" name="Text"> <a name="text" val="/H2'"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp loc="(740,420)" name="D-latch"/> <comp lib="0" loc="(800,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H3''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(141,1215)" name="Text"> <a name="text" val="0/1"/> </comp> <comp loc="(300,1080)" name="D-latch"/> <comp lib="0" loc="(800,2680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(337,1825)" name="Text"> <a name="text" val="/FPORCH"/> <a name="font" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(139,2646)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="6" loc="(141,867)" name="Text"> <a name="text" val="63"/> </comp> <comp lib="1" loc="(620,3120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(140,1284)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="0" loc="(150,2730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> </comp> <comp loc="(450,1830)" name="D-latch"/> <comp lib="1" loc="(510,2260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(140,2104)" name="Text"> <a name="text" val="270"/> </comp> <comp lib="6" loc="(139,1634)" name="Text"> <a name="text" val="279"/> </comp> <comp loc="(300,590)" name="D-latch"/> <comp lib="0" loc="(150,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> </comp> <comp loc="(450,800)" name="D-latch"/> <comp lib="1" loc="(470,3290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(147,720)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(190,330)" name="Pin"> <a name="width" val="6"/> <a name="tristate" val="false"/> <a name="label" val="Hnn"/> </comp> <comp lib="4" loc="(300,2780)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(560,420)" name="D-latch"/> <comp lib="0" loc="(150,2960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> </comp> <comp loc="(300,940)" name="D-latch"/> <comp lib="6" loc="(139,2037)" name="Text"> <a name="text" val="308"/> </comp> <comp lib="0" loc="(800,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(510,2340)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(800,3150)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CFG"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(905,480)" name="Text"> <a name="text" val="H0'"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp loc="(740,300)" name="D-latch"/> <comp lib="0" loc="(800,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> <a name="labelloc" val="east"/> </comp> <comp loc="(690,3110)" name="D-latch"/> <comp lib="0" loc="(150,2520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> </comp> <comp lib="0" loc="(800,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H1'"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(906,308)" name="Text"> <a name="text" val="H3''"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="4" loc="(520,3290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,2880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> </comp> <comp lib="0" loc="(800,2790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1220)" name="D-latch"/> <comp lib="0" loc="(150,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> </comp> <comp lib="0" loc="(150,1300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> </comp> <comp loc="(560,180)" name="D-latch"/> <comp lib="6" loc="(163,650)" name="Text"> <a name="text" val="0-7, 256-263"/> </comp> <comp lib="6" loc="(315,1789)" name="Text"> <a name="text" val="Front porch RS flip/flop"/> </comp> <comp lib="0" loc="(800,2880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,2870)" name="D-latch"/> <comp lib="6" loc="(516,2069)" name="Text"> <a name="text" val="VSYNC"/> </comp> <comp lib="1" loc="(510,2180)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,2800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> </comp> <comp loc="(450,590)" name="D-latch"/> <comp loc="(300,1360)" name="D-latch"/> <comp lib="0" loc="(800,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H2''"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1430)" name="D-latch"/> <comp lib="0" loc="(800,3180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="E_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(800,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H2'"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(480,3130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(800,1830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="CONTROL_UNIT_PAL"> <a name="circuit" val="CONTROL_UNIT_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M54,51 Q58,61 62,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffa029" height="520" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="459" y="114">HC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="456" y="475">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="559">/PICTURE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="372" y="559">H4''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="458" y="253">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="234">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="75">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="153">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="436" y="194">ZOMG_PAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="392" y="543">H5''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="374">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="559">/VSET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="415">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="558">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="274">S/EV</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="259" y="324">CONTROL UNIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="560">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="214">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="353">F/TA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="559">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="432" y="544">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="458" y="394">/FO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="459" y="95">VC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="194" y="74">HPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="333">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="559">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="294">SC/CNT</text> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="66"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="154">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="314">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="174">BLACK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="452" y="134">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="292" y="559">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="411" y="559">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="174">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="312" y="543">H1''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="434">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="395" y="75">VPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="559">H2''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="494">0/HPOS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="351" y="544">H3''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="74">VIN</text> <circ-port height="8" pin="150,80" width="8" x="46" y="66"/> <circ-port height="8" pin="190,260" width="8" x="326" y="46"/> <circ-port height="8" pin="150,500" width="8" x="46" y="126"/> <circ-port height="8" pin="150,540" width="8" x="46" y="146"/> <circ-port height="8" pin="150,620" width="8" x="96" y="46"/> <circ-port height="8" pin="150,700" width="8" x="106" y="46"/> <circ-port height="8" pin="150,780" width="8" x="116" y="46"/> <circ-port height="8" pin="150,850" width="8" x="126" y="46"/> <circ-port height="8" pin="150,920" width="8" x="136" y="46"/> <circ-port height="8" pin="150,1000" width="8" x="146" y="46"/> <circ-port height="8" pin="150,1070" width="8" x="156" y="46"/> <circ-port height="8" pin="150,1140" width="8" x="166" y="46"/> <circ-port height="8" pin="150,1210" width="8" x="176" y="46"/> <circ-port height="8" pin="150,1280" width="8" x="186" y="46"/> <circ-port height="8" pin="150,1350" width="8" x="236" y="46"/> <circ-port height="8" pin="150,1420" width="8" x="206" y="46"/> <circ-port height="8" pin="150,1490" width="8" x="196" y="46"/> <circ-port height="8" pin="150,1560" width="8" x="216" y="46"/> <circ-port height="8" pin="150,1630" width="8" x="226" y="46"/> <circ-port height="8" pin="150,1700" width="8" x="266" y="46"/> <circ-port height="8" pin="150,1780" width="8" x="276" y="46"/> <circ-port height="8" pin="150,1850" width="8" x="76" y="46"/> <circ-port height="8" pin="150,1930" width="8" x="86" y="46"/> <circ-port height="8" pin="150,2020" width="8" x="286" y="46"/> <circ-port height="8" pin="150,2100" width="8" x="296" y="46"/> <circ-port height="8" pin="150,2180" width="8" x="246" y="46"/> <circ-port height="8" pin="150,2260" width="8" x="256" y="46"/> <circ-port height="8" pin="150,2340" width="8" x="356" y="46"/> <circ-port height="8" pin="150,2420" width="8" x="346" y="46"/> <circ-port height="8" pin="150,2520" width="8" x="376" y="46"/> <circ-port height="8" pin="150,2600" width="8" x="366" y="46"/> <circ-port height="8" pin="150,2680" width="8" x="386" y="46"/> <circ-port height="8" pin="150,2760" width="8" x="396" y="46"/> <circ-port height="8" pin="150,2840" width="8" x="406" y="46"/> <circ-port height="8" pin="150,2920" width="8" x="416" y="46"/> <circ-port height="8" pin="150,3060" width="8" x="426" y="46"/> <circ-port height="8" pin="150,2990" width="8" x="46" y="166"/> <circ-port height="8" pin="150,3130" width="8" x="306" y="46"/> <circ-port height="8" pin="150,3340" width="8" x="436" y="46"/> <circ-port height="10" pin="730,130" width="10" x="285" y="565"/> <circ-port height="10" pin="730,190" width="10" x="305" y="565"/> <circ-port height="10" pin="730,250" width="10" x="325" y="565"/> <circ-port height="10" pin="730,310" width="10" x="345" y="565"/> <circ-port height="10" pin="730,370" width="10" x="365" y="565"/> <circ-port height="10" pin="730,430" width="10" x="385" y="565"/> <circ-port height="10" pin="730,480" width="10" x="405" y="565"/> <circ-port height="10" pin="730,520" width="10" x="425" y="565"/> <circ-port height="10" pin="730,560" width="10" x="445" y="565"/> <circ-port height="10" pin="730,620" width="10" x="475" y="265"/> <circ-port height="10" pin="730,670" width="10" x="475" y="145"/> <circ-port height="10" pin="730,750" width="10" x="475" y="165"/> <circ-port height="10" pin="730,850" width="10" x="475" y="485"/> <circ-port height="10" pin="730,880" width="10" x="475" y="125"/> <circ-port height="10" pin="730,1000" width="10" x="475" y="465"/> <circ-port height="10" pin="730,1070" width="10" x="475" y="205"/> <circ-port height="10" pin="730,1140" width="10" x="475" y="405"/> <circ-port height="10" pin="730,1190" width="10" x="475" y="245"/> <circ-port height="10" pin="730,1260" width="10" x="475" y="305"/> <circ-port height="10" pin="730,1360" width="10" x="475" y="325"/> <circ-port height="10" pin="730,1410" width="10" x="475" y="345"/> <circ-port height="10" pin="730,1460" width="10" x="475" y="365"/> <circ-port height="10" pin="730,1580" width="10" x="475" y="385"/> <circ-port height="10" pin="730,1740" width="10" x="475" y="285"/> <circ-port height="10" pin="730,1870" width="10" x="135" y="565"/> <circ-port height="10" pin="730,2020" width="10" x="175" y="565"/> <circ-port height="10" pin="730,2480" width="10" x="235" y="565"/> <circ-port height="10" pin="730,2680" width="10" x="95" y="565"/> <circ-port height="10" pin="730,2760" width="10" x="65" y="565"/> <circ-port height="10" pin="730,2930" width="10" x="475" y="425"/> <circ-port height="10" pin="730,3060" width="10" x="475" y="225"/> <circ-port height="10" pin="730,3130" width="10" x="475" y="65"/> <circ-port height="10" pin="730,3190" width="10" x="475" y="105"/> <circ-port height="10" pin="730,3260" width="10" x="475" y="85"/> <circ-port height="10" pin="730,3350" width="10" x="475" y="185"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(460,370)" to="(520,370)"/> <wire from="(150,780)" to="(260,780)"/> <wire from="(150,620)" to="(260,620)"/> <wire from="(150,1420)" to="(260,1420)"/> <wire from="(310,1590)" to="(310,1610)"/> <wire from="(550,2240)" to="(590,2240)"/> <wire from="(150,3340)" to="(260,3340)"/> <wire from="(240,1740)" to="(240,1890)"/> <wire from="(690,1740)" to="(730,1740)"/> <wire from="(300,2050)" to="(410,2050)"/> <wire from="(380,700)" to="(380,730)"/> <wire from="(150,80)" to="(190,80)"/> <wire from="(220,2070)" to="(260,2070)"/> <wire from="(220,1750)" to="(260,1750)"/> <wire from="(220,2230)" to="(260,2230)"/> <wire from="(480,250)" to="(520,250)"/> <wire from="(450,3060)" to="(730,3060)"/> <wire from="(580,1460)" to="(730,1460)"/> <wire from="(490,1880)" to="(510,1880)"/> <wire from="(240,2060)" to="(240,2220)"/> <wire from="(240,1470)" to="(260,1470)"/> <wire from="(240,830)" to="(260,830)"/> <wire from="(310,740)" to="(330,740)"/> <wire from="(240,2910)" to="(260,2910)"/> <wire from="(390,980)" to="(410,980)"/> <wire from="(450,1140)" to="(730,1140)"/> <wire from="(560,110)" to="(630,110)"/> <wire from="(300,1540)" to="(310,1540)"/> <wire from="(640,3360)" to="(640,3410)"/> <wire from="(150,2100)" to="(220,2100)"/> <wire from="(150,1780)" to="(220,1780)"/> <wire from="(150,2260)" to="(220,2260)"/> <wire from="(510,350)" to="(510,410)"/> <wire from="(390,1190)" to="(390,1260)"/> <wire from="(360,2210)" to="(360,2470)"/> <wire from="(530,2450)" to="(530,2520)"/> <wire from="(150,1070)" to="(260,1070)"/> <wire from="(300,1350)" to="(540,1350)"/> <wire from="(490,2380)" to="(490,2410)"/> <wire from="(220,1880)" to="(260,1880)"/> <wire from="(300,2760)" to="(340,2760)"/> <wire from="(710,310)" to="(730,310)"/> <wire from="(630,2470)" to="(650,2470)"/> <wire from="(240,1120)" to="(260,1120)"/> <wire from="(150,2600)" to="(300,2600)"/> <wire from="(240,3040)" to="(260,3040)"/> <wire from="(390,3040)" to="(390,3340)"/> <wire from="(390,1860)" to="(390,2030)"/> <wire from="(790,40)" to="(790,590)"/> <wire from="(370,1580)" to="(380,1580)"/> <wire from="(240,110)" to="(510,110)"/> <wire from="(320,890)" to="(330,890)"/> <wire from="(490,140)" to="(490,190)"/> <wire from="(410,480)" to="(540,480)"/> <wire from="(630,110)" to="(630,480)"/> <wire from="(660,110)" to="(670,110)"/> <wire from="(610,2940)" to="(620,2940)"/> <wire from="(240,1330)" to="(240,1400)"/> <wire from="(440,140)" to="(490,140)"/> <wire from="(150,500)" to="(520,500)"/> <wire from="(540,590)" to="(790,590)"/> <wire from="(460,170)" to="(460,370)"/> <wire from="(380,1370)" to="(380,1580)"/> <wire from="(630,2490)" to="(630,2520)"/> <wire from="(390,680)" to="(390,760)"/> <wire from="(520,1420)" to="(520,1450)"/> <wire from="(190,260)" to="(420,260)"/> <wire from="(440,150)" to="(480,150)"/> <wire from="(240,3250)" to="(240,3350)"/> <wire from="(440,160)" to="(470,160)"/> <wire from="(520,1450)" to="(520,1560)"/> <wire from="(300,830)" to="(320,830)"/> <wire from="(240,1890)" to="(260,1890)"/> <wire from="(240,3170)" to="(260,3170)"/> <wire from="(440,170)" to="(460,170)"/> <wire from="(390,600)" to="(410,600)"/> <wire from="(390,760)" to="(410,760)"/> <wire from="(390,1400)" to="(410,1400)"/> <wire from="(390,1560)" to="(410,1560)"/> <wire from="(570,1730)" to="(600,1730)"/> <wire from="(560,2360)" to="(590,2360)"/> <wire from="(440,180)" to="(450,180)"/> <wire from="(510,410)" to="(520,410)"/> <wire from="(300,680)" to="(310,680)"/> <wire from="(240,3410)" to="(640,3410)"/> <wire from="(300,3190)" to="(560,3190)"/> <wire from="(510,290)" to="(510,350)"/> <wire from="(640,2940)" to="(650,2940)"/> <wire from="(240,980)" to="(240,1050)"/> <wire from="(610,190)" to="(610,520)"/> <wire from="(240,2770)" to="(240,2910)"/> <wire from="(360,2760)" to="(730,2760)"/> <wire from="(150,850)" to="(260,850)"/> <wire from="(150,1490)" to="(260,1490)"/> <wire from="(180,3060)" to="(180,3270)"/> <wire from="(300,1000)" to="(410,1000)"/> <wire from="(150,2340)" to="(440,2340)"/> <wire from="(470,2410)" to="(490,2410)"/> <wire from="(710,250)" to="(730,250)"/> <wire from="(540,480)" to="(540,590)"/> <wire from="(240,1540)" to="(260,1540)"/> <wire from="(240,2660)" to="(260,2660)"/> <wire from="(240,900)" to="(260,900)"/> <wire from="(560,250)" to="(590,250)"/> <wire from="(390,1050)" to="(410,1050)"/> <wire from="(300,1610)" to="(310,1610)"/> <wire from="(560,3190)" to="(560,3250)"/> <wire from="(240,3350)" to="(240,3410)"/> <wire from="(150,1850)" to="(220,1850)"/> <wire from="(330,2590)" to="(450,2590)"/> <wire from="(150,1140)" to="(260,1140)"/> <wire from="(560,3250)" to="(600,3250)"/> <wire from="(560,430)" to="(670,430)"/> <wire from="(220,2020)" to="(220,2050)"/> <wire from="(220,1700)" to="(220,1730)"/> <wire from="(220,2180)" to="(220,2210)"/> <wire from="(240,1190)" to="(260,1190)"/> <wire from="(420,2300)" to="(570,2300)"/> <wire from="(510,350)" to="(520,350)"/> <wire from="(300,780)" to="(310,780)"/> <wire from="(510,230)" to="(510,290)"/> <wire from="(240,2220)" to="(240,2660)"/> <wire from="(590,560)" to="(730,560)"/> <wire from="(240,1400)" to="(240,1470)"/> <wire from="(240,760)" to="(240,830)"/> <wire from="(530,3340)" to="(580,3340)"/> <wire from="(390,1260)" to="(390,1400)"/> <wire from="(590,2450)" to="(630,2450)"/> <wire from="(240,600)" to="(240,680)"/> <wire from="(630,480)" to="(730,480)"/> <wire from="(300,620)" to="(410,620)"/> <wire from="(300,1420)" to="(410,1420)"/> <wire from="(390,2030)" to="(390,2120)"/> <wire from="(560,3190)" to="(730,3190)"/> <wire from="(580,670)" to="(730,670)"/> <wire from="(710,190)" to="(730,190)"/> <wire from="(230,2900)" to="(260,2900)"/> <wire from="(490,2360)" to="(520,2360)"/> <wire from="(390,830)" to="(410,830)"/> <wire from="(390,1470)" to="(410,1470)"/> <wire from="(240,680)" to="(260,680)"/> <wire from="(660,350)" to="(660,410)"/> <wire from="(530,3160)" to="(530,3340)"/> <wire from="(240,1050)" to="(240,1120)"/> <wire from="(580,480)" to="(630,480)"/> <wire from="(390,2120)" to="(390,2450)"/> <wire from="(210,80)" to="(390,80)"/> <wire from="(150,920)" to="(260,920)"/> <wire from="(150,1560)" to="(260,1560)"/> <wire from="(150,2680)" to="(260,2680)"/> <wire from="(620,3250)" to="(660,3250)"/> <wire from="(300,2680)" to="(730,2680)"/> <wire from="(450,2510)" to="(450,2540)"/> <wire from="(300,1070)" to="(410,1070)"/> <wire from="(560,370)" to="(670,370)"/> <wire from="(220,2050)" to="(260,2050)"/> <wire from="(220,1730)" to="(260,1730)"/> <wire from="(220,2210)" to="(260,2210)"/> <wire from="(370,1880)" to="(410,1880)"/> <wire from="(450,2120)" to="(490,2120)"/> <wire from="(450,760)" to="(540,760)"/> <wire from="(450,1400)" to="(540,1400)"/> <wire from="(390,880)" to="(390,980)"/> <wire from="(380,780)" to="(410,780)"/> <wire from="(380,1580)" to="(410,1580)"/> <wire from="(230,3190)" to="(260,3190)"/> <wire from="(240,1610)" to="(260,1610)"/> <wire from="(310,720)" to="(330,720)"/> <wire from="(240,110)" to="(240,600)"/> <wire from="(390,1120)" to="(410,1120)"/> <wire from="(390,3040)" to="(410,3040)"/> <wire from="(510,290)" to="(520,290)"/> <wire from="(180,3060)" to="(260,3060)"/> <wire from="(510,170)" to="(510,230)"/> <wire from="(450,2030)" to="(650,2030)"/> <wire from="(500,540)" to="(500,740)"/> <wire from="(150,1210)" to="(260,1210)"/> <wire from="(470,160)" to="(470,310)"/> <wire from="(280,2500)" to="(280,2580)"/> <wire from="(640,3310)" to="(640,3340)"/> <wire from="(420,2320)" to="(420,2400)"/> <wire from="(310,1540)" to="(310,1570)"/> <wire from="(280,2470)" to="(280,2500)"/> <wire from="(400,2140)" to="(400,2230)"/> <wire from="(580,1410)" to="(730,1410)"/> <wire from="(300,2920)" to="(650,2920)"/> <wire from="(710,130)" to="(730,130)"/> <wire from="(240,1260)" to="(260,1260)"/> <wire from="(240,2060)" to="(260,2060)"/> <wire from="(240,1740)" to="(260,1740)"/> <wire from="(240,2220)" to="(260,2220)"/> <wire from="(280,2580)" to="(300,2580)"/> <wire from="(420,2400)" to="(440,2400)"/> <wire from="(310,740)" to="(310,780)"/> <wire from="(150,2840)" to="(230,2840)"/> <wire from="(390,80)" to="(660,80)"/> <wire from="(660,290)" to="(660,350)"/> <wire from="(660,410)" to="(670,410)"/> <wire from="(450,430)" to="(520,430)"/> <wire from="(390,980)" to="(390,1050)"/> <wire from="(300,2210)" to="(360,2210)"/> <wire from="(240,1470)" to="(240,1540)"/> <wire from="(240,830)" to="(240,900)"/> <wire from="(320,910)" to="(320,980)"/> <wire from="(470,310)" to="(520,310)"/> <wire from="(150,700)" to="(260,700)"/> <wire from="(590,2520)" to="(630,2520)"/> <wire from="(620,3350)" to="(660,3350)"/> <wire from="(400,2230)" to="(510,2230)"/> <wire from="(490,2330)" to="(490,2360)"/> <wire from="(300,850)" to="(410,850)"/> <wire from="(300,1490)" to="(410,1490)"/> <wire from="(560,310)" to="(670,310)"/> <wire from="(220,1900)" to="(220,1930)"/> <wire from="(450,2560)" to="(470,2560)"/> <wire from="(490,190)" to="(520,190)"/> <wire from="(520,500)" to="(520,660)"/> <wire from="(390,1860)" to="(410,1860)"/> <wire from="(510,230)" to="(520,230)"/> <wire from="(370,730)" to="(380,730)"/> <wire from="(150,2020)" to="(220,2020)"/> <wire from="(150,1700)" to="(220,1700)"/> <wire from="(150,2180)" to="(220,2180)"/> <wire from="(510,110)" to="(510,170)"/> <wire from="(240,1120)" to="(240,1190)"/> <wire from="(240,2910)" to="(240,3040)"/> <wire from="(210,100)" to="(210,110)"/> <wire from="(150,1630)" to="(260,1630)"/> <wire from="(300,3060)" to="(410,3060)"/> <wire from="(300,1140)" to="(410,1140)"/> <wire from="(450,1470)" to="(540,1470)"/> <wire from="(530,2450)" to="(550,2450)"/> <wire from="(230,2780)" to="(260,2780)"/> <wire from="(640,3360)" to="(660,3360)"/> <wire from="(690,2930)" to="(710,2930)"/> <wire from="(620,1730)" to="(650,1730)"/> <wire from="(310,1590)" to="(330,1590)"/> <wire from="(150,2520)" to="(300,2520)"/> <wire from="(390,1190)" to="(410,1190)"/> <wire from="(200,3130)" to="(730,3130)"/> <wire from="(710,2930)" to="(710,3160)"/> <wire from="(310,680)" to="(310,720)"/> <wire from="(450,1190)" to="(730,1190)"/> <wire from="(390,2450)" to="(530,2450)"/> <wire from="(660,230)" to="(660,290)"/> <wire from="(200,3130)" to="(200,3190)"/> <wire from="(230,2840)" to="(230,2900)"/> <wire from="(660,350)" to="(670,350)"/> <wire from="(390,760)" to="(390,830)"/> <wire from="(390,1400)" to="(390,1470)"/> <wire from="(530,3160)" to="(710,3160)"/> <wire from="(240,3040)" to="(240,3170)"/> <wire from="(150,3130)" to="(200,3130)"/> <wire from="(150,1280)" to="(260,1280)"/> <wire from="(510,2540)" to="(550,2540)"/> <wire from="(240,3170)" to="(240,3250)"/> <wire from="(390,600)" to="(390,680)"/> <wire from="(570,2220)" to="(570,2300)"/> <wire from="(180,3270)" to="(180,3360)"/> <wire from="(520,1450)" to="(540,1450)"/> <wire from="(300,900)" to="(330,900)"/> <wire from="(620,3310)" to="(640,3310)"/> <wire from="(240,1330)" to="(260,1330)"/> <wire from="(240,2770)" to="(260,2770)"/> <wire from="(240,3250)" to="(260,3250)"/> <wire from="(390,680)" to="(410,680)"/> <wire from="(390,2120)" to="(410,2120)"/> <wire from="(450,1000)" to="(730,1000)"/> <wire from="(510,170)" to="(520,170)"/> <wire from="(400,2140)" to="(410,2140)"/> <wire from="(590,2240)" to="(590,2360)"/> <wire from="(150,2990)" to="(610,2990)"/> <wire from="(490,1880)" to="(490,2120)"/> <wire from="(550,1870)" to="(630,1870)"/> <wire from="(590,250)" to="(590,560)"/> <wire from="(390,1050)" to="(390,1120)"/> <wire from="(240,1540)" to="(240,1610)"/> <wire from="(360,2470)" to="(550,2470)"/> <wire from="(610,190)" to="(670,190)"/> <wire from="(240,900)" to="(240,980)"/> <wire from="(220,1900)" to="(260,1900)"/> <wire from="(150,2420)" to="(440,2420)"/> <wire from="(300,3270)" to="(660,3270)"/> <wire from="(500,740)" to="(540,740)"/> <wire from="(570,1730)" to="(570,2220)"/> <wire from="(520,1420)" to="(540,1420)"/> <wire from="(470,2330)" to="(490,2330)"/> <wire from="(630,2490)" to="(650,2490)"/> <wire from="(630,2010)" to="(650,2010)"/> <wire from="(240,980)" to="(260,980)"/> <wire from="(240,2660)" to="(240,2770)"/> <wire from="(240,1890)" to="(240,2060)"/> <wire from="(700,3350)" to="(730,3350)"/> <wire from="(200,3190)" to="(210,3190)"/> <wire from="(320,910)" to="(330,910)"/> <wire from="(660,170)" to="(660,230)"/> <wire from="(440,130)" to="(520,130)"/> <wire from="(230,2780)" to="(230,2840)"/> <wire from="(150,1930)" to="(220,1930)"/> <wire from="(660,290)" to="(670,290)"/> <wire from="(240,1190)" to="(240,1260)"/> <wire from="(680,2480)" to="(730,2480)"/> <wire from="(330,2510)" to="(450,2510)"/> <wire from="(420,2300)" to="(420,2320)"/> <wire from="(690,2020)" to="(730,2020)"/> <wire from="(630,1870)" to="(730,1870)"/> <wire from="(300,1210)" to="(410,1210)"/> <wire from="(370,900)" to="(410,900)"/> <wire from="(150,540)" to="(500,540)"/> <wire from="(210,110)" to="(240,110)"/> <wire from="(480,150)" to="(480,250)"/> <wire from="(550,2220)" to="(570,2220)"/> <wire from="(530,2520)" to="(550,2520)"/> <wire from="(380,1370)" to="(540,1370)"/> <wire from="(240,3350)" to="(260,3350)"/> <wire from="(390,1260)" to="(410,1260)"/> <wire from="(390,3340)" to="(410,3340)"/> <wire from="(610,1750)" to="(610,2940)"/> <wire from="(450,620)" to="(730,620)"/> <wire from="(450,1260)" to="(730,1260)"/> <wire from="(450,1580)" to="(730,1580)"/> <wire from="(510,110)" to="(520,110)"/> <wire from="(180,3360)" to="(260,3360)"/> <wire from="(390,830)" to="(390,880)"/> <wire from="(590,250)" to="(670,250)"/> <wire from="(450,180)" to="(450,430)"/> <wire from="(450,1560)" to="(520,1560)"/> <wire from="(610,520)" to="(730,520)"/> <wire from="(390,80)" to="(390,600)"/> <wire from="(150,1350)" to="(260,1350)"/> <wire from="(610,1750)" to="(650,1750)"/> <wire from="(240,680)" to="(240,760)"/> <wire from="(220,2070)" to="(220,2100)"/> <wire from="(220,1750)" to="(220,1780)"/> <wire from="(220,2230)" to="(220,2260)"/> <wire from="(390,1470)" to="(390,1560)"/> <wire from="(150,3060)" to="(180,3060)"/> <wire from="(580,750)" to="(730,750)"/> <wire from="(440,2550)" to="(470,2550)"/> <wire from="(710,430)" to="(730,430)"/> <wire from="(240,1400)" to="(260,1400)"/> <wire from="(240,760)" to="(260,760)"/> <wire from="(300,980)" to="(320,980)"/> <wire from="(390,1560)" to="(390,1860)"/> <wire from="(390,2030)" to="(410,2030)"/> <wire from="(240,600)" to="(260,600)"/> <wire from="(450,1070)" to="(730,1070)"/> <wire from="(280,2470)" to="(360,2470)"/> <wire from="(660,110)" to="(660,170)"/> <wire from="(450,3360)" to="(580,3360)"/> <wire from="(300,1730)" to="(570,1730)"/> <wire from="(610,2940)" to="(610,2990)"/> <wire from="(660,230)" to="(670,230)"/> <wire from="(410,40)" to="(410,480)"/> <wire from="(420,190)" to="(420,260)"/> <wire from="(390,1120)" to="(390,1190)"/> <wire from="(450,1860)" to="(510,1860)"/> <wire from="(630,1870)" to="(630,2010)"/> <wire from="(470,2370)" to="(520,2370)"/> <wire from="(300,1880)" to="(350,1880)"/> <wire from="(150,1000)" to="(260,1000)"/> <wire from="(150,2920)" to="(260,2920)"/> <wire from="(150,2760)" to="(260,2760)"/> <wire from="(660,80)" to="(660,110)"/> <wire from="(560,130)" to="(670,130)"/> <wire from="(630,2450)" to="(630,2470)"/> <wire from="(450,680)" to="(540,680)"/> <wire from="(580,1360)" to="(730,1360)"/> <wire from="(450,2540)" to="(470,2540)"/> <wire from="(380,700)" to="(410,700)"/> <wire from="(580,3310)" to="(600,3310)"/> <wire from="(240,1050)" to="(260,1050)"/> <wire from="(390,880)" to="(410,880)"/> <wire from="(700,3260)" to="(730,3260)"/> <wire from="(450,880)" to="(730,880)"/> <wire from="(240,1260)" to="(240,1330)"/> <wire from="(410,40)" to="(790,40)"/> <wire from="(240,1610)" to="(240,1740)"/> <wire from="(560,190)" to="(610,190)"/> <wire from="(210,80)" to="(210,90)"/> <wire from="(390,2450)" to="(390,3040)"/> <wire from="(300,3360)" to="(410,3360)"/> <wire from="(450,2560)" to="(450,2590)"/> <wire from="(300,1280)" to="(410,1280)"/> <wire from="(220,1850)" to="(220,1880)"/> <wire from="(710,2930)" to="(730,2930)"/> <wire from="(520,660)" to="(540,660)"/> <wire from="(710,370)" to="(730,370)"/> <wire from="(640,3340)" to="(660,3340)"/> <wire from="(310,1570)" to="(330,1570)"/> <wire from="(280,2500)" to="(300,2500)"/> <wire from="(490,2380)" to="(520,2380)"/> <wire from="(420,2320)" to="(440,2320)"/> <wire from="(450,850)" to="(730,850)"/> <wire from="(180,3270)" to="(260,3270)"/> <wire from="(380,730)" to="(380,780)"/> <wire from="(320,830)" to="(320,890)"/> <wire from="(660,170)" to="(670,170)"/> <comp lib="6" loc="(165,3053)" name="Text"> <a name="text" val="311"/> </comp> <comp loc="(300,1410)" name="D-latch"/> <comp lib="0" loc="(730,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H1'"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(163,3326)" name="Text"> <a name="text" val="265"/> </comp> <comp lib="6" loc="(170,1696)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="6" loc="(79,2308)" name="Text"> <a name="text" val="VPOS control"/> </comp> <comp lib="0" loc="(150,3340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_9"/> </comp> <comp lib="0" loc="(730,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(510,2540)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(310,3183)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(620,1730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(181,1135)" name="Text"> <a name="text" val="256-319"/> </comp> <comp lib="0" loc="(730,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H5''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(517,2125)" name="Text"> <a name="text" val="VSYNC"/> </comp> <comp loc="(300,1270)" name="D-latch"/> <comp lib="4" loc="(300,2900)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(169,2335)" name="Text"> <a name="text" val="269"/> </comp> <comp lib="0" loc="(730,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H2'"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(690,2930)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,3310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> </comp> <comp lib="0" loc="(440,2550)" name="Constant"/> <comp loc="(710,300)" name="D-latch"/> <comp lib="4" loc="(300,2210)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> </comp> <comp loc="(300,2670)" name="D-latch"/> <comp loc="(450,770)" name="D-latch"/> <comp lib="6" loc="(332,2675)" name="Text"> <a name="text" val="/VSET"/> </comp> <comp loc="(300,1480)" name="D-latch"/> <comp lib="0" loc="(150,2920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> </comp> <comp lib="4" loc="(300,1880)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(300,1130)" name="D-latch"/> <comp lib="6" loc="(170,1776)" name="Text"> <a name="text" val="302"/> </comp> <comp loc="(710,240)" name="D-latch"/> <comp lib="1" loc="(690,1740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,3310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(181,1556)" name="Text"> <a name="text" val="320-355"/> </comp> <comp loc="(560,360)" name="D-latch"/> <comp lib="6" loc="(80,3099)" name="Text"> <a name="text" val="H/V control"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(322,2463)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp lib="0" loc="(150,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> </comp> <comp loc="(450,3350)" name="D-latch"/> <comp lib="0" loc="(150,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> </comp> <comp lib="0" loc="(730,2760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(171,2175)" name="Text"> <a name="text" val="256"/> </comp> <comp loc="(590,2460)" name="D-latch"/> <comp lib="6" loc="(172,2415)" name="Text"> <a name="text" val="272"/> </comp> <comp lib="1" loc="(370,1580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(170,1066)" name="Text"> <a name="text" val="0-63"/> </comp> <comp lib="4" loc="(300,1730)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(730,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0''"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> </comp> <comp lib="0" loc="(730,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H1''"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1340)" name="D-latch"/> <comp lib="0" loc="(150,1930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> </comp> <comp lib="6" loc="(312,2176)" name="Text"> <a name="text" val="Back porch flip/flop"/> </comp> <comp loc="(300,3050)" name="D-latch"/> <comp lib="0" loc="(150,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(167,1415)" name="Text"> <a name="text" val="4/5"/> </comp> <comp lib="6" loc="(640,1774)" name="Text"> <a name="text" val="BLACK"/> </comp> <comp lib="0" loc="(150,2260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> </comp> <comp lib="0" loc="(150,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> </comp> <comp loc="(300,1550)" name="D-latch"/> <comp lib="0" loc="(420,190)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="6" loc="(309,3262)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(150,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> </comp> <comp lib="0" loc="(150,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> </comp> <comp lib="6" loc="(176,1626)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(730,2680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VSET"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,1460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(450,2040)" name="D-latch"/> <comp lib="0" loc="(150,1700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> </comp> <comp lib="6" loc="(359,1863)" name="Text"> <a name="text" val="/FPORCH"/> <a name="font" val="SansSerif plain 10"/> </comp> <comp loc="(450,990)" name="D-latch"/> <comp loc="(450,610)" name="D-latch"/> <comp lib="6" loc="(599,67)" name="Text"> <a name="text" val="DELAYED H"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp lib="6" loc="(166,2755)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(150,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> </comp> <comp loc="(450,840)" name="D-latch"/> <comp lib="6" loc="(168,2593)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(170,844)" name="Text"> <a name="text" val="339"/> </comp> <comp lib="0" loc="(150,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> </comp> <comp loc="(300,3260)" name="D-latch"/> <comp loc="(300,3180)" name="D-latch"/> <comp lib="6" loc="(608,3238)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="0" loc="(150,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> </comp> <comp lib="0" loc="(730,3130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(167,2255)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(317,1829)" name="Text"> <a name="text" val="Front porch RS flip/flop"/> </comp> <comp loc="(710,360)" name="D-latch"/> <comp loc="(300,990)" name="D-latch"/> <comp lib="1" loc="(370,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(450,1060)" name="D-latch"/> <comp lib="6" loc="(171,2835)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(150,2600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> </comp> <comp lib="6" loc="(171,1925)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="6" loc="(610,3295)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="1" loc="(370,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(730,1740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,1580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/FO"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(700,3350)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(150,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> </comp> <comp lib="0" loc="(730,3260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> </comp> <comp lib="0" loc="(150,3130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> </comp> <comp lib="1" loc="(690,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,2760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(450,890)" name="D-latch"/> <comp lib="6" loc="(169,915)" name="Text"> <a name="text" val="63"/> </comp> <comp loc="(300,1060)" name="D-latch"/> <comp lib="0" loc="(730,2930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(169,2095)" name="Text"> <a name="text" val="306"/> </comp> <comp loc="(300,610)" name="D-latch"/> <comp lib="6" loc="(166,1484)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="0" loc="(730,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H2''"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,910)" name="D-latch"/> <comp loc="(450,1270)" name="D-latch"/> <comp lib="0" loc="(730,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> </comp> <comp loc="(300,1620)" name="D-latch"/> <comp loc="(560,300)" name="D-latch"/> <comp loc="(560,180)" name="D-latch"/> <comp lib="0" loc="(150,2180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> </comp> <comp loc="(450,1410)" name="D-latch"/> <comp lib="1" loc="(580,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> </comp> <comp lib="1" loc="(700,3260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp loc="(560,240)" name="D-latch"/> <comp lib="6" loc="(169,995)" name="Text"> <a name="text" val="255"/> </comp> <comp lib="0" loc="(150,1850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> </comp> <comp lib="0" loc="(150,2420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> </comp> <comp lib="0" loc="(150,3060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> </comp> <comp lib="6" loc="(170,2514)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(730,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> <a name="labelloc" val="east"/> </comp> <comp loc="(710,420)" name="D-latch"/> <comp lib="1" loc="(680,2480)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(580,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(300,770)" name="D-latch"/> <comp lib="0" loc="(150,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> </comp> <comp loc="(450,690)" name="D-latch"/> <comp loc="(300,840)" name="D-latch"/> <comp lib="6" loc="(190,696)" name="Text"> <a name="text" val="0-7,256-263"/> </comp> <comp lib="6" loc="(163,3118)" name="Text"> <a name="text" val="340"/> </comp> <comp loc="(590,2530)" name="D-latch"/> <comp lib="0" loc="(470,2370)" name="Constant"/> <comp loc="(450,1570)" name="D-latch"/> <comp lib="1" loc="(470,2330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(450,2130)" name="D-latch"/> <comp lib="6" loc="(339,2201)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp lib="1" loc="(330,2510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/HPOS"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,2410)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,1360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> </comp> <comp lib="0" loc="(730,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(640,2940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(730,1870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> <a name="labelloc" val="east"/> </comp> <comp loc="(710,180)" name="D-latch"/> <comp loc="(560,120)" name="D-latch"/> <comp lib="6" loc="(171,1845)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="4" loc="(300,2760)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(730,3350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZOMG_PAL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1480)" name="D-latch"/> <comp lib="6" loc="(170,2916)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="6" loc="(149,589)" name="Text"> <a name="text" val="HPOS control"/> </comp> <comp loc="(450,1130)" name="D-latch"/> <comp lib="0" loc="(730,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H4''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(174,1206)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(730,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> </comp> <comp lib="1" loc="(550,1870)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(174,775)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(730,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> </comp> <comp lib="0" loc="(190,80)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(580,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> </comp> <comp lib="4" loc="(300,3340)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(300,1200)" name="D-latch"/> <comp lib="6" loc="(171,2015)" name="Text"> <a name="text" val="321"/> </comp> <comp lib="0" loc="(150,2100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> </comp> <comp lib="0" loc="(150,2760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> </comp> <comp loc="(450,3050)" name="D-latch"/> <comp lib="6" loc="(433,2297)" name="Text"> <a name="text" val="/HB"/> </comp> <comp lib="0" loc="(730,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1200)" name="D-latch"/> <comp lib="6" loc="(166,614)" name="Text"> <a name="text" val="65"/> </comp> <comp lib="0" loc="(730,3060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,690)" name="D-latch"/> <comp lib="1" loc="(580,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(560,420)" name="D-latch"/> <comp lib="0" loc="(730,2480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(217,3212)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(150,1560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> </comp> <comp lib="0" loc="(150,2020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> </comp> <comp lib="0" loc="(190,260)" name="Pin"> <a name="width" val="6"/> <a name="tristate" val="false"/> <a name="label" val="Hnn"/> </comp> <comp lib="1" loc="(370,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,3190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HC"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(395,3354)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="4" loc="(300,2050)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(450,1870)" name="D-latch"/> <comp lib="1" loc="(510,2230)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0'"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(560,2360)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,1280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> </comp> <comp lib="6" loc="(168,1277)" name="Text"> <a name="text" val="0/1"/> </comp> <comp lib="1" loc="(620,3350)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(730,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H3''"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,2590)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,2990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> </comp> <comp lib="1" loc="(620,3250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(541,1725)" name="Text"> <a name="text" val="/HB"/> </comp> <comp lib="0" loc="(730,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BURST"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> </comp> <comp lib="1" loc="(580,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,2340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> </comp> <comp lib="6" loc="(172,2675)" name="Text"> <a name="text" val="241"/> </comp> <comp loc="(710,120)" name="D-latch"/> <comp lib="0" loc="(730,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(168,1345)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="1" loc="(230,3190)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="REGISTER_SELECT"> <a name="circuit" val="REGISTER_SELECT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff5e9c" height="241" stroke="#000000" stroke-width="2" width="240" x="50" y="49"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="43">REGISTER SELECT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="105">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="125">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="144">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="165">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="204">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="265">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="273" y="63">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="85">/W7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="104">/W4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="273" y="124">/R4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="144">/W3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="272" y="164">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="184">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="204">/W6.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="267" y="225">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="244">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="264">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="284">/W1</text> <circ-port height="8" pin="70,90" width="8" x="46" y="196"/> <circ-port height="8" pin="70,320" width="8" x="46" y="256"/> <circ-port height="8" pin="70,370" width="8" x="46" y="116"/> <circ-port height="8" pin="70,420" width="8" x="46" y="136"/> <circ-port height="8" pin="70,470" width="8" x="46" y="156"/> <circ-port height="8" pin="70,520" width="8" x="46" y="96"/> <circ-port height="10" pin="560,720" width="10" x="285" y="175"/> <circ-port height="10" pin="560,770" width="10" x="285" y="195"/> <circ-port height="10" pin="560,620" width="10" x="285" y="215"/> <circ-port height="10" pin="560,670" width="10" x="285" y="235"/> <circ-port height="10" pin="560,940" width="10" x="285" y="55"/> <circ-port height="10" pin="560,810" width="10" x="285" y="75"/> <circ-port height="10" pin="560,580" width="10" x="285" y="95"/> <circ-port height="10" pin="560,540" width="10" x="285" y="135"/> <circ-port height="10" pin="560,850" width="10" x="285" y="155"/> <circ-port height="10" pin="560,500" width="10" x="285" y="275"/> <circ-port height="10" pin="560,460" width="10" x="285" y="255"/> <circ-port height="10" pin="560,890" width="10" x="285" y="115"/> <circ-anchor facing="east" height="6" width="6" x="287" y="47"/> </appear> <wire from="(500,770)" to="(560,770)"/> <wire from="(410,730)" to="(460,730)"/> <wire from="(310,590)" to="(310,610)"/> <wire from="(330,850)" to="(330,870)"/> <wire from="(230,460)" to="(230,540)"/> <wire from="(270,460)" to="(270,540)"/> <wire from="(120,440)" to="(120,460)"/> <wire from="(70,320)" to="(300,320)"/> <wire from="(90,210)" to="(90,240)"/> <wire from="(510,160)" to="(550,160)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(260,210)" to="(280,210)"/> <wire from="(90,370)" to="(90,410)"/> <wire from="(290,600)" to="(290,710)"/> <wire from="(510,260)" to="(530,260)"/> <wire from="(440,710)" to="(460,710)"/> <wire from="(510,140)" to="(530,140)"/> <wire from="(350,350)" to="(350,390)"/> <wire from="(150,190)" to="(160,190)"/> <wire from="(250,870)" to="(330,870)"/> <wire from="(70,90)" to="(530,90)"/> <wire from="(90,410)" to="(100,410)"/> <wire from="(530,90)" to="(530,140)"/> <wire from="(390,780)" to="(460,780)"/> <wire from="(350,350)" to="(550,350)"/> <wire from="(410,190)" to="(410,630)"/> <wire from="(250,570)" to="(310,570)"/> <wire from="(500,620)" to="(560,620)"/> <wire from="(270,610)" to="(270,810)"/> <wire from="(120,280)" to="(230,280)"/> <wire from="(280,240)" to="(390,240)"/> <wire from="(340,710)" to="(440,710)"/> <wire from="(280,210)" to="(280,240)"/> <wire from="(250,550)" to="(290,550)"/> <wire from="(180,150)" to="(470,150)"/> <wire from="(340,430)" to="(340,710)"/> <wire from="(70,420)" to="(100,420)"/> <wire from="(90,150)" to="(180,150)"/> <wire from="(250,610)" to="(270,610)"/> <wire from="(180,150)" to="(180,190)"/> <wire from="(250,890)" to="(460,890)"/> <wire from="(440,760)" to="(460,760)"/> <wire from="(70,470)" to="(90,470)"/> <wire from="(90,210)" to="(110,210)"/> <wire from="(260,190)" to="(410,190)"/> <wire from="(360,430)" to="(360,610)"/> <wire from="(140,810)" to="(220,810)"/> <wire from="(250,920)" to="(330,920)"/> <wire from="(180,190)" to="(190,190)"/> <wire from="(440,610)" to="(440,660)"/> <wire from="(290,500)" to="(290,550)"/> <wire from="(490,810)" to="(560,810)"/> <wire from="(490,890)" to="(560,890)"/> <wire from="(500,670)" to="(560,670)"/> <wire from="(160,210)" to="(220,210)"/> <wire from="(270,810)" to="(460,810)"/> <wire from="(410,630)" to="(460,630)"/> <wire from="(290,710)" to="(340,710)"/> <wire from="(310,610)" to="(360,610)"/> <wire from="(220,520)" to="(220,540)"/> <wire from="(250,600)" to="(290,600)"/> <wire from="(140,520)" to="(140,810)"/> <wire from="(390,680)" to="(390,780)"/> <wire from="(250,540)" to="(270,540)"/> <wire from="(280,290)" to="(300,290)"/> <wire from="(90,430)" to="(90,470)"/> <wire from="(90,150)" to="(90,190)"/> <wire from="(440,610)" to="(460,610)"/> <wire from="(250,580)" to="(460,580)"/> <wire from="(530,850)" to="(560,850)"/> <wire from="(510,280)" to="(530,280)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(530,140)" to="(530,260)"/> <wire from="(210,190)" to="(220,190)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(70,520)" to="(140,520)"/> <wire from="(330,850)" to="(460,850)"/> <wire from="(390,680)" to="(460,680)"/> <wire from="(120,220)" to="(120,280)"/> <wire from="(490,940)" to="(560,940)"/> <wire from="(490,540)" to="(560,540)"/> <wire from="(490,460)" to="(560,460)"/> <wire from="(490,500)" to="(560,500)"/> <wire from="(490,580)" to="(560,580)"/> <wire from="(250,590)" to="(310,590)"/> <wire from="(90,240)" to="(280,240)"/> <wire from="(500,720)" to="(560,720)"/> <wire from="(280,270)" to="(470,270)"/> <wire from="(270,460)" to="(460,460)"/> <wire from="(120,460)" to="(230,460)"/> <wire from="(330,920)" to="(330,940)"/> <wire from="(290,500)" to="(460,500)"/> <wire from="(160,190)" to="(160,210)"/> <wire from="(310,540)" to="(310,570)"/> <wire from="(300,290)" to="(300,320)"/> <wire from="(490,850)" to="(530,850)"/> <wire from="(190,520)" to="(220,520)"/> <wire from="(410,630)" to="(410,730)"/> <wire from="(440,660)" to="(460,660)"/> <wire from="(220,810)" to="(220,850)"/> <wire from="(90,190)" to="(110,190)"/> <wire from="(70,370)" to="(90,370)"/> <wire from="(310,540)" to="(460,540)"/> <wire from="(530,280)" to="(530,850)"/> <wire from="(230,540)" to="(230,850)"/> <wire from="(440,710)" to="(440,760)"/> <wire from="(360,610)" to="(440,610)"/> <wire from="(550,160)" to="(550,350)"/> <wire from="(330,940)" to="(460,940)"/> <wire from="(390,240)" to="(390,680)"/> <wire from="(230,220)" to="(230,280)"/> <comp lib="0" loc="(560,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(190,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,390)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(250,280)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,770)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,890)" name="NOT Gate"/> <comp lib="6" loc="(379,233)" name="Text"> <a name="text" val="2ND"/> </comp> <comp lib="2" loc="(230,540)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(560,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS0"/> </comp> <comp lib="0" loc="(560,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS2"/> </comp> <comp lib="0" loc="(70,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(70,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS1"/> </comp> <comp lib="1" loc="(490,460)" name="NOT Gate"/> <comp lib="1" loc="(500,670)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W6.1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,620)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,850)" name="NOT Gate"/> <comp lib="1" loc="(500,720)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(196,897)" name="Text"> <a name="text" val="R"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(491,251)" name="Text"> <a name="text" val="R2"/> </comp> <comp lib="0" loc="(560,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,270)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(210,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(186,134)" name="Text"> <a name="text" val="$2005/$2006 first/second write latch"/> </comp> <comp lib="0" loc="(70,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(399,182)" name="Text"> <a name="text" val="1ST"/> </comp> <comp lib="0" loc="(560,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W5.2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,540)" name="NOT Gate"/> <comp lib="6" loc="(493,131)" name="Text"> <a name="text" val="W5/6"/> </comp> <comp lib="0" loc="(560,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,940)" name="NOT Gate"/> <comp lib="0" loc="(70,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="1" loc="(490,500)" name="NOT Gate"/> <comp lib="1" loc="(490,810)" name="NOT Gate"/> <comp lib="4" loc="(260,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(196,588)" name="Text"> <a name="text" val="W"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W6.2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(150,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(230,850)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(560,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(490,580)" name="NOT Gate"/> <comp lib="0" loc="(560,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W5.1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,150)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="VIDEO_OUT_NTSC"> <a name="circuit" val="VIDEO_OUT_NTSC"/> <a name="clabel" val="VIDEO OUT"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif bold 20"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#56ffb1" height="250" stroke="#000000" stroke-width="2" width="290" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="171" y="288">CC0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="288">CC3#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="264" y="289">LL0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="299" y="289">LL1#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="214">/PICTURE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="234">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="253">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="184">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="165">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="144">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="316" y="174">VOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="94">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="75">/CLK</text> <circ-port height="8" pin="90,70" width="8" x="46" y="66"/> <circ-port height="8" pin="90,140" width="8" x="46" y="106"/> <circ-port height="8" pin="90,240" width="8" x="46" y="136"/> <circ-port height="8" pin="90,280" width="8" x="46" y="156"/> <circ-port height="8" pin="90,320" width="8" x="46" y="176"/> <circ-port height="8" pin="90,440" width="8" x="46" y="86"/> <circ-port height="8" pin="90,520" width="8" x="166" y="296"/> <circ-port height="8" pin="90,570" width="8" x="146" y="296"/> <circ-port height="8" pin="90,620" width="8" x="126" y="296"/> <circ-port height="8" pin="90,680" width="8" x="106" y="296"/> <circ-port height="8" pin="90,780" width="8" x="46" y="206"/> <circ-port height="8" pin="90,1020" width="8" x="46" y="246"/> <circ-port height="8" pin="90,1080" width="8" x="46" y="226"/> <circ-port height="8" pin="90,1150" width="8" x="266" y="296"/> <circ-port height="8" pin="90,1220" width="8" x="286" y="296"/> <circ-port height="10" pin="150,1400" width="10" x="335" y="165"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(550,1190)" to="(550,1200)"/> <wire from="(430,1290)" to="(1260,1290)"/> <wire from="(610,1180)" to="(980,1180)"/> <wire from="(1190,1030)" to="(1190,1060)"/> <wire from="(530,1240)" to="(590,1240)"/> <wire from="(290,1080)" to="(730,1080)"/> <wire from="(390,1020)" to="(390,1360)"/> <wire from="(180,780)" to="(420,780)"/> <wire from="(1470,1070)" to="(1520,1070)"/> <wire from="(1390,670)" to="(1440,670)"/> <wire from="(730,1080)" to="(730,1160)"/> <wire from="(800,1070)" to="(820,1070)"/> <wire from="(1070,1070)" to="(1070,1120)"/> <wire from="(1360,580)" to="(1440,580)"/> <wire from="(290,200)" to="(450,200)"/> <wire from="(290,230)" to="(320,230)"/> <wire from="(1100,140)" to="(1300,140)"/> <wire from="(980,1080)" to="(1010,1080)"/> <wire from="(1600,280)" to="(1610,280)"/> <wire from="(150,900)" to="(170,900)"/> <wire from="(1460,690)" to="(1460,790)"/> <wire from="(1380,1160)" to="(1410,1160)"/> <wire from="(290,520)" to="(550,520)"/> <wire from="(1200,240)" to="(1200,280)"/> <wire from="(130,960)" to="(130,1080)"/> <wire from="(120,600)" to="(120,660)"/> <wire from="(500,1190)" to="(550,1190)"/> <wire from="(290,660)" to="(340,660)"/> <wire from="(520,370)" to="(710,370)"/> <wire from="(1100,140)" to="(1100,230)"/> <wire from="(1380,1030)" to="(1380,1060)"/> <wire from="(1330,730)" to="(1390,730)"/> <wire from="(500,1200)" to="(540,1200)"/> <wire from="(410,700)" to="(410,720)"/> <wire from="(620,140)" to="(620,230)"/> <wire from="(1660,1070)" to="(1710,1070)"/> <wire from="(800,240)" to="(820,240)"/> <wire from="(1210,1140)" to="(1220,1140)"/> <wire from="(1320,70)" to="(1320,260)"/> <wire from="(500,1210)" to="(530,1210)"/> <wire from="(500,100)" to="(520,100)"/> <wire from="(1370,570)" to="(1440,570)"/> <wire from="(550,520)" to="(550,580)"/> <wire from="(1600,240)" to="(1620,240)"/> <wire from="(130,1180)" to="(140,1180)"/> <wire from="(1280,1150)" to="(1280,1320)"/> <wire from="(1570,1160)" to="(1600,1160)"/> <wire from="(1190,1160)" to="(1190,1200)"/> <wire from="(1260,220)" to="(1280,220)"/> <wire from="(430,280)" to="(490,280)"/> <wire from="(600,220)" to="(600,230)"/> <wire from="(1120,1380)" to="(1120,1400)"/> <wire from="(1570,1030)" to="(1570,1060)"/> <wire from="(190,520)" to="(250,520)"/> <wire from="(190,680)" to="(250,680)"/> <wire from="(270,290)" to="(320,290)"/> <wire from="(1760,1380)" to="(1760,1400)"/> <wire from="(1290,270)" to="(1290,280)"/> <wire from="(90,1080)" to="(130,1080)"/> <wire from="(1330,710)" to="(1380,710)"/> <wire from="(1080,220)" to="(1080,230)"/> <wire from="(90,320)" to="(320,320)"/> <wire from="(130,1190)" to="(130,1220)"/> <wire from="(220,1060)" to="(250,1060)"/> <wire from="(1330,590)" to="(1340,590)"/> <wire from="(1430,530)" to="(1440,530)"/> <wire from="(1400,1140)" to="(1410,1140)"/> <wire from="(1380,1160)" to="(1380,1220)"/> <wire from="(380,270)" to="(400,270)"/> <wire from="(1520,1070)" to="(1520,1320)"/> <wire from="(290,960)" to="(430,960)"/> <wire from="(800,100)" to="(1000,100)"/> <wire from="(1330,1070)" to="(1330,1360)"/> <wire from="(1260,1150)" to="(1280,1150)"/> <wire from="(1470,1380)" to="(1470,1400)"/> <wire from="(440,570)" to="(440,700)"/> <wire from="(1470,1150)" to="(1470,1360)"/> <wire from="(1210,1120)" to="(1210,1140)"/> <wire from="(1710,1070)" to="(1710,1290)"/> <wire from="(610,280)" to="(660,280)"/> <wire from="(1540,1290)" to="(1540,1320)"/> <wire from="(1330,530)" to="(1370,530)"/> <wire from="(1330,690)" to="(1370,690)"/> <wire from="(1380,560)" to="(1440,560)"/> <wire from="(470,430)" to="(470,900)"/> <wire from="(290,200)" to="(290,230)"/> <wire from="(380,290)" to="(380,320)"/> <wire from="(530,600)" to="(530,620)"/> <wire from="(1090,280)" to="(1140,280)"/> <wire from="(1430,540)" to="(1430,550)"/> <wire from="(980,1080)" to="(980,1160)"/> <wire from="(1600,100)" to="(1600,220)"/> <wire from="(220,550)" to="(250,550)"/> <wire from="(1000,220)" to="(1020,220)"/> <wire from="(1090,320)" to="(1100,320)"/> <wire from="(1120,70)" to="(1320,70)"/> <wire from="(730,1060)" to="(760,1060)"/> <wire from="(520,220)" to="(540,220)"/> <wire from="(1590,1140)" to="(1600,1140)"/> <wire from="(220,450)" to="(220,500)"/> <wire from="(1350,630)" to="(1440,630)"/> <wire from="(170,900)" to="(250,900)"/> <wire from="(800,100)" to="(800,220)"/> <wire from="(90,440)" to="(100,440)"/> <wire from="(1380,280)" to="(1400,280)"/> <wire from="(290,620)" to="(420,620)"/> <wire from="(1450,1150)" to="(1470,1150)"/> <wire from="(1520,260)" to="(1540,260)"/> <wire from="(1050,1070)" to="(1070,1070)"/> <wire from="(1490,280)" to="(1490,320)"/> <wire from="(610,320)" to="(620,320)"/> <wire from="(1400,1120)" to="(1400,1140)"/> <wire from="(90,520)" to="(150,520)"/> <wire from="(90,680)" to="(150,680)"/> <wire from="(470,1050)" to="(470,1180)"/> <wire from="(190,620)" to="(250,620)"/> <wire from="(1570,1160)" to="(1570,1240)"/> <wire from="(460,70)" to="(640,70)"/> <wire from="(1660,1150)" to="(1660,1360)"/> <wire from="(1660,1380)" to="(1660,1400)"/> <wire from="(530,1210)" to="(530,1240)"/> <wire from="(530,570)" to="(530,590)"/> <wire from="(130,740)" to="(130,960)"/> <wire from="(720,280)" to="(720,300)"/> <wire from="(220,1000)" to="(250,1000)"/> <wire from="(1400,280)" to="(1410,280)"/> <wire from="(290,270)" to="(320,270)"/> <wire from="(1000,240)" to="(1000,280)"/> <wire from="(1210,1120)" to="(1280,1120)"/> <wire from="(320,680)" to="(320,720)"/> <wire from="(290,570)" to="(440,570)"/> <wire from="(150,950)" to="(160,950)"/> <wire from="(900,140)" to="(1100,140)"/> <wire from="(1640,1150)" to="(1660,1150)"/> <wire from="(1330,670)" to="(1360,670)"/> <wire from="(730,350)" to="(1000,350)"/> <wire from="(1120,1400)" to="(1270,1400)"/> <wire from="(820,1070)" to="(870,1070)"/> <wire from="(1700,140)" to="(1700,230)"/> <wire from="(1530,1380)" to="(1530,1400)"/> <wire from="(1200,280)" to="(1200,370)"/> <wire from="(130,1080)" to="(250,1080)"/> <wire from="(1590,1120)" to="(1590,1140)"/> <wire from="(1540,1290)" to="(1710,1290)"/> <wire from="(1380,660)" to="(1440,660)"/> <wire from="(710,370)" to="(940,370)"/> <wire from="(150,1400)" to="(390,1400)"/> <wire from="(900,140)" to="(900,230)"/> <wire from="(90,1150)" to="(130,1150)"/> <wire from="(120,450)" to="(220,450)"/> <wire from="(120,550)" to="(150,550)"/> <wire from="(520,100)" to="(800,100)"/> <wire from="(420,620)" to="(420,720)"/> <wire from="(580,220)" to="(600,220)"/> <wire from="(290,720)" to="(320,720)"/> <wire from="(730,1160)" to="(760,1160)"/> <wire from="(360,320)" to="(380,320)"/> <wire from="(460,100)" to="(480,100)"/> <wire from="(1120,70)" to="(1120,260)"/> <wire from="(1400,1120)" to="(1470,1120)"/> <wire from="(220,550)" to="(220,600)"/> <wire from="(610,1220)" to="(1380,1220)"/> <wire from="(640,70)" to="(640,260)"/> <wire from="(1330,650)" to="(1350,650)"/> <wire from="(1760,430)" to="(1760,1360)"/> <wire from="(1400,240)" to="(1420,240)"/> <wire from="(1060,220)" to="(1080,220)"/> <wire from="(610,270)" to="(610,280)"/> <wire from="(90,620)" to="(150,620)"/> <wire from="(520,240)" to="(520,370)"/> <wire from="(880,220)" to="(880,230)"/> <wire from="(1680,220)" to="(1680,230)"/> <wire from="(730,1030)" to="(730,1060)"/> <wire from="(1090,270)" to="(1090,280)"/> <wire from="(1530,1350)" to="(1530,1360)"/> <wire from="(1330,1400)" to="(1470,1400)"/> <wire from="(220,940)" to="(250,940)"/> <wire from="(1330,630)" to="(1340,630)"/> <wire from="(1590,1120)" to="(1660,1120)"/> <wire from="(160,780)" to="(160,820)"/> <wire from="(290,270)" to="(290,310)"/> <wire from="(1400,100)" to="(1600,100)"/> <wire from="(980,1060)" to="(1010,1060)"/> <wire from="(130,1190)" to="(140,1190)"/> <wire from="(1570,610)" to="(1570,1030)"/> <wire from="(220,1000)" to="(220,1060)"/> <wire from="(890,280)" to="(940,280)"/> <wire from="(1270,1380)" to="(1270,1400)"/> <wire from="(430,700)" to="(430,720)"/> <wire from="(700,260)" to="(740,260)"/> <wire from="(710,340)" to="(710,370)"/> <wire from="(1690,280)" to="(1740,280)"/> <wire from="(400,670)" to="(400,700)"/> <wire from="(800,220)" to="(820,220)"/> <wire from="(620,140)" to="(900,140)"/> <wire from="(1280,1070)" to="(1280,1120)"/> <wire from="(1430,540)" to="(1440,540)"/> <wire from="(1420,530)" to="(1430,530)"/> <wire from="(530,590)" to="(550,590)"/> <wire from="(1400,100)" to="(1400,220)"/> <wire from="(1690,320)" to="(1700,320)"/> <wire from="(120,550)" to="(120,600)"/> <wire from="(1190,1080)" to="(1220,1080)"/> <wire from="(150,900)" to="(150,950)"/> <wire from="(1600,220)" to="(1620,220)"/> <wire from="(920,70)" to="(1120,70)"/> <wire from="(1320,260)" to="(1340,260)"/> <wire from="(890,320)" to="(900,320)"/> <wire from="(1290,280)" to="(1290,320)"/> <wire from="(750,1140)" to="(760,1140)"/> <wire from="(1180,280)" to="(1200,280)"/> <wire from="(1350,630)" to="(1350,650)"/> <wire from="(1340,620)" to="(1440,620)"/> <wire from="(270,400)" to="(450,400)"/> <wire from="(290,900)" to="(470,900)"/> <wire from="(1360,640)" to="(1360,670)"/> <wire from="(550,1200)" to="(590,1200)"/> <wire from="(800,240)" to="(800,270)"/> <wire from="(90,1220)" to="(130,1220)"/> <wire from="(1270,1350)" to="(1270,1360)"/> <wire from="(820,1380)" to="(820,1400)"/> <wire from="(1340,620)" to="(1340,630)"/> <wire from="(1070,1070)" to="(1120,1070)"/> <wire from="(820,1150)" to="(820,1360)"/> <wire from="(800,1150)" to="(820,1150)"/> <wire from="(220,720)" to="(250,720)"/> <wire from="(220,880)" to="(250,880)"/> <wire from="(1200,280)" to="(1210,280)"/> <wire from="(1470,1070)" to="(1470,1120)"/> <wire from="(290,310)" to="(320,310)"/> <wire from="(1380,660)" to="(1380,710)"/> <wire from="(1390,670)" to="(1390,730)"/> <wire from="(980,1160)" to="(1010,1160)"/> <wire from="(1500,140)" to="(1700,140)"/> <wire from="(870,1070)" to="(870,1360)"/> <wire from="(1600,240)" to="(1600,280)"/> <wire from="(1480,610)" to="(1570,610)"/> <wire from="(1330,550)" to="(1360,550)"/> <wire from="(1380,1080)" to="(1410,1080)"/> <wire from="(1370,650)" to="(1370,690)"/> <wire from="(220,940)" to="(220,1000)"/> <wire from="(1330,1380)" to="(1330,1400)"/> <wire from="(490,430)" to="(1760,430)"/> <wire from="(470,900)" to="(470,1030)"/> <wire from="(1000,280)" to="(1000,350)"/> <wire from="(1500,140)" to="(1500,230)"/> <wire from="(90,70)" to="(460,70)"/> <wire from="(980,1030)" to="(980,1060)"/> <wire from="(490,280)" to="(490,430)"/> <wire from="(420,620)" to="(530,620)"/> <wire from="(390,1400)" to="(820,1400)"/> <wire from="(1340,590)" to="(1340,600)"/> <wire from="(750,1120)" to="(750,1140)"/> <wire from="(860,220)" to="(880,220)"/> <wire from="(1720,70)" to="(1720,260)"/> <wire from="(170,860)" to="(170,900)"/> <wire from="(1660,1070)" to="(1660,1120)"/> <wire from="(1370,650)" to="(1440,650)"/> <wire from="(90,140)" to="(620,140)"/> <wire from="(920,70)" to="(920,260)"/> <wire from="(1660,220)" to="(1680,220)"/> <wire from="(870,1400)" to="(1070,1400)"/> <wire from="(1570,1080)" to="(1600,1080)"/> <wire from="(1200,240)" to="(1220,240)"/> <wire from="(1350,570)" to="(1350,590)"/> <wire from="(1190,1080)" to="(1190,1160)"/> <wire from="(820,1400)" to="(870,1400)"/> <wire from="(890,270)" to="(890,280)"/> <wire from="(420,760)" to="(420,780)"/> <wire from="(1470,1400)" to="(1530,1400)"/> <wire from="(1690,270)" to="(1690,280)"/> <wire from="(310,330)" to="(310,360)"/> <wire from="(980,1160)" to="(980,1180)"/> <wire from="(380,240)" to="(380,270)"/> <wire from="(90,240)" to="(320,240)"/> <wire from="(1480,220)" to="(1480,230)"/> <wire from="(540,1200)" to="(540,1220)"/> <wire from="(160,1140)" to="(160,1170)"/> <wire from="(160,1140)" to="(260,1140)"/> <wire from="(220,500)" to="(250,500)"/> <wire from="(220,660)" to="(250,660)"/> <wire from="(640,70)" to="(920,70)"/> <wire from="(290,250)" to="(320,250)"/> <wire from="(780,270)" to="(800,270)"/> <wire from="(380,670)" to="(400,670)"/> <wire from="(120,460)" to="(120,500)"/> <wire from="(1200,100)" to="(1400,100)"/> <wire from="(480,1140)" to="(480,1180)"/> <wire from="(400,700)" to="(410,700)"/> <wire from="(150,970)" to="(150,1020)"/> <wire from="(750,1120)" to="(820,1120)"/> <wire from="(1000,1140)" to="(1010,1140)"/> <wire from="(90,780)" to="(160,780)"/> <wire from="(1260,1070)" to="(1280,1070)"/> <wire from="(220,880)" to="(220,940)"/> <wire from="(1070,1150)" to="(1070,1360)"/> <wire from="(1070,1380)" to="(1070,1400)"/> <wire from="(1380,1080)" to="(1380,1160)"/> <wire from="(190,570)" to="(250,570)"/> <wire from="(1360,550)" to="(1360,580)"/> <wire from="(130,740)" to="(250,740)"/> <wire from="(1490,280)" to="(1540,280)"/> <wire from="(360,280)" to="(400,280)"/> <wire from="(1490,320)" to="(1500,320)"/> <wire from="(610,280)" to="(610,320)"/> <wire from="(570,620)" to="(570,790)"/> <wire from="(980,280)" to="(1000,280)"/> <wire from="(640,260)" to="(660,260)"/> <wire from="(1200,100)" to="(1200,220)"/> <wire from="(270,290)" to="(270,400)"/> <wire from="(1520,70)" to="(1720,70)"/> <wire from="(430,700)" to="(440,700)"/> <wire from="(1120,1070)" to="(1120,1360)"/> <wire from="(1780,280)" to="(1800,280)"/> <wire from="(1090,280)" to="(1090,320)"/> <wire from="(1400,220)" to="(1420,220)"/> <wire from="(800,270)" to="(810,270)"/> <wire from="(1450,1070)" to="(1470,1070)"/> <wire from="(290,310)" to="(290,430)"/> <wire from="(1050,1150)" to="(1070,1150)"/> <wire from="(1120,260)" to="(1140,260)"/> <wire from="(540,1220)" to="(590,1220)"/> <wire from="(190,1020)" to="(250,1020)"/> <wire from="(1570,1080)" to="(1570,1160)"/> <wire from="(610,1240)" to="(1570,1240)"/> <wire from="(1190,1030)" to="(1380,1030)"/> <wire from="(290,250)" to="(290,270)"/> <wire from="(1000,1120)" to="(1000,1140)"/> <wire from="(120,500)" to="(150,500)"/> <wire from="(120,660)" to="(150,660)"/> <wire from="(440,570)" to="(530,570)"/> <wire from="(220,600)" to="(250,600)"/> <wire from="(1430,550)" to="(1440,550)"/> <wire from="(220,720)" to="(220,880)"/> <wire from="(530,600)" to="(550,600)"/> <wire from="(380,290)" to="(400,290)"/> <wire from="(1300,140)" to="(1500,140)"/> <wire from="(180,780)" to="(180,820)"/> <wire from="(150,1020)" to="(170,1020)"/> <wire from="(310,360)" to="(450,360)"/> <wire from="(220,500)" to="(220,550)"/> <wire from="(1640,1070)" to="(1660,1070)"/> <wire from="(1000,280)" to="(1010,280)"/> <wire from="(1370,530)" to="(1370,570)"/> <wire from="(1400,240)" to="(1400,280)"/> <wire from="(220,660)" to="(220,720)"/> <wire from="(730,340)" to="(730,350)"/> <wire from="(90,570)" to="(150,570)"/> <wire from="(1330,610)" to="(1440,610)"/> <wire from="(290,430)" to="(470,430)"/> <wire from="(1300,140)" to="(1300,230)"/> <wire from="(570,790)" to="(1460,790)"/> <wire from="(1380,1030)" to="(1570,1030)"/> <wire from="(460,70)" to="(460,100)"/> <wire from="(290,1020)" to="(390,1020)"/> <wire from="(960,370)" to="(1200,370)"/> <wire from="(1070,1400)" to="(1120,1400)"/> <wire from="(130,960)" to="(160,960)"/> <wire from="(1430,680)" to="(1440,680)"/> <wire from="(1000,240)" to="(1020,240)"/> <wire from="(1380,510)" to="(1380,560)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(320,680)" to="(340,680)"/> <wire from="(1520,70)" to="(1520,260)"/> <wire from="(730,1080)" to="(760,1080)"/> <wire from="(360,240)" to="(380,240)"/> <wire from="(1530,1400)" to="(1660,1400)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(1190,1060)" to="(1220,1060)"/> <wire from="(1000,1120)" to="(1070,1120)"/> <wire from="(1330,570)" to="(1350,570)"/> <wire from="(1460,220)" to="(1480,220)"/> <wire from="(820,1070)" to="(820,1120)"/> <wire from="(1660,1400)" to="(1760,1400)"/> <wire from="(90,1020)" to="(150,1020)"/> <wire from="(190,960)" to="(250,960)"/> <wire from="(1340,600)" to="(1440,600)"/> <wire from="(430,960)" to="(430,1290)"/> <wire from="(1270,1400)" to="(1330,1400)"/> <wire from="(1280,220)" to="(1280,230)"/> <wire from="(1330,510)" to="(1380,510)"/> <wire from="(90,280)" to="(320,280)"/> <wire from="(1490,270)" to="(1490,280)"/> <wire from="(130,1150)" to="(130,1180)"/> <wire from="(1430,530)" to="(1430,540)"/> <wire from="(120,600)" to="(150,600)"/> <wire from="(980,1030)" to="(1190,1030)"/> <wire from="(1360,640)" to="(1440,640)"/> <wire from="(120,500)" to="(120,550)"/> <wire from="(310,330)" to="(320,330)"/> <wire from="(550,610)" to="(550,670)"/> <wire from="(150,970)" to="(160,970)"/> <wire from="(1000,100)" to="(1200,100)"/> <wire from="(1380,1060)" to="(1410,1060)"/> <wire from="(280,1140)" to="(480,1140)"/> <wire from="(220,600)" to="(220,660)"/> <wire from="(730,1030)" to="(980,1030)"/> <wire from="(1260,1290)" to="(1260,1320)"/> <wire from="(390,1380)" to="(390,1400)"/> <wire from="(870,1380)" to="(870,1400)"/> <wire from="(1290,280)" to="(1340,280)"/> <wire from="(1280,1070)" to="(1330,1070)"/> <wire from="(920,260)" to="(940,260)"/> <wire from="(1290,320)" to="(1300,320)"/> <wire from="(890,280)" to="(890,320)"/> <wire from="(400,670)" to="(550,670)"/> <wire from="(1320,70)" to="(1520,70)"/> <wire from="(500,1180)" to="(590,1180)"/> <wire from="(1190,1160)" to="(1220,1160)"/> <wire from="(1690,280)" to="(1690,320)"/> <wire from="(1350,590)" to="(1440,590)"/> <wire from="(1580,280)" to="(1600,280)"/> <wire from="(1720,260)" to="(1740,260)"/> <wire from="(610,1200)" to="(1190,1200)"/> <wire from="(1000,100)" to="(1000,220)"/> <wire from="(1570,1060)" to="(1600,1060)"/> <wire from="(1200,220)" to="(1220,220)"/> <wire from="(520,100)" to="(520,220)"/> <comp loc="(290,610)" name="D-latch"/> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TG"/> </comp> <comp lib="0" loc="(1330,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="0" loc="(1100,320)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TR"/> </comp> <comp lib="0" loc="(1330,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(637,1175)" name="Text"> <a name="text" val="/LU0"/> </comp> <comp lib="1" loc="(800,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1010)" name="D-latch"/> <comp lib="0" loc="(1800,280)" name="Tunnel"> <a name="label" val="12"/> </comp> <comp lib="1" loc="(430,280)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(290,950)" name="D-latch"/> <comp lib="1" loc="(470,1050)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(383,392)" name="Text"> <a name="text" val="/PG"/> </comp> <comp lib="6" loc="(326,895)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="1" loc="(1290,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,730)" name="D-latch"/> <comp lib="6" loc="(77,211)" name="Text"> <a name="text" val="Emphasis"/> </comp> <comp lib="0" loc="(1330,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="6" loc="(501,515)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="1" loc="(800,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(580,230)" name="D-latch"/> <comp lib="1" loc="(1640,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(384,193)" name="Text"> <a name="text" val="/PR"/> </comp> <comp lib="1" loc="(1450,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(450,360)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="1" loc="(610,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,1240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1490,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1470,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(90,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> </comp> <comp lib="6" loc="(865,52)" name="Text"> <a name="text" val="NTSC"/> <a name="font" val="SansSerif bold 40"/> </comp> <comp lib="6" loc="(1740,1351)" name="Text"> <a name="text" val="TINT"/> </comp> <comp loc="(190,560)" name="D-latch"/> <comp lib="1" loc="(720,300)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(940,370)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(170,860)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="0" loc="(1700,320)" name="Tunnel"> <a name="label" val="11"/> </comp> <comp lib="0" loc="(1010,280)" name="Tunnel"> <a name="label" val="3"/> </comp> <comp lib="0" loc="(1120,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp loc="(1380,270)" name="D-latch"/> <comp lib="0" loc="(1610,280)" name="Tunnel"> <a name="label" val="10"/> </comp> <comp lib="1" loc="(1260,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1330,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(1260,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1480,610)" name="Multiplexer"> <a name="select" val="4"/> <a name="enable" val="false"/> </comp> <comp loc="(1460,230)" name="D-latch"/> <comp lib="1" loc="(890,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC0#"/> </comp> <comp lib="0" loc="(100,440)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="6" loc="(1424,1017)" name="Text"> <a name="text" val="LUMA2 SWING"/> </comp> <comp loc="(700,270)" name="D-latch"/> <comp lib="6" loc="(1628,1016)" name="Text"> <a name="text" val="LUMA3 SWING"/> </comp> <comp lib="0" loc="(1330,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(775,1017)" name="Text"> <a name="text" val="BURST SWING"/> </comp> <comp lib="1" loc="(610,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(500,613)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1330,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(1050,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(480,1180)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="disabled" val="0"/> </comp> <comp lib="1" loc="(360,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(620,320)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="6" loc="(139,475)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(90,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BURST"/> </comp> <comp lib="6" loc="(1229,1015)" name="Text"> <a name="text" val="LUMA1 SWING"/> </comp> <comp lib="6" loc="(666,1237)" name="Text"> <a name="text" val="/LU3"/> </comp> <comp lib="0" loc="(1070,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(384,350)" name="Text"> <a name="text" val="/PB"/> </comp> <comp lib="0" loc="(390,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(190,960)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(610,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TB"/> </comp> <comp lib="6" loc="(460,273)" name="Text"> <a name="text" val="TINT"/> </comp> <comp lib="0" loc="(1330,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp loc="(290,890)" name="D-latch"/> <comp lib="6" loc="(240,474)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="6" loc="(665,1283)" name="Text"> <a name="text" val="Color 1D (black)"/> </comp> <comp loc="(190,510)" name="D-latch"/> <comp lib="1" loc="(190,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(350,773)" name="Text"> <a name="text" val="PBLACK"/> </comp> <comp loc="(1180,270)" name="D-latch"/> <comp lib="1" loc="(1530,1350)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(610,1220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(290,510)" name="D-latch"/> <comp lib="6" loc="(637,1217)" name="Text"> <a name="text" val="/LU2"/> </comp> <comp lib="0" loc="(90,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC2#"/> </comp> <comp loc="(190,610)" name="D-latch"/> <comp lib="1" loc="(1270,1350)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1330,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(501,563)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(90,440)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1580,270)" name="D-latch"/> <comp loc="(190,670)" name="D-latch"/> <comp lib="1" loc="(360,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1530,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="0"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(366,1293)" name="Text"> <a name="text" val="Synch"/> </comp> <comp lib="0" loc="(1330,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(1690,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(290,670)" name="D-latch"/> <comp lib="0" loc="(1420,530)" name="Constant"/> <comp lib="6" loc="(1559,601)" name="Text"> <a name="text" val="/PZ"/> </comp> <comp lib="6" loc="(1022,1016)" name="Text"> <a name="text" val="LUMA0 SWING"/> </comp> <comp loc="(1780,270)" name="D-latch"/> <comp lib="0" loc="(820,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(1270,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(420,760)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1330,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(450,400)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="0" loc="(570,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(1450,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(980,270)" name="D-latch"/> <comp lib="0" loc="(1330,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="6" loc="(668,1197)" name="Text"> <a name="text" val="/LU1"/> </comp> <comp lib="0" loc="(1330,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp loc="(290,560)" name="D-latch"/> <comp lib="0" loc="(1430,680)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(150,1400)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(335,1075)" name="Text"> <a name="text" val="Color burst"/> </comp> <comp loc="(1060,230)" name="D-latch"/> <comp lib="1" loc="(360,280)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1660,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(870,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(1090,270)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(500,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(900,320)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="0" loc="(1300,320)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL0#"/> </comp> <comp loc="(1260,230)" name="D-latch"/> <comp lib="1" loc="(1640,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1070)" name="D-latch"/> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC1#"/> </comp> <comp lib="0" loc="(1410,280)" name="Tunnel"> <a name="label" val="8"/> </comp> <comp lib="1" loc="(1050,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1760,1380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="0"/> </comp> <comp loc="(1660,230)" name="D-latch"/> <comp lib="0" loc="(1210,280)" name="Tunnel"> <a name="label" val="6"/> </comp> <comp lib="0" loc="(90,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC3#"/> </comp> <comp loc="(860,230)" name="D-latch"/> <comp lib="0" loc="(160,1170)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1500,320)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="6" loc="(500,664)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(810,270)" name="Tunnel"> <a name="label" val="1"/> </comp> <comp lib="1" loc="(780,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(450,200)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="1" loc="(280,1140)" name="NOT Gate"> <a name="width" val="2"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL1#"/> </comp> <comp lib="0" loc="(1330,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> </circuit> <circuit name="VIDEO_OUT_PAL"> <a name="circuit" val="VIDEO_OUT_PAL"/> <a name="clabel" val="VIDEO OUT"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#96ffac" height="250" stroke="#000000" stroke-width="2" width="290" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="154">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="290">CC0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="135">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">/CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="174">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="316" y="164">VOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="298" y="291">LL1#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="195">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="265">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="104" y="290">CC3#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="291">LL0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="244">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="95">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="224">/PICTURE</text> <circ-port height="8" pin="90,80" width="8" x="46" y="66"/> <circ-port height="8" pin="90,150" width="8" x="46" y="106"/> <circ-port height="8" pin="90,250" width="8" x="46" y="146"/> <circ-port height="8" pin="90,290" width="8" x="46" y="166"/> <circ-port height="8" pin="90,330" width="8" x="46" y="186"/> <circ-port height="8" pin="90,480" width="8" x="46" y="126"/> <circ-port height="8" pin="90,430" width="8" x="46" y="86"/> <circ-port height="8" pin="90,580" width="8" x="166" y="296"/> <circ-port height="8" pin="90,630" width="8" x="146" y="296"/> <circ-port height="8" pin="90,680" width="8" x="126" y="296"/> <circ-port height="8" pin="90,730" width="8" x="106" y="296"/> <circ-port height="8" pin="90,840" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1080" width="8" x="46" y="256"/> <circ-port height="8" pin="90,1220" width="8" x="46" y="236"/> <circ-port height="8" pin="90,1290" width="8" x="266" y="296"/> <circ-port height="8" pin="90,1360" width="8" x="286" y="296"/> <circ-port height="10" pin="150,1540" width="10" x="335" y="155"/> <circ-anchor facing="east" height="6" width="6" x="337" y="47"/> </appear> <wire from="(530,1330)" to="(530,1340)"/> <wire from="(960,480)" to="(960,490)"/> <wire from="(280,1280)" to="(470,1280)"/> <wire from="(190,580)" to="(250,580)"/> <wire from="(1140,80)" to="(1140,230)"/> <wire from="(1510,1220)" to="(1510,1300)"/> <wire from="(1300,150)" to="(1530,150)"/> <wire from="(110,1150)" to="(160,1150)"/> <wire from="(200,1080)" to="(250,1080)"/> <wire from="(390,870)" to="(390,890)"/> <wire from="(190,220)" to="(190,300)"/> <wire from="(1130,1170)" to="(1320,1170)"/> <wire from="(870,640)" to="(910,640)"/> <wire from="(870,480)" to="(910,480)"/> <wire from="(570,1340)" to="(1130,1340)"/> <wire from="(940,1260)" to="(940,1280)"/> <wire from="(760,150)" to="(760,230)"/> <wire from="(160,1280)" to="(160,1310)"/> <wire from="(1360,240)" to="(1360,250)"/> <wire from="(460,410)" to="(460,1010)"/> <wire from="(160,1280)" to="(260,1280)"/> <wire from="(820,290)" to="(840,290)"/> <wire from="(1680,110)" to="(1680,230)"/> <wire from="(90,480)" to="(250,480)"/> <wire from="(980,290)" to="(1000,290)"/> <wire from="(680,350)" to="(890,350)"/> <wire from="(1070,230)" to="(1080,230)"/> <wire from="(2040,240)" to="(2050,240)"/> <wire from="(580,200)" to="(610,200)"/> <wire from="(570,1320)" to="(920,1320)"/> <wire from="(880,570)" to="(970,570)"/> <wire from="(90,840)" to="(110,840)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(1900,250)" to="(1920,250)"/> <wire from="(290,580)" to="(620,580)"/> <wire from="(1580,1210)" to="(1600,1210)"/> <wire from="(220,340)" to="(230,340)"/> <wire from="(960,760)" to="(970,760)"/> <wire from="(1420,250)" to="(1440,250)"/> <wire from="(1210,250)" to="(1210,290)"/> <wire from="(400,720)" to="(400,780)"/> <wire from="(460,1260)" to="(460,1320)"/> <wire from="(1060,230)" to="(1060,250)"/> <wire from="(960,770)" to="(960,780)"/> <wire from="(540,110)" to="(590,110)"/> <wire from="(880,850)" to="(880,860)"/> <wire from="(1450,110)" to="(1680,110)"/> <wire from="(900,870)" to="(900,900)"/> <wire from="(870,840)" to="(970,840)"/> <wire from="(1320,1170)" to="(1510,1170)"/> <wire from="(890,860)" to="(890,880)"/> <wire from="(290,1150)" to="(330,1150)"/> <wire from="(1010,1540)" to="(1060,1540)"/> <wire from="(220,610)" to="(250,610)"/> <wire from="(960,240)" to="(980,240)"/> <wire from="(910,880)" to="(910,920)"/> <wire from="(670,1220)" to="(700,1220)"/> <wire from="(1040,560)" to="(1040,680)"/> <wire from="(2060,230)" to="(2070,230)"/> <wire from="(1440,290)" to="(1440,350)"/> <wire from="(1470,1540)" to="(1600,1540)"/> <wire from="(870,620)" to="(900,620)"/> <wire from="(870,780)" to="(900,780)"/> <wire from="(930,900)" to="(930,960)"/> <wire from="(1130,1200)" to="(1160,1200)"/> <wire from="(940,1260)" to="(1010,1260)"/> <wire from="(290,1080)" to="(370,1080)"/> <wire from="(480,390)" to="(1700,390)"/> <wire from="(290,680)" to="(420,680)"/> <wire from="(920,890)" to="(920,940)"/> <wire from="(1130,250)" to="(1150,250)"/> <wire from="(760,1210)" to="(760,1260)"/> <wire from="(1290,250)" to="(1310,250)"/> <wire from="(1270,230)" to="(1290,230)"/> <wire from="(370,820)" to="(370,890)"/> <wire from="(130,1090)" to="(130,1220)"/> <wire from="(1300,150)" to="(1300,230)"/> <wire from="(220,990)" to="(220,1060)"/> <wire from="(90,580)" to="(150,580)"/> <wire from="(1600,1540)" to="(1700,1540)"/> <wire from="(110,1080)" to="(170,1080)"/> <wire from="(190,840)" to="(250,840)"/> <wire from="(190,680)" to="(250,680)"/> <wire from="(880,820)" to="(880,830)"/> <wire from="(990,640)" to="(990,710)"/> <wire from="(910,600)" to="(970,600)"/> <wire from="(1700,390)" to="(1700,1500)"/> <wire from="(1210,1540)" to="(1270,1540)"/> <wire from="(420,840)" to="(420,870)"/> <wire from="(1450,230)" to="(1460,230)"/> <wire from="(580,200)" to="(580,240)"/> <wire from="(920,1170)" to="(1130,1170)"/> <wire from="(220,1060)" to="(250,1060)"/> <wire from="(870,600)" to="(890,600)"/> <wire from="(130,930)" to="(130,1090)"/> <wire from="(90,150)" to="(760,150)"/> <wire from="(480,290)" to="(480,390)"/> <wire from="(520,1360)" to="(550,1360)"/> <wire from="(880,830)" to="(970,830)"/> <wire from="(210,260)" to="(230,260)"/> <wire from="(400,780)" to="(410,780)"/> <wire from="(1590,250)" to="(1590,290)"/> <wire from="(900,870)" to="(970,870)"/> <wire from="(1320,1200)" to="(1350,1200)"/> <wire from="(190,220)" to="(330,220)"/> <wire from="(1360,290)" to="(1380,290)"/> <wire from="(1070,150)" to="(1300,150)"/> <wire from="(670,1170)" to="(920,1170)"/> <wire from="(1200,1430)" to="(1200,1460)"/> <wire from="(330,1520)" to="(330,1540)"/> <wire from="(380,930)" to="(380,960)"/> <wire from="(890,800)" to="(890,820)"/> <wire from="(810,1520)" to="(810,1540)"/> <wire from="(130,1090)" to="(170,1090)"/> <wire from="(1130,240)" to="(1130,250)"/> <wire from="(1220,1210)" to="(1270,1210)"/> <wire from="(120,610)" to="(150,610)"/> <wire from="(220,710)" to="(250,710)"/> <wire from="(820,250)" to="(820,290)"/> <wire from="(980,250)" to="(980,290)"/> <wire from="(380,720)" to="(400,720)"/> <wire from="(210,280)" to="(210,320)"/> <wire from="(1810,240)" to="(1820,240)"/> <wire from="(1450,110)" to="(1450,230)"/> <wire from="(430,780)" to="(440,780)"/> <wire from="(220,610)" to="(220,660)"/> <wire from="(1130,1300)" to="(1160,1300)"/> <wire from="(90,250)" to="(230,250)"/> <wire from="(1670,250)" to="(1690,250)"/> <wire from="(1510,1200)" to="(1540,1200)"/> <wire from="(870,580)" to="(880,580)"/> <wire from="(680,230)" to="(690,230)"/> <wire from="(890,820)" to="(970,820)"/> <wire from="(420,680)" to="(420,800)"/> <wire from="(1190,250)" to="(1210,250)"/> <wire from="(890,350)" to="(1390,350)"/> <wire from="(1830,80)" to="(2060,80)"/> <wire from="(370,1430)" to="(1200,1430)"/> <wire from="(90,680)" to="(150,680)"/> <wire from="(1220,110)" to="(1450,110)"/> <wire from="(2060,80)" to="(2060,230)"/> <wire from="(1210,290)" to="(1210,320)"/> <wire from="(1130,1170)" to="(1130,1200)"/> <wire from="(900,780)" to="(900,810)"/> <wire from="(640,680)" to="(640,710)"/> <wire from="(510,1350)" to="(510,1380)"/> <wire from="(930,900)" to="(970,900)"/> <wire from="(150,960)" to="(380,960)"/> <wire from="(670,1220)" to="(670,1300)"/> <wire from="(1410,1210)" to="(1460,1210)"/> <wire from="(130,1290)" to="(130,1320)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(1040,230)" to="(1060,230)"/> <wire from="(290,910)" to="(320,910)"/> <wire from="(740,1210)" to="(760,1210)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(1990,230)" to="(2000,230)"/> <wire from="(320,630)" to="(340,630)"/> <wire from="(920,1220)" to="(950,1220)"/> <wire from="(1830,230)" to="(1840,230)"/> <wire from="(1900,290)" to="(1920,290)"/> <wire from="(680,110)" to="(680,230)"/> <wire from="(1040,700)" to="(1070,700)"/> <wire from="(900,810)" to="(970,810)"/> <wire from="(1320,1300)" to="(1350,1300)"/> <wire from="(960,480)" to="(970,480)"/> <wire from="(1060,250)" to="(1080,250)"/> <wire from="(1010,1210)" to="(1010,1260)"/> <wire from="(990,710)" to="(990,760)"/> <wire from="(90,80)" to="(540,80)"/> <wire from="(1070,150)" to="(1070,230)"/> <wire from="(760,150)" to="(1070,150)"/> <wire from="(380,620)" to="(440,620)"/> <wire from="(960,490)" to="(960,500)"/> <wire from="(220,1060)" to="(220,1130)"/> <wire from="(880,570)" to="(880,580)"/> <wire from="(1980,230)" to="(1980,250)"/> <wire from="(1320,1170)" to="(1320,1200)"/> <wire from="(560,180)" to="(600,180)"/> <wire from="(870,560)" to="(970,560)"/> <wire from="(900,590)" to="(900,620)"/> <wire from="(1600,1210)" to="(1650,1210)"/> <wire from="(610,620)" to="(610,650)"/> <wire from="(210,190)" to="(440,190)"/> <wire from="(890,580)" to="(890,600)"/> <wire from="(290,300)" to="(290,330)"/> <wire from="(120,710)" to="(150,710)"/> <wire from="(220,1130)" to="(250,1130)"/> <wire from="(1220,230)" to="(1230,230)"/> <wire from="(560,200)" to="(580,200)"/> <wire from="(1150,1280)" to="(1160,1280)"/> <wire from="(910,600)" to="(910,640)"/> <wire from="(910,760)" to="(910,800)"/> <wire from="(220,380)" to="(430,380)"/> <wire from="(150,1070)" to="(170,1070)"/> <wire from="(470,1280)" to="(470,1320)"/> <wire from="(870,500)" to="(900,500)"/> <wire from="(120,610)" to="(120,660)"/> <wire from="(150,960)" to="(150,1010)"/> <wire from="(930,620)" to="(930,680)"/> <wire from="(2050,250)" to="(2070,250)"/> <wire from="(1510,1300)" to="(1540,1300)"/> <wire from="(960,770)" to="(970,770)"/> <wire from="(950,760)" to="(960,760)"/> <wire from="(1130,1300)" to="(1130,1340)"/> <wire from="(1220,1290)" to="(1220,1460)"/> <wire from="(1360,250)" to="(1360,290)"/> <wire from="(920,610)" to="(920,660)"/> <wire from="(1130,290)" to="(1150,290)"/> <wire from="(110,1080)" to="(110,1150)"/> <wire from="(1060,1520)" to="(1060,1540)"/> <wire from="(880,540)" to="(880,550)"/> <wire from="(1510,1170)" to="(1510,1200)"/> <wire from="(910,800)" to="(970,800)"/> <wire from="(1700,1520)" to="(1700,1540)"/> <wire from="(510,1380)" to="(550,1380)"/> <wire from="(220,710)" to="(220,790)"/> <wire from="(540,80)" to="(830,80)"/> <wire from="(570,1360)" to="(1320,1360)"/> <wire from="(550,270)" to="(550,420)"/> <wire from="(220,460)" to="(250,460)"/> <wire from="(460,1010)" to="(460,1240)"/> <wire from="(870,800)" to="(890,800)"/> <wire from="(1340,1280)" to="(1350,1280)"/> <wire from="(1320,1300)" to="(1320,1360)"/> <wire from="(320,730)" to="(340,730)"/> <wire from="(1220,110)" to="(1220,230)"/> <wire from="(880,550)" to="(970,550)"/> <wire from="(1460,1210)" to="(1460,1460)"/> <wire from="(1580,240)" to="(1590,240)"/> <wire from="(210,190)" to="(210,240)"/> <wire from="(1270,1210)" to="(1270,1500)"/> <wire from="(240,820)" to="(250,820)"/> <wire from="(550,210)" to="(550,270)"/> <wire from="(900,590)" to="(970,590)"/> <wire from="(180,1150)" to="(250,1150)"/> <wire from="(1440,250)" to="(1460,250)"/> <wire from="(920,740)" to="(920,790)"/> <wire from="(1200,1290)" to="(1220,1290)"/> <wire from="(920,790)" to="(970,790)"/> <wire from="(1600,80)" to="(1830,80)"/> <wire from="(1410,1520)" to="(1410,1540)"/> <wire from="(870,740)" to="(920,740)"/> <wire from="(1650,1210)" to="(1650,1430)"/> <wire from="(1150,1260)" to="(1150,1280)"/> <wire from="(1410,1290)" to="(1410,1500)"/> <wire from="(1480,1430)" to="(1480,1460)"/> <wire from="(1830,80)" to="(1830,230)"/> <wire from="(490,1330)" to="(530,1330)"/> <wire from="(2050,240)" to="(2050,250)"/> <wire from="(990,110)" to="(1220,110)"/> <wire from="(890,520)" to="(890,540)"/> <wire from="(920,1220)" to="(920,1300)"/> <wire from="(220,910)" to="(250,910)"/> <wire from="(1530,1280)" to="(1540,1280)"/> <wire from="(990,1210)" to="(1010,1210)"/> <wire from="(490,1350)" to="(510,1350)"/> <wire from="(270,330)" to="(290,330)"/> <wire from="(670,1200)" to="(700,1200)"/> <wire from="(490,1340)" to="(520,1340)"/> <wire from="(1760,230)" to="(1770,230)"/> <wire from="(1600,230)" to="(1610,230)"/> <wire from="(610,110)" to="(680,110)"/> <wire from="(1900,250)" to="(1900,290)"/> <wire from="(130,1320)" to="(140,1320)"/> <wire from="(90,290)" to="(230,290)"/> <wire from="(1670,290)" to="(1690,290)"/> <wire from="(1390,1290)" to="(1410,1290)"/> <wire from="(810,240)" to="(820,240)"/> <wire from="(890,540)" to="(970,540)"/> <wire from="(890,860)" to="(970,860)"/> <wire from="(120,710)" to="(120,770)"/> <wire from="(1340,1260)" to="(1340,1280)"/> <wire from="(220,1130)" to="(220,1200)"/> <wire from="(1510,1300)" to="(1510,1380)"/> <wire from="(290,610)" to="(340,610)"/> <wire from="(1600,1290)" to="(1600,1500)"/> <wire from="(1600,1520)" to="(1600,1540)"/> <wire from="(1750,230)" to="(1750,250)"/> <wire from="(120,420)" to="(120,560)"/> <wire from="(900,500)" to="(900,530)"/> <wire from="(930,620)" to="(970,620)"/> <wire from="(370,1080)" to="(370,1430)"/> <wire from="(90,1220)" to="(130,1220)"/> <wire from="(210,320)" to="(210,410)"/> <wire from="(130,1330)" to="(130,1360)"/> <wire from="(1040,700)" to="(1040,840)"/> <wire from="(220,560)" to="(250,560)"/> <wire from="(220,1200)" to="(250,1200)"/> <wire from="(1150,1260)" to="(1220,1260)"/> <wire from="(90,1080)" to="(110,1080)"/> <wire from="(210,240)" to="(230,240)"/> <wire from="(170,410)" to="(170,460)"/> <wire from="(1960,230)" to="(1980,230)"/> <wire from="(1980,250)" to="(2000,250)"/> <wire from="(1580,1290)" to="(1600,1290)"/> <wire from="(1820,250)" to="(1840,250)"/> <wire from="(900,530)" to="(970,530)"/> <wire from="(990,230)" to="(1000,230)"/> <wire from="(1130,250)" to="(1130,290)"/> <wire from="(830,230)" to="(840,230)"/> <wire from="(1060,1540)" to="(1210,1540)"/> <wire from="(460,250)" to="(530,250)"/> <wire from="(610,650)" to="(620,650)"/> <wire from="(680,110)" to="(990,110)"/> <wire from="(920,890)" to="(970,890)"/> <wire from="(290,1220)" to="(670,1220)"/> <wire from="(1480,1430)" to="(1650,1430)"/> <wire from="(760,1210)" to="(810,1210)"/> <wire from="(1470,1520)" to="(1470,1540)"/> <wire from="(1530,1260)" to="(1530,1280)"/> <wire from="(190,630)" to="(250,630)"/> <wire from="(170,460)" to="(220,460)"/> <wire from="(120,410)" to="(170,410)"/> <wire from="(1990,150)" to="(1990,230)"/> <wire from="(410,780)" to="(410,800)"/> <wire from="(210,260)" to="(210,280)"/> <wire from="(330,220)" to="(330,250)"/> <wire from="(610,660)" to="(610,680)"/> <wire from="(1350,240)" to="(1360,240)"/> <wire from="(560,240)" to="(580,240)"/> <wire from="(910,480)" to="(910,520)"/> <wire from="(220,460)" to="(220,560)"/> <wire from="(670,1300)" to="(700,1300)"/> <wire from="(1080,420)" to="(1080,670)"/> <wire from="(1010,840)" to="(1040,840)"/> <wire from="(1340,1260)" to="(1410,1260)"/> <wire from="(2050,290)" to="(2070,290)"/> <wire from="(240,770)" to="(240,820)"/> <wire from="(990,110)" to="(990,230)"/> <wire from="(1100,690)" to="(1510,690)"/> <wire from="(960,490)" to="(970,490)"/> <wire from="(950,480)" to="(960,480)"/> <wire from="(620,670)" to="(620,720)"/> <wire from="(1210,250)" to="(1230,250)"/> <wire from="(890,300)" to="(890,350)"/> <wire from="(1760,150)" to="(1990,150)"/> <wire from="(870,960)" to="(930,960)"/> <wire from="(910,520)" to="(970,520)"/> <wire from="(130,930)" to="(250,930)"/> <wire from="(290,710)" to="(340,710)"/> <wire from="(1600,80)" to="(1600,230)"/> <wire from="(1370,80)" to="(1600,80)"/> <wire from="(1820,240)" to="(1820,250)"/> <wire from="(290,1010)" to="(460,1010)"/> <wire from="(220,910)" to="(220,990)"/> <wire from="(670,1170)" to="(670,1200)"/> <wire from="(540,80)" to="(540,110)"/> <wire from="(910,320)" to="(1210,320)"/> <wire from="(190,300)" to="(230,300)"/> <wire from="(520,1340)" to="(520,1360)"/> <wire from="(1470,1490)" to="(1470,1500)"/> <wire from="(120,560)" to="(150,560)"/> <wire from="(1270,1540)" to="(1410,1540)"/> <wire from="(220,660)" to="(250,660)"/> <wire from="(1530,230)" to="(1540,230)"/> <wire from="(870,520)" to="(890,520)"/> <wire from="(1370,230)" to="(1380,230)"/> <wire from="(400,720)" to="(620,720)"/> <wire from="(920,1200)" to="(950,1200)"/> <wire from="(1530,1260)" to="(1600,1260)"/> <wire from="(680,250)" to="(680,350)"/> <wire from="(1880,250)" to="(1900,250)"/> <wire from="(220,560)" to="(220,610)"/> <wire from="(1670,250)" to="(1670,290)"/> <wire from="(340,290)" to="(480,290)"/> <wire from="(1040,680)" to="(1070,680)"/> <wire from="(960,780)" to="(970,780)"/> <wire from="(1440,290)" to="(1460,290)"/> <wire from="(920,460)" to="(920,510)"/> <wire from="(460,190)" to="(530,190)"/> <wire from="(600,260)" to="(610,260)"/> <wire from="(920,510)" to="(970,510)"/> <wire from="(1520,230)" to="(1520,250)"/> <wire from="(870,460)" to="(920,460)"/> <wire from="(870,940)" to="(920,940)"/> <wire from="(90,630)" to="(150,630)"/> <wire from="(900,250)" to="(900,260)"/> <wire from="(190,730)" to="(250,730)"/> <wire from="(1210,1520)" to="(1210,1540)"/> <wire from="(130,1220)" to="(250,1220)"/> <wire from="(830,80)" to="(830,230)"/> <wire from="(90,1290)" to="(130,1290)"/> <wire from="(1220,1210)" to="(1220,1260)"/> <wire from="(1130,1220)" to="(1160,1220)"/> <wire from="(1590,250)" to="(1610,250)"/> <wire from="(90,330)" to="(230,330)"/> <wire from="(1730,230)" to="(1750,230)"/> <wire from="(1750,250)" to="(1770,250)"/> <wire from="(960,910)" to="(970,910)"/> <wire from="(870,820)" to="(880,820)"/> <wire from="(690,1280)" to="(700,1280)"/> <wire from="(890,580)" to="(970,580)"/> <wire from="(760,230)" to="(770,230)"/> <wire from="(1010,1210)" to="(1060,1210)"/> <wire from="(2110,250)" to="(2140,250)"/> <wire from="(960,760)" to="(960,770)"/> <wire from="(1760,150)" to="(1760,230)"/> <wire from="(490,1320)" to="(550,1320)"/> <wire from="(440,620)" to="(610,620)"/> <wire from="(870,760)" to="(910,760)"/> <wire from="(870,920)" to="(910,920)"/> <wire from="(760,1520)" to="(760,1540)"/> <wire from="(1210,1490)" to="(1210,1500)"/> <wire from="(290,250)" to="(290,280)"/> <wire from="(570,1380)" to="(1510,1380)"/> <wire from="(760,1290)" to="(760,1500)"/> <wire from="(750,230)" to="(750,250)"/> <wire from="(120,820)" to="(150,820)"/> <wire from="(120,660)" to="(150,660)"/> <wire from="(820,250)" to="(840,250)"/> <wire from="(320,630)" to="(320,730)"/> <wire from="(980,250)" to="(1000,250)"/> <wire from="(440,620)" to="(440,780)"/> <wire from="(1120,240)" to="(1130,240)"/> <wire from="(1410,1210)" to="(1410,1260)"/> <wire from="(740,1290)" to="(760,1290)"/> <wire from="(640,710)" to="(990,710)"/> <wire from="(220,340)" to="(220,380)"/> <wire from="(1910,230)" to="(1920,230)"/> <wire from="(880,850)" to="(970,850)"/> <wire from="(920,1300)" to="(950,1300)"/> <wire from="(130,840)" to="(150,840)"/> <wire from="(810,1210)" to="(810,1500)"/> <wire from="(210,280)" to="(230,280)"/> <wire from="(120,560)" to="(120,610)"/> <wire from="(220,660)" to="(220,710)"/> <wire from="(130,1330)" to="(140,1330)"/> <wire from="(620,580)" to="(620,640)"/> <wire from="(1320,1220)" to="(1350,1220)"/> <wire from="(2050,250)" to="(2050,290)"/> <wire from="(1820,290)" to="(1840,290)"/> <wire from="(1410,350)" to="(1440,350)"/> <wire from="(290,480)" to="(550,480)"/> <wire from="(920,610)" to="(970,610)"/> <wire from="(1370,80)" to="(1370,230)"/> <wire from="(210,410)" to="(460,410)"/> <wire from="(90,730)" to="(150,730)"/> <wire from="(1270,1520)" to="(1270,1540)"/> <wire from="(1140,80)" to="(1370,80)"/> <wire from="(1530,150)" to="(1760,150)"/> <wire from="(560,260)" to="(600,260)"/> <wire from="(920,1170)" to="(920,1200)"/> <wire from="(1590,240)" to="(1590,250)"/> <wire from="(330,250)" to="(440,250)"/> <wire from="(330,1540)" to="(760,1540)"/> <wire from="(270,290)" to="(310,290)"/> <wire from="(690,1260)" to="(690,1280)"/> <wire from="(1910,110)" to="(1910,230)"/> <wire from="(1300,230)" to="(1310,230)"/> <wire from="(1140,230)" to="(1150,230)"/> <wire from="(1600,1210)" to="(1600,1260)"/> <wire from="(1010,560)" to="(1040,560)"/> <wire from="(870,900)" to="(900,900)"/> <wire from="(1650,250)" to="(1670,250)"/> <wire from="(1510,1220)" to="(1540,1220)"/> <wire from="(810,1540)" to="(1010,1540)"/> <wire from="(1510,690)" to="(1510,1170)"/> <wire from="(680,250)" to="(690,250)"/> <wire from="(1440,250)" to="(1440,290)"/> <wire from="(1210,290)" to="(1230,290)"/> <wire from="(610,660)" to="(620,660)"/> <wire from="(1130,1220)" to="(1130,1300)"/> <wire from="(760,1540)" to="(810,1540)"/> <wire from="(1680,110)" to="(1910,110)"/> <wire from="(980,240)" to="(980,250)"/> <wire from="(420,680)" to="(610,680)"/> <wire from="(820,240)" to="(820,250)"/> <wire from="(1290,230)" to="(1290,250)"/> <wire from="(870,680)" to="(930,680)"/> <wire from="(910,880)" to="(970,880)"/> <wire from="(150,1540)" to="(330,1540)"/> <wire from="(1410,1540)" to="(1470,1540)"/> <wire from="(880,230)" to="(920,230)"/> <wire from="(90,1360)" to="(130,1360)"/> <wire from="(920,1300)" to="(920,1320)"/> <wire from="(150,1010)" to="(250,1010)"/> <wire from="(870,880)" to="(890,880)"/> <wire from="(390,870)" to="(420,870)"/> <wire from="(530,1340)" to="(550,1340)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(120,660)" to="(120,710)"/> <wire from="(690,1260)" to="(760,1260)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(1360,250)" to="(1380,250)"/> <wire from="(940,1280)" to="(950,1280)"/> <wire from="(960,500)" to="(970,500)"/> <wire from="(1500,230)" to="(1520,230)"/> <wire from="(220,790)" to="(220,910)"/> <wire from="(1520,250)" to="(1540,250)"/> <wire from="(1200,1210)" to="(1220,1210)"/> <wire from="(150,1010)" to="(150,1070)"/> <wire from="(870,660)" to="(920,660)"/> <wire from="(1320,1220)" to="(1320,1300)"/> <wire from="(1010,1520)" to="(1010,1540)"/> <wire from="(830,80)" to="(1140,80)"/> <wire from="(1530,150)" to="(1530,230)"/> <wire from="(120,770)" to="(240,770)"/> <wire from="(430,780)" to="(430,800)"/> <wire from="(910,300)" to="(910,320)"/> <wire from="(600,180)" to="(600,260)"/> <wire from="(330,1150)" to="(330,1500)"/> <wire from="(120,790)" to="(120,820)"/> <wire from="(1010,1290)" to="(1010,1500)"/> <wire from="(120,790)" to="(220,790)"/> <wire from="(220,990)" to="(250,990)"/> <wire from="(990,1290)" to="(1010,1290)"/> <wire from="(550,420)" to="(1080,420)"/> <wire from="(730,230)" to="(750,230)"/> <wire from="(750,250)" to="(770,250)"/> <wire from="(270,250)" to="(290,250)"/> <wire from="(1680,230)" to="(1690,230)"/> <wire from="(320,730)" to="(320,910)"/> <wire from="(1060,1210)" to="(1060,1500)"/> <wire from="(1820,250)" to="(1820,290)"/> <wire from="(290,820)" to="(370,820)"/> <wire from="(1590,290)" to="(1610,290)"/> <wire from="(550,420)" to="(550,480)"/> <wire from="(960,630)" to="(970,630)"/> <wire from="(1390,1210)" to="(1410,1210)"/> <wire from="(870,540)" to="(880,540)"/> <wire from="(870,860)" to="(880,860)"/> <comp loc="(1420,240)" name="D-latch"/> <comp lib="0" loc="(1920,290)" name="Tunnel"> <a name="label" val="10"/> </comp> <comp lib="1" loc="(990,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2140,250)" name="Tunnel"> <a name="label" val="12"/> </comp> <comp lib="0" loc="(640,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp loc="(290,1000)" name="D-latch"/> <comp lib="0" loc="(90,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC3#"/> </comp> <comp lib="6" loc="(1709,199)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(760,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(238,674)" name="Text"> <a name="text" val="19"/> </comp> <comp loc="(1960,240)" name="D-latch"/> <comp lib="2" loc="(530,190)" name="Multiplexer"> <a name="facing" val="west"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1398,338)" name="Text"> <a name="text" val="15"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(870,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(1573,1158)" name="Text"> <a name="text" val="LUMA3 SWING"/> </comp> <comp lib="0" loc="(1610,290)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="1" loc="(570,1360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(137,674)" name="Text"> <a name="text" val="22"/> </comp> <comp lib="0" loc="(1380,290)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="1" loc="(420,840)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="24"/> </comp> <comp lib="6" loc="(299,811)" name="Text"> <a name="text" val="52"/> </comp> <comp lib="0" loc="(960,910)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(138,623)" name="Text"> <a name="text" val="25"/> </comp> <comp lib="0" loc="(1060,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(870,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(1840,290)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="1" loc="(1810,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1070)" name="D-latch"/> <comp lib="6" loc="(605,1423)" name="Text"> <a name="text" val="Color 1D (black)"/> </comp> <comp lib="2" loc="(1010,560)" name="Multiplexer"> <a name="select" val="4"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(470,1320)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="disabled" val="0"/> </comp> <comp lib="1" loc="(1470,1490)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1650,240)" name="D-latch"/> <comp loc="(190,830)" name="D-latch"/> <comp lib="1" loc="(570,1380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="0" loc="(870,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp loc="(290,920)" name="D-latch"/> <comp lib="0" loc="(870,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(870,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(450,242)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="1" loc="(1200,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,720)" name="D-latch"/> <comp lib="0" loc="(90,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TR"/> </comp> <comp lib="0" loc="(870,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1000,290)" name="Tunnel"> <a name="label" val="1"/> </comp> <comp lib="0" loc="(870,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(870,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(136,724)" name="Text"> <a name="text" val="21"/> </comp> <comp lib="6" loc="(860,198)" name="Text"> <a name="text" val="2"/> </comp> <comp loc="(1270,240)" name="D-latch"/> <comp lib="0" loc="(90,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> </comp> <comp lib="0" loc="(1270,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(330,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(740,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1150,290)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="1" loc="(1390,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="31"/> </comp> <comp lib="0" loc="(1460,290)" name="Tunnel"> <a name="label" val="6"/> </comp> <comp lib="0" loc="(1700,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="0"/> </comp> <comp lib="0" loc="(1690,290)" name="Tunnel"> <a name="label" val="8"/> </comp> <comp lib="2" loc="(1100,690)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(610,260)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="0" loc="(870,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(381,281)" name="Text"> <a name="text" val="TINT"/> </comp> <comp loc="(1500,240)" name="D-latch"/> <comp lib="1" loc="(340,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="34"/> </comp> <comp loc="(2110,240)" name="D-latch"/> <comp loc="(290,570)" name="D-latch"/> <comp lib="1" loc="(740,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(570,1340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(290,620)" name="D-latch"/> <comp lib="0" loc="(810,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(610,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1010,840)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="4"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(116,832)" name="Text"> <a name="text" val="50"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="0" loc="(1230,290)" name="Tunnel"> <a name="label" val="3"/> </comp> <comp lib="0" loc="(870,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="6" loc="(302,981)" name="Text"> <a name="text" val="45"/> </comp> <comp lib="6" loc="(381,245)" name="Text"> <a name="text" val="/PG"/> </comp> <comp lib="1" loc="(990,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(433,425)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="0" loc="(1600,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(304,505)" name="Text"> <a name="text" val="located above the H counter"/> </comp> <comp lib="6" loc="(518,1214)" name="Text"> <a name="text" val="Color burst"/> </comp> <comp lib="6" loc="(711,198)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(950,760)" name="Constant"/> <comp lib="6" loc="(268,868)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(870,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(237,574)" name="Text"> <a name="text" val="17"/> </comp> <comp lib="6" loc="(308,1431)" name="Text"> <a name="text" val="Synch"/> </comp> <comp lib="1" loc="(1210,1490)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(900,260)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="1" loc="(1580,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(840,290)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="0" loc="(90,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL0#"/> </comp> <comp lib="1" loc="(570,1320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,430)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="6" loc="(580,675)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(580,573)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="1" loc="(440,190)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(870,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(380,620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp loc="(290,1140)" name="D-latch"/> <comp loc="(290,670)" name="D-latch"/> <comp lib="1" loc="(270,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="32"/> </comp> <comp loc="(190,670)" name="D-latch"/> <comp lib="6" loc="(1399,201)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="1" loc="(460,1260)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(1040,240)" name="D-latch"/> <comp lib="6" loc="(1479,202)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(960,630)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(1019,200)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(870,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(870,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(870,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1010,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(597,1357)" name="Text"> <a name="text" val="/LU2"/> </comp> <comp lib="1" loc="(1390,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL1#"/> </comp> <comp lib="1" loc="(1580,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(190,720)" name="D-latch"/> <comp lib="6" loc="(529,471)" name="Text"> <a name="text" val="/V0'"/> </comp> <comp lib="0" loc="(160,1310)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="6" loc="(626,1377)" name="Text"> <a name="text" val="/LU3"/> </comp> <comp lib="0" loc="(870,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="6" loc="(302,1190)" name="Text"> <a name="text" val="48"/> </comp> <comp loc="(1880,240)" name="D-latch"/> <comp lib="0" loc="(1210,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TB"/> </comp> <comp loc="(190,570)" name="D-latch"/> <comp lib="0" loc="(870,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(150,1540)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(140,519)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp loc="(290,470)" name="D-latch"/> <comp lib="1" loc="(1350,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1939,199)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="0" loc="(870,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(350,1004)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="6" loc="(1039,55)" name="Text"> <a name="text" val="PAL"/> <a name="font" val="SansSerif bold 40"/> </comp> <comp lib="6" loc="(138,574)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="1" loc="(440,250)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1410,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(300,1057)" name="Text"> <a name="text" val="47"/> </comp> <comp lib="0" loc="(950,480)" name="Constant"/> <comp lib="2" loc="(530,250)" name="Multiplexer"> <a name="facing" val="west"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1171,200)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(579,714)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(90,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC2#"/> </comp> <comp lib="0" loc="(870,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(381,185)" name="Text"> <a name="text" val="/PR"/> </comp> <comp lib="6" loc="(201,812)" name="Text"> <a name="text" val="51"/> </comp> <comp lib="1" loc="(1390,350)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(810,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1174,1157)" name="Text"> <a name="text" val="LUMA1 SWING"/> </comp> <comp lib="6" loc="(720,1159)" name="Text"> <a name="text" val="BURST SWING"/> </comp> <comp lib="6" loc="(426,885)" name="Text"> <a name="text" val="PBLACK"/> </comp> <comp lib="0" loc="(870,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(967,1158)" name="Text"> <a name="text" val="LUMA0 SWING"/> </comp> <comp lib="0" loc="(870,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp loc="(190,620)" name="D-latch"/> <comp lib="6" loc="(302,1127)" name="Text"> <a name="text" val="46"/> </comp> <comp lib="6" loc="(1858,200)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(380,720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="20"/> </comp> <comp lib="1" loc="(280,1280)" name="NOT Gate"> <a name="width" val="2"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(376,372)" name="Text"> <a name="text" val="/PB"/> </comp> <comp lib="6" loc="(77,221)" name="Text"> <a name="text" val="Emphasis"/> </comp> <comp lib="1" loc="(200,1080)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="42"/> </comp> <comp lib="1" loc="(1200,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(2089,202)" name="Text"> <a name="text" val="12"/> </comp> <comp loc="(1190,240)" name="D-latch"/> <comp lib="0" loc="(870,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp lib="6" loc="(118,869)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(870,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="1" loc="(1580,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="33"/> </comp> <comp lib="6" loc="(1628,199)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="0" loc="(430,380)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="6" loc="(581,613)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(610,200)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="6" loc="(1369,1159)" name="Text"> <a name="text" val="LUMA2 SWING"/> </comp> <comp lib="1" loc="(1120,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(597,1315)" name="Text"> <a name="text" val="/LU0"/> </comp> <comp loc="(880,240)" name="D-latch"/> <comp lib="6" loc="(1682,1490)" name="Text"> <a name="text" val="TINT"/> </comp> <comp lib="6" loc="(237,623)" name="Text"> <a name="text" val="18"/> </comp> <comp lib="6" loc="(628,1337)" name="Text"> <a name="text" val="/LU1"/> </comp> <comp lib="6" loc="(1249,201)" name="Text"> <a name="text" val="5"/> </comp> <comp loc="(290,830)" name="D-latch"/> <comp lib="6" loc="(238,724)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="0" loc="(2070,290)" name="Tunnel"> <a name="label" val="11"/> </comp> <comp lib="0" loc="(90,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BURST"/> </comp> <comp loc="(1730,240)" name="D-latch"/> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC1#"/> </comp> <comp loc="(290,1210)" name="D-latch"/> <comp lib="6" loc="(168,869)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(960,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TG"/> </comp> <comp lib="6" loc="(196,452)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="6" loc="(169,1139)" name="Text"> <a name="text" val="41"/> </comp> <comp lib="0" loc="(1470,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="0"/> <a name="bit10" val="none"/> </comp> <comp loc="(730,240)" name="D-latch"/> <comp lib="6" loc="(449,179)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="1" loc="(2040,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(130,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,930)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="44"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC0#"/> </comp> </circuit> <circuit name="VIDEO_OUT_RGB"> <a name="circuit" val="VIDEO_OUT_RGB"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ca93ff" height="310" stroke="#000000" stroke-width="2" width="400" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="294">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="155">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="270" y="351">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="350">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="140" y="336">CC#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="84">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="280" y="335">LL#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="289" y="351">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="351">3</text> <rect fill="#ff2742" height="32" stroke="#000000" width="31" x="225" y="173"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="174">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="274">/PICTURE</text> <rect fill="#39ff3e" height="32" stroke="#000000" width="31" x="234" y="181"/> <rect fill="#3b5cff" height="32" stroke="#000000" width="31" x="243" y="189"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="409" y="344">/SYNC OUT</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="427" y="113">R</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="428" y="204">G</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="430" y="293">B</text> <circ-port height="8" pin="190,80" width="8" x="46" y="76"/> <circ-port height="8" pin="190,140" width="8" x="46" y="266"/> <circ-port height="8" pin="190,180" width="8" x="46" y="146"/> <circ-port height="8" pin="190,210" width="8" x="46" y="166"/> <circ-port height="8" pin="190,240" width="8" x="46" y="186"/> <circ-port height="8" pin="100,1460" width="8" x="166" y="356"/> <circ-port height="8" pin="100,1520" width="8" x="146" y="356"/> <circ-port height="8" pin="100,1340" width="8" x="126" y="356"/> <circ-port height="8" pin="100,1400" width="8" x="106" y="356"/> <circ-port height="8" pin="100,1260" width="8" x="266" y="356"/> <circ-port height="8" pin="100,1200" width="8" x="286" y="356"/> <circ-port height="8" pin="100,1610" width="8" x="46" y="286"/> <circ-port height="10" pin="1040,210" width="10" x="445" y="65"/> <circ-port height="10" pin="1040,260" width="10" x="445" y="75"/> <circ-port height="10" pin="1040,310" width="10" x="445" y="85"/> <circ-port height="10" pin="1040,360" width="10" x="445" y="95"/> <circ-port height="10" pin="1040,410" width="10" x="445" y="105"/> <circ-port height="10" pin="1040,460" width="10" x="445" y="115"/> <circ-port height="10" pin="1040,510" width="10" x="445" y="125"/> <circ-port height="10" pin="1040,560" width="10" x="445" y="135"/> <circ-port height="10" pin="1040,660" width="10" x="445" y="155"/> <circ-port height="10" pin="1040,710" width="10" x="445" y="165"/> <circ-port height="10" pin="1040,760" width="10" x="445" y="175"/> <circ-port height="10" pin="1040,810" width="10" x="445" y="185"/> <circ-port height="10" pin="1040,860" width="10" x="445" y="195"/> <circ-port height="10" pin="1040,910" width="10" x="445" y="205"/> <circ-port height="10" pin="1040,960" width="10" x="445" y="215"/> <circ-port height="10" pin="1040,1010" width="10" x="445" y="225"/> <circ-port height="10" pin="1040,1110" width="10" x="445" y="245"/> <circ-port height="10" pin="1040,1160" width="10" x="445" y="255"/> <circ-port height="10" pin="1040,1210" width="10" x="445" y="265"/> <circ-port height="10" pin="1040,1260" width="10" x="445" y="275"/> <circ-port height="10" pin="1040,1310" width="10" x="445" y="285"/> <circ-port height="10" pin="1040,1360" width="10" x="445" y="295"/> <circ-port height="10" pin="1040,1410" width="10" x="445" y="305"/> <circ-port height="10" pin="1040,1460" width="10" x="445" y="315"/> <circ-port height="10" pin="1040,1610" width="10" x="445" y="335"/> <circ-anchor facing="east" height="6" width="6" x="447" y="47"/> </appear> <wire from="(700,1820)" to="(700,1830)"/> <wire from="(780,1180)" to="(830,1180)"/> <wire from="(530,1810)" to="(530,1820)"/> <wire from="(710,440)" to="(710,890)"/> <wire from="(260,100)" to="(260,110)"/> <wire from="(520,890)" to="(520,1340)"/> <wire from="(550,440)" to="(550,890)"/> <wire from="(730,2010)" to="(730,2040)"/> <wire from="(610,210)" to="(610,750)"/> <wire from="(580,1220)" to="(680,1220)"/> <wire from="(670,1790)" to="(670,1820)"/> <wire from="(580,420)" to="(680,420)"/> <wire from="(1000,1960)" to="(1000,1970)"/> <wire from="(750,1980)" to="(770,1980)"/> <wire from="(540,1340)" to="(540,1380)"/> <wire from="(960,910)" to="(980,910)"/> <wire from="(1020,810)" to="(1040,810)"/> <wire from="(460,1840)" to="(490,1840)"/> <wire from="(250,1720)" to="(250,1830)"/> <wire from="(860,1820)" to="(860,1880)"/> <wire from="(220,1500)" to="(220,1550)"/> <wire from="(640,1440)" to="(640,1500)"/> <wire from="(960,960)" to="(960,1010)"/> <wire from="(700,1950)" to="(700,1960)"/> <wire from="(420,440)" to="(420,890)"/> <wire from="(710,890)" to="(710,1340)"/> <wire from="(550,890)" to="(550,1340)"/> <wire from="(190,80)" to="(240,80)"/> <wire from="(580,870)" to="(680,870)"/> <wire from="(860,1880)" to="(900,1880)"/> <wire from="(580,390)" to="(680,390)"/> <wire from="(1000,1910)" to="(1120,1910)"/> <wire from="(190,1850)" to="(230,1850)"/> <wire from="(920,280)" to="(920,360)"/> <wire from="(570,1340)" to="(570,1380)"/> <wire from="(960,560)" to="(980,560)"/> <wire from="(1020,460)" to="(1040,460)"/> <wire from="(960,1360)" to="(980,1360)"/> <wire from="(280,1520)" to="(490,1520)"/> <wire from="(300,1550)" to="(300,1590)"/> <wire from="(140,1500)" to="(160,1500)"/> <wire from="(900,350)" to="(910,350)"/> <wire from="(1020,1260)" to="(1040,1260)"/> <wire from="(670,280)" to="(680,280)"/> <wire from="(960,1410)" to="(960,1460)"/> <wire from="(700,1760)" to="(700,1770)"/> <wire from="(420,890)" to="(420,1340)"/> <wire from="(780,320)" to="(830,320)"/> <wire from="(450,440)" to="(450,890)"/> <wire from="(790,2010)" to="(790,2020)"/> <wire from="(310,1270)" to="(310,1400)"/> <wire from="(630,1910)" to="(630,2040)"/> <wire from="(460,1840)" to="(460,1860)"/> <wire from="(730,2040)" to="(770,2040)"/> <wire from="(580,1320)" to="(680,1320)"/> <wire from="(580,840)" to="(680,840)"/> <wire from="(730,1790)" to="(730,1820)"/> <wire from="(580,360)" to="(680,360)"/> <wire from="(920,1910)" to="(960,1910)"/> <wire from="(1000,1900)" to="(1000,1910)"/> <wire from="(920,730)" to="(920,810)"/> <wire from="(960,210)" to="(980,210)"/> <wire from="(960,1010)" to="(980,1010)"/> <wire from="(1020,910)" to="(1040,910)"/> <wire from="(220,1550)" to="(240,1550)"/> <wire from="(500,1820)" to="(530,1820)"/> <wire from="(380,1550)" to="(400,1550)"/> <wire from="(440,1340)" to="(440,1380)"/> <wire from="(920,410)" to="(920,530)"/> <wire from="(900,800)" to="(910,800)"/> <wire from="(220,1440)" to="(220,1500)"/> <wire from="(600,1200)" to="(680,1200)"/> <wire from="(670,1910)" to="(750,1910)"/> <wire from="(670,730)" to="(680,730)"/> <wire from="(640,1500)" to="(650,1500)"/> <wire from="(960,260)" to="(960,310)"/> <wire from="(900,380)" to="(980,380)"/> <wire from="(440,1850)" to="(510,1850)"/> <wire from="(670,1850)" to="(680,1850)"/> <wire from="(780,770)" to="(830,770)"/> <wire from="(450,890)" to="(450,1340)"/> <wire from="(480,440)" to="(480,890)"/> <wire from="(790,1820)" to="(790,1830)"/> <wire from="(100,1520)" to="(160,1520)"/> <wire from="(360,1870)" to="(360,1880)"/> <wire from="(870,350)" to="(870,800)"/> <wire from="(630,1910)" to="(670,1910)"/> <wire from="(580,330)" to="(680,330)"/> <wire from="(580,1290)" to="(680,1290)"/> <wire from="(580,810)" to="(680,810)"/> <wire from="(100,1260)" to="(330,1260)"/> <wire from="(490,1840)" to="(490,1860)"/> <wire from="(920,1180)" to="(920,1260)"/> <wire from="(960,660)" to="(980,660)"/> <wire from="(1020,560)" to="(1040,560)"/> <wire from="(960,1460)" to="(980,1460)"/> <wire from="(250,1720)" to="(590,1720)"/> <wire from="(530,1820)" to="(560,1820)"/> <wire from="(280,1460)" to="(490,1460)"/> <wire from="(140,1440)" to="(160,1440)"/> <wire from="(470,1340)" to="(470,1380)"/> <wire from="(790,2010)" to="(860,2010)"/> <wire from="(920,860)" to="(920,980)"/> <wire from="(330,1200)" to="(330,1250)"/> <wire from="(900,1250)" to="(910,1250)"/> <wire from="(1020,1360)" to="(1040,1360)"/> <wire from="(670,1180)" to="(680,1180)"/> <wire from="(960,710)" to="(960,760)"/> <wire from="(670,1980)" to="(680,1980)"/> <wire from="(900,830)" to="(980,830)"/> <wire from="(780,1220)" to="(830,1220)"/> <wire from="(1000,1840)" to="(1000,1860)"/> <wire from="(480,890)" to="(480,1340)"/> <wire from="(510,440)" to="(510,890)"/> <wire from="(960,1960)" to="(960,1970)"/> <wire from="(790,1950)" to="(790,1960)"/> <wire from="(870,800)" to="(870,1250)"/> <wire from="(410,1410)" to="(410,1430)"/> <wire from="(580,780)" to="(680,780)"/> <wire from="(580,1260)" to="(680,1260)"/> <wire from="(900,390)" to="(940,390)"/> <wire from="(940,430)" to="(980,430)"/> <wire from="(360,1610)" to="(400,1610)"/> <wire from="(500,1340)" to="(500,1380)"/> <wire from="(900,410)" to="(920,410)"/> <wire from="(960,310)" to="(980,310)"/> <wire from="(1020,210)" to="(1040,210)"/> <wire from="(1020,1010)" to="(1040,1010)"/> <wire from="(960,1110)" to="(980,1110)"/> <wire from="(930,330)" to="(930,370)"/> <wire from="(900,400)" to="(930,400)"/> <wire from="(790,1820)" to="(860,1820)"/> <wire from="(920,1310)" to="(920,1430)"/> <wire from="(220,1380)" to="(220,1440)"/> <wire from="(900,420)" to="(910,420)"/> <wire from="(640,1440)" to="(650,1440)"/> <wire from="(960,360)" to="(960,410)"/> <wire from="(960,1160)" to="(960,1210)"/> <wire from="(670,1790)" to="(680,1790)"/> <wire from="(900,1280)" to="(980,1280)"/> <wire from="(530,1820)" to="(530,1830)"/> <wire from="(790,1760)" to="(790,1770)"/> <wire from="(100,1460)" to="(160,1460)"/> <wire from="(510,890)" to="(510,1340)"/> <wire from="(540,440)" to="(540,890)"/> <wire from="(750,1910)" to="(750,1980)"/> <wire from="(360,1810)" to="(360,1820)"/> <wire from="(730,1790)" to="(770,1790)"/> <wire from="(580,1230)" to="(680,1230)"/> <wire from="(580,430)" to="(680,430)"/> <wire from="(900,840)" to="(940,840)"/> <wire from="(940,880)" to="(980,880)"/> <wire from="(500,1790)" to="(500,1820)"/> <wire from="(100,1200)" to="(330,1200)"/> <wire from="(190,210)" to="(610,210)"/> <wire from="(530,1340)" to="(530,1380)"/> <wire from="(900,860)" to="(920,860)"/> <wire from="(960,760)" to="(980,760)"/> <wire from="(1020,660)" to="(1040,660)"/> <wire from="(930,780)" to="(930,820)"/> <wire from="(690,1450)" to="(710,1450)"/> <wire from="(290,1840)" to="(320,1840)"/> <wire from="(630,1860)" to="(660,1860)"/> <wire from="(900,850)" to="(930,850)"/> <wire from="(140,1380)" to="(160,1380)"/> <wire from="(850,320)" to="(880,320)"/> <wire from="(900,370)" to="(930,370)"/> <wire from="(620,180)" to="(620,300)"/> <wire from="(900,870)" to="(910,870)"/> <wire from="(1020,1460)" to="(1040,1460)"/> <wire from="(960,810)" to="(960,860)"/> <wire from="(780,360)" to="(830,360)"/> <wire from="(960,1900)" to="(960,1910)"/> <wire from="(260,80)" to="(260,90)"/> <wire from="(540,890)" to="(540,1340)"/> <wire from="(570,440)" to="(570,890)"/> <wire from="(830,330)" to="(830,360)"/> <wire from="(580,880)" to="(680,880)"/> <wire from="(580,400)" to="(680,400)"/> <wire from="(900,1290)" to="(940,1290)"/> <wire from="(940,1330)" to="(980,1330)"/> <wire from="(560,1820)" to="(560,1850)"/> <wire from="(1050,1830)" to="(1050,1840)"/> <wire from="(870,140)" to="(870,350)"/> <wire from="(560,1340)" to="(560,1380)"/> <wire from="(960,410)" to="(980,410)"/> <wire from="(900,1310)" to="(920,1310)"/> <wire from="(1020,310)" to="(1040,310)"/> <wire from="(1020,1110)" to="(1040,1110)"/> <wire from="(960,1210)" to="(980,1210)"/> <wire from="(930,1230)" to="(930,1270)"/> <wire from="(590,1720)" to="(590,1830)"/> <wire from="(220,1590)" to="(240,1590)"/> <wire from="(380,1590)" to="(400,1590)"/> <wire from="(900,820)" to="(930,820)"/> <wire from="(900,1300)" to="(930,1300)"/> <wire from="(850,770)" to="(880,770)"/> <wire from="(750,1850)" to="(750,1910)"/> <wire from="(100,1610)" to="(240,1610)"/> <wire from="(900,1320)" to="(910,1320)"/> <wire from="(960,460)" to="(960,510)"/> <wire from="(960,1260)" to="(960,1310)"/> <wire from="(220,1320)" to="(220,1380)"/> <wire from="(930,480)" to="(980,480)"/> <wire from="(780,810)" to="(830,810)"/> <wire from="(530,1760)" to="(530,1770)"/> <wire from="(440,440)" to="(440,890)"/> <wire from="(100,1400)" to="(160,1400)"/> <wire from="(570,890)" to="(570,1340)"/> <wire from="(690,1510)" to="(750,1510)"/> <wire from="(290,1840)" to="(290,1860)"/> <wire from="(830,780)" to="(830,810)"/> <wire from="(580,850)" to="(680,850)"/> <wire from="(580,1330)" to="(680,1330)"/> <wire from="(580,370)" to="(680,370)"/> <wire from="(940,1940)" to="(980,1940)"/> <wire from="(1000,1910)" to="(1000,1920)"/> <wire from="(200,1520)" to="(240,1520)"/> <wire from="(960,860)" to="(980,860)"/> <wire from="(1020,760)" to="(1040,760)"/> <wire from="(330,1820)" to="(360,1820)"/> <wire from="(350,1290)" to="(350,1400)"/> <wire from="(900,1270)" to="(930,1270)"/> <wire from="(140,1320)" to="(160,1320)"/> <wire from="(430,1340)" to="(430,1380)"/> <wire from="(850,1220)" to="(880,1220)"/> <wire from="(400,1430)" to="(410,1430)"/> <wire from="(610,750)" to="(680,750)"/> <wire from="(280,140)" to="(870,140)"/> <wire from="(960,910)" to="(960,960)"/> <wire from="(270,1850)" to="(340,1850)"/> <wire from="(930,930)" to="(980,930)"/> <wire from="(700,2060)" to="(700,2070)"/> <wire from="(780,1260)" to="(830,1260)"/> <wire from="(920,1960)" to="(920,1970)"/> <wire from="(440,890)" to="(440,1340)"/> <wire from="(470,440)" to="(470,890)"/> <wire from="(320,1840)" to="(320,1860)"/> <wire from="(830,1230)" to="(830,1260)"/> <wire from="(880,320)" to="(880,350)"/> <wire from="(580,340)" to="(680,340)"/> <wire from="(580,1300)" to="(680,1300)"/> <wire from="(580,820)" to="(680,820)"/> <wire from="(960,1840)" to="(960,1860)"/> <wire from="(260,110)" to="(300,110)"/> <wire from="(930,400)" to="(930,480)"/> <wire from="(960,510)" to="(980,510)"/> <wire from="(1020,410)" to="(1040,410)"/> <wire from="(960,1310)" to="(980,1310)"/> <wire from="(360,1820)" to="(390,1820)"/> <wire from="(460,1340)" to="(460,1380)"/> <wire from="(410,1410)" to="(420,1410)"/> <wire from="(140,1500)" to="(140,1550)"/> <wire from="(190,140)" to="(260,140)"/> <wire from="(1020,1210)" to="(1040,1210)"/> <wire from="(960,1360)" to="(960,1410)"/> <wire from="(930,1380)" to="(980,1380)"/> <wire from="(700,1870)" to="(700,1880)"/> <wire from="(630,2040)" to="(680,2040)"/> <wire from="(470,890)" to="(470,1340)"/> <wire from="(500,440)" to="(500,890)"/> <wire from="(100,1340)" to="(160,1340)"/> <wire from="(610,1850)" to="(670,1850)"/> <wire from="(880,770)" to="(880,800)"/> <wire from="(580,790)" to="(680,790)"/> <wire from="(580,1270)" to="(680,1270)"/> <wire from="(940,1880)" to="(980,1880)"/> <wire from="(260,80)" to="(300,80)"/> <wire from="(200,1460)" to="(240,1460)"/> <wire from="(930,850)" to="(930,930)"/> <wire from="(490,1340)" to="(490,1380)"/> <wire from="(960,960)" to="(980,960)"/> <wire from="(1020,860)" to="(1040,860)"/> <wire from="(750,1340)" to="(750,1510)"/> <wire from="(220,1500)" to="(240,1500)"/> <wire from="(310,1270)" to="(330,1270)"/> <wire from="(220,1550)" to="(220,1590)"/> <wire from="(380,1550)" to="(380,1590)"/> <wire from="(630,1440)" to="(640,1440)"/> <wire from="(960,210)" to="(960,260)"/> <wire from="(500,1790)" to="(510,1790)"/> <wire from="(560,1850)" to="(570,1850)"/> <wire from="(700,2000)" to="(700,2010)"/> <wire from="(920,1900)" to="(920,1910)"/> <wire from="(190,1720)" to="(250,1720)"/> <wire from="(500,890)" to="(500,1340)"/> <wire from="(530,440)" to="(530,890)"/> <wire from="(920,530)" to="(980,530)"/> <wire from="(280,1340)" to="(330,1340)"/> <wire from="(360,1820)" to="(360,1830)"/> <wire from="(880,1220)" to="(880,1250)"/> <wire from="(580,1240)" to="(680,1240)"/> <wire from="(330,1790)" to="(330,1820)"/> <wire from="(930,1300)" to="(930,1380)"/> <wire from="(520,1340)" to="(520,1380)"/> <wire from="(1020,510)" to="(1040,510)"/> <wire from="(960,1410)" to="(980,1410)"/> <wire from="(460,1860)" to="(490,1860)"/> <wire from="(300,1550)" to="(320,1550)"/> <wire from="(140,1550)" to="(160,1550)"/> <wire from="(1020,1310)" to="(1040,1310)"/> <wire from="(960,660)" to="(960,710)"/> <wire from="(140,1440)" to="(140,1500)"/> <wire from="(700,1810)" to="(700,1820)"/> <wire from="(960,1910)" to="(960,1920)"/> <wire from="(790,2060)" to="(790,2070)"/> <wire from="(600,240)" to="(600,1200)"/> <wire from="(530,890)" to="(530,1340)"/> <wire from="(560,440)" to="(560,890)"/> <wire from="(920,980)" to="(980,980)"/> <wire from="(190,180)" to="(620,180)"/> <wire from="(580,410)" to="(680,410)"/> <wire from="(900,1940)" to="(940,1940)"/> <wire from="(960,1840)" to="(1000,1840)"/> <wire from="(390,1820)" to="(390,1850)"/> <wire from="(1050,1840)" to="(1050,1850)"/> <wire from="(200,1400)" to="(240,1400)"/> <wire from="(550,1340)" to="(550,1380)"/> <wire from="(900,360)" to="(920,360)"/> <wire from="(960,260)" to="(980,260)"/> <wire from="(1020,960)" to="(1040,960)"/> <wire from="(630,1840)" to="(660,1840)"/> <wire from="(220,1440)" to="(240,1440)"/> <wire from="(440,1610)" to="(1040,1610)"/> <wire from="(330,1280)" to="(330,1340)"/> <wire from="(960,310)" to="(960,360)"/> <wire from="(960,1110)" to="(960,1160)"/> <wire from="(930,330)" to="(980,330)"/> <wire from="(430,440)" to="(430,890)"/> <wire from="(790,1870)" to="(790,1880)"/> <wire from="(750,440)" to="(750,890)"/> <wire from="(560,890)" to="(560,1340)"/> <wire from="(920,1430)" to="(980,1430)"/> <wire from="(360,1760)" to="(360,1770)"/> <wire from="(580,860)" to="(680,860)"/> <wire from="(580,380)" to="(680,380)"/> <wire from="(920,1840)" to="(920,1860)"/> <wire from="(280,1610)" to="(320,1610)"/> <wire from="(1000,1840)" to="(1050,1840)"/> <wire from="(900,810)" to="(920,810)"/> <wire from="(940,210)" to="(960,210)"/> <wire from="(960,710)" to="(980,710)"/> <wire from="(710,1340)" to="(710,1450)"/> <wire from="(670,2010)" to="(700,2010)"/> <wire from="(420,1340)" to="(420,1380)"/> <wire from="(910,580)" to="(980,580)"/> <wire from="(1020,1410)" to="(1040,1410)"/> <wire from="(510,1520)" to="(650,1520)"/> <wire from="(960,760)" to="(960,810)"/> <wire from="(140,1380)" to="(140,1440)"/> <wire from="(930,780)" to="(980,780)"/> <wire from="(430,890)" to="(430,1340)"/> <wire from="(460,440)" to="(460,890)"/> <wire from="(790,2000)" to="(790,2010)"/> <wire from="(750,890)" to="(750,1340)"/> <wire from="(920,280)" to="(980,280)"/> <wire from="(420,1690)" to="(420,1830)"/> <wire from="(860,1940)" to="(860,2010)"/> <wire from="(620,300)" to="(680,300)"/> <wire from="(830,280)" to="(830,310)"/> <wire from="(580,350)" to="(680,350)"/> <wire from="(580,1310)" to="(680,1310)"/> <wire from="(580,830)" to="(680,830)"/> <wire from="(900,1880)" to="(940,1880)"/> <wire from="(190,1690)" to="(420,1690)"/> <wire from="(200,1340)" to="(240,1340)"/> <wire from="(630,1840)" to="(630,1860)"/> <wire from="(960,360)" to="(980,360)"/> <wire from="(940,660)" to="(960,660)"/> <wire from="(900,1260)" to="(920,1260)"/> <wire from="(1020,260)" to="(1040,260)"/> <wire from="(960,1160)" to="(980,1160)"/> <wire from="(940,390)" to="(940,430)"/> <wire from="(220,1380)" to="(240,1380)"/> <wire from="(700,2010)" to="(730,2010)"/> <wire from="(670,1820)" to="(700,1820)"/> <wire from="(910,420)" to="(910,580)"/> <wire from="(450,1340)" to="(450,1380)"/> <wire from="(400,290)" to="(410,290)"/> <wire from="(910,1030)" to="(980,1030)"/> <wire from="(910,230)" to="(910,350)"/> <wire from="(910,230)" to="(980,230)"/> <wire from="(960,410)" to="(960,460)"/> <wire from="(960,1210)" to="(960,1260)"/> <wire from="(930,1230)" to="(980,1230)"/> <wire from="(530,1870)" to="(530,1880)"/> <wire from="(780,280)" to="(830,280)"/> <wire from="(460,890)" to="(460,1340)"/> <wire from="(490,440)" to="(490,890)"/> <wire from="(790,1810)" to="(790,1820)"/> <wire from="(920,730)" to="(980,730)"/> <wire from="(830,730)" to="(830,760)"/> <wire from="(580,320)" to="(680,320)"/> <wire from="(580,800)" to="(680,800)"/> <wire from="(580,1280)" to="(680,1280)"/> <wire from="(960,1910)" to="(1000,1910)"/> <wire from="(660,1840)" to="(660,1860)"/> <wire from="(960,810)" to="(980,810)"/> <wire from="(940,1110)" to="(960,1110)"/> <wire from="(1020,710)" to="(1040,710)"/> <wire from="(280,1400)" to="(310,1400)"/> <wire from="(940,840)" to="(940,880)"/> <wire from="(700,1820)" to="(730,1820)"/> <wire from="(300,1590)" to="(320,1590)"/> <wire from="(910,870)" to="(910,1030)"/> <wire from="(480,1340)" to="(480,1380)"/> <wire from="(400,740)" to="(410,740)"/> <wire from="(390,1850)" to="(400,1850)"/> <wire from="(330,1790)" to="(340,1790)"/> <wire from="(910,680)" to="(980,680)"/> <wire from="(910,1480)" to="(980,1480)"/> <wire from="(910,680)" to="(910,800)"/> <wire from="(670,1850)" to="(670,1910)"/> <wire from="(510,1460)" to="(650,1460)"/> <wire from="(350,1400)" to="(420,1400)"/> <wire from="(960,860)" to="(960,910)"/> <wire from="(140,1320)" to="(140,1380)"/> <wire from="(700,2010)" to="(700,2020)"/> <wire from="(780,730)" to="(830,730)"/> <wire from="(920,1910)" to="(920,1920)"/> <wire from="(490,890)" to="(490,1340)"/> <wire from="(520,440)" to="(520,890)"/> <wire from="(920,1180)" to="(980,1180)"/> <wire from="(830,1180)" to="(830,1210)"/> <wire from="(580,770)" to="(680,770)"/> <wire from="(580,1250)" to="(680,1250)"/> <wire from="(860,1940)" to="(900,1940)"/> <wire from="(670,1980)" to="(670,2010)"/> <wire from="(920,1840)" to="(960,1840)"/> <wire from="(750,1850)" to="(770,1850)"/> <wire from="(510,1340)" to="(510,1380)"/> <wire from="(960,460)" to="(980,460)"/> <wire from="(1020,360)" to="(1040,360)"/> <wire from="(960,1260)" to="(980,1260)"/> <wire from="(190,240)" to="(600,240)"/> <wire from="(940,1290)" to="(940,1330)"/> <wire from="(290,1860)" to="(320,1860)"/> <wire from="(910,1320)" to="(910,1480)"/> <wire from="(220,1320)" to="(240,1320)"/> <wire from="(400,1190)" to="(410,1190)"/> <wire from="(910,1130)" to="(980,1130)"/> <wire from="(910,1130)" to="(910,1250)"/> <wire from="(1020,1160)" to="(1040,1160)"/> <wire from="(960,510)" to="(960,560)"/> <wire from="(960,1310)" to="(960,1360)"/> <comp lib="0" loc="(1040,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(200,1330)" name="D-latch"/> <comp loc="(1020,1220)" name="D-latch"/> <comp lib="0" loc="(160,1550)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(807,723)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(1040,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,320)" name="D-latch"/> <comp lib="0" loc="(100,1520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC1#"/> </comp> <comp lib="0" loc="(940,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(1154,1915)" name="Text"> <a name="text" val="/SYNC"/> </comp> <comp lib="6" loc="(160,1854)" name="Text"> <a name="text" val="SYNC"/> </comp> <comp lib="0" loc="(610,1850)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(807,803)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1040,1610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SYNC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(790,2020)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(300,110)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp loc="(1020,670)" name="D-latch"/> <comp lib="0" loc="(850,1220)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(360,1830)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(280,1330)" name="D-latch"/> <comp loc="(1020,220)" name="D-latch"/> <comp lib="6" loc="(1135,1845)" name="Text"> <a name="text" val="VOLTAGE DIVIDER"/> <a name="font" val="SansSerif bold 16"/> </comp> <comp lib="6" loc="(1051,633)" name="Text"> <a name="text" val="G"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(940,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="2" loc="(420,1400)" name="Decoder"> <a name="facing" val="north"/> <a name="select" val="4"/> <a name="disabled" val="0"/> </comp> <comp lib="2" loc="(880,350)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(1000,1920)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(790,2000)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(200,1390)" name="D-latch"/> <comp loc="(1020,1020)" name="D-latch"/> <comp loc="(360,1600)" name="D-latch"/> <comp lib="0" loc="(1040,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC2#"/> </comp> <comp lib="0" loc="(360,1760)" name="Power"/> <comp lib="6" loc="(807,1173)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="2" loc="(880,1250)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(850,770)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(1051,1080)" name="Text"> <a name="text" val="B"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(920,1970)" name="Ground"/> <comp lib="0" loc="(700,2020)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(158,1694)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp loc="(1020,1420)" name="D-latch"/> <comp lib="0" loc="(1040,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1040,410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(807,311)" name="Text"> <a name="text" val="1"/> </comp> <comp loc="(1020,820)" name="D-latch"/> <comp lib="0" loc="(850,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1040,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(780,710)" name="SEL12x3"/> <comp lib="0" loc="(1050,1830)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp loc="(1020,1470)" name="D-latch"/> <comp lib="6" loc="(830,1812)" name="Text"> <a name="text" val="SYNC2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1000,1900)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,1900)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1950)" name="Power"/> <comp loc="(1020,270)" name="D-latch"/> <comp lib="0" loc="(1000,1970)" name="Ground"/> <comp loc="(1020,420)" name="D-latch"/> <comp loc="(200,1450)" name="D-latch"/> <comp lib="1" loc="(510,1460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(580,710)" name="SEL16x12_G"/> <comp lib="0" loc="(240,1550)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(280,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1040,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(400,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1020,370)" name="D-latch"/> <comp loc="(280,1390)" name="D-latch"/> <comp loc="(1020,720)" name="D-latch"/> <comp lib="2" loc="(880,800)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(1050,1850)" name="Pull Resistor"> <a name="facing" val="north"/> </comp> <comp lib="1" loc="(690,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(280,1600)" name="D-latch"/> <comp loc="(1020,1320)" name="D-latch"/> <comp lib="0" loc="(360,1880)" name="Ground"/> <comp lib="0" loc="(440,1850)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(190,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(360,1810)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(320,1550)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp loc="(280,1510)" name="D-latch"/> <comp lib="1" loc="(690,1450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(670,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,1200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL1#"/> </comp> <comp loc="(440,1600)" name="D-latch"/> <comp lib="6" loc="(807,1211)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(630,1440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(530,1830)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(700,1810)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,1550)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1040,860)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1040,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,1120)" name="D-latch"/> <comp lib="6" loc="(828,2000)" name="Text"> <a name="text" val="SYNC1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1020,970)" name="D-latch"/> <comp lib="0" loc="(190,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TG"/> </comp> <comp lib="0" loc="(1040,1210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(270,1850)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(960,1900)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL0#"/> </comp> <comp loc="(1020,1170)" name="D-latch"/> <comp lib="6" loc="(807,273)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(670,1180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1040,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,1370)" name="D-latch"/> <comp loc="(280,1450)" name="D-latch"/> <comp lib="0" loc="(700,1880)" name="Ground"/> <comp lib="0" loc="(790,1830)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(1020,920)" name="D-latch"/> <comp loc="(1020,1270)" name="D-latch"/> <comp lib="0" loc="(1040,1160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,570)" name="D-latch"/> <comp lib="0" loc="(190,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TR"/> </comp> <comp lib="0" loc="(700,2000)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> </comp> <comp lib="0" loc="(1040,660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,2070)" name="Ground"/> <comp lib="1" loc="(510,1520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1040,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(400,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1020,520)" name="D-latch"/> <comp lib="0" loc="(100,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC3#"/> </comp> <comp lib="0" loc="(400,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(790,1760)" name="Power"/> <comp lib="0" loc="(1040,1010)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(530,1810)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(920,1920)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(1020,870)" name="D-latch"/> <comp loc="(200,1510)" name="D-latch"/> <comp lib="6" loc="(1050,180)" name="Text"> <a name="text" val="R"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(1040,1110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(790,1810)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(960,1920)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(670,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(400,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(790,1950)" name="Power"/> <comp lib="0" loc="(350,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="0" loc="(190,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="0" loc="(1040,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B6"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(807,761)" name="Text"> <a name="text" val="1"/> </comp> <comp loc="(580,1160)" name="SEL16x12_B"/> <comp lib="0" loc="(940,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(700,1830)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(240,80)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(790,1880)" name="Ground"/> <comp loc="(1020,770)" name="D-latch"/> <comp loc="(1020,470)" name="D-latch"/> <comp loc="(580,260)" name="SEL16x12_R"/> <comp lib="6" loc="(156,1725)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(790,2070)" name="Ground"/> <comp lib="0" loc="(190,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TB"/> </comp> <comp lib="0" loc="(1040,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1760)" name="Power"/> <comp lib="6" loc="(807,1253)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(300,80)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(530,1760)" name="Power"/> <comp lib="0" loc="(1040,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="R1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(530,1880)" name="Ground"/> <comp lib="0" loc="(100,1460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC0#"/> </comp> <comp loc="(780,1160)" name="SEL12x3"/> <comp loc="(780,260)" name="SEL12x3"/> <comp lib="6" loc="(168,1879)" name="Text"> <a name="text" val="FROM FSM"/> </comp> <comp lib="6" loc="(807,353)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(960,1970)" name="Ground"/> <comp lib="0" loc="(1040,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1040,1360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="B5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1040,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="G2"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="RW_CONTROL"> <a name="circuit" val="RW_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#d900ff" height="70" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="74">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="104">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="73">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="104">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="46">R/W CONTROL</text> <circ-port height="8" pin="110,70" width="8" x="46" y="66"/> <circ-port height="8" pin="110,160" width="8" x="46" y="96"/> <circ-port height="10" pin="290,80" width="10" x="185" y="65"/> <circ-port height="10" pin="290,150" width="10" x="185" y="95"/> <circ-anchor facing="east" height="6" width="6" x="187" y="47"/> </appear> <wire from="(260,80)" to="(290,80)"/> <wire from="(150,140)" to="(230,140)"/> <wire from="(150,70)" to="(150,140)"/> <wire from="(210,90)" to="(210,160)"/> <wire from="(260,150)" to="(290,150)"/> <wire from="(110,70)" to="(150,70)"/> <wire from="(190,70)" to="(230,70)"/> <wire from="(110,160)" to="(210,160)"/> <wire from="(150,70)" to="(170,70)"/> <wire from="(210,90)" to="(230,90)"/> <wire from="(210,160)" to="(230,160)"/> <comp lib="6" loc="(101,27)" name="Text"> <a name="text" val="R/W = 0: write data to PPU"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(190,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(455,87)" name="Text"> <a name="text" val="/RD = 0: CPU read data from PPU"/> </comp> <comp lib="1" loc="(260,80)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(448,154)" name="Text"> <a name="text" val="/WR = 0: CPU write data to PPU"/> </comp> <comp lib="0" loc="(290,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(290,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,150)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="CPU_DATA_IO"> <a name="circuit" val="CPU_DATA_IO"/> <a name="clabel" val="CPU DATA IO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffc63e" height="90" stroke="#000000" stroke-width="2" width="330" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="84">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="114">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="71">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="72">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="175" y="72">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="72">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="72">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="265" y="72">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="294" y="72">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="72">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="278" y="127">CPU/PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="127">PPU/CPU</text> <circ-port height="8" pin="90,70" width="8" x="46" y="76"/> <circ-port height="8" pin="90,270" width="8" x="46" y="106"/> <circ-port height="8" pin="150,170" width="8" x="146" y="136"/> <circ-port height="10" pin="470,500" width="10" x="275" y="135"/> <circ-port height="10" pin="500,250" width="10" x="285" y="45"/> <circ-port height="10" pin="500,280" width="10" x="315" y="45"/> <circ-port height="8" pin="90,370" width="8" x="116" y="46"/> <circ-port height="8" pin="90,400" width="8" x="146" y="46"/> <circ-port height="8" pin="90,430" width="8" x="176" y="46"/> <circ-port height="8" pin="90,460" width="8" x="206" y="46"/> <circ-port height="8" pin="90,490" width="8" x="236" y="46"/> <circ-port height="8" pin="90,520" width="8" x="266" y="46"/> <circ-port height="8" pin="90,550" width="8" x="296" y="46"/> <circ-port height="8" pin="90,580" width="8" x="326" y="46"/> <circ-port height="10" pin="500,190" width="10" x="225" y="45"/> <circ-port height="10" pin="500,220" width="10" x="255" y="45"/> <circ-port height="10" pin="500,130" width="10" x="165" y="45"/> <circ-port height="10" pin="500,160" width="10" x="195" y="45"/> <circ-port height="10" pin="500,70" width="10" x="105" y="45"/> <circ-port height="10" pin="500,100" width="10" x="135" y="45"/> <circ-anchor facing="east" height="6" width="6" x="377" y="47"/> </appear> <wire from="(140,370)" to="(140,440)"/> <wire from="(150,270)" to="(200,270)"/> <wire from="(310,170)" to="(430,170)"/> <wire from="(90,370)" to="(140,370)"/> <wire from="(450,200)" to="(450,280)"/> <wire from="(90,430)" to="(120,430)"/> <wire from="(250,510)" to="(250,670)"/> <wire from="(440,500)" to="(470,500)"/> <wire from="(390,490)" to="(420,490)"/> <wire from="(450,150)" to="(480,150)"/> <wire from="(300,450)" to="(320,450)"/> <wire from="(300,650)" to="(320,650)"/> <wire from="(150,70)" to="(300,70)"/> <wire from="(480,190)" to="(500,190)"/> <wire from="(280,480)" to="(280,520)"/> <wire from="(390,510)" to="(390,550)"/> <wire from="(210,480)" to="(230,480)"/> <wire from="(130,450)" to="(140,450)"/> <wire from="(300,500)" to="(300,550)"/> <wire from="(300,300)" to="(300,350)"/> <wire from="(250,320)" to="(320,320)"/> <wire from="(250,320)" to="(250,440)"/> <wire from="(420,530)" to="(420,650)"/> <wire from="(260,620)" to="(320,620)"/> <wire from="(110,480)" to="(110,490)"/> <wire from="(90,580)" to="(140,580)"/> <wire from="(480,130)" to="(480,150)"/> <wire from="(480,170)" to="(480,190)"/> <wire from="(400,400)" to="(400,480)"/> <wire from="(400,520)" to="(400,600)"/> <wire from="(90,550)" to="(130,550)"/> <wire from="(90,270)" to="(130,270)"/> <wire from="(90,70)" to="(130,70)"/> <wire from="(300,270)" to="(300,300)"/> <wire from="(280,420)" to="(320,420)"/> <wire from="(120,490)" to="(120,520)"/> <wire from="(90,520)" to="(120,520)"/> <wire from="(470,220)" to="(500,220)"/> <wire from="(470,100)" to="(500,100)"/> <wire from="(250,480)" to="(280,480)"/> <wire from="(360,550)" to="(390,550)"/> <wire from="(300,300)" to="(320,300)"/> <wire from="(250,490)" to="(270,490)"/> <wire from="(300,500)" to="(320,500)"/> <wire from="(250,450)" to="(270,450)"/> <wire from="(400,480)" to="(420,480)"/> <wire from="(400,520)" to="(420,520)"/> <wire from="(90,490)" to="(110,490)"/> <wire from="(130,500)" to="(130,550)"/> <wire from="(250,500)" to="(260,500)"/> <wire from="(130,500)" to="(140,500)"/> <wire from="(300,350)" to="(300,400)"/> <wire from="(300,550)" to="(300,600)"/> <wire from="(150,170)" to="(290,170)"/> <wire from="(460,190)" to="(460,250)"/> <wire from="(260,500)" to="(260,620)"/> <wire from="(360,650)" to="(420,650)"/> <wire from="(140,510)" to="(140,580)"/> <wire from="(450,70)" to="(500,70)"/> <wire from="(270,370)" to="(320,370)"/> <wire from="(270,570)" to="(320,570)"/> <wire from="(200,270)" to="(200,470)"/> <wire from="(90,400)" to="(130,400)"/> <wire from="(300,70)" to="(300,160)"/> <wire from="(460,250)" to="(500,250)"/> <wire from="(160,480)" to="(190,480)"/> <wire from="(110,470)" to="(140,470)"/> <wire from="(450,170)" to="(480,170)"/> <wire from="(390,510)" to="(420,510)"/> <wire from="(420,300)" to="(420,460)"/> <wire from="(300,350)" to="(320,350)"/> <wire from="(300,550)" to="(320,550)"/> <wire from="(450,180)" to="(470,180)"/> <wire from="(450,140)" to="(470,140)"/> <wire from="(480,130)" to="(500,130)"/> <wire from="(280,420)" to="(280,460)"/> <wire from="(90,460)" to="(110,460)"/> <wire from="(120,490)" to="(140,490)"/> <wire from="(390,450)" to="(390,490)"/> <wire from="(410,470)" to="(420,470)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(300,400)" to="(300,450)"/> <wire from="(300,600)" to="(300,650)"/> <wire from="(450,70)" to="(450,130)"/> <wire from="(360,500)" to="(420,500)"/> <wire from="(360,300)" to="(420,300)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(450,280)" to="(500,280)"/> <wire from="(360,350)" to="(410,350)"/> <wire from="(110,460)" to="(110,470)"/> <wire from="(270,370)" to="(270,450)"/> <wire from="(270,490)" to="(270,570)"/> <wire from="(280,520)" to="(320,520)"/> <wire from="(120,430)" to="(120,460)"/> <wire from="(360,400)" to="(400,400)"/> <wire from="(360,600)" to="(400,600)"/> <wire from="(110,480)" to="(140,480)"/> <wire from="(250,460)" to="(280,460)"/> <wire from="(360,450)" to="(390,450)"/> <wire from="(300,400)" to="(320,400)"/> <wire from="(300,600)" to="(320,600)"/> <wire from="(120,460)" to="(140,460)"/> <wire from="(470,180)" to="(470,220)"/> <wire from="(470,100)" to="(470,140)"/> <wire from="(130,400)" to="(130,450)"/> <wire from="(300,450)" to="(300,500)"/> <wire from="(250,670)" to="(320,670)"/> <wire from="(410,350)" to="(410,470)"/> <wire from="(250,470)" to="(320,470)"/> <comp lib="0" loc="(90,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RD"/> </comp> <comp lib="0" loc="(90,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp loc="(360,410)" name="D-latch"/> <comp lib="0" loc="(500,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(159,238)" name="Text"> <a name="text" val="/WR = 0: CPU write data to PPU"/> </comp> <comp loc="(360,610)" name="D-latch"/> <comp lib="0" loc="(300,270)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(310,170)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp loc="(360,510)" name="D-latch"/> <comp lib="0" loc="(440,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(90,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(470,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="CPU/PPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WR"/> </comp> <comp lib="0" loc="(150,170)" name="Pin"> <a name="width" val="8"/> <a name="label" val="PPU/CPU"/> </comp> <comp lib="0" loc="(500,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(230,480)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp loc="(360,310)" name="D-latch"/> <comp lib="0" loc="(500,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,460)" name="D-latch"/> <comp lib="0" loc="(90,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp loc="(360,660)" name="D-latch"/> <comp loc="(360,360)" name="D-latch"/> <comp lib="0" loc="(160,480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(500,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(150,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(500,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="6" loc="(167,37)" name="Text"> <a name="text" val="/RD = 0: CPU read data from PPU"/> </comp> <comp lib="1" loc="(210,480)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(430,170)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp loc="(360,560)" name="D-latch"/> <comp lib="0" loc="(500,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="INTERRUPT_CONTROL"> <a name="circuit" val="INTERRUPT_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M120,51 Q124,61 128,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#639dff" height="141" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="152" y="154">INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="148" y="94">&gt;DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="155">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="94">/VSET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="175">VBL_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="43">INTERRUPT CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <circ-port height="8" pin="80,40" width="8" x="46" y="166"/> <circ-port height="8" pin="80,150" width="8" x="46" y="86"/> <circ-port height="8" pin="80,210" width="8" x="46" y="146"/> <circ-port height="8" pin="80,250" width="8" x="46" y="126"/> <circ-port height="8" pin="80,290" width="8" x="46" y="106"/> <circ-port height="10" pin="650,70" width="10" x="165" y="145"/> <circ-port height="10" pin="650,240" width="10" x="165" y="85"/> <circ-port height="8" pin="80,110" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(530,70)" to="(650,70)"/> <wire from="(150,250)" to="(150,260)"/> <wire from="(610,240)" to="(650,240)"/> <wire from="(390,110)" to="(390,130)"/> <wire from="(460,40)" to="(460,60)"/> <wire from="(460,80)" to="(460,100)"/> <wire from="(80,110)" to="(120,110)"/> <wire from="(310,90)" to="(310,120)"/> <wire from="(150,150)" to="(150,180)"/> <wire from="(80,40)" to="(180,40)"/> <wire from="(150,180)" to="(310,180)"/> <wire from="(140,90)" to="(230,90)"/> <wire from="(460,80)" to="(490,80)"/> <wire from="(460,60)" to="(490,60)"/> <wire from="(310,120)" to="(330,120)"/> <wire from="(310,140)" to="(330,140)"/> <wire from="(340,230)" to="(360,230)"/> <wire from="(80,210)" to="(360,210)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(230,90)" to="(230,130)"/> <wire from="(150,280)" to="(170,280)"/> <wire from="(150,260)" to="(170,260)"/> <wire from="(230,90)" to="(310,90)"/> <wire from="(140,100)" to="(150,100)"/> <wire from="(600,260)" to="(600,320)"/> <wire from="(460,100)" to="(460,290)"/> <wire from="(80,290)" to="(150,290)"/> <wire from="(80,150)" to="(150,150)"/> <wire from="(80,250)" to="(150,250)"/> <wire from="(210,270)" to="(340,270)"/> <wire from="(570,230)" to="(580,230)"/> <wire from="(570,250)" to="(580,250)"/> <wire from="(590,260)" to="(590,270)"/> <wire from="(150,280)" to="(150,290)"/> <wire from="(440,270)" to="(490,270)"/> <wire from="(530,270)" to="(590,270)"/> <wire from="(210,150)" to="(250,150)"/> <wire from="(290,130)" to="(330,130)"/> <wire from="(150,100)" to="(150,130)"/> <wire from="(420,100)" to="(460,100)"/> <wire from="(460,290)" to="(490,290)"/> <wire from="(410,110)" to="(410,220)"/> <wire from="(370,130)" to="(390,130)"/> <wire from="(310,140)" to="(310,180)"/> <wire from="(340,230)" to="(340,270)"/> <wire from="(150,150)" to="(170,150)"/> <wire from="(150,130)" to="(170,130)"/> <wire from="(230,130)" to="(250,130)"/> <wire from="(340,270)" to="(420,270)"/> <wire from="(340,270)" to="(340,320)"/> <wire from="(340,320)" to="(600,320)"/> <wire from="(200,40)" to="(460,40)"/> <comp lib="1" loc="(530,70)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(570,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(210,140)" name="D-latch"/> <comp lib="6" loc="(231,263)" name="Text"> <a name="text" val="R2_EN"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="1" loc="(210,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,80)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(596,209)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp loc="(530,280)" name="D-latch"/> <comp lib="2" loc="(610,240)" name="Multiplexer"/> <comp lib="1" loc="(390,220)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(392,64)" name="Text"> <a name="text" val="VBLANK FLIP/FLOP"/> </comp> <comp lib="0" loc="(650,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="INT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(200,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(570,250)" name="Constant"/> <comp loc="(290,140)" name="D-latch"/> <comp lib="0" loc="(80,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VBL_EN"/> </comp> <comp lib="1" loc="(440,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,110)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VSET"/> </comp> <comp lib="0" loc="(650,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB7"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="COLOR_IO"> <a name="circuit" val="COLOR_IO"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M63,50 Q67,60 71,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#37ffb2" height="210" stroke="#000000" stroke-width="2" width="680" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="152">&lt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="124">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="71">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="282" y="85">LL#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="270" y="70">0</text> <text font-family="SansSerif" font-size="24" text-anchor="middle" x="384" y="165">COLOR IO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="717" y="123">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="175">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="702" y="149">&gt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="720" y="173">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="582" y="70">#CB/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="380" y="224">CRAM IO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="71">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="70">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="628" y="69">OE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="141" y="85">CC#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="527" y="70">#DB/CB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="229" y="250">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="469" y="250">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="250">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="349" y="250">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="409" y="250">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="530" y="250">4</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,75 50,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,50" width="8" x="46" y="66"/> <circ-port height="8" pin="100,90" width="8" x="526" y="46"/> <circ-port height="8" pin="100,130" width="8" x="576" y="46"/> <circ-port height="8" pin="100,170" width="8" x="626" y="46"/> <circ-port height="8" pin="100,220" width="8" x="396" y="256"/> <circ-port height="8" pin="100,350" width="8" x="46" y="116"/> <circ-port height="8" pin="100,430" width="8" x="336" y="256"/> <circ-port height="8" pin="100,560" width="8" x="46" y="126"/> <circ-port height="8" pin="100,640" width="8" x="276" y="256"/> <circ-port height="8" pin="100,770" width="8" x="46" y="136"/> <circ-port height="8" pin="100,850" width="8" x="216" y="256"/> <circ-port height="8" pin="100,980" width="8" x="46" y="146"/> <circ-port height="8" pin="100,1060" width="8" x="516" y="256"/> <circ-port height="8" pin="100,1190" width="8" x="46" y="156"/> <circ-port height="8" pin="100,1270" width="8" x="456" y="256"/> <circ-port height="8" pin="100,1400" width="8" x="46" y="166"/> <circ-port height="10" pin="700,210" width="10" x="165" y="45"/> <circ-port height="10" pin="700,280" width="10" x="725" y="115"/> <circ-port height="10" pin="700,340" width="10" x="415" y="255"/> <circ-port height="10" pin="700,420" width="10" x="145" y="45"/> <circ-port height="10" pin="700,490" width="10" x="725" y="125"/> <circ-port height="10" pin="700,550" width="10" x="355" y="255"/> <circ-port height="10" pin="700,630" width="10" x="125" y="45"/> <circ-port height="10" pin="700,700" width="10" x="725" y="135"/> <circ-port height="10" pin="700,760" width="10" x="295" y="255"/> <circ-port height="10" pin="700,840" width="10" x="105" y="45"/> <circ-port height="10" pin="700,910" width="10" x="725" y="145"/> <circ-port height="10" pin="700,970" width="10" x="235" y="255"/> <circ-port height="10" pin="700,1050" width="10" x="265" y="45"/> <circ-port height="10" pin="700,1120" width="10" x="725" y="155"/> <circ-port height="10" pin="700,1180" width="10" x="535" y="255"/> <circ-port height="10" pin="700,1260" width="10" x="285" y="45"/> <circ-port height="10" pin="700,1330" width="10" x="725" y="165"/> <circ-port height="10" pin="700,1390" width="10" x="475" y="255"/> <circ-anchor facing="east" height="6" width="6" x="67" y="47"/> </appear> <wire from="(410,1240)" to="(410,1310)"/> <wire from="(330,840)" to="(330,910)"/> <wire from="(590,130)" to="(590,270)"/> <wire from="(390,210)" to="(700,210)"/> <wire from="(490,1240)" to="(490,1310)"/> <wire from="(160,410)" to="(160,620)"/> <wire from="(410,260)" to="(410,470)"/> <wire from="(490,260)" to="(490,470)"/> <wire from="(600,1120)" to="(700,1120)"/> <wire from="(600,280)" to="(700,280)"/> <wire from="(310,400)" to="(310,610)"/> <wire from="(330,490)" to="(430,490)"/> <wire from="(330,1330)" to="(430,1330)"/> <wire from="(220,830)" to="(260,830)"/> <wire from="(620,750)" to="(620,960)"/> <wire from="(590,480)" to="(590,690)"/> <wire from="(310,400)" to="(350,400)"/> <wire from="(290,420)" to="(330,420)"/> <wire from="(290,1260)" to="(330,1260)"/> <wire from="(310,1240)" to="(350,1240)"/> <wire from="(470,1120)" to="(510,1120)"/> <wire from="(470,280)" to="(510,280)"/> <wire from="(490,1240)" to="(510,1240)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(620,1170)" to="(640,1170)"/> <wire from="(680,550)" to="(700,550)"/> <wire from="(680,1390)" to="(700,1390)"/> <wire from="(330,840)" to="(350,840)"/> <wire from="(410,680)" to="(430,680)"/> <wire from="(410,1240)" to="(430,1240)"/> <wire from="(550,490)" to="(580,490)"/> <wire from="(550,1330)" to="(580,1330)"/> <wire from="(490,680)" to="(510,680)"/> <wire from="(100,50)" to="(120,50)"/> <wire from="(160,830)" to="(180,830)"/> <wire from="(240,430)" to="(260,430)"/> <wire from="(100,640)" to="(180,640)"/> <wire from="(380,770)" to="(640,770)"/> <wire from="(100,770)" to="(360,770)"/> <wire from="(330,1050)" to="(330,1120)"/> <wire from="(330,210)" to="(330,280)"/> <wire from="(160,40)" to="(410,40)"/> <wire from="(390,420)" to="(700,420)"/> <wire from="(160,620)" to="(160,830)"/> <wire from="(240,220)" to="(240,430)"/> <wire from="(410,470)" to="(410,680)"/> <wire from="(490,470)" to="(490,680)"/> <wire from="(600,490)" to="(700,490)"/> <wire from="(600,1330)" to="(700,1330)"/> <wire from="(310,610)" to="(310,820)"/> <wire from="(330,700)" to="(430,700)"/> <wire from="(220,200)" to="(260,200)"/> <wire from="(220,1040)" to="(260,1040)"/> <wire from="(620,960)" to="(620,1170)"/> <wire from="(590,690)" to="(590,900)"/> <wire from="(290,630)" to="(330,630)"/> <wire from="(310,610)" to="(350,610)"/> <wire from="(390,1050)" to="(430,1050)"/> <wire from="(470,1330)" to="(510,1330)"/> <wire from="(470,490)" to="(510,490)"/> <wire from="(470,1050)" to="(510,1050)"/> <wire from="(490,30)" to="(490,260)"/> <wire from="(620,540)" to="(640,540)"/> <wire from="(620,1380)" to="(640,1380)"/> <wire from="(680,760)" to="(700,760)"/> <wire from="(330,1050)" to="(350,1050)"/> <wire from="(330,210)" to="(350,210)"/> <wire from="(410,890)" to="(430,890)"/> <wire from="(550,700)" to="(580,700)"/> <wire from="(490,890)" to="(510,890)"/> <wire from="(160,200)" to="(180,200)"/> <wire from="(160,1040)" to="(180,1040)"/> <wire from="(240,640)" to="(260,640)"/> <wire from="(240,170)" to="(240,220)"/> <wire from="(100,850)" to="(180,850)"/> <wire from="(250,1060)" to="(260,1060)"/> <wire from="(380,980)" to="(640,980)"/> <wire from="(100,980)" to="(360,980)"/> <wire from="(330,1260)" to="(330,1330)"/> <wire from="(330,420)" to="(330,490)"/> <wire from="(410,890)" to="(410,1030)"/> <wire from="(490,890)" to="(490,1030)"/> <wire from="(390,630)" to="(700,630)"/> <wire from="(160,830)" to="(160,1040)"/> <wire from="(240,430)" to="(240,640)"/> <wire from="(410,680)" to="(410,890)"/> <wire from="(490,680)" to="(490,890)"/> <wire from="(600,700)" to="(700,700)"/> <wire from="(310,820)" to="(310,1030)"/> <wire from="(330,910)" to="(430,910)"/> <wire from="(410,40)" to="(410,260)"/> <wire from="(220,410)" to="(260,410)"/> <wire from="(220,1250)" to="(260,1250)"/> <wire from="(620,1170)" to="(620,1380)"/> <wire from="(620,330)" to="(620,540)"/> <wire from="(590,900)" to="(590,1110)"/> <wire from="(290,840)" to="(330,840)"/> <wire from="(310,820)" to="(350,820)"/> <wire from="(100,130)" to="(520,130)"/> <wire from="(390,1260)" to="(430,1260)"/> <wire from="(470,700)" to="(510,700)"/> <wire from="(470,1260)" to="(510,1260)"/> <wire from="(160,40)" to="(160,200)"/> <wire from="(550,1050)" to="(700,1050)"/> <wire from="(310,30)" to="(310,190)"/> <wire from="(620,750)" to="(640,750)"/> <wire from="(680,970)" to="(700,970)"/> <wire from="(240,850)" to="(260,850)"/> <wire from="(330,1260)" to="(350,1260)"/> <wire from="(330,420)" to="(350,420)"/> <wire from="(410,1100)" to="(430,1100)"/> <wire from="(410,260)" to="(430,260)"/> <wire from="(550,910)" to="(580,910)"/> <wire from="(490,1100)" to="(510,1100)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(160,410)" to="(180,410)"/> <wire from="(160,1250)" to="(180,1250)"/> <wire from="(100,220)" to="(180,220)"/> <wire from="(250,1270)" to="(260,1270)"/> <wire from="(100,1060)" to="(180,1060)"/> <wire from="(100,170)" to="(240,170)"/> <wire from="(620,90)" to="(620,330)"/> <wire from="(100,90)" to="(620,90)"/> <wire from="(380,1190)" to="(640,1190)"/> <wire from="(380,350)" to="(640,350)"/> <wire from="(100,350)" to="(360,350)"/> <wire from="(100,1190)" to="(360,1190)"/> <wire from="(410,1030)" to="(410,1100)"/> <wire from="(490,1030)" to="(490,1100)"/> <wire from="(330,630)" to="(330,700)"/> <wire from="(540,130)" to="(590,130)"/> <wire from="(310,30)" to="(490,30)"/> <wire from="(410,1100)" to="(410,1240)"/> <wire from="(490,1100)" to="(490,1240)"/> <wire from="(390,840)" to="(700,840)"/> <wire from="(160,1040)" to="(160,1250)"/> <wire from="(160,200)" to="(160,410)"/> <wire from="(240,640)" to="(240,850)"/> <wire from="(140,30)" to="(310,30)"/> <wire from="(600,910)" to="(700,910)"/> <wire from="(310,190)" to="(310,400)"/> <wire from="(310,1030)" to="(310,1240)"/> <wire from="(330,1120)" to="(430,1120)"/> <wire from="(330,280)" to="(430,280)"/> <wire from="(220,620)" to="(260,620)"/> <wire from="(590,1110)" to="(590,1320)"/> <wire from="(620,540)" to="(620,750)"/> <wire from="(590,270)" to="(590,480)"/> <wire from="(290,210)" to="(330,210)"/> <wire from="(310,190)" to="(350,190)"/> <wire from="(290,1050)" to="(330,1050)"/> <wire from="(310,1030)" to="(350,1030)"/> <wire from="(470,910)" to="(510,910)"/> <wire from="(550,1260)" to="(700,1260)"/> <wire from="(490,1310)" to="(510,1310)"/> <wire from="(620,960)" to="(640,960)"/> <wire from="(680,340)" to="(700,340)"/> <wire from="(680,1180)" to="(700,1180)"/> <wire from="(330,630)" to="(350,630)"/> <wire from="(410,1310)" to="(430,1310)"/> <wire from="(410,470)" to="(430,470)"/> <wire from="(410,1030)" to="(430,1030)"/> <wire from="(550,280)" to="(580,280)"/> <wire from="(550,1120)" to="(580,1120)"/> <wire from="(490,1030)" to="(510,1030)"/> <wire from="(490,470)" to="(510,470)"/> <wire from="(160,620)" to="(180,620)"/> <wire from="(140,40)" to="(160,40)"/> <wire from="(240,220)" to="(260,220)"/> <wire from="(100,430)" to="(180,430)"/> <wire from="(100,1270)" to="(180,1270)"/> <wire from="(380,560)" to="(640,560)"/> <wire from="(380,1400)" to="(640,1400)"/> <wire from="(100,560)" to="(360,560)"/> <wire from="(100,1400)" to="(360,1400)"/> <comp loc="(550,270)" name="D-latch"/> <comp loc="(470,690)" name="D-latch"/> <comp lib="0" loc="(100,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB1"/> </comp> <comp lib="0" loc="(100,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#DB/CB"/> </comp> <comp lib="1" loc="(680,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp loc="(550,1250)" name="D-latch"/> <comp loc="(550,1110)" name="D-latch"/> <comp lib="1" loc="(290,210)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="1" loc="(380,1190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(250,1270)" name="Constant"/> <comp loc="(390,410)" name="D-latch"/> <comp lib="1" loc="(600,700)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,420)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,1320)" name="D-latch"/> <comp loc="(390,200)" name="D-latch"/> <comp loc="(470,480)" name="D-latch"/> <comp lib="1" loc="(380,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(390,830)" name="D-latch"/> <comp lib="1" loc="(380,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(470,1040)" name="D-latch"/> <comp lib="0" loc="(700,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(600,1120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(680,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,900)" name="D-latch"/> <comp lib="1" loc="(380,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,490)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(540,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(220,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(700,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(550,690)" name="D-latch"/> <comp lib="0" loc="(700,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(680,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB0"/> </comp> <comp lib="0" loc="(700,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB5"/> </comp> <comp loc="(550,480)" name="D-latch"/> <comp lib="1" loc="(290,1260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(390,1040)" name="D-latch"/> <comp lib="0" loc="(100,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#CB/DB"/> </comp> <comp loc="(470,1110)" name="D-latch"/> <comp lib="1" loc="(680,550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(390,1250)" name="D-latch"/> <comp lib="0" loc="(700,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(250,1060)" name="Constant"/> <comp lib="4" loc="(220,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,50)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(100,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB2"/> </comp> <comp lib="1" loc="(680,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,270)" name="D-latch"/> <comp lib="1" loc="(600,1330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,630)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> <comp lib="0" loc="(700,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp lib="0" loc="(700,1330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,1250)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,1050)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(600,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(700,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB4"/> </comp> <comp loc="(470,900)" name="D-latch"/> <comp lib="0" loc="(700,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(680,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(600,910)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(380,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(550,1320)" name="D-latch"/> <comp lib="4" loc="(220,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp loc="(470,1250)" name="D-latch"/> <comp lib="0" loc="(700,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BW"/> </comp> <comp lib="0" loc="(700,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(390,620)" name="D-latch"/> <comp lib="0" loc="(700,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB3"/> </comp> <comp lib="1" loc="(290,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,1040)" name="D-latch"/> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> </circuit> <circuit name="COLOR_IO_RGB"> <a name="circuit" val="COLOR_IO_RGB"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M114,50 Q118,60 122,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#37ffb2" height="210" stroke="#000000" stroke-width="2" width="681" x="100" y="50"/> <text font-family="SansSerif" font-size="24" text-anchor="middle" x="435" y="165">COLOR IO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="581" y="250">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="280" y="250">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="134" y="152">&lt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="71">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="175">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="192" y="86">CC#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="125" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="250">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="520" y="250">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="114" y="124">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="341" y="70">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="578" y="70">#DB/CB</text> <polyline fill="none" points="107,75 101,75" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="679" y="69">OE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="400" y="250">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="221" y="71">0</text> <polyline fill="none" points="107,65 107,75" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="341" y="250">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="321" y="70">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="333" y="85">LL#</text> <polyline fill="none" points="101,65 106,65" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="224">CRAM IO</text> <circ-port height="8" pin="100,50" width="8" x="96" y="66"/> <circ-port height="8" pin="100,90" width="8" x="576" y="46"/> <circ-port height="8" pin="100,130" width="8" x="676" y="46"/> <circ-port height="8" pin="100,180" width="8" x="446" y="256"/> <circ-port height="8" pin="100,230" width="8" x="96" y="116"/> <circ-port height="8" pin="100,310" width="8" x="386" y="256"/> <circ-port height="8" pin="100,360" width="8" x="96" y="126"/> <circ-port height="8" pin="100,440" width="8" x="326" y="256"/> <circ-port height="8" pin="100,490" width="8" x="96" y="136"/> <circ-port height="8" pin="100,570" width="8" x="266" y="256"/> <circ-port height="8" pin="100,620" width="8" x="96" y="146"/> <circ-port height="8" pin="100,700" width="8" x="566" y="256"/> <circ-port height="8" pin="100,750" width="8" x="96" y="156"/> <circ-port height="8" pin="100,830" width="8" x="506" y="256"/> <circ-port height="8" pin="100,880" width="8" x="96" y="166"/> <circ-port height="10" pin="640,170" width="10" x="215" y="45"/> <circ-port height="10" pin="640,220" width="10" x="465" y="255"/> <circ-port height="10" pin="640,300" width="10" x="195" y="45"/> <circ-port height="10" pin="640,350" width="10" x="405" y="255"/> <circ-port height="10" pin="640,430" width="10" x="175" y="45"/> <circ-port height="10" pin="640,480" width="10" x="345" y="255"/> <circ-port height="10" pin="640,560" width="10" x="155" y="45"/> <circ-port height="10" pin="640,610" width="10" x="285" y="255"/> <circ-port height="10" pin="640,690" width="10" x="315" y="45"/> <circ-port height="10" pin="640,740" width="10" x="585" y="255"/> <circ-port height="10" pin="640,820" width="10" x="335" y="45"/> <circ-port height="10" pin="640,870" width="10" x="525" y="255"/> <circ-anchor facing="east" height="6" width="6" x="127" y="47"/> </appear> <wire from="(160,420)" to="(160,550)"/> <wire from="(240,180)" to="(240,310)"/> <wire from="(310,410)" to="(310,540)"/> <wire from="(560,340)" to="(560,470)"/> <wire from="(100,620)" to="(340,620)"/> <wire from="(220,550)" to="(260,550)"/> <wire from="(290,820)" to="(330,820)"/> <wire from="(290,300)" to="(330,300)"/> <wire from="(370,820)" to="(410,820)"/> <wire from="(450,820)" to="(490,820)"/> <wire from="(360,620)" to="(580,620)"/> <wire from="(560,470)" to="(580,470)"/> <wire from="(620,610)" to="(640,610)"/> <wire from="(310,540)" to="(330,540)"/> <wire from="(100,50)" to="(120,50)"/> <wire from="(160,550)" to="(180,550)"/> <wire from="(240,310)" to="(260,310)"/> <wire from="(100,440)" to="(180,440)"/> <wire from="(470,670)" to="(470,720)"/> <wire from="(310,670)" to="(310,720)"/> <wire from="(370,430)" to="(640,430)"/> <wire from="(160,550)" to="(160,680)"/> <wire from="(240,310)" to="(240,440)"/> <wire from="(310,540)" to="(310,670)"/> <wire from="(560,470)" to="(560,600)"/> <wire from="(100,230)" to="(340,230)"/> <wire from="(100,750)" to="(340,750)"/> <wire from="(530,690)" to="(640,690)"/> <wire from="(220,160)" to="(260,160)"/> <wire from="(220,680)" to="(260,680)"/> <wire from="(290,430)" to="(330,430)"/> <wire from="(360,230)" to="(580,230)"/> <wire from="(360,750)" to="(580,750)"/> <wire from="(560,600)" to="(580,600)"/> <wire from="(620,220)" to="(640,220)"/> <wire from="(620,740)" to="(640,740)"/> <wire from="(310,150)" to="(330,150)"/> <wire from="(310,670)" to="(330,670)"/> <wire from="(390,670)" to="(410,670)"/> <wire from="(470,670)" to="(490,670)"/> <wire from="(160,160)" to="(180,160)"/> <wire from="(160,680)" to="(180,680)"/> <wire from="(240,440)" to="(260,440)"/> <wire from="(240,130)" to="(240,180)"/> <wire from="(100,570)" to="(180,570)"/> <wire from="(250,700)" to="(260,700)"/> <wire from="(370,560)" to="(640,560)"/> <wire from="(100,90)" to="(560,90)"/> <wire from="(160,40)" to="(160,160)"/> <wire from="(310,30)" to="(310,150)"/> <wire from="(160,680)" to="(160,810)"/> <wire from="(160,160)" to="(160,290)"/> <wire from="(240,440)" to="(240,570)"/> <wire from="(390,670)" to="(390,800)"/> <wire from="(310,150)" to="(310,280)"/> <wire from="(560,600)" to="(560,730)"/> <wire from="(100,360)" to="(340,360)"/> <wire from="(100,880)" to="(340,880)"/> <wire from="(310,720)" to="(310,800)"/> <wire from="(470,720)" to="(470,800)"/> <wire from="(530,820)" to="(640,820)"/> <wire from="(220,290)" to="(260,290)"/> <wire from="(220,810)" to="(260,810)"/> <wire from="(290,560)" to="(330,560)"/> <wire from="(360,360)" to="(580,360)"/> <wire from="(360,880)" to="(580,880)"/> <wire from="(560,210)" to="(580,210)"/> <wire from="(560,730)" to="(580,730)"/> <wire from="(620,350)" to="(640,350)"/> <wire from="(620,870)" to="(640,870)"/> <wire from="(310,720)" to="(470,720)"/> <wire from="(310,280)" to="(330,280)"/> <wire from="(310,800)" to="(330,800)"/> <wire from="(390,800)" to="(410,800)"/> <wire from="(470,800)" to="(490,800)"/> <wire from="(160,810)" to="(180,810)"/> <wire from="(160,290)" to="(180,290)"/> <wire from="(240,570)" to="(260,570)"/> <wire from="(560,90)" to="(560,210)"/> <wire from="(100,180)" to="(180,180)"/> <wire from="(100,700)" to="(180,700)"/> <wire from="(250,830)" to="(260,830)"/> <wire from="(390,40)" to="(390,670)"/> <wire from="(100,130)" to="(240,130)"/> <wire from="(370,170)" to="(640,170)"/> <wire from="(160,290)" to="(160,420)"/> <wire from="(310,280)" to="(310,410)"/> <wire from="(560,210)" to="(560,340)"/> <wire from="(560,730)" to="(560,860)"/> <wire from="(100,490)" to="(340,490)"/> <wire from="(140,30)" to="(310,30)"/> <wire from="(160,40)" to="(390,40)"/> <wire from="(220,420)" to="(260,420)"/> <wire from="(290,690)" to="(330,690)"/> <wire from="(290,170)" to="(330,170)"/> <wire from="(370,690)" to="(410,690)"/> <wire from="(450,690)" to="(490,690)"/> <wire from="(360,490)" to="(580,490)"/> <wire from="(560,340)" to="(580,340)"/> <wire from="(560,860)" to="(580,860)"/> <wire from="(620,480)" to="(640,480)"/> <wire from="(310,410)" to="(330,410)"/> <wire from="(140,40)" to="(160,40)"/> <wire from="(160,420)" to="(180,420)"/> <wire from="(240,180)" to="(260,180)"/> <wire from="(100,310)" to="(180,310)"/> <wire from="(100,830)" to="(180,830)"/> <wire from="(370,300)" to="(640,300)"/> <comp lib="1" loc="(360,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(220,810)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(640,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(250,700)" name="Constant"/> <comp lib="4" loc="(220,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(370,550)" name="D-latch"/> <comp lib="0" loc="(640,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,300)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BW"/> </comp> <comp lib="0" loc="(250,830)" name="Constant"/> <comp lib="1" loc="(290,560)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,350)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,550)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB0"/> </comp> <comp lib="0" loc="(640,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,50)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="1" loc="(290,820)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(530,680)" name="D-latch"/> <comp lib="1" loc="(620,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp lib="1" loc="(620,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(370,680)" name="D-latch"/> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(370,290)" name="D-latch"/> <comp lib="0" loc="(640,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp lib="1" loc="(290,690)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(450,810)" name="D-latch"/> <comp lib="0" loc="(100,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB4"/> </comp> <comp lib="1" loc="(360,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(220,160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB1"/> </comp> <comp loc="(450,680)" name="D-latch"/> <comp lib="1" loc="(290,430)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(220,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(530,810)" name="D-latch"/> <comp lib="0" loc="(640,350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(620,870)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#DB/CB"/> </comp> <comp lib="1" loc="(360,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(640,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB3"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB2"/> </comp> <comp lib="1" loc="(360,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(370,810)" name="D-latch"/> <comp lib="1" loc="(620,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(370,420)" name="D-latch"/> <comp lib="0" loc="(100,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB5"/> </comp> <comp lib="0" loc="(100,880)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp loc="(370,160)" name="D-latch"/> <comp lib="0" loc="(100,360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> <comp lib="0" loc="(640,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="1" loc="(290,170)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> </circuit> <circuit name="COLOR_CONTROL"> <a name="circuit" val="COLOR_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff89ea" height="160" stroke="#000000" stroke-width="2" width="210" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="164">#DB/CB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="134">#CB/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="219" y="105">COLOR_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="155" y="41">COLOR CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="194">BW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="154">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="115">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="174">/PICTURE</text> <polyline fill="none" points="54,66 50,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,100" width="8" x="46" y="66"/> <circ-port height="8" pin="90,150" width="8" x="46" y="126"/> <circ-port height="8" pin="90,200" width="8" x="46" y="146"/> <circ-port height="8" pin="90,240" width="8" x="46" y="106"/> <circ-port height="8" pin="90,280" width="8" x="46" y="86"/> <circ-port height="8" pin="90,340" width="8" x="46" y="166"/> <circ-port height="8" pin="90,390" width="8" x="46" y="186"/> <circ-port height="10" pin="370,110" width="10" x="255" y="155"/> <circ-port height="10" pin="370,240" width="10" x="255" y="125"/> <circ-port height="10" pin="370,340" width="10" x="255" y="95"/> <circ-anchor facing="east" height="6" width="6" x="67" y="47"/> </appear> <wire from="(260,330)" to="(310,330)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(200,100)" to="(240,100)"/> <wire from="(190,250)" to="(230,250)"/> <wire from="(190,230)" to="(230,230)"/> <wire from="(190,250)" to="(190,280)"/> <wire from="(190,200)" to="(190,230)"/> <wire from="(90,280)" to="(190,280)"/> <wire from="(120,170)" to="(220,170)"/> <wire from="(210,290)" to="(210,320)"/> <wire from="(120,170)" to="(120,200)"/> <wire from="(120,120)" to="(120,150)"/> <wire from="(280,110)" to="(370,110)"/> <wire from="(120,200)" to="(150,200)"/> <wire from="(90,200)" to="(120,200)"/> <wire from="(90,150)" to="(120,150)"/> <wire from="(90,100)" to="(120,100)"/> <wire from="(260,240)" to="(290,240)"/> <wire from="(290,350)" to="(310,350)"/> <wire from="(350,340)" to="(370,340)"/> <wire from="(290,350)" to="(290,390)"/> <wire from="(140,100)" to="(160,100)"/> <wire from="(170,200)" to="(190,200)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(220,120)" to="(240,120)"/> <wire from="(220,120)" to="(220,170)"/> <wire from="(210,290)" to="(290,290)"/> <wire from="(290,240)" to="(370,240)"/> <wire from="(90,340)" to="(230,340)"/> <wire from="(90,240)" to="(230,240)"/> <wire from="(290,240)" to="(290,290)"/> <wire from="(90,390)" to="(290,390)"/> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BW"/> </comp> <comp lib="0" loc="(120,100)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="1" loc="(260,330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TH/MUX"/> </comp> <comp lib="0" loc="(370,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#CB/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(280,110)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(140,86)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(370,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DB/CB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R7"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> </comp> <comp lib="1" loc="(350,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(170,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(370,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="COLOR_EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp loc="(200,110)" name="D-latch"/> <comp lib="1" loc="(260,240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> </circuit> <circuit name="COLOR_CONTROL_RGB"> <a name="circuit" val="COLOR_CONTROL_RGB"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M128,41 Q132,51 136,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff89ea" height="151" stroke="#000000" stroke-width="2" width="210" x="40" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="148" y="34">COLOR CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="104">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="84">/PICTURE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="219" y="164">#DB/CB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="209" y="74">COLOR_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="124">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="60" y="144">B/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="65">PCLK</text> <polyline fill="none" points="40,56 45,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="46,56 46,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="45,65 41,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,60" width="8" x="36" y="56"/> <circ-port height="8" pin="100,110" width="8" x="36" y="96"/> <circ-port height="8" pin="100,150" width="8" x="36" y="116"/> <circ-port height="8" pin="100,190" width="8" x="36" y="76"/> <circ-port height="8" pin="100,230" width="8" x="36" y="136"/> <circ-port height="10" pin="330,70" width="10" x="245" y="155"/> <circ-port height="10" pin="330,200" width="10" x="245" y="65"/> <circ-anchor facing="east" height="6" width="6" x="247" y="37"/> </appear> <wire from="(150,80)" to="(180,80)"/> <wire from="(250,80)" to="(250,150)"/> <wire from="(310,200)" to="(330,200)"/> <wire from="(310,70)" to="(330,70)"/> <wire from="(100,150)" to="(250,150)"/> <wire from="(100,230)" to="(250,230)"/> <wire from="(220,60)" to="(270,60)"/> <wire from="(100,60)" to="(120,60)"/> <wire from="(100,110)" to="(150,110)"/> <wire from="(250,80)" to="(270,80)"/> <wire from="(250,210)" to="(270,210)"/> <wire from="(250,210)" to="(250,230)"/> <wire from="(100,190)" to="(270,190)"/> <wire from="(140,60)" to="(180,60)"/> <wire from="(150,80)" to="(150,110)"/> <comp lib="1" loc="(310,200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,70)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(330,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="COLOR_EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(330,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DB/CB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp loc="(220,70)" name="D-latch"/> <comp lib="0" loc="(100,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TH/MUX"/> </comp> <comp lib="6" loc="(155,47)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="0" loc="(100,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="B/W"/> </comp> </circuit> <circuit name="CONTROL_REGS_NTSC"> <a name="circuit" val="CONTROL_REGS_NTSC"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffce1f" height="353" stroke="#000000" stroke-width="2" width="220" x="50" y="49"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="95">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="115">/W1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="134">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="155">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="174">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="195">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="214">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="233">&lt;D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="374">&lt;D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="304">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="74">VBL_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="253" y="94">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="253" y="114">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="252" y="134">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="249" y="154">l1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="243" y="174">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="243" y="194">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="214">O8/16</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="242" y="234">/SLAVE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="246" y="254">/CLPB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="247" y="274">CLPO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="314">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="334">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="364">BW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="242" y="384">BLACK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="155" y="44">CONTROL REGISTERS</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="80,30" width="8" x="46" y="146"/> <circ-port height="8" pin="80,80" width="8" x="46" y="126"/> <circ-port height="8" pin="80,120" width="8" x="46" y="86"/> <circ-port height="8" pin="80,160" width="8" x="46" y="226"/> <circ-port height="8" pin="80,240" width="8" x="46" y="246"/> <circ-port height="8" pin="80,320" width="8" x="46" y="266"/> <circ-port height="8" pin="80,400" width="8" x="46" y="286"/> <circ-port height="8" pin="80,480" width="8" x="46" y="306"/> <circ-port height="8" pin="80,560" width="8" x="46" y="326"/> <circ-port height="8" pin="80,640" width="8" x="46" y="346"/> <circ-port height="8" pin="80,720" width="8" x="46" y="366"/> <circ-port height="8" pin="80,800" width="8" x="46" y="106"/> <circ-port height="8" pin="80,1470" width="8" x="46" y="66"/> <circ-port height="8" pin="80,1520" width="8" x="46" y="206"/> <circ-port height="8" pin="80,1590" width="8" x="46" y="186"/> <circ-port height="8" pin="80,1640" width="8" x="46" y="166"/> <circ-port height="10" pin="840,280" width="10" x="265" y="145"/> <circ-port height="10" pin="840,380" width="10" x="265" y="165"/> <circ-port height="10" pin="840,460" width="10" x="265" y="185"/> <circ-port height="10" pin="840,520" width="10" x="265" y="205"/> <circ-port height="10" pin="840,620" width="10" x="265" y="225"/> <circ-port height="10" pin="840,700" width="10" x="265" y="65"/> <circ-port height="10" pin="840,830" width="10" x="265" y="355"/> <circ-port height="10" pin="840,890" width="10" x="265" y="325"/> <circ-port height="10" pin="840,970" width="10" x="265" y="305"/> <circ-port height="10" pin="840,1070" width="10" x="265" y="245"/> <circ-port height="10" pin="840,1150" width="10" x="265" y="265"/> <circ-port height="10" pin="840,1230" width="10" x="265" y="85"/> <circ-port height="10" pin="840,1310" width="10" x="265" y="105"/> <circ-port height="10" pin="840,1390" width="10" x="265" y="125"/> <circ-port height="10" pin="840,1020" width="10" x="265" y="375"/> <circ-anchor facing="east" height="6" width="6" x="267" y="47"/> </appear> <wire from="(80,1640)" to="(650,1640)"/> <wire from="(80,1520)" to="(460,1520)"/> <wire from="(200,1090)" to="(380,1090)"/> <wire from="(630,1080)" to="(670,1080)"/> <wire from="(360,1070)" to="(360,1150)"/> <wire from="(360,910)" to="(360,990)"/> <wire from="(360,990)" to="(360,1070)"/> <wire from="(360,830)" to="(360,910)"/> <wire from="(360,1310)" to="(360,1390)"/> <wire from="(360,1230)" to="(360,1310)"/> <wire from="(360,1150)" to="(360,1230)"/> <wire from="(260,100)" to="(260,120)"/> <wire from="(360,90)" to="(360,300)"/> <wire from="(420,830)" to="(840,830)"/> <wire from="(80,480)" to="(180,480)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(420,1150)" to="(460,1150)"/> <wire from="(400,90)" to="(440,90)"/> <wire from="(420,1230)" to="(460,1230)"/> <wire from="(420,910)" to="(460,910)"/> <wire from="(400,770)" to="(440,770)"/> <wire from="(420,1070)" to="(460,1070)"/> <wire from="(420,1310)" to="(460,1310)"/> <wire from="(630,1080)" to="(630,1570)"/> <wire from="(220,1010)" to="(380,1010)"/> <wire from="(500,1050)" to="(520,1050)"/> <wire from="(650,1160)" to="(670,1160)"/> <wire from="(340,770)" to="(360,770)"/> <wire from="(360,990)" to="(380,990)"/> <wire from="(360,830)" to="(380,830)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(360,910)" to="(380,910)"/> <wire from="(360,1070)" to="(380,1070)"/> <wire from="(360,1150)" to="(380,1150)"/> <wire from="(360,1310)" to="(380,1310)"/> <wire from="(360,1390)" to="(380,1390)"/> <wire from="(360,1230)" to="(380,1230)"/> <wire from="(500,460)" to="(840,460)"/> <wire from="(500,380)" to="(840,380)"/> <wire from="(810,1150)" to="(840,1150)"/> <wire from="(180,480)" to="(180,1170)"/> <wire from="(140,640)" to="(140,1330)"/> <wire from="(240,930)" to="(380,930)"/> <wire from="(220,320)" to="(220,1010)"/> <wire from="(260,160)" to="(260,850)"/> <wire from="(80,80)" to="(280,80)"/> <wire from="(80,800)" to="(280,800)"/> <wire from="(240,240)" to="(490,240)"/> <wire from="(80,640)" to="(140,640)"/> <wire from="(190,1470)" to="(440,1470)"/> <wire from="(420,1390)" to="(470,1390)"/> <wire from="(260,850)" to="(380,850)"/> <wire from="(410,1420)" to="(410,1430)"/> <wire from="(440,1470)" to="(750,1470)"/> <wire from="(710,1150)" to="(770,1150)"/> <wire from="(410,570)" to="(410,650)"/> <wire from="(410,410)" to="(410,490)"/> <wire from="(440,280)" to="(440,360)"/> <wire from="(440,440)" to="(440,520)"/> <wire from="(410,490)" to="(410,570)"/> <wire from="(410,650)" to="(410,730)"/> <wire from="(410,330)" to="(410,410)"/> <wire from="(440,360)" to="(440,440)"/> <wire from="(500,1500)" to="(610,1500)"/> <wire from="(260,160)" to="(490,160)"/> <wire from="(520,1010)" to="(520,1050)"/> <wire from="(80,240)" to="(240,240)"/> <wire from="(520,1010)" to="(670,1010)"/> <wire from="(500,1230)" to="(840,1230)"/> <wire from="(500,1310)" to="(840,1310)"/> <wire from="(280,760)" to="(300,760)"/> <wire from="(280,80)" to="(300,80)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,520)" to="(460,520)"/> <wire from="(440,440)" to="(460,440)"/> <wire from="(440,280)" to="(460,280)"/> <wire from="(710,1020)" to="(840,1020)"/> <wire from="(500,1570)" to="(630,1570)"/> <wire from="(360,770)" to="(360,830)"/> <wire from="(120,720)" to="(380,720)"/> <wire from="(410,730)" to="(410,860)"/> <wire from="(80,400)" to="(200,400)"/> <wire from="(610,1060)" to="(670,1060)"/> <wire from="(610,1140)" to="(670,1140)"/> <wire from="(280,780)" to="(280,800)"/> <wire from="(500,1130)" to="(540,1130)"/> <wire from="(140,640)" to="(380,640)"/> <wire from="(410,1020)" to="(410,1100)"/> <wire from="(410,940)" to="(410,1020)"/> <wire from="(410,1100)" to="(410,1180)"/> <wire from="(410,1340)" to="(410,1420)"/> <wire from="(410,860)" to="(410,940)"/> <wire from="(410,1180)" to="(410,1260)"/> <wire from="(410,1260)" to="(410,1340)"/> <wire from="(440,890)" to="(440,970)"/> <wire from="(440,1050)" to="(440,1130)"/> <wire from="(440,1210)" to="(440,1290)"/> <wire from="(440,970)" to="(440,1050)"/> <wire from="(440,1130)" to="(440,1210)"/> <wire from="(610,1060)" to="(610,1140)"/> <wire from="(610,1140)" to="(610,1500)"/> <wire from="(160,560)" to="(380,560)"/> <wire from="(80,1470)" to="(170,1470)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(360,770)" to="(380,770)"/> <wire from="(410,30)" to="(410,330)"/> <wire from="(650,1160)" to="(650,1640)"/> <wire from="(440,1130)" to="(460,1130)"/> <wire from="(440,1290)" to="(460,1290)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(440,1050)" to="(460,1050)"/> <wire from="(440,890)" to="(460,890)"/> <wire from="(440,1210)" to="(460,1210)"/> <wire from="(500,280)" to="(840,280)"/> <wire from="(500,520)" to="(840,520)"/> <wire from="(440,1570)" to="(460,1570)"/> <wire from="(280,80)" to="(280,760)"/> <wire from="(540,1030)" to="(540,1130)"/> <wire from="(160,560)" to="(160,1250)"/> <wire from="(120,720)" to="(120,1410)"/> <wire from="(240,240)" to="(240,930)"/> <wire from="(80,560)" to="(160,560)"/> <wire from="(200,400)" to="(200,1090)"/> <wire from="(710,1070)" to="(840,1070)"/> <wire from="(80,30)" to="(410,30)"/> <wire from="(180,480)" to="(380,480)"/> <wire from="(120,1410)" to="(380,1410)"/> <wire from="(440,770)" to="(440,890)"/> <wire from="(440,1500)" to="(440,1570)"/> <wire from="(80,1590)" to="(460,1590)"/> <wire from="(80,120)" to="(260,120)"/> <wire from="(80,160)" to="(260,160)"/> <wire from="(200,400)" to="(380,400)"/> <wire from="(140,1330)" to="(380,1330)"/> <wire from="(360,300)" to="(360,380)"/> <wire from="(360,460)" to="(360,540)"/> <wire from="(360,620)" to="(360,700)"/> <wire from="(360,380)" to="(360,460)"/> <wire from="(360,540)" to="(360,620)"/> <wire from="(80,720)" to="(120,720)"/> <wire from="(440,1470)" to="(440,1500)"/> <wire from="(420,700)" to="(840,700)"/> <wire from="(420,620)" to="(840,620)"/> <wire from="(260,100)" to="(300,100)"/> <wire from="(420,300)" to="(460,300)"/> <wire from="(420,460)" to="(460,460)"/> <wire from="(420,540)" to="(460,540)"/> <wire from="(420,380)" to="(460,380)"/> <wire from="(500,1150)" to="(670,1150)"/> <wire from="(500,1070)" to="(670,1070)"/> <wire from="(750,1130)" to="(750,1470)"/> <wire from="(220,320)" to="(380,320)"/> <wire from="(500,890)" to="(840,890)"/> <wire from="(500,970)" to="(840,970)"/> <wire from="(160,1250)" to="(380,1250)"/> <wire from="(750,1130)" to="(770,1130)"/> <wire from="(280,780)" to="(300,780)"/> <wire from="(360,380)" to="(380,380)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,700)" to="(380,700)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(360,460)" to="(380,460)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(490,1390)" to="(840,1390)"/> <wire from="(440,1500)" to="(460,1500)"/> <wire from="(80,320)" to="(220,320)"/> <wire from="(540,1030)" to="(670,1030)"/> <wire from="(440,90)" to="(440,280)"/> <wire from="(180,1170)" to="(380,1170)"/> <comp lib="0" loc="(840,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1140)" name="D-latch"/> <comp loc="(500,1510)" name="D-latch"/> <comp lib="6" loc="(479,1464)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="4" loc="(420,990)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(170,1470)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp lib="0" loc="(840,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/SLAVE"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,900)" name="D-latch"/> <comp lib="0" loc="(840,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(804,792)" name="Text"> <a name="text" val="$2001"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(840,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I1/32"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,530)" name="D-latch"/> <comp lib="0" loc="(840,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(710,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(420,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> <comp lib="0" loc="(80,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB7"/> </comp> <comp lib="0" loc="(840,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TB"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,1150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> <comp lib="4" loc="(420,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(607,205)" name="Text"> <a name="text" val="bits 0 and 1 are in the PPU address generator circuit"/> </comp> <comp lib="4" loc="(420,1310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,370)" name="D-latch"/> <comp lib="0" loc="(80,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB6"/> </comp> <comp lib="6" loc="(526,1125)" name="Text"> <a name="text" val="OBE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(420,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(710,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(840,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="0" loc="(840,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VBL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1470)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(80,1520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(80,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp lib="0" loc="(80,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W1"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp loc="(500,290)" name="D-latch"/> <comp loc="(810,1140)" name="D-latch"/> <comp loc="(500,1060)" name="D-latch"/> <comp loc="(500,980)" name="D-latch"/> <comp lib="4" loc="(420,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1300)" name="D-latch"/> <comp lib="0" loc="(80,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> </comp> <comp lib="4" loc="(420,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/CLPB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BW"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> </comp> <comp lib="1" loc="(340,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(340,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(840,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TG"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,450)" name="D-latch"/> <comp lib="6" loc="(530,1004)" name="Text"> <a name="text" val="BGE"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(420,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1580)" name="D-latch"/> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp lib="4" loc="(420,460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(490,1390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(802,146)" name="Text"> <a name="text" val="$2000"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="1" loc="(400,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(840,1150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLPO"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(710,1020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="4" loc="(420,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1220)" name="D-latch"/> </circuit> <circuit name="CONTROL_REGS_PAL"> <a name="circuit" val="CONTROL_REGS_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M156,40 Q160,50 164,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffce1f" height="353" stroke="#000000" stroke-width="2" width="220" x="50" y="39"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="374">BLACK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="249" y="354">BW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="264">CLPO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="293">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="143">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="204">#O8/16</text> <polyline fill="none" points="56,55 56,65" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="244">/CLPB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="225">&lt;D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="236" y="304">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="83">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="124">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="284">/SLAVE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="164">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="184">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="124">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="103">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="205">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="236" y="324">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="143">#I1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="363">&lt;D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="164">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">/W1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="184">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="64">VBL_EN</text> <polyline fill="none" points="56,55 51,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 51,65" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="157" y="33">CONTROL REGISTERS</text> <circ-port height="8" pin="80,30" width="8" x="46" y="136"/> <circ-port height="8" pin="80,80" width="8" x="46" y="116"/> <circ-port height="8" pin="80,120" width="8" x="46" y="76"/> <circ-port height="8" pin="80,160" width="8" x="46" y="216"/> <circ-port height="8" pin="80,240" width="8" x="46" y="236"/> <circ-port height="8" pin="80,320" width="8" x="46" y="256"/> <circ-port height="8" pin="80,400" width="8" x="46" y="276"/> <circ-port height="8" pin="80,480" width="8" x="46" y="296"/> <circ-port height="8" pin="80,560" width="8" x="46" y="316"/> <circ-port height="8" pin="80,640" width="8" x="46" y="336"/> <circ-port height="8" pin="80,720" width="8" x="46" y="356"/> <circ-port height="8" pin="80,800" width="8" x="46" y="96"/> <circ-port height="8" pin="80,1470" width="8" x="46" y="56"/> <circ-port height="8" pin="80,1520" width="8" x="46" y="196"/> <circ-port height="8" pin="80,1590" width="8" x="46" y="176"/> <circ-port height="8" pin="80,1640" width="8" x="46" y="156"/> <circ-port height="10" pin="840,300" width="10" x="265" y="135"/> <circ-port height="10" pin="840,380" width="10" x="265" y="155"/> <circ-port height="10" pin="840,460" width="10" x="265" y="175"/> <circ-port height="10" pin="840,540" width="10" x="265" y="195"/> <circ-port height="10" pin="840,620" width="10" x="265" y="275"/> <circ-port height="10" pin="840,700" width="10" x="265" y="55"/> <circ-port height="10" pin="840,830" width="10" x="265" y="345"/> <circ-port height="10" pin="840,890" width="10" x="265" y="315"/> <circ-port height="10" pin="840,970" width="10" x="265" y="295"/> <circ-port height="10" pin="840,1070" width="10" x="265" y="235"/> <circ-port height="10" pin="840,1150" width="10" x="265" y="255"/> <circ-port height="10" pin="840,1230" width="10" x="265" y="75"/> <circ-port height="10" pin="840,1310" width="10" x="265" y="95"/> <circ-port height="10" pin="840,1410" width="10" x="265" y="115"/> <circ-port height="10" pin="840,1750" width="10" x="265" y="365"/> <circ-anchor facing="east" height="6" width="6" x="267" y="37"/> </appear> <wire from="(80,1640)" to="(650,1640)"/> <wire from="(80,1520)" to="(460,1520)"/> <wire from="(260,100)" to="(260,120)"/> <wire from="(220,1750)" to="(260,1750)"/> <wire from="(80,480)" to="(180,480)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(420,1150)" to="(460,1150)"/> <wire from="(400,90)" to="(440,90)"/> <wire from="(420,1070)" to="(460,1070)"/> <wire from="(420,1230)" to="(460,1230)"/> <wire from="(420,910)" to="(460,910)"/> <wire from="(420,1310)" to="(460,1310)"/> <wire from="(630,1080)" to="(630,1570)"/> <wire from="(220,1010)" to="(380,1010)"/> <wire from="(650,1160)" to="(670,1160)"/> <wire from="(650,830)" to="(680,830)"/> <wire from="(340,770)" to="(360,770)"/> <wire from="(340,1730)" to="(360,1730)"/> <wire from="(500,380)" to="(840,380)"/> <wire from="(500,300)" to="(840,300)"/> <wire from="(500,540)" to="(840,540)"/> <wire from="(500,460)" to="(840,460)"/> <wire from="(810,1150)" to="(840,1150)"/> <wire from="(180,480)" to="(180,1170)"/> <wire from="(260,160)" to="(260,850)"/> <wire from="(80,80)" to="(280,80)"/> <wire from="(80,800)" to="(280,800)"/> <wire from="(240,240)" to="(490,240)"/> <wire from="(500,1750)" to="(550,1750)"/> <wire from="(260,850)" to="(380,850)"/> <wire from="(410,1420)" to="(410,1430)"/> <wire from="(440,1470)" to="(750,1470)"/> <wire from="(710,1150)" to="(770,1150)"/> <wire from="(320,1730)" to="(320,1750)"/> <wire from="(410,570)" to="(410,650)"/> <wire from="(410,410)" to="(410,490)"/> <wire from="(440,280)" to="(440,360)"/> <wire from="(440,440)" to="(440,520)"/> <wire from="(410,330)" to="(410,410)"/> <wire from="(440,360)" to="(440,440)"/> <wire from="(410,490)" to="(410,570)"/> <wire from="(410,650)" to="(410,730)"/> <wire from="(500,1500)" to="(610,1500)"/> <wire from="(670,700)" to="(840,700)"/> <wire from="(520,1050)" to="(520,1090)"/> <wire from="(500,1230)" to="(840,1230)"/> <wire from="(500,1310)" to="(840,1310)"/> <wire from="(530,1730)" to="(550,1730)"/> <wire from="(280,760)" to="(300,760)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,520)" to="(460,520)"/> <wire from="(440,280)" to="(460,280)"/> <wire from="(440,440)" to="(460,440)"/> <wire from="(710,620)" to="(840,620)"/> <wire from="(120,720)" to="(380,720)"/> <wire from="(520,1090)" to="(530,1090)"/> <wire from="(410,730)" to="(410,860)"/> <wire from="(80,400)" to="(200,400)"/> <wire from="(220,1450)" to="(590,1450)"/> <wire from="(280,780)" to="(280,800)"/> <wire from="(410,1180)" to="(410,1260)"/> <wire from="(410,1340)" to="(410,1420)"/> <wire from="(410,860)" to="(410,940)"/> <wire from="(410,1020)" to="(410,1100)"/> <wire from="(410,1260)" to="(410,1340)"/> <wire from="(410,940)" to="(410,1020)"/> <wire from="(410,1100)" to="(410,1180)"/> <wire from="(440,890)" to="(440,970)"/> <wire from="(440,1050)" to="(440,1130)"/> <wire from="(440,1210)" to="(440,1290)"/> <wire from="(440,970)" to="(440,1050)"/> <wire from="(440,1130)" to="(440,1210)"/> <wire from="(610,1060)" to="(610,1140)"/> <wire from="(420,1410)" to="(840,1410)"/> <wire from="(570,1100)" to="(590,1100)"/> <wire from="(160,560)" to="(380,560)"/> <wire from="(240,1730)" to="(260,1730)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(400,1730)" to="(420,1730)"/> <wire from="(440,1130)" to="(460,1130)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(440,890)" to="(460,890)"/> <wire from="(440,1050)" to="(460,1050)"/> <wire from="(440,1290)" to="(460,1290)"/> <wire from="(440,1210)" to="(460,1210)"/> <wire from="(160,560)" to="(160,1250)"/> <wire from="(240,240)" to="(240,930)"/> <wire from="(710,830)" to="(840,830)"/> <wire from="(710,1070)" to="(840,1070)"/> <wire from="(150,1490)" to="(160,1490)"/> <wire from="(360,620)" to="(360,670)"/> <wire from="(120,1410)" to="(380,1410)"/> <wire from="(440,1500)" to="(440,1570)"/> <wire from="(440,1660)" to="(440,1730)"/> <wire from="(80,1590)" to="(460,1590)"/> <wire from="(80,120)" to="(260,120)"/> <wire from="(200,400)" to="(380,400)"/> <wire from="(360,300)" to="(360,380)"/> <wire from="(360,460)" to="(360,540)"/> <wire from="(360,380)" to="(360,460)"/> <wire from="(360,540)" to="(360,620)"/> <wire from="(80,720)" to="(120,720)"/> <wire from="(440,1470)" to="(440,1500)"/> <wire from="(360,670)" to="(360,700)"/> <wire from="(260,100)" to="(300,100)"/> <wire from="(420,700)" to="(650,700)"/> <wire from="(750,1130)" to="(750,1470)"/> <wire from="(160,1250)" to="(380,1250)"/> <wire from="(280,780)" to="(300,780)"/> <wire from="(220,1450)" to="(220,1750)"/> <wire from="(360,380)" to="(380,380)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,700)" to="(380,700)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(360,460)" to="(380,460)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(440,1500)" to="(460,1500)"/> <wire from="(340,1690)" to="(340,1730)"/> <wire from="(80,320)" to="(220,320)"/> <wire from="(440,90)" to="(440,280)"/> <wire from="(520,1110)" to="(530,1110)"/> <wire from="(160,1490)" to="(160,1690)"/> <wire from="(200,1090)" to="(380,1090)"/> <wire from="(160,1690)" to="(340,1690)"/> <wire from="(360,670)" to="(660,670)"/> <wire from="(630,1080)" to="(670,1080)"/> <wire from="(360,1070)" to="(360,1150)"/> <wire from="(360,910)" to="(360,990)"/> <wire from="(360,990)" to="(360,1070)"/> <wire from="(360,830)" to="(360,910)"/> <wire from="(360,1230)" to="(360,1310)"/> <wire from="(360,1310)" to="(360,1390)"/> <wire from="(360,1150)" to="(360,1230)"/> <wire from="(360,90)" to="(360,300)"/> <wire from="(590,1100)" to="(590,1450)"/> <wire from="(400,770)" to="(440,770)"/> <wire from="(420,1750)" to="(460,1750)"/> <wire from="(530,1690)" to="(530,1730)"/> <wire from="(500,1050)" to="(520,1050)"/> <wire from="(500,1130)" to="(520,1130)"/> <wire from="(360,990)" to="(380,990)"/> <wire from="(360,830)" to="(380,830)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(360,910)" to="(380,910)"/> <wire from="(360,1070)" to="(380,1070)"/> <wire from="(300,1730)" to="(320,1730)"/> <wire from="(360,1150)" to="(380,1150)"/> <wire from="(360,1310)" to="(380,1310)"/> <wire from="(360,1390)" to="(380,1390)"/> <wire from="(360,1230)" to="(380,1230)"/> <wire from="(140,640)" to="(140,1330)"/> <wire from="(240,930)" to="(380,930)"/> <wire from="(220,320)" to="(220,1010)"/> <wire from="(420,620)" to="(620,620)"/> <wire from="(80,640)" to="(140,640)"/> <wire from="(590,1750)" to="(840,1750)"/> <wire from="(660,670)" to="(660,690)"/> <wire from="(260,160)" to="(490,160)"/> <wire from="(80,240)" to="(240,240)"/> <wire from="(280,80)" to="(300,80)"/> <wire from="(150,1480)" to="(160,1480)"/> <wire from="(500,1570)" to="(630,1570)"/> <wire from="(360,770)" to="(360,830)"/> <wire from="(420,830)" to="(620,830)"/> <wire from="(610,1060)" to="(670,1060)"/> <wire from="(610,1140)" to="(670,1140)"/> <wire from="(140,640)" to="(380,640)"/> <wire from="(440,1570)" to="(440,1660)"/> <wire from="(320,1750)" to="(360,1750)"/> <wire from="(610,1140)" to="(610,1500)"/> <wire from="(360,770)" to="(380,770)"/> <wire from="(410,30)" to="(410,330)"/> <wire from="(650,1160)" to="(650,1640)"/> <wire from="(160,1470)" to="(440,1470)"/> <wire from="(440,1570)" to="(460,1570)"/> <wire from="(440,1730)" to="(460,1730)"/> <wire from="(280,80)" to="(280,760)"/> <wire from="(120,720)" to="(120,1410)"/> <wire from="(80,560)" to="(160,560)"/> <wire from="(200,400)" to="(200,1090)"/> <wire from="(80,30)" to="(410,30)"/> <wire from="(180,480)" to="(380,480)"/> <wire from="(240,1660)" to="(440,1660)"/> <wire from="(440,770)" to="(440,890)"/> <wire from="(240,1660)" to="(240,1730)"/> <wire from="(340,1690)" to="(530,1690)"/> <wire from="(160,1470)" to="(160,1480)"/> <wire from="(80,160)" to="(260,160)"/> <wire from="(80,1470)" to="(130,1470)"/> <wire from="(140,1330)" to="(380,1330)"/> <wire from="(420,1730)" to="(420,1750)"/> <wire from="(520,1110)" to="(520,1130)"/> <wire from="(420,300)" to="(460,300)"/> <wire from="(420,540)" to="(460,540)"/> <wire from="(420,380)" to="(460,380)"/> <wire from="(500,1070)" to="(670,1070)"/> <wire from="(500,1150)" to="(670,1150)"/> <wire from="(420,460)" to="(460,460)"/> <wire from="(220,320)" to="(380,320)"/> <wire from="(500,890)" to="(840,890)"/> <wire from="(500,970)" to="(840,970)"/> <wire from="(750,1130)" to="(770,1130)"/> <wire from="(650,620)" to="(680,620)"/> <wire from="(180,1170)" to="(380,1170)"/> <comp lib="1" loc="(710,620)" name="NOT Gate"/> <comp lib="4" loc="(420,460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(804,792)" name="Text"> <a name="text" val="$2001"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="4" loc="(400,1730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp lib="6" loc="(539,1132)" name="Text"> <a name="text" val="OBE"/> </comp> <comp lib="0" loc="(840,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I1/32"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1470)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp loc="(500,900)" name="D-latch"/> <comp lib="4" loc="(420,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(794,148)" name="Text"> <a name="text" val="$2000"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="4" loc="(420,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(810,1140)" name="D-latch"/> <comp loc="(590,1740)" name="D-latch"/> <comp lib="4" loc="(420,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> </comp> <comp loc="(500,530)" name="D-latch"/> <comp lib="1" loc="(400,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(840,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(670,700)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(500,1220)" name="D-latch"/> <comp lib="1" loc="(710,830)" name="NOT Gate"/> <comp lib="0" loc="(840,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1740)" name="D-latch"/> <comp lib="1" loc="(710,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB7"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> <comp lib="0" loc="(80,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB6"/> </comp> <comp lib="6" loc="(660,291)" name="Text"> <a name="text" val="!!! INVERSE LOGIC PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp loc="(500,980)" name="D-latch"/> <comp lib="4" loc="(420,1150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(607,205)" name="Text"> <a name="text" val="bits 0 and 1 are in the PPU address generator circuit"/> </comp> <comp loc="(500,1510)" name="D-latch"/> <comp lib="0" loc="(80,1520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="6" loc="(660,531)" name="Text"> <a name="text" val="!!! INVERSE LOGIC PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/SLAVE"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,450)" name="D-latch"/> <comp lib="0" loc="(840,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(661,720)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(185,1464)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="6" loc="(538,1055)" name="Text"> <a name="text" val="BGE"/> </comp> <comp lib="0" loc="(80,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp lib="0" loc="(840,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TG"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1470)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(183,1684)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="4" loc="(420,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLPO"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,290)" name="D-latch"/> <comp lib="1" loc="(650,830)" name="NOT Gate"/> <comp lib="4" loc="(300,1730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(340,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(692,601)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> <comp loc="(500,1300)" name="D-latch"/> <comp lib="0" loc="(80,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="6" loc="(633,810)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(710,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(420,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(400,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(500,1580)" name="D-latch"/> <comp lib="0" loc="(840,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/CLPB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(840,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1140)" name="D-latch"/> <comp lib="4" loc="(420,1310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(692,811)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VBL"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,990)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1060)" name="D-latch"/> <comp lib="4" loc="(420,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,620)" name="NOT Gate"/> <comp lib="1" loc="(340,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(570,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(500,370)" name="D-latch"/> <comp lib="6" loc="(633,600)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BW"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="4" loc="(420,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W1"/> </comp> </circuit> <circuit name="MUX"> <a name="circuit" val="MUX"/> <a name="clabel" val="MUX"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff586d" height="489" stroke="#000000" stroke-width="2" width="340" x="50" y="51"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="284">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="305">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="324">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="344">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="365">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="284">COLOR OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="384">/SPR0HIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="404">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="204">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="294">/PRIO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="425">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="463">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="255">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="444">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="324">BG COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="484">EXT IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="354">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="284">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="255">OBJ COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="324">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="484">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="224">SPR0_EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="513">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="363" y="214">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="184">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="104">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="505">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="484">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="444">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="464">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="104">DIRECT COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="339" y="444">EXT OUT</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,75 56,67" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="265">/1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="274">2</text> <circ-port height="8" pin="130,70" width="8" x="46" y="506"/> <circ-port height="8" pin="130,110" width="8" x="46" y="496"/> <circ-port height="8" pin="130,150" width="8" x="46" y="486"/> <circ-port height="8" pin="130,190" width="8" x="46" y="476"/> <circ-port height="8" pin="130,230" width="8" x="46" y="66"/> <circ-port height="8" pin="130,340" width="8" x="46" y="316"/> <circ-port height="8" pin="130,390" width="8" x="46" y="326"/> <circ-port height="8" pin="130,440" width="8" x="46" y="336"/> <circ-port height="8" pin="130,490" width="8" x="46" y="346"/> <circ-port height="8" pin="130,680" width="8" x="46" y="246"/> <circ-port height="8" pin="130,740" width="8" x="46" y="256"/> <circ-port height="8" pin="130,800" width="8" x="46" y="266"/> <circ-port height="8" pin="130,860" width="8" x="46" y="276"/> <circ-port height="8" pin="130,920" width="8" x="46" y="286"/> <circ-port height="8" pin="130,990" width="8" x="46" y="96"/> <circ-port height="8" pin="130,1020" width="8" x="46" y="116"/> <circ-port height="8" pin="130,1050" width="8" x="46" y="136"/> <circ-port height="8" pin="130,1080" width="8" x="46" y="156"/> <circ-port height="8" pin="130,1110" width="8" x="46" y="176"/> <circ-port height="8" pin="130,1140" width="8" x="46" y="196"/> <circ-port height="8" pin="130,1230" width="8" x="46" y="376"/> <circ-port height="8" pin="130,1270" width="8" x="46" y="216"/> <circ-port height="8" pin="130,1310" width="8" x="46" y="396"/> <circ-port height="8" pin="130,1350" width="8" x="46" y="456"/> <circ-port height="8" pin="130,1390" width="8" x="46" y="416"/> <circ-port height="8" pin="130,1430" width="8" x="46" y="436"/> <circ-port height="10" pin="1250,90" width="10" x="385" y="435"/> <circ-port height="10" pin="1250,130" width="10" x="385" y="455"/> <circ-port height="10" pin="1250,170" width="10" x="385" y="475"/> <circ-port height="10" pin="1250,210" width="10" x="385" y="495"/> <circ-port height="10" pin="1250,370" width="10" x="385" y="275"/> <circ-port height="10" pin="1250,420" width="10" x="385" y="295"/> <circ-port height="10" pin="1250,470" width="10" x="385" y="315"/> <circ-port height="10" pin="1250,520" width="10" x="385" y="335"/> <circ-port height="10" pin="1250,570" width="10" x="385" y="355"/> <circ-port height="10" pin="1250,1250" width="10" x="385" y="205"/> <circ-anchor facing="east" height="6" width="6" x="387" y="47"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(900,780)" to="(900,1050)"/> <wire from="(830,150)" to="(830,420)"/> <wire from="(620,90)" to="(1250,90)"/> <wire from="(830,420)" to="(890,420)"/> <wire from="(550,630)" to="(550,660)"/> <wire from="(570,1290)" to="(570,1310)"/> <wire from="(130,1110)" to="(160,1110)"/> <wire from="(130,1430)" to="(160,1430)"/> <wire from="(950,340)" to="(970,340)"/> <wire from="(1100,540)" to="(1100,590)"/> <wire from="(840,110)" to="(840,470)"/> <wire from="(550,660)" to="(570,660)"/> <wire from="(920,630)" to="(920,730)"/> <wire from="(650,210)" to="(650,500)"/> <wire from="(1010,630)" to="(1040,630)"/> <wire from="(130,490)" to="(470,490)"/> <wire from="(550,630)" to="(750,630)"/> <wire from="(950,790)" to="(950,850)"/> <wire from="(820,370)" to="(890,370)"/> <wire from="(1160,370)" to="(1250,370)"/> <wire from="(730,330)" to="(730,380)"/> <wire from="(950,390)" to="(950,440)"/> <wire from="(930,690)" to="(930,740)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(920,410)" to="(970,410)"/> <wire from="(540,1230)" to="(590,1230)"/> <wire from="(1010,810)" to="(1070,810)"/> <wire from="(850,70)" to="(850,520)"/> <wire from="(690,730)" to="(750,730)"/> <wire from="(900,530)" to="(900,660)"/> <wire from="(640,170)" to="(640,450)"/> <wire from="(380,740)" to="(490,740)"/> <wire from="(200,250)" to="(200,270)"/> <wire from="(420,1190)" to="(420,1220)"/> <wire from="(220,920)" to="(260,920)"/> <wire from="(790,710)" to="(810,710)"/> <wire from="(810,650)" to="(830,650)"/> <wire from="(950,390)" to="(970,390)"/> <wire from="(950,790)" to="(970,790)"/> <wire from="(40,1170)" to="(40,1460)"/> <wire from="(730,330)" to="(750,330)"/> <wire from="(280,600)" to="(300,600)"/> <wire from="(550,450)" to="(640,450)"/> <wire from="(240,720)" to="(260,720)"/> <wire from="(470,680)" to="(470,720)"/> <wire from="(570,1270)" to="(660,1270)"/> <wire from="(150,1040)" to="(160,1040)"/> <wire from="(480,370)" to="(480,420)"/> <wire from="(170,900)" to="(180,900)"/> <wire from="(1040,380)" to="(1040,630)"/> <wire from="(1100,590)" to="(1100,1140)"/> <wire from="(1160,420)" to="(1250,420)"/> <wire from="(660,1270)" to="(660,1320)"/> <wire from="(730,380)" to="(730,430)"/> <wire from="(950,440)" to="(950,490)"/> <wire from="(130,680)" to="(260,680)"/> <wire from="(1010,360)" to="(1090,360)"/> <wire from="(920,460)" to="(970,460)"/> <wire from="(220,1410)" to="(1110,1410)"/> <wire from="(440,610)" to="(500,610)"/> <wire from="(700,560)" to="(750,560)"/> <wire from="(130,860)" to="(190,860)"/> <wire from="(630,130)" to="(630,400)"/> <wire from="(240,1190)" to="(420,1190)"/> <wire from="(130,230)" to="(180,230)"/> <wire from="(300,860)" to="(420,860)"/> <wire from="(730,540)" to="(730,610)"/> <wire from="(280,390)" to="(280,600)"/> <wire from="(300,800)" to="(400,800)"/> <wire from="(420,510)" to="(420,860)"/> <wire from="(420,1240)" to="(420,1270)"/> <wire from="(1110,1270)" to="(1110,1410)"/> <wire from="(630,130)" to="(1250,130)"/> <wire from="(1060,480)" to="(1060,750)"/> <wire from="(130,1050)" to="(160,1050)"/> <wire from="(950,440)" to="(970,440)"/> <wire from="(480,560)" to="(700,560)"/> <wire from="(380,410)" to="(470,410)"/> <wire from="(550,680)" to="(570,680)"/> <wire from="(810,670)" to="(810,710)"/> <wire from="(1080,580)" to="(1090,580)"/> <wire from="(630,1240)" to="(650,1240)"/> <wire from="(730,540)" to="(750,540)"/> <wire from="(730,380)" to="(750,380)"/> <wire from="(130,390)" to="(280,390)"/> <wire from="(440,1210)" to="(460,1210)"/> <wire from="(950,730)" to="(950,790)"/> <wire from="(1080,580)" to="(1080,870)"/> <wire from="(300,740)" to="(380,740)"/> <wire from="(480,420)" to="(480,470)"/> <wire from="(730,270)" to="(730,330)"/> <wire from="(1160,470)" to="(1250,470)"/> <wire from="(920,740)" to="(930,740)"/> <wire from="(730,430)" to="(730,480)"/> <wire from="(1120,370)" to="(1140,370)"/> <wire from="(1010,410)" to="(1090,410)"/> <wire from="(240,660)" to="(240,720)"/> <wire from="(920,510)" to="(970,510)"/> <wire from="(300,680)" to="(360,680)"/> <wire from="(920,750)" to="(970,750)"/> <wire from="(280,390)" to="(470,390)"/> <wire from="(600,670)" to="(650,670)"/> <wire from="(130,920)" to="(180,920)"/> <wire from="(620,90)" to="(620,350)"/> <wire from="(400,460)" to="(400,800)"/> <wire from="(930,690)" to="(970,690)"/> <wire from="(150,1020)" to="(150,1040)"/> <wire from="(1010,690)" to="(1050,690)"/> <wire from="(420,1220)" to="(460,1220)"/> <wire from="(810,670)" to="(830,670)"/> <wire from="(950,490)" to="(970,490)"/> <wire from="(950,730)" to="(970,730)"/> <wire from="(500,350)" to="(530,350)"/> <wire from="(570,1310)" to="(590,1310)"/> <wire from="(730,430)" to="(750,430)"/> <wire from="(1170,240)" to="(1170,550)"/> <wire from="(240,900)" to="(260,900)"/> <wire from="(520,610)" to="(550,610)"/> <wire from="(200,270)" to="(730,270)"/> <wire from="(240,660)" to="(260,660)"/> <wire from="(700,560)" to="(700,680)"/> <wire from="(150,1060)" to="(160,1060)"/> <wire from="(480,470)" to="(480,520)"/> <wire from="(1010,870)" to="(1080,870)"/> <wire from="(950,490)" to="(950,610)"/> <wire from="(730,480)" to="(730,540)"/> <wire from="(1160,520)" to="(1250,520)"/> <wire from="(550,400)" to="(630,400)"/> <wire from="(1070,530)" to="(1090,530)"/> <wire from="(930,760)" to="(930,810)"/> <wire from="(1170,550)" to="(1190,550)"/> <wire from="(1120,420)" to="(1140,420)"/> <wire from="(1010,460)" to="(1090,460)"/> <wire from="(130,800)" to="(190,800)"/> <wire from="(130,1310)" to="(440,1310)"/> <wire from="(40,1170)" to="(1310,1170)"/> <wire from="(130,190)" to="(820,190)"/> <wire from="(380,410)" to="(380,740)"/> <wire from="(790,350)" to="(890,350)"/> <wire from="(530,730)" to="(630,730)"/> <wire from="(640,170)" to="(1250,170)"/> <wire from="(260,340)" to="(260,620)"/> <wire from="(570,1330)" to="(570,1350)"/> <wire from="(570,1250)" to="(570,1270)"/> <wire from="(130,990)" to="(160,990)"/> <wire from="(130,1390)" to="(160,1390)"/> <wire from="(810,610)" to="(810,650)"/> <wire from="(500,400)" to="(530,400)"/> <wire from="(1080,1240)" to="(1090,1240)"/> <wire from="(730,480)" to="(750,480)"/> <wire from="(130,1080)" to="(150,1080)"/> <wire from="(480,520)" to="(480,560)"/> <wire from="(1060,480)" to="(1090,480)"/> <wire from="(950,670)" to="(950,730)"/> <wire from="(550,680)" to="(550,920)"/> <wire from="(240,840)" to="(240,900)"/> <wire from="(920,760)" to="(930,760)"/> <wire from="(1120,470)" to="(1140,470)"/> <wire from="(1010,510)" to="(1090,510)"/> <wire from="(900,380)" to="(900,430)"/> <wire from="(360,360)" to="(360,680)"/> <wire from="(130,150)" to="(830,150)"/> <wire from="(420,510)" to="(470,510)"/> <wire from="(1050,430)" to="(1090,430)"/> <wire from="(40,1460)" to="(1310,1460)"/> <wire from="(210,860)" to="(260,860)"/> <wire from="(790,400)" to="(890,400)"/> <wire from="(630,730)" to="(670,730)"/> <wire from="(650,500)" to="(750,500)"/> <wire from="(360,360)" to="(470,360)"/> <wire from="(360,680)" to="(470,680)"/> <wire from="(420,1240)" to="(460,1240)"/> <wire from="(1100,390)" to="(1100,440)"/> <wire from="(950,670)" to="(970,670)"/> <wire from="(1100,1270)" to="(1100,1320)"/> <wire from="(500,450)" to="(530,450)"/> <wire from="(570,1250)" to="(590,1250)"/> <wire from="(570,1330)" to="(590,1330)"/> <wire from="(730,610)" to="(750,610)"/> <wire from="(240,840)" to="(260,840)"/> <wire from="(260,340)" to="(470,340)"/> <wire from="(730,610)" to="(730,710)"/> <wire from="(870,660)" to="(900,660)"/> <wire from="(160,1400)" to="(180,1400)"/> <wire from="(550,350)" to="(620,350)"/> <wire from="(130,1230)" to="(460,1230)"/> <wire from="(130,110)" to="(840,110)"/> <wire from="(440,1250)" to="(440,1310)"/> <wire from="(1120,520)" to="(1140,520)"/> <wire from="(900,430)" to="(900,480)"/> <wire from="(1040,380)" to="(1090,380)"/> <wire from="(1010,750)" to="(1060,750)"/> <wire from="(1070,530)" to="(1070,810)"/> <wire from="(160,1420)" to="(160,1430)"/> <wire from="(790,450)" to="(890,450)"/> <wire from="(1050,430)" to="(1050,690)"/> <wire from="(850,520)" to="(890,520)"/> <wire from="(790,560)" to="(1090,560)"/> <wire from="(640,450)" to="(750,450)"/> <wire from="(550,610)" to="(550,630)"/> <wire from="(130,1270)" to="(420,1270)"/> <wire from="(440,610)" to="(440,1210)"/> <wire from="(630,690)" to="(630,730)"/> <wire from="(1100,440)" to="(1100,490)"/> <wire from="(650,210)" to="(1250,210)"/> <wire from="(500,500)" to="(530,500)"/> <wire from="(1080,1260)" to="(1090,1260)"/> <wire from="(240,900)" to="(240,1190)"/> <wire from="(240,240)" to="(240,660)"/> <wire from="(950,240)" to="(950,340)"/> <wire from="(920,770)" to="(920,870)"/> <wire from="(1120,570)" to="(1190,570)"/> <wire from="(470,720)" to="(490,720)"/> <wire from="(440,1250)" to="(460,1250)"/> <wire from="(130,1020)" to="(150,1020)"/> <wire from="(130,70)" to="(850,70)"/> <wire from="(950,610)" to="(950,670)"/> <wire from="(130,1140)" to="(1100,1140)"/> <wire from="(1310,1170)" to="(1310,1460)"/> <wire from="(240,780)" to="(240,840)"/> <wire from="(570,1290)" to="(650,1290)"/> <wire from="(900,480)" to="(900,530)"/> <wire from="(920,870)" to="(970,870)"/> <wire from="(920,630)" to="(970,630)"/> <wire from="(630,400)" to="(750,400)"/> <wire from="(840,470)" to="(890,470)"/> <wire from="(660,1320)" to="(1100,1320)"/> <wire from="(300,920)" to="(550,920)"/> <wire from="(160,1390)" to="(160,1400)"/> <wire from="(130,1350)" to="(570,1350)"/> <wire from="(210,800)" to="(260,800)"/> <wire from="(790,500)" to="(890,500)"/> <wire from="(550,500)" to="(650,500)"/> <wire from="(930,810)" to="(970,810)"/> <wire from="(150,1060)" to="(150,1080)"/> <wire from="(340,610)" to="(440,610)"/> <wire from="(200,240)" to="(240,240)"/> <wire from="(260,620)" to="(300,620)"/> <wire from="(790,610)" to="(810,610)"/> <wire from="(1100,490)" to="(1100,540)"/> <wire from="(950,850)" to="(970,850)"/> <wire from="(950,610)" to="(970,610)"/> <wire from="(630,690)" to="(650,690)"/> <wire from="(730,710)" to="(750,710)"/> <wire from="(240,780)" to="(260,780)"/> <wire from="(630,1320)" to="(660,1320)"/> <wire from="(950,240)" to="(1170,240)"/> <wire from="(160,1070)" to="(160,1110)"/> <wire from="(160,990)" to="(160,1030)"/> <wire from="(130,440)" to="(470,440)"/> <wire from="(160,1420)" to="(180,1420)"/> <wire from="(1120,1250)" to="(1250,1250)"/> <wire from="(180,1050)" to="(900,1050)"/> <wire from="(620,350)" to="(750,350)"/> <wire from="(820,190)" to="(820,370)"/> <wire from="(650,1240)" to="(650,1290)"/> <wire from="(950,340)" to="(950,390)"/> <wire from="(400,460)" to="(470,460)"/> <wire from="(130,340)" to="(260,340)"/> <wire from="(690,680)" to="(700,680)"/> <wire from="(130,740)" to="(260,740)"/> <wire from="(240,240)" to="(950,240)"/> <wire from="(1230,570)" to="(1250,570)"/> <comp loc="(790,340)" name="D-latch"/> <comp lib="0" loc="(130,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO3"/> </comp> <comp loc="(220,910)" name="D-latch"/> <comp lib="0" loc="(130,230)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1010,800)" name="D-latch"/> <comp loc="(300,910)" name="D-latch"/> <comp lib="1" loc="(690,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="2" loc="(500,400)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(300,730)" name="D-latch"/> <comp lib="6" loc="(1134,236)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(520,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="6" loc="(883,651)" name="Text"> <a name="text" val="EXT"/> </comp> <comp lib="0" loc="(180,1050)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(482,315)" name="Text"> <a name="text" val="Sprite/background"/> </comp> <comp lib="0" loc="(130,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(130,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO0"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC0"/> </comp> <comp lib="6" loc="(741,723)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(130,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR0_EV"/> </comp> <comp loc="(300,790)" name="D-latch"/> <comp lib="0" loc="(1250,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(705,286)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="1" loc="(1160,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(790,390)" name="D-latch"/> <comp lib="2" loc="(920,460)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(550,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1010,500)" name="D-latch"/> <comp loc="(1230,560)" name="D-latch"/> <comp loc="(1010,620)" name="D-latch"/> <comp lib="2" loc="(1120,470)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(241,1402)" name="Text"> <a name="text" val="R2'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(550,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,1240)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(678,718)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(630,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT3_IN"/> </comp> <comp lib="0" loc="(1250,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT0_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1250,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT1_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,230)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(500,350)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO2"/> </comp> <comp loc="(790,720)" name="D-latch"/> <comp lib="6" loc="(1100,329)" name="Text"> <a name="text" val="Direct/Prev"/> </comp> <comp lib="6" loc="(708,48)" name="Text"> <a name="text" val="MUX - select one of 4 sources for final color output"/> <a name="font" val="SansSerif plain 28"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC1"/> </comp> <comp lib="1" loc="(690,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(790,550)" name="D-latch"/> <comp lib="2" loc="(500,500)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(1010,450)" name="D-latch"/> <comp loc="(790,620)" name="D-latch"/> <comp lib="2" loc="(1120,520)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(920,360)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(1010,860)" name="D-latch"/> <comp loc="(1010,350)" name="D-latch"/> <comp lib="1" loc="(1160,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(500,450)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(300,850)" name="D-latch"/> <comp lib="0" loc="(1250,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZPRIO"/> </comp> <comp loc="(300,670)" name="D-latch"/> <comp lib="0" loc="(130,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(757,1212)" name="Text"> <a name="text" val="STRIKE TEST"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="0" loc="(130,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO4"/> </comp> <comp lib="1" loc="(550,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(742,624)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="2" loc="(1120,420)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(630,1240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1120,570)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(340,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="2" loc="(920,510)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(508,598)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC3"/> </comp> <comp lib="1" loc="(550,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1160,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TH/MUX"/> </comp> <comp lib="0" loc="(1250,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1010,400)" name="D-latch"/> <comp lib="6" loc="(902,326)" name="Text"> <a name="text" val="External/Prev"/> </comp> <comp loc="(790,490)" name="D-latch"/> <comp lib="2" loc="(920,410)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SPR0HIT"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC2"/> </comp> <comp lib="0" loc="(900,780)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1250,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT3_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(530,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="2" loc="(1120,370)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1250,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1160,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1080,1260)" name="Constant"/> <comp loc="(790,440)" name="D-latch"/> <comp lib="6" loc="(1094,1207)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="0" loc="(130,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(220,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(600,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp loc="(1010,680)" name="D-latch"/> <comp lib="1" loc="(870,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(210,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT2_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZCOL3"/> </comp> <comp lib="6" loc="(680,555)" name="Text"> <a name="text" val="OCOL"/> </comp> <comp lib="1" loc="(540,1230)" name="NOR Gate"> <a name="size" val="70"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT0_IN"/> </comp> <comp lib="0" loc="(1250,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO1"/> </comp> <comp loc="(1010,740)" name="D-latch"/> <comp lib="0" loc="(1250,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,900)" name="Constant"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT2_IN"/> </comp> <comp lib="2" loc="(1120,1250)" name="Multiplexer"/> <comp lib="6" loc="(127,969)" name="Text"> <a name="text" val="TH contain directly loaded color"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT1_IN"/> </comp> </circuit> <circuit name="OAM_EVAL"> <a name="circuit" val="OAM_EVAL"/> <a name="clabel" val="OAM EVAL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#69ff1b" height="400" stroke="#000000" stroke-width="2" width="210" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="404">SPR0_EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="227" y="385">PD/FIFO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="184">OV0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="274">0V3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="232" y="94">OMFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="289">V POS BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="389">OBJ BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="254">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="324">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="354">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="423">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="234">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="174">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="194">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="154">S/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="94">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="214">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="114">O8/16</text> <polyline fill="none" points="51,55 55,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="52,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,55 56,64" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,200" width="8" x="46" y="206"/> <circ-port height="8" pin="90,310" width="8" x="46" y="86"/> <circ-port height="8" pin="90,380" width="8" x="46" y="186"/> <circ-port height="8" pin="90,420" width="8" x="46" y="226"/> <circ-port height="8" pin="90,480" width="8" x="46" y="126"/> <circ-port height="8" pin="90,580" width="8" x="46" y="146"/> <circ-port height="8" pin="90,670" width="8" x="46" y="166"/> <circ-port height="8" pin="90,720" width="8" x="46" y="106"/> <circ-port height="8" pin="90,1100" width="8" x="46" y="346"/> <circ-port height="8" pin="90,1140" width="8" x="46" y="356"/> <circ-port height="8" pin="90,1180" width="8" x="46" y="366"/> <circ-port height="8" pin="90,1220" width="8" x="46" y="376"/> <circ-port height="8" pin="90,1260" width="8" x="46" y="386"/> <circ-port height="8" pin="90,1300" width="8" x="46" y="396"/> <circ-port height="8" pin="90,1340" width="8" x="46" y="406"/> <circ-port height="8" pin="90,1380" width="8" x="46" y="416"/> <circ-port height="8" pin="90,770" width="8" x="46" y="246"/> <circ-port height="8" pin="90,810" width="8" x="46" y="256"/> <circ-port height="8" pin="90,850" width="8" x="46" y="266"/> <circ-port height="8" pin="90,890" width="8" x="46" y="276"/> <circ-port height="8" pin="90,930" width="8" x="46" y="286"/> <circ-port height="8" pin="90,970" width="8" x="46" y="296"/> <circ-port height="8" pin="90,1010" width="8" x="46" y="306"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="316"/> <circ-port height="10" pin="980,110" width="10" x="255" y="375"/> <circ-port height="10" pin="980,420" width="10" x="255" y="85"/> <circ-port height="10" pin="980,540" width="10" x="255" y="395"/> <circ-port height="10" pin="980,960" width="10" x="255" y="175"/> <circ-port height="10" pin="980,990" width="10" x="255" y="205"/> <circ-port height="10" pin="980,1020" width="10" x="255" y="235"/> <circ-port height="10" pin="980,1050" width="10" x="255" y="265"/> <circ-anchor facing="east" height="6" width="6" x="257" y="37"/> </appear> <wire from="(260,1280)" to="(260,1410)"/> <wire from="(260,1280)" to="(760,1280)"/> <wire from="(120,440)" to="(170,440)"/> <wire from="(90,970)" to="(140,970)"/> <wire from="(620,1110)" to="(660,1110)"/> <wire from="(870,480)" to="(870,700)"/> <wire from="(120,1120)" to="(360,1120)"/> <wire from="(430,1310)" to="(430,1330)"/> <wire from="(880,410)" to="(920,410)"/> <wire from="(260,470)" to="(870,470)"/> <wire from="(320,1050)" to="(360,1050)"/> <wire from="(490,960)" to="(980,960)"/> <wire from="(310,210)" to="(530,210)"/> <wire from="(880,1150)" to="(900,1150)"/> <wire from="(860,410)" to="(880,410)"/> <wire from="(190,260)" to="(350,260)"/> <wire from="(570,360)" to="(590,360)"/> <wire from="(350,260)" to="(510,260)"/> <wire from="(730,360)" to="(750,360)"/> <wire from="(510,260)" to="(670,260)"/> <wire from="(410,360)" to="(430,360)"/> <wire from="(150,470)" to="(150,520)"/> <wire from="(130,50)" to="(130,100)"/> <wire from="(600,1080)" to="(600,1140)"/> <wire from="(220,810)" to="(220,930)"/> <wire from="(440,70)" to="(510,70)"/> <wire from="(730,130)" to="(740,130)"/> <wire from="(160,70)" to="(420,70)"/> <wire from="(320,1050)" to="(320,1310)"/> <wire from="(310,670)" to="(370,670)"/> <wire from="(260,1410)" to="(760,1410)"/> <wire from="(240,910)" to="(360,910)"/> <wire from="(740,730)" to="(740,1120)"/> <wire from="(90,1180)" to="(140,1180)"/> <wire from="(90,850)" to="(200,850)"/> <wire from="(260,480)" to="(260,700)"/> <wire from="(510,160)" to="(510,190)"/> <wire from="(170,310)" to="(210,310)"/> <wire from="(430,560)" to="(530,560)"/> <wire from="(230,450)" to="(270,450)"/> <wire from="(510,160)" to="(610,160)"/> <wire from="(130,40)" to="(160,40)"/> <wire from="(580,1110)" to="(580,1150)"/> <wire from="(90,480)" to="(120,480)"/> <wire from="(200,1200)" to="(360,1200)"/> <wire from="(90,720)" to="(120,720)"/> <wire from="(670,110)" to="(690,110)"/> <wire from="(320,1360)" to="(340,1360)"/> <wire from="(510,110)" to="(530,110)"/> <wire from="(510,190)" to="(530,190)"/> <wire from="(150,470)" to="(170,470)"/> <wire from="(490,1110)" to="(580,1110)"/> <wire from="(160,930)" to="(160,990)"/> <wire from="(710,1130)" to="(760,1130)"/> <wire from="(120,460)" to="(170,460)"/> <wire from="(880,410)" to="(880,730)"/> <wire from="(730,540)" to="(980,540)"/> <wire from="(490,1340)" to="(740,1340)"/> <wire from="(180,970)" to="(360,970)"/> <wire from="(90,1300)" to="(200,1300)"/> <wire from="(870,20)" to="(870,240)"/> <wire from="(650,360)" to="(690,360)"/> <wire from="(120,460)" to="(120,480)"/> <wire from="(170,220)" to="(170,310)"/> <wire from="(240,1380)" to="(340,1380)"/> <wire from="(260,250)" to="(870,250)"/> <wire from="(150,260)" to="(190,260)"/> <wire from="(550,570)" to="(550,590)"/> <wire from="(330,360)" to="(370,360)"/> <wire from="(560,1140)" to="(560,1160)"/> <wire from="(490,360)" to="(530,360)"/> <wire from="(160,40)" to="(190,40)"/> <wire from="(90,1010)" to="(120,1010)"/> <wire from="(640,1090)" to="(660,1090)"/> <wire from="(750,400)" to="(770,400)"/> <wire from="(250,300)" to="(270,300)"/> <wire from="(90,670)" to="(290,670)"/> <wire from="(750,420)" to="(750,430)"/> <wire from="(590,180)" to="(590,190)"/> <wire from="(90,200)" to="(280,200)"/> <wire from="(430,430)" to="(750,430)"/> <wire from="(240,770)" to="(240,910)"/> <wire from="(730,110)" to="(980,110)"/> <wire from="(180,1180)" to="(360,1180)"/> <wire from="(710,570)" to="(710,660)"/> <wire from="(120,1030)" to="(360,1030)"/> <wire from="(710,140)" to="(710,170)"/> <wire from="(710,1100)" to="(710,1130)"/> <wire from="(260,700)" to="(870,700)"/> <wire from="(190,260)" to="(190,290)"/> <wire from="(260,20)" to="(260,240)"/> <wire from="(140,310)" to="(170,310)"/> <wire from="(960,420)" to="(980,420)"/> <wire from="(90,420)" to="(120,420)"/> <wire from="(90,1140)" to="(120,1140)"/> <wire from="(570,190)" to="(590,190)"/> <wire from="(90,890)" to="(180,890)"/> <wire from="(430,450)" to="(430,560)"/> <wire from="(600,1140)" to="(760,1140)"/> <wire from="(430,1330)" to="(450,1330)"/> <wire from="(90,30)" to="(110,30)"/> <wire from="(190,290)" to="(210,290)"/> <wire from="(150,380)" to="(150,430)"/> <wire from="(90,1100)" to="(360,1100)"/> <wire from="(310,580)" to="(370,580)"/> <wire from="(580,1150)" to="(760,1150)"/> <wire from="(380,1380)" to="(430,1380)"/> <wire from="(140,720)" to="(640,720)"/> <wire from="(350,630)" to="(350,650)"/> <wire from="(180,890)" to="(180,970)"/> <wire from="(350,260)" to="(350,340)"/> <wire from="(490,1080)" to="(600,1080)"/> <wire from="(120,1120)" to="(120,1140)"/> <wire from="(510,260)" to="(510,340)"/> <wire from="(320,1310)" to="(430,1310)"/> <wire from="(430,1350)" to="(430,1380)"/> <wire from="(670,260)" to="(670,340)"/> <wire from="(160,40)" to="(160,70)"/> <wire from="(840,1150)" to="(860,1150)"/> <wire from="(670,70)" to="(670,110)"/> <wire from="(90,310)" to="(120,310)"/> <wire from="(200,950)" to="(360,950)"/> <wire from="(270,300)" to="(430,300)"/> <wire from="(90,1260)" to="(180,1260)"/> <wire from="(590,340)" to="(610,340)"/> <wire from="(590,180)" to="(610,180)"/> <wire from="(670,340)" to="(690,340)"/> <wire from="(430,300)" to="(590,300)"/> <wire from="(750,420)" to="(770,420)"/> <wire from="(270,340)" to="(290,340)"/> <wire from="(350,340)" to="(370,340)"/> <wire from="(430,340)" to="(450,340)"/> <wire from="(140,1140)" to="(140,1180)"/> <wire from="(510,340)" to="(530,340)"/> <wire from="(90,770)" to="(240,770)"/> <wire from="(490,160)" to="(510,160)"/> <wire from="(510,70)" to="(510,110)"/> <wire from="(560,1160)" to="(760,1160)"/> <wire from="(160,1160)" to="(360,1160)"/> <wire from="(160,1160)" to="(160,1220)"/> <wire from="(570,560)" to="(690,560)"/> <wire from="(590,410)" to="(770,410)"/> <wire from="(620,70)" to="(670,70)"/> <wire from="(650,170)" to="(710,170)"/> <wire from="(870,250)" to="(870,470)"/> <wire from="(620,1050)" to="(980,1050)"/> <wire from="(180,1180)" to="(180,1260)"/> <wire from="(120,1010)" to="(120,1030)"/> <wire from="(900,430)" to="(900,450)"/> <wire from="(260,240)" to="(870,240)"/> <wire from="(260,480)" to="(870,480)"/> <wire from="(350,600)" to="(350,630)"/> <wire from="(750,360)" to="(750,400)"/> <wire from="(140,1010)" to="(360,1010)"/> <wire from="(200,1200)" to="(200,1300)"/> <wire from="(740,1180)" to="(760,1180)"/> <wire from="(90,1380)" to="(240,1380)"/> <wire from="(430,1350)" to="(450,1350)"/> <wire from="(430,450)" to="(900,450)"/> <wire from="(150,430)" to="(170,430)"/> <wire from="(410,590)" to="(550,590)"/> <wire from="(350,880)" to="(360,880)"/> <wire from="(340,630)" to="(350,630)"/> <wire from="(640,720)" to="(640,1090)"/> <wire from="(90,580)" to="(290,580)"/> <wire from="(590,360)" to="(590,410)"/> <wire from="(220,1220)" to="(220,1340)"/> <wire from="(90,930)" to="(160,930)"/> <wire from="(570,540)" to="(580,540)"/> <wire from="(430,360)" to="(430,430)"/> <wire from="(570,130)" to="(690,130)"/> <wire from="(90,380)" to="(150,380)"/> <wire from="(130,100)" to="(190,100)"/> <wire from="(240,1240)" to="(240,1380)"/> <wire from="(240,1240)" to="(360,1240)"/> <wire from="(760,1280)" to="(760,1410)"/> <wire from="(170,220)" to="(280,220)"/> <wire from="(410,660)" to="(710,660)"/> <wire from="(120,420)" to="(120,440)"/> <wire from="(260,250)" to="(260,470)"/> <wire from="(270,360)" to="(270,450)"/> <wire from="(490,1020)" to="(980,1020)"/> <wire from="(120,520)" to="(150,520)"/> <wire from="(900,430)" to="(920,430)"/> <wire from="(590,360)" to="(610,360)"/> <wire from="(140,1140)" to="(360,1140)"/> <wire from="(690,1100)" to="(710,1100)"/> <wire from="(200,850)" to="(200,950)"/> <wire from="(270,360)" to="(290,360)"/> <wire from="(350,600)" to="(370,600)"/> <wire from="(430,360)" to="(450,360)"/> <wire from="(740,1180)" to="(740,1340)"/> <wire from="(810,410)" to="(840,410)"/> <wire from="(490,1140)" to="(560,1140)"/> <wire from="(220,930)" to="(360,930)"/> <wire from="(490,1050)" to="(620,1050)"/> <wire from="(490,1170)" to="(760,1170)"/> <wire from="(90,1220)" to="(160,1220)"/> <wire from="(680,540)" to="(690,540)"/> <wire from="(520,540)" to="(530,540)"/> <wire from="(90,810)" to="(220,810)"/> <wire from="(740,730)" to="(880,730)"/> <wire from="(260,20)" to="(870,20)"/> <wire from="(90,1050)" to="(320,1050)"/> <wire from="(490,990)" to="(980,990)"/> <wire from="(490,130)" to="(530,130)"/> <wire from="(590,300)" to="(590,340)"/> <wire from="(510,70)" to="(600,70)"/> <wire from="(270,450)" to="(430,450)"/> <wire from="(740,1120)" to="(760,1120)"/> <wire from="(350,650)" to="(370,650)"/> <wire from="(140,970)" to="(140,1010)"/> <wire from="(270,300)" to="(270,340)"/> <wire from="(430,300)" to="(430,340)"/> <wire from="(620,1050)" to="(620,1110)"/> <wire from="(220,1220)" to="(360,1220)"/> <wire from="(160,990)" to="(360,990)"/> <wire from="(90,1340)" to="(220,1340)"/> <wire from="(730,560)" to="(740,560)"/> <comp loc="(730,350)" name="D-latch"/> <comp lib="0" loc="(190,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(620,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(633,691)" name="Text"> <a name="text" val="SPRITE 0 NOT FOUND ON CURRENT SCANLINE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(120,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/OVZ"/> </comp> <comp lib="0" loc="(190,100)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(306,443)" name="Text"> <a name="text" val="DO_COPY"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(584,1390)" name="Text"> <a name="text" val="IN RANGE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="1" loc="(490,1340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="6" loc="(848,394)" name="Text"> <a name="text" val="11"/> </comp> <comp loc="(380,1370)" name="D-latch"/> <comp lib="0" loc="(90,1380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(90,1300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp loc="(650,350)" name="D-latch"/> <comp lib="0" loc="(90,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(980,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="0" loc="(980,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="1" loc="(310,210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="20"/> </comp> <comp lib="1" loc="(310,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="1" loc="(230,450)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="29"/> </comp> <comp lib="0" loc="(90,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp lib="6" loc="(332,1374)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(320,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(651,64)" name="Text"> <a name="text" val="PCLK2"/> </comp> <comp loc="(570,200)" name="D-latch"/> <comp lib="0" loc="(90,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(980,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OMFG"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(709,524)" name="Text"> <a name="text" val="DFF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(250,300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="19"/> </comp> <comp lib="6" loc="(441,354)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="6" loc="(775,272)" name="Text"> <a name="text" val="COPY ENABLE COUNTER"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp loc="(490,350)" name="D-latch"/> <comp lib="6" loc="(777,44)" name="Text"> <a name="text" val="PD/FIFO CIRCUIT"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(522,203)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(678,354)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="6" loc="(306,294)" name="Text"> <a name="text" val="COPY_STEP"/> </comp> <comp lib="1" loc="(140,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="0" loc="(90,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="6" loc="(794,1154)" name="Text"> <a name="text" val="OVZ"/> </comp> <comp lib="0" loc="(150,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(650,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="1" loc="(140,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(519,125)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="6" loc="(207,418)" name="Text"> <a name="text" val="copy condition"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(840,1150)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(90,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(980,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(299,566)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="6" loc="(134,677)" name="Text"/> <comp loc="(570,120)" name="D-latch"/> <comp lib="0" loc="(490,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(90,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(980,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(520,355)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(90,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(350,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(410,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="24"/> </comp> <comp lib="0" loc="(490,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/OVZ"/> </comp> <comp lib="1" loc="(960,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="6" loc="(130,706)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(90,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="6" loc="(131,295)" name="Text"> <a name="text" val="22"/> </comp> <comp lib="6" loc="(298,659)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(709,95)" name="Text"> <a name="text" val="DFF3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(310,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="1" loc="(690,1100)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="1" loc="(810,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="10"/> </comp> <comp loc="(410,350)" name="D-latch"/> <comp lib="6" loc="(473,64)" name="Text"> <a name="text" val="/PCLK2"/> </comp> <comp lib="0" loc="(980,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD/FIFO"/> <a name="labelloc" val="east"/> </comp> <comp loc="(570,350)" name="D-latch"/> <comp lib="0" loc="(980,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR0_EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(124,667)" name="Text"/> <comp lib="6" loc="(870,1138)" name="Text"> <a name="text" val="29"/> </comp> <comp lib="0" loc="(90,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(880,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(410,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(860,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp loc="(330,350)" name="D-latch"/> <comp lib="0" loc="(90,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="0" loc="(520,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(600,354)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp lib="0" loc="(900,1150)" name="Tunnel"> <a name="label" val="/OVZ"/> </comp> <comp loc="(490,860)" name="OAM_SUBSTRACTOR"/> <comp lib="6" loc="(371,276)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="4" loc="(730,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(551,523)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/EV"/> </comp> <comp lib="4" loc="(570,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(730,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(680,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(280,353)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(362,353)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(90,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(110,30)" name="Splitter"> <a name="appear" val="right"/> </comp> </circuit> <circuit name="OAM_SUBSTRACTOR"> <a name="circuit" val="OAM_SUBSTRACTOR"/> <a name="clabel" val="OAM SUBSTRACTOR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M241,86 Q245,96 249,86" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff003b" height="401" stroke="#000000" stroke-width="2" width="130" x="230" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="314">B0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="335">B1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="354">B2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="374">B3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="394">B4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="414">B5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="434">B6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="454">B7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="254" y="95">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="124">A0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="144">A1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="164">A2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="184">A3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="204">A4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="224">A5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="244">A6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="264">A7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="174">S0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="204">S1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="234">S2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="264">S3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="294">S4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="324">S5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="354">S6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="384">S7</text> <polyline fill="none" points="230,85 236,85" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="230,95 235,95" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="236,86 236,95" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="294" y="66">OV = V - OB</text> <circ-port height="8" pin="80,80" width="8" x="226" y="86"/> <circ-port height="8" pin="80,130" width="8" x="226" y="306"/> <circ-port height="8" pin="80,420" width="8" x="226" y="326"/> <circ-port height="8" pin="80,550" width="8" x="226" y="346"/> <circ-port height="8" pin="80,840" width="8" x="226" y="366"/> <circ-port height="8" pin="80,970" width="8" x="226" y="386"/> <circ-port height="8" pin="80,1260" width="8" x="226" y="406"/> <circ-port height="8" pin="80,1390" width="8" x="226" y="426"/> <circ-port height="8" pin="80,1680" width="8" x="226" y="446"/> <circ-port height="8" pin="80,190" width="8" x="226" y="116"/> <circ-port height="8" pin="80,480" width="8" x="226" y="136"/> <circ-port height="8" pin="80,610" width="8" x="226" y="156"/> <circ-port height="8" pin="80,900" width="8" x="226" y="176"/> <circ-port height="8" pin="80,1030" width="8" x="226" y="196"/> <circ-port height="8" pin="80,1320" width="8" x="226" y="216"/> <circ-port height="8" pin="80,1450" width="8" x="226" y="236"/> <circ-port height="8" pin="80,1740" width="8" x="226" y="256"/> <circ-port height="10" pin="580,140" width="10" x="355" y="165"/> <circ-port height="10" pin="580,260" width="10" x="355" y="195"/> <circ-port height="10" pin="580,560" width="10" x="355" y="225"/> <circ-port height="10" pin="580,680" width="10" x="355" y="255"/> <circ-port height="10" pin="580,980" width="10" x="355" y="285"/> <circ-port height="10" pin="580,1100" width="10" x="355" y="315"/> <circ-port height="10" pin="580,1400" width="10" x="355" y="345"/> <circ-port height="10" pin="580,1520" width="10" x="355" y="375"/> <circ-anchor facing="east" height="6" width="6" x="357" y="67"/> </appear> <wire from="(270,1460)" to="(330,1460)"/> <wire from="(520,1220)" to="(520,1360)"/> <wire from="(310,1090)" to="(310,1220)"/> <wire from="(310,520)" to="(490,520)"/> <wire from="(80,1680)" to="(130,1680)"/> <wire from="(190,1260)" to="(190,1340)"/> <wire from="(330,1690)" to="(430,1690)"/> <wire from="(190,920)" to="(230,920)"/> <wire from="(190,840)" to="(230,840)"/> <wire from="(310,800)" to="(350,800)"/> <wire from="(390,800)" to="(430,800)"/> <wire from="(390,1520)" to="(430,1520)"/> <wire from="(110,950)" to="(110,1240)"/> <wire from="(380,1040)" to="(410,1040)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(410,1000)" to="(430,1000)"/> <wire from="(390,740)" to="(410,740)"/> <wire from="(410,1080)" to="(430,1080)"/> <wire from="(470,1700)" to="(490,1700)"/> <wire from="(330,200)" to="(330,310)"/> <wire from="(210,1410)" to="(210,1450)"/> <wire from="(330,330)" to="(330,370)"/> <wire from="(490,1110)" to="(490,1280)"/> <wire from="(110,1660)" to="(130,1660)"/> <wire from="(410,1290)" to="(410,1330)"/> <wire from="(170,840)" to="(190,840)"/> <wire from="(210,1280)" to="(230,1280)"/> <wire from="(210,480)" to="(230,480)"/> <wire from="(290,140)" to="(430,140)"/> <wire from="(330,1210)" to="(330,1270)"/> <wire from="(410,810)" to="(410,870)"/> <wire from="(80,900)" to="(210,900)"/> <wire from="(270,1270)" to="(330,1270)"/> <wire from="(290,810)" to="(350,810)"/> <wire from="(290,1530)" to="(350,1530)"/> <wire from="(290,560)" to="(290,690)"/> <wire from="(80,130)" to="(130,130)"/> <wire from="(310,100)" to="(310,250)"/> <wire from="(190,1390)" to="(190,1470)"/> <wire from="(490,940)" to="(490,970)"/> <wire from="(190,1050)" to="(230,1050)"/> <wire from="(190,970)" to="(230,970)"/> <wire from="(310,1090)" to="(350,1090)"/> <wire from="(110,80)" to="(110,110)"/> <wire from="(470,1410)" to="(510,1410)"/> <wire from="(470,1090)" to="(510,1090)"/> <wire from="(490,1530)" to="(510,1530)"/> <wire from="(560,560)" to="(580,560)"/> <wire from="(560,1520)" to="(580,1520)"/> <wire from="(330,1040)" to="(360,1040)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(330,1210)" to="(350,1210)"/> <wire from="(330,330)" to="(350,330)"/> <wire from="(490,1360)" to="(520,1360)"/> <wire from="(410,1290)" to="(430,1290)"/> <wire from="(410,810)" to="(430,810)"/> <wire from="(410,1210)" to="(430,1210)"/> <wire from="(490,970)" to="(510,970)"/> <wire from="(210,1700)" to="(210,1740)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(260,1750)" to="(410,1750)"/> <wire from="(410,620)" to="(410,660)"/> <wire from="(410,1420)" to="(410,1460)"/> <wire from="(210,1410)" to="(230,1410)"/> <wire from="(210,610)" to="(230,610)"/> <wire from="(170,970)" to="(190,970)"/> <wire from="(410,1580)" to="(410,1630)"/> <wire from="(290,690)" to="(290,810)"/> <wire from="(80,1030)" to="(210,1030)"/> <wire from="(270,200)" to="(330,200)"/> <wire from="(310,1510)" to="(310,1640)"/> <wire from="(310,940)" to="(490,940)"/> <wire from="(80,420)" to="(130,420)"/> <wire from="(190,1680)" to="(190,1760)"/> <wire from="(330,430)" to="(430,430)"/> <wire from="(190,1340)" to="(230,1340)"/> <wire from="(190,1260)" to="(230,1260)"/> <wire from="(310,1220)" to="(350,1220)"/> <wire from="(390,1220)" to="(430,1220)"/> <wire from="(390,260)" to="(430,260)"/> <wire from="(110,1370)" to="(110,1660)"/> <wire from="(490,1530)" to="(490,1700)"/> <wire from="(380,1460)" to="(410,1460)"/> <wire from="(210,1700)" to="(230,1700)"/> <wire from="(270,560)" to="(290,560)"/> <wire from="(410,1420)" to="(430,1420)"/> <wire from="(390,1160)" to="(410,1160)"/> <wire from="(410,1500)" to="(430,1500)"/> <wire from="(210,150)" to="(210,190)"/> <wire from="(330,620)" to="(330,730)"/> <wire from="(470,440)" to="(490,440)"/> <wire from="(330,750)" to="(330,790)"/> <wire from="(110,400)" to="(130,400)"/> <wire from="(210,900)" to="(230,900)"/> <wire from="(170,1260)" to="(190,1260)"/> <wire from="(410,1710)" to="(410,1750)"/> <wire from="(290,560)" to="(430,560)"/> <wire from="(330,1630)" to="(330,1690)"/> <wire from="(410,1230)" to="(410,1290)"/> <wire from="(80,1320)" to="(210,1320)"/> <wire from="(290,270)" to="(350,270)"/> <wire from="(270,1690)" to="(330,1690)"/> <wire from="(290,1230)" to="(350,1230)"/> <wire from="(110,400)" to="(110,530)"/> <wire from="(290,980)" to="(290,1110)"/> <wire from="(470,380)" to="(520,380)"/> <wire from="(80,550)" to="(130,550)"/> <wire from="(190,130)" to="(190,210)"/> <wire from="(310,520)" to="(310,670)"/> <wire from="(490,1360)" to="(490,1390)"/> <wire from="(190,1470)" to="(230,1470)"/> <wire from="(190,1390)" to="(230,1390)"/> <wire from="(310,1510)" to="(350,1510)"/> <wire from="(470,150)" to="(510,150)"/> <wire from="(470,1510)" to="(510,1510)"/> <wire from="(560,260)" to="(580,260)"/> <wire from="(490,1390)" to="(510,1390)"/> <wire from="(560,980)" to="(580,980)"/> <wire from="(490,100)" to="(520,100)"/> <wire from="(330,1460)" to="(360,1460)"/> <wire from="(330,1630)" to="(350,1630)"/> <wire from="(330,1150)" to="(350,1150)"/> <wire from="(330,750)" to="(350,750)"/> <wire from="(410,1230)" to="(430,1230)"/> <wire from="(210,440)" to="(210,480)"/> <wire from="(410,1710)" to="(430,1710)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(410,1630)" to="(430,1630)"/> <wire from="(110,530)" to="(130,530)"/> <wire from="(410,160)" to="(410,200)"/> <wire from="(260,490)" to="(410,490)"/> <wire from="(410,1040)" to="(410,1080)"/> <wire from="(210,1030)" to="(230,1030)"/> <wire from="(170,1390)" to="(190,1390)"/> <wire from="(210,150)" to="(230,150)"/> <wire from="(410,320)" to="(410,370)"/> <wire from="(290,1110)" to="(290,1230)"/> <wire from="(80,1450)" to="(210,1450)"/> <wire from="(270,620)" to="(330,620)"/> <wire from="(520,380)" to="(520,520)"/> <wire from="(310,250)" to="(310,380)"/> <wire from="(310,1360)" to="(490,1360)"/> <wire from="(80,840)" to="(130,840)"/> <wire from="(190,420)" to="(190,500)"/> <wire from="(520,80)" to="(520,100)"/> <wire from="(330,850)" to="(430,850)"/> <wire from="(190,1760)" to="(230,1760)"/> <wire from="(190,1680)" to="(230,1680)"/> <wire from="(310,1640)" to="(350,1640)"/> <wire from="(390,680)" to="(430,680)"/> <wire from="(390,1640)" to="(430,1640)"/> <wire from="(470,1640)" to="(510,1640)"/> <wire from="(110,110)" to="(110,400)"/> <wire from="(380,200)" to="(410,200)"/> <wire from="(270,980)" to="(290,980)"/> <wire from="(410,240)" to="(430,240)"/> <wire from="(410,160)" to="(430,160)"/> <wire from="(390,1580)" to="(410,1580)"/> <wire from="(210,570)" to="(210,610)"/> <wire from="(330,1040)" to="(330,1150)"/> <wire from="(470,860)" to="(490,860)"/> <wire from="(490,270)" to="(490,440)"/> <wire from="(330,1170)" to="(330,1210)"/> <wire from="(410,450)" to="(410,490)"/> <wire from="(110,820)" to="(130,820)"/> <wire from="(210,1320)" to="(230,1320)"/> <wire from="(170,1680)" to="(190,1680)"/> <wire from="(210,440)" to="(230,440)"/> <wire from="(290,980)" to="(430,980)"/> <wire from="(330,370)" to="(330,430)"/> <wire from="(410,1650)" to="(410,1710)"/> <wire from="(80,1740)" to="(210,1740)"/> <wire from="(110,820)" to="(110,950)"/> <wire from="(290,690)" to="(350,690)"/> <wire from="(270,430)" to="(330,430)"/> <wire from="(290,1650)" to="(350,1650)"/> <wire from="(290,1400)" to="(290,1530)"/> <wire from="(470,800)" to="(520,800)"/> <wire from="(80,970)" to="(130,970)"/> <wire from="(190,550)" to="(190,630)"/> <wire from="(310,940)" to="(310,1090)"/> <wire from="(490,100)" to="(490,130)"/> <wire from="(190,130)" to="(230,130)"/> <wire from="(190,210)" to="(230,210)"/> <wire from="(310,250)" to="(350,250)"/> <wire from="(470,570)" to="(510,570)"/> <wire from="(470,250)" to="(510,250)"/> <wire from="(560,680)" to="(580,680)"/> <wire from="(560,1400)" to="(580,1400)"/> <wire from="(490,520)" to="(520,520)"/> <wire from="(330,200)" to="(360,200)"/> <wire from="(330,1570)" to="(350,1570)"/> <wire from="(330,370)" to="(350,370)"/> <wire from="(330,1170)" to="(350,1170)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(410,450)" to="(430,450)"/> <wire from="(410,1650)" to="(430,1650)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(210,860)" to="(210,900)"/> <wire from="(490,690)" to="(510,690)"/> <wire from="(410,580)" to="(410,620)"/> <wire from="(170,130)" to="(190,130)"/> <wire from="(110,950)" to="(130,950)"/> <wire from="(260,910)" to="(410,910)"/> <wire from="(410,1460)" to="(410,1500)"/> <wire from="(210,1450)" to="(230,1450)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(410,740)" to="(410,790)"/> <wire from="(290,1530)" to="(290,1650)"/> <wire from="(80,190)" to="(210,190)"/> <wire from="(270,1040)" to="(330,1040)"/> <wire from="(520,800)" to="(520,940)"/> <wire from="(310,670)" to="(310,800)"/> <wire from="(310,100)" to="(490,100)"/> <wire from="(80,1260)" to="(130,1260)"/> <wire from="(190,840)" to="(190,920)"/> <wire from="(330,1270)" to="(430,1270)"/> <wire from="(190,420)" to="(230,420)"/> <wire from="(190,500)" to="(230,500)"/> <wire from="(310,380)" to="(350,380)"/> <wire from="(390,1100)" to="(430,1100)"/> <wire from="(390,380)" to="(430,380)"/> <wire from="(110,530)" to="(110,820)"/> <wire from="(80,80)" to="(110,80)"/> <wire from="(380,620)" to="(410,620)"/> <wire from="(210,1740)" to="(230,1740)"/> <wire from="(270,1400)" to="(290,1400)"/> <wire from="(410,660)" to="(430,660)"/> <wire from="(390,320)" to="(410,320)"/> <wire from="(410,580)" to="(430,580)"/> <wire from="(330,1460)" to="(330,1570)"/> <wire from="(210,990)" to="(210,1030)"/> <wire from="(470,1280)" to="(490,1280)"/> <wire from="(490,690)" to="(490,860)"/> <wire from="(330,1590)" to="(330,1630)"/> <wire from="(170,420)" to="(190,420)"/> <wire from="(410,870)" to="(410,910)"/> <wire from="(110,1240)" to="(130,1240)"/> <wire from="(210,860)" to="(230,860)"/> <wire from="(290,1400)" to="(430,1400)"/> <wire from="(330,790)" to="(330,850)"/> <wire from="(410,390)" to="(410,450)"/> <wire from="(80,480)" to="(210,480)"/> <wire from="(110,1240)" to="(110,1370)"/> <wire from="(290,1110)" to="(350,1110)"/> <wire from="(270,850)" to="(330,850)"/> <wire from="(290,390)" to="(350,390)"/> <wire from="(290,140)" to="(290,270)"/> <wire from="(470,1220)" to="(520,1220)"/> <wire from="(80,1390)" to="(130,1390)"/> <wire from="(190,970)" to="(190,1050)"/> <wire from="(310,1360)" to="(310,1510)"/> <wire from="(490,520)" to="(490,550)"/> <wire from="(190,550)" to="(230,550)"/> <wire from="(190,630)" to="(230,630)"/> <wire from="(310,670)" to="(350,670)"/> <wire from="(470,990)" to="(510,990)"/> <wire from="(470,670)" to="(510,670)"/> <wire from="(560,140)" to="(580,140)"/> <wire from="(560,1100)" to="(580,1100)"/> <wire from="(490,940)" to="(520,940)"/> <wire from="(330,620)" to="(360,620)"/> <wire from="(330,310)" to="(350,310)"/> <wire from="(330,790)" to="(350,790)"/> <wire from="(330,1590)" to="(350,1590)"/> <wire from="(410,790)" to="(430,790)"/> <wire from="(410,390)" to="(430,390)"/> <wire from="(410,870)" to="(430,870)"/> <wire from="(490,550)" to="(510,550)"/> <wire from="(210,1280)" to="(210,1320)"/> <wire from="(490,1110)" to="(510,1110)"/> <wire from="(410,200)" to="(410,240)"/> <wire from="(410,1000)" to="(410,1040)"/> <wire from="(170,550)" to="(190,550)"/> <wire from="(110,1370)" to="(130,1370)"/> <wire from="(260,1330)" to="(410,1330)"/> <wire from="(210,990)" to="(230,990)"/> <wire from="(210,190)" to="(230,190)"/> <wire from="(410,1160)" to="(410,1210)"/> <wire from="(290,270)" to="(290,390)"/> <wire from="(80,610)" to="(210,610)"/> <comp lib="1" loc="(390,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1280)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,140)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(80,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="1" loc="(470,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="1" loc="(390,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(580,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(560,980)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,620)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(390,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,1330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,1400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,490)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(170,410)" name="D-latch"/> <comp lib="0" loc="(80,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="1" loc="(270,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(548,1642)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="0" loc="(580,1520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp loc="(170,830)" name="D-latch"/> <comp lib="1" loc="(380,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(170,1670)" name="D-latch"/> <comp lib="1" loc="(390,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp loc="(170,120)" name="D-latch"/> <comp lib="1" loc="(270,1040)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(260,910)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="1" loc="(270,980)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="1" loc="(380,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,1460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(199,309)" name="Text"> <a name="text" val="S=V-OB"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="0" loc="(80,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp loc="(170,1380)" name="D-latch"/> <comp lib="1" loc="(560,1400)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(390,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(560,560)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(260,1750)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(170,540)" name="D-latch"/> <comp lib="1" loc="(470,990)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,1460)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(170,1250)" name="D-latch"/> <comp lib="1" loc="(270,1690)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(580,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="1" loc="(270,1400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(560,1100)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="1" loc="(470,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(470,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp loc="(170,960)" name="D-latch"/> <comp lib="1" loc="(560,260)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(560,1520)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(470,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(270,1270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(520,80)" name="Constant"> <a name="facing" val="south"/> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(390,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,200)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="6" loc="(295,48)" name="Text"> <a name="text" val="8-BIT SIGNED SUBTRACT"/> <a name="font" val="SansSerif plain 26"/> </comp> <comp lib="1" loc="(560,680)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> </circuit> <circuit name="OAM_CONTROL_NTSC"> <a name="circuit" val="OAM_CONTROL_NTSC"/> <a name="clabel" val="OAM CONTROL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8924" height="421" stroke="#000000" stroke-width="2" width="370" x="50" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="54">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="399" y="63">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="381" y="364">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="386" y="385">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="393" y="94">/OAM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="393" y="253">OAM8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="234">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="354">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="275">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="254">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="215">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="374">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="294">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="394">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="104">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="175">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="434">OMFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="314">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="335">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="137">CPU DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="194">/W3</text> <polyline fill="none" points="51,45 57,45" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,55 56,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="57,46 57,55" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="392" y="234">/OAM7</text> <circ-port height="8" pin="110,110" width="8" x="46" y="46"/> <circ-port height="8" pin="110,170" width="8" x="46" y="386"/> <circ-port height="8" pin="110,420" width="8" x="46" y="346"/> <circ-port height="8" pin="110,370" width="8" x="46" y="326"/> <circ-port height="8" pin="110,300" width="8" x="46" y="266"/> <circ-port height="8" pin="110,230" width="8" x="46" y="306"/> <circ-port height="8" pin="110,510" width="8" x="46" y="426"/> <circ-port height="8" pin="110,560" width="8" x="46" y="76"/> <circ-port height="8" pin="110,620" width="8" x="46" y="186"/> <circ-port height="8" pin="110,650" width="8" x="46" y="406"/> <circ-port height="8" pin="110,710" width="8" x="46" y="96"/> <circ-port height="8" pin="110,750" width="8" x="46" y="106"/> <circ-port height="8" pin="110,790" width="8" x="46" y="116"/> <circ-port height="8" pin="110,830" width="8" x="46" y="126"/> <circ-port height="8" pin="110,870" width="8" x="46" y="136"/> <circ-port height="8" pin="110,910" width="8" x="46" y="146"/> <circ-port height="8" pin="110,950" width="8" x="46" y="156"/> <circ-port height="8" pin="110,990" width="8" x="46" y="166"/> <circ-port height="8" pin="110,1190" width="8" x="46" y="366"/> <circ-port height="8" pin="110,1310" width="8" x="46" y="286"/> <circ-port height="8" pin="110,1670" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1710" width="8" x="46" y="226"/> <circ-port height="8" pin="110,1770" width="8" x="46" y="206"/> <circ-port height="10" pin="1230,440" width="10" x="415" y="85"/> <circ-port height="10" pin="1230,490" width="10" x="415" y="105"/> <circ-port height="10" pin="1230,540" width="10" x="415" y="125"/> <circ-port height="10" pin="1230,590" width="10" x="415" y="145"/> <circ-port height="10" pin="1230,640" width="10" x="415" y="165"/> <circ-port height="10" pin="1230,690" width="10" x="415" y="185"/> <circ-port height="10" pin="1230,740" width="10" x="415" y="205"/> <circ-port height="10" pin="1230,790" width="10" x="415" y="225"/> <circ-port height="10" pin="1230,840" width="10" x="415" y="245"/> <circ-port height="10" pin="1320,960" width="10" x="415" y="375"/> <circ-port height="10" pin="1320,1440" width="10" x="415" y="355"/> <circ-port height="10" pin="1320,1660" width="10" x="415" y="55"/> <circ-anchor facing="east" height="6" width="6" x="417" y="27"/> </appear> <wire from="(810,750)" to="(1120,750)"/> <wire from="(170,1360)" to="(230,1360)"/> <wire from="(810,1240)" to="(1060,1240)"/> <wire from="(490,1570)" to="(680,1570)"/> <wire from="(740,1530)" to="(800,1530)"/> <wire from="(490,1480)" to="(490,1570)"/> <wire from="(720,1610)" to="(760,1610)"/> <wire from="(110,1710)" to="(920,1710)"/> <wire from="(880,1610)" to="(920,1610)"/> <wire from="(170,730)" to="(170,750)"/> <wire from="(480,160)" to="(480,190)"/> <wire from="(910,1630)" to="(910,1650)"/> <wire from="(1200,1660)" to="(1320,1660)"/> <wire from="(1020,1560)" to="(1020,1700)"/> <wire from="(110,830)" to="(210,830)"/> <wire from="(1230,1390)" to="(1230,1440)"/> <wire from="(1230,990)" to="(1230,1040)"/> <wire from="(810,1040)" to="(1020,1040)"/> <wire from="(1130,570)" to="(1130,620)"/> <wire from="(1130,390)" to="(1130,570)"/> <wire from="(510,1500)" to="(510,1610)"/> <wire from="(390,1180)" to="(550,1180)"/> <wire from="(330,270)" to="(360,270)"/> <wire from="(720,1550)" to="(740,1550)"/> <wire from="(270,380)" to="(290,380)"/> <wire from="(650,1630)" to="(680,1630)"/> <wire from="(480,190)" to="(500,190)"/> <wire from="(190,750)" to="(190,790)"/> <wire from="(960,1620)" to="(990,1620)"/> <wire from="(210,1040)" to="(230,1040)"/> <wire from="(1200,740)" to="(1230,740)"/> <wire from="(130,230)" to="(210,230)"/> <wire from="(990,830)" to="(990,890)"/> <wire from="(1150,690)" to="(1180,690)"/> <wire from="(390,1050)" to="(520,1050)"/> <wire from="(110,300)" to="(180,300)"/> <wire from="(490,1480)" to="(1270,1480)"/> <wire from="(560,450)" to="(560,950)"/> <wire from="(210,770)" to="(210,830)"/> <wire from="(1120,1570)" to="(1120,1590)"/> <wire from="(1160,1370)" to="(1160,1390)"/> <wire from="(810,800)" to="(1120,800)"/> <wire from="(1160,970)" to="(1160,990)"/> <wire from="(270,400)" to="(270,420)"/> <wire from="(270,240)" to="(270,260)"/> <wire from="(30,330)" to="(780,330)"/> <wire from="(230,790)" to="(230,870)"/> <wire from="(1060,780)" to="(1120,780)"/> <wire from="(480,210)" to="(480,240)"/> <wire from="(130,1240)" to="(490,1240)"/> <wire from="(130,420)" to="(130,450)"/> <wire from="(1040,1590)" to="(1120,1590)"/> <wire from="(130,600)" to="(160,600)"/> <wire from="(250,810)" to="(250,910)"/> <wire from="(110,950)" to="(270,950)"/> <wire from="(1130,620)" to="(1130,670)"/> <wire from="(1160,1650)" to="(1170,1650)"/> <wire from="(330,390)" to="(1130,390)"/> <wire from="(920,890)" to="(920,930)"/> <wire from="(230,790)" to="(580,790)"/> <wire from="(550,1400)" to="(1030,1400)"/> <wire from="(310,1430)" to="(330,1430)"/> <wire from="(250,1330)" to="(460,1330)"/> <wire from="(550,1180)" to="(580,1180)"/> <wire from="(1050,730)" to="(1120,730)"/> <wire from="(110,510)" to="(130,510)"/> <wire from="(200,1800)" to="(220,1800)"/> <wire from="(1020,1700)" to="(1180,1700)"/> <wire from="(1210,1360)" to="(1240,1360)"/> <wire from="(1200,790)" to="(1230,790)"/> <wire from="(1210,960)" to="(1240,960)"/> <wire from="(1150,740)" to="(1180,740)"/> <wire from="(1030,1570)" to="(1120,1570)"/> <wire from="(340,150)" to="(340,210)"/> <wire from="(270,830)" to="(270,950)"/> <wire from="(1380,1500)" to="(1380,1860)"/> <wire from="(660,1520)" to="(800,1520)"/> <wire from="(290,1180)" to="(350,1180)"/> <wire from="(810,440)" to="(1180,440)"/> <wire from="(1180,1680)" to="(1180,1700)"/> <wire from="(290,850)" to="(290,990)"/> <wire from="(240,1800)" to="(930,1800)"/> <wire from="(270,450)" to="(270,470)"/> <wire from="(310,1450)" to="(310,1470)"/> <wire from="(330,1150)" to="(330,1170)"/> <wire from="(30,60)" to="(780,60)"/> <wire from="(130,480)" to="(170,480)"/> <wire from="(130,560)" to="(170,560)"/> <wire from="(230,420)" to="(270,420)"/> <wire from="(810,1190)" to="(1050,1190)"/> <wire from="(1040,680)" to="(1120,680)"/> <wire from="(240,360)" to="(270,360)"/> <wire from="(1130,670)" to="(1130,720)"/> <wire from="(1240,960)" to="(1320,960)"/> <wire from="(560,450)" to="(580,450)"/> <wire from="(230,1080)" to="(250,1080)"/> <wire from="(270,400)" to="(290,400)"/> <wire from="(340,150)" to="(360,150)"/> <wire from="(440,1450)" to="(460,1450)"/> <wire from="(480,210)" to="(500,210)"/> <wire from="(900,1340)" to="(930,1340)"/> <wire from="(110,560)" to="(130,560)"/> <wire from="(140,1790)" to="(160,1790)"/> <wire from="(1200,440)" to="(1230,440)"/> <wire from="(1200,840)" to="(1230,840)"/> <wire from="(1240,1360)" to="(1270,1360)"/> <wire from="(130,250)" to="(210,250)"/> <wire from="(110,790)" to="(190,790)"/> <wire from="(170,1490)" to="(250,1490)"/> <wire from="(1150,790)" to="(1180,790)"/> <wire from="(920,890)" to="(990,890)"/> <wire from="(1080,1350)" to="(1170,1350)"/> <wire from="(910,1690)" to="(920,1690)"/> <wire from="(490,1240)" to="(490,1480)"/> <wire from="(910,1670)" to="(990,1670)"/> <wire from="(1020,1560)" to="(1130,1560)"/> <wire from="(810,490)" to="(1180,490)"/> <wire from="(40,1120)" to="(40,1570)"/> <wire from="(1020,580)" to="(1020,1040)"/> <wire from="(880,1540)" to="(1130,1540)"/> <wire from="(880,1540)" to="(880,1610)"/> <wire from="(1130,1050)" to="(1170,1050)"/> <wire from="(560,950)" to="(940,950)"/> <wire from="(210,770)" to="(580,770)"/> <wire from="(30,60)" to="(30,330)"/> <wire from="(140,1810)" to="(140,1830)"/> <wire from="(980,1700)" to="(1020,1700)"/> <wire from="(210,1410)" to="(250,1410)"/> <wire from="(130,200)" to="(130,230)"/> <wire from="(1040,680)" to="(1040,1140)"/> <wire from="(1060,780)" to="(1060,1240)"/> <wire from="(740,1530)" to="(740,1550)"/> <wire from="(180,350)" to="(210,350)"/> <wire from="(1160,1410)" to="(1240,1410)"/> <wire from="(1160,1010)" to="(1240,1010)"/> <wire from="(970,830)" to="(990,830)"/> <wire from="(960,1700)" to="(980,1700)"/> <wire from="(1130,720)" to="(1130,770)"/> <wire from="(1160,1670)" to="(1170,1670)"/> <wire from="(1160,1430)" to="(1170,1430)"/> <wire from="(400,250)" to="(430,250)"/> <wire from="(400,170)" to="(430,170)"/> <wire from="(1160,1030)" to="(1170,1030)"/> <wire from="(310,1450)" to="(330,1450)"/> <wire from="(310,1290)" to="(330,1290)"/> <wire from="(1030,630)" to="(1120,630)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(460,160)" to="(480,160)"/> <wire from="(900,830)" to="(930,830)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(130,1190)" to="(150,1190)"/> <wire from="(760,1550)" to="(760,1610)"/> <wire from="(1200,490)" to="(1230,490)"/> <wire from="(1270,1360)" to="(1300,1360)"/> <wire from="(910,1650)" to="(980,1650)"/> <wire from="(1080,940)" to="(1080,1040)"/> <wire from="(340,110)" to="(420,110)"/> <wire from="(130,450)" to="(270,450)"/> <wire from="(110,910)" to="(250,910)"/> <wire from="(990,1620)" to="(990,1670)"/> <wire from="(520,1450)" to="(1170,1450)"/> <wire from="(810,540)" to="(1180,540)"/> <wire from="(330,480)" to="(580,480)"/> <wire from="(470,1120)" to="(470,1570)"/> <wire from="(780,60)" to="(780,330)"/> <wire from="(510,1500)" to="(1380,1500)"/> <wire from="(40,1120)" to="(470,1120)"/> <wire from="(1020,580)" to="(1120,580)"/> <wire from="(810,1140)" to="(1040,1140)"/> <wire from="(230,1150)" to="(330,1150)"/> <wire from="(910,1670)" to="(910,1690)"/> <wire from="(230,1150)" to="(230,1180)"/> <wire from="(290,850)" to="(580,850)"/> <wire from="(130,650)" to="(130,680)"/> <wire from="(130,1210)" to="(130,1240)"/> <wire from="(110,1770)" to="(140,1770)"/> <wire from="(1240,1360)" to="(1240,1410)"/> <wire from="(1240,960)" to="(1240,1010)"/> <wire from="(660,1610)" to="(680,1610)"/> <wire from="(1160,1390)" to="(1230,1390)"/> <wire from="(230,1180)" to="(250,1180)"/> <wire from="(270,260)" to="(290,260)"/> <wire from="(320,150)" to="(340,150)"/> <wire from="(1160,990)" to="(1230,990)"/> <wire from="(340,250)" to="(360,250)"/> <wire from="(550,1010)" to="(580,1010)"/> <wire from="(40,1610)" to="(510,1610)"/> <wire from="(110,420)" to="(130,420)"/> <wire from="(310,1390)" to="(310,1430)"/> <wire from="(250,240)" to="(270,240)"/> <wire from="(140,1810)" to="(160,1810)"/> <wire from="(180,300)" to="(180,350)"/> <wire from="(1200,540)" to="(1230,540)"/> <wire from="(130,510)" to="(210,510)"/> <wire from="(1230,1440)" to="(1320,1440)"/> <wire from="(910,1630)" to="(920,1630)"/> <wire from="(190,750)" to="(580,750)"/> <wire from="(40,1610)" to="(40,1860)"/> <wire from="(1210,1040)" to="(1230,1040)"/> <wire from="(460,1330)" to="(460,1450)"/> <wire from="(1210,1440)" to="(1230,1440)"/> <wire from="(810,1360)" to="(930,1360)"/> <wire from="(1160,1410)" to="(1160,1430)"/> <wire from="(810,600)" to="(1120,600)"/> <wire from="(110,750)" to="(170,750)"/> <wire from="(1160,1010)" to="(1160,1030)"/> <wire from="(200,610)" to="(580,610)"/> <wire from="(1030,1600)" to="(1130,1600)"/> <wire from="(270,280)" to="(270,300)"/> <wire from="(270,360)" to="(270,380)"/> <wire from="(330,1060)" to="(330,1080)"/> <wire from="(40,1570)" to="(470,1570)"/> <wire from="(230,1390)" to="(230,1470)"/> <wire from="(1130,770)" to="(1130,840)"/> <wire from="(230,1360)" to="(230,1390)"/> <wire from="(250,1300)" to="(250,1330)"/> <wire from="(950,1800)" to="(1190,1800)"/> <wire from="(860,1540)" to="(880,1540)"/> <wire from="(370,1440)" to="(400,1440)"/> <wire from="(1160,1370)" to="(1170,1370)"/> <wire from="(1160,970)" to="(1170,970)"/> <wire from="(230,1470)" to="(250,1470)"/> <wire from="(270,470)" to="(290,470)"/> <wire from="(230,1390)" to="(250,1390)"/> <wire from="(330,1170)" to="(350,1170)"/> <wire from="(380,1460)" to="(400,1460)"/> <wire from="(230,1040)" to="(230,1080)"/> <wire from="(110,230)" to="(130,230)"/> <wire from="(340,110)" to="(340,150)"/> <wire from="(110,1190)" to="(130,1190)"/> <wire from="(130,1210)" to="(150,1210)"/> <wire from="(420,110)" to="(420,150)"/> <wire from="(170,1410)" to="(190,1410)"/> <wire from="(190,1270)" to="(210,1270)"/> <wire from="(420,230)" to="(430,230)"/> <wire from="(420,150)" to="(430,150)"/> <wire from="(1200,590)" to="(1230,590)"/> <wire from="(340,210)" to="(420,210)"/> <wire from="(660,1550)" to="(660,1610)"/> <wire from="(1030,1360)" to="(1030,1400)"/> <wire from="(130,250)" to="(130,370)"/> <wire from="(130,650)" to="(580,650)"/> <wire from="(1150,950)" to="(1170,950)"/> <wire from="(810,850)" to="(930,850)"/> <wire from="(810,650)" to="(1120,650)"/> <wire from="(190,1200)" to="(250,1200)"/> <wire from="(110,870)" to="(230,870)"/> <wire from="(520,1050)" to="(580,1050)"/> <wire from="(1030,1570)" to="(1030,1600)"/> <wire from="(270,830)" to="(580,830)"/> <wire from="(160,110)" to="(340,110)"/> <wire from="(270,490)" to="(270,510)"/> <wire from="(760,1550)" to="(800,1550)"/> <wire from="(660,1520)" to="(660,1550)"/> <wire from="(550,1180)" to="(550,1400)"/> <wire from="(190,1290)" to="(190,1310)"/> <wire from="(130,1100)" to="(130,1190)"/> <wire from="(130,680)" to="(170,680)"/> <wire from="(1040,1580)" to="(1040,1590)"/> <wire from="(290,1080)" to="(330,1080)"/> <wire from="(970,940)" to="(1080,940)"/> <wire from="(920,930)" to="(940,930)"/> <wire from="(110,110)" to="(140,110)"/> <wire from="(170,730)" to="(580,730)"/> <wire from="(240,1280)" to="(270,1280)"/> <wire from="(660,1550)" to="(680,1550)"/> <wire from="(250,1300)" to="(270,1300)"/> <wire from="(810,1090)" to="(1030,1090)"/> <wire from="(270,280)" to="(290,280)"/> <wire from="(330,1060)" to="(350,1060)"/> <wire from="(1190,1680)" to="(1190,1800)"/> <wire from="(1270,1360)" to="(1270,1480)"/> <wire from="(110,1670)" to="(380,1670)"/> <wire from="(1200,640)" to="(1230,640)"/> <wire from="(130,370)" to="(210,370)"/> <wire from="(110,1310)" to="(190,1310)"/> <wire from="(1150,590)" to="(1180,590)"/> <wire from="(130,1830)" to="(140,1830)"/> <wire from="(380,1670)" to="(780,1670)"/> <wire from="(650,1550)" to="(660,1550)"/> <wire from="(1030,1360)" to="(1050,1360)"/> <wire from="(1030,630)" to="(1030,1090)"/> <wire from="(40,1860)" to="(1380,1860)"/> <wire from="(810,700)" to="(1120,700)"/> <wire from="(110,170)" to="(360,170)"/> <wire from="(130,1100)" to="(250,1100)"/> <wire from="(230,1040)" to="(350,1040)"/> <wire from="(110,990)" to="(290,990)"/> <wire from="(110,620)" to="(160,620)"/> <wire from="(420,210)" to="(420,230)"/> <wire from="(380,1460)" to="(380,1670)"/> <wire from="(140,1770)" to="(140,1790)"/> <wire from="(520,1050)" to="(520,1450)"/> <wire from="(230,510)" to="(270,510)"/> <wire from="(130,480)" to="(130,510)"/> <wire from="(1050,730)" to="(1050,1190)"/> <wire from="(1130,840)" to="(1180,840)"/> <wire from="(780,1560)" to="(800,1560)"/> <wire from="(330,1190)" to="(330,1290)"/> <wire from="(780,1560)" to="(780,1670)"/> <wire from="(180,300)" to="(270,300)"/> <wire from="(540,200)" to="(560,200)"/> <wire from="(270,490)" to="(290,490)"/> <wire from="(110,710)" to="(580,710)"/> <wire from="(290,1470)" to="(310,1470)"/> <wire from="(330,1190)" to="(350,1190)"/> <wire from="(290,1390)" to="(310,1390)"/> <wire from="(130,560)" to="(130,600)"/> <wire from="(1040,1580)" to="(1110,1580)"/> <wire from="(110,650)" to="(130,650)"/> <wire from="(340,210)" to="(340,250)"/> <wire from="(210,1150)" to="(230,1150)"/> <wire from="(190,1290)" to="(210,1290)"/> <wire from="(1200,690)" to="(1230,690)"/> <wire from="(1230,1040)" to="(1260,1040)"/> <wire from="(130,420)" to="(210,420)"/> <wire from="(250,810)" to="(580,810)"/> <wire from="(560,200)" to="(560,450)"/> <wire from="(1150,640)" to="(1180,640)"/> <wire from="(130,200)" to="(140,200)"/> <wire from="(1080,1040)" to="(1170,1040)"/> <wire from="(1130,1560)" to="(1130,1600)"/> <wire from="(1130,1050)" to="(1130,1540)"/> <wire from="(980,1650)" to="(980,1700)"/> <wire from="(970,1340)" to="(1050,1340)"/> <comp lib="6" loc="(226,245)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="0" loc="(1230,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(284,1295)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(170,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(170,1490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(1186,1631)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="6" loc="(304,273)" name="Text"> <a name="text" val="21"/> </comp> <comp lib="1" loc="(460,160)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="24"/> </comp> <comp lib="1" loc="(960,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(330,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OFETCH"/> </comp> <comp lib="1" loc="(1210,1440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1150,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(960,1620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(650,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(1185,1005)" name="Text"> <a name="text" val="1"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(1150,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="0" loc="(110,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> </comp> <comp lib="6" loc="(175,614)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(669,1625)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(110,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(219,410)" name="Text"> <a name="text" val="17"/> </comp> <comp loc="(720,1620)" name="D-latch"/> <comp lib="6" loc="(411,1454)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="6" loc="(671,1565)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(1210,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1230,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(200,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(110,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp loc="(400,260)" name="D-latch"/> <comp lib="0" loc="(1230,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(192,1559)" name="Text"> <a name="text" val="OAM CNT2 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(421,1172)" name="Text"> <a name="text" val="OSTEP"/> </comp> <comp lib="1" loc="(1200,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(348,165)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(1200,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(290,1400)" name="D-latch"/> <comp lib="1" loc="(230,510)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(349,384)" name="Text"> <a name="text" val="OAP"/> </comp> <comp lib="2" loc="(1150,590)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> </comp> <comp lib="6" loc="(162,1204)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="1" loc="(1200,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(364,1054)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="1" loc="(460,240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="0" loc="(110,1770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="0" loc="(1230,690)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(540,200)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(210,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1320,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR_OV"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(210,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(950,886)" name="Text"> <a name="text" val="OMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(110,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(240,360)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(250,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1320,1440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAMCTR2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(970,1350)" name="D-latch"/> <comp lib="6" loc="(916,844)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(110,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(1160,1670)" name="Constant"/> <comp lib="0" loc="(550,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(365,1186)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(1200,590)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(140,110)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(110,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(970,940)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="27"/> </comp> <comp lib="0" loc="(900,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(190,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(170,680)" name="Tunnel"> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(210,1410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="6" loc="(350,264)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="1" loc="(950,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W3"/> </comp> <comp lib="6" loc="(172,1806)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="0" loc="(1230,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1230,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(720,1560)" name="D-latch"/> <comp lib="6" loc="(1314,936)" name="Text"> <a name="text" val="more than 8 sprites"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(627,94)" name="Text"> <a name="text" val="OAM CNT1 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(290,1090)" name="D-latch"/> <comp lib="1" loc="(1210,1040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(1348,1422)" name="Text"> <a name="text" val="CNT_OAM2_OVERFLOW"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(270,1793)" name="Text"> <a name="text" val="/R2'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(970,840)" name="D-latch"/> <comp lib="1" loc="(1200,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1280)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp lib="1" loc="(1210,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="6" loc="(948,1590)" name="Text"> <a name="text" val="Sprite overflow flag"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(240,1193)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(110,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(1200,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1200,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(189,103)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(1230,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,1410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(320,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(330,390)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(230,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(229,1792)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="0" loc="(1230,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1200,1660)" name="Multiplexer"/> <comp lib="6" loc="(730,1762)" name="Text"> <a name="text" val="SPRITE OVERFLOW FLAG"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(810,990)" name="OAM2_COUNTER"/> <comp loc="(810,420)" name="OAM_COUNTER"/> <comp lib="6" loc="(241,1486)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(130,1830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(330,270)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1319,1058)" name="Text"> <a name="text" val="sprites less than 8 pieces"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(290,1480)" name="D-latch"/> <comp lib="1" loc="(440,1450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,480)" name="Tunnel"> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(110,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0'"/> </comp> <comp lib="1" loc="(240,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1150,790)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(223,1285)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(832,1353)" name="Text"> <a name="text" val="TMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(110,1710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(199,1400)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(240,1094)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(140,200)" name="Tunnel"> <a name="label" val="I/OAM2"/> </comp> <comp lib="1" loc="(190,1200)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(420,1044)" name="Text"> <a name="text" val="ORES"/> </comp> <comp lib="6" loc="(242,1405)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(1230,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/OAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(919,1353)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(170,560)" name="Tunnel"> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(830,841)" name="Text"> <a name="text" val="OMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1150,690)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(565,190)" name="Text"> <a name="text" val="OMSTEP"/> </comp> <comp lib="0" loc="(110,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="6" loc="(938,1665)" name="Text"> <a name="text" val="3"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(1160,1650)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(1150,740)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(238,605)" name="Text"> <a name="text" val="W3'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(860,1540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(1200,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1320,1660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(343,1445)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(821,1544)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(110,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp loc="(290,1190)" name="D-latch"/> <comp lib="6" loc="(1019,1333)" name="Text"> <a name="text" val="TMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(390,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1080,1350)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(1200,540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(900,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(110,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(400,160)" name="D-latch"/> <comp lib="6" loc="(1189,1404)" name="Text"> <a name="text" val="2"/> <a name="font" val="SansSerif bold 14"/> </comp> </circuit> <circuit name="OAM_CONTROL_PAL"> <a name="circuit" val="OAM_CONTROL_PAL"/> <a name="clabel" val="OAM CONTROL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,52 Q65,62 69,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8924" height="441" stroke="#000000" stroke-width="2" width="380" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="235">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="409" y="84">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="254">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="294">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="392" y="384">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="434">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="334">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="396" y="405">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="354">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="394">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="157">CPU DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="124">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="474">OMFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="274">OAM8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="274">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="314">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="414">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="454">ZOMG_PAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="404" y="114">OAM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="214">/W3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="195">7</text> <polyline fill="none" points="50,66 56,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,74 56,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,73" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="254">OAM7</text> <circ-port height="8" pin="110,80" width="8" x="46" y="66"/> <circ-port height="8" pin="110,150" width="8" x="46" y="406"/> <circ-port height="8" pin="110,190" width="8" x="46" y="446"/> <circ-port height="8" pin="110,440" width="8" x="46" y="366"/> <circ-port height="8" pin="110,390" width="8" x="46" y="346"/> <circ-port height="8" pin="110,320" width="8" x="46" y="286"/> <circ-port height="8" pin="110,250" width="8" x="46" y="326"/> <circ-port height="8" pin="110,550" width="8" x="46" y="466"/> <circ-port height="8" pin="110,590" width="8" x="46" y="96"/> <circ-port height="8" pin="110,640" width="8" x="46" y="206"/> <circ-port height="8" pin="110,690" width="8" x="46" y="426"/> <circ-port height="8" pin="110,750" width="8" x="46" y="116"/> <circ-port height="8" pin="110,790" width="8" x="46" y="126"/> <circ-port height="8" pin="110,830" width="8" x="46" y="136"/> <circ-port height="8" pin="110,870" width="8" x="46" y="146"/> <circ-port height="8" pin="110,910" width="8" x="46" y="156"/> <circ-port height="8" pin="110,950" width="8" x="46" y="166"/> <circ-port height="8" pin="110,990" width="8" x="46" y="176"/> <circ-port height="8" pin="110,1030" width="8" x="46" y="186"/> <circ-port height="8" pin="110,1120" width="8" x="46" y="386"/> <circ-port height="8" pin="110,1340" width="8" x="46" y="306"/> <circ-port height="8" pin="110,1660" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1710" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1770" width="8" x="46" y="226"/> <circ-port height="10" pin="1250,480" width="10" x="425" y="105"/> <circ-port height="10" pin="1250,530" width="10" x="425" y="125"/> <circ-port height="10" pin="1250,580" width="10" x="425" y="145"/> <circ-port height="10" pin="1250,630" width="10" x="425" y="165"/> <circ-port height="10" pin="1250,680" width="10" x="425" y="185"/> <circ-port height="10" pin="1250,730" width="10" x="425" y="205"/> <circ-port height="10" pin="1250,780" width="10" x="425" y="225"/> <circ-port height="10" pin="1250,830" width="10" x="425" y="245"/> <circ-port height="10" pin="1250,880" width="10" x="425" y="265"/> <circ-port height="10" pin="1340,1030" width="10" x="425" y="395"/> <circ-port height="10" pin="1340,1460" width="10" x="425" y="375"/> <circ-port height="10" pin="1340,1660" width="10" x="425" y="75"/> <circ-anchor facing="east" height="6" width="6" x="427" y="47"/> </appear> <wire from="(720,20)" to="(1410,20)"/> <wire from="(1140,240)" to="(1310,240)"/> <wire from="(190,1220)" to="(250,1220)"/> <wire from="(260,260)" to="(260,280)"/> <wire from="(560,490)" to="(600,490)"/> <wire from="(840,200)" to="(840,230)"/> <wire from="(500,1490)" to="(500,1570)"/> <wire from="(1070,1370)" to="(1190,1370)"/> <wire from="(420,100)" to="(420,130)"/> <wire from="(130,1120)" to="(130,1210)"/> <wire from="(1250,1410)" to="(1250,1460)"/> <wire from="(830,1260)" to="(850,1260)"/> <wire from="(1080,1580)" to="(1160,1580)"/> <wire from="(550,180)" to="(570,180)"/> <wire from="(830,110)" to="(980,110)"/> <wire from="(1070,770)" to="(1070,1210)"/> <wire from="(330,1080)" to="(350,1080)"/> <wire from="(340,130)" to="(360,130)"/> <wire from="(1110,1140)" to="(1180,1140)"/> <wire from="(310,1430)" to="(310,1470)"/> <wire from="(890,190)" to="(920,190)"/> <wire from="(1270,1430)" to="(1270,1490)"/> <wire from="(1170,630)" to="(1200,630)"/> <wire from="(1220,680)" to="(1250,680)"/> <wire from="(830,60)" to="(900,60)"/> <wire from="(480,1500)" to="(480,1690)"/> <wire from="(930,1690)" to="(940,1690)"/> <wire from="(1200,190)" to="(1220,190)"/> <wire from="(1270,1380)" to="(1290,1380)"/> <wire from="(590,1030)" to="(600,1030)"/> <wire from="(990,1360)" to="(1040,1360)"/> <wire from="(110,790)" to="(170,790)"/> <wire from="(900,1540)" to="(900,1610)"/> <wire from="(110,640)" to="(160,640)"/> <wire from="(420,230)" to="(420,250)"/> <wire from="(1110,980)" to="(1110,1110)"/> <wire from="(760,1530)" to="(760,1550)"/> <wire from="(1150,410)" to="(1150,610)"/> <wire from="(490,140)" to="(490,170)"/> <wire from="(870,1060)" to="(1040,1060)"/> <wire from="(320,380)" to="(360,380)"/> <wire from="(1150,880)" to="(1200,880)"/> <wire from="(1250,1060)" to="(1250,1110)"/> <wire from="(1010,1620)" to="(1010,1670)"/> <wire from="(980,1700)" to="(1000,1700)"/> <wire from="(400,150)" to="(430,150)"/> <wire from="(1240,1650)" to="(1250,1650)"/> <wire from="(740,340)" to="(760,340)"/> <wire from="(270,510)" to="(290,510)"/> <wire from="(230,1430)" to="(250,1430)"/> <wire from="(330,1210)" to="(350,1210)"/> <wire from="(110,320)" to="(260,320)"/> <wire from="(780,1550)" to="(780,1610)"/> <wire from="(130,220)" to="(140,220)"/> <wire from="(330,520)" to="(600,520)"/> <wire from="(870,740)" to="(1140,740)"/> <wire from="(110,1710)" to="(940,1710)"/> <wire from="(200,630)" to="(520,630)"/> <wire from="(1180,1120)" to="(1180,1140)"/> <wire from="(1260,1680)" to="(1260,1700)"/> <wire from="(1160,1580)" to="(1160,1610)"/> <wire from="(290,890)" to="(600,890)"/> <wire from="(270,530)" to="(270,550)"/> <wire from="(960,190)" to="(1000,190)"/> <wire from="(160,100)" to="(160,120)"/> <wire from="(930,1670)" to="(930,1690)"/> <wire from="(1100,1600)" to="(1150,1600)"/> <wire from="(1150,610)" to="(1150,660)"/> <wire from="(190,790)" to="(600,790)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(310,1320)" to="(330,1320)"/> <wire from="(110,1120)" to="(130,1120)"/> <wire from="(140,1790)" to="(160,1790)"/> <wire from="(210,1060)" to="(230,1060)"/> <wire from="(1170,730)" to="(1200,730)"/> <wire from="(1220,780)" to="(1250,780)"/> <wire from="(930,1630)" to="(940,1630)"/> <wire from="(520,390)" to="(520,630)"/> <wire from="(110,1030)" to="(290,1030)"/> <wire from="(560,1200)" to="(600,1200)"/> <wire from="(560,1200)" to="(560,1420)"/> <wire from="(160,70)" to="(160,90)"/> <wire from="(140,1810)" to="(140,1830)"/> <wire from="(230,550)" to="(270,550)"/> <wire from="(130,520)" to="(130,550)"/> <wire from="(130,620)" to="(160,620)"/> <wire from="(830,530)" to="(850,530)"/> <wire from="(830,690)" to="(850,690)"/> <wire from="(880,1540)" to="(900,1540)"/> <wire from="(1260,1030)" to="(1340,1030)"/> <wire from="(260,280)" to="(280,280)"/> <wire from="(290,1430)" to="(310,1430)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(500,1490)" to="(1270,1490)"/> <wire from="(680,1550)" to="(680,1610)"/> <wire from="(870,840)" to="(1140,840)"/> <wire from="(1250,1110)" to="(1270,1110)"/> <wire from="(290,1200)" to="(350,1200)"/> <wire from="(170,1400)" to="(230,1400)"/> <wire from="(130,250)" to="(180,250)"/> <wire from="(540,650)" to="(600,650)"/> <wire from="(160,120)" to="(210,120)"/> <wire from="(260,300)" to="(260,320)"/> <wire from="(330,1170)" to="(330,1190)"/> <wire from="(40,1680)" to="(470,1680)"/> <wire from="(780,1550)" to="(820,1550)"/> <wire from="(680,1520)" to="(680,1550)"/> <wire from="(530,1070)" to="(530,1470)"/> <wire from="(320,290)" to="(360,290)"/> <wire from="(980,170)" to="(1000,170)"/> <wire from="(1180,1080)" to="(1260,1080)"/> <wire from="(1150,710)" to="(1150,760)"/> <wire from="(1180,1410)" to="(1250,1410)"/> <wire from="(1040,620)" to="(1040,1060)"/> <wire from="(1080,820)" to="(1080,1260)"/> <wire from="(370,1480)" to="(390,1480)"/> <wire from="(470,140)" to="(490,140)"/> <wire from="(190,1300)" to="(210,1300)"/> <wire from="(1170,830)" to="(1200,830)"/> <wire from="(1220,880)" to="(1250,880)"/> <wire from="(1250,1460)" to="(1340,1460)"/> <wire from="(1020,1380)" to="(1020,1420)"/> <wire from="(840,200)" to="(850,200)"/> <wire from="(560,490)" to="(560,990)"/> <wire from="(1140,170)" to="(1160,170)"/> <wire from="(110,1660)" to="(370,1660)"/> <wire from="(20,20)" to="(20,340)"/> <wire from="(1110,1140)" to="(1110,1540)"/> <wire from="(990,980)" to="(1110,980)"/> <wire from="(370,1660)" to="(800,1660)"/> <wire from="(190,1320)" to="(190,1340)"/> <wire from="(800,1560)" to="(820,1560)"/> <wire from="(900,1540)" to="(1110,1540)"/> <wire from="(830,790)" to="(850,790)"/> <wire from="(830,1110)" to="(850,1110)"/> <wire from="(110,990)" to="(270,990)"/> <wire from="(1140,190)" to="(1140,240)"/> <wire from="(530,1470)" to="(1190,1470)"/> <wire from="(260,370)" to="(290,370)"/> <wire from="(240,1310)" to="(270,1310)"/> <wire from="(250,850)" to="(600,850)"/> <wire from="(740,220)" to="(760,220)"/> <wire from="(250,1330)" to="(270,1330)"/> <wire from="(1180,1060)" to="(1250,1060)"/> <wire from="(1090,1610)" to="(1160,1610)"/> <wire from="(920,870)" to="(950,870)"/> <wire from="(110,390)" to="(130,390)"/> <wire from="(110,550)" to="(130,550)"/> <wire from="(130,1210)" to="(150,1210)"/> <wire from="(1220,530)" to="(1250,530)"/> <wire from="(870,530)" to="(1200,530)"/> <wire from="(1000,1650)" to="(1000,1700)"/> <wire from="(520,390)" to="(700,390)"/> <wire from="(40,1140)" to="(470,1140)"/> <wire from="(740,1610)" to="(780,1610)"/> <wire from="(800,230)" to="(840,230)"/> <wire from="(740,240)" to="(740,270)"/> <wire from="(900,1610)" to="(940,1610)"/> <wire from="(230,1170)" to="(330,1170)"/> <wire from="(130,520)" to="(170,520)"/> <wire from="(230,1170)" to="(230,1200)"/> <wire from="(130,590)" to="(130,620)"/> <wire from="(130,1230)" to="(130,1260)"/> <wire from="(1110,1110)" to="(1190,1110)"/> <wire from="(130,440)" to="(220,440)"/> <wire from="(1180,1120)" to="(1190,1120)"/> <wire from="(340,270)" to="(360,270)"/> <wire from="(130,1830)" to="(140,1830)"/> <wire from="(1220,190)" to="(1240,190)"/> <wire from="(390,1200)" to="(560,1200)"/> <wire from="(330,1080)" to="(330,1100)"/> <wire from="(1070,1700)" to="(1260,1700)"/> <wire from="(1090,1590)" to="(1150,1590)"/> <wire from="(1150,810)" to="(1150,880)"/> <wire from="(220,260)" to="(260,260)"/> <wire from="(470,1140)" to="(470,1680)"/> <wire from="(830,1210)" to="(850,1210)"/> <wire from="(1270,1380)" to="(1270,1430)"/> <wire from="(460,260)" to="(550,260)"/> <wire from="(370,1500)" to="(370,1660)"/> <wire from="(740,320)" to="(760,320)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(330,1190)" to="(350,1190)"/> <wire from="(310,1490)" to="(330,1490)"/> <wire from="(500,1570)" to="(700,1570)"/> <wire from="(1220,630)" to="(1250,630)"/> <wire from="(390,1070)" to="(530,1070)"/> <wire from="(110,950)" to="(250,950)"/> <wire from="(130,490)" to="(270,490)"/> <wire from="(720,20)" to="(720,390)"/> <wire from="(130,270)" to="(130,390)"/> <wire from="(680,1520)" to="(820,1520)"/> <wire from="(830,890)" to="(950,890)"/> <wire from="(1430,1500)" to="(1430,1850)"/> <wire from="(130,1260)" to="(500,1260)"/> <wire from="(740,340)" to="(740,370)"/> <wire from="(340,100)" to="(340,130)"/> <wire from="(290,1100)" to="(330,1100)"/> <wire from="(130,690)" to="(130,720)"/> <wire from="(1170,1570)" to="(1170,1620)"/> <wire from="(340,130)" to="(340,230)"/> <wire from="(940,970)" to="(960,970)"/> <wire from="(740,180)" to="(740,220)"/> <wire from="(870,1260)" to="(1080,1260)"/> <wire from="(1300,220)" to="(1310,220)"/> <wire from="(1050,670)" to="(1050,1110)"/> <wire from="(130,550)" to="(210,550)"/> <wire from="(1180,1430)" to="(1270,1430)"/> <wire from="(560,990)" to="(960,990)"/> <wire from="(210,810)" to="(600,810)"/> <wire from="(1120,190)" to="(1140,190)"/> <wire from="(930,1670)" to="(1010,1670)"/> <wire from="(870,690)" to="(1140,690)"/> <wire from="(720,390)" to="(1410,390)"/> <wire from="(450,1360)" to="(450,1490)"/> <wire from="(1180,1390)" to="(1180,1410)"/> <wire from="(130,1120)" to="(250,1120)"/> <wire from="(230,1060)" to="(350,1060)"/> <wire from="(230,1430)" to="(230,1510)"/> <wire from="(230,1400)" to="(230,1430)"/> <wire from="(340,70)" to="(340,100)"/> <wire from="(1370,230)" to="(1370,430)"/> <wire from="(230,1510)" to="(250,1510)"/> <wire from="(330,1210)" to="(330,1320)"/> <wire from="(490,170)" to="(510,170)"/> <wire from="(110,590)" to="(130,590)"/> <wire from="(900,60)" to="(1060,60)"/> <wire from="(340,230)" to="(340,270)"/> <wire from="(200,1800)" to="(220,1800)"/> <wire from="(210,1170)" to="(230,1170)"/> <wire from="(170,1450)" to="(190,1450)"/> <wire from="(1060,60)" to="(1220,60)"/> <wire from="(1220,730)" to="(1250,730)"/> <wire from="(1170,680)" to="(1200,680)"/> <wire from="(110,190)" to="(510,190)"/> <wire from="(930,1650)" to="(1000,1650)"/> <wire from="(1080,1620)" to="(1170,1620)"/> <wire from="(1350,230)" to="(1370,230)"/> <wire from="(480,1500)" to="(1430,1500)"/> <wire from="(1090,1590)" to="(1090,1610)"/> <wire from="(1180,1040)" to="(1180,1060)"/> <wire from="(110,910)" to="(230,910)"/> <wire from="(1070,1570)" to="(1170,1570)"/> <wire from="(160,70)" to="(340,70)"/> <wire from="(40,1850)" to="(1430,1850)"/> <wire from="(360,380)" to="(360,400)"/> <wire from="(1040,190)" to="(1080,190)"/> <wire from="(260,440)" to="(360,440)"/> <wire from="(830,480)" to="(850,480)"/> <wire from="(830,640)" to="(850,640)"/> <wire from="(560,320)" to="(560,490)"/> <wire from="(680,1610)" to="(700,1610)"/> <wire from="(920,1360)" to="(950,1360)"/> <wire from="(980,110)" to="(1140,110)"/> <wire from="(1230,1030)" to="(1260,1030)"/> <wire from="(1010,870)" to="(1010,930)"/> <wire from="(870,1210)" to="(1070,1210)"/> <wire from="(1080,1580)" to="(1080,1620)"/> <wire from="(870,790)" to="(1140,790)"/> <wire from="(240,1800)" to="(1130,1800)"/> <wire from="(680,20)" to="(680,340)"/> <wire from="(540,430)" to="(1370,430)"/> <wire from="(1280,1660)" to="(1340,1660)"/> <wire from="(1080,820)" to="(1140,820)"/> <wire from="(1300,170)" to="(1300,220)"/> <wire from="(40,1690)" to="(40,1850)"/> <wire from="(1150,660)" to="(1150,710)"/> <wire from="(1180,1450)" to="(1190,1450)"/> <wire from="(1240,1670)" to="(1250,1670)"/> <wire from="(940,930)" to="(940,970)"/> <wire from="(130,690)" to="(600,690)"/> <wire from="(270,530)" to="(290,530)"/> <wire from="(290,1510)" to="(310,1510)"/> <wire from="(1070,770)" to="(1140,770)"/> <wire from="(430,1490)" to="(450,1490)"/> <wire from="(110,690)" to="(130,690)"/> <wire from="(1220,830)" to="(1250,830)"/> <wire from="(1170,780)" to="(1200,780)"/> <wire from="(130,440)" to="(130,490)"/> <wire from="(270,870)" to="(600,870)"/> <wire from="(740,270)" to="(820,270)"/> <wire from="(250,1360)" to="(450,1360)"/> <wire from="(170,770)" to="(600,770)"/> <wire from="(1070,1570)" to="(1070,1700)"/> <wire from="(540,430)" to="(540,650)"/> <wire from="(170,770)" to="(170,790)"/> <wire from="(1150,1590)" to="(1150,1600)"/> <wire from="(250,1330)" to="(250,1360)"/> <wire from="(110,870)" to="(210,870)"/> <wire from="(110,1770)" to="(140,1770)"/> <wire from="(830,580)" to="(850,580)"/> <wire from="(830,740)" to="(850,740)"/> <wire from="(1060,720)" to="(1140,720)"/> <wire from="(420,410)" to="(1150,410)"/> <wire from="(900,170)" to="(920,170)"/> <wire from="(830,1060)" to="(850,1060)"/> <wire from="(1180,1100)" to="(1190,1100)"/> <wire from="(680,1550)" to="(700,1550)"/> <wire from="(230,1100)" to="(250,1100)"/> <wire from="(1060,720)" to="(1060,1160)"/> <wire from="(190,790)" to="(190,830)"/> <wire from="(140,1810)" to="(160,1810)"/> <wire from="(1220,480)" to="(1250,480)"/> <wire from="(130,590)" to="(210,590)"/> <wire from="(940,930)" to="(1010,930)"/> <wire from="(870,480)" to="(1200,480)"/> <wire from="(670,1550)" to="(680,1550)"/> <wire from="(1060,170)" to="(1080,170)"/> <wire from="(560,1420)" to="(1020,1420)"/> <wire from="(1220,170)" to="(1240,170)"/> <wire from="(1230,1460)" to="(1250,1460)"/> <wire from="(210,810)" to="(210,870)"/> <wire from="(830,1380)" to="(950,1380)"/> <wire from="(1180,1430)" to="(1180,1450)"/> <wire from="(110,150)" to="(360,150)"/> <wire from="(870,1160)" to="(1060,1160)"/> <wire from="(230,830)" to="(230,910)"/> <wire from="(110,750)" to="(600,750)"/> <wire from="(740,180)" to="(850,180)"/> <wire from="(130,220)" to="(130,250)"/> <wire from="(250,850)" to="(250,950)"/> <wire from="(1260,1030)" to="(1260,1080)"/> <wire from="(900,60)" to="(900,170)"/> <wire from="(990,870)" to="(1010,870)"/> <wire from="(1150,760)" to="(1150,810)"/> <wire from="(1180,1390)" to="(1190,1390)"/> <wire from="(400,270)" to="(430,270)"/> <wire from="(260,300)" to="(280,300)"/> <wire from="(800,1560)" to="(800,1660)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(310,1470)" to="(330,1470)"/> <wire from="(1140,110)" to="(1140,170)"/> <wire from="(820,270)" to="(820,330)"/> <wire from="(980,110)" to="(980,170)"/> <wire from="(130,720)" to="(210,720)"/> <wire from="(110,1340)" to="(190,1340)"/> <wire from="(210,420)" to="(220,420)"/> <wire from="(1050,670)" to="(1140,670)"/> <wire from="(1220,60)" to="(1220,170)"/> <wire from="(1020,1380)" to="(1040,1380)"/> <wire from="(270,870)" to="(270,990)"/> <wire from="(1060,60)" to="(1060,170)"/> <wire from="(1230,1110)" to="(1250,1110)"/> <wire from="(1180,1080)" to="(1180,1100)"/> <wire from="(760,1530)" to="(820,1530)"/> <wire from="(290,890)" to="(290,1030)"/> <wire from="(40,1690)" to="(480,1690)"/> <wire from="(1230,1380)" to="(1270,1380)"/> <wire from="(130,270)" to="(180,270)"/> <wire from="(1040,620)" to="(1140,620)"/> <wire from="(270,490)" to="(270,510)"/> <wire from="(360,420)" to="(360,440)"/> <wire from="(310,1490)" to="(310,1510)"/> <wire from="(930,1630)" to="(930,1650)"/> <wire from="(40,1140)" to="(40,1680)"/> <wire from="(800,330)" to="(820,330)"/> <wire from="(830,840)" to="(850,840)"/> <wire from="(830,1160)" to="(850,1160)"/> <wire from="(1180,1040)" to="(1190,1040)"/> <wire from="(740,1550)" to="(760,1550)"/> <wire from="(1410,20)" to="(1410,390)"/> <wire from="(670,1630)" to="(700,1630)"/> <wire from="(230,1200)" to="(250,1200)"/> <wire from="(370,1500)" to="(390,1500)"/> <wire from="(1270,1680)" to="(1270,1800)"/> <wire from="(570,180)" to="(570,280)"/> <wire from="(110,440)" to="(130,440)"/> <wire from="(980,1620)" to="(1010,1620)"/> <wire from="(190,1320)" to="(210,1320)"/> <wire from="(1220,580)" to="(1250,580)"/> <wire from="(110,830)" to="(190,830)"/> <wire from="(170,1530)" to="(250,1530)"/> <wire from="(340,100)" to="(420,100)"/> <wire from="(260,320)" to="(260,370)"/> <wire from="(870,580)" to="(1200,580)"/> <wire from="(1140,190)" to="(1160,190)"/> <wire from="(1170,1020)" to="(1190,1020)"/> <wire from="(1280,170)" to="(1300,170)"/> <wire from="(870,1110)" to="(1050,1110)"/> <wire from="(230,830)" to="(600,830)"/> <wire from="(700,180)" to="(740,180)"/> <wire from="(740,290)" to="(740,320)"/> <wire from="(140,1770)" to="(140,1790)"/> <wire from="(740,290)" to="(840,290)"/> <wire from="(700,180)" to="(700,390)"/> <wire from="(1150,1800)" to="(1270,1800)"/> <wire from="(210,1450)" to="(250,1450)"/> <wire from="(550,260)" to="(550,280)"/> <wire from="(130,390)" to="(290,390)"/> <wire from="(110,80)" to="(140,80)"/> <wire from="(1220,190)" to="(1220,370)"/> <wire from="(740,240)" to="(760,240)"/> <wire from="(230,1060)" to="(230,1100)"/> <wire from="(740,370)" to="(1220,370)"/> <wire from="(20,20)" to="(680,20)"/> <wire from="(20,340)" to="(680,340)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(130,1230)" to="(150,1230)"/> <wire from="(500,1260)" to="(500,1490)"/> <wire from="(840,230)" to="(840,290)"/> <wire from="(420,250)" to="(430,250)"/> <wire from="(530,1070)" to="(600,1070)"/> <wire from="(1000,1700)" to="(1070,1700)"/> <wire from="(340,230)" to="(420,230)"/> <wire from="(870,640)" to="(1140,640)"/> <comp lib="1" loc="(420,410)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(320,290)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(210,120)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1150,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(413,1194)" name="Text"> <a name="text" val="OSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(310,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1170,830)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(200,630)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(1230,1460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(890,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(800,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(110,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> </comp> <comp lib="1" loc="(1220,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(980,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1220,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1019,282)" name="Text"> <a name="text" val="PAL W3 ENABLER"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(470,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1220,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1220,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(234,625)" name="Text"> <a name="text" val="W3'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1072,184)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(443,145)" name="Text"> <a name="text" val="24"/> </comp> <comp lib="0" loc="(110,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(870,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(140,80)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="1" loc="(870,1110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(290,1440)" name="D-latch"/> <comp lib="6" loc="(284,1325)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(590,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1250,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(290,1210)" name="D-latch"/> <comp lib="6" loc="(242,1445)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(1152,184)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="6" loc="(1011,1355)" name="Text"> <a name="text" val="TMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(162,1224)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="6" loc="(1233,184)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="1" loc="(390,1200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(870,1260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1170,680)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(1280,180)" name="D-latch"/> <comp lib="1" loc="(460,260)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1240,1650)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(172,1806)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="1" loc="(980,1620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(939,151)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZOMG_PAL"/> </comp> <comp lib="0" loc="(920,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1220,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1220,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(210,590)" name="Tunnel"> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(210,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(190,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(870,1060)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp lib="4" loc="(960,170)" name="D Flip-Flop"> <a name="trigger" val="low"/> </comp> <comp lib="0" loc="(1250,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(229,1792)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="1" loc="(870,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1240,1670)" name="Constant"/> <comp lib="0" loc="(130,1830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(880,1540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="6" loc="(240,1114)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(1250,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,1770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="6" loc="(689,1625)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(1340,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAMCTR2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(936,1374)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="6" loc="(524,183)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="6" loc="(196,265)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="1" loc="(200,1800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(190,1220)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(730,1752)" name="Text"> <a name="text" val="SPRITE OVERFLOW FLAG"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(830,460)" name="OAM_COUNTER"/> <comp lib="6" loc="(970,926)" name="Text"> <a name="text" val="OMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(223,1315)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="2" loc="(1170,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(270,1793)" name="Text"> <a name="text" val="/R2'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(850,881)" name="Text"> <a name="text" val="OMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(330,520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(360,70)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(848,1375)" name="Text"> <a name="text" val="TMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(349,145)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="6" loc="(350,284)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="6" loc="(965,1593)" name="Text"> <a name="text" val="Sprite overflow flag"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0'"/> </comp> <comp lib="6" loc="(536,46)" name="Text"> <a name="text" val="OAM CNT1 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(400,280)" name="D-latch"/> <comp lib="1" loc="(430,1490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(199,1472)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(1250,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="1" loc="(870,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp loc="(290,1520)" name="D-latch"/> <comp lib="6" loc="(365,1206)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(320,380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1250,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(670,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp loc="(1040,180)" name="D-latch"/> <comp lib="6" loc="(244,464)" name="Text"> <a name="text" val="!!! D-latch PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(110,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W3"/> </comp> <comp lib="6" loc="(1209,1424)" name="Text"> <a name="text" val="2"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="6" loc="(343,1485)" name="Text"> <a name="text" val="2"/> </comp> <comp loc="(1200,180)" name="D-latch"/> <comp lib="1" loc="(1230,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(990,880)" name="D-latch"/> <comp lib="6" loc="(958,1665)" name="Text"> <a name="text" val="3"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="1" loc="(550,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1110)" name="D-latch"/> <comp loc="(830,1010)" name="OAM2_COUNTER"/> <comp lib="6" loc="(691,1565)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(240,1214)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="2" loc="(1170,780)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(110,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="2" loc="(1170,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1210,1075)" name="Text"> <a name="text" val="1"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="6" loc="(777,284)" name="Text"> <a name="text" val="FF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(294,293)" name="Text"> <a name="text" val="21"/> </comp> <comp lib="2" loc="(1280,1660)" name="Multiplexer"/> <comp lib="0" loc="(1340,1660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1070,1370)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(210,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OMFG"/> </comp> <comp lib="6" loc="(991,183)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(870,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(241,1526)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(841,1544)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(830,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1250,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(870,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(400,140)" name="D-latch"/> <comp lib="0" loc="(110,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(560,320)" name="NAND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1220,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp loc="(1120,180)" name="D-latch"/> <comp lib="6" loc="(364,1074)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(830,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(990,1370)" name="D-latch"/> <comp lib="1" loc="(1350,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(592,330)" name="Text"> <a name="text" val="OMSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(170,1400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1220,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(740,1620)" name="D-latch"/> <comp lib="6" loc="(531,155)" name="Text"> <a name="text" val="!!! NOR PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1220,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(260,430)" name="D-latch"/> <comp lib="0" loc="(140,220)" name="Tunnel"> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(1266,1629)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="1" loc="(1230,1110)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(390,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(210,1060)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1340,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR_OV"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(170,520)" name="Tunnel"> <a name="label" val="OMFG"/> </comp> <comp lib="1" loc="(230,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(920,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1170,1020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(936,884)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(1250,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(670,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(401,1494)" name="Text"> <a name="text" val="3"/> </comp> <comp loc="(740,1560)" name="D-latch"/> <comp lib="0" loc="(110,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> </comp> <comp lib="6" loc="(439,404)" name="Text"> <a name="text" val="OAP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(415,1065)" name="Text"> <a name="text" val="ORES"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(990,980)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="27"/> </comp> <comp lib="0" loc="(110,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OFETCH"/> </comp> <comp lib="0" loc="(110,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(220,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1230,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(870,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,1710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(175,634)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(110,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(800,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(1250,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,1310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(210,720)" name="Tunnel"> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(870,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(204,1597)" name="Text"> <a name="text" val="OAM CNT2 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> </circuit> <circuit name="OAM_COUNTER"> <a name="circuit" val="OAM_COUNTER"/> <a name="clabel" val="OAM COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#eaff00" height="461" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="114">MODE 4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="84">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="284">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="344">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="485">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="415">INPUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="484">COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="74">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="124">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="174">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="233">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="284">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="334">Q5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="384">Q6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="433">Q7</text> <circ-port height="8" pin="130,70" width="8" x="46" y="106"/> <circ-port height="8" pin="130,190" width="8" x="46" y="76"/> <circ-port height="8" pin="130,130" width="8" x="46" y="236"/> <circ-port height="8" pin="130,290" width="8" x="46" y="336"/> <circ-port height="8" pin="130,240" width="8" x="46" y="276"/> <circ-port height="8" pin="130,470" width="8" x="46" y="356"/> <circ-port height="8" pin="130,640" width="8" x="46" y="376"/> <circ-port height="8" pin="130,800" width="8" x="46" y="396"/> <circ-port height="8" pin="130,960" width="8" x="46" y="416"/> <circ-port height="8" pin="130,1120" width="8" x="46" y="436"/> <circ-port height="8" pin="130,1280" width="8" x="46" y="456"/> <circ-port height="8" pin="130,1440" width="8" x="46" y="476"/> <circ-port height="10" pin="870,170" width="10" x="275" y="65"/> <circ-port height="10" pin="870,370" width="10" x="275" y="115"/> <circ-port height="10" pin="870,550" width="10" x="275" y="165"/> <circ-port height="10" pin="870,710" width="10" x="275" y="225"/> <circ-port height="10" pin="870,870" width="10" x="275" y="275"/> <circ-port height="10" pin="870,1030" width="10" x="275" y="325"/> <circ-port height="10" pin="870,1190" width="10" x="275" y="375"/> <circ-port height="10" pin="870,1450" width="10" x="275" y="475"/> <circ-port height="10" pin="870,1350" width="10" x="275" y="425"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(410,520)" to="(410,590)"/> <wire from="(340,450)" to="(340,520)"/> <wire from="(410,1300)" to="(730,1300)"/> <wire from="(220,520)" to="(340,520)"/> <wire from="(550,480)" to="(590,480)"/> <wire from="(130,190)" to="(300,190)"/> <wire from="(650,970)" to="(750,970)"/> <wire from="(210,290)" to="(210,310)"/> <wire from="(700,490)" to="(700,570)"/> <wire from="(610,480)" to="(630,480)"/> <wire from="(390,1030)" to="(870,1030)"/> <wire from="(300,240)" to="(330,240)"/> <wire from="(660,450)" to="(680,450)"/> <wire from="(390,1350)" to="(870,1350)"/> <wire from="(390,1190)" to="(870,1190)"/> <wire from="(390,550)" to="(870,550)"/> <wire from="(390,710)" to="(870,710)"/> <wire from="(390,870)" to="(870,870)"/> <wire from="(370,240)" to="(390,240)"/> <wire from="(410,440)" to="(430,440)"/> <wire from="(390,710)" to="(390,750)"/> <wire from="(390,550)" to="(390,590)"/> <wire from="(390,870)" to="(390,910)"/> <wire from="(390,1030)" to="(390,1070)"/> <wire from="(390,1190)" to="(390,1230)"/> <wire from="(390,1350)" to="(390,1390)"/> <wire from="(170,680)" to="(190,680)"/> <wire from="(170,840)" to="(190,840)"/> <wire from="(170,1000)" to="(190,1000)"/> <wire from="(170,1160)" to="(190,1160)"/> <wire from="(170,1320)" to="(190,1320)"/> <wire from="(170,1480)" to="(190,1480)"/> <wire from="(130,470)" to="(210,470)"/> <wire from="(320,440)" to="(330,440)"/> <wire from="(490,230)" to="(490,410)"/> <wire from="(130,70)" to="(590,70)"/> <wire from="(240,300)" to="(240,480)"/> <wire from="(570,410)" to="(570,460)"/> <wire from="(240,240)" to="(240,300)"/> <wire from="(630,980)" to="(750,980)"/> <wire from="(320,640)" to="(570,640)"/> <wire from="(320,800)" to="(570,800)"/> <wire from="(320,960)" to="(570,960)"/> <wire from="(320,1120)" to="(570,1120)"/> <wire from="(320,1280)" to="(570,1280)"/> <wire from="(320,1440)" to="(570,1440)"/> <wire from="(410,820)" to="(650,820)"/> <wire from="(320,610)" to="(320,640)"/> <wire from="(320,770)" to="(320,800)"/> <wire from="(320,930)" to="(320,960)"/> <wire from="(320,1090)" to="(320,1120)"/> <wire from="(320,1250)" to="(320,1280)"/> <wire from="(320,1410)" to="(320,1440)"/> <wire from="(630,980)" to="(630,1130)"/> <wire from="(590,300)" to="(590,450)"/> <wire from="(170,680)" to="(170,840)"/> <wire from="(170,840)" to="(170,1000)"/> <wire from="(170,130)" to="(330,130)"/> <wire from="(170,1320)" to="(170,1480)"/> <wire from="(170,1160)" to="(170,1320)"/> <wire from="(170,1000)" to="(170,1160)"/> <wire from="(550,230)" to="(570,230)"/> <wire from="(690,1330)" to="(690,1440)"/> <wire from="(610,320)" to="(610,480)"/> <wire from="(490,410)" to="(510,410)"/> <wire from="(170,330)" to="(190,330)"/> <wire from="(240,480)" to="(260,480)"/> <wire from="(300,190)" to="(300,240)"/> <wire from="(670,660)" to="(750,660)"/> <wire from="(830,800)" to="(830,850)"/> <wire from="(830,640)" to="(830,690)"/> <wire from="(830,1120)" to="(830,1170)"/> <wire from="(830,960)" to="(830,1010)"/> <wire from="(590,450)" to="(640,450)"/> <wire from="(690,940)" to="(750,940)"/> <wire from="(690,780)" to="(750,780)"/> <wire from="(690,620)" to="(750,620)"/> <wire from="(690,1100)" to="(750,1100)"/> <wire from="(210,470)" to="(210,490)"/> <wire from="(590,450)" to="(590,480)"/> <wire from="(320,260)" to="(320,290)"/> <wire from="(410,520)" to="(830,520)"/> <wire from="(650,970)" to="(650,1120)"/> <wire from="(490,140)" to="(490,230)"/> <wire from="(550,280)" to="(570,280)"/> <wire from="(550,600)" to="(570,600)"/> <wire from="(550,760)" to="(570,760)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(550,1080)" to="(570,1080)"/> <wire from="(550,1240)" to="(570,1240)"/> <wire from="(550,1400)" to="(570,1400)"/> <wire from="(300,420)" to="(330,420)"/> <wire from="(390,170)" to="(870,170)"/> <wire from="(370,420)" to="(390,420)"/> <wire from="(240,480)" to="(240,650)"/> <wire from="(740,300)" to="(770,300)"/> <wire from="(360,620)" to="(360,660)"/> <wire from="(360,780)" to="(360,820)"/> <wire from="(360,940)" to="(360,980)"/> <wire from="(360,1100)" to="(360,1140)"/> <wire from="(490,410)" to="(490,580)"/> <wire from="(360,1260)" to="(360,1300)"/> <wire from="(360,1420)" to="(360,1460)"/> <wire from="(170,330)" to="(170,510)"/> <wire from="(410,660)" to="(670,660)"/> <wire from="(670,1110)" to="(750,1110)"/> <wire from="(670,950)" to="(750,950)"/> <wire from="(290,660)" to="(360,660)"/> <wire from="(290,820)" to="(360,820)"/> <wire from="(290,980)" to="(360,980)"/> <wire from="(290,1140)" to="(360,1140)"/> <wire from="(290,1300)" to="(360,1300)"/> <wire from="(290,1460)" to="(360,1460)"/> <wire from="(410,350)" to="(410,420)"/> <wire from="(390,170)" to="(390,240)"/> <wire from="(690,200)" to="(740,200)"/> <wire from="(650,1120)" to="(750,1120)"/> <wire from="(130,130)" to="(170,130)"/> <wire from="(670,800)" to="(670,950)"/> <wire from="(370,610)" to="(410,610)"/> <wire from="(370,770)" to="(410,770)"/> <wire from="(370,930)" to="(410,930)"/> <wire from="(370,1090)" to="(410,1090)"/> <wire from="(370,1250)" to="(410,1250)"/> <wire from="(370,1410)" to="(410,1410)"/> <wire from="(690,600)" to="(690,620)"/> <wire from="(610,1140)" to="(610,1290)"/> <wire from="(410,1460)" to="(770,1460)"/> <wire from="(300,750)" to="(300,910)"/> <wire from="(300,590)" to="(300,750)"/> <wire from="(300,910)" to="(300,1070)"/> <wire from="(550,410)" to="(570,410)"/> <wire from="(300,1230)" to="(300,1390)"/> <wire from="(300,1070)" to="(300,1230)"/> <wire from="(300,150)" to="(330,150)"/> <wire from="(690,300)" to="(720,300)"/> <wire from="(410,750)" to="(430,750)"/> <wire from="(410,590)" to="(430,590)"/> <wire from="(410,910)" to="(430,910)"/> <wire from="(410,1070)" to="(430,1070)"/> <wire from="(410,1230)" to="(430,1230)"/> <wire from="(410,1390)" to="(430,1390)"/> <wire from="(360,270)" to="(360,310)"/> <wire from="(170,510)" to="(190,510)"/> <wire from="(410,1330)" to="(690,1330)"/> <wire from="(290,310)" to="(360,310)"/> <wire from="(410,320)" to="(610,320)"/> <wire from="(690,1330)" to="(830,1330)"/> <wire from="(630,1130)" to="(750,1130)"/> <wire from="(130,240)" to="(240,240)"/> <wire from="(220,670)" to="(260,670)"/> <wire from="(220,830)" to="(260,830)"/> <wire from="(220,990)" to="(260,990)"/> <wire from="(220,1150)" to="(260,1150)"/> <wire from="(220,1310)" to="(260,1310)"/> <wire from="(320,440)" to="(320,470)"/> <wire from="(220,1470)" to="(260,1470)"/> <wire from="(630,1130)" to="(630,1280)"/> <wire from="(370,260)" to="(410,260)"/> <wire from="(470,600)" to="(510,600)"/> <wire from="(470,760)" to="(510,760)"/> <wire from="(470,920)" to="(510,920)"/> <wire from="(470,1080)" to="(510,1080)"/> <wire from="(470,1240)" to="(510,1240)"/> <wire from="(470,1400)" to="(510,1400)"/> <wire from="(810,1120)" to="(830,1120)"/> <wire from="(810,960)" to="(830,960)"/> <wire from="(810,800)" to="(830,800)"/> <wire from="(810,640)" to="(830,640)"/> <wire from="(550,460)" to="(570,460)"/> <wire from="(830,310)" to="(830,350)"/> <wire from="(170,510)" to="(170,680)"/> <wire from="(610,320)" to="(770,320)"/> <wire from="(740,1440)" to="(770,1440)"/> <wire from="(410,240)" to="(430,240)"/> <wire from="(690,200)" to="(690,300)"/> <wire from="(300,240)" to="(300,420)"/> <wire from="(830,1270)" to="(830,1330)"/> <wire from="(410,610)" to="(410,660)"/> <wire from="(410,770)" to="(410,820)"/> <wire from="(410,930)" to="(410,980)"/> <wire from="(410,1090)" to="(410,1140)"/> <wire from="(410,1250)" to="(410,1300)"/> <wire from="(410,1410)" to="(410,1460)"/> <wire from="(410,1330)" to="(410,1390)"/> <wire from="(410,1170)" to="(410,1230)"/> <wire from="(410,1010)" to="(410,1070)"/> <wire from="(410,850)" to="(410,910)"/> <wire from="(410,690)" to="(410,750)"/> <wire from="(610,1140)" to="(750,1140)"/> <wire from="(830,470)" to="(830,520)"/> <wire from="(340,620)" to="(340,690)"/> <wire from="(340,780)" to="(340,850)"/> <wire from="(340,940)" to="(340,1010)"/> <wire from="(340,1100)" to="(340,1170)"/> <wire from="(340,1260)" to="(340,1330)"/> <wire from="(340,1420)" to="(340,1490)"/> <wire from="(650,1120)" to="(650,1260)"/> <wire from="(670,660)" to="(670,800)"/> <wire from="(320,290)" to="(510,290)"/> <wire from="(810,1450)" to="(870,1450)"/> <wire from="(220,690)" to="(340,690)"/> <wire from="(220,850)" to="(340,850)"/> <wire from="(220,1010)" to="(340,1010)"/> <wire from="(220,1170)" to="(340,1170)"/> <wire from="(220,1330)" to="(340,1330)"/> <wire from="(220,1490)" to="(340,1490)"/> <wire from="(630,1280)" to="(730,1280)"/> <wire from="(650,820)" to="(750,820)"/> <wire from="(410,350)" to="(830,350)"/> <wire from="(220,320)" to="(260,320)"/> <wire from="(470,250)" to="(510,250)"/> <wire from="(690,1440)" to="(720,1440)"/> <wire from="(410,610)" to="(430,610)"/> <wire from="(410,930)" to="(430,930)"/> <wire from="(410,770)" to="(430,770)"/> <wire from="(410,1090)" to="(430,1090)"/> <wire from="(410,1250)" to="(430,1250)"/> <wire from="(410,1410)" to="(430,1410)"/> <wire from="(300,150)" to="(300,190)"/> <wire from="(360,450)" to="(360,490)"/> <wire from="(130,640)" to="(210,640)"/> <wire from="(130,800)" to="(210,800)"/> <wire from="(130,960)" to="(210,960)"/> <wire from="(130,1120)" to="(210,1120)"/> <wire from="(130,1280)" to="(210,1280)"/> <wire from="(130,1440)" to="(210,1440)"/> <wire from="(320,610)" to="(330,610)"/> <wire from="(320,770)" to="(330,770)"/> <wire from="(320,930)" to="(330,930)"/> <wire from="(320,1090)" to="(330,1090)"/> <wire from="(320,1250)" to="(330,1250)"/> <wire from="(320,1410)" to="(330,1410)"/> <wire from="(410,260)" to="(410,320)"/> <wire from="(290,490)" to="(360,490)"/> <wire from="(410,1140)" to="(610,1140)"/> <wire from="(610,1290)" to="(730,1290)"/> <wire from="(340,270)" to="(340,340)"/> <wire from="(670,1110)" to="(670,1250)"/> <wire from="(220,340)" to="(340,340)"/> <wire from="(550,300)" to="(590,300)"/> <wire from="(660,490)" to="(700,490)"/> <wire from="(690,1240)" to="(730,1240)"/> <wire from="(370,440)" to="(410,440)"/> <wire from="(490,1220)" to="(510,1220)"/> <wire from="(490,1380)" to="(510,1380)"/> <wire from="(390,370)" to="(870,370)"/> <wire from="(240,1290)" to="(260,1290)"/> <wire from="(240,810)" to="(260,810)"/> <wire from="(240,970)" to="(260,970)"/> <wire from="(240,1130)" to="(260,1130)"/> <wire from="(240,1450)" to="(260,1450)"/> <wire from="(410,260)" to="(430,260)"/> <wire from="(410,420)" to="(430,420)"/> <wire from="(670,950)" to="(670,1110)"/> <wire from="(490,580)" to="(510,580)"/> <wire from="(490,740)" to="(510,740)"/> <wire from="(490,900)" to="(510,900)"/> <wire from="(490,1060)" to="(510,1060)"/> <wire from="(300,420)" to="(300,590)"/> <wire from="(410,200)" to="(690,200)"/> <wire from="(240,650)" to="(260,650)"/> <wire from="(680,450)" to="(750,450)"/> <wire from="(320,260)" to="(330,260)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(680,450)" to="(680,570)"/> <wire from="(390,370)" to="(390,420)"/> <wire from="(570,230)" to="(570,280)"/> <wire from="(700,490)" to="(750,490)"/> <wire from="(690,1100)" to="(690,1240)"/> <wire from="(320,470)" to="(510,470)"/> <wire from="(170,130)" to="(170,330)"/> <wire from="(370,140)" to="(490,140)"/> <wire from="(670,1250)" to="(730,1250)"/> <wire from="(210,640)" to="(210,660)"/> <wire from="(210,800)" to="(210,820)"/> <wire from="(210,960)" to="(210,980)"/> <wire from="(210,1120)" to="(210,1140)"/> <wire from="(210,1280)" to="(210,1300)"/> <wire from="(210,1440)" to="(210,1460)"/> <wire from="(410,1170)" to="(830,1170)"/> <wire from="(410,1010)" to="(830,1010)"/> <wire from="(410,850)" to="(830,850)"/> <wire from="(410,690)" to="(830,690)"/> <wire from="(220,500)" to="(260,500)"/> <wire from="(650,820)" to="(650,970)"/> <wire from="(470,430)" to="(510,430)"/> <wire from="(810,1270)" to="(830,1270)"/> <wire from="(810,470)" to="(830,470)"/> <wire from="(810,310)" to="(830,310)"/> <wire from="(570,600)" to="(570,640)"/> <wire from="(570,760)" to="(570,800)"/> <wire from="(570,920)" to="(570,960)"/> <wire from="(570,1080)" to="(570,1120)"/> <wire from="(570,1240)" to="(570,1280)"/> <wire from="(570,1400)" to="(570,1440)"/> <wire from="(410,980)" to="(630,980)"/> <wire from="(410,500)" to="(630,500)"/> <wire from="(240,650)" to="(240,810)"/> <wire from="(240,1290)" to="(240,1450)"/> <wire from="(240,1130)" to="(240,1290)"/> <wire from="(240,970)" to="(240,1130)"/> <wire from="(240,810)" to="(240,970)"/> <wire from="(300,590)" to="(330,590)"/> <wire from="(300,750)" to="(330,750)"/> <wire from="(300,910)" to="(330,910)"/> <wire from="(300,1390)" to="(330,1390)"/> <wire from="(300,1070)" to="(330,1070)"/> <wire from="(300,1230)" to="(330,1230)"/> <wire from="(490,1060)" to="(490,1220)"/> <wire from="(490,900)" to="(490,1060)"/> <wire from="(490,740)" to="(490,900)"/> <wire from="(490,580)" to="(490,740)"/> <wire from="(490,1220)" to="(490,1380)"/> <wire from="(370,590)" to="(390,590)"/> <wire from="(370,750)" to="(390,750)"/> <wire from="(370,1390)" to="(390,1390)"/> <wire from="(370,910)" to="(390,910)"/> <wire from="(370,1230)" to="(390,1230)"/> <wire from="(370,1070)" to="(390,1070)"/> <wire from="(690,940)" to="(690,1100)"/> <wire from="(690,780)" to="(690,940)"/> <wire from="(690,620)" to="(690,780)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(410,200)" to="(410,240)"/> <wire from="(590,70)" to="(590,300)"/> <wire from="(240,300)" to="(260,300)"/> <wire from="(410,440)" to="(410,500)"/> <wire from="(650,1260)" to="(730,1260)"/> <wire from="(670,800)" to="(750,800)"/> <comp lib="1" loc="(470,760)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,1140)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,680)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(810,640)" name="NOR Gate"> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="4" loc="(370,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(870,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(740,200)" name="Constant"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(550,1220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(550,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MODE4"/> </comp> <comp lib="1" loc="(510,290)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(690,600)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="2" loc="(190,1320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(470,600)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,1270)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> <a name="label" val="11"/> </comp> <comp lib="1" loc="(660,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="1" loc="(290,660)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(470,430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(740,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,310)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,470)" name="NAND Gate"> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="1" loc="(740,1440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(550,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(470,1240)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,800)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="label" val="8"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(130,960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(870,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,1080)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,960)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="9"/> </comp> <comp lib="4" loc="(550,1380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(470,920)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,1160)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="2" loc="(190,510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(810,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(353,41)" name="Text"> <a name="text" val="OAM COUNTER 1 or 4 step mode "/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="1" loc="(810,1120)" name="NOR Gate"> <a name="label" val="10"/> </comp> <comp lib="0" loc="(870,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(870,1450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="COUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="1" loc="(290,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,330)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(810,1450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(870,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(550,900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(190,1480)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(370,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(870,870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1300)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(660,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(550,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,1280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="4" loc="(550,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="1" loc="(510,470)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="4" loc="(550,1060)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(870,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="1" loc="(470,1400)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1460)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="OAM2_COUNTER"> <a name="circuit" val="OAM2_COUNTER"/> <a name="clabel" val="OAM2 COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffdb74" height="390" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="74">/PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="244">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="104">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="154">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="204">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="253">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="304">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="424">COUT</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="110,140" width="8" x="46" y="236"/> <circ-port height="8" pin="110,40" width="8" x="46" y="66"/> <circ-port height="8" pin="110,90" width="8" x="46" y="106"/> <circ-port height="10" pin="480,90" width="10" x="275" y="95"/> <circ-port height="10" pin="480,280" width="10" x="275" y="145"/> <circ-port height="10" pin="480,460" width="10" x="275" y="195"/> <circ-port height="10" pin="480,640" width="10" x="275" y="245"/> <circ-port height="10" pin="480,820" width="10" x="275" y="295"/> <circ-port height="10" pin="480,940" width="10" x="275" y="415"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(250,680)" to="(310,680)"/> <wire from="(250,680)" to="(250,750)"/> <wire from="(230,820)" to="(480,820)"/> <wire from="(230,700)" to="(230,770)"/> <wire from="(250,320)" to="(250,390)"/> <wire from="(230,340)" to="(230,410)"/> <wire from="(230,460)" to="(480,460)"/> <wire from="(250,320)" to="(310,320)"/> <wire from="(250,790)" to="(370,790)"/> <wire from="(250,430)" to="(370,430)"/> <wire from="(160,160)" to="(160,190)"/> <wire from="(160,520)" to="(160,550)"/> <wire from="(160,880)" to="(160,910)"/> <wire from="(140,320)" to="(170,320)"/> <wire from="(140,680)" to="(170,680)"/> <wire from="(350,220)" to="(370,220)"/> <wire from="(350,580)" to="(370,580)"/> <wire from="(110,40)" to="(390,40)"/> <wire from="(210,520)" to="(230,520)"/> <wire from="(210,880)" to="(230,880)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(210,680)" to="(230,680)"/> <wire from="(210,160)" to="(230,160)"/> <wire from="(470,870)" to="(470,910)"/> <wire from="(470,150)" to="(470,190)"/> <wire from="(470,510)" to="(470,550)"/> <wire from="(390,130)" to="(390,310)"/> <wire from="(390,490)" to="(390,670)"/> <wire from="(230,410)" to="(310,410)"/> <wire from="(230,770)" to="(310,770)"/> <wire from="(160,520)" to="(170,520)"/> <wire from="(160,160)" to="(170,160)"/> <wire from="(160,880)" to="(170,880)"/> <wire from="(140,680)" to="(140,860)"/> <wire from="(140,320)" to="(140,500)"/> <wire from="(350,510)" to="(410,510)"/> <wire from="(350,870)" to="(410,870)"/> <wire from="(350,150)" to="(410,150)"/> <wire from="(250,610)" to="(250,680)"/> <wire from="(250,250)" to="(250,320)"/> <wire from="(160,190)" to="(470,190)"/> <wire from="(160,550)" to="(470,550)"/> <wire from="(160,910)" to="(470,910)"/> <wire from="(200,890)" to="(200,900)"/> <wire from="(370,580)" to="(370,610)"/> <wire from="(370,220)" to="(370,250)"/> <wire from="(110,140)" to="(140,140)"/> <wire from="(110,90)" to="(200,90)"/> <wire from="(250,930)" to="(270,930)"/> <wire from="(290,570)" to="(310,570)"/> <wire from="(290,210)" to="(310,210)"/> <wire from="(250,570)" to="(270,570)"/> <wire from="(290,930)" to="(310,930)"/> <wire from="(390,670)" to="(410,670)"/> <wire from="(390,310)" to="(410,310)"/> <wire from="(450,330)" to="(470,330)"/> <wire from="(230,640)" to="(230,680)"/> <wire from="(230,280)" to="(230,320)"/> <wire from="(450,690)" to="(470,690)"/> <wire from="(250,210)" to="(270,210)"/> <wire from="(230,340)" to="(310,340)"/> <wire from="(230,700)" to="(310,700)"/> <wire from="(200,170)" to="(210,170)"/> <wire from="(200,890)" to="(210,890)"/> <wire from="(200,530)" to="(210,530)"/> <wire from="(200,350)" to="(200,530)"/> <wire from="(200,710)" to="(200,890)"/> <wire from="(350,940)" to="(480,940)"/> <wire from="(250,860)" to="(310,860)"/> <wire from="(250,500)" to="(310,500)"/> <wire from="(250,500)" to="(250,570)"/> <wire from="(250,860)" to="(250,930)"/> <wire from="(230,880)" to="(230,950)"/> <wire from="(230,640)" to="(480,640)"/> <wire from="(250,140)" to="(250,210)"/> <wire from="(230,160)" to="(230,230)"/> <wire from="(230,520)" to="(230,590)"/> <wire from="(230,280)" to="(480,280)"/> <wire from="(250,140)" to="(310,140)"/> <wire from="(250,250)" to="(370,250)"/> <wire from="(250,610)" to="(370,610)"/> <wire from="(200,90)" to="(200,170)"/> <wire from="(160,700)" to="(160,730)"/> <wire from="(160,340)" to="(160,370)"/> <wire from="(390,40)" to="(390,130)"/> <wire from="(140,500)" to="(170,500)"/> <wire from="(140,140)" to="(170,140)"/> <wire from="(140,860)" to="(170,860)"/> <wire from="(350,760)" to="(370,760)"/> <wire from="(350,400)" to="(370,400)"/> <wire from="(210,340)" to="(230,340)"/> <wire from="(210,500)" to="(230,500)"/> <wire from="(210,140)" to="(230,140)"/> <wire from="(470,690)" to="(470,730)"/> <wire from="(470,330)" to="(470,370)"/> <wire from="(210,700)" to="(230,700)"/> <wire from="(210,860)" to="(230,860)"/> <wire from="(230,90)" to="(230,140)"/> <wire from="(390,670)" to="(390,850)"/> <wire from="(390,310)" to="(390,490)"/> <wire from="(230,230)" to="(310,230)"/> <wire from="(230,590)" to="(310,590)"/> <wire from="(230,950)" to="(310,950)"/> <wire from="(160,340)" to="(170,340)"/> <wire from="(160,700)" to="(170,700)"/> <wire from="(140,140)" to="(140,320)"/> <wire from="(140,500)" to="(140,680)"/> <wire from="(350,690)" to="(410,690)"/> <wire from="(350,330)" to="(410,330)"/> <wire from="(250,790)" to="(250,860)"/> <wire from="(250,430)" to="(250,500)"/> <wire from="(230,90)" to="(480,90)"/> <wire from="(160,370)" to="(470,370)"/> <wire from="(160,730)" to="(470,730)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(370,760)" to="(370,790)"/> <wire from="(370,400)" to="(370,430)"/> <wire from="(290,750)" to="(310,750)"/> <wire from="(290,390)" to="(310,390)"/> <wire from="(250,750)" to="(270,750)"/> <wire from="(390,130)" to="(410,130)"/> <wire from="(390,850)" to="(410,850)"/> <wire from="(390,490)" to="(410,490)"/> <wire from="(450,150)" to="(470,150)"/> <wire from="(450,510)" to="(470,510)"/> <wire from="(230,460)" to="(230,500)"/> <wire from="(450,870)" to="(470,870)"/> <wire from="(230,820)" to="(230,860)"/> <wire from="(250,390)" to="(270,390)"/> <wire from="(230,520)" to="(310,520)"/> <wire from="(230,160)" to="(310,160)"/> <wire from="(230,880)" to="(310,880)"/> <wire from="(200,350)" to="(210,350)"/> <wire from="(200,710)" to="(210,710)"/> <wire from="(200,530)" to="(200,710)"/> <wire from="(200,170)" to="(200,350)"/> <comp lib="1" loc="(290,930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(480,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(450,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(450,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="4" loc="(210,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(210,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="4" loc="(450,310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(480,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(210,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(480,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(350,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(350,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CARRY_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(250,120)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(290,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(450,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(350,870)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="OAM_BUF_CONTROL"> <a name="circuit" val="OAM_BUF_CONTROL"/> <a name="clabel" val="OAM BUF CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#2eff26" height="261" stroke="#000000" stroke-width="2" width="210" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="254">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="228" y="254">OB/OAM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="228" y="104">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="164">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="284">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="104">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="274">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="224">/W4</text> <circ-port height="8" pin="90,60" width="8" x="46" y="66"/> <circ-port height="8" pin="90,160" width="8" x="46" y="126"/> <circ-port height="8" pin="90,210" width="8" x="46" y="266"/> <circ-port height="8" pin="90,270" width="8" x="46" y="186"/> <circ-port height="8" pin="90,320" width="8" x="46" y="156"/> <circ-port height="8" pin="90,370" width="8" x="46" y="96"/> <circ-port height="8" pin="90,430" width="8" x="46" y="216"/> <circ-port height="8" pin="90,490" width="8" x="46" y="246"/> <circ-port height="10" pin="920,150" width="10" x="255" y="245"/> <circ-port height="10" pin="920,250" width="10" x="255" y="275"/> <circ-port height="10" pin="920,470" width="10" x="255" y="95"/> <circ-anchor facing="east" height="6" width="6" x="187" y="47"/> </appear> <wire from="(90,320)" to="(150,320)"/> <wire from="(520,430)" to="(560,430)"/> <wire from="(150,70)" to="(150,220)"/> <wire from="(110,250)" to="(110,270)"/> <wire from="(110,210)" to="(110,230)"/> <wire from="(130,470)" to="(130,490)"/> <wire from="(130,430)" to="(130,450)"/> <wire from="(140,370)" to="(180,370)"/> <wire from="(320,440)" to="(320,470)"/> <wire from="(280,470)" to="(320,470)"/> <wire from="(220,580)" to="(220,610)"/> <wire from="(220,480)" to="(220,510)"/> <wire from="(440,430)" to="(480,430)"/> <wire from="(620,480)" to="(790,480)"/> <wire from="(120,80)" to="(120,110)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(90,370)" to="(120,370)"/> <wire from="(380,70)" to="(380,300)"/> <wire from="(540,410)" to="(560,410)"/> <wire from="(620,410)" to="(640,410)"/> <wire from="(600,430)" to="(620,430)"/> <wire from="(620,430)" to="(640,430)"/> <wire from="(680,430)" to="(700,430)"/> <wire from="(700,410)" to="(720,410)"/> <wire from="(700,430)" to="(720,430)"/> <wire from="(180,270)" to="(180,370)"/> <wire from="(370,430)" to="(400,430)"/> <wire from="(90,160)" to="(180,160)"/> <wire from="(460,350)" to="(620,350)"/> <wire from="(760,410)" to="(780,410)"/> <wire from="(280,570)" to="(300,570)"/> <wire from="(380,410)" to="(400,410)"/> <wire from="(220,420)" to="(220,460)"/> <wire from="(460,410)" to="(480,410)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(180,160)" to="(180,210)"/> <wire from="(320,440)" to="(330,440)"/> <wire from="(340,110)" to="(340,350)"/> <wire from="(280,240)" to="(860,240)"/> <wire from="(780,460)" to="(790,460)"/> <wire from="(830,470)" to="(840,470)"/> <wire from="(280,150)" to="(920,150)"/> <wire from="(180,160)" to="(240,160)"/> <wire from="(220,110)" to="(340,110)"/> <wire from="(150,220)" to="(200,220)"/> <wire from="(150,260)" to="(200,260)"/> <wire from="(340,350)" to="(460,350)"/> <wire from="(220,420)" to="(330,420)"/> <wire from="(150,70)" to="(380,70)"/> <wire from="(90,430)" to="(130,430)"/> <wire from="(90,490)" to="(130,490)"/> <wire from="(220,530)" to="(220,560)"/> <wire from="(120,110)" to="(220,110)"/> <wire from="(220,110)" to="(220,140)"/> <wire from="(840,260)" to="(840,470)"/> <wire from="(220,530)" to="(320,530)"/> <wire from="(840,260)" to="(860,260)"/> <wire from="(190,460)" to="(220,460)"/> <wire from="(220,610)" to="(700,610)"/> <wire from="(120,70)" to="(150,70)"/> <wire from="(700,300)" to="(700,410)"/> <wire from="(380,300)" to="(540,300)"/> <wire from="(540,300)" to="(540,410)"/> <wire from="(110,250)" to="(200,250)"/> <wire from="(110,230)" to="(200,230)"/> <wire from="(540,300)" to="(700,300)"/> <wire from="(380,300)" to="(380,410)"/> <wire from="(90,210)" to="(110,210)"/> <wire from="(90,270)" to="(110,270)"/> <wire from="(130,450)" to="(150,450)"/> <wire from="(130,470)" to="(150,470)"/> <wire from="(220,460)" to="(240,460)"/> <wire from="(220,140)" to="(240,140)"/> <wire from="(220,580)" to="(240,580)"/> <wire from="(220,480)" to="(240,480)"/> <wire from="(220,560)" to="(240,560)"/> <wire from="(220,510)" to="(300,510)"/> <wire from="(620,350)" to="(620,410)"/> <wire from="(90,60)" to="(100,60)"/> <wire from="(300,510)" to="(300,570)"/> <wire from="(320,470)" to="(320,530)"/> <wire from="(620,430)" to="(620,480)"/> <wire from="(460,350)" to="(460,410)"/> <wire from="(840,470)" to="(920,470)"/> <wire from="(780,410)" to="(780,460)"/> <wire from="(700,430)" to="(700,610)"/> <wire from="(150,260)" to="(150,320)"/> <comp lib="1" loc="(280,240)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OAMCTR2"/> </comp> <comp loc="(520,420)" name="D-latch"/> <comp lib="0" loc="(90,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(552,424)" name="Text"> <a name="text" val="2"/> </comp> <comp loc="(600,420)" name="D-latch"/> <comp lib="1" loc="(190,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp loc="(760,420)" name="D-latch"/> <comp lib="6" loc="(132,359)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="0" loc="(90,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(280,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(280,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(920,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/WE"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(258,525)" name="Text"> <a name="text" val="FF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(830,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="4" loc="(440,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(632,424)" name="Text"> <a name="text" val="3"/> </comp> <comp loc="(680,420)" name="D-latch"/> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W4"/> </comp> <comp lib="0" loc="(920,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OFETCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(100,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(900,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(920,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OB/OAM"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(370,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(471,423)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(140,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(420,391)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(713,424)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="1" loc="(280,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> </circuit> <circuit name="OAM_BUF_CONTROL_RGB"> <a name="circuit" val="OAM_BUF_CONTROL_RGB"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M94,40 Q98,50 102,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#2eff26" height="261" stroke="#000000" stroke-width="2" width="210" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="214">/W4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="124">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="155">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="227" y="94">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="184">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="264">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="94">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="245">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="227" y="244">OB/OAM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="274">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">PCLK</text> <polyline fill="none" points="57,55 57,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="55,65 50,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="57,55 50,55" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,30" width="8" x="46" y="56"/> <circ-port height="8" pin="100,90" width="8" x="46" y="116"/> <circ-port height="8" pin="100,140" width="8" x="46" y="256"/> <circ-port height="8" pin="100,200" width="8" x="46" y="176"/> <circ-port height="8" pin="100,250" width="8" x="46" y="146"/> <circ-port height="8" pin="100,300" width="8" x="46" y="86"/> <circ-port height="8" pin="100,350" width="8" x="46" y="206"/> <circ-port height="8" pin="100,410" width="8" x="46" y="236"/> <circ-port height="10" pin="720,80" width="10" x="255" y="235"/> <circ-port height="10" pin="720,180" width="10" x="255" y="265"/> <circ-port height="10" pin="720,370" width="10" x="255" y="85"/> <circ-anchor facing="east" height="6" width="6" x="257" y="37"/> </appear> <wire from="(400,380)" to="(590,380)"/> <wire from="(200,380)" to="(320,380)"/> <wire from="(120,180)" to="(120,200)"/> <wire from="(120,140)" to="(120,160)"/> <wire from="(100,410)" to="(140,410)"/> <wire from="(100,350)" to="(140,350)"/> <wire from="(400,350)" to="(440,350)"/> <wire from="(480,350)" to="(520,350)"/> <wire from="(160,300)" to="(190,300)"/> <wire from="(420,40)" to="(420,330)"/> <wire from="(560,330)" to="(580,330)"/> <wire from="(640,190)" to="(660,190)"/> <wire from="(190,200)" to="(190,300)"/> <wire from="(100,90)" to="(190,90)"/> <wire from="(170,110)" to="(320,110)"/> <wire from="(320,330)" to="(340,330)"/> <wire from="(380,330)" to="(400,330)"/> <wire from="(320,350)" to="(340,350)"/> <wire from="(420,330)" to="(440,330)"/> <wire from="(170,110)" to="(170,150)"/> <wire from="(500,330)" to="(520,330)"/> <wire from="(190,200)" to="(210,200)"/> <wire from="(190,140)" to="(210,140)"/> <wire from="(140,370)" to="(160,370)"/> <wire from="(140,390)" to="(160,390)"/> <wire from="(190,90)" to="(190,140)"/> <wire from="(500,280)" to="(500,330)"/> <wire from="(320,280)" to="(320,330)"/> <wire from="(100,250)" to="(170,250)"/> <wire from="(170,50)" to="(170,110)"/> <wire from="(170,190)" to="(170,250)"/> <wire from="(580,360)" to="(590,360)"/> <wire from="(630,370)" to="(640,370)"/> <wire from="(230,40)" to="(420,40)"/> <wire from="(190,90)" to="(250,90)"/> <wire from="(320,280)" to="(500,280)"/> <wire from="(290,170)" to="(660,170)"/> <wire from="(400,330)" to="(400,350)"/> <wire from="(290,80)" to="(720,80)"/> <wire from="(580,330)" to="(580,360)"/> <wire from="(140,390)" to="(140,410)"/> <wire from="(140,350)" to="(140,370)"/> <wire from="(400,350)" to="(400,380)"/> <wire from="(100,300)" to="(140,300)"/> <wire from="(170,190)" to="(210,190)"/> <wire from="(170,150)" to="(210,150)"/> <wire from="(320,350)" to="(320,380)"/> <wire from="(230,40)" to="(230,70)"/> <wire from="(100,30)" to="(130,30)"/> <wire from="(700,180)" to="(720,180)"/> <wire from="(120,160)" to="(210,160)"/> <wire from="(120,180)" to="(210,180)"/> <wire from="(100,200)" to="(120,200)"/> <wire from="(100,140)" to="(120,140)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(320,110)" to="(320,280)"/> <wire from="(230,70)" to="(250,70)"/> <wire from="(150,40)" to="(230,40)"/> <wire from="(640,370)" to="(720,370)"/> <wire from="(640,190)" to="(640,370)"/> <comp loc="(480,340)" name="D-latch"/> <comp lib="1" loc="(630,370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(290,80)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(100,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W4"/> </comp> <comp lib="1" loc="(290,170)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(100,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OAMCTR2"/> </comp> <comp lib="0" loc="(720,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OFETCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(720,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OB/OAM"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(200,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(359,313)" name="Text"> <a name="text" val="DFF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(560,340)" name="D-latch"/> <comp lib="1" loc="(700,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="4" loc="(380,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(149,289)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="0" loc="(130,30)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(720,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/WE"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> </circuit> <circuit name="OAM_BUFFER"> <a name="circuit" val="OAM_BUFFER"/> <a name="clabel" val="OAM BUFFER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fa12ff" height="170" stroke="#000000" stroke-width="2" width="210" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="217" y="104">RAM read bit</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="84">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="104">/R4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="217" y="73">RAM write bit</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="164">DB--&gt;OAM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="221" y="184">OAM--&gt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="143">OB bit </text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="144">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="184">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="124">OB/OAM</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,56" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="130,40" width="8" x="46" y="56"/> <circ-port height="8" pin="150,560" width="8" x="46" y="96"/> <circ-port height="10" pin="930,310" width="10" x="255" y="175"/> <circ-port height="8" pin="150,320" width="8" x="46" y="76"/> <circ-port height="10" pin="930,610" width="10" x="255" y="135"/> <circ-port height="8" pin="150,190" width="8" x="256" y="96"/> <circ-port height="8" pin="150,680" width="8" x="46" y="116"/> <circ-port height="8" pin="150,870" width="8" x="46" y="156"/> <circ-port height="8" pin="150,920" width="8" x="46" y="176"/> <circ-port height="8" pin="150,1130" width="8" x="46" y="136"/> <circ-port height="10" pin="930,900" width="10" x="255" y="65"/> <circ-anchor facing="east" height="6" width="6" x="257" y="37"/> </appear> <wire from="(1450,250)" to="(1450,270)"/> <wire from="(180,340)" to="(180,350)"/> <wire from="(1580,170)" to="(1580,250)"/> <wire from="(180,660)" to="(180,670)"/> <wire from="(1960,440)" to="(1960,460)"/> <wire from="(1620,420)" to="(1620,440)"/> <wire from="(290,210)" to="(290,230)"/> <wire from="(1780,500)" to="(1780,510)"/> <wire from="(1370,480)" to="(1430,480)"/> <wire from="(1270,290)" to="(1270,420)"/> <wire from="(1730,350)" to="(1730,480)"/> <wire from="(560,880)" to="(560,920)"/> <wire from="(1930,250)" to="(1930,310)"/> <wire from="(1420,420)" to="(1430,420)"/> <wire from="(490,280)" to="(490,380)"/> <wire from="(710,180)" to="(730,180)"/> <wire from="(710,420)" to="(730,420)"/> <wire from="(810,120)" to="(810,220)"/> <wire from="(1830,390)" to="(1830,440)"/> <wire from="(360,200)" to="(360,240)"/> <wire from="(1960,220)" to="(2040,220)"/> <wire from="(450,610)" to="(600,610)"/> <wire from="(790,250)" to="(820,250)"/> <wire from="(680,870)" to="(680,970)"/> <wire from="(770,950)" to="(800,950)"/> <wire from="(660,850)" to="(730,850)"/> <wire from="(660,1090)" to="(730,1090)"/> <wire from="(520,360)" to="(520,420)"/> <wire from="(1470,290)" to="(1500,290)"/> <wire from="(1580,250)" to="(1600,250)"/> <wire from="(450,610)" to="(450,660)"/> <wire from="(710,710)" to="(710,770)"/> <wire from="(710,950)" to="(710,1010)"/> <wire from="(580,200)" to="(660,200)"/> <wire from="(1780,440)" to="(1810,440)"/> <wire from="(1620,440)" to="(1650,440)"/> <wire from="(520,120)" to="(520,180)"/> <wire from="(470,500)" to="(540,500)"/> <wire from="(470,260)" to="(540,260)"/> <wire from="(290,240)" to="(360,240)"/> <wire from="(1190,420)" to="(1210,420)"/> <wire from="(1270,420)" to="(1290,420)"/> <wire from="(280,200)" to="(280,270)"/> <wire from="(480,440)" to="(540,440)"/> <wire from="(680,970)" to="(730,970)"/> <wire from="(1910,390)" to="(1910,480)"/> <wire from="(180,310)" to="(180,320)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(1990,440)" to="(1990,460)"/> <wire from="(1620,230)" to="(1620,250)"/> <wire from="(650,260)" to="(650,520)"/> <wire from="(1560,440)" to="(1560,530)"/> <wire from="(580,860)" to="(640,860)"/> <wire from="(670,1030)" to="(730,1030)"/> <wire from="(1810,500)" to="(1810,510)"/> <wire from="(1780,390)" to="(1780,400)"/> <wire from="(690,910)" to="(730,910)"/> <wire from="(1450,450)" to="(1510,450)"/> <wire from="(1650,500)" to="(1650,510)"/> <wire from="(840,900)" to="(880,900)"/> <wire from="(1710,530)" to="(1890,530)"/> <wire from="(610,500)" to="(610,520)"/> <wire from="(410,310)" to="(450,310)"/> <wire from="(500,320)" to="(540,320)"/> <wire from="(1420,230)" to="(1430,230)"/> <wire from="(520,360)" to="(540,360)"/> <wire from="(710,950)" to="(730,950)"/> <wire from="(710,710)" to="(730,710)"/> <wire from="(280,200)" to="(300,200)"/> <wire from="(1710,480)" to="(1710,530)"/> <wire from="(770,360)" to="(800,360)"/> <wire from="(520,120)" to="(540,120)"/> <wire from="(1930,420)" to="(1940,420)"/> <wire from="(470,240)" to="(480,240)"/> <wire from="(580,260)" to="(650,260)"/> <wire from="(150,870)" to="(550,870)"/> <wire from="(340,270)" to="(350,270)"/> <wire from="(200,30)" to="(280,30)"/> <wire from="(260,110)" to="(270,110)"/> <wire from="(710,360)" to="(710,420)"/> <wire from="(710,120)" to="(710,180)"/> <wire from="(1450,250)" to="(1470,250)"/> <wire from="(1620,250)" to="(1650,250)"/> <wire from="(1650,440)" to="(1680,440)"/> <wire from="(2010,480)" to="(2040,480)"/> <wire from="(660,830)" to="(670,830)"/> <wire from="(800,770)" to="(800,820)"/> <wire from="(790,840)" to="(790,890)"/> <wire from="(1360,420)" to="(1360,440)"/> <wire from="(1490,230)" to="(1490,250)"/> <wire from="(180,280)" to="(180,290)"/> <wire from="(180,680)" to="(180,690)"/> <wire from="(1330,480)" to="(1370,480)"/> <wire from="(1270,530)" to="(1560,530)"/> <wire from="(1780,440)" to="(1780,460)"/> <wire from="(1520,250)" to="(1580,250)"/> <wire from="(1680,500)" to="(1680,510)"/> <wire from="(1650,310)" to="(1650,320)"/> <wire from="(1650,390)" to="(1650,400)"/> <wire from="(840,310)" to="(880,310)"/> <wire from="(2040,140)" to="(2040,150)"/> <wire from="(1960,140)" to="(1960,150)"/> <wire from="(1960,220)" to="(1960,230)"/> <wire from="(1830,480)" to="(1890,480)"/> <wire from="(170,50)" to="(200,50)"/> <wire from="(800,850)" to="(820,850)"/> <wire from="(170,60)" to="(520,60)"/> <wire from="(1930,110)" to="(1930,170)"/> <wire from="(1730,310)" to="(1930,310)"/> <wire from="(470,270)" to="(500,270)"/> <wire from="(710,120)" to="(730,120)"/> <wire from="(660,870)" to="(680,870)"/> <wire from="(710,360)" to="(730,360)"/> <wire from="(1710,290)" to="(1710,350)"/> <wire from="(660,860)" to="(690,860)"/> <wire from="(800,850)" to="(800,950)"/> <wire from="(450,660)" to="(470,660)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(1550,290)" to="(1550,350)"/> <wire from="(1780,220)" to="(1860,220)"/> <wire from="(1620,480)" to="(1630,480)"/> <wire from="(1700,480)" to="(1710,480)"/> <wire from="(150,560)" to="(740,560)"/> <wire from="(200,680)" to="(470,680)"/> <wire from="(470,290)" to="(480,290)"/> <wire from="(1860,350)" to="(2070,350)"/> <wire from="(150,190)" to="(230,190)"/> <wire from="(680,80)" to="(680,520)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(520,300)" to="(520,360)"/> <wire from="(1490,250)" to="(1520,250)"/> <wire from="(760,560)" to="(890,560)"/> <wire from="(1360,440)" to="(1390,440)"/> <wire from="(710,650)" to="(710,710)"/> <wire from="(710,890)" to="(710,950)"/> <wire from="(1730,170)" to="(1760,170)"/> <wire from="(230,280)" to="(300,280)"/> <wire from="(1650,250)" to="(1680,250)"/> <wire from="(520,60)" to="(520,120)"/> <wire from="(660,880)" to="(670,880)"/> <wire from="(2040,480)" to="(2070,480)"/> <wire from="(790,250)" to="(790,300)"/> <wire from="(800,180)" to="(800,230)"/> <wire from="(1250,420)" to="(1270,420)"/> <wire from="(2040,190)" to="(2040,220)"/> <wire from="(640,320)" to="(640,520)"/> <wire from="(610,500)" to="(730,500)"/> <wire from="(480,140)" to="(540,140)"/> <wire from="(1960,190)" to="(1960,220)"/> <wire from="(1150,550)" to="(2090,550)"/> <wire from="(180,330)" to="(180,340)"/> <wire from="(180,650)" to="(180,660)"/> <wire from="(580,320)" to="(640,320)"/> <wire from="(1650,440)" to="(1650,460)"/> <wire from="(670,730)" to="(730,730)"/> <wire from="(600,540)" to="(600,610)"/> <wire from="(1810,440)" to="(1810,460)"/> <wire from="(480,290)" to="(480,440)"/> <wire from="(1680,310)" to="(1680,320)"/> <wire from="(1650,200)" to="(1650,210)"/> <wire from="(770,1010)" to="(810,1010)"/> <wire from="(630,380)" to="(730,380)"/> <wire from="(280,30)" to="(710,30)"/> <wire from="(1750,110)" to="(1930,110)"/> <wire from="(1960,270)" to="(1960,280)"/> <wire from="(200,30)" to="(200,50)"/> <wire from="(810,860)" to="(810,1010)"/> <wire from="(620,440)" to="(730,440)"/> <wire from="(670,880)" to="(670,1030)"/> <wire from="(1520,310)" to="(1520,320)"/> <wire from="(1390,500)" to="(1390,510)"/> <wire from="(800,820)" to="(820,820)"/> <wire from="(150,320)" to="(180,320)"/> <wire from="(800,260)" to="(820,260)"/> <wire from="(520,300)" to="(540,300)"/> <wire from="(660,840)" to="(680,840)"/> <wire from="(710,890)" to="(730,890)"/> <wire from="(710,650)" to="(730,650)"/> <wire from="(800,260)" to="(800,360)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(520,850)" to="(550,850)"/> <wire from="(520,60)" to="(540,60)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(1750,420)" to="(1760,420)"/> <wire from="(1700,290)" to="(1710,290)"/> <wire from="(640,320)" to="(730,320)"/> <wire from="(660,200)" to="(730,200)"/> <wire from="(1270,290)" to="(1430,290)"/> <wire from="(1890,440)" to="(1890,480)"/> <wire from="(240,110)" to="(250,110)"/> <wire from="(710,300)" to="(710,360)"/> <wire from="(710,60)" to="(710,120)"/> <wire from="(1390,440)" to="(1420,440)"/> <wire from="(650,260)" to="(730,260)"/> <wire from="(1910,480)" to="(1940,480)"/> <wire from="(1420,420)" to="(1420,440)"/> <wire from="(680,80)" to="(730,80)"/> <wire from="(820,870)" to="(820,1070)"/> <wire from="(770,650)" to="(820,650)"/> <wire from="(580,380)" to="(630,380)"/> <wire from="(180,300)" to="(180,310)"/> <wire from="(180,700)" to="(180,710)"/> <wire from="(1680,440)" to="(1680,460)"/> <wire from="(1650,250)" to="(1650,270)"/> <wire from="(670,140)" to="(730,140)"/> <wire from="(1780,220)" to="(1780,230)"/> <wire from="(1780,140)" to="(1780,150)"/> <wire from="(770,420)" to="(810,420)"/> <wire from="(280,30)" to="(280,110)"/> <wire from="(710,30)" to="(710,60)"/> <wire from="(1860,140)" to="(1860,150)"/> <wire from="(840,880)" to="(840,900)"/> <wire from="(810,270)" to="(810,420)"/> <wire from="(1450,450)" to="(1450,460)"/> <wire from="(1520,200)" to="(1520,210)"/> <wire from="(1390,390)" to="(1390,400)"/> <wire from="(800,230)" to="(820,230)"/> <wire from="(1730,350)" to="(1860,350)"/> <wire from="(710,60)" to="(730,60)"/> <wire from="(710,300)" to="(730,300)"/> <wire from="(280,270)" to="(300,270)"/> <wire from="(2010,170)" to="(2020,170)"/> <wire from="(1880,440)" to="(1890,440)"/> <wire from="(1930,170)" to="(1940,170)"/> <wire from="(1930,250)" to="(1940,250)"/> <wire from="(350,230)" to="(350,270)"/> <wire from="(130,40)" to="(150,40)"/> <wire from="(1620,420)" to="(1630,420)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(290,210)" to="(300,210)"/> <wire from="(670,140)" to="(670,520)"/> <wire from="(710,830)" to="(710,890)"/> <wire from="(1810,440)" to="(1830,440)"/> <wire from="(360,240)" to="(360,300)"/> <wire from="(810,810)" to="(820,810)"/> <wire from="(520,240)" to="(520,300)"/> <wire from="(600,610)" to="(930,610)"/> <wire from="(1390,440)" to="(1390,460)"/> <wire from="(1420,230)" to="(1420,250)"/> <wire from="(1860,190)" to="(1860,220)"/> <wire from="(1520,250)" to="(1520,270)"/> <wire from="(820,280)" to="(820,480)"/> <wire from="(630,380)" to="(630,520)"/> <wire from="(770,60)" to="(820,60)"/> <wire from="(1780,190)" to="(1780,220)"/> <wire from="(1150,90)" to="(2090,90)"/> <wire from="(180,670)" to="(180,680)"/> <wire from="(1930,420)" to="(1930,440)"/> <wire from="(1680,250)" to="(1680,270)"/> <wire from="(580,440)" to="(620,440)"/> <wire from="(890,910)" to="(890,1130)"/> <wire from="(1780,270)" to="(1780,280)"/> <wire from="(1580,310)" to="(1580,320)"/> <wire from="(1560,440)" to="(1620,440)"/> <wire from="(770,710)" to="(810,710)"/> <wire from="(840,290)" to="(840,310)"/> <wire from="(230,190)" to="(230,280)"/> <wire from="(820,650)" to="(820,800)"/> <wire from="(1450,500)" to="(1450,510)"/> <wire from="(1150,90)" to="(1150,550)"/> <wire from="(770,890)" to="(790,890)"/> <wire from="(1270,480)" to="(1270,530)"/> <wire from="(520,480)" to="(540,480)"/> <wire from="(710,830)" to="(730,830)"/> <wire from="(710,1070)" to="(730,1070)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(1830,440)" to="(1840,440)"/> <wire from="(1620,230)" to="(1630,230)"/> <wire from="(230,190)" to="(250,190)"/> <wire from="(1600,250)" to="(1600,290)"/> <wire from="(290,260)" to="(300,260)"/> <wire from="(300,110)" to="(310,110)"/> <wire from="(500,270)" to="(500,320)"/> <wire from="(710,240)" to="(710,300)"/> <wire from="(1420,250)" to="(1450,250)"/> <wire from="(1550,350)" to="(1710,350)"/> <wire from="(690,860)" to="(690,910)"/> <wire from="(1730,480)" to="(1760,480)"/> <wire from="(810,220)" to="(820,220)"/> <wire from="(810,860)" to="(820,860)"/> <wire from="(520,670)" to="(520,850)"/> <wire from="(1930,440)" to="(1960,440)"/> <wire from="(660,890)" to="(660,1090)"/> <wire from="(770,830)" to="(820,830)"/> <wire from="(280,130)" to="(280,200)"/> <wire from="(580,320)" to="(580,330)"/> <wire from="(770,1070)" to="(820,1070)"/> <wire from="(1890,440)" to="(1930,440)"/> <wire from="(180,320)" to="(180,330)"/> <wire from="(180,640)" to="(180,650)"/> <wire from="(470,300)" to="(470,500)"/> <wire from="(770,120)" to="(810,120)"/> <wire from="(580,80)" to="(680,80)"/> <wire from="(200,320)" to="(370,320)"/> <wire from="(1730,170)" to="(1730,310)"/> <wire from="(1750,110)" to="(1750,250)"/> <wire from="(1960,500)" to="(1960,510)"/> <wire from="(820,60)" to="(820,210)"/> <wire from="(2040,220)" to="(2040,480)"/> <wire from="(1450,310)" to="(1450,320)"/> <wire from="(1450,390)" to="(1450,400)"/> <wire from="(1860,220)" to="(1860,350)"/> <wire from="(1490,230)" to="(1500,230)"/> <wire from="(1550,290)" to="(1560,290)"/> <wire from="(1360,420)" to="(1370,420)"/> <wire from="(1680,250)" to="(1750,250)"/> <wire from="(270,190)" to="(300,190)"/> <wire from="(710,480)" to="(730,480)"/> <wire from="(710,240)" to="(730,240)"/> <wire from="(770,300)" to="(790,300)"/> <wire from="(580,500)" to="(610,500)"/> <wire from="(1830,390)" to="(1910,390)"/> <wire from="(500,670)" to="(520,670)"/> <wire from="(1750,250)" to="(1760,250)"/> <wire from="(900,900)" to="(930,900)"/> <wire from="(1830,170)" to="(1840,170)"/> <wire from="(770,770)" to="(800,770)"/> <wire from="(660,670)" to="(730,670)"/> <wire from="(360,300)" to="(370,300)"/> <wire from="(520,420)" to="(520,480)"/> <wire from="(250,110)" to="(260,110)"/> <wire from="(710,1010)" to="(710,1070)"/> <wire from="(710,770)" to="(710,830)"/> <wire from="(810,270)" to="(820,270)"/> <wire from="(520,180)" to="(520,240)"/> <wire from="(890,320)" to="(890,560)"/> <wire from="(470,80)" to="(540,80)"/> <wire from="(1470,250)" to="(1470,290)"/> <wire from="(1960,440)" to="(1990,440)"/> <wire from="(1270,480)" to="(1290,480)"/> <wire from="(290,230)" to="(350,230)"/> <wire from="(680,790)" to="(730,790)"/> <wire from="(770,480)" to="(820,480)"/> <wire from="(770,240)" to="(820,240)"/> <wire from="(180,290)" to="(180,300)"/> <wire from="(490,200)" to="(540,200)"/> <wire from="(180,690)" to="(180,700)"/> <wire from="(660,200)" to="(660,520)"/> <wire from="(1580,250)" to="(1580,270)"/> <wire from="(1750,420)" to="(1750,440)"/> <wire from="(1510,350)" to="(1550,350)"/> <wire from="(290,240)" to="(290,260)"/> <wire from="(470,80)" to="(470,230)"/> <wire from="(2090,90)" to="(2090,550)"/> <wire from="(1990,500)" to="(1990,510)"/> <wire from="(1960,390)" to="(1960,400)"/> <wire from="(620,440)" to="(620,520)"/> <wire from="(660,670)" to="(660,820)"/> <wire from="(1450,440)" to="(1450,450)"/> <wire from="(1450,200)" to="(1450,210)"/> <wire from="(1500,290)" to="(1510,290)"/> <wire from="(150,680)" to="(180,680)"/> <wire from="(710,480)" to="(710,650)"/> <wire from="(480,140)" to="(480,240)"/> <wire from="(150,920)" to="(560,920)"/> <wire from="(520,420)" to="(540,420)"/> <wire from="(710,770)" to="(730,770)"/> <wire from="(710,1010)" to="(730,1010)"/> <wire from="(810,710)" to="(810,810)"/> <wire from="(770,180)" to="(800,180)"/> <wire from="(520,180)" to="(540,180)"/> <wire from="(790,840)" to="(820,840)"/> <wire from="(580,140)" to="(670,140)"/> <wire from="(670,730)" to="(670,830)"/> <wire from="(1890,480)" to="(1890,530)"/> <wire from="(900,310)" to="(930,310)"/> <wire from="(150,1130)" to="(740,1130)"/> <wire from="(760,1130)" to="(890,1130)"/> <wire from="(1580,170)" to="(1730,170)"/> <wire from="(280,110)" to="(290,110)"/> <wire from="(490,200)" to="(490,250)"/> <wire from="(710,180)" to="(710,240)"/> <wire from="(1330,420)" to="(1360,420)"/> <wire from="(710,420)" to="(710,480)"/> <wire from="(680,790)" to="(680,840)"/> <wire from="(1750,440)" to="(1780,440)"/> <wire from="(1600,290)" to="(1630,290)"/> <comp lib="0" loc="(1960,280)" name="Ground"/> <comp loc="(580,490)" name="D-latch"/> <comp lib="0" loc="(1960,230)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1990,176)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="6" loc="(1230,394)" name="Text"> <a name="text" val="BLNK"/> </comp> <comp lib="0" loc="(200,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(930,900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="RAM write"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1520,320)" name="Ground"/> <comp lib="0" loc="(2040,140)" name="Power"/> <comp lib="0" loc="(150,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="2" loc="(580,860)" name="Multiplexer"> <a name="width" val="8"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(150,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1960,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(770,190)" name="D-latch"/> <comp lib="0" loc="(1650,320)" name="Ground"/> <comp loc="(770,370)" name="D-latch"/> <comp lib="1" loc="(270,190)" name="NOT Gate"> <a name="width" val="8"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(280,130)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp loc="(580,250)" name="D-latch"/> <comp lib="6" loc="(1862,414)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(340,200)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1860,140)" name="Power"/> <comp lib="0" loc="(1450,390)" name="Power"/> <comp lib="0" loc="(150,40)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(760,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1650,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(770,310)" name="D-latch"/> <comp lib="0" loc="(1450,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(840,880)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1780,390)" name="Power"/> <comp lib="4" loc="(770,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="RAM read"/> </comp> <comp lib="1" loc="(340,270)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(640,860)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(1490,355)" name="Text"> <a name="text" val="/WE"/> </comp> <comp lib="0" loc="(1960,510)" name="Ground"/> <comp lib="0" loc="(1520,200)" name="Power"/> <comp lib="0" loc="(1250,420)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp lib="0" loc="(1780,140)" name="Power"/> <comp lib="1" loc="(900,900)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="6" loc="(1812,174)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(150,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4"/> </comp> <comp loc="(580,130)" name="D-latch"/> <comp lib="0" loc="(1990,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp lib="0" loc="(1450,200)" name="Power"/> <comp lib="0" loc="(1810,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp lib="1" loc="(900,310)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp loc="(580,190)" name="D-latch"/> <comp lib="0" loc="(1780,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(1295,140)" name="Text"> <a name="text" val="2C04-0003 OAM BIT BUF"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp loc="(770,130)" name="D-latch"/> <comp lib="0" loc="(450,310)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(760,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(930,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="OB bit out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1650,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1960,140)" name="Power"/> <comp lib="0" loc="(930,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="OAM--&gt;DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1650,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1580,320)" name="Ground"/> <comp lib="4" loc="(770,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="6" loc="(2064,472)" name="Text"> <a name="text" val="/VAL"/> </comp> <comp loc="(580,310)" name="D-latch"/> <comp lib="4" loc="(770,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1330,420)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(410,310)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1330,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1172,423)" name="Text"> <a name="text" val="DBx"/> </comp> <comp lib="0" loc="(1650,510)" name="Ground"/> <comp lib="0" loc="(1390,510)" name="Ground"/> <comp lib="0" loc="(1680,320)" name="Ground"/> <comp lib="0" loc="(1780,190)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(2064,343)" name="Text"> <a name="text" val="VAL"/> </comp> <comp loc="(770,490)" name="D-latch"/> <comp lib="0" loc="(1780,510)" name="Ground"/> <comp lib="0" loc="(1450,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1520,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1810,510)" name="Ground"/> <comp lib="0" loc="(1960,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1880,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(150,870)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB--&gt;OAM"/> </comp> <comp lib="4" loc="(770,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(770,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1680,510)" name="Ground"/> <comp lib="0" loc="(840,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1450,510)" name="Ground"/> <comp lib="0" loc="(1390,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1495,441)" name="Text"> <a name="text" val="OBx"/> </comp> <comp lib="0" loc="(1450,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1780,230)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1310,453)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(1650,250)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1580,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1310,392)" name="Text"> <a name="text" val="OB/OAM"/> </comp> <comp lib="4" loc="(770,770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1450,250)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(2040,190)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(150,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WE"/> </comp> <comp lib="0" loc="(1650,200)" name="Power"/> <comp lib="0" loc="(150,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB/OAM"/> </comp> <comp loc="(770,250)" name="D-latch"/> <comp lib="0" loc="(1960,390)" name="Power"/> <comp lib="0" loc="(1860,190)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(770,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1780,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(580,70)" name="D-latch"/> <comp lib="0" loc="(1680,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp loc="(770,430)" name="D-latch"/> <comp lib="0" loc="(1990,510)" name="Ground"/> <comp lib="6" loc="(1595,486)" name="Text"> <a name="text" val="I/OAM2"/> </comp> <comp lib="0" loc="(1650,390)" name="Power"/> <comp lib="0" loc="(1960,190)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(580,430)" name="D-latch"/> <comp lib="0" loc="(1780,280)" name="Ground"/> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(770,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(770,70)" name="D-latch"/> <comp lib="0" loc="(600,540)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1520,250)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1450,320)" name="Ground"/> <comp lib="0" loc="(1390,390)" name="Power"/> <comp lib="0" loc="(1390,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp loc="(580,370)" name="D-latch"/> </circuit> <circuit name="OAM_FIFO"> <a name="circuit" val="OAM_FIFO"/> <a name="clabel" val="OAM FIFO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M59,51 Q63,61 67,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbabe" height="602" stroke="#000000" stroke-width="2" width="290" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="294">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="183">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="264">ZCOL2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="244">CLPO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="234">/ZCOL1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="295">ZCOL3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="224">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="544">T BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="434">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="305" y="84">/SPR0HIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">H3''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="104">H4''</text> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="163">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="204">/ZCOL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="204">/SH7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="364">OBJ BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="474">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="311" y="324">/ZPRIO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="614">/7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="124">H5''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="264">0/HPOS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="144">/SH2</text> <polyline fill="none" points="56,55 50,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 50,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,160" width="8" x="46" y="256"/> <circ-port height="8" pin="100,250" width="8" x="46" y="76"/> <circ-port height="8" pin="100,290" width="8" x="46" y="96"/> <circ-port height="8" pin="100,330" width="8" x="46" y="116"/> <circ-port height="8" pin="100,540" width="8" x="46" y="136"/> <circ-port height="8" pin="100,580" width="8" x="46" y="156"/> <circ-port height="8" pin="100,620" width="8" x="46" y="176"/> <circ-port height="8" pin="100,660" width="8" x="46" y="196"/> <circ-port height="8" pin="100,700" width="8" x="46" y="216"/> <circ-port height="8" pin="100,740" width="8" x="46" y="236"/> <circ-port height="8" pin="100,820" width="8" x="46" y="286"/> <circ-port height="8" pin="100,870" width="8" x="46" y="306"/> <circ-port height="8" pin="100,920" width="8" x="46" y="326"/> <circ-port height="8" pin="100,970" width="8" x="46" y="346"/> <circ-port height="8" pin="100,1020" width="8" x="46" y="366"/> <circ-port height="8" pin="100,1070" width="8" x="46" y="386"/> <circ-port height="8" pin="100,1120" width="8" x="46" y="406"/> <circ-port height="8" pin="100,1170" width="8" x="46" y="426"/> <circ-port height="8" pin="100,1250" width="8" x="46" y="466"/> <circ-port height="8" pin="100,1300" width="8" x="46" y="486"/> <circ-port height="8" pin="100,1350" width="8" x="46" y="506"/> <circ-port height="8" pin="100,1400" width="8" x="46" y="526"/> <circ-port height="8" pin="100,1450" width="8" x="46" y="546"/> <circ-port height="8" pin="100,1500" width="8" x="46" y="566"/> <circ-port height="8" pin="100,1550" width="8" x="46" y="586"/> <circ-port height="8" pin="100,1600" width="8" x="46" y="606"/> <circ-port height="10" pin="1590,180" width="10" x="335" y="75"/> <circ-port height="10" pin="1590,220" width="10" x="335" y="195"/> <circ-port height="10" pin="1590,260" width="10" x="335" y="225"/> <circ-port height="10" pin="1590,300" width="10" x="335" y="255"/> <circ-port height="10" pin="1590,340" width="10" x="335" y="285"/> <circ-port height="10" pin="1590,380" width="10" x="335" y="315"/> <circ-anchor facing="east" height="6" width="6" x="337" y="37"/> </appear> <wire from="(750,110)" to="(750,120)"/> <wire from="(930,1400)" to="(930,1730)"/> <wire from="(1230,1130)" to="(1400,1130)"/> <wire from="(770,1400)" to="(770,1730)"/> <wire from="(1270,240)" to="(1310,240)"/> <wire from="(1020,300)" to="(1400,300)"/> <wire from="(1090,440)" to="(1090,760)"/> <wire from="(930,130)" to="(930,160)"/> <wire from="(970,2080)" to="(970,2430)"/> <wire from="(1020,940)" to="(1400,940)"/> <wire from="(1020,1580)" to="(1400,1580)"/> <wire from="(1020,2220)" to="(1400,2220)"/> <wire from="(650,2080)" to="(650,2430)"/> <wire from="(120,1400)" to="(120,1420)"/> <wire from="(1090,1400)" to="(1090,1730)"/> <wire from="(1130,2400)" to="(1130,2770)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(1230,230)" to="(1240,230)"/> <wire from="(1230,2150)" to="(1240,2150)"/> <wire from="(1170,2380)" to="(1310,2380)"/> <wire from="(1060,60)" to="(1070,60)"/> <wire from="(1110,2070)" to="(1310,2070)"/> <wire from="(1410,770)" to="(1410,830)"/> <wire from="(1580,260)" to="(1590,260)"/> <wire from="(1150,1310)" to="(1150,1370)"/> <wire from="(1190,1970)" to="(1410,1970)"/> <wire from="(120,1430)" to="(190,1430)"/> <wire from="(970,450)" to="(970,760)"/> <wire from="(1390,60)" to="(1410,60)"/> <wire from="(1420,1210)" to="(1440,1210)"/> <wire from="(1420,2490)" to="(1440,2490)"/> <wire from="(1420,2650)" to="(1440,2650)"/> <wire from="(650,450)" to="(650,760)"/> <wire from="(1110,750)" to="(1110,1050)"/> <wire from="(580,380)" to="(590,380)"/> <wire from="(1020,1170)" to="(1230,1170)"/> <wire from="(580,2300)" to="(590,2300)"/> <wire from="(580,2460)" to="(590,2460)"/> <wire from="(910,110)" to="(910,160)"/> <wire from="(1070,2440)" to="(1310,2440)"/> <wire from="(950,1070)" to="(950,1400)"/> <wire from="(790,1070)" to="(790,1400)"/> <wire from="(1270,530)" to="(1310,530)"/> <wire from="(1020,590)" to="(1400,590)"/> <wire from="(970,1730)" to="(970,2080)"/> <wire from="(1110,1390)" to="(1110,1710)"/> <wire from="(1020,1870)" to="(1400,1870)"/> <wire from="(650,1730)" to="(650,2080)"/> <wire from="(1150,2390)" to="(1150,2760)"/> <wire from="(1020,820)" to="(1230,820)"/> <wire from="(100,330)" to="(130,330)"/> <wire from="(1230,520)" to="(1240,520)"/> <wire from="(1230,1160)" to="(1240,1160)"/> <wire from="(1230,1800)" to="(1240,1800)"/> <wire from="(1290,1100)" to="(1290,1150)"/> <wire from="(1310,480)" to="(1310,530)"/> <wire from="(950,120)" to="(950,160)"/> <wire from="(690,130)" to="(710,130)"/> <wire from="(710,160)" to="(710,450)"/> <wire from="(850,120)" to="(880,120)"/> <wire from="(210,930)" to="(230,930)"/> <wire from="(870,160)" to="(870,450)"/> <wire from="(180,1390)" to="(190,1390)"/> <wire from="(1420,380)" to="(1440,380)"/> <wire from="(1420,220)" to="(1440,220)"/> <wire from="(1420,860)" to="(1440,860)"/> <wire from="(1110,1710)" to="(1110,2070)"/> <wire from="(1420,2300)" to="(1440,2300)"/> <wire from="(830,760)" to="(830,1070)"/> <wire from="(1420,1500)" to="(1440,1500)"/> <wire from="(1390,2750)" to="(1410,2750)"/> <wire from="(1420,2140)" to="(1440,2140)"/> <wire from="(670,760)" to="(670,1070)"/> <wire from="(580,2590)" to="(590,2590)"/> <wire from="(1410,1220)" to="(1410,1260)"/> <wire from="(1020,1460)" to="(1230,1460)"/> <wire from="(580,190)" to="(590,190)"/> <wire from="(1410,2500)" to="(1410,2540)"/> <wire from="(580,1150)" to="(590,1150)"/> <wire from="(580,2110)" to="(590,2110)"/> <wire from="(580,670)" to="(590,670)"/> <wire from="(580,1950)" to="(590,1950)"/> <wire from="(670,1400)" to="(670,1730)"/> <wire from="(1070,2090)" to="(1310,2090)"/> <wire from="(1020,180)" to="(1330,180)"/> <wire from="(100,1550)" to="(160,1550)"/> <wire from="(830,1400)" to="(830,1730)"/> <wire from="(140,1440)" to="(190,1440)"/> <wire from="(180,820)" to="(180,960)"/> <wire from="(180,1460)" to="(180,1600)"/> <wire from="(1090,400)" to="(1410,400)"/> <wire from="(870,2080)" to="(870,2430)"/> <wire from="(1130,1380)" to="(1130,1700)"/> <wire from="(710,2080)" to="(710,2430)"/> <wire from="(1230,1490)" to="(1230,1500)"/> <wire from="(1230,850)" to="(1230,860)"/> <wire from="(100,290)" to="(140,290)"/> <wire from="(1410,2310)" to="(1410,2320)"/> <wire from="(290,160)" to="(330,160)"/> <wire from="(1130,2400)" to="(1310,2400)"/> <wire from="(1410,390)" to="(1410,400)"/> <wire from="(1390,2730)" to="(1400,2730)"/> <wire from="(840,90)" to="(860,90)"/> <wire from="(100,620)" to="(130,620)"/> <wire from="(1170,1680)" to="(1310,1680)"/> <wire from="(1110,1050)" to="(1310,1050)"/> <wire from="(210,310)" to="(210,350)"/> <wire from="(220,430)" to="(240,430)"/> <wire from="(1150,2760)" to="(1310,2760)"/> <wire from="(1290,2460)" to="(1310,2460)"/> <wire from="(1420,510)" to="(1440,510)"/> <wire from="(1130,1700)" to="(1130,2060)"/> <wire from="(1420,670)" to="(1440,670)"/> <wire from="(1420,1790)" to="(1440,1790)"/> <wire from="(1170,2380)" to="(1170,2740)"/> <wire from="(1420,1950)" to="(1440,1950)"/> <wire from="(650,110)" to="(650,160)"/> <wire from="(870,450)" to="(870,760)"/> <wire from="(1290,2670)" to="(1290,2710)"/> <wire from="(970,110)" to="(970,160)"/> <wire from="(710,450)" to="(710,760)"/> <wire from="(120,60)" to="(120,120)"/> <wire from="(1410,230)" to="(1410,270)"/> <wire from="(1410,870)" to="(1410,910)"/> <wire from="(580,320)" to="(590,320)"/> <wire from="(1410,1510)" to="(1410,1550)"/> <wire from="(1410,2150)" to="(1410,2190)"/> <wire from="(580,960)" to="(590,960)"/> <wire from="(580,1600)" to="(590,1600)"/> <wire from="(580,2240)" to="(590,2240)"/> <wire from="(580,480)" to="(590,480)"/> <wire from="(1270,1480)" to="(1290,1480)"/> <wire from="(1270,840)" to="(1290,840)"/> <wire from="(580,1760)" to="(590,1760)"/> <wire from="(690,1070)" to="(690,1400)"/> <wire from="(1070,1740)" to="(1310,1740)"/> <wire from="(1020,470)" to="(1330,470)"/> <wire from="(850,1070)" to="(850,1400)"/> <wire from="(140,1410)" to="(190,1410)"/> <wire from="(1070,2090)" to="(1070,2440)"/> <wire from="(1210,2720)" to="(1310,2720)"/> <wire from="(870,1730)" to="(870,2080)"/> <wire from="(1150,1370)" to="(1150,1690)"/> <wire from="(1020,2610)" to="(1400,2610)"/> <wire from="(710,1730)" to="(710,2080)"/> <wire from="(1230,1460)" to="(1230,1470)"/> <wire from="(1230,820)" to="(1230,830)"/> <wire from="(1410,1960)" to="(1410,1970)"/> <wire from="(710,140)" to="(710,160)"/> <wire from="(1410,680)" to="(1410,690)"/> <wire from="(160,970)" to="(190,970)"/> <wire from="(180,350)" to="(210,350)"/> <wire from="(160,1450)" to="(190,1450)"/> <wire from="(850,120)" to="(850,160)"/> <wire from="(770,160)" to="(770,450)"/> <wire from="(1110,2780)" to="(1310,2780)"/> <wire from="(930,160)" to="(930,450)"/> <wire from="(100,1400)" to="(120,1400)"/> <wire from="(1290,2110)" to="(1310,2110)"/> <wire from="(1090,2430)" to="(1090,2790)"/> <wire from="(1390,770)" to="(1410,770)"/> <wire from="(1150,1690)" to="(1150,2050)"/> <wire from="(890,760)" to="(890,1070)"/> <wire from="(1190,2370)" to="(1190,2730)"/> <wire from="(1410,520)" to="(1410,560)"/> <wire from="(740,130)" to="(750,130)"/> <wire from="(730,760)" to="(730,1070)"/> <wire from="(1410,1800)" to="(1410,1840)"/> <wire from="(140,1010)" to="(140,1070)"/> <wire from="(580,1250)" to="(590,1250)"/> <wire from="(580,610)" to="(590,610)"/> <wire from="(580,1890)" to="(590,1890)"/> <wire from="(730,1400)" to="(730,1730)"/> <wire from="(890,1400)" to="(890,1730)"/> <wire from="(1230,1170)" to="(1400,1170)"/> <wire from="(1020,340)" to="(1400,340)"/> <wire from="(1020,1420)" to="(1310,1420)"/> <wire from="(1070,1740)" to="(1070,2090)"/> <wire from="(1090,2080)" to="(1090,2430)"/> <wire from="(930,2080)" to="(930,2430)"/> <wire from="(1020,780)" to="(1310,780)"/> <wire from="(770,2080)" to="(770,2430)"/> <wire from="(1020,1620)" to="(1400,1620)"/> <wire from="(1020,980)" to="(1400,980)"/> <wire from="(1020,2260)" to="(1400,2260)"/> <wire from="(660,60)" to="(660,90)"/> <wire from="(200,80)" to="(200,100)"/> <wire from="(100,1350)" to="(140,1350)"/> <wire from="(200,490)" to="(240,490)"/> <wire from="(1130,1380)" to="(1310,1380)"/> <wire from="(1130,1700)" to="(1310,1700)"/> <wire from="(710,110)" to="(710,130)"/> <wire from="(930,120)" to="(950,120)"/> <wire from="(160,870)" to="(160,970)"/> <wire from="(1170,2740)" to="(1310,2740)"/> <wire from="(310,140)" to="(330,140)"/> <wire from="(1580,300)" to="(1590,300)"/> <wire from="(100,1600)" to="(180,1600)"/> <wire from="(180,1460)" to="(190,1460)"/> <wire from="(1350,60)" to="(1370,60)"/> <wire from="(120,990)" to="(190,990)"/> <wire from="(1290,1760)" to="(1310,1760)"/> <wire from="(930,450)" to="(930,760)"/> <wire from="(1110,2420)" to="(1110,2780)"/> <wire from="(1170,1680)" to="(1170,2040)"/> <wire from="(1420,2690)" to="(1440,2690)"/> <wire from="(1420,1250)" to="(1440,1250)"/> <wire from="(1420,2530)" to="(1440,2530)"/> <wire from="(1210,2360)" to="(1210,2720)"/> <wire from="(770,450)" to="(770,760)"/> <wire from="(1020,2490)" to="(1230,2490)"/> <wire from="(580,900)" to="(590,900)"/> <wire from="(580,1540)" to="(590,1540)"/> <wire from="(750,1070)" to="(750,1400)"/> <wire from="(910,1070)" to="(910,1400)"/> <wire from="(1230,1460)" to="(1400,1460)"/> <wire from="(1230,820)" to="(1400,820)"/> <wire from="(100,1300)" to="(160,1300)"/> <wire from="(1020,630)" to="(1400,630)"/> <wire from="(1410,2410)" to="(1410,2500)"/> <wire from="(1090,1730)" to="(1090,2080)"/> <wire from="(1110,2070)" to="(1110,2420)"/> <wire from="(930,1730)" to="(930,2080)"/> <wire from="(650,110)" to="(690,110)"/> <wire from="(770,1730)" to="(770,2080)"/> <wire from="(900,110)" to="(900,140)"/> <wire from="(1020,1910)" to="(1400,1910)"/> <wire from="(200,50)" to="(200,70)"/> <wire from="(1230,2520)" to="(1230,2530)"/> <wire from="(130,300)" to="(130,330)"/> <wire from="(740,110)" to="(740,130)"/> <wire from="(1020,220)" to="(1230,220)"/> <wire from="(1020,860)" to="(1230,860)"/> <wire from="(670,160)" to="(670,450)"/> <wire from="(1410,460)" to="(1410,520)"/> <wire from="(220,390)" to="(220,430)"/> <wire from="(100,60)" to="(120,60)"/> <wire from="(100,1020)" to="(120,1020)"/> <wire from="(830,160)" to="(830,450)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(100,1250)" to="(180,1250)"/> <wire from="(1090,760)" to="(1310,760)"/> <wire from="(1090,1400)" to="(1310,1400)"/> <wire from="(950,760)" to="(950,1070)"/> <wire from="(1270,2510)" to="(1290,2510)"/> <wire from="(1420,900)" to="(1440,900)"/> <wire from="(1420,260)" to="(1440,260)"/> <wire from="(1420,1540)" to="(1440,1540)"/> <wire from="(1420,2180)" to="(1440,2180)"/> <wire from="(790,760)" to="(790,1070)"/> <wire from="(1310,200)" to="(1310,240)"/> <wire from="(580,2630)" to="(590,2630)"/> <wire from="(1410,1260)" to="(1410,1300)"/> <wire from="(1410,2700)" to="(1410,2740)"/> <wire from="(1020,1500)" to="(1230,1500)"/> <wire from="(1410,2540)" to="(1410,2580)"/> <wire from="(1020,2140)" to="(1230,2140)"/> <wire from="(580,1190)" to="(590,1190)"/> <wire from="(930,110)" to="(930,120)"/> <wire from="(950,1400)" to="(950,1730)"/> <wire from="(1090,1060)" to="(1090,1400)"/> <wire from="(1130,2060)" to="(1130,2400)"/> <wire from="(790,1400)" to="(790,1730)"/> <wire from="(830,2080)" to="(830,2430)"/> <wire from="(670,2080)" to="(670,2430)"/> <wire from="(1230,250)" to="(1230,260)"/> <wire from="(1230,2170)" to="(1230,2180)"/> <wire from="(1230,2490)" to="(1230,2500)"/> <wire from="(1290,790)" to="(1290,840)"/> <wire from="(1020,510)" to="(1230,510)"/> <wire from="(100,660)" to="(130,660)"/> <wire from="(1230,1490)" to="(1240,1490)"/> <wire from="(1230,850)" to="(1240,850)"/> <wire from="(1290,1430)" to="(1290,1480)"/> <wire from="(1170,2040)" to="(1310,2040)"/> <wire from="(160,1450)" to="(160,1550)"/> <wire from="(100,160)" to="(250,160)"/> <wire from="(1070,160)" to="(1330,160)"/> <wire from="(1190,1970)" to="(1190,2030)"/> <wire from="(1270,2160)" to="(1290,2160)"/> <wire from="(1130,1000)" to="(1410,1000)"/> <wire from="(1420,550)" to="(1440,550)"/> <wire from="(1420,1830)" to="(1440,1830)"/> <wire from="(830,450)" to="(830,760)"/> <wire from="(670,450)" to="(670,760)"/> <wire from="(1410,270)" to="(1410,310)"/> <wire from="(1410,910)" to="(1410,950)"/> <wire from="(1020,1790)" to="(1230,1790)"/> <wire from="(1410,1550)" to="(1410,1590)"/> <wire from="(1410,2190)" to="(1410,2230)"/> <wire from="(140,920)" to="(140,980)"/> <wire from="(580,360)" to="(590,360)"/> <wire from="(580,840)" to="(590,840)"/> <wire from="(580,1480)" to="(590,1480)"/> <wire from="(580,2280)" to="(590,2280)"/> <wire from="(650,1070)" to="(650,1400)"/> <wire from="(1110,1050)" to="(1110,1390)"/> <wire from="(970,1070)" to="(970,1400)"/> <wire from="(1150,2050)" to="(1150,2390)"/> <wire from="(1410,2640)" to="(1410,2670)"/> <wire from="(1020,2450)" to="(1310,2450)"/> <wire from="(830,1730)" to="(830,2080)"/> <wire from="(1410,1070)" to="(1410,1140)"/> <wire from="(1020,2650)" to="(1400,2650)"/> <wire from="(1020,1210)" to="(1400,1210)"/> <wire from="(670,1730)" to="(670,2080)"/> <wire from="(1230,220)" to="(1230,230)"/> <wire from="(1230,540)" to="(1230,550)"/> <wire from="(1230,1820)" to="(1230,1830)"/> <wire from="(1230,2140)" to="(1230,2150)"/> <wire from="(870,130)" to="(890,130)"/> <wire from="(640,60)" to="(660,60)"/> <wire from="(1230,1140)" to="(1240,1140)"/> <wire from="(730,160)" to="(730,450)"/> <wire from="(1070,450)" to="(1330,450)"/> <wire from="(890,160)" to="(890,450)"/> <wire from="(1410,180)" to="(1440,180)"/> <wire from="(1090,400)" to="(1090,440)"/> <wire from="(1270,1810)" to="(1290,1810)"/> <wire from="(1390,2410)" to="(1410,2410)"/> <wire from="(850,760)" to="(850,1070)"/> <wire from="(710,140)" to="(720,140)"/> <wire from="(690,760)" to="(690,1070)"/> <wire from="(580,2570)" to="(590,2570)"/> <wire from="(1410,560)" to="(1410,600)"/> <wire from="(1410,1840)" to="(1410,1880)"/> <wire from="(580,650)" to="(590,650)"/> <wire from="(580,1290)" to="(590,1290)"/> <wire from="(580,1930)" to="(590,1930)"/> <wire from="(690,1400)" to="(690,1730)"/> <wire from="(1230,2490)" to="(1400,2490)"/> <wire from="(1130,1040)" to="(1130,1380)"/> <wire from="(1170,2040)" to="(1170,2380)"/> <wire from="(850,1400)" to="(850,1730)"/> <wire from="(1020,380)" to="(1400,380)"/> <wire from="(1020,2100)" to="(1310,2100)"/> <wire from="(890,2080)" to="(890,2430)"/> <wire from="(730,2080)" to="(730,2430)"/> <wire from="(690,130)" to="(690,160)"/> <wire from="(1020,2300)" to="(1400,2300)"/> <wire from="(120,1000)" to="(120,1020)"/> <wire from="(210,930)" to="(210,950)"/> <wire from="(1230,510)" to="(1230,520)"/> <wire from="(1230,1790)" to="(1230,1800)"/> <wire from="(100,1070)" to="(140,1070)"/> <wire from="(1190,2370)" to="(1310,2370)"/> <wire from="(1130,2060)" to="(1310,2060)"/> <wire from="(450,160)" to="(470,160)"/> <wire from="(1580,340)" to="(1590,340)"/> <wire from="(210,1360)" to="(230,1360)"/> <wire from="(1070,60)" to="(1070,160)"/> <wire from="(1090,2430)" to="(1310,2430)"/> <wire from="(1390,460)" to="(1410,460)"/> <wire from="(1420,1290)" to="(1440,1290)"/> <wire from="(1420,2570)" to="(1440,2570)"/> <wire from="(1420,1130)" to="(1440,1130)"/> <wire from="(1420,2730)" to="(1440,2730)"/> <wire from="(890,450)" to="(890,760)"/> <wire from="(730,450)" to="(730,760)"/> <wire from="(580,300)" to="(590,300)"/> <wire from="(830,110)" to="(830,160)"/> <wire from="(1020,2530)" to="(1230,2530)"/> <wire from="(200,280)" to="(200,340)"/> <wire from="(580,1100)" to="(590,1100)"/> <wire from="(580,940)" to="(590,940)"/> <wire from="(580,2220)" to="(590,2220)"/> <wire from="(580,1580)" to="(590,1580)"/> <wire from="(700,110)" to="(700,120)"/> <wire from="(1070,1080)" to="(1310,1080)"/> <wire from="(710,1070)" to="(710,1400)"/> <wire from="(1230,220)" to="(1400,220)"/> <wire from="(1230,1500)" to="(1400,1500)"/> <wire from="(1230,860)" to="(1400,860)"/> <wire from="(1230,2140)" to="(1400,2140)"/> <wire from="(1190,2030)" to="(1190,2370)"/> <wire from="(870,1070)" to="(870,1400)"/> <wire from="(1020,670)" to="(1400,670)"/> <wire from="(1020,1750)" to="(1310,1750)"/> <wire from="(180,1250)" to="(180,1390)"/> <wire from="(890,1730)" to="(890,2080)"/> <wire from="(1020,1950)" to="(1400,1950)"/> <wire from="(730,1730)" to="(730,2080)"/> <wire from="(120,970)" to="(120,990)"/> <wire from="(890,140)" to="(890,160)"/> <wire from="(1410,2740)" to="(1410,2750)"/> <wire from="(1410,1300)" to="(1410,1310)"/> <wire from="(1020,260)" to="(1230,260)"/> <wire from="(100,250)" to="(130,250)"/> <wire from="(1230,2520)" to="(1240,2520)"/> <wire from="(1290,2460)" to="(1290,2510)"/> <wire from="(1410,180)" to="(1410,230)"/> <wire from="(760,110)" to="(790,110)"/> <wire from="(950,160)" to="(950,450)"/> <wire from="(120,120)" to="(140,120)"/> <wire from="(180,340)" to="(200,340)"/> <wire from="(790,160)" to="(790,450)"/> <wire from="(1150,2390)" to="(1310,2390)"/> <wire from="(130,300)" to="(140,300)"/> <wire from="(230,400)" to="(240,400)"/> <wire from="(1090,2080)" to="(1310,2080)"/> <wire from="(120,1000)" to="(190,1000)"/> <wire from="(910,760)" to="(910,1070)"/> <wire from="(1390,1070)" to="(1410,1070)"/> <wire from="(1420,940)" to="(1440,940)"/> <wire from="(1420,300)" to="(1440,300)"/> <wire from="(1420,1580)" to="(1440,1580)"/> <wire from="(1420,2220)" to="(1440,2220)"/> <wire from="(920,130)" to="(930,130)"/> <wire from="(580,2510)" to="(590,2510)"/> <wire from="(750,760)" to="(750,1070)"/> <wire from="(1410,1140)" to="(1410,1180)"/> <wire from="(1410,2580)" to="(1410,2620)"/> <wire from="(1020,2180)" to="(1230,2180)"/> <wire from="(580,590)" to="(590,590)"/> <wire from="(580,1230)" to="(590,1230)"/> <wire from="(580,1870)" to="(590,1870)"/> <wire from="(1230,510)" to="(1400,510)"/> <wire from="(910,1400)" to="(910,1730)"/> <wire from="(1230,1790)" to="(1400,1790)"/> <wire from="(750,1400)" to="(750,1730)"/> <wire from="(200,50)" to="(310,50)"/> <wire from="(950,2080)" to="(950,2430)"/> <wire from="(790,2080)" to="(790,2430)"/> <wire from="(840,60)" to="(840,90)"/> <wire from="(200,410)" to="(200,490)"/> <wire from="(750,130)" to="(750,160)"/> <wire from="(890,110)" to="(890,130)"/> <wire from="(1070,1080)" to="(1070,1410)"/> <wire from="(370,160)" to="(410,160)"/> <wire from="(1130,1040)" to="(1310,1040)"/> <wire from="(160,1400)" to="(190,1400)"/> <wire from="(1020,550)" to="(1230,550)"/> <wire from="(100,540)" to="(130,540)"/> <wire from="(100,700)" to="(130,700)"/> <wire from="(1230,250)" to="(1240,250)"/> <wire from="(1230,2170)" to="(1240,2170)"/> <wire from="(1290,2110)" to="(1290,2160)"/> <wire from="(180,960)" to="(190,960)"/> <wire from="(1090,1730)" to="(1310,1730)"/> <wire from="(1290,1100)" to="(1310,1100)"/> <wire from="(1310,480)" to="(1330,480)"/> <wire from="(950,450)" to="(950,760)"/> <wire from="(730,110)" to="(730,160)"/> <wire from="(1420,590)" to="(1440,590)"/> <wire from="(1420,1870)" to="(1440,1870)"/> <wire from="(790,450)" to="(790,760)"/> <wire from="(1410,310)" to="(1410,350)"/> <wire from="(1410,950)" to="(1410,990)"/> <wire from="(1390,2690)" to="(1390,2730)"/> <wire from="(140,1440)" to="(140,1500)"/> <wire from="(1020,1830)" to="(1230,1830)"/> <wire from="(1410,1590)" to="(1410,1630)"/> <wire from="(1410,2230)" to="(1410,2270)"/> <wire from="(580,240)" to="(590,240)"/> <wire from="(580,880)" to="(590,880)"/> <wire from="(580,2160)" to="(590,2160)"/> <wire from="(580,1520)" to="(590,1520)"/> <wire from="(1480,180)" to="(1590,180)"/> <wire from="(930,1070)" to="(930,1400)"/> <wire from="(1410,2070)" to="(1410,2150)"/> <wire from="(770,1070)" to="(770,1400)"/> <wire from="(100,1120)" to="(160,1120)"/> <wire from="(140,1010)" to="(190,1010)"/> <wire from="(180,1030)" to="(180,1170)"/> <wire from="(950,1730)" to="(950,2080)"/> <wire from="(790,1730)" to="(790,2080)"/> <wire from="(1020,1250)" to="(1400,1250)"/> <wire from="(830,110)" to="(870,110)"/> <wire from="(230,380)" to="(230,400)"/> <wire from="(920,110)" to="(920,130)"/> <wire from="(200,280)" to="(240,280)"/> <wire from="(160,310)" to="(160,340)"/> <wire from="(1130,2770)" to="(1310,2770)"/> <wire from="(210,460)" to="(240,460)"/> <wire from="(770,120)" to="(770,160)"/> <wire from="(1230,540)" to="(1240,540)"/> <wire from="(1230,1820)" to="(1240,1820)"/> <wire from="(1290,1760)" to="(1290,1810)"/> <wire from="(160,1300)" to="(160,1400)"/> <wire from="(670,120)" to="(700,120)"/> <wire from="(690,160)" to="(690,450)"/> <wire from="(1210,2320)" to="(1410,2320)"/> <wire from="(850,160)" to="(850,450)"/> <wire from="(1150,1690)" to="(1310,1690)"/> <wire from="(1150,1370)" to="(1310,1370)"/> <wire from="(1090,1060)" to="(1310,1060)"/> <wire from="(120,1420)" to="(190,1420)"/> <wire from="(970,760)" to="(970,1070)"/> <wire from="(1170,1640)" to="(1170,1680)"/> <wire from="(1210,2320)" to="(1210,2360)"/> <wire from="(580,2610)" to="(590,2610)"/> <wire from="(650,760)" to="(650,1070)"/> <wire from="(1410,600)" to="(1410,640)"/> <wire from="(1410,1880)" to="(1410,1920)"/> <wire from="(580,530)" to="(590,530)"/> <wire from="(580,1810)" to="(590,1810)"/> <wire from="(650,1400)" to="(650,1730)"/> <wire from="(970,1400)" to="(970,1730)"/> <wire from="(1230,2530)" to="(1400,2530)"/> <wire from="(1410,1720)" to="(1410,1800)"/> <wire from="(180,370)" to="(240,370)"/> <wire from="(140,980)" to="(190,980)"/> <wire from="(180,380)" to="(230,380)"/> <wire from="(1410,1400)" to="(1410,1470)"/> <wire from="(850,2080)" to="(850,2430)"/> <wire from="(1020,900)" to="(1400,900)"/> <wire from="(1020,1540)" to="(1400,1540)"/> <wire from="(690,2080)" to="(690,2430)"/> <wire from="(220,340)" to="(220,360)"/> <wire from="(180,390)" to="(220,390)"/> <wire from="(1190,2730)" to="(1310,2730)"/> <wire from="(1290,2670)" to="(1410,2670)"/> <wire from="(130,250)" to="(130,280)"/> <wire from="(160,1020)" to="(190,1020)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(200,100)" to="(230,100)"/> <wire from="(230,100)" to="(390,100)"/> <wire from="(1230,1470)" to="(1240,1470)"/> <wire from="(1230,830)" to="(1240,830)"/> <wire from="(660,90)" to="(680,90)"/> <wire from="(1110,750)" to="(1310,750)"/> <wire from="(390,140)" to="(410,140)"/> <wire from="(1110,1710)" to="(1310,1710)"/> <wire from="(1110,1390)" to="(1310,1390)"/> <wire from="(100,970)" to="(120,970)"/> <wire from="(1580,380)" to="(1590,380)"/> <wire from="(100,1450)" to="(120,1450)"/> <wire from="(1580,220)" to="(1590,220)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(230,140)" to="(250,140)"/> <wire from="(1090,2790)" to="(1310,2790)"/> <wire from="(1390,180)" to="(1410,180)"/> <wire from="(1420,1170)" to="(1440,1170)"/> <wire from="(1420,2610)" to="(1440,2610)"/> <wire from="(850,450)" to="(850,760)"/> <wire from="(690,450)" to="(690,760)"/> <wire from="(790,110)" to="(790,160)"/> <wire from="(580,340)" to="(590,340)"/> <wire from="(1020,1130)" to="(1230,1130)"/> <wire from="(580,980)" to="(590,980)"/> <wire from="(580,1620)" to="(590,1620)"/> <wire from="(580,2260)" to="(590,2260)"/> <wire from="(670,1070)" to="(670,1400)"/> <wire from="(1410,2620)" to="(1410,2640)"/> <wire from="(1230,260)" to="(1400,260)"/> <wire from="(1230,2180)" to="(1400,2180)"/> <wire from="(830,1070)" to="(830,1400)"/> <wire from="(850,1730)" to="(850,2080)"/> <wire from="(690,1730)" to="(690,2080)"/> <wire from="(100,920)" to="(140,920)"/> <wire from="(1230,1160)" to="(1230,1170)"/> <wire from="(180,360)" to="(220,360)"/> <wire from="(820,60)" to="(840,60)"/> <wire from="(670,120)" to="(670,160)"/> <wire from="(750,160)" to="(750,450)"/> <wire from="(1150,1310)" to="(1410,1310)"/> <wire from="(910,160)" to="(910,450)"/> <wire from="(1070,160)" to="(1070,450)"/> <wire from="(100,1170)" to="(180,1170)"/> <wire from="(180,1030)" to="(190,1030)"/> <wire from="(1410,160)" to="(1440,160)"/> <wire from="(1420,340)" to="(1440,340)"/> <wire from="(1420,980)" to="(1440,980)"/> <wire from="(1420,820)" to="(1440,820)"/> <wire from="(1420,1620)" to="(1440,1620)"/> <wire from="(1420,2260)" to="(1440,2260)"/> <wire from="(1420,1460)" to="(1440,1460)"/> <wire from="(1370,2690)" to="(1390,2690)"/> <wire from="(1390,2070)" to="(1410,2070)"/> <wire from="(890,140)" to="(900,140)"/> <wire from="(870,760)" to="(870,1070)"/> <wire from="(580,2550)" to="(590,2550)"/> <wire from="(1410,1180)" to="(1410,1220)"/> <wire from="(710,760)" to="(710,1070)"/> <wire from="(140,1350)" to="(140,1410)"/> <wire from="(580,790)" to="(590,790)"/> <wire from="(1270,1150)" to="(1290,1150)"/> <wire from="(580,1430)" to="(590,1430)"/> <wire from="(580,630)" to="(590,630)"/> <wire from="(580,1270)" to="(590,1270)"/> <wire from="(580,1910)" to="(590,1910)"/> <wire from="(1070,1410)" to="(1310,1410)"/> <wire from="(1070,770)" to="(1310,770)"/> <wire from="(710,1400)" to="(710,1730)"/> <wire from="(1230,550)" to="(1400,550)"/> <wire from="(100,870)" to="(160,870)"/> <wire from="(1230,1830)" to="(1400,1830)"/> <wire from="(870,1400)" to="(870,1730)"/> <wire from="(910,2080)" to="(910,2430)"/> <wire from="(750,2080)" to="(750,2430)"/> <wire from="(870,130)" to="(870,160)"/> <wire from="(1230,1130)" to="(1230,1140)"/> <wire from="(1190,2030)" to="(1310,2030)"/> <wire from="(1410,1630)" to="(1410,1640)"/> <wire from="(1410,990)" to="(1410,1000)"/> <wire from="(1390,2690)" to="(1400,2690)"/> <wire from="(100,740)" to="(130,740)"/> <wire from="(100,580)" to="(130,580)"/> <wire from="(1070,770)" to="(1070,1080)"/> <wire from="(750,120)" to="(770,120)"/> <wire from="(1110,690)" to="(1110,750)"/> <wire from="(100,820)" to="(180,820)"/> <wire from="(1410,60)" to="(1410,160)"/> <wire from="(1390,1720)" to="(1410,1720)"/> <wire from="(1390,1400)" to="(1410,1400)"/> <wire from="(1420,630)" to="(1440,630)"/> <wire from="(1420,1910)" to="(1440,1910)"/> <wire from="(910,450)" to="(910,760)"/> <wire from="(1410,350)" to="(1410,390)"/> <wire from="(1410,830)" to="(1410,870)"/> <wire from="(750,450)" to="(750,760)"/> <wire from="(1410,2270)" to="(1410,2310)"/> <wire from="(580,280)" to="(590,280)"/> <wire from="(1410,1470)" to="(1410,1510)"/> <wire from="(580,920)" to="(590,920)"/> <wire from="(580,2200)" to="(590,2200)"/> <wire from="(580,1560)" to="(590,1560)"/> <wire from="(1310,200)" to="(1330,200)"/> <wire from="(1090,440)" to="(1330,440)"/> <wire from="(730,1070)" to="(730,1400)"/> <wire from="(1170,1640)" to="(1410,1640)"/> <wire from="(1110,690)" to="(1410,690)"/> <wire from="(120,60)" to="(180,60)"/> <wire from="(880,110)" to="(880,120)"/> <wire from="(890,1070)" to="(890,1400)"/> <wire from="(1020,1090)" to="(1310,1090)"/> <wire from="(1210,2360)" to="(1310,2360)"/> <wire from="(1070,450)" to="(1070,770)"/> <wire from="(910,1730)" to="(910,2080)"/> <wire from="(750,1730)" to="(750,2080)"/> <wire from="(720,110)" to="(720,140)"/> <wire from="(1020,1290)" to="(1400,1290)"/> <wire from="(1020,2570)" to="(1400,2570)"/> <wire from="(120,1430)" to="(120,1450)"/> <wire from="(210,1360)" to="(210,1380)"/> <wire from="(100,1500)" to="(140,1500)"/> <wire from="(1070,1410)" to="(1070,1740)"/> <wire from="(310,50)" to="(310,140)"/> <wire from="(1230,2500)" to="(1240,2500)"/> <wire from="(160,1020)" to="(160,1120)"/> <wire from="(1110,2420)" to="(1310,2420)"/> <wire from="(230,100)" to="(230,140)"/> <wire from="(650,160)" to="(650,450)"/> <wire from="(940,110)" to="(970,110)"/> <wire from="(970,160)" to="(970,450)"/> <wire from="(390,100)" to="(390,140)"/> <wire from="(1150,2050)" to="(1310,2050)"/> <wire from="(130,280)" to="(140,280)"/> <wire from="(1290,2710)" to="(1310,2710)"/> <wire from="(930,760)" to="(930,1070)"/> <wire from="(1290,1430)" to="(1310,1430)"/> <wire from="(1130,1000)" to="(1130,1040)"/> <wire from="(770,760)" to="(770,1070)"/> <wire from="(580,2650)" to="(590,2650)"/> <wire from="(1090,760)" to="(1090,1060)"/> <wire from="(1410,640)" to="(1410,680)"/> <wire from="(1410,1920)" to="(1410,1960)"/> <wire from="(1290,790)" to="(1310,790)"/> <wire from="(210,400)" to="(210,460)"/> <wire from="(580,1210)" to="(590,1210)"/> <wire from="(580,570)" to="(590,570)"/> <wire from="(580,1850)" to="(590,1850)"/> <comp lib="0" loc="(1580,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1440,630)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="1" loc="(1390,770)" name="NOR Gate"> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1420,1870)" name="Controlled Buffer"/> <comp loc="(450,150)" name="D-latch"/> <comp lib="0" loc="(580,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp loc="(1020,1070)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(580,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(580,2570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(160,310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp loc="(1020,1400)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1420,300)" name="Controlled Buffer"/> <comp lib="0" loc="(580,2590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="1" loc="(1420,2260)" name="Controlled Buffer"/> <comp lib="0" loc="(580,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(1440,2300)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(240,340)" name="Tunnel"> <a name="label" val="SEL2"/> </comp> <comp lib="1" loc="(1390,460)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(1420,1910)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1580)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="1" loc="(1420,860)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,2650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1420,380)" name="Controlled Buffer"/> <comp lib="0" loc="(580,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1440,1830)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="1" loc="(1420,2530)" name="Controlled Buffer"/> <comp lib="0" loc="(240,430)" name="Tunnel"> <a name="label" val="SEL5"/> </comp> <comp lib="0" loc="(580,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(580,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(820,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="T_BUS"/> </comp> <comp lib="0" loc="(1440,550)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="1" loc="(1270,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,2610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="1" loc="(1270,240)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1420,2610)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,510)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1170)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,2610)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="6" loc="(1459,136)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(100,740)" name="Pin"> <a name="label" val="CLPO"/> </comp> <comp loc="(1480,170)" name="D-latch"/> <comp lib="0" loc="(1440,1130)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,1600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(1440,860)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,300)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(130,540)" name="Tunnel"> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(1440,2730)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(860,90)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(580,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(580,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(230,1360)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="T_BUS"/> </comp> <comp lib="0" loc="(240,310)" name="Tunnel"> <a name="label" val="SEL1"/> </comp> <comp lib="0" loc="(130,660)" name="Tunnel"> <a name="label" val="/SH7"/> </comp> <comp lib="1" loc="(1420,2490)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1550)" name="Pin"> <a name="label" val="/T6"/> </comp> <comp lib="0" loc="(580,1950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(1590,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZPRIO"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,370)" name="Tunnel"> <a name="label" val="SEL3"/> </comp> <comp lib="0" loc="(1440,1790)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL2"/> </comp> <comp lib="0" loc="(1370,2690)" name="Constant"/> <comp lib="0" loc="(580,2280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL5"/> </comp> <comp lib="1" loc="(1420,1540)" name="Controlled Buffer"/> <comp lib="1" loc="(1270,1150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp loc="(1020,2080)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(580,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="1" loc="(1420,340)" name="Controlled Buffer"/> <comp lib="0" loc="(580,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL1"/> </comp> <comp lib="0" loc="(100,1450)" name="Pin"> <a name="label" val="/T4"/> </comp> <comp lib="0" loc="(1440,510)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1440,2490)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1440,820)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL0"/> </comp> <comp lib="0" loc="(1590,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZCOL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,920)" name="Pin"> <a name="label" val="OB2"/> </comp> <comp lib="1" loc="(1420,1210)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,1830)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1540)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="6" loc="(370,95)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="1" loc="(1270,2160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1420,1130)" name="Controlled Buffer"/> <comp lib="1" loc="(1270,2510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1440,340)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1440,2690)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1060,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="CLPO"/> </comp> <comp lib="0" loc="(580,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(1440,980)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1420,590)" name="Controlled Buffer"/> <comp lib="0" loc="(1580,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(240,490)" name="Tunnel"> <a name="label" val="SEL7"/> </comp> <comp lib="1" loc="(1420,2730)" name="Controlled Buffer"/> <comp lib="0" loc="(680,90)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(1270,530)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1390,2410)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="10"/> </comp> <comp lib="0" loc="(580,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(580,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp loc="(370,150)" name="D-latch"/> <comp lib="0" loc="(100,250)" name="Pin"> <a name="label" val="H3''"/> </comp> <comp lib="0" loc="(100,660)" name="Pin"> <a name="label" val="/SH7"/> </comp> <comp lib="1" loc="(1420,1950)" name="Controlled Buffer"/> <comp lib="0" loc="(580,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(580,2550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(100,580)" name="Pin"> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(580,1870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(100,1600)" name="Pin"> <a name="label" val="/T7"/> </comp> <comp lib="0" loc="(1440,260)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,900)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1420,980)" name="Controlled Buffer"/> <comp lib="0" loc="(580,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(1390,1720)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="8"/> </comp> <comp lib="0" loc="(580,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(580,2220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(130,580)" name="Tunnel"> <a name="label" val="/SH3"/> </comp> <comp lib="6" loc="(291,45)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(580,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(100,820)" name="Pin"> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(1580,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZPRIO"/> </comp> <comp lib="1" loc="(1420,2140)" name="Controlled Buffer"/> <comp lib="0" loc="(1590,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZCOL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1120)" name="Pin"> <a name="label" val="OB6"/> </comp> <comp lib="2" loc="(160,340)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1440,2650)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(100,1500)" name="Pin"> <a name="label" val="/T5"/> </comp> <comp lib="0" loc="(100,160)" name="Pin"> <a name="label" val="0/HPOS"/> </comp> <comp lib="0" loc="(580,2200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(1590,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SPR0HIT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1440,2180)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,380)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(1440,670)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,2300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(210,1380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(100,1350)" name="Pin"> <a name="label" val="/T2"/> </comp> <comp lib="0" loc="(130,620)" name="Tunnel"> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(240,460)" name="Tunnel"> <a name="label" val="SEL6"/> </comp> <comp lib="0" loc="(100,700)" name="Pin"> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(1420,220)" name="Controlled Buffer"/> <comp lib="0" loc="(100,620)" name="Pin"> <a name="label" val="/SH5"/> </comp> <comp lib="1" loc="(1390,2750)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="8"/> </comp> <comp lib="0" loc="(1590,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZCOL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,2510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL7"/> </comp> <comp lib="1" loc="(1420,1620)" name="Controlled Buffer"/> <comp lib="1" loc="(1390,2070)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="1" loc="(1420,1790)" name="Controlled Buffer"/> <comp lib="0" loc="(1580,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZCOL1"/> </comp> <comp lib="1" loc="(1420,1290)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,1170)" name="Controlled Buffer"/> <comp lib="0" loc="(580,1560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(580,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1420,1460)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,2300)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,630)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1250)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1440,1870)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(1440,1210)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp loc="(1020,160)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(1440,1620)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,1910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1350,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,740)" name="Tunnel"> <a name="label" val="CLPO"/> </comp> <comp lib="0" loc="(100,1070)" name="Pin"> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(580,2260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1440,1950)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(1440,1910)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="label" val="H4''"/> </comp> <comp lib="0" loc="(580,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(180,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(580,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(580,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp loc="(1020,1730)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(100,870)" name="Pin"> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(1440,1460)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="1" loc="(1420,2570)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2570)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(580,2160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL6"/> </comp> <comp lib="0" loc="(580,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL3"/> </comp> <comp lib="1" loc="(1420,260)" name="Controlled Buffer"/> <comp lib="0" loc="(580,1480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL4"/> </comp> <comp lib="1" loc="(1420,2180)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,2690)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,940)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1390,1400)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="1" loc="(1270,1480)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,2460)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(580,2240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(210,950)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(1420,940)" name="Controlled Buffer"/> <comp lib="0" loc="(100,970)" name="Pin"> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(470,160)" name="Tunnel"> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(240,400)" name="Tunnel"> <a name="label" val="SEL4"/> </comp> <comp lib="0" loc="(580,2630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(100,1020)" name="Pin"> <a name="label" val="OB4"/> </comp> <comp lib="1" loc="(1420,900)" name="Controlled Buffer"/> <comp lib="0" loc="(580,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="1" loc="(1420,1580)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,820)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2220)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="1" loc="(1420,670)" name="Controlled Buffer"/> <comp loc="(1020,2430)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(580,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(100,1250)" name="Pin"> <a name="label" val="/T0"/> </comp> <comp lib="0" loc="(580,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(580,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(1440,590)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(1440,1290)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(240,280)" name="Tunnel"> <a name="label" val="SEL0"/> </comp> <comp lib="0" loc="(100,1300)" name="Pin"> <a name="label" val="/T1"/> </comp> <comp loc="(290,150)" name="D-latch"/> <comp lib="0" loc="(580,1580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="1" loc="(1270,1810)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1420,2220)" name="Controlled Buffer"/> <comp lib="0" loc="(100,330)" name="Pin"> <a name="label" val="H5''"/> </comp> <comp lib="0" loc="(100,1170)" name="Pin"> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(580,1930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(1390,1070)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(100,1400)" name="Pin"> <a name="label" val="/T3"/> </comp> <comp lib="0" loc="(580,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(230,930)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="OBJ_BUS"/> </comp> <comp lib="0" loc="(580,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(1440,2140)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1370,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(1440,220)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1590,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZCOL1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1020,450)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1420,1250)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1500)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,2530)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(580,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1580,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1440,2260)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="1" loc="(1420,1500)" name="Controlled Buffer"/> <comp lib="0" loc="(640,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="OBJ_BUS"/> </comp> <comp lib="0" loc="(580,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1420,550)" name="Controlled Buffer"/> <comp lib="1" loc="(1390,180)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(140,120)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1020,760)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(130,700)" name="Tunnel"> <a name="label" val="/VIS"/> </comp> </circuit> <circuit name="OAM_FIFO_PIPELINE"> <a name="circuit" val="OAM_FIFO_PIPELINE"/> <a name="clabel" val="FIFO PIPELINE"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M321,51 Q325,61 329,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#79ffd0" height="240" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="174">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="134">SEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="234">/SH7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="67">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="74">#X/EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="194">X/COL2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="84">OBJ DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="68">/7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="234">X/COL3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="274">#0/H</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="254">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="446" y="154">#X/COL1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="361" y="86">T BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="289" y="67">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="194">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="446" y="114">#X/COL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="214">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="67">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="274">X/PRIO</text> <polyline fill="none" points="51,76 56,76" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,85 56,85" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,76 56,85" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="80,30" width="8" x="46" y="76"/> <circ-port height="8" pin="80,90" width="8" x="46" y="206"/> <circ-port height="8" pin="80,860" width="8" x="46" y="126"/> <circ-port height="8" pin="80,380" width="8" x="46" y="226"/> <circ-port height="8" pin="80,710" width="8" x="46" y="186"/> <circ-port height="8" pin="80,900" width="8" x="46" y="166"/> <circ-port height="8" pin="80,750" width="8" x="46" y="266"/> <circ-port height="8" pin="80,790" width="8" x="46" y="246"/> <circ-port height="8" pin="80,950" width="8" x="106" y="46"/> <circ-port height="8" pin="80,980" width="8" x="126" y="46"/> <circ-port height="8" pin="80,1010" width="8" x="146" y="46"/> <circ-port height="8" pin="80,1040" width="8" x="166" y="46"/> <circ-port height="8" pin="80,1070" width="8" x="186" y="46"/> <circ-port height="8" pin="80,1100" width="8" x="206" y="46"/> <circ-port height="8" pin="80,1130" width="8" x="226" y="46"/> <circ-port height="8" pin="80,1160" width="8" x="246" y="46"/> <circ-port height="10" pin="720,190" width="10" x="475" y="105"/> <circ-port height="10" pin="720,470" width="10" x="475" y="145"/> <circ-port height="10" pin="720,700" width="10" x="475" y="65"/> <circ-port height="10" pin="720,1040" width="10" x="475" y="185"/> <circ-port height="10" pin="720,1100" width="10" x="475" y="225"/> <circ-port height="10" pin="720,1160" width="10" x="475" y="265"/> <circ-port height="8" pin="80,450" width="8" x="286" y="46"/> <circ-port height="8" pin="80,480" width="8" x="306" y="46"/> <circ-port height="8" pin="80,510" width="8" x="326" y="46"/> <circ-port height="8" pin="80,540" width="8" x="346" y="46"/> <circ-port height="8" pin="80,570" width="8" x="366" y="46"/> <circ-port height="8" pin="80,600" width="8" x="386" y="46"/> <circ-port height="8" pin="80,630" width="8" x="406" y="46"/> <circ-port height="8" pin="80,660" width="8" x="426" y="46"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(120,950)" to="(120,1020)"/> <wire from="(220,810)" to="(220,880)"/> <wire from="(360,1160)" to="(410,1160)"/> <wire from="(430,270)" to="(430,290)"/> <wire from="(460,460)" to="(460,480)"/> <wire from="(460,860)" to="(460,880)"/> <wire from="(200,370)" to="(240,370)"/> <wire from="(200,690)" to="(240,690)"/> <wire from="(80,710)" to="(240,710)"/> <wire from="(80,980)" to="(110,980)"/> <wire from="(450,230)" to="(480,230)"/> <wire from="(260,1090)" to="(280,1090)"/> <wire from="(450,240)" to="(470,240)"/> <wire from="(390,1140)" to="(410,1140)"/> <wire from="(220,410)" to="(220,520)"/> <wire from="(80,510)" to="(100,510)"/> <wire from="(160,30)" to="(180,30)"/> <wire from="(450,250)" to="(460,250)"/> <wire from="(140,460)" to="(140,510)"/> <wire from="(110,1030)" to="(120,1030)"/> <wire from="(220,520)" to="(220,700)"/> <wire from="(300,1020)" to="(300,1080)"/> <wire from="(370,390)" to="(500,390)"/> <wire from="(260,1100)" to="(320,1100)"/> <wire from="(160,30)" to="(160,670)"/> <wire from="(240,970)" to="(430,970)"/> <wire from="(300,890)" to="(300,1020)"/> <wire from="(450,900)" to="(500,900)"/> <wire from="(450,980)" to="(500,980)"/> <wire from="(450,580)" to="(500,580)"/> <wire from="(450,500)" to="(500,500)"/> <wire from="(90,540)" to="(90,550)"/> <wire from="(470,200)" to="(470,210)"/> <wire from="(470,520)" to="(470,540)"/> <wire from="(470,920)" to="(470,940)"/> <wire from="(220,810)" to="(390,810)"/> <wire from="(200,100)" to="(240,100)"/> <wire from="(220,520)" to="(260,520)"/> <wire from="(460,280)" to="(500,280)"/> <wire from="(90,560)" to="(120,560)"/> <wire from="(80,630)" to="(110,630)"/> <wire from="(470,940)" to="(500,940)"/> <wire from="(470,540)" to="(500,540)"/> <wire from="(700,700)" to="(720,700)"/> <wire from="(300,1020)" to="(320,1020)"/> <wire from="(450,210)" to="(470,210)"/> <wire from="(480,240)" to="(500,240)"/> <wire from="(220,700)" to="(220,810)"/> <wire from="(450,260)" to="(450,300)"/> <wire from="(220,700)" to="(240,700)"/> <wire from="(240,630)" to="(700,630)"/> <wire from="(220,30)" to="(220,80)"/> <wire from="(110,480)" to="(110,530)"/> <wire from="(110,1080)" to="(120,1080)"/> <wire from="(450,1040)" to="(720,1040)"/> <wire from="(80,570)" to="(90,570)"/> <wire from="(390,1080)" to="(390,1140)"/> <wire from="(200,370)" to="(200,690)"/> <wire from="(360,1100)" to="(410,1100)"/> <wire from="(200,100)" to="(200,370)"/> <wire from="(680,470)" to="(720,470)"/> <wire from="(200,860)" to="(200,890)"/> <wire from="(80,750)" to="(500,750)"/> <wire from="(370,110)" to="(370,390)"/> <wire from="(80,90)" to="(240,90)"/> <wire from="(280,890)" to="(300,890)"/> <wire from="(260,1110)" to="(280,1110)"/> <wire from="(390,1080)" to="(410,1080)"/> <wire from="(410,460)" to="(430,460)"/> <wire from="(220,130)" to="(500,130)"/> <wire from="(80,1010)" to="(100,1010)"/> <wire from="(140,460)" to="(410,460)"/> <wire from="(220,80)" to="(220,130)"/> <wire from="(80,540)" to="(90,540)"/> <wire from="(450,840)" to="(500,840)"/> <wire from="(450,440)" to="(500,440)"/> <wire from="(90,1040)" to="(90,1050)"/> <wire from="(90,560)" to="(90,570)"/> <wire from="(480,230)" to="(480,240)"/> <wire from="(110,810)" to="(220,810)"/> <wire from="(460,930)" to="(460,960)"/> <wire from="(450,440)" to="(450,470)"/> <wire from="(460,530)" to="(460,560)"/> <wire from="(450,840)" to="(450,870)"/> <wire from="(280,1160)" to="(320,1160)"/> <wire from="(460,860)" to="(500,860)"/> <wire from="(100,570)" to="(100,600)"/> <wire from="(460,460)" to="(500,460)"/> <wire from="(280,90)" to="(500,90)"/> <wire from="(80,380)" to="(240,380)"/> <wire from="(80,1130)" to="(110,1130)"/> <wire from="(90,1060)" to="(120,1060)"/> <wire from="(470,880)" to="(500,880)"/> <wire from="(470,480)" to="(500,480)"/> <wire from="(680,700)" to="(700,700)"/> <wire from="(160,670)" to="(500,670)"/> <wire from="(220,80)" to="(240,80)"/> <wire from="(220,880)" to="(240,880)"/> <wire from="(110,980)" to="(110,1030)"/> <wire from="(450,480)" to="(460,480)"/> <wire from="(450,880)" to="(460,880)"/> <wire from="(110,580)" to="(110,630)"/> <wire from="(80,1070)" to="(90,1070)"/> <wire from="(390,1020)" to="(390,1080)"/> <wire from="(120,590)" to="(120,660)"/> <wire from="(370,390)" to="(370,530)"/> <wire from="(360,1040)" to="(410,1040)"/> <wire from="(430,950)" to="(430,970)"/> <wire from="(460,180)" to="(460,200)"/> <wire from="(80,450)" to="(120,450)"/> <wire from="(200,890)" to="(240,890)"/> <wire from="(280,700)" to="(500,700)"/> <wire from="(90,550)" to="(120,550)"/> <wire from="(450,510)" to="(480,510)"/> <wire from="(450,910)" to="(480,910)"/> <wire from="(390,1020)" to="(410,1020)"/> <wire from="(450,920)" to="(470,920)"/> <wire from="(450,520)" to="(470,520)"/> <wire from="(100,570)" to="(120,570)"/> <wire from="(200,30)" to="(220,30)"/> <wire from="(450,530)" to="(460,530)"/> <wire from="(450,930)" to="(460,930)"/> <wire from="(280,1040)" to="(280,1090)"/> <wire from="(80,1040)" to="(90,1040)"/> <wire from="(370,110)" to="(500,110)"/> <wire from="(300,530)" to="(370,530)"/> <wire from="(450,220)" to="(500,220)"/> <wire from="(450,300)" to="(500,300)"/> <wire from="(90,1060)" to="(90,1070)"/> <wire from="(470,480)" to="(470,490)"/> <wire from="(470,880)" to="(470,890)"/> <wire from="(470,240)" to="(470,260)"/> <wire from="(390,810)" to="(390,1020)"/> <wire from="(80,660)" to="(120,660)"/> <wire from="(100,1070)" to="(100,1100)"/> <wire from="(460,560)" to="(500,560)"/> <wire from="(460,960)" to="(500,960)"/> <wire from="(100,510)" to="(100,540)"/> <wire from="(470,260)" to="(500,260)"/> <wire from="(300,1140)" to="(320,1140)"/> <wire from="(410,290)" to="(430,290)"/> <wire from="(480,520)" to="(500,520)"/> <wire from="(450,890)" to="(470,890)"/> <wire from="(480,920)" to="(500,920)"/> <wire from="(450,490)" to="(470,490)"/> <wire from="(100,540)" to="(120,540)"/> <wire from="(80,600)" to="(100,600)"/> <wire from="(450,940)" to="(450,980)"/> <wire from="(450,540)" to="(450,580)"/> <wire from="(110,1080)" to="(110,1130)"/> <wire from="(80,30)" to="(160,30)"/> <wire from="(450,1160)" to="(720,1160)"/> <wire from="(120,450)" to="(120,520)"/> <wire from="(120,1090)" to="(120,1160)"/> <wire from="(700,630)" to="(700,700)"/> <wire from="(80,860)" to="(130,860)"/> <wire from="(680,190)" to="(720,190)"/> <wire from="(80,950)" to="(120,950)"/> <wire from="(110,810)" to="(110,840)"/> <wire from="(80,790)" to="(500,790)"/> <wire from="(80,480)" to="(110,480)"/> <wire from="(90,1050)" to="(120,1050)"/> <wire from="(220,130)" to="(220,360)"/> <wire from="(240,970)" to="(240,1080)"/> <wire from="(220,410)" to="(500,410)"/> <wire from="(410,290)" to="(410,460)"/> <wire from="(110,840)" to="(130,840)"/> <wire from="(100,1070)" to="(120,1070)"/> <wire from="(220,360)" to="(220,410)"/> <wire from="(110,530)" to="(120,530)"/> <wire from="(300,1080)" to="(300,1140)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(480,910)" to="(480,920)"/> <wire from="(480,510)" to="(480,520)"/> <wire from="(450,160)" to="(450,190)"/> <wire from="(460,250)" to="(460,280)"/> <wire from="(80,1160)" to="(120,1160)"/> <wire from="(240,540)" to="(240,630)"/> <wire from="(100,1010)" to="(100,1040)"/> <wire from="(280,1040)" to="(320,1040)"/> <wire from="(140,970)" to="(240,970)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(280,370)" to="(500,370)"/> <wire from="(170,860)" to="(200,860)"/> <wire from="(80,900)" to="(240,900)"/> <wire from="(470,200)" to="(500,200)"/> <wire from="(300,1080)" to="(320,1080)"/> <wire from="(200,690)" to="(200,860)"/> <wire from="(140,970)" to="(140,1010)"/> <wire from="(80,1100)" to="(100,1100)"/> <wire from="(100,1040)" to="(120,1040)"/> <wire from="(240,540)" to="(260,540)"/> <wire from="(220,360)" to="(240,360)"/> <wire from="(450,200)" to="(460,200)"/> <wire from="(450,1100)" to="(720,1100)"/> <wire from="(280,1110)" to="(280,1160)"/> <wire from="(110,580)" to="(120,580)"/> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T5"/> </comp> <comp lib="0" loc="(80,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(80,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#0/H"/> </comp> <comp loc="(360,1150)" name="D-latch"/> <comp lib="0" loc="(80,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(430,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(720,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X/EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(720,1160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\PRIO"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(140,1010)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(80,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SEL"/> </comp> <comp lib="0" loc="(240,1080)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(298,883)" name="Text"> <a name="text" val="LDAT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp loc="(680,70)" name="SHIFT_REG_LOAD"/> <comp lib="0" loc="(80,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(80,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp loc="(450,1030)" name="D-latch"/> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T3"/> </comp> <comp lib="1" loc="(300,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp loc="(360,1030)" name="D-latch"/> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T4"/> </comp> <comp lib="1" loc="(280,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(180,30)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="6" loc="(301,363)" name="Text"> <a name="text" val="T/SR1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(313,523)" name="Text"> <a name="text" val="EN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(430,460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(720,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\COL1"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(280,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(368,827)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(720,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\COL0"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(280,370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T0"/> </comp> <comp lib="0" loc="(80,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T2"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH7"/> </comp> <comp lib="6" loc="(300,693)" name="Text"> <a name="text" val="LOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(450,1150)" name="D-latch"/> <comp lib="0" loc="(720,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\COL2"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(430,950)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(280,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T6"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T1"/> </comp> <comp lib="0" loc="(80,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(80,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(80,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(720,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\COL3"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(220,25)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T7"/> </comp> <comp loc="(680,650)" name="OAM_FIFO_DOWN_COUNTER"/> <comp lib="0" loc="(80,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH5"/> </comp> <comp loc="(360,1090)" name="D-latch"/> <comp loc="(680,350)" name="SHIFT_REG_LOAD"/> <comp loc="(450,1090)" name="D-latch"/> <comp lib="6" loc="(301,82)" name="Text"> <a name="text" val="T/SR0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(170,850)" name="D-latch"/> </circuit> <circuit name="OAM_FIFO_DOWN_COUNTER"> <a name="circuit" val="OAM_FIFO_DOWN_COUNTER"/> <a name="clabel" val="FIFO DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M105,52 Q109,62 113,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#a7c2ff" height="360" stroke="#000000" stroke-width="2" width="180" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="244">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="104">#X\EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="104">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="385">IN7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="154">#0/H</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,74 56,66" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,50" width="8" x="46" y="66"/> <circ-port height="8" pin="100,120" width="8" x="46" y="186"/> <circ-port height="8" pin="100,210" width="8" x="46" y="146"/> <circ-port height="8" pin="100,320" width="8" x="46" y="96"/> <circ-port height="8" pin="100,510" width="8" x="46" y="236"/> <circ-port height="8" pin="100,710" width="8" x="46" y="256"/> <circ-port height="8" pin="100,910" width="8" x="46" y="276"/> <circ-port height="8" pin="100,1110" width="8" x="46" y="296"/> <circ-port height="8" pin="100,1310" width="8" x="46" y="316"/> <circ-port height="8" pin="100,1500" width="8" x="46" y="336"/> <circ-port height="8" pin="100,1700" width="8" x="46" y="356"/> <circ-port height="8" pin="100,1900" width="8" x="46" y="376"/> <circ-port height="10" pin="650,130" width="10" x="225" y="95"/> <circ-anchor facing="east" height="6" width="6" x="227" y="47"/> </appear> <wire from="(290,620)" to="(610,620)"/> <wire from="(130,1740)" to="(130,1940)"/> <wire from="(530,1400)" to="(590,1400)"/> <wire from="(310,1860)" to="(310,1940)"/> <wire from="(310,1460)" to="(310,1540)"/> <wire from="(310,1780)" to="(310,1860)"/> <wire from="(470,1750)" to="(470,1780)"/> <wire from="(360,200)" to="(360,230)"/> <wire from="(200,1660)" to="(230,1660)"/> <wire from="(310,1580)" to="(470,1580)"/> <wire from="(270,1660)" to="(290,1660)"/> <wire from="(310,1460)" to="(330,1460)"/> <wire from="(310,1860)" to="(330,1860)"/> <wire from="(390,1060)" to="(410,1060)"/> <wire from="(390,660)" to="(410,660)"/> <wire from="(450,960)" to="(470,960)"/> <wire from="(450,1280)" to="(470,1280)"/> <wire from="(450,880)" to="(470,880)"/> <wire from="(450,480)" to="(470,480)"/> <wire from="(450,560)" to="(470,560)"/> <wire from="(260,500)" to="(260,540)"/> <wire from="(260,1300)" to="(260,1340)"/> <wire from="(260,900)" to="(260,940)"/> <wire from="(470,1670)" to="(470,1710)"/> <wire from="(400,320)" to="(400,370)"/> <wire from="(100,50)" to="(170,50)"/> <wire from="(130,750)" to="(130,950)"/> <wire from="(130,1150)" to="(130,1350)"/> <wire from="(200,1460)" to="(200,1660)"/> <wire from="(290,1760)" to="(410,1760)"/> <wire from="(390,1650)" to="(390,1850)"/> <wire from="(530,1390)" to="(570,1390)"/> <wire from="(380,350)" to="(380,370)"/> <wire from="(310,470)" to="(310,550)"/> <wire from="(310,790)" to="(310,870)"/> <wire from="(310,870)" to="(310,950)"/> <wire from="(310,1190)" to="(310,1270)"/> <wire from="(310,1270)" to="(310,1350)"/> <wire from="(170,1500)" to="(170,1520)"/> <wire from="(170,1900)" to="(170,1920)"/> <wire from="(470,760)" to="(470,790)"/> <wire from="(470,1160)" to="(470,1190)"/> <wire from="(370,1470)" to="(410,1470)"/> <wire from="(370,1870)" to="(410,1870)"/> <wire from="(610,620)" to="(610,1410)"/> <wire from="(200,670)" to="(230,670)"/> <wire from="(200,1070)" to="(230,1070)"/> <wire from="(310,590)" to="(470,590)"/> <wire from="(310,990)" to="(470,990)"/> <wire from="(310,1740)" to="(340,1740)"/> <wire from="(310,470)" to="(330,470)"/> <wire from="(270,1070)" to="(290,1070)"/> <wire from="(270,670)" to="(290,670)"/> <wire from="(550,1220)" to="(550,1380)"/> <wire from="(310,1270)" to="(330,1270)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(310,870)" to="(330,870)"/> <wire from="(100,120)" to="(380,120)"/> <wire from="(470,680)" to="(470,720)"/> <wire from="(470,1080)" to="(470,1120)"/> <wire from="(130,320)" to="(400,320)"/> <wire from="(180,1530)" to="(260,1530)"/> <wire from="(180,1930)" to="(260,1930)"/> <wire from="(290,820)" to="(290,870)"/> <wire from="(290,1220)" to="(290,1270)"/> <wire from="(240,1890)" to="(240,1950)"/> <wire from="(240,1490)" to="(240,1550)"/> <wire from="(100,1700)" to="(170,1700)"/> <wire from="(310,1400)" to="(310,1460)"/> <wire from="(200,1270)" to="(200,1460)"/> <wire from="(260,260)" to="(330,260)"/> <wire from="(270,1480)" to="(330,1480)"/> <wire from="(270,1880)" to="(330,1880)"/> <wire from="(220,1710)" to="(470,1710)"/> <wire from="(180,1550)" to="(240,1550)"/> <wire from="(180,1950)" to="(240,1950)"/> <wire from="(360,1740)" to="(410,1740)"/> <wire from="(200,470)" to="(200,670)"/> <wire from="(200,870)" to="(200,1070)"/> <wire from="(290,770)" to="(410,770)"/> <wire from="(290,1170)" to="(410,1170)"/> <wire from="(390,660)" to="(390,860)"/> <wire from="(390,1060)" to="(390,1260)"/> <wire from="(200,350)" to="(380,350)"/> <wire from="(290,820)" to="(590,820)"/> <wire from="(360,140)" to="(360,160)"/> <wire from="(170,510)" to="(170,530)"/> <wire from="(210,230)" to="(210,250)"/> <wire from="(170,1310)" to="(170,1330)"/> <wire from="(170,910)" to="(170,930)"/> <wire from="(220,1680)" to="(220,1710)"/> <wire from="(370,480)" to="(410,480)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(370,1280)" to="(410,1280)"/> <wire from="(420,130)" to="(460,130)"/> <wire from="(290,1460)" to="(290,1560)"/> <wire from="(290,1860)" to="(290,1960)"/> <wire from="(130,320)" to="(130,550)"/> <wire from="(530,1380)" to="(550,1380)"/> <wire from="(310,750)" to="(340,750)"/> <wire from="(310,1150)" to="(340,1150)"/> <wire from="(290,430)" to="(630,430)"/> <wire from="(210,230)" to="(360,230)"/> <wire from="(130,1540)" to="(150,1540)"/> <wire from="(130,1940)" to="(150,1940)"/> <wire from="(220,1480)" to="(230,1480)"/> <wire from="(220,1880)" to="(230,1880)"/> <wire from="(180,540)" to="(260,540)"/> <wire from="(180,1340)" to="(260,1340)"/> <wire from="(180,940)" to="(260,940)"/> <wire from="(390,410)" to="(390,460)"/> <wire from="(440,60)" to="(440,110)"/> <wire from="(240,900)" to="(240,960)"/> <wire from="(100,1110)" to="(170,1110)"/> <wire from="(240,1300)" to="(240,1360)"/> <wire from="(310,410)" to="(310,470)"/> <wire from="(100,710)" to="(170,710)"/> <wire from="(240,500)" to="(240,560)"/> <wire from="(270,490)" to="(330,490)"/> <wire from="(270,1290)" to="(330,1290)"/> <wire from="(270,890)" to="(330,890)"/> <wire from="(330,190)" to="(330,260)"/> <wire from="(220,1120)" to="(470,1120)"/> <wire from="(220,720)" to="(470,720)"/> <wire from="(180,1360)" to="(240,1360)"/> <wire from="(180,960)" to="(240,960)"/> <wire from="(180,560)" to="(240,560)"/> <wire from="(360,1150)" to="(410,1150)"/> <wire from="(360,750)" to="(410,750)"/> <wire from="(630,430)" to="(630,1420)"/> <wire from="(220,690)" to="(220,720)"/> <wire from="(220,1090)" to="(220,1120)"/> <wire from="(340,180)" to="(380,180)"/> <wire from="(290,470)" to="(290,570)"/> <wire from="(290,870)" to="(290,970)"/> <wire from="(290,1270)" to="(290,1370)"/> <wire from="(360,140)" to="(380,140)"/> <wire from="(390,1450)" to="(410,1450)"/> <wire from="(390,1850)" to="(410,1850)"/> <wire from="(450,1670)" to="(470,1670)"/> <wire from="(450,1750)" to="(470,1750)"/> <wire from="(260,1690)" to="(260,1730)"/> <wire from="(130,550)" to="(150,550)"/> <wire from="(130,1350)" to="(150,1350)"/> <wire from="(130,950)" to="(150,950)"/> <wire from="(450,1360)" to="(460,1360)"/> <wire from="(220,490)" to="(230,490)"/> <wire from="(220,1290)" to="(230,1290)"/> <wire from="(220,890)" to="(230,890)"/> <wire from="(130,1540)" to="(130,1740)"/> <wire from="(190,210)" to="(310,210)"/> <wire from="(590,820)" to="(590,1400)"/> <wire from="(310,190)" to="(310,210)"/> <wire from="(130,160)" to="(240,160)"/> <wire from="(310,1580)" to="(310,1660)"/> <wire from="(310,1660)" to="(310,1740)"/> <wire from="(470,1550)" to="(470,1580)"/> <wire from="(470,1870)" to="(470,1910)"/> <wire from="(200,1860)" to="(230,1860)"/> <wire from="(200,1460)" to="(230,1460)"/> <wire from="(100,320)" to="(130,320)"/> <wire from="(210,70)" to="(210,230)"/> <wire from="(310,1780)" to="(470,1780)"/> <wire from="(270,1460)" to="(290,1460)"/> <wire from="(270,1860)" to="(290,1860)"/> <wire from="(310,1660)" to="(330,1660)"/> <wire from="(390,460)" to="(410,460)"/> <wire from="(390,1260)" to="(410,1260)"/> <wire from="(390,860)" to="(410,860)"/> <wire from="(440,110)" to="(460,110)"/> <wire from="(450,680)" to="(470,680)"/> <wire from="(450,760)" to="(470,760)"/> <wire from="(450,1080)" to="(470,1080)"/> <wire from="(450,1160)" to="(470,1160)"/> <wire from="(260,700)" to="(260,740)"/> <wire from="(260,1100)" to="(260,1140)"/> <wire from="(290,1020)" to="(570,1020)"/> <wire from="(130,200)" to="(150,200)"/> <wire from="(470,1470)" to="(470,1510)"/> <wire from="(310,1400)" to="(450,1400)"/> <wire from="(200,350)" to="(200,470)"/> <wire from="(130,1350)" to="(130,1540)"/> <wire from="(130,950)" to="(130,1150)"/> <wire from="(130,550)" to="(130,750)"/> <wire from="(210,290)" to="(650,290)"/> <wire from="(200,1660)" to="(200,1860)"/> <wire from="(290,1960)" to="(410,1960)"/> <wire from="(290,1560)" to="(410,1560)"/> <wire from="(390,1450)" to="(390,1650)"/> <wire from="(530,1420)" to="(630,1420)"/> <wire from="(310,590)" to="(310,670)"/> <wire from="(310,670)" to="(310,750)"/> <wire from="(310,1070)" to="(310,1150)"/> <wire from="(310,990)" to="(310,1070)"/> <wire from="(170,1700)" to="(170,1720)"/> <wire from="(470,560)" to="(470,590)"/> <wire from="(470,960)" to="(470,990)"/> <wire from="(370,1670)" to="(410,1670)"/> <wire from="(200,870)" to="(230,870)"/> <wire from="(200,470)" to="(230,470)"/> <wire from="(200,1270)" to="(230,1270)"/> <wire from="(310,790)" to="(470,790)"/> <wire from="(310,1190)" to="(470,1190)"/> <wire from="(440,190)" to="(440,350)"/> <wire from="(310,1940)" to="(340,1940)"/> <wire from="(310,1540)" to="(340,1540)"/> <wire from="(270,1270)" to="(290,1270)"/> <wire from="(270,470)" to="(290,470)"/> <wire from="(270,870)" to="(290,870)"/> <wire from="(310,670)" to="(330,670)"/> <wire from="(310,1070)" to="(330,1070)"/> <wire from="(190,70)" to="(210,70)"/> <wire from="(470,880)" to="(470,920)"/> <wire from="(470,480)" to="(470,520)"/> <wire from="(470,1280)" to="(470,1320)"/> <wire from="(210,250)" to="(230,250)"/> <wire from="(180,1730)" to="(260,1730)"/> <wire from="(650,290)" to="(650,1950)"/> <wire from="(290,1020)" to="(290,1070)"/> <wire from="(290,620)" to="(290,670)"/> <wire from="(100,1500)" to="(170,1500)"/> <wire from="(390,1260)" to="(390,1450)"/> <wire from="(240,1690)" to="(240,1750)"/> <wire from="(100,1900)" to="(170,1900)"/> <wire from="(270,1680)" to="(330,1680)"/> <wire from="(380,350)" to="(440,350)"/> <wire from="(220,1510)" to="(470,1510)"/> <wire from="(220,1910)" to="(470,1910)"/> <wire from="(130,220)" to="(130,290)"/> <wire from="(180,1750)" to="(240,1750)"/> <wire from="(360,1940)" to="(410,1940)"/> <wire from="(360,1540)" to="(410,1540)"/> <wire from="(200,670)" to="(200,870)"/> <wire from="(200,1070)" to="(200,1270)"/> <wire from="(290,970)" to="(410,970)"/> <wire from="(290,570)" to="(410,570)"/> <wire from="(290,1370)" to="(410,1370)"/> <wire from="(390,860)" to="(390,1060)"/> <wire from="(390,460)" to="(390,660)"/> <wire from="(170,710)" to="(170,730)"/> <wire from="(210,270)" to="(210,290)"/> <wire from="(170,1110)" to="(170,1130)"/> <wire from="(220,1480)" to="(220,1510)"/> <wire from="(220,1880)" to="(220,1910)"/> <wire from="(370,680)" to="(410,680)"/> <wire from="(370,1080)" to="(410,1080)"/> <wire from="(290,1660)" to="(290,1760)"/> <wire from="(310,550)" to="(340,550)"/> <wire from="(310,950)" to="(340,950)"/> <wire from="(310,1350)" to="(340,1350)"/> <wire from="(420,190)" to="(440,190)"/> <wire from="(290,430)" to="(290,470)"/> <wire from="(130,220)" to="(150,220)"/> <wire from="(130,1740)" to="(150,1740)"/> <wire from="(220,1680)" to="(230,1680)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(180,740)" to="(260,740)"/> <wire from="(180,1140)" to="(260,1140)"/> <wire from="(240,1100)" to="(240,1160)"/> <wire from="(530,1410)" to="(610,1410)"/> <wire from="(100,1310)" to="(170,1310)"/> <wire from="(290,1220)" to="(550,1220)"/> <wire from="(100,510)" to="(170,510)"/> <wire from="(570,1020)" to="(570,1390)"/> <wire from="(100,910)" to="(170,910)"/> <wire from="(240,60)" to="(440,60)"/> <wire from="(450,1950)" to="(650,1950)"/> <wire from="(240,700)" to="(240,760)"/> <wire from="(270,690)" to="(330,690)"/> <wire from="(270,1090)" to="(330,1090)"/> <wire from="(220,1320)" to="(470,1320)"/> <wire from="(220,520)" to="(470,520)"/> <wire from="(220,920)" to="(470,920)"/> <wire from="(180,760)" to="(240,760)"/> <wire from="(180,1160)" to="(240,1160)"/> <wire from="(360,1350)" to="(410,1350)"/> <wire from="(360,950)" to="(410,950)"/> <wire from="(360,550)" to="(410,550)"/> <wire from="(190,60)" to="(240,60)"/> <wire from="(100,210)" to="(150,210)"/> <wire from="(220,890)" to="(220,920)"/> <wire from="(220,490)" to="(220,520)"/> <wire from="(220,1290)" to="(220,1320)"/> <wire from="(290,670)" to="(290,770)"/> <wire from="(290,1070)" to="(290,1170)"/> <wire from="(240,60)" to="(240,160)"/> <wire from="(340,160)" to="(360,160)"/> <wire from="(130,160)" to="(130,200)"/> <wire from="(390,1650)" to="(410,1650)"/> <wire from="(450,1550)" to="(470,1550)"/> <wire from="(450,1870)" to="(470,1870)"/> <wire from="(450,1470)" to="(470,1470)"/> <wire from="(260,1890)" to="(260,1930)"/> <wire from="(260,1490)" to="(260,1530)"/> <wire from="(500,130)" to="(650,130)"/> <wire from="(130,750)" to="(150,750)"/> <wire from="(130,1150)" to="(150,1150)"/> <wire from="(210,270)" to="(230,270)"/> <wire from="(220,690)" to="(230,690)"/> <wire from="(220,1090)" to="(230,1090)"/> <comp lib="4" loc="(270,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1870)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="0" loc="(100,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN4"/> </comp> <comp lib="2" loc="(150,1540)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(150,1150)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(384,314)" name="Text"> <a name="text" val="LOAD"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="1" loc="(190,210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(450,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,480)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(500,120)" name="D-latch"/> <comp lib="1" loc="(360,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(450,460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,1740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(270,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="1" loc="(360,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(609,283)" name="Text"> <a name="text" val="CARRY OUT"/> </comp> <comp lib="0" loc="(100,1900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN7"/> </comp> <comp lib="1" loc="(360,1350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(270,1660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(170,50)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="1" loc="(360,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(100,1700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN6"/> </comp> <comp lib="4" loc="(450,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,1260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1400)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> </comp> <comp lib="2" loc="(150,950)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(370,1280)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,680)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(270,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(360,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(414,410)" name="Text"> <a name="text" val="UPD"/> </comp> <comp lib="1" loc="(450,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(100,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN3"/> </comp> <comp lib="1" loc="(450,1550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1080)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(450,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1470)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(310,410)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(450,1850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(150,750)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(450,1450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(150,1740)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(150,1940)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(150,550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(340,160)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,1500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN5"/> </comp> <comp lib="1" loc="(360,1940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,410)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(222,369)" name="Text"> <a name="text" val="STEP"/> </comp> <comp lib="1" loc="(450,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(450,1060)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1670)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(270,1270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(150,1350)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(420,130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,880)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="SELECT_2.3.5.7_PIXEL"> <a name="circuit" val="SELECT_2.3.5.7_PIXEL"/> <a name="clabel" val="SELECT PIXEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#a3d0ff" height="111" stroke="#000000" stroke-width="2" width="260" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="84">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="105">H1''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="124">H2''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="144">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="73">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="94">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="113">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="134">/SH7</text> <polyline fill="none" points="50,55 57,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,65 57,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="57,56 57,64" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="70,30" width="8" x="46" y="56"/> <circ-port height="8" pin="70,200" width="8" x="46" y="136"/> <circ-port height="8" pin="70,70" width="8" x="46" y="76"/> <circ-port height="8" pin="70,110" width="8" x="46" y="96"/> <circ-port height="8" pin="70,150" width="8" x="46" y="116"/> <circ-port height="10" pin="300,150" width="10" x="305" y="65"/> <circ-port height="10" pin="300,240" width="10" x="305" y="85"/> <circ-port height="10" pin="300,330" width="10" x="305" y="105"/> <circ-port height="10" pin="300,420" width="10" x="305" y="125"/> <circ-anchor facing="east" height="6" width="6" x="307" y="47"/> </appear> <wire from="(170,240)" to="(230,240)"/> <wire from="(170,330)" to="(230,330)"/> <wire from="(160,30)" to="(210,30)"/> <wire from="(210,220)" to="(210,310)"/> <wire from="(210,130)" to="(210,220)"/> <wire from="(210,310)" to="(210,400)"/> <wire from="(130,270)" to="(170,270)"/> <wire from="(130,290)" to="(170,290)"/> <wire from="(170,240)" to="(170,270)"/> <wire from="(90,70)" to="(90,100)"/> <wire from="(90,120)" to="(90,150)"/> <wire from="(70,200)" to="(100,200)"/> <wire from="(270,150)" to="(300,150)"/> <wire from="(270,330)" to="(300,330)"/> <wire from="(270,240)" to="(300,240)"/> <wire from="(270,420)" to="(300,420)"/> <wire from="(210,30)" to="(210,130)"/> <wire from="(100,200)" to="(100,240)"/> <wire from="(170,290)" to="(170,330)"/> <wire from="(150,150)" to="(150,260)"/> <wire from="(150,310)" to="(150,420)"/> <wire from="(70,70)" to="(90,70)"/> <wire from="(70,150)" to="(90,150)"/> <wire from="(70,110)" to="(90,110)"/> <wire from="(130,260)" to="(150,260)"/> <wire from="(130,310)" to="(150,310)"/> <wire from="(210,220)" to="(230,220)"/> <wire from="(210,400)" to="(230,400)"/> <wire from="(210,130)" to="(230,130)"/> <wire from="(210,310)" to="(230,310)"/> <wire from="(110,130)" to="(110,240)"/> <wire from="(150,150)" to="(230,150)"/> <wire from="(150,420)" to="(230,420)"/> <wire from="(70,30)" to="(140,30)"/> <comp lib="6" loc="(365,452)" name="Text"> <a name="text" val="SPR Load High Tile Byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(300,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H2''"/> </comp> <comp lib="0" loc="(300,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(300,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H1''"/> </comp> <comp loc="(270,320)" name="D-latch"> <a name="label" val="sh5_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(140,30)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp loc="(270,140)" name="D-latch"> <a name="label" val="sh2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(270,410)" name="D-latch"> <a name="label" val="sh7_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(110,240)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="0" loc="(70,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="6" loc="(358,272)" name="Text"> <a name="text" val="SPR Load X POSITION"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(362,360)" name="Text"> <a name="text" val="SPR Load Low Tile Byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(237,40)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(110,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp loc="(270,230)" name="D-latch"> <a name="label" val="sh3_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR\O"/> </comp> <comp lib="6" loc="(373,182)" name="Text"> <a name="text" val="SPR Load FLAG (ATTRIBUTE)"/> <a name="font" val="SansSerif bold 12"/> </comp> </circuit> <circuit name="H_INVERSION"> <a name="circuit" val="H_INVERSION"/> <a name="clabel" val="H INVERSION"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff208d" height="321" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="94">PD/FIFO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="275">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="254">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="244">/T4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="304">/T6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="134">OB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="334">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="214">/T3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="274">/T5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="334">/T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="114">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="184">/T2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="214">PD1</text> <polyline fill="none" points="56,67 56,73" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="234">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="294">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="124">/T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="154">/T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="314">PD6</text> <polyline fill="none" points="56,75 50,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 50,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,60" width="8" x="46" y="66"/> <circ-port height="8" pin="90,120" width="8" x="46" y="106"/> <circ-port height="8" pin="90,170" width="8" x="46" y="126"/> <circ-port height="8" pin="90,220" width="8" x="46" y="86"/> <circ-port height="8" pin="90,270" width="8" x="46" y="186"/> <circ-port height="8" pin="90,330" width="8" x="46" y="206"/> <circ-port height="8" pin="90,390" width="8" x="46" y="226"/> <circ-port height="8" pin="90,450" width="8" x="46" y="246"/> <circ-port height="8" pin="90,510" width="8" x="46" y="266"/> <circ-port height="8" pin="90,570" width="8" x="46" y="286"/> <circ-port height="8" pin="90,630" width="8" x="46" y="306"/> <circ-port height="8" pin="90,690" width="8" x="46" y="326"/> <circ-port height="10" pin="540,250" width="10" x="155" y="115"/> <circ-port height="10" pin="540,310" width="10" x="155" y="145"/> <circ-port height="10" pin="540,370" width="10" x="155" y="175"/> <circ-port height="10" pin="540,430" width="10" x="155" y="205"/> <circ-port height="10" pin="540,490" width="10" x="155" y="235"/> <circ-port height="10" pin="540,550" width="10" x="155" y="265"/> <circ-port height="10" pin="540,610" width="10" x="155" y="295"/> <circ-port height="10" pin="540,670" width="10" x="155" y="325"/> <circ-anchor facing="east" height="6" width="6" x="157" y="47"/> </appear> <wire from="(90,390)" to="(210,390)"/> <wire from="(340,580)" to="(390,580)"/> <wire from="(340,460)" to="(390,460)"/> <wire from="(340,700)" to="(390,700)"/> <wire from="(340,340)" to="(390,340)"/> <wire from="(370,60)" to="(370,260)"/> <wire from="(90,220)" to="(460,220)"/> <wire from="(150,290)" to="(150,690)"/> <wire from="(460,220)" to="(460,240)"/> <wire from="(190,350)" to="(190,630)"/> <wire from="(230,410)" to="(230,570)"/> <wire from="(520,670)" to="(540,670)"/> <wire from="(520,550)" to="(540,550)"/> <wire from="(520,430)" to="(540,430)"/> <wire from="(520,310)" to="(540,310)"/> <wire from="(370,440)" to="(390,440)"/> <wire from="(370,320)" to="(390,320)"/> <wire from="(370,560)" to="(390,560)"/> <wire from="(370,680)" to="(390,680)"/> <wire from="(320,150)" to="(320,260)"/> <wire from="(270,470)" to="(270,510)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(240,150)" to="(260,150)"/> <wire from="(230,570)" to="(310,570)"/> <wire from="(230,410)" to="(310,410)"/> <wire from="(320,560)" to="(320,620)"/> <wire from="(320,440)" to="(320,500)"/> <wire from="(320,320)" to="(320,380)"/> <wire from="(130,270)" to="(130,710)"/> <wire from="(460,540)" to="(460,600)"/> <wire from="(460,420)" to="(460,480)"/> <wire from="(460,300)" to="(460,360)"/> <wire from="(90,120)" to="(160,120)"/> <wire from="(250,530)" to="(310,530)"/> <wire from="(250,450)" to="(310,450)"/> <wire from="(170,330)" to="(170,650)"/> <wire from="(90,690)" to="(150,690)"/> <wire from="(430,560)" to="(480,560)"/> <wire from="(430,440)" to="(480,440)"/> <wire from="(430,320)" to="(480,320)"/> <wire from="(430,680)" to="(480,680)"/> <wire from="(210,390)" to="(210,590)"/> <wire from="(90,510)" to="(270,510)"/> <wire from="(130,710)" to="(310,710)"/> <wire from="(130,270)" to="(310,270)"/> <wire from="(250,450)" to="(250,530)"/> <wire from="(90,270)" to="(130,270)"/> <wire from="(90,450)" to="(250,450)"/> <wire from="(460,660)" to="(480,660)"/> <wire from="(460,540)" to="(480,540)"/> <wire from="(460,420)" to="(480,420)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(160,80)" to="(180,80)"/> <wire from="(370,380)" to="(370,440)"/> <wire from="(370,260)" to="(370,320)"/> <wire from="(370,500)" to="(370,560)"/> <wire from="(370,620)" to="(370,680)"/> <wire from="(240,90)" to="(240,150)"/> <wire from="(340,400)" to="(390,400)"/> <wire from="(340,640)" to="(390,640)"/> <wire from="(340,280)" to="(390,280)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(190,350)" to="(310,350)"/> <wire from="(190,630)" to="(310,630)"/> <wire from="(160,60)" to="(160,80)"/> <wire from="(160,100)" to="(160,120)"/> <wire from="(90,170)" to="(260,170)"/> <wire from="(90,630)" to="(190,630)"/> <wire from="(210,390)" to="(310,390)"/> <wire from="(210,590)" to="(310,590)"/> <wire from="(520,610)" to="(540,610)"/> <wire from="(520,490)" to="(540,490)"/> <wire from="(520,370)" to="(540,370)"/> <wire from="(520,250)" to="(540,250)"/> <wire from="(300,150)" to="(320,150)"/> <wire from="(370,380)" to="(390,380)"/> <wire from="(370,260)" to="(390,260)"/> <wire from="(370,620)" to="(390,620)"/> <wire from="(370,500)" to="(390,500)"/> <wire from="(90,60)" to="(110,60)"/> <wire from="(90,330)" to="(170,330)"/> <wire from="(320,260)" to="(320,320)"/> <wire from="(320,620)" to="(320,680)"/> <wire from="(320,500)" to="(320,560)"/> <wire from="(320,380)" to="(320,440)"/> <wire from="(460,600)" to="(460,660)"/> <wire from="(460,480)" to="(460,540)"/> <wire from="(460,360)" to="(460,420)"/> <wire from="(460,240)" to="(460,300)"/> <wire from="(430,620)" to="(480,620)"/> <wire from="(430,500)" to="(480,500)"/> <wire from="(430,380)" to="(480,380)"/> <wire from="(430,260)" to="(480,260)"/> <wire from="(270,510)" to="(310,510)"/> <wire from="(270,470)" to="(310,470)"/> <wire from="(130,60)" to="(160,60)"/> <wire from="(150,290)" to="(310,290)"/> <wire from="(150,690)" to="(310,690)"/> <wire from="(460,600)" to="(480,600)"/> <wire from="(460,480)" to="(480,480)"/> <wire from="(460,360)" to="(480,360)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(160,60)" to="(370,60)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(90,570)" to="(230,570)"/> <wire from="(170,330)" to="(310,330)"/> <wire from="(170,650)" to="(310,650)"/> <wire from="(370,320)" to="(370,380)"/> <wire from="(370,440)" to="(370,500)"/> <wire from="(370,560)" to="(370,620)"/> <comp lib="1" loc="(520,430)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(540,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(339,159)" name="Text"> <a name="text" val="HINV"/> </comp> <comp lib="1" loc="(520,550)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="1" loc="(520,670)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp lib="2" loc="(340,280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(540,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(340,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(220,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(340,580)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(520,610)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,630)" name="D-latch"/> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(520,490)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,330)" name="D-latch"/> <comp lib="2" loc="(340,520)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(90,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp loc="(430,510)" name="D-latch"/> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="1" loc="(520,310)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(540,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(430,690)" name="D-latch"/> <comp lib="6" loc="(354,55)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(90,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(110,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp loc="(430,270)" name="D-latch"/> <comp loc="(430,570)" name="D-latch"/> <comp lib="2" loc="(340,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(340,400)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(540,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(430,450)" name="D-latch"/> <comp lib="2" loc="(340,700)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(300,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(340,340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp loc="(430,390)" name="D-latch"/> <comp lib="0" loc="(540,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD/FIFO"/> </comp> <comp lib="1" loc="(520,250)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,370)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="VRAM_BUS_CONTROL"> <a name="circuit" val="VRAM_BUS_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M105,51 Q109,61 113,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fff800" height="271" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="144">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="263">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="184">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="104">XRB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="319" y="225">DB/PAR</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="188" y="193">VRAM BUS CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="284">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="133">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="254">WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="304">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="224">/PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="193">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="104">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="326" y="164">/ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="204">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="164">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="284">RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="74">PD/RB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="123">/W7</text> <circ-port height="8" pin="80,60" width="8" x="46" y="66"/> <circ-port height="8" pin="80,300" width="8" x="46" y="96"/> <circ-port height="8" pin="80,410" width="8" x="46" y="136"/> <circ-port height="8" pin="80,540" width="8" x="46" y="116"/> <circ-port height="8" pin="80,610" width="8" x="46" y="156"/> <circ-port height="8" pin="80,670" width="8" x="46" y="176"/> <circ-port height="8" pin="80,720" width="8" x="46" y="196"/> <circ-port height="8" pin="80,750" width="8" x="46" y="216"/> <circ-port height="8" pin="80,780" width="8" x="46" y="236"/> <circ-port height="8" pin="80,810" width="8" x="46" y="256"/> <circ-port height="8" pin="80,840" width="8" x="46" y="276"/> <circ-port height="8" pin="80,870" width="8" x="46" y="296"/> <circ-port height="10" pin="1310,110" width="10" x="345" y="125"/> <circ-port height="10" pin="1310,170" width="10" x="345" y="65"/> <circ-port height="10" pin="1310,390" width="10" x="345" y="215"/> <circ-port height="10" pin="1310,460" width="10" x="345" y="155"/> <circ-port height="10" pin="1310,610" width="10" x="345" y="275"/> <circ-port height="10" pin="1310,670" width="10" x="345" y="245"/> <circ-port height="10" pin="1310,730" width="10" x="345" y="95"/> <circ-port height="10" pin="1310,790" width="10" x="345" y="185"/> <circ-anchor facing="east" height="6" width="6" x="347" y="47"/> </appear> <wire from="(80,870)" to="(140,870)"/> <wire from="(530,540)" to="(900,540)"/> <wire from="(710,90)" to="(710,230)"/> <wire from="(860,450)" to="(920,450)"/> <wire from="(620,60)" to="(810,60)"/> <wire from="(100,780)" to="(100,790)"/> <wire from="(690,160)" to="(690,230)"/> <wire from="(790,470)" to="(790,500)"/> <wire from="(900,580)" to="(900,610)"/> <wire from="(620,230)" to="(620,450)"/> <wire from="(900,540)" to="(900,560)"/> <wire from="(250,310)" to="(250,720)"/> <wire from="(310,470)" to="(310,500)"/> <wire from="(160,700)" to="(520,700)"/> <wire from="(990,630)" to="(990,650)"/> <wire from="(990,240)" to="(990,450)"/> <wire from="(420,470)" to="(460,470)"/> <wire from="(1080,120)" to="(1080,390)"/> <wire from="(500,470)" to="(540,470)"/> <wire from="(860,250)" to="(880,250)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(1160,120)" to="(1160,170)"/> <wire from="(690,520)" to="(900,520)"/> <wire from="(690,470)" to="(720,470)"/> <wire from="(440,550)" to="(460,550)"/> <wire from="(440,230)" to="(460,230)"/> <wire from="(500,570)" to="(520,570)"/> <wire from="(440,60)" to="(440,230)"/> <wire from="(990,450)" to="(1020,450)"/> <wire from="(1160,680)" to="(1160,740)"/> <wire from="(790,250)" to="(820,250)"/> <wire from="(140,820)" to="(140,870)"/> <wire from="(100,800)" to="(180,800)"/> <wire from="(170,310)" to="(250,310)"/> <wire from="(690,670)" to="(820,670)"/> <wire from="(360,480)" to="(360,530)"/> <wire from="(690,250)" to="(690,300)"/> <wire from="(290,250)" to="(290,310)"/> <wire from="(260,790)" to="(1160,790)"/> <wire from="(810,450)" to="(820,450)"/> <wire from="(810,650)" to="(820,650)"/> <wire from="(710,230)" to="(720,230)"/> <wire from="(330,90)" to="(530,90)"/> <wire from="(530,450)" to="(540,450)"/> <wire from="(320,240)" to="(380,240)"/> <wire from="(80,720)" to="(140,720)"/> <wire from="(960,390)" to="(1080,390)"/> <wire from="(600,380)" to="(920,380)"/> <wire from="(440,60)" to="(620,60)"/> <wire from="(330,60)" to="(330,70)"/> <wire from="(810,230)" to="(810,450)"/> <wire from="(530,450)" to="(530,540)"/> <wire from="(530,230)" to="(530,450)"/> <wire from="(1160,680)" to="(1220,680)"/> <wire from="(880,180)" to="(920,180)"/> <wire from="(1160,120)" to="(1220,120)"/> <wire from="(1160,600)" to="(1220,600)"/> <wire from="(1060,460)" to="(1310,460)"/> <wire from="(1250,730)" to="(1310,730)"/> <wire from="(1250,610)" to="(1310,610)"/> <wire from="(250,720)" to="(1180,720)"/> <wire from="(250,310)" to="(290,310)"/> <wire from="(80,60)" to="(310,60)"/> <wire from="(120,810)" to="(120,840)"/> <wire from="(1260,670)" to="(1310,670)"/> <wire from="(900,580)" to="(920,580)"/> <wire from="(310,280)" to="(790,280)"/> <wire from="(670,470)" to="(690,470)"/> <wire from="(670,230)" to="(690,230)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(760,470)" to="(790,470)"/> <wire from="(600,470)" to="(630,470)"/> <wire from="(990,470)" to="(990,570)"/> <wire from="(440,570)" to="(440,610)"/> <wire from="(690,570)" to="(690,670)"/> <wire from="(160,760)" to="(180,760)"/> <wire from="(860,650)" to="(990,650)"/> <wire from="(960,170)" to="(1160,170)"/> <wire from="(1160,170)" to="(1310,170)"/> <wire from="(1080,120)" to="(1100,120)"/> <wire from="(1200,720)" to="(1220,720)"/> <wire from="(290,530)" to="(360,530)"/> <wire from="(790,400)" to="(790,450)"/> <wire from="(900,470)" to="(900,520)"/> <wire from="(620,230)" to="(630,230)"/> <wire from="(530,90)" to="(530,230)"/> <wire from="(120,810)" to="(180,810)"/> <wire from="(860,230)" to="(920,230)"/> <wire from="(960,610)" to="(1020,610)"/> <wire from="(1080,390)" to="(1310,390)"/> <wire from="(170,530)" to="(290,530)"/> <wire from="(100,800)" to="(100,810)"/> <wire from="(1080,660)" to="(1180,660)"/> <wire from="(80,540)" to="(130,540)"/> <wire from="(80,300)" to="(130,300)"/> <wire from="(690,160)" to="(920,160)"/> <wire from="(790,250)" to="(790,280)"/> <wire from="(900,610)" to="(940,610)"/> <wire from="(330,60)" to="(440,60)"/> <wire from="(80,750)" to="(120,750)"/> <wire from="(440,230)" to="(440,450)"/> <wire from="(310,250)" to="(310,280)"/> <wire from="(140,770)" to="(180,770)"/> <wire from="(110,320)" to="(110,410)"/> <wire from="(420,250)" to="(460,250)"/> <wire from="(80,670)" to="(690,670)"/> <wire from="(500,250)" to="(540,250)"/> <wire from="(900,470)" to="(920,470)"/> <wire from="(1140,100)" to="(1220,100)"/> <wire from="(440,450)" to="(440,550)"/> <wire from="(620,60)" to="(620,230)"/> <wire from="(1160,740)" to="(1160,790)"/> <wire from="(690,300)" to="(900,300)"/> <wire from="(580,470)" to="(600,470)"/> <wire from="(690,250)" to="(720,250)"/> <wire from="(440,570)" to="(460,570)"/> <wire from="(440,450)" to="(460,450)"/> <wire from="(960,240)" to="(990,240)"/> <wire from="(990,470)" to="(1020,470)"/> <wire from="(990,630)" to="(1020,630)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(110,320)" to="(130,320)"/> <wire from="(80,810)" to="(100,810)"/> <wire from="(790,470)" to="(820,470)"/> <wire from="(140,720)" to="(140,770)"/> <wire from="(360,260)" to="(360,310)"/> <wire from="(690,470)" to="(690,520)"/> <wire from="(1080,60)" to="(1080,100)"/> <wire from="(290,470)" to="(290,530)"/> <wire from="(810,230)" to="(820,230)"/> <wire from="(710,450)" to="(720,450)"/> <wire from="(530,230)" to="(540,230)"/> <wire from="(160,700)" to="(160,760)"/> <wire from="(320,460)" to="(380,460)"/> <wire from="(530,90)" to="(710,90)"/> <wire from="(810,450)" to="(810,650)"/> <wire from="(580,250)" to="(630,250)"/> <wire from="(1050,620)" to="(1220,620)"/> <wire from="(120,780)" to="(180,780)"/> <wire from="(960,460)" to="(1020,460)"/> <wire from="(520,570)" to="(520,700)"/> <wire from="(880,180)" to="(880,250)"/> <wire from="(330,80)" to="(330,90)"/> <wire from="(690,570)" to="(920,570)"/> <wire from="(600,380)" to="(600,470)"/> <wire from="(1160,740)" to="(1220,740)"/> <wire from="(710,230)" to="(710,450)"/> <wire from="(1250,110)" to="(1310,110)"/> <wire from="(80,610)" to="(440,610)"/> <wire from="(80,840)" to="(120,840)"/> <wire from="(140,820)" to="(180,820)"/> <wire from="(120,750)" to="(120,780)"/> <wire from="(1080,390)" to="(1080,660)"/> <wire from="(900,560)" to="(920,560)"/> <wire from="(80,410)" to="(110,410)"/> <wire from="(310,500)" to="(790,500)"/> <wire from="(810,60)" to="(810,230)"/> <wire from="(670,250)" to="(690,250)"/> <wire from="(760,250)" to="(790,250)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(760,450)" to="(790,450)"/> <wire from="(960,570)" to="(990,570)"/> <wire from="(80,780)" to="(100,780)"/> <wire from="(110,410)" to="(110,520)"/> <wire from="(100,790)" to="(180,790)"/> <wire from="(790,400)" to="(920,400)"/> <wire from="(440,610)" to="(900,610)"/> <wire from="(1160,790)" to="(1310,790)"/> <wire from="(1080,100)" to="(1100,100)"/> <wire from="(1200,660)" to="(1220,660)"/> <wire from="(810,60)" to="(1080,60)"/> <wire from="(290,310)" to="(360,310)"/> <wire from="(620,450)" to="(630,450)"/> <wire from="(1160,170)" to="(1160,600)"/> <wire from="(900,250)" to="(900,300)"/> <comp lib="1" loc="(170,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1030,384)" name="Text"> <a name="text" val="DB/PAR"/> </comp> <comp loc="(500,560)" name="D-latch"/> <comp loc="(1140,110)" name="D-latch"/> <comp lib="4" loc="(320,440)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(960,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(1250,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(208,302)" name="Text"> <a name="text" val="R7_EN"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0'"/> </comp> <comp loc="(670,240)" name="D-latch"/> <comp lib="6" loc="(874,604)" name="Text"> <a name="text" val="BLNK"/> </comp> <comp lib="6" loc="(887,644)" name="Text"> <a name="text" val="H0''"/> </comp> <comp lib="0" loc="(1310,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="XRB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(780,665)" name="Text"> <a name="text" val="H0'"/> </comp> <comp lib="0" loc="(310,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(1200,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(740,198)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="6" loc="(560,197)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA13"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1250,610)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="6" loc="(480,200)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="4" loc="(500,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(960,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(860,240)" name="D-latch"/> <comp loc="(670,460)" name="D-latch"/> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R7"/> </comp> <comp lib="6" loc="(839,199)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="4" loc="(320,220)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(653,198)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp loc="(760,460)" name="D-latch"/> <comp lib="1" loc="(260,790)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(1310,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1050,620)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1200,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(580,460)" name="D-latch"/> <comp lib="0" loc="(80,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp loc="(580,240)" name="D-latch"/> <comp lib="6" loc="(398,54)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(170,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA9"/> </comp> <comp lib="0" loc="(1310,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(960,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA10"/> </comp> <comp lib="0" loc="(1310,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(397,85)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W7"/> </comp> <comp lib="0" loc="(1310,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ALE"/> <a name="labelloc" val="east"/> </comp> <comp loc="(860,660)" name="D-latch"/> <comp lib="0" loc="(1310,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA11"/> </comp> <comp lib="1" loc="(960,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA8"/> </comp> <comp lib="1" loc="(1060,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(1032,162)" name="Text"> <a name="text" val="PD/RB"/> </comp> <comp lib="1" loc="(960,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(869,565)" name="Text"> <a name="text" val="H0'"/> </comp> <comp loc="(860,460)" name="D-latch"/> <comp lib="1" loc="(420,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(500,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1034,435)" name="Text"> <a name="text" val="/ALE"/> </comp> <comp lib="1" loc="(1250,110)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1310,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD/RB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(960,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1260,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA12"/> </comp> <comp lib="0" loc="(1310,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TH/MUX"/> <a name="labelloc" val="east"/> </comp> <comp loc="(760,240)" name="D-latch"/> <comp lib="6" loc="(207,522)" name="Text"> <a name="text" val="W7_EN"/> </comp> </circuit> <circuit name="READ_$2007"> <a name="circuit" val="READ_$2007"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#dcff12" height="270" stroke="#000000" stroke-width="2" width="80" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="233">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="94">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="155">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="215">PD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="154">DB3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="94">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="254">PD/RB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="174">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="114">PD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="175">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="294">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="134">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="234">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="214">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="194">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="274">XRB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="114">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="134">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="33">READ $2007</text> <circ-port height="8" pin="80,50" width="8" x="46" y="266"/> <circ-port height="8" pin="80,100" width="8" x="46" y="286"/> <circ-port height="8" pin="80,150" width="8" x="46" y="246"/> <circ-port height="8" pin="80,220" width="8" x="46" y="86"/> <circ-port height="8" pin="80,300" width="8" x="46" y="106"/> <circ-port height="8" pin="80,380" width="8" x="46" y="126"/> <circ-port height="8" pin="80,460" width="8" x="46" y="146"/> <circ-port height="8" pin="80,540" width="8" x="46" y="166"/> <circ-port height="8" pin="80,620" width="8" x="46" y="186"/> <circ-port height="8" pin="80,700" width="8" x="46" y="206"/> <circ-port height="8" pin="80,780" width="8" x="46" y="226"/> <circ-port height="10" pin="280,240" width="10" x="125" y="85"/> <circ-port height="10" pin="280,320" width="10" x="125" y="105"/> <circ-port height="10" pin="280,400" width="10" x="125" y="125"/> <circ-port height="10" pin="280,480" width="10" x="125" y="145"/> <circ-port height="10" pin="280,560" width="10" x="125" y="165"/> <circ-port height="10" pin="280,640" width="10" x="125" y="185"/> <circ-port height="10" pin="280,720" width="10" x="125" y="205"/> <circ-port height="10" pin="280,800" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="37"/> </appear> <wire from="(170,790)" to="(170,800)"/> <wire from="(140,50)" to="(250,50)"/> <wire from="(240,760)" to="(240,780)"/> <wire from="(250,300)" to="(250,380)"/> <wire from="(250,380)" to="(250,460)"/> <wire from="(250,220)" to="(250,300)"/> <wire from="(250,460)" to="(250,540)"/> <wire from="(250,620)" to="(250,700)"/> <wire from="(250,540)" to="(250,620)"/> <wire from="(250,700)" to="(250,780)"/> <wire from="(240,520)" to="(240,540)"/> <wire from="(240,680)" to="(240,700)"/> <wire from="(240,600)" to="(240,620)"/> <wire from="(240,200)" to="(240,220)"/> <wire from="(240,360)" to="(240,380)"/> <wire from="(240,280)" to="(240,300)"/> <wire from="(240,440)" to="(240,460)"/> <wire from="(80,50)" to="(120,50)"/> <wire from="(80,150)" to="(120,150)"/> <wire from="(250,50)" to="(250,220)"/> <wire from="(170,100)" to="(170,230)"/> <wire from="(80,300)" to="(140,300)"/> <wire from="(80,460)" to="(140,460)"/> <wire from="(80,620)" to="(140,620)"/> <wire from="(80,780)" to="(140,780)"/> <wire from="(80,220)" to="(140,220)"/> <wire from="(80,380)" to="(140,380)"/> <wire from="(80,540)" to="(140,540)"/> <wire from="(80,700)" to="(140,700)"/> <wire from="(180,200)" to="(240,200)"/> <wire from="(180,360)" to="(240,360)"/> <wire from="(180,280)" to="(240,280)"/> <wire from="(180,440)" to="(240,440)"/> <wire from="(180,680)" to="(240,680)"/> <wire from="(180,520)" to="(240,520)"/> <wire from="(180,760)" to="(240,760)"/> <wire from="(180,600)" to="(240,600)"/> <wire from="(120,360)" to="(120,440)"/> <wire from="(120,200)" to="(120,280)"/> <wire from="(120,280)" to="(120,360)"/> <wire from="(120,680)" to="(120,760)"/> <wire from="(120,520)" to="(120,600)"/> <wire from="(120,440)" to="(120,520)"/> <wire from="(120,600)" to="(120,680)"/> <wire from="(170,550)" to="(170,630)"/> <wire from="(170,630)" to="(170,710)"/> <wire from="(170,710)" to="(170,790)"/> <wire from="(170,470)" to="(170,550)"/> <wire from="(170,390)" to="(170,470)"/> <wire from="(170,230)" to="(170,310)"/> <wire from="(170,310)" to="(170,390)"/> <wire from="(80,100)" to="(170,100)"/> <wire from="(260,320)" to="(280,320)"/> <wire from="(260,480)" to="(280,480)"/> <wire from="(260,640)" to="(280,640)"/> <wire from="(260,800)" to="(280,800)"/> <wire from="(260,240)" to="(280,240)"/> <wire from="(260,400)" to="(280,400)"/> <wire from="(260,560)" to="(280,560)"/> <wire from="(260,720)" to="(280,720)"/> <wire from="(120,280)" to="(140,280)"/> <wire from="(120,200)" to="(140,200)"/> <wire from="(120,440)" to="(140,440)"/> <wire from="(120,600)" to="(140,600)"/> <wire from="(120,760)" to="(140,760)"/> <wire from="(120,360)" to="(140,360)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(120,150)" to="(120,200)"/> <wire from="(220,650)" to="(230,650)"/> <wire from="(220,550)" to="(230,550)"/> <wire from="(220,710)" to="(230,710)"/> <wire from="(220,730)" to="(230,730)"/> <wire from="(220,790)" to="(230,790)"/> <wire from="(220,810)" to="(230,810)"/> <wire from="(220,630)" to="(230,630)"/> <wire from="(220,570)" to="(230,570)"/> <wire from="(220,490)" to="(230,490)"/> <wire from="(220,470)" to="(230,470)"/> <wire from="(220,410)" to="(230,410)"/> <wire from="(220,390)" to="(230,390)"/> <wire from="(220,330)" to="(230,330)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(220,230)" to="(230,230)"/> <wire from="(220,250)" to="(230,250)"/> <comp lib="0" loc="(220,650)" name="Constant"/> <comp lib="4" loc="(180,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD/RB"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="2" loc="(260,480)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(260,640)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(280,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(180,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,330)" name="Constant"/> <comp lib="2" loc="(260,400)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(220,490)" name="Constant"/> <comp lib="0" loc="(80,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="4" loc="(180,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="4" loc="(180,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,250)" name="Constant"/> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="XRB"/> </comp> <comp lib="0" loc="(280,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(180,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(260,320)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(280,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(260,720)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(260,240)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(280,800)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,710)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,570)" name="Constant"/> <comp lib="4" loc="(180,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(220,730)" name="Constant"/> <comp lib="4" loc="(180,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,790)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(280,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(140,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(220,810)" name="Constant"/> <comp lib="0" loc="(280,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,550)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,390)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(260,560)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(280,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="2" loc="(260,800)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(220,310)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="4" loc="(180,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(280,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,630)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(80,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(220,410)" name="Constant"/> </circuit> <circuit name="PICTURE_ADDRESS_GEN"> <a name="circuit" val="PICTURE_ADDRESS_GEN"/> <a name="clabel" val="PICTURE ADDRESS GEN"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M126,51 Q130,61 134,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ba16ff" height="600" stroke="#000000" stroke-width="2" width="410" x="40" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="314">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="639">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="234">/PA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="154">l1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="314">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="69">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="627">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="334">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="515">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="254">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="135">O8/16</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="94">/PA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="434">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="114">/PA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="427" y="594">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="194">/PA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="474">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="615">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="421" y="254">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="275">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="174">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="394">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="214">/PA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="494">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="474">SC/CNT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="76">PPU DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="633">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="114">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="294">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="190" y="69">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="358" y="234">PPU ADDRESS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="154">/PA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="194">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="134">/PA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="454">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="174">/PA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="334">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="354">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="394">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="294">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="355">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="50" y="594">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="215">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="50" y="534">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="234">/W6.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="421" y="274">/PA9</text> <polyline fill="none" points="40,66 46,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="40,74 46,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="46,66 46,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="564">OBJ TILE V. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="514">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="534">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="554">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="400" y="434">TILE H. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="419" y="640">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="279" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="349" y="626">OBJ DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="131" y="70">DB/PAR</text> <circ-port height="8" pin="120,110" width="8" x="36" y="66"/> <circ-port height="8" pin="120,240" width="8" x="36" y="466"/> <circ-port height="8" pin="120,300" width="8" x="36" y="626"/> <circ-port height="8" pin="120,430" width="8" x="36" y="386"/> <circ-port height="8" pin="120,490" width="8" x="36" y="606"/> <circ-port height="8" pin="120,570" width="8" x="36" y="486"/> <circ-port height="8" pin="120,650" width="8" x="36" y="306"/> <circ-port height="8" pin="120,750" width="8" x="36" y="366"/> <circ-port height="8" pin="120,800" width="8" x="36" y="146"/> <circ-port height="8" pin="120,850" width="8" x="186" y="46"/> <circ-port height="8" pin="120,900" width="8" x="206" y="46"/> <circ-port height="8" pin="120,950" width="8" x="226" y="46"/> <circ-port height="8" pin="120,1000" width="8" x="246" y="46"/> <circ-port height="8" pin="120,1050" width="8" x="266" y="46"/> <circ-port height="8" pin="120,1100" width="8" x="286" y="46"/> <circ-port height="8" pin="120,1150" width="8" x="306" y="46"/> <circ-port height="8" pin="120,1200" width="8" x="326" y="46"/> <circ-port height="8" pin="120,1290" width="8" x="276" y="646"/> <circ-port height="8" pin="120,1340" width="8" x="296" y="646"/> <circ-port height="8" pin="120,1390" width="8" x="316" y="646"/> <circ-port height="8" pin="120,1440" width="8" x="336" y="646"/> <circ-port height="8" pin="120,1490" width="8" x="356" y="646"/> <circ-port height="8" pin="120,1540" width="8" x="376" y="646"/> <circ-port height="8" pin="120,1590" width="8" x="396" y="646"/> <circ-port height="8" pin="120,1640" width="8" x="416" y="646"/> <circ-port height="8" pin="120,1740" width="8" x="36" y="526"/> <circ-port height="8" pin="120,1770" width="8" x="36" y="546"/> <circ-port height="8" pin="120,1800" width="8" x="36" y="566"/> <circ-port height="8" pin="120,1830" width="8" x="36" y="586"/> <circ-port height="8" pin="120,1940" width="8" x="106" y="646"/> <circ-port height="8" pin="120,1990" width="8" x="126" y="646"/> <circ-port height="8" pin="120,2040" width="8" x="146" y="646"/> <circ-port height="8" pin="120,2090" width="8" x="166" y="646"/> <circ-port height="8" pin="120,2140" width="8" x="186" y="646"/> <circ-port height="8" pin="120,2190" width="8" x="206" y="646"/> <circ-port height="8" pin="120,2240" width="8" x="226" y="646"/> <circ-port height="8" pin="120,2290" width="8" x="246" y="646"/> <circ-port height="8" pin="120,2380" width="8" x="36" y="286"/> <circ-port height="8" pin="120,2440" width="8" x="36" y="266"/> <circ-port height="8" pin="120,2500" width="8" x="36" y="206"/> <circ-port height="8" pin="120,2570" width="8" x="36" y="246"/> <circ-port height="8" pin="120,2630" width="8" x="36" y="226"/> <circ-port height="8" pin="120,2690" width="8" x="36" y="86"/> <circ-port height="8" pin="120,2750" width="8" x="36" y="106"/> <circ-port height="10" pin="2110,730" width="10" x="445" y="85"/> <circ-port height="10" pin="2110,930" width="10" x="445" y="105"/> <circ-port height="10" pin="2110,1130" width="10" x="445" y="125"/> <circ-port height="10" pin="2110,1330" width="10" x="445" y="145"/> <circ-port height="10" pin="2110,1530" width="10" x="445" y="165"/> <circ-port height="10" pin="2110,1930" width="10" x="445" y="185"/> <circ-port height="10" pin="2110,2130" width="10" x="445" y="205"/> <circ-port height="10" pin="2110,2330" width="10" x="445" y="225"/> <circ-port height="10" pin="2110,2520" width="10" x="445" y="245"/> <circ-port height="10" pin="2110,2720" width="10" x="445" y="265"/> <circ-port height="10" pin="2110,2920" width="10" x="445" y="285"/> <circ-port height="10" pin="2110,3110" width="10" x="445" y="305"/> <circ-port height="10" pin="2110,3310" width="10" x="445" y="325"/> <circ-port height="10" pin="340,2900" width="10" x="445" y="505"/> <circ-port height="10" pin="2110,3510" width="10" x="445" y="345"/> <circ-port height="10" pin="340,3050" width="10" x="445" y="525"/> <circ-port height="10" pin="340,3200" width="10" x="445" y="545"/> <circ-port height="10" pin="1200,80" width="10" x="445" y="385"/> <circ-port height="10" pin="1240,80" width="10" x="445" y="405"/> <circ-port height="10" pin="1280,80" width="10" x="445" y="425"/> <circ-port height="10" pin="1320,80" width="10" x="445" y="445"/> <circ-port height="10" pin="1360,80" width="10" x="445" y="465"/> <circ-port height="10" pin="1410,80" width="10" x="445" y="585"/> <circ-port height="8" pin="1670,80" width="8" x="36" y="446"/> <circ-port height="8" pin="1950,80" width="8" x="36" y="426"/> <circ-port height="8" pin="2000,80" width="8" x="36" y="406"/> <circ-port height="8" pin="2050,80" width="8" x="36" y="506"/> <circ-port height="8" pin="2100,80" width="8" x="36" y="126"/> <circ-port height="8" pin="2150,80" width="8" x="36" y="166"/> <circ-port height="8" pin="2200,80" width="8" x="36" y="186"/> <circ-port height="8" pin="1780,80" width="8" x="36" y="346"/> <circ-port height="8" pin="2250,80" width="8" x="36" y="326"/> <circ-port height="8" pin="1900,80" width="8" x="126" y="46"/> <circ-anchor facing="east" height="6" width="6" x="447" y="47"/> </appear> <wire from="(760,1330)" to="(760,1530)"/> <wire from="(120,1150)" to="(180,1150)"/> <wire from="(230,1510)" to="(230,1530)"/> <wire from="(310,2930)" to="(310,3080)"/> <wire from="(620,2860)" to="(620,2890)"/> <wire from="(570,730)" to="(670,730)"/> <wire from="(570,2330)" to="(670,2330)"/> <wire from="(570,2650)" to="(670,2650)"/> <wire from="(2660,3620)" to="(2660,3680)"/> <wire from="(1920,1350)" to="(1980,1350)"/> <wire from="(820,3530)" to="(930,3530)"/> <wire from="(200,1800)" to="(200,1830)"/> <wire from="(820,1930)" to="(930,1930)"/> <wire from="(710,1350)" to="(710,1370)"/> <wire from="(2600,3680)" to="(2610,3680)"/> <wire from="(120,2140)" to="(150,2140)"/> <wire from="(1810,2390)" to="(1940,2390)"/> <wire from="(1160,3580)" to="(1240,3580)"/> <wire from="(1950,80)" to="(1950,590)"/> <wire from="(1740,3340)" to="(1740,3400)"/> <wire from="(1160,2320)" to="(1550,2320)"/> <wire from="(2020,2130)" to="(2040,2130)"/> <wire from="(1220,3570)" to="(1240,3570)"/> <wire from="(920,3280)" to="(930,3280)"/> <wire from="(920,2960)" to="(930,2960)"/> <wire from="(2000,2540)" to="(2040,2540)"/> <wire from="(2200,80)" to="(2200,440)"/> <wire from="(160,1010)" to="(210,1010)"/> <wire from="(570,770)" to="(630,770)"/> <wire from="(570,2370)" to="(630,2370)"/> <wire from="(570,2690)" to="(630,2690)"/> <wire from="(650,1170)" to="(710,1170)"/> <wire from="(2760,3720)" to="(2760,3820)"/> <wire from="(2290,110)" to="(2290,350)"/> <wire from="(1770,3110)" to="(1770,3310)"/> <wire from="(2020,2720)" to="(2020,2920)"/> <wire from="(2810,3700)" to="(2820,3700)"/> <wire from="(820,3340)" to="(930,3340)"/> <wire from="(1690,2330)" to="(1760,2330)"/> <wire from="(180,1050)" to="(210,1050)"/> <wire from="(640,3390)" to="(640,3560)"/> <wire from="(1770,2920)" to="(1770,3110)"/> <wire from="(2600,3690)" to="(2600,3700)"/> <wire from="(1690,730)" to="(1760,730)"/> <wire from="(1160,3330)" to="(1170,3330)"/> <wire from="(690,930)" to="(710,930)"/> <wire from="(690,2530)" to="(710,2530)"/> <wire from="(1740,1550)" to="(1740,1610)"/> <wire from="(620,2770)" to="(650,2770)"/> <wire from="(350,590)" to="(370,590)"/> <wire from="(1650,2540)" to="(1660,2540)"/> <wire from="(120,1000)" to="(140,1000)"/> <wire from="(710,1350)" to="(780,1350)"/> <wire from="(640,2560)" to="(640,2680)"/> <wire from="(200,3070)" to="(280,3070)"/> <wire from="(790,1750)" to="(860,1750)"/> <wire from="(920,1810)" to="(930,1810)"/> <wire from="(700,2750)" to="(700,2800)"/> <wire from="(150,2520)" to="(150,2590)"/> <wire from="(810,1960)" to="(810,2160)"/> <wire from="(810,3560)" to="(810,3760)"/> <wire from="(2000,750)" to="(2040,750)"/> <wire from="(2000,2350)" to="(2040,2350)"/> <wire from="(1770,1320)" to="(1770,1520)"/> <wire from="(1900,1130)" to="(1900,1330)"/> <wire from="(2020,930)" to="(2020,1130)"/> <wire from="(710,3530)" to="(710,3550)"/> <wire from="(140,110)" to="(2290,110)"/> <wire from="(2400,3620)" to="(2400,3680)"/> <wire from="(200,1740)" to="(200,1770)"/> <wire from="(2310,3720)" to="(2380,3720)"/> <wire from="(1790,3530)" to="(1980,3530)"/> <wire from="(710,1930)" to="(710,1950)"/> <wire from="(760,1130)" to="(780,1130)"/> <wire from="(150,3070)" to="(180,3070)"/> <wire from="(2790,3690)" to="(2790,3700)"/> <wire from="(220,2510)" to="(240,2510)"/> <wire from="(150,2650)" to="(150,2690)"/> <wire from="(2020,680)" to="(2020,730)"/> <wire from="(1870,960)" to="(1890,960)"/> <wire from="(120,1200)" to="(200,1200)"/> <wire from="(810,3370)" to="(810,3560)"/> <wire from="(1740,1150)" to="(1760,1150)"/> <wire from="(1740,2750)" to="(1760,2750)"/> <wire from="(920,660)" to="(930,660)"/> <wire from="(1180,2080)" to="(1180,2120)"/> <wire from="(1790,2340)" to="(1890,2340)"/> <wire from="(640,960)" to="(640,1160)"/> <wire from="(680,1320)" to="(680,1520)"/> <wire from="(2080,1930)" to="(2110,1930)"/> <wire from="(1040,1750)" to="(1040,1770)"/> <wire from="(120,900)" to="(180,900)"/> <wire from="(120,2500)" to="(180,2500)"/> <wire from="(1790,740)" to="(1890,740)"/> <wire from="(200,1290)" to="(200,1430)"/> <wire from="(1670,710)" to="(1670,910)"/> <wire from="(1670,2310)" to="(1670,2510)"/> <wire from="(200,140)" to="(200,220)"/> <wire from="(1610,2720)" to="(1660,2720)"/> <wire from="(710,3340)" to="(710,3360)"/> <wire from="(270,430)" to="(310,430)"/> <wire from="(1520,1520)" to="(1660,1520)"/> <wire from="(1740,2210)" to="(2320,2210)"/> <wire from="(220,2640)" to="(240,2640)"/> <wire from="(1220,3590)" to="(1220,3780)"/> <wire from="(1750,3540)" to="(1760,3540)"/> <wire from="(460,320)" to="(480,320)"/> <wire from="(500,1830)" to="(720,1830)"/> <wire from="(150,650)" to="(170,650)"/> <wire from="(190,370)" to="(210,370)"/> <wire from="(680,2540)" to="(680,2640)"/> <wire from="(2020,2520)" to="(2040,2520)"/> <wire from="(750,1900)" to="(760,1900)"/> <wire from="(150,2460)" to="(150,2520)"/> <wire from="(2290,350)" to="(2320,350)"/> <wire from="(120,2630)" to="(180,2630)"/> <wire from="(230,1070)" to="(230,1090)"/> <wire from="(2400,3680)" to="(2410,3680)"/> <wire from="(810,3760)" to="(810,3850)"/> <wire from="(570,930)" to="(670,930)"/> <wire from="(570,2530)" to="(670,2530)"/> <wire from="(710,3150)" to="(710,3170)"/> <wire from="(1920,1550)" to="(1980,1550)"/> <wire from="(2560,3720)" to="(2560,3770)"/> <wire from="(2460,3620)" to="(2460,3680)"/> <wire from="(820,3730)" to="(930,3730)"/> <wire from="(2760,3720)" to="(2770,3720)"/> <wire from="(2020,2920)" to="(2020,3110)"/> <wire from="(820,2130)" to="(930,2130)"/> <wire from="(710,1550)" to="(710,1570)"/> <wire from="(760,3130)" to="(760,3340)"/> <wire from="(180,1440)" to="(210,1440)"/> <wire from="(1030,380)" to="(1050,380)"/> <wire from="(120,490)" to="(210,490)"/> <wire from="(1270,3390)" to="(1270,3440)"/> <wire from="(1160,3530)" to="(1300,3530)"/> <wire from="(220,2450)" to="(240,2450)"/> <wire from="(220,1810)" to="(240,1810)"/> <wire from="(2020,3110)" to="(2020,3310)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(2020,730)" to="(2040,730)"/> <wire from="(760,2940)" to="(760,3130)"/> <wire from="(2020,2330)" to="(2040,2330)"/> <wire from="(140,140)" to="(150,140)"/> <wire from="(400,210)" to="(400,450)"/> <wire from="(150,2590)" to="(150,2650)"/> <wire from="(1760,490)" to="(1760,520)"/> <wire from="(120,1800)" to="(180,1800)"/> <wire from="(120,2440)" to="(180,2440)"/> <wire from="(2000,2740)" to="(2040,2740)"/> <wire from="(1180,2120)" to="(1410,2120)"/> <wire from="(180,1790)" to="(180,1800)"/> <wire from="(1080,1600)" to="(1080,1690)"/> <wire from="(570,970)" to="(630,970)"/> <wire from="(570,2570)" to="(630,2570)"/> <wire from="(650,1370)" to="(710,1370)"/> <wire from="(1770,3310)" to="(1770,3510)"/> <wire from="(710,2960)" to="(710,2980)"/> <wire from="(1690,930)" to="(1760,930)"/> <wire from="(1690,2530)" to="(1760,2530)"/> <wire from="(1520,1140)" to="(1660,1140)"/> <wire from="(690,1130)" to="(710,1130)"/> <wire from="(180,1340)" to="(180,1440)"/> <wire from="(290,410)" to="(310,410)"/> <wire from="(220,2580)" to="(240,2580)"/> <wire from="(2400,3690)" to="(2400,3700)"/> <wire from="(1650,2740)" to="(1660,2740)"/> <wire from="(2780,3620)" to="(2780,3690)"/> <wire from="(1160,2720)" to="(1610,2720)"/> <wire from="(710,1550)" to="(780,1550)"/> <wire from="(710,3150)" to="(780,3150)"/> <wire from="(1740,3140)" to="(1760,3140)"/> <wire from="(720,1690)" to="(720,1740)"/> <wire from="(1770,560)" to="(1770,720)"/> <wire from="(1090,250)" to="(1110,250)"/> <wire from="(1160,960)" to="(1180,960)"/> <wire from="(150,2400)" to="(150,2460)"/> <wire from="(810,2160)" to="(810,2360)"/> <wire from="(2000,950)" to="(2040,950)"/> <wire from="(120,2570)" to="(180,2570)"/> <wire from="(1550,1340)" to="(1550,2320)"/> <wire from="(1900,1330)" to="(1900,1530)"/> <wire from="(2020,1130)" to="(2020,1330)"/> <wire from="(710,3730)" to="(710,3750)"/> <wire from="(1160,1120)" to="(1280,1120)"/> <wire from="(1710,630)" to="(1710,2810)"/> <wire from="(710,2130)" to="(710,2150)"/> <wire from="(760,1330)" to="(780,1330)"/> <wire from="(920,530)" to="(940,530)"/> <wire from="(120,430)" to="(210,430)"/> <wire from="(210,2690)" to="(240,2690)"/> <wire from="(1270,3330)" to="(1270,3390)"/> <wire from="(220,2390)" to="(240,2390)"/> <wire from="(1410,80)" to="(1410,2120)"/> <wire from="(1870,1160)" to="(1890,1160)"/> <wire from="(710,2960)" to="(780,2960)"/> <wire from="(860,1830)" to="(930,1830)"/> <wire from="(1740,1350)" to="(1760,1350)"/> <wire from="(1740,2950)" to="(1760,2950)"/> <wire from="(1280,2810)" to="(1300,2810)"/> <wire from="(750,690)" to="(760,690)"/> <wire from="(640,1160)" to="(640,1360)"/> <wire from="(2080,2130)" to="(2110,2130)"/> <wire from="(190,3080)" to="(190,3210)"/> <wire from="(120,2380)" to="(180,2380)"/> <wire from="(1790,940)" to="(1890,940)"/> <wire from="(810,2680)" to="(810,2690)"/> <wire from="(1320,80)" to="(1320,1320)"/> <wire from="(200,850)" to="(200,990)"/> <wire from="(560,280)" to="(600,280)"/> <wire from="(1670,910)" to="(1670,1110)"/> <wire from="(1670,2510)" to="(1670,2710)"/> <wire from="(1280,1120)" to="(1460,1120)"/> <wire from="(680,3120)" to="(680,3330)"/> <wire from="(120,2090)" to="(150,2090)"/> <wire from="(1740,2410)" to="(2320,2410)"/> <wire from="(1740,810)" to="(2320,810)"/> <wire from="(260,3200)" to="(280,3200)"/> <wire from="(1520,1140)" to="(1520,1520)"/> <wire from="(2280,3510)" to="(2280,3520)"/> <wire from="(860,270)" to="(890,270)"/> <wire from="(210,590)" to="(230,590)"/> <wire from="(2020,2720)" to="(2040,2720)"/> <wire from="(970,210)" to="(970,450)"/> <wire from="(2000,80)" to="(2000,560)"/> <wire from="(160,1390)" to="(160,1450)"/> <wire from="(2000,3130)" to="(2040,3130)"/> <wire from="(750,1860)" to="(810,1860)"/> <wire from="(1010,1600)" to="(1010,1690)"/> <wire from="(2560,3700)" to="(2590,3700)"/> <wire from="(570,1130)" to="(670,1130)"/> <wire from="(820,730)" to="(930,730)"/> <wire from="(820,2330)" to="(930,2330)"/> <wire from="(530,290)" to="(530,330)"/> <wire from="(180,1000)" to="(210,1000)"/> <wire from="(740,3810)" to="(760,3810)"/> <wire from="(2650,3690)" to="(2650,3700)"/> <wire from="(2250,80)" to="(2250,410)"/> <wire from="(2020,3310)" to="(2020,3510)"/> <wire from="(290,370)" to="(290,410)"/> <wire from="(2020,930)" to="(2040,930)"/> <wire from="(2630,3670)" to="(2630,3700)"/> <wire from="(2640,3680)" to="(2640,3700)"/> <wire from="(270,220)" to="(340,220)"/> <wire from="(640,780)" to="(640,960)"/> <wire from="(2000,2940)" to="(2040,2940)"/> <wire from="(1340,3320)" to="(1760,3320)"/> <wire from="(1770,1520)" to="(1770,1920)"/> <wire from="(570,1170)" to="(630,1170)"/> <wire from="(720,1760)" to="(720,1830)"/> <wire from="(650,1570)" to="(710,1570)"/> <wire from="(2300,380)" to="(2320,380)"/> <wire from="(650,3170)" to="(710,3170)"/> <wire from="(2250,410)" to="(2320,410)"/> <wire from="(1240,80)" to="(1240,920)"/> <wire from="(150,2690)" to="(190,2690)"/> <wire from="(1690,1130)" to="(1760,1130)"/> <wire from="(1690,2730)" to="(1760,2730)"/> <wire from="(890,250)" to="(910,250)"/> <wire from="(1160,3730)" to="(1170,3730)"/> <wire from="(620,2860)" to="(640,2860)"/> <wire from="(180,900)" to="(180,1000)"/> <wire from="(690,1330)" to="(710,1330)"/> <wire from="(1740,1950)" to="(1740,2010)"/> <wire from="(610,2840)" to="(640,2840)"/> <wire from="(320,3200)" to="(340,3200)"/> <wire from="(290,500)" to="(290,540)"/> <wire from="(2580,3620)" to="(2580,3690)"/> <wire from="(180,1780)" to="(200,1780)"/> <wire from="(570,3210)" to="(640,3210)"/> <wire from="(1740,3340)" to="(1760,3340)"/> <wire from="(920,610)" to="(930,610)"/> <wire from="(920,1890)" to="(930,1890)"/> <wire from="(920,3170)" to="(930,3170)"/> <wire from="(1160,2120)" to="(1180,2120)"/> <wire from="(2080,2520)" to="(2110,2520)"/> <wire from="(810,760)" to="(810,960)"/> <wire from="(2100,500)" to="(2320,500)"/> <wire from="(810,2360)" to="(810,2560)"/> <wire from="(2000,1150)" to="(2040,1150)"/> <wire from="(2020,3110)" to="(2040,3110)"/> <wire from="(700,1750)" to="(760,1750)"/> <wire from="(650,2980)" to="(710,2980)"/> <wire from="(260,2900)" to="(260,3050)"/> <wire from="(140,1440)" to="(140,1460)"/> <wire from="(2020,1330)" to="(2020,1530)"/> <wire from="(710,2650)" to="(710,2670)"/> <wire from="(2640,3620)" to="(2640,3670)"/> <wire from="(710,2330)" to="(710,2350)"/> <wire from="(710,730)" to="(710,750)"/> <wire from="(760,1530)" to="(780,1530)"/> <wire from="(160,2840)" to="(190,2840)"/> <wire from="(760,3130)" to="(780,3130)"/> <wire from="(1010,180)" to="(1030,180)"/> <wire from="(650,1740)" to="(670,1740)"/> <wire from="(700,2750)" to="(720,2750)"/> <wire from="(2200,440)" to="(2320,440)"/> <wire from="(2050,530)" to="(2320,530)"/> <wire from="(150,600)" to="(170,600)"/> <wire from="(1870,1360)" to="(1890,1360)"/> <wire from="(2150,470)" to="(2320,470)"/> <wire from="(1740,1550)" to="(1760,1550)"/> <wire from="(1220,3590)" to="(1240,3590)"/> <wire from="(920,3300)" to="(930,3300)"/> <wire from="(920,2980)" to="(930,2980)"/> <wire from="(1180,880)" to="(1180,960)"/> <wire from="(640,1360)" to="(640,1560)"/> <wire from="(2080,2330)" to="(2110,2330)"/> <wire from="(1370,2990)" to="(1370,3070)"/> <wire from="(1790,1140)" to="(1890,1140)"/> <wire from="(2020,2920)" to="(2040,2920)"/> <wire from="(1240,920)" to="(1660,920)"/> <wire from="(310,3080)" to="(310,3230)"/> <wire from="(1670,1110)" to="(1670,1310)"/> <wire from="(1950,590)" to="(2320,590)"/> <wire from="(890,2730)" to="(930,2730)"/> <wire from="(150,620)" to="(150,650)"/> <wire from="(2780,3690)" to="(2790,3690)"/> <wire from="(2000,560)" to="(2320,560)"/> <wire from="(760,270)" to="(760,290)"/> <wire from="(120,2290)" to="(150,2290)"/> <wire from="(760,2940)" to="(780,2940)"/> <wire from="(310,240)" to="(340,240)"/> <wire from="(1040,3240)" to="(1370,3240)"/> <wire from="(1740,1010)" to="(2320,1010)"/> <wire from="(1740,2610)" to="(2320,2610)"/> <wire from="(1270,3210)" to="(1270,3330)"/> <wire from="(210,470)" to="(230,470)"/> <wire from="(170,180)" to="(250,180)"/> <wire from="(2020,680)" to="(2040,680)"/> <wire from="(890,270)" to="(890,390)"/> <wire from="(200,1430)" to="(210,1430)"/> <wire from="(920,3110)" to="(930,3110)"/> <wire from="(2280,3480)" to="(2320,3480)"/> <wire from="(1090,390)" to="(1110,390)"/> <wire from="(2080,730)" to="(2110,730)"/> <wire from="(160,950)" to="(160,1010)"/> <wire from="(850,2780)" to="(930,2780)"/> <wire from="(760,1930)" to="(760,2130)"/> <wire from="(1040,3240)" to="(1040,3260)"/> <wire from="(760,3530)" to="(760,3730)"/> <wire from="(2360,3700)" to="(2390,3700)"/> <wire from="(2000,3330)" to="(2040,3330)"/> <wire from="(1550,1340)" to="(1660,1340)"/> <wire from="(120,800)" to="(170,800)"/> <wire from="(160,1480)" to="(210,1480)"/> <wire from="(580,3810)" to="(640,3810)"/> <wire from="(200,1500)" to="(200,1640)"/> <wire from="(1030,350)" to="(1030,380)"/> <wire from="(570,1330)" to="(670,1330)"/> <wire from="(710,3550)" to="(710,3570)"/> <wire from="(1920,1950)" to="(1980,1950)"/> <wire from="(2310,3820)" to="(2760,3820)"/> <wire from="(820,930)" to="(930,930)"/> <wire from="(820,2530)" to="(930,2530)"/> <wire from="(710,1950)" to="(710,1970)"/> <wire from="(2630,3670)" to="(2640,3670)"/> <wire from="(760,2750)" to="(780,2750)"/> <wire from="(580,330)" to="(600,330)"/> <wire from="(2450,3690)" to="(2450,3700)"/> <wire from="(2440,3680)" to="(2440,3700)"/> <wire from="(760,3340)" to="(760,3530)"/> <wire from="(2020,1130)" to="(2040,1130)"/> <wire from="(810,640)" to="(810,760)"/> <wire from="(200,3220)" to="(280,3220)"/> <wire from="(810,2560)" to="(810,2680)"/> <wire from="(2430,3670)" to="(2430,3700)"/> <wire from="(640,3160)" to="(640,3210)"/> <wire from="(920,2920)" to="(930,2920)"/> <wire from="(1940,630)" to="(1940,2390)"/> <wire from="(400,450)" to="(970,450)"/> <wire from="(1270,3600)" to="(1270,3620)"/> <wire from="(2560,3720)" to="(2580,3720)"/> <wire from="(570,1370)" to="(630,1370)"/> <wire from="(580,2020)" to="(640,2020)"/> <wire from="(1900,1530)" to="(1900,1930)"/> <wire from="(460,390)" to="(890,390)"/> <wire from="(710,3360)" to="(710,3380)"/> <wire from="(680,640)" to="(680,720)"/> <wire from="(1690,1330)" to="(1760,1330)"/> <wire from="(150,3220)" to="(180,3220)"/> <wire from="(350,430)" to="(890,430)"/> <wire from="(2380,3620)" to="(2380,3690)"/> <wire from="(690,1530)" to="(710,1530)"/> <wire from="(680,2800)" to="(700,2800)"/> <wire from="(690,3130)" to="(710,3130)"/> <wire from="(1740,2150)" to="(1740,2210)"/> <wire from="(210,490)" to="(210,590)"/> <wire from="(210,410)" to="(230,410)"/> <wire from="(710,1950)" to="(780,1950)"/> <wire from="(710,3550)" to="(780,3550)"/> <wire from="(2700,3620)" to="(2700,3700)"/> <wire from="(1810,630)" to="(1810,2390)"/> <wire from="(780,2790)" to="(780,2840)"/> <wire from="(2080,2720)" to="(2110,2720)"/> <wire from="(810,960)" to="(810,1160)"/> <wire from="(2000,1350)" to="(2040,1350)"/> <wire from="(2020,3310)" to="(2040,3310)"/> <wire from="(640,290)" to="(700,290)"/> <wire from="(1770,1920)" to="(1770,2120)"/> <wire from="(2440,3620)" to="(2440,3670)"/> <wire from="(580,640)" to="(680,640)"/> <wire from="(140,1000)" to="(140,1020)"/> <wire from="(120,1390)" to="(160,1390)"/> <wire from="(760,3730)" to="(760,3810)"/> <wire from="(2050,80)" to="(2050,530)"/> <wire from="(190,2840)" to="(190,2930)"/> <wire from="(1160,1920)" to="(1660,1920)"/> <wire from="(710,2530)" to="(710,2550)"/> <wire from="(710,930)" to="(710,950)"/> <wire from="(120,2040)" to="(150,2040)"/> <wire from="(1160,920)" to="(1240,920)"/> <wire from="(1200,720)" to="(1660,720)"/> <wire from="(690,2940)" to="(710,2940)"/> <wire from="(810,1860)" to="(810,1960)"/> <wire from="(210,430)" to="(210,470)"/> <wire from="(180,1790)" to="(200,1790)"/> <wire from="(1670,80)" to="(1670,710)"/> <wire from="(1870,1560)" to="(1890,1560)"/> <wire from="(200,1500)" to="(210,1500)"/> <wire from="(1270,3510)" to="(1300,3510)"/> <wire from="(710,3360)" to="(780,3360)"/> <wire from="(920,1580)" to="(930,1580)"/> <wire from="(520,2720)" to="(520,2900)"/> <wire from="(680,3520)" to="(680,3720)"/> <wire from="(1790,1340)" to="(1890,1340)"/> <wire from="(1670,1310)" to="(1670,1510)"/> <wire from="(510,310)" to="(550,310)"/> <wire from="(120,570)" to="(150,570)"/> <wire from="(150,2520)" to="(180,2520)"/> <wire from="(890,390)" to="(910,390)"/> <wire from="(1740,2810)" to="(2320,2810)"/> <wire from="(1740,1210)" to="(2320,1210)"/> <wire from="(350,490)" to="(370,490)"/> <wire from="(240,3260)" to="(260,3260)"/> <wire from="(520,2900)" to="(870,2900)"/> <wire from="(740,640)" to="(810,640)"/> <wire from="(120,1290)" to="(200,1290)"/> <wire from="(200,990)" to="(210,990)"/> <wire from="(680,3330)" to="(680,3520)"/> <wire from="(2760,3620)" to="(2760,3700)"/> <wire from="(2080,930)" to="(2110,930)"/> <wire from="(760,2130)" to="(760,2330)"/> <wire from="(160,1040)" to="(210,1040)"/> <wire from="(890,2850)" to="(1080,2850)"/> <wire from="(200,1060)" to="(200,1200)"/> <wire from="(2430,3670)" to="(2440,3670)"/> <wire from="(570,1530)" to="(670,1530)"/> <wire from="(570,3130)" to="(670,3130)"/> <wire from="(710,3750)" to="(710,3770)"/> <wire from="(890,410)" to="(890,430)"/> <wire from="(1920,2150)" to="(1980,2150)"/> <wire from="(820,1130)" to="(930,1130)"/> <wire from="(710,2150)" to="(710,2170)"/> <wire from="(150,2650)" to="(180,2650)"/> <wire from="(1810,630)" to="(1940,630)"/> <wire from="(180,1490)" to="(180,1590)"/> <wire from="(270,540)" to="(290,540)"/> <wire from="(210,370)" to="(210,410)"/> <wire from="(120,1740)" to="(200,1740)"/> <wire from="(2020,1330)" to="(2040,1330)"/> <wire from="(1340,3200)" to="(1370,3200)"/> <wire from="(2000,3530)" to="(2040,3530)"/> <wire from="(2080,3110)" to="(2110,3110)"/> <wire from="(2640,3680)" to="(2660,3680)"/> <wire from="(170,140)" to="(170,150)"/> <wire from="(570,1570)" to="(630,1570)"/> <wire from="(1330,2990)" to="(1370,2990)"/> <wire from="(570,3170)" to="(630,3170)"/> <wire from="(650,1970)" to="(710,1970)"/> <wire from="(650,3570)" to="(710,3570)"/> <wire from="(2020,1530)" to="(2020,1930)"/> <wire from="(120,240)" to="(230,240)"/> <wire from="(720,1740)" to="(760,1740)"/> <wire from="(720,1690)" to="(1010,1690)"/> <wire from="(1610,1940)" to="(1610,2720)"/> <wire from="(570,2940)" to="(670,2940)"/> <wire from="(140,110)" to="(140,140)"/> <wire from="(890,2650)" to="(890,2730)"/> <wire from="(1690,1530)" to="(1760,1530)"/> <wire from="(150,2460)" to="(180,2460)"/> <wire from="(680,2950)" to="(680,3120)"/> <wire from="(1740,750)" to="(1740,810)"/> <wire from="(1740,2350)" to="(1740,2410)"/> <wire from="(1080,1690)" to="(1280,1690)"/> <wire from="(260,2900)" to="(280,2900)"/> <wire from="(780,2770)" to="(810,2770)"/> <wire from="(710,2150)" to="(780,2150)"/> <wire from="(710,3750)" to="(780,3750)"/> <wire from="(2500,3620)" to="(2500,3700)"/> <wire from="(920,690)" to="(930,690)"/> <wire from="(620,2890)" to="(890,2890)"/> <wire from="(2820,3620)" to="(2820,3700)"/> <wire from="(2080,2920)" to="(2110,2920)"/> <wire from="(1320,1320)" to="(1490,1320)"/> <wire from="(810,1160)" to="(810,1360)"/> <wire from="(670,2770)" to="(720,2770)"/> <wire from="(2000,1550)" to="(2040,1550)"/> <wire from="(2020,3510)" to="(2040,3510)"/> <wire from="(680,3720)" to="(680,3850)"/> <wire from="(570,2980)" to="(630,2980)"/> <wire from="(760,290)" to="(820,290)"/> <wire from="(650,3380)" to="(710,3380)"/> <wire from="(1430,630)" to="(1430,2810)"/> <wire from="(1770,2120)" to="(1770,2320)"/> <wire from="(1900,1930)" to="(1900,2130)"/> <wire from="(120,950)" to="(160,950)"/> <wire from="(150,570)" to="(150,600)"/> <wire from="(710,1130)" to="(710,1150)"/> <wire from="(120,2240)" to="(150,2240)"/> <wire from="(760,1930)" to="(780,1930)"/> <wire from="(1740,3200)" to="(2320,3200)"/> <wire from="(150,2590)" to="(180,2590)"/> <wire from="(760,3530)" to="(780,3530)"/> <wire from="(1040,2870)" to="(1370,2870)"/> <wire from="(290,500)" to="(310,500)"/> <wire from="(1580,1540)" to="(1660,1540)"/> <wire from="(1490,940)" to="(1490,1320)"/> <wire from="(200,1060)" to="(210,1060)"/> <wire from="(1270,3390)" to="(1300,3390)"/> <wire from="(1740,1950)" to="(1760,1950)"/> <wire from="(690,270)" to="(700,270)"/> <wire from="(2080,1130)" to="(2110,1130)"/> <wire from="(680,2120)" to="(680,2320)"/> <wire from="(1790,1540)" to="(1890,1540)"/> <wire from="(120,750)" to="(170,750)"/> <wire from="(1160,2520)" to="(1580,2520)"/> <wire from="(1040,2870)" to="(1040,2900)"/> <wire from="(580,3850)" to="(680,3850)"/> <wire from="(1280,2850)" to="(1280,2980)"/> <wire from="(1160,3380)" to="(1220,3380)"/> <wire from="(1790,2540)" to="(1980,2540)"/> <wire from="(1740,3010)" to="(2320,3010)"/> <wire from="(120,2690)" to="(150,2690)"/> <wire from="(150,2400)" to="(180,2400)"/> <wire from="(890,270)" to="(910,270)"/> <wire from="(760,3340)" to="(780,3340)"/> <wire from="(2310,3770)" to="(2560,3770)"/> <wire from="(1040,3830)" to="(1040,3880)"/> <wire from="(1740,1410)" to="(2320,1410)"/> <wire from="(230,1530)" to="(250,1530)"/> <wire from="(320,2900)" to="(340,2900)"/> <wire from="(120,850)" to="(200,850)"/> <wire from="(920,630)" to="(930,630)"/> <wire from="(2560,3620)" to="(2560,3700)"/> <wire from="(920,3190)" to="(930,3190)"/> <wire from="(1370,3200)" to="(1370,3240)"/> <wire from="(860,1750)" to="(1040,1750)"/> <wire from="(760,730)" to="(760,930)"/> <wire from="(2580,3690)" to="(2600,3690)"/> <wire from="(760,2330)" to="(760,2530)"/> <wire from="(640,2020)" to="(640,2160)"/> <wire from="(530,330)" to="(580,330)"/> <wire from="(580,690)" to="(640,690)"/> <wire from="(580,300)" to="(580,330)"/> <wire from="(710,2670)" to="(710,2690)"/> <wire from="(1920,750)" to="(1980,750)"/> <wire from="(1920,2350)" to="(1980,2350)"/> <wire from="(820,1330)" to="(930,1330)"/> <wire from="(710,2350)" to="(710,2370)"/> <wire from="(710,750)" to="(710,770)"/> <wire from="(1780,80)" to="(1780,520)"/> <wire from="(890,2850)" to="(890,2890)"/> <wire from="(650,1760)" to="(670,1760)"/> <wire from="(180,1050)" to="(180,1150)"/> <wire from="(1160,1520)" to="(1360,1520)"/> <wire from="(150,620)" to="(170,620)"/> <wire from="(2020,1530)" to="(2040,1530)"/> <wire from="(1270,3330)" to="(1300,3330)"/> <wire from="(740,3850)" to="(810,3850)"/> <wire from="(820,2650)" to="(890,2650)"/> <wire from="(1320,3390)" to="(1340,3390)"/> <wire from="(920,3320)" to="(930,3320)"/> <wire from="(920,3000)" to="(930,3000)"/> <wire from="(310,3230)" to="(310,3290)"/> <wire from="(2100,80)" to="(2100,500)"/> <wire from="(160,1480)" to="(160,1540)"/> <wire from="(400,210)" to="(970,210)"/> <wire from="(2080,3310)" to="(2110,3310)"/> <wire from="(2440,3680)" to="(2460,3680)"/> <wire from="(650,2170)" to="(710,2170)"/> <wire from="(650,3770)" to="(710,3770)"/> <wire from="(610,3730)" to="(670,3730)"/> <wire from="(680,2860)" to="(720,2860)"/> <wire from="(260,3050)" to="(260,3200)"/> <wire from="(120,1990)" to="(150,1990)"/> <wire from="(690,3530)" to="(710,3530)"/> <wire from="(1370,2820)" to="(1370,2870)"/> <wire from="(1740,950)" to="(1740,1010)"/> <wire from="(690,1930)" to="(710,1930)"/> <wire from="(1740,2550)" to="(1740,2610)"/> <wire from="(1080,2850)" to="(1280,2850)"/> <wire from="(520,2720)" to="(870,2720)"/> <wire from="(210,490)" to="(230,490)"/> <wire from="(710,2350)" to="(780,2350)"/> <wire from="(710,750)" to="(780,750)"/> <wire from="(710,2670)" to="(780,2670)"/> <wire from="(140,1460)" to="(210,1460)"/> <wire from="(920,3770)" to="(930,3770)"/> <wire from="(1020,350)" to="(1030,350)"/> <wire from="(2620,3620)" to="(2620,3700)"/> <wire from="(2280,3500)" to="(2320,3500)"/> <wire from="(370,230)" to="(890,230)"/> <wire from="(1160,2080)" to="(1180,2080)"/> <wire from="(120,300)" to="(310,300)"/> <wire from="(810,1360)" to="(810,1560)"/> <wire from="(120,1770)" to="(180,1770)"/> <wire from="(1670,1510)" to="(1670,1910)"/> <wire from="(1550,2320)" to="(1660,2320)"/> <wire from="(2650,3690)" to="(2680,3690)"/> <wire from="(680,2450)" to="(680,2540)"/> <wire from="(1220,3310)" to="(1220,3380)"/> <wire from="(1770,2320)" to="(1770,2520)"/> <wire from="(1770,720)" to="(1770,920)"/> <wire from="(1900,2130)" to="(1900,2330)"/> <wire from="(2020,1930)" to="(2020,2130)"/> <wire from="(890,230)" to="(890,250)"/> <wire from="(710,1330)" to="(710,1350)"/> <wire from="(760,2130)" to="(780,2130)"/> <wire from="(690,3340)" to="(710,3340)"/> <wire from="(1740,3400)" to="(2320,3400)"/> <wire from="(760,3730)" to="(780,3730)"/> <wire from="(1260,3600)" to="(1270,3600)"/> <wire from="(1040,3070)" to="(1370,3070)"/> <wire from="(120,1490)" to="(140,1490)"/> <wire from="(1460,1120)" to="(1660,1120)"/> <wire from="(1870,1960)" to="(1890,1960)"/> <wire from="(1360,80)" to="(1360,1520)"/> <wire from="(200,2920)" to="(280,2920)"/> <wire from="(760,2530)" to="(760,2650)"/> <wire from="(1270,3620)" to="(2260,3620)"/> <wire from="(1740,2150)" to="(1760,2150)"/> <wire from="(810,270)" to="(820,270)"/> <wire from="(1160,3120)" to="(1760,3120)"/> <wire from="(240,3290)" to="(310,3290)"/> <wire from="(680,720)" to="(680,920)"/> <wire from="(2080,1330)" to="(2110,1330)"/> <wire from="(640,3560)" to="(640,3760)"/> <wire from="(1330,3520)" to="(1760,3520)"/> <wire from="(1040,3070)" to="(1040,3090)"/> <wire from="(2260,3520)" to="(2260,3620)"/> <wire from="(810,1560)" to="(810,1570)"/> <wire from="(1160,720)" to="(1200,720)"/> <wire from="(980,520)" to="(1040,520)"/> <wire from="(950,260)" to="(1050,260)"/> <wire from="(580,2450)" to="(680,2450)"/> <wire from="(1790,2740)" to="(1980,2740)"/> <wire from="(120,650)" to="(150,650)"/> <wire from="(150,2920)" to="(180,2920)"/> <wire from="(700,2840)" to="(720,2840)"/> <wire from="(1740,1610)" to="(2320,1610)"/> <wire from="(230,1090)" to="(250,1090)"/> <wire from="(2680,3620)" to="(2680,3690)"/> <wire from="(210,430)" to="(230,430)"/> <wire from="(1030,180)" to="(1030,240)"/> <wire from="(2360,3620)" to="(2360,3700)"/> <wire from="(920,1790)" to="(930,1790)"/> <wire from="(1160,2930)" to="(1760,2930)"/> <wire from="(2610,3680)" to="(2610,3700)"/> <wire from="(1430,630)" to="(1710,630)"/> <wire from="(1280,80)" to="(1280,1120)"/> <wire from="(760,930)" to="(760,1130)"/> <wire from="(2380,3690)" to="(2400,3690)"/> <wire from="(570,1930)" to="(670,1930)"/> <wire from="(570,3530)" to="(670,3530)"/> <wire from="(1920,950)" to="(1980,950)"/> <wire from="(270,600)" to="(310,600)"/> <wire from="(820,3130)" to="(930,3130)"/> <wire from="(820,1530)" to="(930,1530)"/> <wire from="(710,2550)" to="(710,2570)"/> <wire from="(710,950)" to="(710,970)"/> <wire from="(200,220)" to="(230,220)"/> <wire from="(1160,2160)" to="(1170,2160)"/> <wire from="(2280,3480)" to="(2280,3490)"/> <wire from="(1460,740)" to="(1660,740)"/> <wire from="(1270,3210)" to="(1300,3210)"/> <wire from="(1740,490)" to="(1760,490)"/> <wire from="(680,1880)" to="(680,1940)"/> <wire from="(640,3760)" to="(640,3810)"/> <wire from="(160,1040)" to="(160,1100)"/> <wire from="(680,1940)" to="(680,2120)"/> <wire from="(2080,3510)" to="(2110,3510)"/> <wire from="(500,1830)" to="(500,3880)"/> <wire from="(570,1970)" to="(630,1970)"/> <wire from="(650,770)" to="(710,770)"/> <wire from="(570,3570)" to="(630,3570)"/> <wire from="(650,2370)" to="(710,2370)"/> <wire from="(650,2690)" to="(710,2690)"/> <wire from="(140,1470)" to="(140,1490)"/> <wire from="(570,3340)" to="(670,3340)"/> <wire from="(780,2750)" to="(780,2770)"/> <wire from="(120,1540)" to="(160,1540)"/> <wire from="(820,2940)" to="(930,2940)"/> <wire from="(120,2190)" to="(150,2190)"/> <wire from="(690,3730)" to="(710,3730)"/> <wire from="(1690,1930)" to="(1760,1930)"/> <wire from="(760,2840)" to="(780,2840)"/> <wire from="(890,410)" to="(910,410)"/> <wire from="(640,2990)" to="(640,3160)"/> <wire from="(1740,1150)" to="(1740,1210)"/> <wire from="(690,2130)" to="(710,2130)"/> <wire from="(1740,2750)" to="(1740,2810)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(1650,2140)" to="(1660,2140)"/> <wire from="(710,950)" to="(780,950)"/> <wire from="(710,2550)" to="(780,2550)"/> <wire from="(2420,3620)" to="(2420,3700)"/> <wire from="(140,1020)" to="(210,1020)"/> <wire from="(1430,2810)" to="(1710,2810)"/> <wire from="(2450,3690)" to="(2480,3690)"/> <wire from="(2000,1950)" to="(2040,1950)"/> <wire from="(200,140)" to="(250,140)"/> <wire from="(1010,2830)" to="(1300,2830)"/> <wire from="(570,3380)" to="(630,3380)"/> <wire from="(640,690)" to="(640,780)"/> <wire from="(1200,80)" to="(1200,720)"/> <wire from="(760,1900)" to="(760,1930)"/> <wire from="(1770,920)" to="(1770,1120)"/> <wire from="(1770,2520)" to="(1770,2720)"/> <wire from="(580,1880)" to="(680,1880)"/> <wire from="(1900,730)" to="(1900,930)"/> <wire from="(2020,2130)" to="(2020,2330)"/> <wire from="(710,3130)" to="(710,3150)"/> <wire from="(1790,3130)" to="(1980,3130)"/> <wire from="(710,1530)" to="(710,1550)"/> <wire from="(810,3160)" to="(810,3370)"/> <wire from="(760,2330)" to="(780,2330)"/> <wire from="(760,2650)" to="(780,2650)"/> <wire from="(700,2800)" to="(700,2840)"/> <wire from="(1160,3190)" to="(1300,3190)"/> <wire from="(760,730)" to="(780,730)"/> <wire from="(290,580)" to="(310,580)"/> <wire from="(1220,3380)" to="(1220,3570)"/> <wire from="(120,1050)" to="(140,1050)"/> <wire from="(1870,2160)" to="(1890,2160)"/> <wire from="(810,2970)" to="(810,3160)"/> <wire from="(1740,750)" to="(1760,750)"/> <wire from="(1740,2350)" to="(1760,2350)"/> <wire from="(140,1470)" to="(210,1470)"/> <wire from="(920,1860)" to="(930,1860)"/> <wire from="(1790,1940)" to="(1890,1940)"/> <wire from="(460,320)" to="(460,390)"/> <wire from="(680,920)" to="(680,1120)"/> <wire from="(640,2160)" to="(640,2360)"/> <wire from="(2080,1530)" to="(2110,1530)"/> <wire from="(180,1770)" to="(180,1780)"/> <wire from="(1580,1540)" to="(1580,2520)"/> <wire from="(1670,1910)" to="(1670,2110)"/> <wire from="(720,1760)" to="(760,1760)"/> <wire from="(170,160)" to="(170,180)"/> <wire from="(1160,3780)" to="(1220,3780)"/> <wire from="(710,2940)" to="(710,2960)"/> <wire from="(1790,2940)" to="(1980,2940)"/> <wire from="(2480,3620)" to="(2480,3690)"/> <wire from="(200,610)" to="(230,610)"/> <wire from="(1220,3310)" to="(1300,3310)"/> <wire from="(2150,80)" to="(2150,470)"/> <wire from="(1160,3000)" to="(1300,3000)"/> <wire from="(270,370)" to="(290,370)"/> <wire from="(780,2790)" to="(810,2790)"/> <wire from="(2660,3700)" to="(2700,3700)"/> <wire from="(2410,3680)" to="(2410,3700)"/> <wire from="(1280,2980)" to="(1300,2980)"/> <wire from="(2800,3620)" to="(2800,3700)"/> <wire from="(760,1130)" to="(760,1330)"/> <wire from="(120,1590)" to="(180,1590)"/> <wire from="(1330,2820)" to="(1370,2820)"/> <wire from="(1410,2120)" to="(1660,2120)"/> <wire from="(190,2930)" to="(190,3080)"/> <wire from="(570,2130)" to="(670,2130)"/> <wire from="(1900,80)" to="(1900,730)"/> <wire from="(1920,1150)" to="(1980,1150)"/> <wire from="(270,480)" to="(310,480)"/> <wire from="(710,1150)" to="(710,1170)"/> <wire from="(120,1940)" to="(150,1940)"/> <wire from="(920,510)" to="(940,510)"/> <wire from="(1080,2800)" to="(1080,2850)"/> <wire from="(1740,3140)" to="(1740,3200)"/> <wire from="(260,3050)" to="(280,3050)"/> <wire from="(1580,2520)" to="(1660,2520)"/> <wire from="(2020,1930)" to="(2040,1930)"/> <wire from="(1040,520)" to="(1040,570)"/> <wire from="(1490,1320)" to="(1660,1320)"/> <wire from="(120,2750)" to="(240,2750)"/> <wire from="(160,1450)" to="(210,1450)"/> <wire from="(570,2170)" to="(630,2170)"/> <wire from="(570,3770)" to="(630,3770)"/> <wire from="(650,970)" to="(710,970)"/> <wire from="(650,2570)" to="(710,2570)"/> <wire from="(950,400)" to="(1050,400)"/> <wire from="(140,1030)" to="(140,1050)"/> <wire from="(2020,2520)" to="(2020,2720)"/> <wire from="(1610,1940)" to="(1660,1940)"/> <wire from="(120,1100)" to="(160,1100)"/> <wire from="(1690,2130)" to="(1760,2130)"/> <wire from="(180,1490)" to="(210,1490)"/> <wire from="(2020,2330)" to="(2020,2520)"/> <wire from="(760,690)" to="(760,730)"/> <wire from="(580,300)" to="(600,300)"/> <wire from="(690,730)" to="(710,730)"/> <wire from="(1740,1350)" to="(1740,1410)"/> <wire from="(690,2330)" to="(710,2330)"/> <wire from="(690,2650)" to="(710,2650)"/> <wire from="(1740,2950)" to="(1740,3010)"/> <wire from="(1460,740)" to="(1460,1120)"/> <wire from="(1650,2340)" to="(1660,2340)"/> <wire from="(290,540)" to="(290,580)"/> <wire from="(120,1440)" to="(140,1440)"/> <wire from="(710,1150)" to="(780,1150)"/> <wire from="(1160,1320)" to="(1320,1320)"/> <wire from="(120,1830)" to="(200,1830)"/> <wire from="(1360,1520)" to="(1520,1520)"/> <wire from="(310,240)" to="(310,300)"/> <wire from="(1160,880)" to="(1180,880)"/> <wire from="(2000,2150)" to="(2040,2150)"/> <wire from="(1270,3440)" to="(1270,3510)"/> <wire from="(1770,1120)" to="(1770,1320)"/> <wire from="(1770,2720)" to="(1770,2920)"/> <wire from="(2600,3620)" to="(2600,3680)"/> <wire from="(1900,930)" to="(1900,1130)"/> <wire from="(2020,730)" to="(2020,930)"/> <wire from="(550,290)" to="(550,310)"/> <wire from="(860,1750)" to="(860,1830)"/> <wire from="(1790,3330)" to="(1980,3330)"/> <wire from="(760,2530)" to="(780,2530)"/> <wire from="(640,1980)" to="(640,2020)"/> <wire from="(970,180)" to="(990,180)"/> <wire from="(1030,240)" to="(1050,240)"/> <wire from="(760,930)" to="(780,930)"/> <wire from="(740,270)" to="(760,270)"/> <wire from="(320,3050)" to="(340,3050)"/> <wire from="(1270,3440)" to="(1340,3440)"/> <wire from="(1870,760)" to="(1890,760)"/> <wire from="(1870,2360)" to="(1890,2360)"/> <wire from="(120,1640)" to="(200,1640)"/> <wire from="(1280,1690)" to="(1280,2810)"/> <wire from="(1740,950)" to="(1760,950)"/> <wire from="(1740,2550)" to="(1760,2550)"/> <wire from="(140,1030)" to="(210,1030)"/> <wire from="(260,3200)" to="(260,3260)"/> <wire from="(1790,2140)" to="(1890,2140)"/> <wire from="(1490,940)" to="(1660,940)"/> <wire from="(680,1120)" to="(680,1320)"/> <wire from="(640,2360)" to="(640,2560)"/> <wire from="(120,1340)" to="(180,1340)"/> <wire from="(2760,3700)" to="(2780,3700)"/> <wire from="(1010,2800)" to="(1010,2830)"/> <wire from="(1670,2110)" to="(1670,2310)"/> <wire from="(170,140)" to="(200,140)"/> <wire from="(1740,2010)" to="(2320,2010)"/> <wire from="(500,3880)" to="(1040,3880)"/> <wire from="(920,590)" to="(930,590)"/> <wire from="(920,3150)" to="(930,3150)"/> <wire from="(870,2720)" to="(870,2900)"/> <wire from="(2280,3520)" to="(2320,3520)"/> <wire from="(2460,3700)" to="(2500,3700)"/> <comp lib="4" loc="(820,2330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(570,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(340,3050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,3570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(570,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(200,610)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(820,2940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1110,390)" name="Tunnel"> <a name="label" val="THLOAD"/> </comp> <comp lib="4" loc="(320,3050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(700,1750)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1780,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(690,1330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(2000,1950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,2330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(1020,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(610,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(640,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV3"/> </comp> <comp lib="0" loc="(150,2140)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(120,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="1" loc="(650,2170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(820,3530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(841,3124)" name="Text"> <a name="text" val="NTV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,2690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(2000,2540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(920,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,1860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(580,3850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(150,1990)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(920,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="1" loc="(690,3130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1920,750)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(750,1900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(120,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="2" loc="(1790,3130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2310,3720)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> </comp> <comp lib="2" loc="(1690,2530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2080,3120)" name="D-latch"/> <comp lib="0" loc="(150,2090)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(1183,2993)" name="Text"> <a name="text" val="NTH0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,3110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,2920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2110,1330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp loc="(2080,1940)" name="D-latch"/> <comp lib="0" loc="(120,2750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(2260,3520)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(120,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV0"/> </comp> <comp lib="2" loc="(1690,1930)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(790,1750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(1854,658)" name="Text"> <a name="text" val="$2007W"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="0" loc="(1900,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(150,140)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(570,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(120,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="6" loc="(1260,2805)" name="Text"> <a name="text" val="THZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1200,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO0"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2000,3330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1650,2540)" name="Constant"/> <comp lib="0" loc="(2100,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2110,3510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(1340,3200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(680,2850)" name="D-latch"/> <comp lib="4" loc="(740,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(240,2750)" name="Tunnel"> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,1200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="6" loc="(841,3333)" name="Text"> <a name="text" val="FV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(920,2960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="1" loc="(980,520)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2000,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,2450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(648,417)" name="Text"> <a name="text" val="W6.2 LOADER"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="0" loc="(120,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> </comp> <comp lib="0" loc="(570,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(120,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(2380,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(920,630)" name="Constant"/> <comp loc="(2080,2730)" name="D-latch"/> <comp lib="2" loc="(1790,2340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1690,2130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(650,1370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(920,1580)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(350,420)" name="D-latch"/> <comp lib="0" loc="(230,1070)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(735,1781)" name="Text"> <a name="text" val="FVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(850,2780)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1646,699)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1330,3520)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1790,1940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1185,3371)" name="Text"> <a name="text" val="/FVO0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(240,2580)" name="Tunnel"> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(920,3300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="1" loc="(650,3770)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(840,2643)" name="Text"> <a name="text" val="TV4"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp loc="(1160,580)" name="PAR_5BIT_COUNTER"/> <comp lib="0" loc="(2310,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="OBJ DATA"/> </comp> <comp lib="0" loc="(620,2770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="2" loc="(1790,2940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(120,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="6" loc="(840,3723)" name="Text"> <a name="text" val="FV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(370,230)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1920,2150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2000,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(908,2773)" name="Text"> <a name="text" val="0/TV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="4" loc="(820,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,1130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(580,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(120,1940)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(2000,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(1790,3530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(270,420)" name="D-latch"/> <comp lib="4" loc="(820,1530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(1870,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(570,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(120,2570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/1"/> </comp> <comp lib="0" loc="(150,2190)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(920,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(220,1810)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(1690,1530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1790,2540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2110,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2110,2520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2240)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp lib="2" loc="(1790,740)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(320,2900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(340,3200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1280,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO2"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2880,330)" name="PATTERN_ADDRESS_GENERATOR"/> <comp lib="1" loc="(1330,2820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,2040)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp loc="(2080,2340)" name="D-latch"/> <comp lib="0" loc="(740,3850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,2140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1650,2740)" name="Constant"/> <comp lib="1" loc="(2000,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(150,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(690,2130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(1247,3219)" name="Text"> <a name="text" val="/BLNK"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(690,3340)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(2080,2140)" name="D-latch"/> <comp lib="6" loc="(1039,511)" name="Text"> <a name="text" val="THIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(841,2124)" name="Text"> <a name="text" val="TV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,2130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="4" loc="(820,2130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1090,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1920,1350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(240,3260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="6" loc="(1872,704)" name="Text"> <a name="text" val="DB/PAR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(560,260)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1295,3476)" name="Text"> <a name="text" val="/BLNK"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(200,3220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1790,2140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(120,2380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp lib="0" loc="(1950,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(600,330)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp loc="(2080,3320)" name="D-latch"/> <comp lib="0" loc="(270,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(570,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(690,2330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2050,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(580,1880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(750,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="1" loc="(350,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(920,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1870,1560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(2770,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="0" loc="(2110,2130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(120,2440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/2"/> </comp> <comp lib="4" loc="(820,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(120,2290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(2000,2940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(950,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(920,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="0" loc="(920,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(150,3220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(350,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,180)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(920,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(580,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(810,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(580,2020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(170,800)" name="Tunnel"> <a name="label" val="l1/32"/> </comp> <comp lib="6" loc="(841,2523)" name="Text"> <a name="text" val="TV3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(210,2690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV1"/> </comp> <comp lib="1" loc="(1340,3320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(670,2770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1740,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(1186,3575)" name="Text"> <a name="text" val="/FVO1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(650,3380)" name="Controlled Buffer"/> <comp lib="1" loc="(650,2980)" name="Controlled Buffer"/> <comp lib="0" loc="(1750,3540)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(1058,186)" name="Text"> <a name="text" val="PCLK2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(270,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1010,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(570,3210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W0'"/> </comp> <comp lib="1" loc="(2000,2350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(250,1090)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> </comp> <comp lib="6" loc="(1548,664)" name="Text"> <a name="text" val="ATTRIBUTE ADDRESS"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(570,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(920,3280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1260,3600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2300,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0''"/> </comp> <comp lib="6" loc="(841,2935)" name="Text"> <a name="text" val="NTH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(690,3730)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(845,1324)" name="Text"> <a name="text" val="TH3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1790,1540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(820,2530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(570,3340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(240,2390)" name="Tunnel"> <a name="label" val="/W0'"/> </comp> <comp lib="0" loc="(920,3320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(843,1524)" name="Text"> <a name="text" val="TH4"/> </comp> <comp lib="0" loc="(240,2510)" name="Tunnel"> <a name="label" val="/W6.1'"/> </comp> <comp lib="2" loc="(1690,1330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(583,2745)" name="Text"> <a name="text" val="TV NULLER"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="2" loc="(1790,940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(240,2640)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(1320,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO3"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(372,425)" name="Text"> <a name="text" val="E/EV''"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(680,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(120,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp lib="0" loc="(920,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(120,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(230,1510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(1920,1950)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(740,3810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(570,2370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="2" loc="(1690,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2200,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> <a name="labelloc" val="north"/> </comp> <comp loc="(1160,3090)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(570,3130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(740,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(920,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(220,2390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1340,3440)" name="Tunnel"> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(570,2940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="6" loc="(787,2857)" name="Text"> <a name="text" val="/TVZ''"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(270,600)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1870,2160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp loc="(2080,2530)" name="D-latch"/> <comp lib="0" loc="(1110,250)" name="Tunnel"> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(920,3150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(920,3000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2110,2920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,2190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(920,1860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(570,2570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(160,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(570,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(1870,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(2000,1550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(847,1123)" name="Text"> <a name="text" val="TH2"/> </comp> <comp lib="0" loc="(2110,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1160,3260)" name="PAR_3BIT_COUNTER"/> <comp lib="0" loc="(1360,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO4"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(1790,2740)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(370,490)" name="Tunnel"> <a name="label" val="TVSTEP"/> </comp> <comp lib="2" loc="(1790,1340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(820,3130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2080,1540)" name="D-latch"/> <comp lib="6" loc="(845,724)" name="Text"> <a name="text" val="TH0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1870,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="2" loc="(1790,3330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(690,2530)" name="Controlled Buffer"/> <comp lib="4" loc="(820,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(570,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(580,3810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(2580,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> </comp> <comp lib="0" loc="(120,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TSTEP"/> </comp> <comp loc="(760,2850)" name="D-latch"/> <comp lib="0" loc="(920,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(594,2873)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(845,924)" name="Text"> <a name="text" val="TH1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(190,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(650,1740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="1" loc="(220,2510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,2240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(2310,3820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="4"/> <a name="label" val="OV DATA"/> </comp> <comp lib="0" loc="(920,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2080,1140)" name="D-latch"/> <comp lib="1" loc="(650,770)" name="Controlled Buffer"/> <comp lib="0" loc="(580,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(150,1940)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(570,3570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="2" loc="(1920,2350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2000,3530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(570,2530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(570,3530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(2110,2720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(2000,2150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(250,140)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(250,1530)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="OBJ DATA"/> </comp> <comp lib="6" loc="(1012,3081)" name="Text"> <a name="text" val="NTVIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,3310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(690,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(650,1970)" name="Controlled Buffer"/> <comp lib="4" loc="(820,1930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(820,3730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,2290)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(570,2980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(1261,2978)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(840,1921)" name="Text"> <a name="text" val="TV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1160,2900)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(240,3290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="4" loc="(820,2650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,730)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1410,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(820,3340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(760,2760)" name="D-latch"/> <comp lib="1" loc="(650,970)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(690,3530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(340,2900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1920,1550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1920,950)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(841,2323)" name="Text"> <a name="text" val="TV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2250,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2080,2930)" name="D-latch"/> <comp lib="6" loc="(1009,2890)" name="Text"> <a name="text" val="NTHIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1690,1130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1090,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1690,2730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(650,2570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(370,590)" name="Tunnel"> <a name="label" val="THSTEP"/> </comp> <comp lib="2" loc="(1690,2330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2080,3520)" name="D-latch"/> <comp lib="0" loc="(570,1930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(240,1810)" name="Tunnel"> <a name="width" val="4"/> <a name="label" val="OV DATA"/> </comp> <comp lib="0" loc="(120,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="6" loc="(1099,1678)" name="Text"> <a name="text" val="THZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(860,280)" name="D-latch"/> <comp lib="6" loc="(1097,2818)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1650,2340)" name="Constant"/> <comp lib="6" loc="(1791,3480)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(610,3730)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(920,2980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp loc="(2080,940)" name="D-latch"/> <comp lib="1" loc="(220,2580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1870,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(170,750)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(690,2940)" name="Controlled Buffer"/> <comp lib="0" loc="(120,2630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/2"/> </comp> <comp lib="0" loc="(240,2690)" name="Tunnel"> <a name="label" val="DBE"/> </comp> <comp lib="6" loc="(1039,1742)" name="Text"> <a name="text" val="TVIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2150,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(986,1682)" name="Text"> <a name="text" val="THZB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(650,2690)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,2500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/1"/> </comp> <comp lib="1" loc="(1770,560)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(987,2820)" name="Text"> <a name="text" val="TVZB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(120,2040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(200,3070)" name="Controlled Buffer"/> <comp lib="0" loc="(570,2170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1870,1960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="1" loc="(690,930)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(1160,1780)" name="PAR_5BIT_COUNTER"/> <comp lib="1" loc="(950,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(1240,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO1"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2080,1340)" name="D-latch"/> <comp loc="(270,230)" name="D-latch"/> <comp lib="0" loc="(460,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(2000,1350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(2080,740)" name="D-latch"/> <comp lib="6" loc="(1647,2651)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1690,930)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1650,2140)" name="Constant"/> <comp lib="0" loc="(2110,930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1790,1140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(920,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1870,2360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(650,3170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2000,3130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(170,650)" name="Tunnel"> <a name="label" val="H0''"/> </comp> <comp lib="1" loc="(270,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,1970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1670,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(320,3200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,1530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(1185,3774)" name="Text"> <a name="text" val="/FVO2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(841,3522)" name="Text"> <a name="text" val="FV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="1" loc="(650,2370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(150,2920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(1747,703)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(920,3190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2110,2330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(650,1570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(820,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,1930)" name="Controlled Buffer"/> <comp lib="0" loc="(120,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(650,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2040,680)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1340,3390)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,2450)" name="Tunnel"> <a name="label" val="/W5.2'"/> </comp> <comp lib="1" loc="(1300,3390)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1182,3183)" name="Text"> <a name="text" val="NTV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(2000,2740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1330,2990)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2110,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(690,2650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1920,1150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(650,1170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(570,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="1" loc="(220,2640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,2920)" name="Controlled Buffer"/> </circuit> <circuit name="PATTERN_ADDRESS_GENERATOR"> <a name="circuit" val="PATTERN_ADDRESS_GENERATOR"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M80,51 Q84,61 88,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#9290ff" height="3290" stroke="#000000" stroke-width="2" width="560" x="50" y="50"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="430" y="3330">7</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="291" y="3330">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="83" y="226">O8/16</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="209" y="3329">6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3206">/FVO0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="76" y="255">/SH2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="88" y="196">OBSEL</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="85" y="2735">PAD10</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="79" y="1736">PAD5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="549" y="3330">3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="409" y="3330">6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="315">#F/NT</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="190" y="3329">5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="361" y="3309">OBJ DATA</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="83" y="735">PAD1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="489" y="3330">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="1335">PAD4</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="84" y="285">PAR/O</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="369" y="3330">4</text> <polyline fill="none" points="57,73 57,66" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="349" y="3330">3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="936">PAD2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3247">/FVO2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="130" y="3329">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="77" y="135">/H1'</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="1135">PAD3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="1936">PAD6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="86" y="3126">PAD12</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="89" y="165">BGSEL</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="508" y="3330">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2335">PAD8</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2136">PAD7</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="73" y="106">H0''</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="76">PCLK</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="90" y="3329">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="519" y="3309">OBJ V INDEX</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="229" y="3329">7</text> <text font-family="SansSerif" font-size="32" font-weight="bold" text-anchor="middle" x="338" y="1557">PATTERN_ADDRESS</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="165" y="3308">PPU DATA</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3227">/FVO1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="86" y="2926">PAD11</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="529" y="3330">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="309" y="3330">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="109" y="3329">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="390" y="3330">5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="169" y="3329">4</text> <text font-family="SansSerif" font-size="32" font-weight="bold" text-anchor="middle" x="322" y="1617">GENERATOR</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="536">PAD0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="330" y="3330">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2536">PAD9</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="150" y="3329">3</text> <polyline fill="none" points="51,65 57,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 57,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="130,40" width="8" x="46" y="66"/> <circ-port height="8" pin="130,100" width="8" x="46" y="126"/> <circ-port height="8" pin="130,150" width="8" x="46" y="276"/> <circ-port height="8" pin="130,200" width="8" x="46" y="306"/> <circ-port height="8" pin="130,260" width="8" x="46" y="96"/> <circ-port height="8" pin="130,320" width="8" x="46" y="246"/> <circ-port height="8" pin="130,390" width="8" x="46" y="3196"/> <circ-port height="8" pin="130,450" width="8" x="486" y="3336"/> <circ-port height="8" pin="130,490" width="8" x="46" y="3216"/> <circ-port height="8" pin="130,550" width="8" x="506" y="3336"/> <circ-port height="8" pin="130,590" width="8" x="46" y="3236"/> <circ-port height="8" pin="130,650" width="8" x="526" y="3336"/> <circ-port height="8" pin="130,740" width="8" x="546" y="3336"/> <circ-port height="8" pin="130,840" width="8" x="86" y="3336"/> <circ-port height="8" pin="130,910" width="8" x="286" y="3336"/> <circ-port height="8" pin="130,990" width="8" x="106" y="3336"/> <circ-port height="8" pin="130,1060" width="8" x="306" y="3336"/> <circ-port height="8" pin="130,1140" width="8" x="126" y="3336"/> <circ-port height="8" pin="130,1210" width="8" x="326" y="3336"/> <circ-port height="8" pin="130,1290" width="8" x="146" y="3336"/> <circ-port height="8" pin="130,1360" width="8" x="346" y="3336"/> <circ-port height="8" pin="130,1440" width="8" x="166" y="3336"/> <circ-port height="8" pin="130,1510" width="8" x="366" y="3336"/> <circ-port height="8" pin="130,1590" width="8" x="186" y="3336"/> <circ-port height="8" pin="130,1660" width="8" x="386" y="3336"/> <circ-port height="8" pin="130,1740" width="8" x="206" y="3336"/> <circ-port height="8" pin="130,1810" width="8" x="406" y="3336"/> <circ-port height="8" pin="130,1890" width="8" x="226" y="3336"/> <circ-port height="8" pin="130,1960" width="8" x="426" y="3336"/> <circ-port height="8" pin="130,2090" width="8" x="46" y="186"/> <circ-port height="8" pin="130,2140" width="8" x="46" y="216"/> <circ-port height="8" pin="130,2190" width="8" x="46" y="156"/> <circ-port height="10" pin="830,430" width="10" x="45" y="525"/> <circ-port height="10" pin="830,530" width="10" x="45" y="725"/> <circ-port height="10" pin="830,630" width="10" x="45" y="925"/> <circ-port height="10" pin="830,720" width="10" x="45" y="1125"/> <circ-port height="10" pin="830,850" width="10" x="45" y="1325"/> <circ-port height="10" pin="830,1000" width="10" x="45" y="1725"/> <circ-port height="10" pin="830,1150" width="10" x="45" y="1925"/> <circ-port height="10" pin="830,1300" width="10" x="45" y="2125"/> <circ-port height="10" pin="830,1450" width="10" x="45" y="2325"/> <circ-port height="10" pin="830,1600" width="10" x="45" y="2525"/> <circ-port height="10" pin="830,1750" width="10" x="45" y="2725"/> <circ-port height="10" pin="830,1900" width="10" x="45" y="2915"/> <circ-port height="10" pin="830,2020" width="10" x="45" y="3115"/> <circ-anchor facing="east" height="6" width="6" x="607" y="47"/> </appear> <wire from="(440,1270)" to="(440,1340)"/> <wire from="(280,230)" to="(280,300)"/> <wire from="(130,40)" to="(190,40)"/> <wire from="(500,740)" to="(550,740)"/> <wire from="(260,1440)" to="(380,1440)"/> <wire from="(250,250)" to="(300,250)"/> <wire from="(130,840)" to="(240,840)"/> <wire from="(360,820)" to="(360,970)"/> <wire from="(680,610)" to="(680,830)"/> <wire from="(440,1190)" to="(440,1270)"/> <wire from="(440,630)" to="(440,720)"/> <wire from="(260,280)" to="(620,280)"/> <wire from="(680,980)" to="(680,1130)"/> <wire from="(750,1130)" to="(750,1280)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(500,1440)" to="(670,1440)"/> <wire from="(360,630)" to="(360,720)"/> <wire from="(810,1000)" to="(830,1000)"/> <wire from="(750,1580)" to="(770,1580)"/> <wire from="(530,720)" to="(550,720)"/> <wire from="(280,230)" to="(300,230)"/> <wire from="(640,1460)" to="(670,1460)"/> <wire from="(360,630)" to="(380,630)"/> <wire from="(440,630)" to="(460,630)"/> <wire from="(360,1270)" to="(380,1270)"/> <wire from="(640,420)" to="(670,420)"/> <wire from="(200,200)" to="(200,240)"/> <wire from="(440,1190)" to="(460,1190)"/> <wire from="(440,1270)" to="(460,1270)"/> <wire from="(700,1450)" to="(770,1450)"/> <wire from="(370,330)" to="(380,330)"/> <wire from="(130,1060)" to="(460,1060)"/> <wire from="(640,1760)" to="(640,1810)"/> <wire from="(130,390)" to="(640,390)"/> <wire from="(440,1720)" to="(440,1790)"/> <wire from="(130,450)" to="(380,450)"/> <wire from="(230,40)" to="(230,50)"/> <wire from="(500,550)" to="(550,550)"/> <wire from="(260,1890)" to="(380,1890)"/> <wire from="(130,1290)" to="(240,1290)"/> <wire from="(360,1270)" to="(360,1420)"/> <wire from="(360,410)" to="(360,430)"/> <wire from="(130,320)" to="(300,320)"/> <wire from="(440,1640)" to="(440,1720)"/> <wire from="(530,810)" to="(640,810)"/> <wire from="(750,1580)" to="(750,1730)"/> <wire from="(680,1430)" to="(680,1580)"/> <wire from="(500,1890)" to="(670,1890)"/> <wire from="(420,1440)" to="(460,1440)"/> <wire from="(810,1450)" to="(830,1450)"/> <wire from="(530,530)" to="(550,530)"/> <wire from="(750,510)" to="(770,510)"/> <wire from="(750,830)" to="(770,830)"/> <wire from="(640,1910)" to="(670,1910)"/> <wire from="(360,1720)" to="(380,1720)"/> <wire from="(440,1640)" to="(460,1640)"/> <wire from="(440,1720)" to="(460,1720)"/> <wire from="(530,530)" to="(530,630)"/> <wire from="(210,50)" to="(230,50)"/> <wire from="(750,510)" to="(750,610)"/> <wire from="(260,280)" to="(260,780)"/> <wire from="(700,1900)" to="(770,1900)"/> <wire from="(370,300)" to="(380,300)"/> <wire from="(680,1880)" to="(680,2000)"/> <wire from="(280,190)" to="(360,190)"/> <wire from="(130,1510)" to="(460,1510)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(500,1360)" to="(640,1360)"/> <wire from="(440,970)" to="(440,1040)"/> <wire from="(130,740)" to="(380,740)"/> <wire from="(350,370)" to="(400,370)"/> <wire from="(330,350)" to="(380,350)"/> <wire from="(130,2140)" to="(570,2140)"/> <wire from="(500,910)" to="(560,910)"/> <wire from="(260,1140)" to="(380,1140)"/> <wire from="(530,2020)" to="(530,2090)"/> <wire from="(130,1740)" to="(240,1740)"/> <wire from="(360,1720)" to="(360,1870)"/> <wire from="(750,320)" to="(750,410)"/> <wire from="(420,350)" to="(530,350)"/> <wire from="(440,890)" to="(440,970)"/> <wire from="(380,880)" to="(380,910)"/> <wire from="(260,780)" to="(620,780)"/> <wire from="(750,830)" to="(750,980)"/> <wire from="(420,450)" to="(460,450)"/> <wire from="(500,1140)" to="(670,1140)"/> <wire from="(420,1890)" to="(460,1890)"/> <wire from="(570,940)" to="(570,2050)"/> <wire from="(750,2000)" to="(770,2000)"/> <wire from="(810,1900)" to="(830,1900)"/> <wire from="(750,1280)" to="(770,1280)"/> <wire from="(640,1160)" to="(670,1160)"/> <wire from="(360,970)" to="(380,970)"/> <wire from="(640,520)" to="(670,520)"/> <wire from="(440,890)" to="(460,890)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(680,410)" to="(680,510)"/> <wire from="(700,430)" to="(770,430)"/> <wire from="(700,1150)" to="(770,1150)"/> <wire from="(640,1460)" to="(640,1510)"/> <wire from="(500,1810)" to="(640,1810)"/> <wire from="(130,490)" to="(640,490)"/> <wire from="(440,1420)" to="(440,1490)"/> <wire from="(130,550)" to="(380,550)"/> <wire from="(230,60)" to="(230,70)"/> <wire from="(500,650)" to="(550,650)"/> <wire from="(260,1590)" to="(380,1590)"/> <wire from="(680,150)" to="(680,410)"/> <wire from="(130,990)" to="(240,990)"/> <wire from="(360,190)" to="(360,210)"/> <wire from="(530,630)" to="(530,720)"/> <wire from="(360,970)" to="(360,1120)"/> <wire from="(640,390)" to="(640,420)"/> <wire from="(440,1340)" to="(440,1420)"/> <wire from="(180,260)" to="(220,260)"/> <wire from="(680,1130)" to="(680,1280)"/> <wire from="(750,1280)" to="(750,1430)"/> <wire from="(420,740)" to="(460,740)"/> <wire from="(420,1140)" to="(460,1140)"/> <wire from="(500,1590)" to="(670,1590)"/> <wire from="(810,430)" to="(830,430)"/> <wire from="(810,1150)" to="(830,1150)"/> <wire from="(750,1730)" to="(770,1730)"/> <wire from="(530,630)" to="(550,630)"/> <wire from="(430,2040)" to="(460,2040)"/> <wire from="(720,100)" to="(720,720)"/> <wire from="(750,610)" to="(770,610)"/> <wire from="(280,300)" to="(300,300)"/> <wire from="(640,1610)" to="(670,1610)"/> <wire from="(640,2010)" to="(670,2010)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(440,1340)" to="(460,1340)"/> <wire from="(440,1420)" to="(460,1420)"/> <wire from="(280,190)" to="(280,230)"/> <wire from="(380,1930)" to="(390,1930)"/> <wire from="(700,1600)" to="(770,1600)"/> <wire from="(130,1210)" to="(460,1210)"/> <wire from="(640,1910)" to="(640,1960)"/> <wire from="(590,440)" to="(670,440)"/> <wire from="(500,1060)" to="(640,1060)"/> <wire from="(440,1870)" to="(440,1940)"/> <wire from="(130,1960)" to="(380,1960)"/> <wire from="(400,360)" to="(400,370)"/> <wire from="(260,840)" to="(380,840)"/> <wire from="(130,1440)" to="(240,1440)"/> <wire from="(360,1420)" to="(360,1570)"/> <wire from="(440,1790)" to="(440,1870)"/> <wire from="(130,150)" to="(680,150)"/> <wire from="(750,1730)" to="(750,1880)"/> <wire from="(340,230)" to="(380,230)"/> <wire from="(680,1580)" to="(680,1730)"/> <wire from="(500,840)" to="(670,840)"/> <wire from="(420,550)" to="(460,550)"/> <wire from="(420,1590)" to="(460,1590)"/> <wire from="(360,430)" to="(360,530)"/> <wire from="(810,1600)" to="(830,1600)"/> <wire from="(440,430)" to="(440,530)"/> <wire from="(750,980)" to="(770,980)"/> <wire from="(640,860)" to="(670,860)"/> <wire from="(640,620)" to="(670,620)"/> <wire from="(360,430)" to="(380,430)"/> <wire from="(340,410)" to="(360,410)"/> <wire from="(440,430)" to="(460,430)"/> <wire from="(360,1870)" to="(380,1870)"/> <wire from="(440,1790)" to="(460,1790)"/> <wire from="(440,1870)" to="(460,1870)"/> <wire from="(680,510)" to="(680,610)"/> <wire from="(700,530)" to="(770,530)"/> <wire from="(700,850)" to="(770,850)"/> <wire from="(130,1660)" to="(460,1660)"/> <wire from="(380,1960)" to="(460,1960)"/> <wire from="(130,200)" to="(200,200)"/> <wire from="(640,1160)" to="(640,1210)"/> <wire from="(350,310)" to="(350,370)"/> <wire from="(500,1510)" to="(640,1510)"/> <wire from="(130,590)" to="(640,590)"/> <wire from="(440,1120)" to="(440,1190)"/> <wire from="(130,2190)" to="(640,2190)"/> <wire from="(130,650)" to="(380,650)"/> <wire from="(590,920)" to="(640,920)"/> <wire from="(260,1290)" to="(380,1290)"/> <wire from="(720,720)" to="(780,720)"/> <wire from="(130,1890)" to="(240,1890)"/> <wire from="(570,2050)" to="(570,2140)"/> <wire from="(440,220)" to="(440,430)"/> <wire from="(640,490)" to="(640,520)"/> <wire from="(750,610)" to="(750,830)"/> <wire from="(440,1040)" to="(440,1120)"/> <wire from="(370,300)" to="(370,330)"/> <wire from="(680,830)" to="(680,980)"/> <wire from="(750,980)" to="(750,1130)"/> <wire from="(420,840)" to="(460,840)"/> <wire from="(500,1290)" to="(670,1290)"/> <wire from="(810,530)" to="(830,530)"/> <wire from="(810,850)" to="(830,850)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(360,720)" to="(360,820)"/> <wire from="(440,720)" to="(440,820)"/> <wire from="(640,1310)" to="(670,1310)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(420,220)" to="(440,220)"/> <wire from="(360,1120)" to="(380,1120)"/> <wire from="(440,720)" to="(460,720)"/> <wire from="(440,1040)" to="(460,1040)"/> <wire from="(440,1120)" to="(460,1120)"/> <wire from="(200,240)" to="(220,240)"/> <wire from="(530,810)" to="(530,930)"/> <wire from="(700,1300)" to="(770,1300)"/> <wire from="(700,2020)" to="(770,2020)"/> <wire from="(340,310)" to="(350,310)"/> <wire from="(130,2090)" to="(530,2090)"/> <wire from="(640,1610)" to="(640,1660)"/> <wire from="(590,540)" to="(670,540)"/> <wire from="(500,1960)" to="(640,1960)"/> <wire from="(750,320)" to="(760,320)"/> <wire from="(620,280)" to="(620,780)"/> <wire from="(440,1570)" to="(440,1640)"/> <wire from="(590,730)" to="(640,730)"/> <wire from="(260,1740)" to="(380,1740)"/> <wire from="(130,1140)" to="(240,1140)"/> <wire from="(360,1120)" to="(360,1270)"/> <wire from="(440,1490)" to="(440,1570)"/> <wire from="(640,730)" to="(640,810)"/> <wire from="(750,1430)" to="(750,1580)"/> <wire from="(680,1280)" to="(680,1430)"/> <wire from="(420,650)" to="(460,650)"/> <wire from="(500,1740)" to="(670,1740)"/> <wire from="(420,1290)" to="(460,1290)"/> <wire from="(810,1300)" to="(830,1300)"/> <wire from="(750,1880)" to="(770,1880)"/> <wire from="(230,70)" to="(260,70)"/> <wire from="(360,530)" to="(360,630)"/> <wire from="(810,2020)" to="(830,2020)"/> <wire from="(440,530)" to="(440,630)"/> <wire from="(260,190)" to="(280,190)"/> <wire from="(640,1760)" to="(670,1760)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,210)" to="(380,210)"/> <wire from="(440,530)" to="(460,530)"/> <wire from="(530,930)" to="(560,930)"/> <wire from="(360,1570)" to="(380,1570)"/> <wire from="(440,1490)" to="(460,1490)"/> <wire from="(440,1570)" to="(460,1570)"/> <wire from="(800,720)" to="(830,720)"/> <wire from="(210,60)" to="(230,60)"/> <wire from="(700,630)" to="(770,630)"/> <wire from="(130,100)" to="(720,100)"/> <wire from="(380,880)" to="(390,880)"/> <wire from="(700,1750)" to="(770,1750)"/> <wire from="(130,1360)" to="(460,1360)"/> <wire from="(750,1880)" to="(750,2000)"/> <wire from="(640,860)" to="(640,920)"/> <wire from="(590,2030)" to="(670,2030)"/> <wire from="(500,1210)" to="(640,1210)"/> <wire from="(440,820)" to="(440,890)"/> <wire from="(130,910)" to="(380,910)"/> <wire from="(500,450)" to="(550,450)"/> <wire from="(260,990)" to="(380,990)"/> <wire from="(500,2040)" to="(560,2040)"/> <wire from="(130,1590)" to="(240,1590)"/> <wire from="(360,1570)" to="(360,1720)"/> <wire from="(640,590)" to="(640,620)"/> <wire from="(440,1940)" to="(440,2020)"/> <wire from="(530,350)" to="(530,430)"/> <wire from="(380,1930)" to="(380,1960)"/> <wire from="(680,1730)" to="(680,1880)"/> <wire from="(500,990)" to="(670,990)"/> <wire from="(420,1740)" to="(460,1740)"/> <wire from="(130,260)" to="(160,260)"/> <wire from="(810,630)" to="(830,630)"/> <wire from="(230,40)" to="(260,40)"/> <wire from="(810,1750)" to="(830,1750)"/> <wire from="(530,430)" to="(550,430)"/> <wire from="(750,410)" to="(770,410)"/> <wire from="(750,1130)" to="(770,1130)"/> <wire from="(640,1010)" to="(670,1010)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(440,820)" to="(460,820)"/> <wire from="(440,1940)" to="(460,1940)"/> <wire from="(530,2020)" to="(560,2020)"/> <wire from="(440,2020)" to="(460,2020)"/> <wire from="(530,430)" to="(530,530)"/> <wire from="(750,410)" to="(750,510)"/> <wire from="(700,1000)" to="(770,1000)"/> <wire from="(130,1810)" to="(460,1810)"/> <wire from="(380,910)" to="(460,910)"/> <wire from="(640,1310)" to="(640,1360)"/> <wire from="(590,640)" to="(670,640)"/> <wire from="(500,1660)" to="(640,1660)"/> <wire from="(640,2010)" to="(640,2190)"/> <comp lib="0" loc="(130,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(130,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(390,1930)" name="Tunnel"> <a name="label" val="OB7"/> </comp> <comp loc="(420,1880)" name="D-latch"/> <comp loc="(420,640)" name="D-latch"/> <comp lib="1" loc="(800,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(420,1580)" name="D-latch"/> <comp lib="0" loc="(130,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(830,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="2" loc="(700,430)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(810,620)" name="D-latch"/> <comp lib="0" loc="(130,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="2" loc="(700,1000)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(810,1740)" name="D-latch"/> <comp lib="6" loc="(827,693)" name="Text"> <a name="text" val="A/B byte string tiles"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1800)" name="D-latch"/> <comp lib="0" loc="(830,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(590,440)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(810,1590)" name="D-latch"/> <comp lib="0" loc="(830,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp loc="(810,1890)" name="D-latch"/> <comp loc="(420,730)" name="D-latch"/> <comp lib="2" loc="(700,1300)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(810,1440)" name="D-latch"/> <comp loc="(500,1650)" name="D-latch"/> <comp lib="6" loc="(511,364)" name="Text"> <a name="text" val="VDIR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(830,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(430,2040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp lib="6" loc="(234,2129)" name="Text"> <a name="text" val="regular or double sprite size"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO0"/> </comp> <comp loc="(810,840)" name="D-latch"/> <comp loc="(500,830)" name="D-latch"/> <comp lib="0" loc="(130,1960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp loc="(500,1280)" name="D-latch"/> <comp loc="(500,1200)" name="D-latch"/> <comp loc="(500,1730)" name="D-latch"/> <comp loc="(810,520)" name="D-latch"/> <comp lib="0" loc="(190,40)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(420,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(340,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(330,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(590,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO1"/> </comp> <comp lib="0" loc="(830,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(442,213)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(830,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD10"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(700,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(130,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="6" loc="(545,329)" name="Text"> <a name="text" val="V. INVERSION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(260,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(260,70)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,2140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp lib="1" loc="(260,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(260,1440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> </comp> <comp lib="0" loc="(130,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp loc="(810,1290)" name="D-latch"/> <comp lib="1" loc="(180,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp loc="(420,1280)" name="D-latch"/> <comp lib="0" loc="(830,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(340,240)" name="D-latch"/> <comp lib="1" loc="(590,730)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(700,1600)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(610,2181)" name="Text"> <a name="text" val="BGSEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,730)" name="D-latch"/> <comp loc="(420,1130)" name="D-latch"/> <comp lib="0" loc="(390,880)" name="Tunnel"> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp loc="(810,420)" name="D-latch"/> <comp lib="1" loc="(260,1590)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(420,980)" name="D-latch"/> <comp lib="2" loc="(590,920)" name="Multiplexer"> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(830,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,1150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(420,440)" name="D-latch"/> <comp lib="0" loc="(260,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(700,1150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV1"/> </comp> <comp loc="(500,1430)" name="D-latch"/> <comp lib="2" loc="(700,850)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(420,1430)" name="D-latch"/> <comp lib="0" loc="(130,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(130,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV0"/> </comp> <comp lib="6" loc="(239,2082)" name="Text"> <a name="text" val="CHR generator number for OB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(590,2030)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(700,1450)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(518,303)" name="Text"> <a name="text" val="SPRITE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(840,373)" name="Text"> <a name="text" val="PA0 - PA2 - tile line number"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1880)" name="D-latch"/> <comp lib="1" loc="(590,640)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(663,145)" name="Text"> <a name="text" val="PAR/O"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,440)" name="D-latch"/> <comp lib="0" loc="(830,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1580)" name="D-latch"/> <comp lib="0" loc="(760,320)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp loc="(420,1730)" name="D-latch"/> <comp lib="0" loc="(130,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO2"/> </comp> <comp lib="1" loc="(260,1890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(500,980)" name="D-latch"/> <comp lib="6" loc="(546,2130)" name="Text"> <a name="text" val="O8/16"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1950)" name="D-latch"/> <comp lib="0" loc="(830,1600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD9"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1500)" name="D-latch"/> <comp loc="(500,640)" name="D-latch"/> <comp lib="6" loc="(240,2182)" name="Text"> <a name="text" val="CHR generator number for BG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(700,1900)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="6" loc="(593,954)" name="Text"> <a name="text" val="O8/16"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(260,1140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(326,145)" name="Text"> <a name="text" val="fetch sprite tile byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(250,250)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(810,2010)" name="D-latch"/> <comp lib="0" loc="(130,2190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGBSEL"/> </comp> <comp loc="(810,1140)" name="D-latch"/> <comp lib="0" loc="(830,1900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,300)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(700,1750)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(500,1130)" name="D-latch"/> <comp loc="(810,990)" name="D-latch"/> <comp lib="0" loc="(130,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV3"/> </comp> <comp lib="1" loc="(260,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(700,2020)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(830,1450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(772,2066)" name="Text"> <a name="text" val="PA12 - CHR generator number for OB or BG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,2030)" name="D-latch"/> <comp lib="1" loc="(260,1740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(500,1350)" name="D-latch"/> <comp lib="0" loc="(130,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp loc="(500,900)" name="D-latch"/> <comp lib="0" loc="(130,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp loc="(420,830)" name="D-latch"/> <comp lib="0" loc="(130,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="2" loc="(700,530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(500,540)" name="D-latch"/> <comp loc="(420,540)" name="D-latch"/> <comp lib="6" loc="(495,2084)" name="Text"> <a name="text" val="OBSEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="6" loc="(864,791)" name="Text"> <a name="text" val="PA4 - PA11 - tile number in CHR ROM"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1050)" name="D-latch"/> <comp lib="0" loc="(130,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> </circuit> <circuit name="WRITE_$2007"> <a name="circuit" val="WRITE_$2007"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M86,51 Q90,61 94,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#4efffb" height="271" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="204">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="284">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="165">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="164">PD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="144">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="184">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="45">WRITE $2007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="264">PD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="104">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="244">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="264">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="224">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="144">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="244">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D2</text> <polyline fill="none" points="50,84 56,84" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,76 55,76" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,83 56,76" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="80,60" width="8" x="46" y="76"/> <circ-port height="8" pin="80,110" width="8" x="46" y="96"/> <circ-port height="8" pin="80,180" width="8" x="46" y="136"/> <circ-port height="8" pin="80,250" width="8" x="46" y="156"/> <circ-port height="8" pin="80,320" width="8" x="46" y="176"/> <circ-port height="8" pin="80,390" width="8" x="46" y="196"/> <circ-port height="8" pin="80,460" width="8" x="46" y="216"/> <circ-port height="8" pin="80,530" width="8" x="46" y="236"/> <circ-port height="8" pin="80,600" width="8" x="46" y="256"/> <circ-port height="8" pin="80,670" width="8" x="46" y="276"/> <circ-port height="10" pin="260,160" width="10" x="125" y="135"/> <circ-port height="10" pin="260,230" width="10" x="125" y="155"/> <circ-port height="10" pin="260,300" width="10" x="125" y="175"/> <circ-port height="10" pin="260,370" width="10" x="125" y="195"/> <circ-port height="10" pin="260,440" width="10" x="125" y="215"/> <circ-port height="10" pin="260,510" width="10" x="125" y="235"/> <circ-port height="10" pin="260,580" width="10" x="125" y="255"/> <circ-port height="10" pin="260,650" width="10" x="125" y="275"/> <circ-anchor facing="east" height="6" width="6" x="127" y="47"/> </appear> <wire from="(130,160)" to="(130,230)"/> <wire from="(130,580)" to="(130,650)"/> <wire from="(130,300)" to="(130,370)"/> <wire from="(130,440)" to="(130,510)"/> <wire from="(230,360)" to="(230,430)"/> <wire from="(230,500)" to="(230,570)"/> <wire from="(230,220)" to="(230,290)"/> <wire from="(190,230)" to="(220,230)"/> <wire from="(190,650)" to="(220,650)"/> <wire from="(190,370)" to="(220,370)"/> <wire from="(190,510)" to="(220,510)"/> <wire from="(130,60)" to="(130,160)"/> <wire from="(230,110)" to="(230,150)"/> <wire from="(130,440)" to="(150,440)"/> <wire from="(130,160)" to="(150,160)"/> <wire from="(130,580)" to="(150,580)"/> <wire from="(130,300)" to="(150,300)"/> <wire from="(240,510)" to="(260,510)"/> <wire from="(240,230)" to="(260,230)"/> <wire from="(240,650)" to="(260,650)"/> <wire from="(240,370)" to="(260,370)"/> <wire from="(120,60)" to="(130,60)"/> <wire from="(80,530)" to="(150,530)"/> <wire from="(80,250)" to="(150,250)"/> <wire from="(80,670)" to="(150,670)"/> <wire from="(80,390)" to="(150,390)"/> <wire from="(130,230)" to="(130,300)"/> <wire from="(130,370)" to="(130,440)"/> <wire from="(130,510)" to="(130,580)"/> <wire from="(230,430)" to="(230,500)"/> <wire from="(230,150)" to="(230,220)"/> <wire from="(230,570)" to="(230,640)"/> <wire from="(230,290)" to="(230,360)"/> <wire from="(190,160)" to="(220,160)"/> <wire from="(190,580)" to="(220,580)"/> <wire from="(190,300)" to="(220,300)"/> <wire from="(190,440)" to="(220,440)"/> <wire from="(80,110)" to="(230,110)"/> <wire from="(80,60)" to="(100,60)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(130,510)" to="(150,510)"/> <wire from="(130,230)" to="(150,230)"/> <wire from="(130,650)" to="(150,650)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(240,580)" to="(260,580)"/> <wire from="(240,300)" to="(260,300)"/> <wire from="(240,440)" to="(260,440)"/> <wire from="(80,180)" to="(150,180)"/> <wire from="(80,600)" to="(150,600)"/> <wire from="(80,320)" to="(150,320)"/> <wire from="(80,460)" to="(150,460)"/> <comp lib="0" loc="(260,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(260,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(190,170)" name="D-latch"/> <comp lib="0" loc="(80,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> </comp> <comp lib="1" loc="(240,370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="1" loc="(240,650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(240,300)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(260,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(190,590)" name="D-latch"/> <comp loc="(190,380)" name="D-latch"/> <comp loc="(190,240)" name="D-latch"/> <comp lib="0" loc="(260,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(190,660)" name="D-latch"/> <comp lib="0" loc="(80,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(260,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(260,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,510)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(80,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp loc="(190,520)" name="D-latch"/> <comp lib="0" loc="(80,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="6" loc="(154,71)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(240,440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,580)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(190,450)" name="D-latch"/> <comp lib="0" loc="(260,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(190,310)" name="D-latch"/> </circuit> <circuit name="PAR_5BIT_COUNTER"> <a name="circuit" val="PAR_5BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M140,50 Q144,60 148,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="1030" stroke="#000000" stroke-width="2" width="230" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="1054">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="355">CFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="804">IN3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="164">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="1058">TxZ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="129" y="1058">TxZB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="994">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="204">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="604">IN2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="135">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="104">IN_NOR7_1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="195">Q0</text> <polyline fill="none" points="56,63 56,56" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="434">/Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="794">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="1004">IN4</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="169" y="500">5 BIT COUNTER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="404">IN1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="394">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="594">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="57">CARRY_IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="84">BLNK</text> <polyline fill="none" points="56,64 51,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="55,56 50,56" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,70" width="8" x="46" y="96"/> <circ-port height="8" pin="100,260" width="8" x="46" y="76"/> <circ-port height="8" pin="100,490" width="8" x="46" y="156"/> <circ-port height="8" pin="100,630" width="8" x="46" y="126"/> <circ-port height="8" pin="100,390" width="8" x="46" y="56"/> <circ-port height="8" pin="100,590" width="8" x="46" y="196"/> <circ-port height="8" pin="100,540" width="8" x="46" y="1046"/> <circ-port height="8" pin="100,440" width="8" x="156" y="36"/> <circ-port height="8" pin="100,800" width="8" x="46" y="396"/> <circ-port height="8" pin="100,1010" width="8" x="46" y="596"/> <circ-port height="8" pin="100,1220" width="8" x="46" y="796"/> <circ-port height="8" pin="100,1430" width="8" x="46" y="996"/> <circ-port height="10" pin="640,100" width="10" x="195" y="1065"/> <circ-port height="10" pin="640,140" width="10" x="125" y="1065"/> <circ-port height="8" pin="640,360" width="8" x="276" y="346"/> <circ-port height="10" pin="640,500" width="10" x="275" y="185"/> <circ-port height="10" pin="640,710" width="10" x="275" y="385"/> <circ-port height="10" pin="640,880" width="10" x="275" y="425"/> <circ-port height="10" pin="640,920" width="10" x="275" y="585"/> <circ-port height="10" pin="640,1130" width="10" x="275" y="785"/> <circ-port height="10" pin="640,1340" width="10" x="275" y="985"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(390,100)" to="(640,100)"/> <wire from="(360,1510)" to="(610,1510)"/> <wire from="(600,330)" to="(600,1300)"/> <wire from="(440,760)" to="(490,760)"/> <wire from="(140,630)" to="(140,840)"/> <wire from="(210,1020)" to="(210,1230)"/> <wire from="(360,1190)" to="(360,1270)"/> <wire from="(180,1220)" to="(180,1240)"/> <wire from="(360,1480)" to="(360,1510)"/> <wire from="(290,770)" to="(290,800)"/> <wire from="(360,770)" to="(400,770)"/> <wire from="(360,850)" to="(400,850)"/> <wire from="(490,260)" to="(530,260)"/> <wire from="(600,180)" to="(600,330)"/> <wire from="(550,550)" to="(550,590)"/> <wire from="(570,370)" to="(570,670)"/> <wire from="(270,1170)" to="(300,1170)"/> <wire from="(340,770)" to="(360,770)"/> <wire from="(340,1170)" to="(360,1170)"/> <wire from="(470,740)" to="(490,740)"/> <wire from="(360,670)" to="(570,670)"/> <wire from="(330,570)" to="(330,610)"/> <wire from="(360,920)" to="(360,960)"/> <wire from="(140,1050)" to="(160,1050)"/> <wire from="(360,1130)" to="(640,1130)"/> <wire from="(210,1440)" to="(230,1440)"/> <wire from="(380,1460)" to="(390,1460)"/> <wire from="(260,610)" to="(330,610)"/> <wire from="(440,970)" to="(490,970)"/> <wire from="(140,840)" to="(140,1050)"/> <wire from="(210,1230)" to="(210,1440)"/> <wire from="(100,540)" to="(210,540)"/> <wire from="(470,530)" to="(470,740)"/> <wire from="(380,540)" to="(380,620)"/> <wire from="(360,1400)" to="(360,1480)"/> <wire from="(580,210)" to="(580,880)"/> <wire from="(180,1430)" to="(180,1450)"/> <wire from="(290,980)" to="(290,1010)"/> <wire from="(360,980)" to="(400,980)"/> <wire from="(360,1060)" to="(400,1060)"/> <wire from="(550,760)" to="(550,800)"/> <wire from="(270,1380)" to="(300,1380)"/> <wire from="(340,980)" to="(360,980)"/> <wire from="(340,1380)" to="(360,1380)"/> <wire from="(100,440)" to="(380,440)"/> <wire from="(380,540)" to="(400,540)"/> <wire from="(470,950)" to="(490,950)"/> <wire from="(330,780)" to="(330,820)"/> <wire from="(360,1130)" to="(360,1170)"/> <wire from="(140,1260)" to="(160,1260)"/> <wire from="(360,1340)" to="(640,1340)"/> <wire from="(610,320)" to="(610,1510)"/> <wire from="(260,820)" to="(330,820)"/> <wire from="(520,360)" to="(640,360)"/> <wire from="(520,220)" to="(570,220)"/> <wire from="(440,1180)" to="(490,1180)"/> <wire from="(550,70)" to="(550,200)"/> <wire from="(470,390)" to="(470,530)"/> <wire from="(520,210)" to="(580,210)"/> <wire from="(140,1050)" to="(140,1260)"/> <wire from="(470,740)" to="(470,950)"/> <wire from="(380,750)" to="(380,830)"/> <wire from="(270,540)" to="(270,750)"/> <wire from="(530,230)" to="(530,260)"/> <wire from="(360,1300)" to="(600,1300)"/> <wire from="(290,1190)" to="(290,1220)"/> <wire from="(190,620)" to="(230,620)"/> <wire from="(360,1190)" to="(400,1190)"/> <wire from="(360,1270)" to="(400,1270)"/> <wire from="(550,970)" to="(550,1010)"/> <wire from="(340,1190)" to="(360,1190)"/> <wire from="(590,190)" to="(590,350)"/> <wire from="(380,750)" to="(400,750)"/> <wire from="(470,1160)" to="(490,1160)"/> <wire from="(330,990)" to="(330,1030)"/> <wire from="(360,1340)" to="(360,1380)"/> <wire from="(140,1470)" to="(160,1470)"/> <wire from="(390,100)" to="(390,340)"/> <wire from="(450,630)" to="(450,690)"/> <wire from="(260,1030)" to="(330,1030)"/> <wire from="(310,570)" to="(310,640)"/> <wire from="(490,70)" to="(550,70)"/> <wire from="(550,200)" to="(550,340)"/> <wire from="(440,1390)" to="(490,1390)"/> <wire from="(190,640)" to="(310,640)"/> <wire from="(580,880)" to="(640,880)"/> <wire from="(140,1260)" to="(140,1470)"/> <wire from="(430,260)" to="(430,280)"/> <wire from="(470,950)" to="(470,1160)"/> <wire from="(380,960)" to="(380,1040)"/> <wire from="(270,750)" to="(270,960)"/> <wire from="(530,280)" to="(530,310)"/> <wire from="(190,830)" to="(230,830)"/> <wire from="(290,1400)" to="(290,1430)"/> <wire from="(360,1400)" to="(400,1400)"/> <wire from="(360,1480)" to="(400,1480)"/> <wire from="(570,220)" to="(570,370)"/> <wire from="(550,1180)" to="(550,1220)"/> <wire from="(530,550)" to="(550,550)"/> <wire from="(340,1400)" to="(360,1400)"/> <wire from="(380,960)" to="(400,960)"/> <wire from="(420,200)" to="(440,200)"/> <wire from="(470,1370)" to="(490,1370)"/> <wire from="(330,1200)" to="(330,1240)"/> <wire from="(590,350)" to="(590,1090)"/> <wire from="(440,630)" to="(450,630)"/> <wire from="(100,590)" to="(180,590)"/> <wire from="(520,230)" to="(530,230)"/> <wire from="(290,560)" to="(300,560)"/> <wire from="(290,590)" to="(550,590)"/> <wire from="(380,690)" to="(380,750)"/> <wire from="(450,840)" to="(450,900)"/> <wire from="(260,1240)" to="(330,1240)"/> <wire from="(520,310)" to="(530,310)"/> <wire from="(310,780)" to="(310,850)"/> <wire from="(190,850)" to="(310,850)"/> <wire from="(100,70)" to="(470,70)"/> <wire from="(100,390)" to="(470,390)"/> <wire from="(470,1160)" to="(470,1370)"/> <wire from="(380,1170)" to="(380,1250)"/> <wire from="(270,960)" to="(270,1170)"/> <wire from="(100,630)" to="(140,630)"/> <wire from="(360,640)" to="(360,670)"/> <wire from="(190,1040)" to="(230,1040)"/> <wire from="(360,1090)" to="(590,1090)"/> <wire from="(550,1390)" to="(550,1430)"/> <wire from="(520,170)" to="(610,170)"/> <wire from="(530,760)" to="(550,760)"/> <wire from="(380,1170)" to="(400,1170)"/> <wire from="(520,340)" to="(550,340)"/> <wire from="(330,1410)" to="(330,1450)"/> <wire from="(210,600)" to="(230,600)"/> <wire from="(380,620)" to="(390,620)"/> <wire from="(100,800)" to="(180,800)"/> <wire from="(440,840)" to="(450,840)"/> <wire from="(290,770)" to="(300,770)"/> <wire from="(520,350)" to="(590,350)"/> <wire from="(520,180)" to="(600,180)"/> <wire from="(290,800)" to="(550,800)"/> <wire from="(380,900)" to="(380,960)"/> <wire from="(420,140)" to="(420,200)"/> <wire from="(450,1050)" to="(450,1110)"/> <wire from="(380,690)" to="(450,690)"/> <wire from="(520,190)" to="(590,190)"/> <wire from="(260,1450)" to="(330,1450)"/> <wire from="(310,990)" to="(310,1060)"/> <wire from="(520,370)" to="(570,370)"/> <wire from="(190,1060)" to="(310,1060)"/> <wire from="(360,560)" to="(360,640)"/> <wire from="(380,1380)" to="(380,1460)"/> <wire from="(270,1170)" to="(270,1380)"/> <wire from="(180,590)" to="(180,610)"/> <wire from="(100,490)" to="(270,490)"/> <wire from="(430,280)" to="(530,280)"/> <wire from="(360,850)" to="(360,880)"/> <wire from="(190,1250)" to="(230,1250)"/> <wire from="(530,970)" to="(550,970)"/> <wire from="(270,540)" to="(300,540)"/> <wire from="(340,540)" to="(360,540)"/> <wire from="(380,1380)" to="(400,1380)"/> <wire from="(360,500)" to="(640,500)"/> <wire from="(210,810)" to="(230,810)"/> <wire from="(380,830)" to="(390,830)"/> <wire from="(440,1050)" to="(450,1050)"/> <wire from="(100,1010)" to="(180,1010)"/> <wire from="(290,980)" to="(300,980)"/> <wire from="(290,1010)" to="(550,1010)"/> <wire from="(380,1110)" to="(380,1170)"/> <wire from="(450,1260)" to="(450,1320)"/> <wire from="(380,900)" to="(450,900)"/> <wire from="(210,540)" to="(210,600)"/> <wire from="(310,1200)" to="(310,1270)"/> <wire from="(190,1270)" to="(310,1270)"/> <wire from="(210,600)" to="(210,810)"/> <wire from="(360,770)" to="(360,850)"/> <wire from="(180,800)" to="(180,820)"/> <wire from="(360,1060)" to="(360,1090)"/> <wire from="(190,1460)" to="(230,1460)"/> <wire from="(430,260)" to="(470,260)"/> <wire from="(610,170)" to="(610,320)"/> <wire from="(360,880)" to="(580,880)"/> <wire from="(420,140)" to="(640,140)"/> <wire from="(530,1180)" to="(550,1180)"/> <wire from="(520,200)" to="(550,200)"/> <wire from="(270,750)" to="(300,750)"/> <wire from="(340,750)" to="(360,750)"/> <wire from="(360,500)" to="(360,540)"/> <wire from="(360,710)" to="(640,710)"/> <wire from="(140,630)" to="(160,630)"/> <wire from="(210,1020)" to="(230,1020)"/> <wire from="(380,1040)" to="(390,1040)"/> <wire from="(440,1260)" to="(450,1260)"/> <wire from="(100,1220)" to="(180,1220)"/> <wire from="(290,1190)" to="(300,1190)"/> <wire from="(270,490)" to="(270,540)"/> <wire from="(290,1220)" to="(550,1220)"/> <wire from="(380,1320)" to="(380,1380)"/> <wire from="(380,1110)" to="(450,1110)"/> <wire from="(310,1410)" to="(310,1480)"/> <wire from="(440,550)" to="(490,550)"/> <wire from="(390,340)" to="(440,340)"/> <wire from="(190,1480)" to="(310,1480)"/> <wire from="(210,810)" to="(210,1020)"/> <wire from="(360,980)" to="(360,1060)"/> <wire from="(180,1010)" to="(180,1030)"/> <wire from="(360,1270)" to="(360,1300)"/> <wire from="(290,560)" to="(290,590)"/> <wire from="(360,560)" to="(400,560)"/> <wire from="(360,640)" to="(400,640)"/> <wire from="(380,440)" to="(380,540)"/> <wire from="(530,1390)" to="(550,1390)"/> <wire from="(270,960)" to="(300,960)"/> <wire from="(340,560)" to="(360,560)"/> <wire from="(340,960)" to="(360,960)"/> <wire from="(470,530)" to="(490,530)"/> <wire from="(360,710)" to="(360,750)"/> <wire from="(140,840)" to="(160,840)"/> <wire from="(520,320)" to="(610,320)"/> <wire from="(360,920)" to="(640,920)"/> <wire from="(210,1230)" to="(230,1230)"/> <wire from="(380,1250)" to="(390,1250)"/> <wire from="(440,1470)" to="(450,1470)"/> <wire from="(100,1430)" to="(180,1430)"/> <wire from="(290,1400)" to="(300,1400)"/> <wire from="(100,260)" to="(430,260)"/> <wire from="(520,330)" to="(600,330)"/> <wire from="(290,1430)" to="(550,1430)"/> <wire from="(380,1320)" to="(450,1320)"/> <comp lib="0" loc="(100,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN4"/> </comp> <comp lib="1" loc="(490,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(486,1475)" name="Text"> <a name="text" val="Not used"/> </comp> <comp lib="1" loc="(260,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(260,610)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(260,1240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="1" loc="(440,200)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(100,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(640,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="1" loc="(260,1450)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(490,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,1180)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,340)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(640,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TxZ"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,1340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="4" loc="(530,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(640,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(340,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="4" loc="(340,1380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(530,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(160,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,630)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(340,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1390)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,630)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="1" loc="(440,840)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(640,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN3"/> </comp> <comp lib="0" loc="(100,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="1" loc="(440,970)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="6" loc="(673,331)" name="Text"> <a name="text" val="CARRY CONFIG"/> </comp> <comp lib="1" loc="(440,1260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CARRY IN"/> </comp> <comp lib="2" loc="(160,1050)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(160,1260)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,550)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,360)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CFG"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN_NOR7_1"/> </comp> <comp lib="1" loc="(260,1030)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="2" loc="(160,1470)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,760)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TxZB"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(340,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(340,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="4" loc="(530,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="PAR_3BIT_COUNTER"> <a name="circuit" val="PAR_3BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M76,41 Q80,51 84,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="570" stroke="#000000" stroke-width="2" width="230" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">IN1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="160" y="598">FVZ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="515">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="565">/Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="124">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="365">/Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="84">STEP</text> <text font-family="SansSerif" font-size="20" text-anchor="middle" x="163" y="300">3BIT COUNTER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="165">/Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="514">IN2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="104">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="115">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="554">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="59">#FV C IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="315">Q1</text> <polyline fill="none" points="50,55 56,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,55 56,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,170" width="8" x="156" y="36"/> <circ-port height="8" pin="100,30" width="8" x="46" y="546"/> <circ-port height="8" pin="100,290" width="8" x="46" y="76"/> <circ-port height="8" pin="100,370" width="8" x="46" y="96"/> <circ-port height="8" pin="100,200" width="8" x="46" y="56"/> <circ-port height="8" pin="100,330" width="8" x="46" y="116"/> <circ-port height="8" pin="100,540" width="8" x="46" y="306"/> <circ-port height="8" pin="100,750" width="8" x="46" y="506"/> <circ-port height="10" pin="540,30" width="10" x="155" y="605"/> <circ-port height="10" pin="540,250" width="10" x="275" y="105"/> <circ-port height="10" pin="540,420" width="10" x="275" y="155"/> <circ-port height="10" pin="540,460" width="10" x="275" y="305"/> <circ-port height="10" pin="540,630" width="10" x="275" y="355"/> <circ-port height="10" pin="540,670" width="10" x="275" y="505"/> <circ-port height="10" pin="540,840" width="10" x="275" y="555"/> <circ-anchor facing="east" height="6" width="6" x="277" y="37"/> </appear> <wire from="(500,90)" to="(500,420)"/> <wire from="(130,580)" to="(130,790)"/> <wire from="(200,290)" to="(200,500)"/> <wire from="(400,490)" to="(400,700)"/> <wire from="(290,520)" to="(290,600)"/> <wire from="(310,500)" to="(310,580)"/> <wire from="(170,330)" to="(170,350)"/> <wire from="(290,810)" to="(290,840)"/> <wire from="(290,630)" to="(510,630)"/> <wire from="(200,500)" to="(230,500)"/> <wire from="(270,500)" to="(290,500)"/> <wire from="(310,500)" to="(330,500)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(260,740)" to="(260,780)"/> <wire from="(290,250)" to="(290,290)"/> <wire from="(480,720)" to="(480,760)"/> <wire from="(180,360)" to="(260,360)"/> <wire from="(310,790)" to="(320,790)"/> <wire from="(310,230)" to="(310,290)"/> <wire from="(380,380)" to="(380,440)"/> <wire from="(100,330)" to="(170,330)"/> <wire from="(490,170)" to="(490,230)"/> <wire from="(240,320)" to="(240,380)"/> <wire from="(290,250)" to="(540,250)"/> <wire from="(180,380)" to="(240,380)"/> <wire from="(370,300)" to="(420,300)"/> <wire from="(200,500)" to="(200,710)"/> <wire from="(290,730)" to="(290,810)"/> <wire from="(310,710)" to="(310,790)"/> <wire from="(170,540)" to="(170,560)"/> <wire from="(400,200)" to="(400,280)"/> <wire from="(290,310)" to="(330,310)"/> <wire from="(290,390)" to="(330,390)"/> <wire from="(220,310)" to="(220,340)"/> <wire from="(200,710)" to="(230,710)"/> <wire from="(510,80)" to="(510,630)"/> <wire from="(100,370)" to="(130,370)"/> <wire from="(520,840)" to="(540,840)"/> <wire from="(270,310)" to="(290,310)"/> <wire from="(270,710)" to="(290,710)"/> <wire from="(310,710)" to="(330,710)"/> <wire from="(400,280)" to="(420,280)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(290,460)" to="(290,500)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(370,380)" to="(380,380)"/> <wire from="(180,570)" to="(260,570)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(440,70)" to="(520,70)"/> <wire from="(310,440)" to="(310,500)"/> <wire from="(340,30)" to="(340,90)"/> <wire from="(380,590)" to="(380,650)"/> <wire from="(100,540)" to="(170,540)"/> <wire from="(360,230)" to="(490,230)"/> <wire from="(310,30)" to="(310,150)"/> <wire from="(440,80)" to="(510,80)"/> <wire from="(340,30)" to="(540,30)"/> <wire from="(240,530)" to="(240,590)"/> <wire from="(220,340)" to="(480,340)"/> <wire from="(490,100)" to="(490,170)"/> <wire from="(440,90)" to="(500,90)"/> <wire from="(290,460)" to="(540,460)"/> <wire from="(180,590)" to="(240,590)"/> <wire from="(440,100)" to="(490,100)"/> <wire from="(370,510)" to="(420,510)"/> <wire from="(310,150)" to="(480,150)"/> <wire from="(170,750)" to="(170,770)"/> <wire from="(290,390)" to="(290,420)"/> <wire from="(290,520)" to="(330,520)"/> <wire from="(290,600)" to="(330,600)"/> <wire from="(220,520)" to="(220,550)"/> <wire from="(290,840)" to="(520,840)"/> <wire from="(440,110)" to="(480,110)"/> <wire from="(310,230)" to="(340,230)"/> <wire from="(270,520)" to="(290,520)"/> <wire from="(400,490)" to="(420,490)"/> <wire from="(510,630)" to="(540,630)"/> <wire from="(290,420)" to="(500,420)"/> <wire from="(460,510)" to="(480,510)"/> <wire from="(260,320)" to="(260,360)"/> <wire from="(290,670)" to="(290,710)"/> <wire from="(130,580)" to="(150,580)"/> <wire from="(480,300)" to="(480,340)"/> <wire from="(100,30)" to="(310,30)"/> <wire from="(310,370)" to="(320,370)"/> <wire from="(370,590)" to="(380,590)"/> <wire from="(180,780)" to="(260,780)"/> <wire from="(220,520)" to="(230,520)"/> <wire from="(310,650)" to="(310,710)"/> <wire from="(100,750)" to="(170,750)"/> <wire from="(310,440)" to="(380,440)"/> <wire from="(240,740)" to="(240,800)"/> <wire from="(220,550)" to="(480,550)"/> <wire from="(290,670)" to="(540,670)"/> <wire from="(520,70)" to="(520,840)"/> <wire from="(180,800)" to="(240,800)"/> <wire from="(370,720)" to="(420,720)"/> <wire from="(130,370)" to="(130,580)"/> <wire from="(400,280)" to="(400,490)"/> <wire from="(310,290)" to="(310,370)"/> <wire from="(290,310)" to="(290,390)"/> <wire from="(100,200)" to="(400,200)"/> <wire from="(290,600)" to="(290,630)"/> <wire from="(290,730)" to="(330,730)"/> <wire from="(290,810)" to="(330,810)"/> <wire from="(220,730)" to="(220,760)"/> <wire from="(100,290)" to="(200,290)"/> <wire from="(500,420)" to="(540,420)"/> <wire from="(200,290)" to="(230,290)"/> <wire from="(270,730)" to="(290,730)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(270,290)" to="(290,290)"/> <wire from="(400,700)" to="(420,700)"/> <wire from="(460,720)" to="(480,720)"/> <wire from="(260,530)" to="(260,570)"/> <wire from="(130,790)" to="(150,790)"/> <wire from="(480,510)" to="(480,550)"/> <wire from="(480,110)" to="(480,150)"/> <wire from="(310,580)" to="(320,580)"/> <wire from="(370,800)" to="(380,800)"/> <wire from="(220,730)" to="(230,730)"/> <wire from="(100,170)" to="(490,170)"/> <wire from="(220,760)" to="(480,760)"/> <wire from="(310,650)" to="(380,650)"/> <comp lib="0" loc="(540,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(150,370)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(414,805)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#FVZ C_IN"/> </comp> <comp lib="1" loc="(370,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="1" loc="(370,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="4" loc="(270,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,300)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(540,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(340,230)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="4" loc="(460,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="2" loc="(150,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="0" loc="(100,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="1" loc="(370,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(150,790)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(270,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(460,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(540,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,90)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(370,720)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(460,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(540,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FVZ"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(310,223)" name="Text"> <a name="text" val="Carry_in"/> </comp> <comp lib="0" loc="(540,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="0" loc="(540,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q2"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="PAR_1BIT_COUNTER"> <a name="circuit" val="PAR_1BIT_COUNTER"/> <a name="clabel" val="PAR 1BIT COUNTER"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M106,51 Q110,61 114,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="120" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="154">CARRY OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="84">Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="94">IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="134">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="70">CARRY IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="154">#BLNK</text> <polyline fill="none" points="50,66 55,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,140" width="8" x="46" y="106"/> <circ-port height="8" pin="100,230" width="8" x="46" y="126"/> <circ-port height="8" pin="100,40" width="8" x="46" y="66"/> <circ-port height="8" pin="100,190" width="8" x="46" y="86"/> <circ-port height="8" pin="100,80" width="8" x="156" y="46"/> <circ-port height="8" pin="100,270" width="8" x="46" y="146"/> <circ-port height="10" pin="440,100" width="10" x="275" y="75"/> <circ-port height="10" pin="440,240" width="10" x="275" y="145"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(250,100)" to="(440,100)"/> <wire from="(270,140)" to="(270,210)"/> <wire from="(180,190)" to="(430,190)"/> <wire from="(200,170)" to="(200,240)"/> <wire from="(160,220)" to="(220,220)"/> <wire from="(100,40)" to="(350,40)"/> <wire from="(390,240)" to="(440,240)"/> <wire from="(100,190)" to="(150,190)"/> <wire from="(330,250)" to="(330,270)"/> <wire from="(330,210)" to="(330,230)"/> <wire from="(250,160)" to="(250,240)"/> <wire from="(150,190)" to="(150,210)"/> <wire from="(100,80)" to="(270,80)"/> <wire from="(160,240)" to="(200,240)"/> <wire from="(250,160)" to="(290,160)"/> <wire from="(100,270)" to="(330,270)"/> <wire from="(180,160)" to="(180,190)"/> <wire from="(330,150)" to="(370,150)"/> <wire from="(250,240)" to="(350,240)"/> <wire from="(350,40)" to="(350,130)"/> <wire from="(100,230)" to="(130,230)"/> <wire from="(100,140)" to="(190,140)"/> <wire from="(270,210)" to="(290,210)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(310,210)" to="(330,210)"/> <wire from="(330,230)" to="(350,230)"/> <wire from="(330,250)" to="(350,250)"/> <wire from="(350,130)" to="(370,130)"/> <wire from="(410,150)" to="(430,150)"/> <wire from="(250,100)" to="(250,140)"/> <wire from="(430,150)" to="(430,190)"/> <wire from="(230,140)" to="(250,140)"/> <wire from="(230,160)" to="(250,160)"/> <wire from="(220,170)" to="(220,220)"/> <wire from="(180,160)" to="(190,160)"/> <wire from="(270,80)" to="(270,140)"/> <comp lib="4" loc="(230,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="2" loc="(130,230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CARRY IN"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN"/> </comp> <comp lib="1" loc="(390,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(310,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(440,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(410,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#BLNK"/> </comp> <comp lib="1" loc="(330,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(440,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CARRY OUT"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="BG_COLOR"> <a name="circuit" val="BG_COLOR"/> <a name="clabel" val="BG COLOR"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8b00" height="460" stroke="#000000" stroke-width="2" width="350" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="474">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="454">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="434">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="294">BGC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="394">THO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="94">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="194">/CLPB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="174">/FO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="234">BGC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="254">BGC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="294">PPU DATA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="275">BGC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="414">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="154">F/TA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="114">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="224">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="364">7</text> <polyline fill="none" points="51,64 56,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,56 56,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,63 56,57" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="110,80" width="8" x="46" y="56"/> <circ-port height="8" pin="110,160" width="8" x="46" y="186"/> <circ-port height="8" pin="110,250" width="8" x="46" y="406"/> <circ-port height="8" pin="110,290" width="8" x="46" y="426"/> <circ-port height="8" pin="110,330" width="8" x="46" y="446"/> <circ-port height="8" pin="110,400" width="8" x="46" y="216"/> <circ-port height="8" pin="110,430" width="8" x="46" y="236"/> <circ-port height="8" pin="110,460" width="8" x="46" y="256"/> <circ-port height="8" pin="110,490" width="8" x="46" y="276"/> <circ-port height="8" pin="110,520" width="8" x="46" y="296"/> <circ-port height="8" pin="110,550" width="8" x="46" y="316"/> <circ-port height="8" pin="110,580" width="8" x="46" y="336"/> <circ-port height="8" pin="110,610" width="8" x="46" y="356"/> <circ-port height="8" pin="110,870" width="8" x="46" y="386"/> <circ-port height="8" pin="110,910" width="8" x="46" y="466"/> <circ-port height="8" pin="110,1610" width="8" x="46" y="106"/> <circ-port height="8" pin="110,1660" width="8" x="46" y="86"/> <circ-port height="8" pin="110,1710" width="8" x="46" y="146"/> <circ-port height="8" pin="110,1760" width="8" x="46" y="126"/> <circ-port height="8" pin="110,1810" width="8" x="46" y="166"/> <circ-port height="10" pin="1440,360" width="10" x="395" y="225"/> <circ-port height="10" pin="1440,700" width="10" x="395" y="245"/> <circ-port height="10" pin="1440,1040" width="10" x="395" y="265"/> <circ-port height="10" pin="1440,1300" width="10" x="395" y="285"/> <circ-anchor facing="east" height="6" width="6" x="397" y="47"/> </appear> <wire from="(1040,320)" to="(1090,320)"/> <wire from="(490,1020)" to="(670,1020)"/> <wire from="(570,650)" to="(620,650)"/> <wire from="(400,1280)" to="(450,1280)"/> <wire from="(480,600)" to="(480,870)"/> <wire from="(1260,390)" to="(1300,390)"/> <wire from="(580,670)" to="(620,670)"/> <wire from="(850,1260)" to="(890,1260)"/> <wire from="(580,740)" to="(580,770)"/> <wire from="(460,810)" to="(460,890)"/> <wire from="(870,700)" to="(870,1040)"/> <wire from="(270,1070)" to="(270,1100)"/> <wire from="(420,1540)" to="(520,1540)"/> <wire from="(140,460)" to="(140,490)"/> <wire from="(1040,800)" to="(1090,800)"/> <wire from="(170,490)" to="(270,490)"/> <wire from="(570,410)" to="(570,450)"/> <wire from="(160,100)" to="(190,100)"/> <wire from="(870,1300)" to="(890,1300)"/> <wire from="(740,1540)" to="(740,1580)"/> <wire from="(420,1000)" to="(450,1000)"/> <wire from="(570,360)" to="(590,360)"/> <wire from="(380,480)" to="(410,480)"/> <wire from="(600,390)" to="(620,390)"/> <wire from="(290,720)" to="(310,720)"/> <wire from="(250,1320)" to="(270,1320)"/> <wire from="(590,690)" to="(620,690)"/> <wire from="(1080,700)" to="(1110,700)"/> <wire from="(1040,1300)" to="(1070,1300)"/> <wire from="(160,280)" to="(170,280)"/> <wire from="(1360,350)" to="(1380,350)"/> <wire from="(1090,1360)" to="(1110,1360)"/> <wire from="(720,1640)" to="(730,1640)"/> <wire from="(570,690)" to="(580,690)"/> <wire from="(1200,670)" to="(1220,670)"/> <wire from="(1200,1310)" to="(1220,1310)"/> <wire from="(410,930)" to="(470,930)"/> <wire from="(1070,400)" to="(1070,420)"/> <wire from="(1040,780)" to="(1080,780)"/> <wire from="(850,1260)" to="(850,1520)"/> <wire from="(350,1360)" to="(400,1360)"/> <wire from="(1080,410)" to="(1080,440)"/> <wire from="(270,1040)" to="(270,1060)"/> <wire from="(750,1520)" to="(850,1520)"/> <wire from="(1060,390)" to="(1060,400)"/> <wire from="(1070,1040)" to="(1070,1050)"/> <wire from="(130,510)" to="(170,510)"/> <wire from="(730,1500)" to="(730,1520)"/> <wire from="(380,380)" to="(380,480)"/> <wire from="(420,1290)" to="(450,1290)"/> <wire from="(390,470)" to="(410,470)"/> <wire from="(1040,720)" to="(1110,720)"/> <wire from="(230,1190)" to="(230,1300)"/> <wire from="(520,890)" to="(520,1460)"/> <wire from="(170,480)" to="(250,480)"/> <wire from="(290,1560)" to="(370,1560)"/> <wire from="(1090,420)" to="(1090,460)"/> <wire from="(290,420)" to="(290,480)"/> <wire from="(110,1710)" to="(180,1710)"/> <wire from="(1420,700)" to="(1440,700)"/> <wire from="(1200,1010)" to="(1200,1050)"/> <wire from="(1090,690)" to="(1110,690)"/> <wire from="(630,1520)" to="(640,1520)"/> <wire from="(1150,1070)" to="(1170,1070)"/> <wire from="(420,1540)" to="(420,1660)"/> <wire from="(600,380)" to="(600,390)"/> <wire from="(590,690)" to="(590,700)"/> <wire from="(1080,1020)" to="(1080,1040)"/> <wire from="(490,1280)" to="(670,1280)"/> <wire from="(1340,1050)" to="(1380,1050)"/> <wire from="(500,580)" to="(620,580)"/> <wire from="(110,610)" to="(160,610)"/> <wire from="(280,1500)" to="(280,1520)"/> <wire from="(580,770)" to="(620,770)"/> <wire from="(520,620)" to="(620,620)"/> <wire from="(1130,1030)" to="(1130,1290)"/> <wire from="(270,1330)" to="(270,1360)"/> <wire from="(270,1100)" to="(310,1100)"/> <wire from="(420,1260)" to="(450,1260)"/> <wire from="(250,380)" to="(250,480)"/> <wire from="(290,1140)" to="(310,1140)"/> <wire from="(290,660)" to="(310,660)"/> <wire from="(350,560)" to="(370,560)"/> <wire from="(1190,1070)" to="(1220,1070)"/> <wire from="(1040,760)" to="(1070,760)"/> <wire from="(200,1710)" to="(530,1710)"/> <wire from="(160,540)" to="(170,540)"/> <wire from="(730,1750)" to="(740,1750)"/> <wire from="(500,1520)" to="(510,1520)"/> <wire from="(1280,1010)" to="(1300,1010)"/> <wire from="(1280,370)" to="(1300,370)"/> <wire from="(420,1030)" to="(420,1160)"/> <wire from="(710,1020)" to="(760,1020)"/> <wire from="(1090,1000)" to="(1090,1030)"/> <wire from="(650,1000)" to="(650,1260)"/> <wire from="(270,1300)" to="(270,1320)"/> <wire from="(500,240)" to="(500,580)"/> <wire from="(420,970)" to="(420,1000)"/> <wire from="(370,1560)" to="(370,1590)"/> <wire from="(110,430)" to="(150,430)"/> <wire from="(1070,1300)" to="(1070,1310)"/> <wire from="(480,870)" to="(580,870)"/> <wire from="(870,360)" to="(870,510)"/> <wire from="(580,330)" to="(580,350)"/> <wire from="(190,100)" to="(190,130)"/> <wire from="(1060,730)" to="(1110,730)"/> <wire from="(260,520)" to="(260,620)"/> <wire from="(250,190)" to="(250,290)"/> <wire from="(290,950)" to="(310,950)"/> <wire from="(250,1070)" to="(270,1070)"/> <wire from="(190,50)" to="(210,50)"/> <wire from="(210,1190)" to="(230,1190)"/> <wire from="(1080,1090)" to="(1110,1090)"/> <wire from="(250,1080)" to="(260,1080)"/> <wire from="(370,440)" to="(370,490)"/> <wire from="(290,360)" to="(290,420)"/> <wire from="(110,1810)" to="(180,1810)"/> <wire from="(1200,1270)" to="(1200,1310)"/> <wire from="(1040,740)" to="(1060,740)"/> <wire from="(1150,1330)" to="(1170,1330)"/> <wire from="(250,680)" to="(310,680)"/> <wire from="(650,1260)" to="(650,1460)"/> <wire from="(460,890)" to="(520,890)"/> <wire from="(1080,1280)" to="(1080,1300)"/> <wire from="(570,370)" to="(620,370)"/> <wire from="(1070,400)" to="(1110,400)"/> <wire from="(130,490)" to="(130,500)"/> <wire from="(1260,1070)" to="(1300,1070)"/> <wire from="(1340,1310)" to="(1380,1310)"/> <wire from="(650,1740)" to="(690,1740)"/> <wire from="(260,970)" to="(260,1050)"/> <wire from="(850,660)" to="(890,660)"/> <wire from="(270,560)" to="(310,560)"/> <wire from="(270,1040)" to="(310,1040)"/> <wire from="(270,1360)" to="(310,1360)"/> <wire from="(350,320)" to="(390,320)"/> <wire from="(1040,1000)" to="(1090,1000)"/> <wire from="(870,700)" to="(890,700)"/> <wire from="(380,520)" to="(410,520)"/> <wire from="(200,1660)" to="(420,1660)"/> <wire from="(290,1080)" to="(310,1080)"/> <wire from="(290,600)" to="(310,600)"/> <wire from="(660,1760)" to="(690,1760)"/> <wire from="(290,1400)" to="(310,1400)"/> <wire from="(520,510)" to="(870,510)"/> <wire from="(590,410)" to="(620,410)"/> <wire from="(1190,1330)" to="(1220,1330)"/> <wire from="(1040,700)" to="(1070,700)"/> <wire from="(250,1050)" to="(260,1050)"/> <wire from="(740,1360)" to="(870,1360)"/> <wire from="(1280,1270)" to="(1300,1270)"/> <wire from="(1360,1030)" to="(1380,1030)"/> <wire from="(1090,760)" to="(1110,760)"/> <wire from="(720,1520)" to="(730,1520)"/> <wire from="(1200,710)" to="(1220,710)"/> <wire from="(1070,1080)" to="(1070,1100)"/> <wire from="(420,1290)" to="(420,1420)"/> <wire from="(710,1280)" to="(760,1280)"/> <wire from="(1070,370)" to="(1110,370)"/> <wire from="(1080,1090)" to="(1080,1120)"/> <wire from="(1090,1260)" to="(1090,1290)"/> <wire from="(430,440)" to="(430,460)"/> <wire from="(1040,340)" to="(1080,340)"/> <wire from="(410,900)" to="(410,930)"/> <wire from="(420,1230)" to="(420,1260)"/> <wire from="(1060,1070)" to="(1060,1080)"/> <wire from="(190,780)" to="(550,780)"/> <wire from="(1290,140)" to="(1300,140)"/> <wire from="(350,620)" to="(380,620)"/> <wire from="(290,1210)" to="(310,1210)"/> <wire from="(250,1330)" to="(270,1330)"/> <wire from="(800,340)" to="(890,340)"/> <wire from="(350,1590)" to="(370,1590)"/> <wire from="(740,1260)" to="(740,1360)"/> <wire from="(270,1520)" to="(280,1520)"/> <wire from="(750,1620)" to="(750,1810)"/> <wire from="(250,1340)" to="(260,1340)"/> <wire from="(480,260)" to="(620,260)"/> <wire from="(1080,1350)" to="(1110,1350)"/> <wire from="(270,440)" to="(270,490)"/> <wire from="(290,300)" to="(290,360)"/> <wire from="(1090,1100)" to="(1090,1140)"/> <wire from="(1280,330)" to="(1280,370)"/> <wire from="(1360,690)" to="(1360,1030)"/> <wire from="(1040,460)" to="(1090,460)"/> <wire from="(570,310)" to="(620,310)"/> <wire from="(570,790)" to="(620,790)"/> <wire from="(1260,1330)" to="(1300,1330)"/> <wire from="(300,1540)" to="(420,1540)"/> <wire from="(740,1000)" to="(740,1260)"/> <wire from="(110,330)" to="(160,330)"/> <wire from="(580,330)" to="(620,330)"/> <wire from="(200,1610)" to="(310,1610)"/> <wire from="(290,810)" to="(460,810)"/> <wire from="(260,1230)" to="(260,1310)"/> <wire from="(580,400)" to="(580,430)"/> <wire from="(390,850)" to="(390,880)"/> <wire from="(850,660)" to="(850,1000)"/> <wire from="(840,1620)" to="(840,1640)"/> <wire from="(650,850)" to="(650,1000)"/> <wire from="(270,1300)" to="(310,1300)"/> <wire from="(160,300)" to="(160,330)"/> <wire from="(590,730)" to="(590,750)"/> <wire from="(1040,1260)" to="(1090,1260)"/> <wire from="(290,1020)" to="(310,1020)"/> <wire from="(290,540)" to="(310,540)"/> <wire from="(350,440)" to="(370,440)"/> <wire from="(290,1340)" to="(310,1340)"/> <wire from="(590,350)" to="(620,350)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(1080,360)" to="(1110,360)"/> <wire from="(250,1310)" to="(260,1310)"/> <wire from="(370,510)" to="(370,560)"/> <wire from="(1360,1290)" to="(1380,1290)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(1200,330)" to="(1220,330)"/> <wire from="(350,1160)" to="(420,1160)"/> <wire from="(1280,1050)" to="(1300,1050)"/> <wire from="(470,930)" to="(470,1000)"/> <wire from="(1070,1340)" to="(1070,1360)"/> <wire from="(110,290)" to="(170,290)"/> <wire from="(1080,1350)" to="(1080,1380)"/> <wire from="(480,260)" to="(480,600)"/> <wire from="(400,1020)" to="(400,1100)"/> <wire from="(1040,440)" to="(1080,440)"/> <wire from="(750,1500)" to="(750,1520)"/> <wire from="(1070,700)" to="(1070,710)"/> <wire from="(1060,1330)" to="(1060,1340)"/> <wire from="(750,1810)" to="(860,1810)"/> <wire from="(380,520)" to="(380,620)"/> <wire from="(500,850)" to="(650,850)"/> <wire from="(190,550)" to="(190,780)"/> <wire from="(350,1040)" to="(380,1040)"/> <wire from="(110,910)" to="(390,910)"/> <wire from="(110,490)" to="(130,490)"/> <wire from="(150,530)" to="(170,530)"/> <wire from="(740,1360)" to="(740,1460)"/> <wire from="(870,1300)" to="(870,1360)"/> <wire from="(300,850)" to="(310,850)"/> <wire from="(1040,380)" to="(1110,380)"/> <wire from="(170,470)" to="(240,470)"/> <wire from="(1420,360)" to="(1440,360)"/> <wire from="(1090,1360)" to="(1090,1400)"/> <wire from="(1200,670)" to="(1200,710)"/> <wire from="(1090,350)" to="(1110,350)"/> <wire from="(350,970)" to="(420,970)"/> <wire from="(350,500)" to="(410,500)"/> <wire from="(590,350)" to="(590,360)"/> <wire from="(1080,680)" to="(1080,700)"/> <wire from="(1070,1080)" to="(1110,1080)"/> <wire from="(1340,710)" to="(1380,710)"/> <wire from="(660,1500)" to="(660,1760)"/> <wire from="(500,240)" to="(620,240)"/> <wire from="(390,530)" to="(390,680)"/> <wire from="(580,430)" to="(620,430)"/> <wire from="(520,280)" to="(620,280)"/> <wire from="(570,650)" to="(570,680)"/> <wire from="(530,1500)" to="(530,1710)"/> <wire from="(270,440)" to="(310,440)"/> <wire from="(350,680)" to="(390,680)"/> <wire from="(290,720)" to="(290,810)"/> <wire from="(650,1000)" to="(670,1000)"/> <wire from="(290,480)" to="(310,480)"/> <wire from="(290,1280)" to="(310,1280)"/> <wire from="(1040,420)" to="(1070,420)"/> <wire from="(300,1500)" to="(300,1540)"/> <wire from="(270,510)" to="(270,560)"/> <wire from="(170,500)" to="(310,500)"/> <wire from="(1280,1310)" to="(1300,1310)"/> <wire from="(110,1660)" to="(180,1660)"/> <wire from="(350,1420)" to="(420,1420)"/> <wire from="(1280,670)" to="(1300,670)"/> <wire from="(160,400)" to="(160,470)"/> <wire from="(1130,690)" to="(1130,1030)"/> <wire from="(1040,1020)" to="(1080,1020)"/> <wire from="(1070,1050)" to="(1110,1050)"/> <wire from="(870,1040)" to="(870,1300)"/> <wire from="(240,540)" to="(240,740)"/> <wire from="(1090,660)" to="(1090,690)"/> <wire from="(400,540)" to="(400,740)"/> <wire from="(110,400)" to="(160,400)"/> <wire from="(400,1280)" to="(400,1360)"/> <wire from="(110,160)" to="(1300,160)"/> <wire from="(550,760)" to="(550,780)"/> <wire from="(370,510)" to="(410,510)"/> <wire from="(1060,390)" to="(1110,390)"/> <wire from="(1040,400)" to="(1060,400)"/> <wire from="(570,730)" to="(590,730)"/> <wire from="(350,1300)" to="(380,1300)"/> <wire from="(570,720)" to="(600,720)"/> <wire from="(800,1020)" to="(890,1020)"/> <wire from="(1080,750)" to="(1110,750)"/> <wire from="(300,1590)" to="(310,1590)"/> <wire from="(290,660)" to="(290,720)"/> <wire from="(240,320)" to="(310,320)"/> <wire from="(1280,1010)" to="(1280,1050)"/> <wire from="(830,1640)" to="(840,1640)"/> <wire from="(570,740)" to="(580,740)"/> <wire from="(350,1230)" to="(420,1230)"/> <wire from="(290,1140)" to="(290,1210)"/> <wire from="(1070,1340)" to="(1110,1340)"/> <wire from="(740,1620)" to="(740,1750)"/> <wire from="(260,1160)" to="(310,1160)"/> <wire from="(1260,730)" to="(1300,730)"/> <wire from="(390,890)" to="(390,910)"/> <wire from="(850,320)" to="(890,320)"/> <wire from="(240,320)" to="(240,470)"/> <wire from="(650,1660)" to="(650,1740)"/> <wire from="(1040,660)" to="(1090,660)"/> <wire from="(1040,1140)" to="(1090,1140)"/> <wire from="(170,510)" to="(270,510)"/> <wire from="(570,750)" to="(570,790)"/> <wire from="(520,1500)" to="(520,1540)"/> <wire from="(870,360)" to="(890,360)"/> <wire from="(110,550)" to="(140,550)"/> <wire from="(570,700)" to="(590,700)"/> <wire from="(170,520)" to="(260,520)"/> <wire from="(600,730)" to="(620,730)"/> <wire from="(650,1260)" to="(670,1260)"/> <wire from="(290,420)" to="(310,420)"/> <wire from="(1360,160)" to="(1360,350)"/> <wire from="(190,50)" to="(190,90)"/> <wire from="(1040,360)" to="(1070,360)"/> <wire from="(400,540)" to="(410,540)"/> <wire from="(200,1760)" to="(660,1760)"/> <wire from="(1080,1040)" to="(1110,1040)"/> <wire from="(170,530)" to="(250,530)"/> <wire from="(160,300)" to="(170,300)"/> <wire from="(1360,690)" to="(1380,690)"/> <wire from="(170,540)" to="(240,540)"/> <wire from="(110,1760)" to="(180,1760)"/> <wire from="(1090,420)" to="(1110,420)"/> <wire from="(1200,1010)" to="(1220,1010)"/> <wire from="(1200,370)" to="(1220,370)"/> <wire from="(290,950)" to="(290,1020)"/> <wire from="(1070,740)" to="(1070,760)"/> <wire from="(190,90)" to="(250,90)"/> <wire from="(1040,1120)" to="(1080,1120)"/> <wire from="(1040,1280)" to="(1080,1280)"/> <wire from="(1070,1310)" to="(1110,1310)"/> <wire from="(260,970)" to="(310,970)"/> <wire from="(350,740)" to="(400,740)"/> <wire from="(1080,750)" to="(1080,780)"/> <wire from="(260,1080)" to="(260,1160)"/> <wire from="(580,870)" to="(580,1540)"/> <wire from="(380,1010)" to="(380,1040)"/> <wire from="(1060,730)" to="(1060,740)"/> <wire from="(420,1660)" to="(650,1660)"/> <wire from="(160,90)" to="(190,90)"/> <wire from="(740,1000)" to="(760,1000)"/> <wire from="(1040,1060)" to="(1110,1060)"/> <wire from="(800,1280)" to="(890,1280)"/> <wire from="(650,1500)" to="(650,1660)"/> <wire from="(520,280)" to="(520,510)"/> <wire from="(290,600)" to="(290,660)"/> <wire from="(1090,760)" to="(1090,800)"/> <wire from="(290,1080)" to="(290,1140)"/> <wire from="(1340,160)" to="(1360,160)"/> <wire from="(290,1400)" to="(290,1460)"/> <wire from="(1420,1040)" to="(1440,1040)"/> <wire from="(1280,1270)" to="(1280,1310)"/> <wire from="(1090,1030)" to="(1110,1030)"/> <wire from="(240,740)" to="(310,740)"/> <wire from="(1360,350)" to="(1360,690)"/> <wire from="(600,720)" to="(600,730)"/> <wire from="(570,450)" to="(620,450)"/> <wire from="(500,580)" to="(500,850)"/> <wire from="(260,620)" to="(310,620)"/> <wire from="(260,1420)" to="(310,1420)"/> <wire from="(250,190)" to="(1130,190)"/> <wire from="(850,320)" to="(850,660)"/> <wire from="(130,500)" to="(170,500)"/> <wire from="(590,390)" to="(590,410)"/> <wire from="(1040,1400)" to="(1090,1400)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(740,1500)" to="(740,1540)"/> <wire from="(520,510)" to="(520,620)"/> <wire from="(290,360)" to="(310,360)"/> <wire from="(150,430)" to="(150,480)"/> <wire from="(1130,190)" to="(1130,350)"/> <wire from="(1040,1100)" to="(1070,1100)"/> <wire from="(1080,1300)" to="(1110,1300)"/> <wire from="(110,870)" to="(310,870)"/> <wire from="(380,1010)" to="(450,1010)"/> <wire from="(1200,1270)" to="(1220,1270)"/> <wire from="(1280,710)" to="(1300,710)"/> <wire from="(290,1210)" to="(290,1280)"/> <wire from="(470,1000)" to="(470,1260)"/> <wire from="(190,780)" to="(190,1170)"/> <wire from="(1040,1380)" to="(1080,1380)"/> <wire from="(260,1230)" to="(310,1230)"/> <wire from="(260,1340)" to="(260,1420)"/> <wire from="(380,1270)" to="(380,1300)"/> <wire from="(1070,360)" to="(1070,370)"/> <wire from="(160,250)" to="(160,280)"/> <wire from="(580,670)" to="(580,690)"/> <wire from="(350,850)" to="(390,850)"/> <wire from="(1060,1070)" to="(1110,1070)"/> <wire from="(730,1620)" to="(730,1640)"/> <wire from="(140,490)" to="(170,490)"/> <wire from="(110,460)" to="(140,460)"/> <wire from="(350,380)" to="(380,380)"/> <wire from="(740,1260)" to="(760,1260)"/> <wire from="(580,1540)" to="(740,1540)"/> <wire from="(1040,1320)" to="(1110,1320)"/> <wire from="(290,540)" to="(290,600)"/> <wire from="(290,1020)" to="(290,1080)"/> <wire from="(290,1500)" to="(290,1560)"/> <wire from="(290,1340)" to="(290,1400)"/> <wire from="(1200,330)" to="(1200,370)"/> <wire from="(1420,1300)" to="(1440,1300)"/> <wire from="(1040,1080)" to="(1060,1080)"/> <wire from="(1150,390)" to="(1170,390)"/> <wire from="(1090,1290)" to="(1110,1290)"/> <wire from="(1080,340)" to="(1080,360)"/> <wire from="(570,710)" to="(620,710)"/> <wire from="(250,380)" to="(310,380)"/> <wire from="(400,1020)" to="(450,1020)"/> <wire from="(1070,740)" to="(1110,740)"/> <wire from="(130,510)" to="(130,520)"/> <wire from="(1340,370)" to="(1380,370)"/> <wire from="(110,250)" to="(160,250)"/> <wire from="(250,530)" to="(250,680)"/> <wire from="(850,1000)" to="(890,1000)"/> <wire from="(570,310)" to="(570,340)"/> <wire from="(110,580)" to="(150,580)"/> <wire from="(140,520)" to="(140,550)"/> <wire from="(640,1500)" to="(640,1520)"/> <wire from="(870,1040)" to="(890,1040)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(250,1060)" to="(270,1060)"/> <wire from="(590,750)" to="(620,750)"/> <wire from="(150,480)" to="(170,480)"/> <wire from="(210,1180)" to="(230,1180)"/> <wire from="(1190,390)" to="(1220,390)"/> <wire from="(150,530)" to="(150,580)"/> <wire from="(1040,1040)" to="(1070,1040)"/> <wire from="(1040,1360)" to="(1070,1360)"/> <wire from="(870,510)" to="(870,700)"/> <wire from="(860,1620)" to="(860,1810)"/> <wire from="(380,1270)" to="(450,1270)"/> <wire from="(1090,1100)" to="(1110,1100)"/> <wire from="(1200,1050)" to="(1220,1050)"/> <wire from="(1280,330)" to="(1300,330)"/> <wire from="(160,540)" to="(160,610)"/> <wire from="(1130,350)" to="(1130,690)"/> <wire from="(190,130)" to="(250,130)"/> <wire from="(190,290)" to="(250,290)"/> <wire from="(1070,710)" to="(1110,710)"/> <wire from="(1040,680)" to="(1080,680)"/> <wire from="(850,1000)" to="(850,1260)"/> <wire from="(350,1100)" to="(400,1100)"/> <wire from="(430,440)" to="(550,440)"/> <wire from="(1090,320)" to="(1090,350)"/> <wire from="(390,320)" to="(390,470)"/> <wire from="(1360,1030)" to="(1360,1290)"/> <wire from="(550,420)" to="(550,440)"/> <wire from="(510,1500)" to="(510,1520)"/> <wire from="(370,490)" to="(410,490)"/> <wire from="(1060,1330)" to="(1110,1330)"/> <wire from="(200,1810)" to="(750,1810)"/> <wire from="(230,1090)" to="(230,1180)"/> <wire from="(110,80)" to="(140,80)"/> <wire from="(570,390)" to="(590,390)"/> <wire from="(420,1030)" to="(450,1030)"/> <wire from="(390,530)" to="(410,530)"/> <wire from="(570,380)" to="(600,380)"/> <wire from="(800,680)" to="(890,680)"/> <wire from="(1150,730)" to="(1220,730)"/> <wire from="(230,50)" to="(250,50)"/> <wire from="(850,1520)" to="(850,1580)"/> <wire from="(1080,410)" to="(1110,410)"/> <wire from="(480,600)" to="(620,600)"/> <wire from="(160,470)" to="(170,470)"/> <wire from="(290,480)" to="(290,540)"/> <wire from="(110,1610)" to="(180,1610)"/> <wire from="(290,1280)" to="(290,1340)"/> <wire from="(1280,670)" to="(1280,710)"/> <wire from="(1040,1340)" to="(1060,1340)"/> <wire from="(570,400)" to="(580,400)"/> <comp lib="0" loc="(720,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(110,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="2" loc="(490,1280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,550)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(200,1710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,1760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1290,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(350,730)" name="D-latch"/> <comp lib="1" loc="(740,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(1260,1060)" name="D-latch"/> <comp lib="6" loc="(619,1450)" name="Text"> <a name="text" val="SRLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,1300)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp loc="(1040,980)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="0" loc="(110,1710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TA"/> </comp> <comp lib="0" loc="(1300,330)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp loc="(350,1150)" name="D-latch"/> <comp lib="0" loc="(1440,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1420,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH0"/> </comp> <comp lib="2" loc="(1150,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp loc="(350,1600)" name="D-latch"/> <comp lib="6" loc="(1022,1180)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="6" loc="(556,1449)" name="Text"> <a name="text" val="STEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1340,1060)" name="D-latch"/> <comp lib="0" loc="(300,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(350,430)" name="D-latch"/> <comp lib="1" loc="(1190,1330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(230,1090)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1300,1270)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp loc="(350,960)" name="D-latch"/> <comp loc="(350,1290)" name="D-latch"/> <comp loc="(350,860)" name="D-latch"/> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO1"/> </comp> <comp lib="1" loc="(1190,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1340,1320)" name="D-latch"/> <comp lib="0" loc="(110,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLPB"/> </comp> <comp lib="0" loc="(190,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(200,1660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(550,760)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(850,1580)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1220,1010)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="2" loc="(490,1020)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(550,420)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1220,1270)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="0" loc="(110,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="1" loc="(650,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(250,90)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="1" loc="(1190,1070)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1022,499)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(500,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1220,330)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="1" loc="(290,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp loc="(800,1270)" name="D-latch"/> <comp loc="(350,550)" name="D-latch"/> <comp lib="0" loc="(630,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(800,1010)" name="D-latch"/> <comp lib="0" loc="(140,80)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(520,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(496,1449)" name="Text"> <a name="text" val="PD/SR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1034,1439)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(110,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp loc="(1260,380)" name="D-latch"/> <comp lib="0" loc="(110,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH2"/> </comp> <comp lib="1" loc="(230,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1018,842)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> </comp> <comp loc="(350,670)" name="D-latch"/> <comp lib="0" loc="(830,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(710,1010)" name="D-latch"/> <comp loc="(350,1090)" name="D-latch"/> <comp loc="(350,610)" name="D-latch"/> <comp loc="(350,1030)" name="D-latch"/> <comp lib="0" loc="(1300,670)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp loc="(1040,640)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="2" loc="(1150,1330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(300,1590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(190,1170)" name="Splitter"> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="1" loc="(740,1580)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(800,560)" name="SHIFT_REG_LOAD"/> <comp lib="2" loc="(1150,390)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp loc="(350,1410)" name="D-latch"/> <comp lib="0" loc="(270,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(225,1036)" name="Text"> <a name="text" val="even bits"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,1760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp loc="(350,490)" name="D-latch"/> <comp lib="0" loc="(250,50)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="6" loc="(222,1361)" name="Text"> <a name="text" val="odd bits"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1260,1320)" name="D-latch"/> <comp lib="1" loc="(1420,1040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FO"/> </comp> <comp lib="1" loc="(730,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1340,150)" name="D-latch"/> <comp lib="6" loc="(821,1449)" name="Text"> <a name="text" val="STEP2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1420,1300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(265,1450)" name="Text"> <a name="text" val="PD/SEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1440,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(350,310)" name="D-latch"/> <comp loc="(1340,720)" name="D-latch"/> <comp lib="1" loc="(1420,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(200,1810)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(350,370)" name="D-latch"/> <comp lib="0" loc="(110,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH1"/> </comp> <comp lib="0" loc="(110,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(1220,670)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp loc="(350,1350)" name="D-latch"/> <comp lib="0" loc="(1440,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1440,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(800,220)" name="SHIFT_REG_LOAD"/> <comp loc="(710,1270)" name="D-latch"/> <comp loc="(1040,300)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="0" loc="(430,460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(716,1450)" name="Text"> <a name="text" val="NEXT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1150,1070)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(250,130)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(720,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1300,1010)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp loc="(1040,1240)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="1" loc="(200,1610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(410,900)" name="Splitter"> <a name="facing" val="west"/> <a name="appear" val="right"/> </comp> <comp loc="(350,1220)" name="D-latch"/> <comp lib="0" loc="(110,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp loc="(1340,380)" name="D-latch"/> <comp loc="(1260,720)" name="D-latch"/> <comp lib="0" loc="(110,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> </comp> </circuit> <circuit name="SHIFT_REG"> <a name="circuit" val="SHIFT_REG"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M91,51 Q95,61 99,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff590e" height="181" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="114">NEXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="94">IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="144">DATA OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="74">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="214">0</text> <circ-port height="8" pin="90,90" width="8" x="46" y="66"/> <circ-port height="8" pin="90,140" width="8" x="46" y="86"/> <circ-port height="8" pin="90,40" width="8" x="46" y="106"/> <circ-port height="10" pin="320,140" width="10" x="195" y="205"/> <circ-port height="10" pin="320,220" width="10" x="195" y="185"/> <circ-port height="10" pin="320,300" width="10" x="195" y="165"/> <circ-port height="10" pin="320,380" width="10" x="195" y="145"/> <circ-port height="10" pin="320,460" width="10" x="195" y="125"/> <circ-port height="10" pin="320,540" width="10" x="195" y="105"/> <circ-port height="10" pin="320,620" width="10" x="195" y="85"/> <circ-port height="10" pin="320,700" width="10" x="195" y="65"/> <circ-anchor facing="east" height="6" width="6" x="197" y="47"/> </appear> <wire from="(200,220)" to="(250,220)"/> <wire from="(200,140)" to="(250,140)"/> <wire from="(200,380)" to="(250,380)"/> <wire from="(200,540)" to="(250,540)"/> <wire from="(200,700)" to="(250,700)"/> <wire from="(200,300)" to="(250,300)"/> <wire from="(200,460)" to="(250,460)"/> <wire from="(200,620)" to="(250,620)"/> <wire from="(230,40)" to="(230,120)"/> <wire from="(230,200)" to="(230,280)"/> <wire from="(230,360)" to="(230,440)"/> <wire from="(230,120)" to="(230,200)"/> <wire from="(230,280)" to="(230,360)"/> <wire from="(230,600)" to="(230,680)"/> <wire from="(230,440)" to="(230,520)"/> <wire from="(230,520)" to="(230,600)"/> <wire from="(90,90)" to="(120,90)"/> <wire from="(290,460)" to="(310,460)"/> <wire from="(290,620)" to="(310,620)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(290,540)" to="(310,540)"/> <wire from="(290,220)" to="(310,220)"/> <wire from="(290,380)" to="(310,380)"/> <wire from="(230,120)" to="(250,120)"/> <wire from="(230,600)" to="(250,600)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(230,440)" to="(250,440)"/> <wire from="(230,200)" to="(250,200)"/> <wire from="(230,360)" to="(250,360)"/> <wire from="(230,680)" to="(250,680)"/> <wire from="(230,520)" to="(250,520)"/> <wire from="(90,40)" to="(230,40)"/> <wire from="(90,140)" to="(160,140)"/> <wire from="(120,120)" to="(120,200)"/> <wire from="(120,200)" to="(120,280)"/> <wire from="(120,280)" to="(120,360)"/> <wire from="(120,360)" to="(120,440)"/> <wire from="(120,440)" to="(120,520)"/> <wire from="(120,520)" to="(120,600)"/> <wire from="(120,600)" to="(120,680)"/> <wire from="(140,170)" to="(310,170)"/> <wire from="(140,490)" to="(310,490)"/> <wire from="(140,410)" to="(310,410)"/> <wire from="(140,250)" to="(310,250)"/> <wire from="(140,330)" to="(310,330)"/> <wire from="(140,650)" to="(310,650)"/> <wire from="(140,570)" to="(310,570)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,280)" to="(160,280)"/> <wire from="(120,200)" to="(160,200)"/> <wire from="(310,300)" to="(310,330)"/> <wire from="(310,140)" to="(310,170)"/> <wire from="(310,460)" to="(310,490)"/> <wire from="(310,620)" to="(310,650)"/> <wire from="(310,380)" to="(310,410)"/> <wire from="(310,220)" to="(310,250)"/> <wire from="(310,540)" to="(310,570)"/> <wire from="(120,680)" to="(160,680)"/> <wire from="(120,600)" to="(160,600)"/> <wire from="(120,520)" to="(160,520)"/> <wire from="(120,440)" to="(160,440)"/> <wire from="(120,360)" to="(160,360)"/> <wire from="(120,90)" to="(120,120)"/> <wire from="(290,700)" to="(320,700)"/> <wire from="(140,220)" to="(160,220)"/> <wire from="(140,300)" to="(160,300)"/> <wire from="(140,380)" to="(160,380)"/> <wire from="(140,620)" to="(160,620)"/> <wire from="(140,540)" to="(160,540)"/> <wire from="(140,460)" to="(160,460)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(140,570)" to="(140,620)"/> <wire from="(140,410)" to="(140,460)"/> <wire from="(140,250)" to="(140,300)"/> <wire from="(140,650)" to="(140,700)"/> <wire from="(140,490)" to="(140,540)"/> <wire from="(140,330)" to="(140,380)"/> <wire from="(140,170)" to="(140,220)"/> <wire from="(310,140)" to="(320,140)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(310,460)" to="(320,460)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(310,220)" to="(320,220)"/> <wire from="(310,380)" to="(320,380)"/> <wire from="(310,540)" to="(320,540)"/> <comp lib="0" loc="(320,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NEXT"/> </comp> <comp lib="4" loc="(200,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(320,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 4"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(320,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(200,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DATA IN"/> </comp> <comp lib="0" loc="(320,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(200,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="4" loc="(290,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="SHIFT_REG_LOAD"> <a name="circuit" val="SHIFT_REG_LOAD"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M91,51 Q95,61 99,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7510" height="250" stroke="#000000" stroke-width="2" width="180" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="144">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="213">DATA INPUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="209" y="174">OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="285">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="95">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">NEXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="141" y="46">SHIFT REGISTER LOADABLE</text> <circ-port height="8" pin="100,150" width="8" x="46" y="66"/> <circ-port height="8" pin="100,100" width="8" x="46" y="86"/> <circ-port height="8" pin="100,50" width="8" x="46" y="106"/> <circ-port height="10" pin="400,910" width="10" x="225" y="165"/> <circ-port height="8" pin="100,210" width="8" x="46" y="136"/> <circ-port height="8" pin="100,310" width="8" x="46" y="156"/> <circ-port height="8" pin="100,410" width="8" x="46" y="176"/> <circ-port height="8" pin="100,510" width="8" x="46" y="196"/> <circ-port height="8" pin="100,610" width="8" x="46" y="216"/> <circ-port height="8" pin="100,710" width="8" x="46" y="236"/> <circ-port height="8" pin="100,810" width="8" x="46" y="256"/> <circ-port height="8" pin="100,910" width="8" x="46" y="276"/> <circ-anchor facing="east" height="6" width="6" x="227" y="47"/> </appear> <wire from="(310,50)" to="(310,190)"/> <wire from="(290,450)" to="(390,450)"/> <wire from="(290,250)" to="(390,250)"/> <wire from="(290,650)" to="(390,650)"/> <wire from="(290,850)" to="(390,850)"/> <wire from="(100,150)" to="(140,150)"/> <wire from="(170,450)" to="(270,450)"/> <wire from="(170,250)" to="(270,250)"/> <wire from="(170,650)" to="(270,650)"/> <wire from="(170,850)" to="(270,850)"/> <wire from="(370,910)" to="(400,910)"/> <wire from="(390,310)" to="(390,350)"/> <wire from="(390,710)" to="(390,750)"/> <wire from="(390,510)" to="(390,550)"/> <wire from="(100,50)" to="(310,50)"/> <wire from="(250,310)" to="(330,310)"/> <wire from="(250,510)" to="(330,510)"/> <wire from="(250,910)" to="(330,910)"/> <wire from="(250,710)" to="(330,710)"/> <wire from="(170,250)" to="(170,310)"/> <wire from="(170,450)" to="(170,510)"/> <wire from="(170,650)" to="(170,710)"/> <wire from="(170,850)" to="(170,910)"/> <wire from="(170,510)" to="(210,510)"/> <wire from="(170,310)" to="(210,310)"/> <wire from="(170,710)" to="(210,710)"/> <wire from="(390,120)" to="(390,150)"/> <wire from="(170,910)" to="(210,910)"/> <wire from="(280,640)" to="(280,740)"/> <wire from="(280,240)" to="(280,340)"/> <wire from="(310,190)" to="(310,290)"/> <wire from="(280,440)" to="(280,540)"/> <wire from="(310,590)" to="(310,690)"/> <wire from="(310,390)" to="(310,490)"/> <wire from="(310,790)" to="(310,890)"/> <wire from="(100,810)" to="(130,810)"/> <wire from="(100,410)" to="(130,410)"/> <wire from="(100,210)" to="(130,210)"/> <wire from="(100,610)" to="(130,610)"/> <wire from="(140,300)" to="(140,400)"/> <wire from="(140,700)" to="(140,800)"/> <wire from="(140,500)" to="(140,600)"/> <wire from="(310,590)" to="(330,590)"/> <wire from="(310,390)" to="(330,390)"/> <wire from="(310,190)" to="(330,190)"/> <wire from="(370,410)" to="(390,410)"/> <wire from="(310,790)" to="(330,790)"/> <wire from="(370,610)" to="(390,610)"/> <wire from="(370,210)" to="(390,210)"/> <wire from="(370,810)" to="(390,810)"/> <wire from="(150,510)" to="(170,510)"/> <wire from="(150,910)" to="(170,910)"/> <wire from="(150,310)" to="(170,310)"/> <wire from="(150,710)" to="(170,710)"/> <wire from="(140,150)" to="(140,200)"/> <wire from="(200,890)" to="(210,890)"/> <wire from="(200,490)" to="(210,490)"/> <wire from="(200,690)" to="(210,690)"/> <wire from="(200,290)" to="(210,290)"/> <wire from="(290,350)" to="(390,350)"/> <wire from="(290,750)" to="(390,750)"/> <wire from="(290,150)" to="(390,150)"/> <wire from="(290,550)" to="(390,550)"/> <wire from="(170,350)" to="(270,350)"/> <wire from="(170,150)" to="(270,150)"/> <wire from="(170,550)" to="(270,550)"/> <wire from="(170,750)" to="(270,750)"/> <wire from="(280,100)" to="(280,140)"/> <wire from="(390,610)" to="(390,650)"/> <wire from="(390,810)" to="(390,850)"/> <wire from="(390,410)" to="(390,450)"/> <wire from="(390,210)" to="(390,250)"/> <wire from="(250,210)" to="(330,210)"/> <wire from="(250,810)" to="(330,810)"/> <wire from="(250,410)" to="(330,410)"/> <wire from="(250,610)" to="(330,610)"/> <wire from="(170,350)" to="(170,410)"/> <wire from="(170,550)" to="(170,610)"/> <wire from="(170,150)" to="(170,210)"/> <wire from="(170,750)" to="(170,810)"/> <wire from="(100,100)" to="(280,100)"/> <wire from="(170,210)" to="(210,210)"/> <wire from="(170,410)" to="(210,410)"/> <wire from="(170,610)" to="(210,610)"/> <wire from="(170,810)" to="(210,810)"/> <wire from="(280,740)" to="(280,840)"/> <wire from="(280,340)" to="(280,440)"/> <wire from="(310,490)" to="(310,590)"/> <wire from="(280,140)" to="(280,240)"/> <wire from="(310,290)" to="(310,390)"/> <wire from="(280,540)" to="(280,640)"/> <wire from="(310,690)" to="(310,790)"/> <wire from="(100,910)" to="(130,910)"/> <wire from="(100,510)" to="(130,510)"/> <wire from="(100,710)" to="(130,710)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(140,400)" to="(140,500)"/> <wire from="(140,800)" to="(140,900)"/> <wire from="(140,200)" to="(140,300)"/> <wire from="(140,600)" to="(140,700)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(310,490)" to="(330,490)"/> <wire from="(310,690)" to="(330,690)"/> <wire from="(310,890)" to="(330,890)"/> <wire from="(370,310)" to="(390,310)"/> <wire from="(370,510)" to="(390,510)"/> <wire from="(370,710)" to="(390,710)"/> <wire from="(150,610)" to="(170,610)"/> <wire from="(150,210)" to="(170,210)"/> <wire from="(150,410)" to="(170,410)"/> <wire from="(150,810)" to="(170,810)"/> <wire from="(200,590)" to="(210,590)"/> <wire from="(200,190)" to="(210,190)"/> <wire from="(200,790)" to="(210,790)"/> <wire from="(200,390)" to="(210,390)"/> <comp lib="1" loc="(150,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(150,610)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(370,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(270,150)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(150,510)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,550)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(250,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,590)" name="Constant"/> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(400,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(200,790)" name="Constant"/> <comp lib="4" loc="(250,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,390)" name="Constant"/> <comp lib="4" loc="(250,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(370,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="3"/> </comp> <comp lib="1" loc="(270,850)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(250,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(250,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,690)" name="Constant"/> <comp lib="0" loc="(390,120)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="1" loc="(270,250)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(200,890)" name="Constant"/> <comp lib="4" loc="(370,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(270,750)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(250,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,190)" name="Constant"/> <comp lib="4" loc="(370,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(270,450)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="1"/> </comp> <comp lib="1" loc="(150,710)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NEXT"/> </comp> <comp lib="1" loc="(270,350)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(250,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,290)" name="Constant"/> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0"/> </comp> <comp lib="4" loc="(370,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(270,650)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(150,910)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="2"/> </comp> <comp lib="4" loc="(370,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,810)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(250,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,310)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(200,490)" name="Constant"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> </circuit> <circuit name="SEL12x3"> <a name="circuit" val="SEL12x3"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M60,19 Q64,29 68,19" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fff63b" height="181" stroke="#000000" stroke-width="2" width="100" x="50" y="19"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="44">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="64">/Tx</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="190">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="190">1</text> <circ-port height="8" pin="70,30" width="8" x="46" y="36"/> <circ-port height="8" pin="70,80" width="8" x="46" y="56"/> <circ-port height="8" pin="70,120" width="8" x="46" y="76"/> <circ-port height="8" pin="70,160" width="8" x="46" y="86"/> <circ-port height="8" pin="70,200" width="8" x="46" y="96"/> <circ-port height="8" pin="70,240" width="8" x="46" y="106"/> <circ-port height="8" pin="70,290" width="8" x="46" y="116"/> <circ-port height="8" pin="70,330" width="8" x="46" y="126"/> <circ-port height="8" pin="70,370" width="8" x="46" y="136"/> <circ-port height="8" pin="70,410" width="8" x="46" y="146"/> <circ-port height="8" pin="70,460" width="8" x="46" y="156"/> <circ-port height="8" pin="70,500" width="8" x="46" y="166"/> <circ-port height="8" pin="70,540" width="8" x="46" y="176"/> <circ-port height="8" pin="70,580" width="8" x="46" y="186"/> <circ-port height="10" pin="320,170" width="10" x="145" y="115"/> <circ-port height="10" pin="320,340" width="10" x="145" y="75"/> <circ-port height="10" pin="320,510" width="10" x="145" y="35"/> <circ-port height="8" pin="150,650" width="8" x="76" y="196"/> <circ-port height="8" pin="200,650" width="8" x="116" y="196"/> <circ-anchor facing="east" height="6" width="6" x="147" y="17"/> </appear> <wire from="(180,620)" to="(180,630)"/> <wire from="(120,360)" to="(170,360)"/> <wire from="(260,540)" to="(260,550)"/> <wire from="(230,30)" to="(230,170)"/> <wire from="(70,330)" to="(120,330)"/> <wire from="(70,80)" to="(180,80)"/> <wire from="(100,180)" to="(100,200)"/> <wire from="(100,520)" to="(100,540)"/> <wire from="(150,630)" to="(150,650)"/> <wire from="(210,360)" to="(250,360)"/> <wire from="(120,500)" to="(120,530)"/> <wire from="(120,160)" to="(120,190)"/> <wire from="(140,200)" to="(170,200)"/> <wire from="(140,340)" to="(170,340)"/> <wire from="(140,540)" to="(170,540)"/> <wire from="(70,370)" to="(100,370)"/> <wire from="(290,510)" to="(320,510)"/> <wire from="(290,170)" to="(320,170)"/> <wire from="(190,210)" to="(190,380)"/> <wire from="(230,170)" to="(230,340)"/> <wire from="(140,200)" to="(140,240)"/> <wire from="(140,540)" to="(140,580)"/> <wire from="(260,200)" to="(260,370)"/> <wire from="(180,630)" to="(200,630)"/> <wire from="(230,340)" to="(250,340)"/> <wire from="(140,460)" to="(140,510)"/> <wire from="(140,120)" to="(140,170)"/> <wire from="(190,550)" to="(190,600)"/> <wire from="(100,350)" to="(170,350)"/> <wire from="(70,120)" to="(140,120)"/> <wire from="(70,240)" to="(140,240)"/> <wire from="(70,460)" to="(140,460)"/> <wire from="(70,580)" to="(140,580)"/> <wire from="(200,80)" to="(260,80)"/> <wire from="(170,620)" to="(170,630)"/> <wire from="(120,530)" to="(170,530)"/> <wire from="(120,190)" to="(170,190)"/> <wire from="(70,160)" to="(120,160)"/> <wire from="(70,500)" to="(120,500)"/> <wire from="(100,350)" to="(100,370)"/> <wire from="(200,630)" to="(200,650)"/> <wire from="(210,530)" to="(250,530)"/> <wire from="(210,190)" to="(250,190)"/> <wire from="(120,330)" to="(120,360)"/> <wire from="(140,170)" to="(170,170)"/> <wire from="(140,370)" to="(170,370)"/> <wire from="(140,510)" to="(170,510)"/> <wire from="(70,30)" to="(230,30)"/> <wire from="(70,200)" to="(100,200)"/> <wire from="(70,540)" to="(100,540)"/> <wire from="(290,340)" to="(320,340)"/> <wire from="(190,380)" to="(190,550)"/> <wire from="(230,340)" to="(230,510)"/> <wire from="(140,370)" to="(140,410)"/> <wire from="(150,630)" to="(170,630)"/> <wire from="(260,370)" to="(260,540)"/> <wire from="(230,510)" to="(250,510)"/> <wire from="(230,170)" to="(250,170)"/> <wire from="(140,290)" to="(140,340)"/> <wire from="(100,520)" to="(170,520)"/> <wire from="(100,180)" to="(170,180)"/> <wire from="(70,410)" to="(140,410)"/> <wire from="(70,290)" to="(140,290)"/> <wire from="(260,80)" to="(260,200)"/> <comp lib="0" loc="(200,650)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="1"/> <a name="labelloc" val="south"/> </comp> <comp lib="2" loc="(210,530)" name="Multiplexer"> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(210,360)" name="Multiplexer"> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(290,510)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(70,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN8"/> </comp> <comp lib="0" loc="(320,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,650)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="0"/> <a name="labelloc" val="south"/> </comp> <comp lib="4" loc="(290,340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN9"/> </comp> <comp lib="0" loc="(190,600)" name="Splitter"> <a name="facing" val="south"/> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(70,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN3"/> </comp> <comp lib="4" loc="(290,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(70,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="0" loc="(70,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="0" loc="(70,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN6"/> </comp> <comp lib="0" loc="(70,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/Tx"/> </comp> <comp lib="1" loc="(200,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(70,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN5"/> </comp> <comp lib="0" loc="(70,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN11"/> </comp> <comp lib="0" loc="(70,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN7"/> </comp> <comp lib="2" loc="(210,190)" name="Multiplexer"> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(70,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="0" loc="(70,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN10"/> </comp> <comp lib="0" loc="(320,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN4"/> </comp> </circuit> <circuit name="SEL16x12_R"> <a name="circuit" val="SEL16x12_R"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M143,130 Q147,140 151,130" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff3041" height="181" stroke="#000000" stroke-width="2" width="171" x="60" y="129"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="164">PCLK</text> <circ-port height="8" pin="100,40" width="8" x="56" y="156"/> <circ-port height="10" pin="100,130" width="10" x="225" y="185"/> <circ-port height="10" pin="100,190" width="10" x="225" y="195"/> <circ-port height="10" pin="100,250" width="10" x="225" y="205"/> <circ-port height="10" pin="100,310" width="10" x="225" y="215"/> <circ-port height="10" pin="100,370" width="10" x="225" y="225"/> <circ-port height="10" pin="100,430" width="10" x="225" y="235"/> <circ-port height="10" pin="100,490" width="10" x="225" y="245"/> <circ-port height="10" pin="100,550" width="10" x="225" y="255"/> <circ-port height="10" pin="100,610" width="10" x="225" y="265"/> <circ-port height="10" pin="100,670" width="10" x="225" y="275"/> <circ-port height="10" pin="100,730" width="10" x="225" y="285"/> <circ-port height="10" pin="100,790" width="10" x="225" y="295"/> <circ-port height="8" pin="220,850" width="8" x="216" y="306"/> <circ-port height="8" pin="270,850" width="8" x="206" y="306"/> <circ-port height="8" pin="320,850" width="8" x="196" y="306"/> <circ-port height="8" pin="370,850" width="8" x="186" y="306"/> <circ-port height="8" pin="420,850" width="8" x="176" y="306"/> <circ-port height="8" pin="470,850" width="8" x="166" y="306"/> <circ-port height="8" pin="520,850" width="8" x="156" y="306"/> <circ-port height="8" pin="570,850" width="8" x="146" y="306"/> <circ-port height="8" pin="620,850" width="8" x="136" y="306"/> <circ-port height="8" pin="670,850" width="8" x="126" y="306"/> <circ-port height="8" pin="720,850" width="8" x="116" y="306"/> <circ-port height="8" pin="770,850" width="8" x="106" y="306"/> <circ-port height="8" pin="820,850" width="8" x="96" y="306"/> <circ-port height="8" pin="870,850" width="8" x="86" y="306"/> <circ-port height="8" pin="920,850" width="8" x="76" y="306"/> <circ-port height="8" pin="970,850" width="8" x="66" y="306"/> <circ-anchor facing="east" height="6" width="6" x="227" y="127"/> </appear> <wire from="(270,780)" to="(270,850)"/> <wire from="(840,200)" to="(890,200)"/> <wire from="(840,680)" to="(890,680)"/> <wire from="(740,260)" to="(790,260)"/> <wire from="(440,440)" to="(490,440)"/> <wire from="(440,680)" to="(490,680)"/> <wire from="(790,260)" to="(1040,260)"/> <wire from="(240,560)" to="(290,560)"/> <wire from="(440,200)" to="(540,200)"/> <wire from="(570,80)" to="(570,420)"/> <wire from="(640,800)" to="(790,800)"/> <wire from="(320,80)" to="(320,120)"/> <wire from="(440,400)" to="(450,400)"/> <wire from="(440,640)" to="(450,640)"/> <wire from="(440,160)" to="(450,160)"/> <wire from="(100,40)" to="(180,40)"/> <wire from="(160,500)" to="(240,500)"/> <wire from="(160,740)" to="(240,740)"/> <wire from="(870,420)" to="(870,540)"/> <wire from="(240,520)" to="(250,520)"/> <wire from="(720,240)" to="(720,300)"/> <wire from="(420,420)" to="(420,480)"/> <wire from="(840,160)" to="(850,160)"/> <wire from="(840,640)" to="(850,640)"/> <wire from="(520,120)" to="(520,180)"/> <wire from="(640,760)" to="(650,760)"/> <wire from="(740,220)" to="(750,220)"/> <wire from="(540,340)" to="(550,340)"/> <wire from="(180,180)" to="(180,240)"/> <wire from="(540,100)" to="(550,100)"/> <wire from="(540,580)" to="(550,580)"/> <wire from="(180,420)" to="(180,480)"/> <wire from="(180,660)" to="(180,720)"/> <wire from="(470,420)" to="(470,540)"/> <wire from="(990,560)" to="(1040,560)"/> <wire from="(990,800)" to="(1040,800)"/> <wire from="(790,680)" to="(840,680)"/> <wire from="(370,720)" to="(370,850)"/> <wire from="(390,680)" to="(440,680)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(490,140)" to="(540,140)"/> <wire from="(490,620)" to="(540,620)"/> <wire from="(540,140)" to="(790,140)"/> <wire from="(620,780)" to="(620,850)"/> <wire from="(790,440)" to="(890,440)"/> <wire from="(890,620)" to="(990,620)"/> <wire from="(890,140)" to="(990,140)"/> <wire from="(100,490)" to="(130,490)"/> <wire from="(100,730)" to="(130,730)"/> <wire from="(100,250)" to="(130,250)"/> <wire from="(540,620)" to="(890,620)"/> <wire from="(270,80)" to="(270,120)"/> <wire from="(160,720)" to="(180,720)"/> <wire from="(290,500)" to="(440,500)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,480)" to="(180,480)"/> <wire from="(390,640)" to="(400,640)"/> <wire from="(520,360)" to="(520,480)"/> <wire from="(520,600)" to="(520,720)"/> <wire from="(490,100)" to="(500,100)"/> <wire from="(490,580)" to="(500,580)"/> <wire from="(870,120)" to="(870,180)"/> <wire from="(490,340)" to="(500,340)"/> <wire from="(870,600)" to="(870,660)"/> <wire from="(970,540)" to="(970,600)"/> <wire from="(290,460)" to="(300,460)"/> <wire from="(820,180)" to="(820,300)"/> <wire from="(820,660)" to="(820,780)"/> <wire from="(540,380)" to="(990,380)"/> <wire from="(770,420)" to="(770,480)"/> <wire from="(770,660)" to="(770,720)"/> <wire from="(270,480)" to="(270,540)"/> <wire from="(370,660)" to="(370,720)"/> <wire from="(990,760)" to="(1000,760)"/> <wire from="(990,520)" to="(1000,520)"/> <wire from="(790,400)" to="(800,400)"/> <wire from="(970,360)" to="(970,540)"/> <wire from="(790,640)" to="(800,640)"/> <wire from="(470,600)" to="(470,660)"/> <wire from="(470,360)" to="(470,420)"/> <wire from="(890,580)" to="(900,580)"/> <wire from="(890,100)" to="(900,100)"/> <wire from="(420,660)" to="(420,780)"/> <wire from="(940,800)" to="(990,800)"/> <wire from="(940,560)" to="(990,560)"/> <wire from="(740,440)" to="(790,440)"/> <wire from="(740,680)" to="(790,680)"/> <wire from="(160,260)" to="(540,260)"/> <wire from="(440,140)" to="(490,140)"/> <wire from="(440,620)" to="(490,620)"/> <wire from="(440,380)" to="(490,380)"/> <wire from="(970,780)" to="(970,850)"/> <wire from="(340,680)" to="(390,680)"/> <wire from="(240,500)" to="(290,500)"/> <wire from="(940,320)" to="(1040,320)"/> <wire from="(640,260)" to="(740,260)"/> <wire from="(340,440)" to="(440,440)"/> <wire from="(340,200)" to="(440,200)"/> <wire from="(640,500)" to="(790,500)"/> <wire from="(640,740)" to="(790,740)"/> <wire from="(540,320)" to="(690,320)"/> <wire from="(720,80)" to="(720,240)"/> <wire from="(240,740)" to="(390,740)"/> <wire from="(440,340)" to="(450,340)"/> <wire from="(440,580)" to="(450,580)"/> <wire from="(440,100)" to="(450,100)"/> <wire from="(420,180)" to="(420,360)"/> <wire from="(340,400)" to="(350,400)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(340,640)" to="(350,640)"/> <wire from="(520,300)" to="(520,360)"/> <wire from="(270,540)" to="(270,780)"/> <wire from="(240,460)" to="(250,460)"/> <wire from="(620,720)" to="(620,780)"/> <wire from="(240,700)" to="(250,700)"/> <wire from="(220,540)" to="(220,720)"/> <wire from="(940,520)" to="(950,520)"/> <wire from="(940,760)" to="(950,760)"/> <wire from="(940,280)" to="(950,280)"/> <wire from="(420,360)" to="(420,420)"/> <wire from="(670,300)" to="(670,540)"/> <wire from="(420,120)" to="(420,180)"/> <wire from="(420,600)" to="(420,660)"/> <wire from="(640,700)" to="(650,700)"/> <wire from="(740,640)" to="(750,640)"/> <wire from="(870,180)" to="(870,420)"/> <wire from="(740,400)" to="(750,400)"/> <wire from="(540,280)" to="(550,280)"/> <wire from="(180,120)" to="(180,180)"/> <wire from="(180,360)" to="(180,420)"/> <wire from="(220,480)" to="(220,540)"/> <wire from="(640,220)" to="(650,220)"/> <wire from="(180,600)" to="(180,660)"/> <wire from="(640,460)" to="(650,460)"/> <wire from="(890,560)" to="(940,560)"/> <wire from="(890,800)" to="(940,800)"/> <wire from="(390,380)" to="(440,380)"/> <wire from="(390,620)" to="(440,620)"/> <wire from="(920,780)" to="(920,850)"/> <wire from="(490,320)" to="(540,320)"/> <wire from="(160,440)" to="(340,440)"/> <wire from="(160,200)" to="(340,200)"/> <wire from="(160,680)" to="(340,680)"/> <wire from="(790,140)" to="(890,140)"/> <wire from="(180,40)" to="(180,120)"/> <wire from="(370,80)" to="(370,360)"/> <wire from="(100,430)" to="(130,430)"/> <wire from="(100,670)" to="(130,670)"/> <wire from="(100,190)" to="(130,190)"/> <wire from="(970,80)" to="(970,120)"/> <wire from="(570,420)" to="(570,850)"/> <wire from="(620,80)" to="(620,180)"/> <wire from="(160,660)" to="(180,660)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(160,420)" to="(180,420)"/> <wire from="(390,580)" to="(400,580)"/> <wire from="(390,340)" to="(400,340)"/> <wire from="(490,520)" to="(500,520)"/> <wire from="(490,280)" to="(500,280)"/> <wire from="(870,540)" to="(870,600)"/> <wire from="(470,120)" to="(470,300)"/> <wire from="(920,540)" to="(920,660)"/> <wire from="(920,300)" to="(920,420)"/> <wire from="(370,600)" to="(370,660)"/> <wire from="(790,100)" to="(800,100)"/> <wire from="(470,540)" to="(470,600)"/> <wire from="(890,760)" to="(900,760)"/> <wire from="(470,300)" to="(470,360)"/> <wire from="(890,520)" to="(900,520)"/> <wire from="(670,540)" to="(670,850)"/> <wire from="(320,180)" to="(320,300)"/> <wire from="(320,420)" to="(320,540)"/> <wire from="(320,660)" to="(320,780)"/> <wire from="(490,560)" to="(690,560)"/> <wire from="(220,720)" to="(220,850)"/> <wire from="(840,800)" to="(890,800)"/> <wire from="(840,560)" to="(890,560)"/> <wire from="(440,560)" to="(490,560)"/> <wire from="(870,780)" to="(870,850)"/> <wire from="(840,320)" to="(940,320)"/> <wire from="(940,740)" to="(1040,740)"/> <wire from="(540,260)" to="(640,260)"/> <wire from="(540,740)" to="(640,740)"/> <wire from="(540,500)" to="(640,500)"/> <wire from="(640,440)" to="(740,440)"/> <wire from="(640,680)" to="(740,680)"/> <wire from="(670,80)" to="(670,300)"/> <wire from="(340,140)" to="(440,140)"/> <wire from="(520,80)" to="(520,120)"/> <wire from="(440,520)" to="(450,520)"/> <wire from="(640,200)" to="(840,200)"/> <wire from="(440,760)" to="(450,760)"/> <wire from="(160,380)" to="(240,380)"/> <wire from="(920,720)" to="(920,780)"/> <wire from="(340,100)" to="(350,100)"/> <wire from="(770,120)" to="(770,240)"/> <wire from="(620,180)" to="(620,240)"/> <wire from="(720,660)" to="(720,850)"/> <wire from="(620,660)" to="(620,720)"/> <wire from="(620,420)" to="(620,480)"/> <wire from="(940,700)" to="(950,700)"/> <wire from="(320,120)" to="(320,180)"/> <wire from="(840,520)" to="(850,520)"/> <wire from="(840,280)" to="(850,280)"/> <wire from="(420,540)" to="(420,600)"/> <wire from="(520,240)" to="(520,300)"/> <wire from="(840,760)" to="(850,760)"/> <wire from="(640,640)" to="(650,640)"/> <wire from="(160,140)" to="(290,140)"/> <wire from="(620,240)" to="(620,420)"/> <wire from="(620,480)" to="(620,660)"/> <wire from="(540,220)" to="(550,220)"/> <wire from="(540,700)" to="(550,700)"/> <wire from="(180,540)" to="(180,600)"/> <wire from="(540,460)" to="(550,460)"/> <wire from="(180,300)" to="(180,360)"/> <wire from="(440,800)" to="(640,800)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(640,400)" to="(650,400)"/> <wire from="(420,780)" to="(420,850)"/> <wire from="(990,200)" to="(1040,200)"/> <wire from="(990,680)" to="(1040,680)"/> <wire from="(790,560)" to="(840,560)"/> <wire from="(790,320)" to="(840,320)"/> <wire from="(790,800)" to="(840,800)"/> <wire from="(890,740)" to="(940,740)"/> <wire from="(590,440)" to="(640,440)"/> <wire from="(490,740)" to="(540,740)"/> <wire from="(290,140)" to="(340,140)"/> <wire from="(820,780)" to="(820,850)"/> <wire from="(160,620)" to="(390,620)"/> <wire from="(290,380)" to="(390,380)"/> <wire from="(100,370)" to="(130,370)"/> <wire from="(100,610)" to="(130,610)"/> <wire from="(100,130)" to="(130,130)"/> <wire from="(870,80)" to="(870,120)"/> <wire from="(920,80)" to="(920,180)"/> <wire from="(160,600)" to="(180,600)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,360)" to="(180,360)"/> <wire from="(470,80)" to="(470,120)"/> <wire from="(520,480)" to="(520,600)"/> <wire from="(870,720)" to="(870,780)"/> <wire from="(490,700)" to="(500,700)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(290,340)" to="(300,340)"/> <wire from="(820,540)" to="(820,660)"/> <wire from="(990,160)" to="(1000,160)"/> <wire from="(990,640)" to="(1000,640)"/> <wire from="(790,280)" to="(800,280)"/> <wire from="(790,760)" to="(800,760)"/> <wire from="(790,520)" to="(800,520)"/> <wire from="(890,700)" to="(900,700)"/> <wire from="(720,420)" to="(720,660)"/> <wire from="(590,400)" to="(600,400)"/> <wire from="(940,200)" to="(990,200)"/> <wire from="(940,680)" to="(990,680)"/> <wire from="(740,320)" to="(790,320)"/> <wire from="(520,720)" to="(520,850)"/> <wire from="(770,780)" to="(770,850)"/> <wire from="(240,380)" to="(290,380)"/> <wire from="(940,440)" to="(1040,440)"/> <wire from="(540,200)" to="(640,200)"/> <wire from="(340,800)" to="(440,800)"/> <wire from="(340,560)" to="(440,560)"/> <wire from="(440,500)" to="(540,500)"/> <wire from="(220,80)" to="(220,360)"/> <wire from="(420,80)" to="(420,120)"/> <wire from="(340,320)" to="(490,320)"/> <wire from="(820,480)" to="(820,540)"/> <wire from="(440,460)" to="(450,460)"/> <wire from="(160,560)" to="(240,560)"/> <wire from="(920,660)" to="(920,720)"/> <wire from="(340,280)" to="(350,280)"/> <wire from="(340,760)" to="(350,760)"/> <wire from="(770,300)" to="(770,420)"/> <wire from="(770,540)" to="(770,660)"/> <wire from="(340,520)" to="(350,520)"/> <wire from="(240,340)" to="(250,340)"/> <wire from="(840,500)" to="(1040,500)"/> <wire from="(370,360)" to="(370,600)"/> <wire from="(970,660)" to="(970,780)"/> <wire from="(940,400)" to="(950,400)"/> <wire from="(940,640)" to="(950,640)"/> <wire from="(940,160)" to="(950,160)"/> <wire from="(820,300)" to="(820,480)"/> <wire from="(840,460)" to="(850,460)"/> <wire from="(420,480)" to="(420,540)"/> <wire from="(520,180)" to="(520,240)"/> <wire from="(270,360)" to="(270,480)"/> <wire from="(160,320)" to="(290,320)"/> <wire from="(160,800)" to="(290,800)"/> <wire from="(740,280)" to="(750,280)"/> <wire from="(540,160)" to="(550,160)"/> <wire from="(180,480)" to="(180,540)"/> <wire from="(180,240)" to="(180,300)"/> <wire from="(180,720)" to="(180,780)"/> <wire from="(990,380)" to="(1040,380)"/> <wire from="(990,140)" to="(1040,140)"/> <wire from="(990,620)" to="(1040,620)"/> <wire from="(790,500)" to="(840,500)"/> <wire from="(320,780)" to="(320,850)"/> <wire from="(890,440)" to="(940,440)"/> <wire from="(890,680)" to="(940,680)"/> <wire from="(890,200)" to="(940,200)"/> <wire from="(690,320)" to="(740,320)"/> <wire from="(470,720)" to="(470,850)"/> <wire from="(290,320)" to="(340,320)"/> <wire from="(290,800)" to="(340,800)"/> <wire from="(290,560)" to="(340,560)"/> <wire from="(790,740)" to="(890,740)"/> <wire from="(690,560)" to="(790,560)"/> <wire from="(390,740)" to="(490,740)"/> <wire from="(490,440)" to="(590,440)"/> <wire from="(770,80)" to="(770,120)"/> <wire from="(100,790)" to="(130,790)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(100,550)" to="(130,550)"/> <wire from="(820,80)" to="(820,180)"/> <wire from="(490,680)" to="(640,680)"/> <wire from="(160,540)" to="(180,540)"/> <wire from="(160,300)" to="(180,300)"/> <wire from="(160,780)" to="(180,780)"/> <wire from="(770,720)" to="(770,780)"/> <wire from="(270,120)" to="(270,300)"/> <wire from="(390,700)" to="(400,700)"/> <wire from="(490,400)" to="(500,400)"/> <wire from="(870,660)" to="(870,720)"/> <wire from="(490,640)" to="(500,640)"/> <wire from="(970,600)" to="(970,660)"/> <wire from="(970,120)" to="(970,180)"/> <wire from="(290,520)" to="(300,520)"/> <wire from="(290,760)" to="(300,760)"/> <wire from="(290,280)" to="(300,280)"/> <wire from="(720,300)" to="(720,420)"/> <wire from="(920,420)" to="(920,540)"/> <wire from="(920,180)" to="(920,300)"/> <wire from="(770,240)" to="(770,300)"/> <wire from="(770,480)" to="(770,540)"/> <wire from="(270,300)" to="(270,360)"/> <wire from="(990,100)" to="(1000,100)"/> <wire from="(990,580)" to="(1000,580)"/> <wire from="(990,340)" to="(1000,340)"/> <wire from="(790,220)" to="(800,220)"/> <wire from="(970,180)" to="(970,360)"/> <wire from="(790,700)" to="(800,700)"/> <wire from="(790,460)" to="(800,460)"/> <wire from="(890,640)" to="(900,640)"/> <wire from="(220,360)" to="(220,480)"/> <wire from="(890,160)" to="(900,160)"/> <wire from="(890,400)" to="(900,400)"/> <wire from="(470,660)" to="(470,720)"/> <wire from="(320,300)" to="(320,420)"/> <wire from="(690,280)" to="(700,280)"/> <wire from="(690,520)" to="(700,520)"/> <wire from="(320,540)" to="(320,660)"/> <comp lib="0" loc="(750,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(220,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1040,800)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(840,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT11"/> </comp> <comp lib="0" loc="(1040,740)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(540,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(720,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="5"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(130,610)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT6"/> </comp> <comp lib="0" loc="(340,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT0"/> </comp> <comp lib="0" loc="(890,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(850,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,310)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(420,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(540,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,370)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT3"/> </comp> <comp lib="0" loc="(590,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,500)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(550,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,680)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(650,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,550)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(130,790)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(450,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,670)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(900,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,730)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT10"/> </comp> <comp lib="0" loc="(290,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT8"/> </comp> <comp lib="0" loc="(470,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(450,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT9"/> </comp> <comp lib="0" loc="(850,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,620)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(840,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(390,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,440)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(790,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(240,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(300,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(300,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(700,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(770,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(500,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,550)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT7"/> </comp> <comp lib="0" loc="(450,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(800,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT5"/> </comp> <comp lib="0" loc="(550,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,560)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(690,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(270,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(940,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,320)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(540,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT2"/> </comp> <comp lib="1" loc="(130,250)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(390,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(920,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(540,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,260)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(800,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,140)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(870,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(990,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(570,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1040,200)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(550,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(300,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(520,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(390,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(840,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(320,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(500,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(550,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(700,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(670,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(740,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(290,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,190)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(240,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT4"/> </comp> <comp lib="0" loc="(840,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(620,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(640,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,380)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(970,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(890,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(990,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(240,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(750,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT1"/> </comp> <comp lib="0" loc="(890,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(370,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(640,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(340,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,130)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(340,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(300,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(820,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(940,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,430)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(300,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(573,42)" name="Text"> <a name="text" val="RED"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(550,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,730)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(240,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,490)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,700)" name="Ground"> <a name="facing" val="east"/> </comp> </circuit> <circuit name="SEL16x12_G"> <a name="circuit" val="SEL16x12_G"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M133,141 Q137,151 141,141" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#1aff43" height="180" stroke="#000000" stroke-width="2" width="170" x="50" y="140"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="174">PCLK</text> <circ-port height="8" pin="100,40" width="8" x="46" y="166"/> <circ-port height="10" pin="100,130" width="10" x="215" y="195"/> <circ-port height="10" pin="100,190" width="10" x="215" y="205"/> <circ-port height="10" pin="100,250" width="10" x="215" y="215"/> <circ-port height="10" pin="100,310" width="10" x="215" y="225"/> <circ-port height="10" pin="100,370" width="10" x="215" y="235"/> <circ-port height="10" pin="100,430" width="10" x="215" y="245"/> <circ-port height="10" pin="100,490" width="10" x="215" y="255"/> <circ-port height="10" pin="100,550" width="10" x="215" y="265"/> <circ-port height="10" pin="100,610" width="10" x="215" y="275"/> <circ-port height="10" pin="100,670" width="10" x="215" y="285"/> <circ-port height="10" pin="100,730" width="10" x="215" y="295"/> <circ-port height="10" pin="100,790" width="10" x="215" y="305"/> <circ-port height="8" pin="220,850" width="8" x="206" y="316"/> <circ-port height="8" pin="270,850" width="8" x="196" y="316"/> <circ-port height="8" pin="320,850" width="8" x="186" y="316"/> <circ-port height="8" pin="370,850" width="8" x="176" y="316"/> <circ-port height="8" pin="420,850" width="8" x="166" y="316"/> <circ-port height="8" pin="470,850" width="8" x="156" y="316"/> <circ-port height="8" pin="520,850" width="8" x="146" y="316"/> <circ-port height="8" pin="570,850" width="8" x="136" y="316"/> <circ-port height="8" pin="620,850" width="8" x="126" y="316"/> <circ-port height="8" pin="670,850" width="8" x="116" y="316"/> <circ-port height="8" pin="720,850" width="8" x="106" y="316"/> <circ-port height="8" pin="770,850" width="8" x="96" y="316"/> <circ-port height="8" pin="820,850" width="8" x="86" y="316"/> <circ-port height="8" pin="870,850" width="8" x="76" y="316"/> <circ-port height="8" pin="920,850" width="8" x="66" y="316"/> <circ-port height="8" pin="970,850" width="8" x="56" y="316"/> <circ-anchor facing="east" height="6" width="6" x="217" y="137"/> </appear> <wire from="(270,780)" to="(270,850)"/> <wire from="(740,500)" to="(790,500)"/> <wire from="(540,380)" to="(590,380)"/> <wire from="(640,320)" to="(690,320)"/> <wire from="(790,260)" to="(1040,260)"/> <wire from="(240,800)" to="(290,800)"/> <wire from="(240,560)" to="(290,560)"/> <wire from="(840,200)" to="(940,200)"/> <wire from="(840,440)" to="(940,440)"/> <wire from="(840,680)" to="(940,680)"/> <wire from="(340,740)" to="(440,740)"/> <wire from="(440,680)" to="(540,680)"/> <wire from="(690,560)" to="(990,560)"/> <wire from="(240,320)" to="(340,320)"/> <wire from="(720,80)" to="(720,120)"/> <wire from="(320,80)" to="(320,120)"/> <wire from="(440,440)" to="(590,440)"/> <wire from="(920,660)" to="(920,850)"/> <wire from="(440,400)" to="(450,400)"/> <wire from="(540,620)" to="(740,620)"/> <wire from="(440,640)" to="(450,640)"/> <wire from="(540,140)" to="(740,140)"/> <wire from="(100,40)" to="(180,40)"/> <wire from="(670,300)" to="(670,420)"/> <wire from="(420,240)" to="(420,420)"/> <wire from="(240,760)" to="(250,760)"/> <wire from="(340,700)" to="(350,700)"/> <wire from="(520,600)" to="(520,660)"/> <wire from="(240,520)" to="(250,520)"/> <wire from="(240,280)" to="(250,280)"/> <wire from="(970,600)" to="(970,720)"/> <wire from="(220,360)" to="(220,540)"/> <wire from="(420,420)" to="(420,480)"/> <wire from="(840,160)" to="(850,160)"/> <wire from="(840,400)" to="(850,400)"/> <wire from="(420,660)" to="(420,720)"/> <wire from="(840,640)" to="(850,640)"/> <wire from="(520,120)" to="(520,180)"/> <wire from="(160,740)" to="(290,740)"/> <wire from="(740,460)" to="(750,460)"/> <wire from="(180,180)" to="(180,240)"/> <wire from="(540,340)" to="(550,340)"/> <wire from="(540,100)" to="(550,100)"/> <wire from="(180,420)" to="(180,480)"/> <wire from="(540,580)" to="(550,580)"/> <wire from="(180,660)" to="(180,720)"/> <wire from="(640,280)" to="(650,280)"/> <wire from="(220,300)" to="(220,360)"/> <wire from="(990,560)" to="(1040,560)"/> <wire from="(990,320)" to="(1040,320)"/> <wire from="(990,800)" to="(1040,800)"/> <wire from="(790,680)" to="(840,680)"/> <wire from="(790,440)" to="(840,440)"/> <wire from="(690,500)" to="(740,500)"/> <wire from="(220,780)" to="(220,850)"/> <wire from="(590,320)" to="(640,320)"/> <wire from="(390,680)" to="(440,680)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(290,740)" to="(340,740)"/> <wire from="(770,720)" to="(770,850)"/> <wire from="(890,620)" to="(990,620)"/> <wire from="(890,140)" to="(990,140)"/> <wire from="(590,560)" to="(690,560)"/> <wire from="(690,740)" to="(790,740)"/> <wire from="(160,500)" to="(390,500)"/> <wire from="(100,490)" to="(130,490)"/> <wire from="(590,800)" to="(740,800)"/> <wire from="(100,730)" to="(130,730)"/> <wire from="(100,250)" to="(130,250)"/> <wire from="(160,260)" to="(440,260)"/> <wire from="(270,80)" to="(270,120)"/> <wire from="(160,720)" to="(180,720)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,480)" to="(180,480)"/> <wire from="(390,640)" to="(400,640)"/> <wire from="(520,360)" to="(520,480)"/> <wire from="(490,340)" to="(500,340)"/> <wire from="(290,700)" to="(300,700)"/> <wire from="(970,540)" to="(970,600)"/> <wire from="(720,480)" to="(720,600)"/> <wire from="(570,300)" to="(570,360)"/> <wire from="(670,480)" to="(670,540)"/> <wire from="(770,420)" to="(770,480)"/> <wire from="(770,660)" to="(770,720)"/> <wire from="(270,720)" to="(270,780)"/> <wire from="(990,280)" to="(1000,280)"/> <wire from="(990,760)" to="(1000,760)"/> <wire from="(990,520)" to="(1000,520)"/> <wire from="(790,400)" to="(800,400)"/> <wire from="(970,120)" to="(970,300)"/> <wire from="(790,640)" to="(800,640)"/> <wire from="(890,580)" to="(900,580)"/> <wire from="(890,100)" to="(900,100)"/> <wire from="(690,460)" to="(700,460)"/> <wire from="(690,700)" to="(700,700)"/> <wire from="(670,540)" to="(670,720)"/> <wire from="(590,520)" to="(600,520)"/> <wire from="(770,480)" to="(770,660)"/> <wire from="(590,280)" to="(600,280)"/> <wire from="(590,760)" to="(600,760)"/> <wire from="(940,320)" to="(990,320)"/> <wire from="(640,740)" to="(690,740)"/> <wire from="(740,440)" to="(790,440)"/> <wire from="(740,680)" to="(790,680)"/> <wire from="(540,320)" to="(590,320)"/> <wire from="(640,500)" to="(690,500)"/> <wire from="(320,720)" to="(320,850)"/> <wire from="(970,780)" to="(970,850)"/> <wire from="(340,680)" to="(390,680)"/> <wire from="(570,780)" to="(570,850)"/> <wire from="(740,200)" to="(840,200)"/> <wire from="(340,440)" to="(440,440)"/> <wire from="(370,80)" to="(370,300)"/> <wire from="(440,140)" to="(540,140)"/> <wire from="(440,620)" to="(540,620)"/> <wire from="(640,260)" to="(790,260)"/> <wire from="(340,200)" to="(490,200)"/> <wire from="(440,580)" to="(450,580)"/> <wire from="(440,100)" to="(450,100)"/> <wire from="(820,360)" to="(820,420)"/> <wire from="(820,660)" to="(820,850)"/> <wire from="(160,200)" to="(240,200)"/> <wire from="(340,400)" to="(350,400)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(340,640)" to="(350,640)"/> <wire from="(520,300)" to="(520,360)"/> <wire from="(840,380)" to="(1040,380)"/> <wire from="(620,240)" to="(620,300)"/> <wire from="(870,600)" to="(870,720)"/> <wire from="(720,420)" to="(720,480)"/> <wire from="(820,180)" to="(820,360)"/> <wire from="(940,280)" to="(950,280)"/> <wire from="(320,660)" to="(320,720)"/> <wire from="(840,340)" to="(850,340)"/> <wire from="(420,600)" to="(420,660)"/> <wire from="(640,700)" to="(650,700)"/> <wire from="(620,300)" to="(620,480)"/> <wire from="(740,160)" to="(750,160)"/> <wire from="(740,640)" to="(750,640)"/> <wire from="(370,660)" to="(370,780)"/> <wire from="(740,400)" to="(750,400)"/> <wire from="(180,120)" to="(180,180)"/> <wire from="(540,280)" to="(550,280)"/> <wire from="(180,360)" to="(180,420)"/> <wire from="(180,600)" to="(180,660)"/> <wire from="(640,220)" to="(650,220)"/> <wire from="(640,460)" to="(650,460)"/> <wire from="(990,740)" to="(1040,740)"/> <wire from="(790,380)" to="(840,380)"/> <wire from="(890,320)" to="(940,320)"/> <wire from="(690,440)" to="(740,440)"/> <wire from="(590,740)" to="(640,740)"/> <wire from="(590,500)" to="(640,500)"/> <wire from="(390,620)" to="(440,620)"/> <wire from="(670,720)" to="(670,850)"/> <wire from="(160,440)" to="(340,440)"/> <wire from="(160,680)" to="(340,680)"/> <wire from="(790,140)" to="(890,140)"/> <wire from="(890,800)" to="(990,800)"/> <wire from="(180,40)" to="(180,120)"/> <wire from="(490,560)" to="(590,560)"/> <wire from="(490,800)" to="(590,800)"/> <wire from="(270,120)" to="(270,540)"/> <wire from="(100,430)" to="(130,430)"/> <wire from="(100,670)" to="(130,670)"/> <wire from="(100,190)" to="(130,190)"/> <wire from="(970,80)" to="(970,120)"/> <wire from="(220,80)" to="(220,180)"/> <wire from="(620,80)" to="(620,180)"/> <wire from="(160,660)" to="(180,660)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(160,420)" to="(180,420)"/> <wire from="(390,580)" to="(400,580)"/> <wire from="(490,520)" to="(500,520)"/> <wire from="(490,760)" to="(500,760)"/> <wire from="(970,720)" to="(970,780)"/> <wire from="(720,660)" to="(720,780)"/> <wire from="(220,540)" to="(220,780)"/> <wire from="(470,360)" to="(470,540)"/> <wire from="(570,480)" to="(570,540)"/> <wire from="(570,720)" to="(570,780)"/> <wire from="(670,420)" to="(670,480)"/> <wire from="(920,300)" to="(920,420)"/> <wire from="(770,360)" to="(770,420)"/> <wire from="(990,700)" to="(1000,700)"/> <wire from="(370,600)" to="(370,660)"/> <wire from="(870,120)" to="(870,300)"/> <wire from="(790,340)" to="(800,340)"/> <wire from="(790,100)" to="(800,100)"/> <wire from="(890,760)" to="(900,760)"/> <wire from="(890,280)" to="(900,280)"/> <wire from="(690,400)" to="(700,400)"/> <wire from="(570,540)" to="(570,720)"/> <wire from="(820,420)" to="(820,660)"/> <wire from="(320,180)" to="(320,300)"/> <wire from="(320,420)" to="(320,540)"/> <wire from="(420,120)" to="(420,240)"/> <wire from="(590,460)" to="(600,460)"/> <wire from="(590,700)" to="(600,700)"/> <wire from="(470,780)" to="(470,850)"/> <wire from="(740,380)" to="(790,380)"/> <wire from="(740,140)" to="(790,140)"/> <wire from="(540,500)" to="(590,500)"/> <wire from="(540,740)" to="(590,740)"/> <wire from="(440,560)" to="(490,560)"/> <wire from="(440,800)" to="(490,800)"/> <wire from="(340,620)" to="(390,620)"/> <wire from="(870,780)" to="(870,850)"/> <wire from="(620,720)" to="(620,850)"/> <wire from="(940,500)" to="(1040,500)"/> <wire from="(540,260)" to="(640,260)"/> <wire from="(640,200)" to="(740,200)"/> <wire from="(640,680)" to="(740,680)"/> <wire from="(670,80)" to="(670,300)"/> <wire from="(340,140)" to="(440,140)"/> <wire from="(240,200)" to="(340,200)"/> <wire from="(740,620)" to="(890,620)"/> <wire from="(570,80)" to="(570,180)"/> <wire from="(520,80)" to="(520,120)"/> <wire from="(440,520)" to="(450,520)"/> <wire from="(440,760)" to="(450,760)"/> <wire from="(160,380)" to="(240,380)"/> <wire from="(340,100)" to="(350,100)"/> <wire from="(340,580)" to="(350,580)"/> <wire from="(770,120)" to="(770,240)"/> <wire from="(620,180)" to="(620,240)"/> <wire from="(620,660)" to="(620,720)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(720,120)" to="(720,180)"/> <wire from="(720,600)" to="(720,660)"/> <wire from="(720,360)" to="(720,420)"/> <wire from="(940,460)" to="(950,460)"/> <wire from="(320,120)" to="(320,180)"/> <wire from="(320,600)" to="(320,660)"/> <wire from="(420,540)" to="(420,600)"/> <wire from="(520,240)" to="(520,300)"/> <wire from="(640,640)" to="(650,640)"/> <wire from="(160,620)" to="(290,620)"/> <wire from="(160,140)" to="(290,140)"/> <wire from="(740,100)" to="(750,100)"/> <wire from="(740,580)" to="(750,580)"/> <wire from="(740,340)" to="(750,340)"/> <wire from="(620,480)" to="(620,660)"/> <wire from="(540,220)" to="(550,220)"/> <wire from="(180,540)" to="(180,600)"/> <wire from="(540,700)" to="(550,700)"/> <wire from="(970,300)" to="(970,540)"/> <wire from="(720,180)" to="(720,360)"/> <wire from="(180,300)" to="(180,360)"/> <wire from="(540,460)" to="(550,460)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(420,780)" to="(420,850)"/> <wire from="(590,200)" to="(640,200)"/> <wire from="(390,800)" to="(440,800)"/> <wire from="(390,560)" to="(440,560)"/> <wire from="(490,260)" to="(540,260)"/> <wire from="(290,140)" to="(340,140)"/> <wire from="(290,620)" to="(340,620)"/> <wire from="(790,320)" to="(890,320)"/> <wire from="(890,740)" to="(990,740)"/> <wire from="(590,440)" to="(690,440)"/> <wire from="(100,370)" to="(130,370)"/> <wire from="(100,610)" to="(130,610)"/> <wire from="(100,130)" to="(130,130)"/> <wire from="(870,80)" to="(870,120)"/> <wire from="(920,80)" to="(920,180)"/> <wire from="(390,320)" to="(540,320)"/> <wire from="(160,600)" to="(180,600)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,360)" to="(180,360)"/> <wire from="(390,520)" to="(400,520)"/> <wire from="(390,280)" to="(400,280)"/> <wire from="(520,480)" to="(520,600)"/> <wire from="(390,760)" to="(400,760)"/> <wire from="(870,720)" to="(870,780)"/> <wire from="(490,220)" to="(500,220)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(290,580)" to="(300,580)"/> <wire from="(570,420)" to="(570,480)"/> <wire from="(770,300)" to="(770,360)"/> <wire from="(370,540)" to="(370,600)"/> <wire from="(790,280)" to="(800,280)"/> <wire from="(890,700)" to="(900,700)"/> <wire from="(220,180)" to="(220,300)"/> <wire from="(590,400)" to="(600,400)"/> <wire from="(590,160)" to="(600,160)"/> <wire from="(370,780)" to="(370,850)"/> <wire from="(540,200)" to="(590,200)"/> <wire from="(440,260)" to="(490,260)"/> <wire from="(520,720)" to="(520,850)"/> <wire from="(340,560)" to="(390,560)"/> <wire from="(340,320)" to="(390,320)"/> <wire from="(940,440)" to="(1040,440)"/> <wire from="(940,680)" to="(1040,680)"/> <wire from="(940,200)" to="(1040,200)"/> <wire from="(540,680)" to="(640,680)"/> <wire from="(440,500)" to="(540,500)"/> <wire from="(440,740)" to="(540,740)"/> <wire from="(740,800)" to="(890,800)"/> <wire from="(470,80)" to="(470,180)"/> <wire from="(420,80)" to="(420,120)"/> <wire from="(440,220)" to="(450,220)"/> <wire from="(440,460)" to="(450,460)"/> <wire from="(570,180)" to="(570,300)"/> <wire from="(440,700)" to="(450,700)"/> <wire from="(920,420)" to="(920,480)"/> <wire from="(160,800)" to="(240,800)"/> <wire from="(160,320)" to="(240,320)"/> <wire from="(160,560)" to="(240,560)"/> <wire from="(340,280)" to="(350,280)"/> <wire from="(340,520)" to="(350,520)"/> <wire from="(520,660)" to="(520,720)"/> <wire from="(240,340)" to="(250,340)"/> <wire from="(470,540)" to="(470,780)"/> <wire from="(940,400)" to="(950,400)"/> <wire from="(940,640)" to="(950,640)"/> <wire from="(940,160)" to="(950,160)"/> <wire from="(320,540)" to="(320,600)"/> <wire from="(920,480)" to="(920,660)"/> <wire from="(420,720)" to="(420,780)"/> <wire from="(420,480)" to="(420,540)"/> <wire from="(520,180)" to="(520,240)"/> <wire from="(270,600)" to="(270,720)"/> <wire from="(740,760)" to="(750,760)"/> <wire from="(540,160)" to="(550,160)"/> <wire from="(180,480)" to="(180,540)"/> <wire from="(540,640)" to="(550,640)"/> <wire from="(180,240)" to="(180,300)"/> <wire from="(180,720)" to="(180,780)"/> <wire from="(470,240)" to="(470,360)"/> <wire from="(990,140)" to="(1040,140)"/> <wire from="(990,620)" to="(1040,620)"/> <wire from="(240,380)" to="(490,380)"/> <wire from="(390,500)" to="(440,500)"/> <wire from="(490,200)" to="(540,200)"/> <wire from="(290,560)" to="(340,560)"/> <wire from="(720,780)" to="(720,850)"/> <wire from="(790,740)" to="(890,740)"/> <wire from="(690,320)" to="(790,320)"/> <wire from="(290,800)" to="(390,800)"/> <wire from="(870,300)" to="(870,600)"/> <wire from="(100,790)" to="(130,790)"/> <wire from="(770,80)" to="(770,120)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(100,550)" to="(130,550)"/> <wire from="(590,380)" to="(740,380)"/> <wire from="(790,500)" to="(940,500)"/> <wire from="(820,80)" to="(820,180)"/> <wire from="(160,540)" to="(180,540)"/> <wire from="(160,300)" to="(180,300)"/> <wire from="(160,780)" to="(180,780)"/> <wire from="(390,460)" to="(400,460)"/> <wire from="(490,160)" to="(500,160)"/> <wire from="(370,300)" to="(370,480)"/> <wire from="(290,520)" to="(300,520)"/> <wire from="(290,760)" to="(300,760)"/> <wire from="(570,360)" to="(570,420)"/> <wire from="(920,180)" to="(920,300)"/> <wire from="(770,240)" to="(770,300)"/> <wire from="(270,540)" to="(270,600)"/> <wire from="(990,100)" to="(1000,100)"/> <wire from="(370,480)" to="(370,540)"/> <wire from="(990,580)" to="(1000,580)"/> <wire from="(790,220)" to="(800,220)"/> <wire from="(790,700)" to="(800,700)"/> <wire from="(790,460)" to="(800,460)"/> <wire from="(470,180)" to="(470,240)"/> <wire from="(690,280)" to="(700,280)"/> <wire from="(320,300)" to="(320,420)"/> <wire from="(690,520)" to="(700,520)"/> <wire from="(590,340)" to="(600,340)"/> <comp lib="0" loc="(990,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(520,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(950,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT5"/> </comp> <comp lib="0" loc="(800,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,130)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(550,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(390,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,200)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(240,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(290,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(670,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(500,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(250,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(950,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,740)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(290,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(570,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1000,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(270,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(600,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(240,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,730)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(450,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(290,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(820,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(550,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(750,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT3"/> </comp> <comp lib="0" loc="(340,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,680)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(540,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT0"/> </comp> <comp lib="0" loc="(590,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,730)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT10"/> </comp> <comp lib="0" loc="(290,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,500)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,260)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(600,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(700,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,440)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(500,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(320,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(400,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,310)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,550)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT7"/> </comp> <comp lib="0" loc="(800,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT8"/> </comp> <comp lib="0" loc="(300,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(370,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(540,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,190)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(300,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,380)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,250)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(970,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="0"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(575,43)" name="Text"> <a name="text" val="GREEN"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(390,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(920,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(790,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(990,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,550)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(420,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(490,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(130,490)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,800)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1000,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(620,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(690,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(340,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(800,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,620)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(550,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT11"/> </comp> <comp lib="0" loc="(870,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(440,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(750,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(700,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,790)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(240,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(300,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(720,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(850,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT6"/> </comp> <comp lib="0" loc="(740,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,610)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(590,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,370)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(440,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(390,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(470,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(990,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT1"/> </comp> <comp lib="0" loc="(250,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(220,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(650,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(800,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(440,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT2"/> </comp> <comp lib="1" loc="(130,670)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(490,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(240,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT4"/> </comp> <comp lib="0" loc="(840,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(600,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT9"/> </comp> <comp lib="0" loc="(450,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(600,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,320)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(690,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,560)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(540,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(240,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,140)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(700,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,430)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(600,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(850,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,460)" name="Ground"> <a name="facing" val="east"/> </comp> </circuit> <circuit name="SEL16x12_B"> <a name="circuit" val="SEL16x12_B"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M143,160 Q147,170 151,160" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#19b7ff" height="180" stroke="#000000" stroke-width="2" width="170" x="60" y="160"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="194">PCLK</text> <circ-port height="8" pin="100,40" width="8" x="56" y="186"/> <circ-port height="10" pin="100,130" width="10" x="225" y="215"/> <circ-port height="10" pin="100,190" width="10" x="225" y="225"/> <circ-port height="10" pin="100,250" width="10" x="225" y="235"/> <circ-port height="10" pin="100,310" width="10" x="225" y="245"/> <circ-port height="10" pin="100,370" width="10" x="225" y="255"/> <circ-port height="10" pin="100,430" width="10" x="225" y="265"/> <circ-port height="10" pin="100,490" width="10" x="225" y="275"/> <circ-port height="10" pin="100,550" width="10" x="225" y="285"/> <circ-port height="10" pin="100,610" width="10" x="225" y="295"/> <circ-port height="10" pin="100,670" width="10" x="225" y="305"/> <circ-port height="10" pin="100,730" width="10" x="225" y="315"/> <circ-port height="10" pin="100,790" width="10" x="225" y="325"/> <circ-port height="8" pin="220,850" width="8" x="216" y="336"/> <circ-port height="8" pin="270,850" width="8" x="206" y="336"/> <circ-port height="8" pin="320,850" width="8" x="196" y="336"/> <circ-port height="8" pin="370,850" width="8" x="186" y="336"/> <circ-port height="8" pin="420,850" width="8" x="176" y="336"/> <circ-port height="8" pin="470,850" width="8" x="166" y="336"/> <circ-port height="8" pin="520,850" width="8" x="156" y="336"/> <circ-port height="8" pin="570,850" width="8" x="146" y="336"/> <circ-port height="8" pin="620,850" width="8" x="136" y="336"/> <circ-port height="8" pin="670,850" width="8" x="126" y="336"/> <circ-port height="8" pin="720,850" width="8" x="116" y="336"/> <circ-port height="8" pin="770,850" width="8" x="106" y="336"/> <circ-port height="8" pin="820,850" width="8" x="96" y="336"/> <circ-port height="8" pin="870,850" width="8" x="86" y="336"/> <circ-port height="8" pin="920,850" width="8" x="76" y="336"/> <circ-port height="8" pin="970,850" width="8" x="66" y="336"/> <circ-anchor facing="east" height="6" width="6" x="227" y="157"/> </appear> <wire from="(940,140)" to="(990,140)"/> <wire from="(270,780)" to="(270,850)"/> <wire from="(840,440)" to="(890,440)"/> <wire from="(840,200)" to="(890,200)"/> <wire from="(840,680)" to="(890,680)"/> <wire from="(440,440)" to="(490,440)"/> <wire from="(440,680)" to="(490,680)"/> <wire from="(820,720)" to="(820,850)"/> <wire from="(540,620)" to="(640,620)"/> <wire from="(420,80)" to="(420,240)"/> <wire from="(320,80)" to="(320,120)"/> <wire from="(340,740)" to="(490,740)"/> <wire from="(340,500)" to="(490,500)"/> <wire from="(820,180)" to="(820,240)"/> <wire from="(920,660)" to="(920,850)"/> <wire from="(440,400)" to="(450,400)"/> <wire from="(820,660)" to="(820,720)"/> <wire from="(440,640)" to="(450,640)"/> <wire from="(920,120)" to="(920,180)"/> <wire from="(100,40)" to="(180,40)"/> <wire from="(670,540)" to="(670,660)"/> <wire from="(670,300)" to="(670,420)"/> <wire from="(420,240)" to="(420,420)"/> <wire from="(160,260)" to="(240,260)"/> <wire from="(340,460)" to="(350,460)"/> <wire from="(770,480)" to="(770,600)"/> <wire from="(340,700)" to="(350,700)"/> <wire from="(770,240)" to="(770,360)"/> <wire from="(520,600)" to="(520,660)"/> <wire from="(970,120)" to="(970,240)"/> <wire from="(820,240)" to="(820,420)"/> <wire from="(940,100)" to="(950,100)"/> <wire from="(320,480)" to="(320,540)"/> <wire from="(320,720)" to="(320,780)"/> <wire from="(840,160)" to="(850,160)"/> <wire from="(840,400)" to="(850,400)"/> <wire from="(840,640)" to="(850,640)"/> <wire from="(180,180)" to="(180,240)"/> <wire from="(180,420)" to="(180,480)"/> <wire from="(540,580)" to="(550,580)"/> <wire from="(180,660)" to="(180,720)"/> <wire from="(790,680)" to="(840,680)"/> <wire from="(790,440)" to="(840,440)"/> <wire from="(890,140)" to="(940,140)"/> <wire from="(390,680)" to="(440,680)"/> <wire from="(160,500)" to="(340,500)"/> <wire from="(160,740)" to="(340,740)"/> <wire from="(890,620)" to="(990,620)"/> <wire from="(590,560)" to="(690,560)"/> <wire from="(590,320)" to="(690,320)"/> <wire from="(690,500)" to="(790,500)"/> <wire from="(690,740)" to="(790,740)"/> <wire from="(690,260)" to="(790,260)"/> <wire from="(100,490)" to="(130,490)"/> <wire from="(590,800)" to="(740,800)"/> <wire from="(100,730)" to="(130,730)"/> <wire from="(100,250)" to="(130,250)"/> <wire from="(370,80)" to="(370,240)"/> <wire from="(270,80)" to="(270,120)"/> <wire from="(490,140)" to="(640,140)"/> <wire from="(160,720)" to="(180,720)"/> <wire from="(720,80)" to="(720,180)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,480)" to="(180,480)"/> <wire from="(390,640)" to="(400,640)"/> <wire from="(490,100)" to="(500,100)"/> <wire from="(870,120)" to="(870,180)"/> <wire from="(870,600)" to="(870,660)"/> <wire from="(570,300)" to="(570,360)"/> <wire from="(670,480)" to="(670,540)"/> <wire from="(670,240)" to="(670,300)"/> <wire from="(770,420)" to="(770,480)"/> <wire from="(770,660)" to="(770,720)"/> <wire from="(790,400)" to="(800,400)"/> <wire from="(790,640)" to="(800,640)"/> <wire from="(470,120)" to="(470,180)"/> <wire from="(720,300)" to="(720,540)"/> <wire from="(720,540)" to="(720,780)"/> <wire from="(890,580)" to="(900,580)"/> <wire from="(890,100)" to="(900,100)"/> <wire from="(690,460)" to="(700,460)"/> <wire from="(690,700)" to="(700,700)"/> <wire from="(690,220)" to="(700,220)"/> <wire from="(590,520)" to="(600,520)"/> <wire from="(590,280)" to="(600,280)"/> <wire from="(590,760)" to="(600,760)"/> <wire from="(540,320)" to="(590,320)"/> <wire from="(640,260)" to="(690,260)"/> <wire from="(340,680)" to="(390,680)"/> <wire from="(570,780)" to="(570,850)"/> <wire from="(940,560)" to="(1040,560)"/> <wire from="(940,320)" to="(1040,320)"/> <wire from="(740,200)" to="(840,200)"/> <wire from="(340,440)" to="(440,440)"/> <wire from="(620,80)" to="(620,120)"/> <wire from="(240,260)" to="(390,260)"/> <wire from="(670,80)" to="(670,180)"/> <wire from="(340,200)" to="(490,200)"/> <wire from="(570,540)" to="(570,660)"/> <wire from="(340,400)" to="(350,400)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(340,640)" to="(350,640)"/> <wire from="(240,220)" to="(250,220)"/> <wire from="(940,520)" to="(950,520)"/> <wire from="(420,660)" to="(420,850)"/> <wire from="(940,280)" to="(950,280)"/> <wire from="(320,420)" to="(320,480)"/> <wire from="(320,660)" to="(320,720)"/> <wire from="(740,160)" to="(750,160)"/> <wire from="(370,660)" to="(370,780)"/> <wire from="(180,120)" to="(180,180)"/> <wire from="(540,280)" to="(550,280)"/> <wire from="(180,360)" to="(180,420)"/> <wire from="(180,600)" to="(180,660)"/> <wire from="(640,220)" to="(650,220)"/> <wire from="(990,500)" to="(1040,500)"/> <wire from="(990,260)" to="(1040,260)"/> <wire from="(990,740)" to="(1040,740)"/> <wire from="(890,560)" to="(940,560)"/> <wire from="(890,320)" to="(940,320)"/> <wire from="(690,200)" to="(740,200)"/> <wire from="(670,720)" to="(670,850)"/> <wire from="(490,320)" to="(540,320)"/> <wire from="(160,440)" to="(340,440)"/> <wire from="(160,200)" to="(340,200)"/> <wire from="(160,680)" to="(340,680)"/> <wire from="(790,140)" to="(890,140)"/> <wire from="(790,620)" to="(890,620)"/> <wire from="(180,40)" to="(180,120)"/> <wire from="(690,440)" to="(790,440)"/> <wire from="(690,680)" to="(790,680)"/> <wire from="(490,560)" to="(590,560)"/> <wire from="(490,800)" to="(590,800)"/> <wire from="(100,430)" to="(130,430)"/> <wire from="(100,670)" to="(130,670)"/> <wire from="(100,190)" to="(130,190)"/> <wire from="(970,80)" to="(970,120)"/> <wire from="(890,800)" to="(1040,800)"/> <wire from="(370,240)" to="(370,540)"/> <wire from="(160,660)" to="(180,660)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(160,420)" to="(180,420)"/> <wire from="(620,240)" to="(620,360)"/> <wire from="(490,520)" to="(500,520)"/> <wire from="(490,760)" to="(500,760)"/> <wire from="(870,540)" to="(870,600)"/> <wire from="(490,280)" to="(500,280)"/> <wire from="(720,180)" to="(720,300)"/> <wire from="(670,420)" to="(670,480)"/> <wire from="(920,540)" to="(920,660)"/> <wire from="(420,420)" to="(420,660)"/> <wire from="(670,180)" to="(670,240)"/> <wire from="(920,300)" to="(920,420)"/> <wire from="(670,660)" to="(670,720)"/> <wire from="(770,360)" to="(770,420)"/> <wire from="(770,600)" to="(770,660)"/> <wire from="(990,220)" to="(1000,220)"/> <wire from="(990,700)" to="(1000,700)"/> <wire from="(990,460)" to="(1000,460)"/> <wire from="(790,340)" to="(800,340)"/> <wire from="(790,100)" to="(800,100)"/> <wire from="(790,580)" to="(800,580)"/> <wire from="(890,760)" to="(900,760)"/> <wire from="(890,280)" to="(900,280)"/> <wire from="(220,240)" to="(220,360)"/> <wire from="(890,520)" to="(900,520)"/> <wire from="(690,400)" to="(700,400)"/> <wire from="(690,640)" to="(700,640)"/> <wire from="(820,420)" to="(820,660)"/> <wire from="(690,160)" to="(700,160)"/> <wire from="(470,780)" to="(470,850)"/> <wire from="(640,680)" to="(690,680)"/> <wire from="(640,440)" to="(690,440)"/> <wire from="(640,200)" to="(690,200)"/> <wire from="(790,380)" to="(1040,380)"/> <wire from="(870,780)" to="(870,850)"/> <wire from="(540,260)" to="(640,260)"/> <wire from="(540,500)" to="(690,500)"/> <wire from="(540,740)" to="(690,740)"/> <wire from="(220,80)" to="(220,240)"/> <wire from="(920,80)" to="(920,120)"/> <wire from="(570,80)" to="(570,180)"/> <wire from="(340,140)" to="(490,140)"/> <wire from="(320,180)" to="(320,360)"/> <wire from="(160,380)" to="(240,380)"/> <wire from="(340,340)" to="(350,340)"/> <wire from="(340,100)" to="(350,100)"/> <wire from="(340,580)" to="(350,580)"/> <wire from="(770,120)" to="(770,240)"/> <wire from="(870,300)" to="(870,420)"/> <wire from="(620,180)" to="(620,240)"/> <wire from="(970,480)" to="(970,600)"/> <wire from="(320,120)" to="(320,180)"/> <wire from="(320,360)" to="(320,420)"/> <wire from="(320,600)" to="(320,660)"/> <wire from="(520,240)" to="(520,300)"/> <wire from="(160,620)" to="(290,620)"/> <wire from="(520,300)" to="(520,480)"/> <wire from="(160,140)" to="(290,140)"/> <wire from="(640,640)" to="(650,640)"/> <wire from="(340,620)" to="(540,620)"/> <wire from="(540,220)" to="(550,220)"/> <wire from="(180,540)" to="(180,600)"/> <wire from="(540,700)" to="(550,700)"/> <wire from="(180,300)" to="(180,360)"/> <wire from="(540,460)" to="(550,460)"/> <wire from="(470,540)" to="(470,660)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(470,300)" to="(470,420)"/> <wire from="(640,400)" to="(650,400)"/> <wire from="(990,680)" to="(1040,680)"/> <wire from="(340,380)" to="(590,380)"/> <wire from="(590,200)" to="(640,200)"/> <wire from="(590,440)" to="(640,440)"/> <wire from="(590,680)" to="(640,680)"/> <wire from="(490,260)" to="(540,260)"/> <wire from="(490,740)" to="(540,740)"/> <wire from="(490,500)" to="(540,500)"/> <wire from="(290,380)" to="(340,380)"/> <wire from="(290,140)" to="(340,140)"/> <wire from="(290,620)" to="(340,620)"/> <wire from="(970,720)" to="(970,850)"/> <wire from="(790,800)" to="(890,800)"/> <wire from="(890,740)" to="(990,740)"/> <wire from="(890,260)" to="(990,260)"/> <wire from="(890,500)" to="(990,500)"/> <wire from="(390,560)" to="(490,560)"/> <wire from="(390,800)" to="(490,800)"/> <wire from="(100,370)" to="(130,370)"/> <wire from="(100,610)" to="(130,610)"/> <wire from="(100,130)" to="(130,130)"/> <wire from="(870,80)" to="(870,120)"/> <wire from="(220,360)" to="(220,850)"/> <wire from="(160,600)" to="(180,600)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,360)" to="(180,360)"/> <wire from="(470,80)" to="(470,120)"/> <wire from="(390,520)" to="(400,520)"/> <wire from="(520,480)" to="(520,600)"/> <wire from="(390,760)" to="(400,760)"/> <wire from="(870,240)" to="(870,300)"/> <wire from="(490,460)" to="(500,460)"/> <wire from="(870,720)" to="(870,780)"/> <wire from="(490,700)" to="(500,700)"/> <wire from="(870,480)" to="(870,540)"/> <wire from="(490,220)" to="(500,220)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(290,580)" to="(300,580)"/> <wire from="(290,340)" to="(300,340)"/> <wire from="(970,660)" to="(970,720)"/> <wire from="(990,640)" to="(1000,640)"/> <wire from="(790,760)" to="(800,760)"/> <wire from="(470,480)" to="(470,540)"/> <wire from="(890,700)" to="(900,700)"/> <wire from="(890,220)" to="(900,220)"/> <wire from="(470,240)" to="(470,300)"/> <wire from="(890,460)" to="(900,460)"/> <wire from="(470,720)" to="(470,780)"/> <wire from="(590,400)" to="(600,400)"/> <wire from="(590,160)" to="(600,160)"/> <wire from="(590,640)" to="(600,640)"/> <wire from="(940,680)" to="(990,680)"/> <wire from="(840,260)" to="(890,260)"/> <wire from="(840,740)" to="(890,740)"/> <wire from="(370,780)" to="(370,850)"/> <wire from="(740,800)" to="(790,800)"/> <wire from="(540,680)" to="(590,680)"/> <wire from="(440,260)" to="(490,260)"/> <wire from="(520,720)" to="(520,850)"/> <wire from="(770,780)" to="(770,850)"/> <wire from="(340,560)" to="(390,560)"/> <wire from="(340,800)" to="(390,800)"/> <wire from="(240,380)" to="(290,380)"/> <wire from="(940,440)" to="(1040,440)"/> <wire from="(940,200)" to="(1040,200)"/> <wire from="(640,620)" to="(790,620)"/> <wire from="(740,320)" to="(890,320)"/> <wire from="(740,560)" to="(890,560)"/> <wire from="(640,380)" to="(790,380)"/> <wire from="(640,140)" to="(790,140)"/> <wire from="(520,80)" to="(520,240)"/> <wire from="(440,220)" to="(450,220)"/> <wire from="(570,420)" to="(570,540)"/> <wire from="(570,660)" to="(570,780)"/> <wire from="(570,180)" to="(570,300)"/> <wire from="(340,760)" to="(350,760)"/> <wire from="(340,520)" to="(350,520)"/> <wire from="(520,660)" to="(520,720)"/> <wire from="(620,120)" to="(620,180)"/> <wire from="(240,340)" to="(250,340)"/> <wire from="(620,360)" to="(620,420)"/> <wire from="(620,600)" to="(620,660)"/> <wire from="(620,660)" to="(620,850)"/> <wire from="(940,400)" to="(950,400)"/> <wire from="(940,640)" to="(950,640)"/> <wire from="(940,160)" to="(950,160)"/> <wire from="(320,540)" to="(320,600)"/> <wire from="(840,220)" to="(850,220)"/> <wire from="(840,700)" to="(850,700)"/> <wire from="(160,560)" to="(290,560)"/> <wire from="(160,320)" to="(290,320)"/> <wire from="(160,800)" to="(290,800)"/> <wire from="(740,520)" to="(750,520)"/> <wire from="(370,540)" to="(370,660)"/> <wire from="(740,760)" to="(750,760)"/> <wire from="(740,280)" to="(750,280)"/> <wire from="(620,420)" to="(620,600)"/> <wire from="(180,480)" to="(180,540)"/> <wire from="(540,640)" to="(550,640)"/> <wire from="(970,240)" to="(970,480)"/> <wire from="(180,240)" to="(180,300)"/> <wire from="(640,580)" to="(650,580)"/> <wire from="(640,100)" to="(650,100)"/> <wire from="(180,720)" to="(180,780)"/> <wire from="(640,340)" to="(650,340)"/> <wire from="(990,140)" to="(1040,140)"/> <wire from="(990,620)" to="(1040,620)"/> <wire from="(790,260)" to="(840,260)"/> <wire from="(790,740)" to="(840,740)"/> <wire from="(320,780)" to="(320,850)"/> <wire from="(890,440)" to="(940,440)"/> <wire from="(890,680)" to="(940,680)"/> <wire from="(890,200)" to="(940,200)"/> <wire from="(690,560)" to="(740,560)"/> <wire from="(690,320)" to="(740,320)"/> <wire from="(590,380)" to="(640,380)"/> <wire from="(390,260)" to="(440,260)"/> <wire from="(490,680)" to="(540,680)"/> <wire from="(290,800)" to="(340,800)"/> <wire from="(290,560)" to="(340,560)"/> <wire from="(720,780)" to="(720,850)"/> <wire from="(790,500)" to="(890,500)"/> <wire from="(490,440)" to="(590,440)"/> <wire from="(490,200)" to="(590,200)"/> <wire from="(100,790)" to="(130,790)"/> <wire from="(770,80)" to="(770,120)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(100,550)" to="(130,550)"/> <wire from="(820,80)" to="(820,180)"/> <wire from="(160,540)" to="(180,540)"/> <wire from="(160,300)" to="(180,300)"/> <wire from="(160,780)" to="(180,780)"/> <wire from="(770,720)" to="(770,780)"/> <wire from="(270,600)" to="(270,780)"/> <wire from="(270,120)" to="(270,300)"/> <wire from="(390,220)" to="(400,220)"/> <wire from="(270,360)" to="(270,540)"/> <wire from="(870,180)" to="(870,240)"/> <wire from="(490,400)" to="(500,400)"/> <wire from="(870,660)" to="(870,720)"/> <wire from="(490,640)" to="(500,640)"/> <wire from="(870,420)" to="(870,480)"/> <wire from="(490,160)" to="(500,160)"/> <wire from="(970,600)" to="(970,660)"/> <wire from="(290,520)" to="(300,520)"/> <wire from="(290,760)" to="(300,760)"/> <wire from="(290,280)" to="(300,280)"/> <wire from="(570,360)" to="(570,420)"/> <wire from="(920,420)" to="(920,540)"/> <wire from="(920,180)" to="(920,300)"/> <wire from="(270,540)" to="(270,600)"/> <wire from="(270,300)" to="(270,360)"/> <wire from="(990,100)" to="(1000,100)"/> <wire from="(990,580)" to="(1000,580)"/> <wire from="(790,220)" to="(800,220)"/> <wire from="(790,700)" to="(800,700)"/> <wire from="(790,460)" to="(800,460)"/> <wire from="(470,420)" to="(470,480)"/> <wire from="(890,640)" to="(900,640)"/> <wire from="(890,160)" to="(900,160)"/> <wire from="(470,180)" to="(470,240)"/> <wire from="(890,400)" to="(900,400)"/> <wire from="(470,660)" to="(470,720)"/> <wire from="(690,280)" to="(700,280)"/> <wire from="(290,320)" to="(490,320)"/> <wire from="(690,520)" to="(700,520)"/> <wire from="(590,340)" to="(600,340)"/> <comp lib="0" loc="(340,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT5"/> </comp> <comp lib="0" loc="(650,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(970,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(850,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(840,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,140)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(290,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(250,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,730)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT10"/> </comp> <comp lib="0" loc="(500,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,380)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(320,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(750,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(420,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,680)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(750,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(690,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(270,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(340,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT1"/> </comp> <comp lib="0" loc="(550,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,320)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(800,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(870,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(790,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(400,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(370,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(490,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,260)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(690,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,740)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(740,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(400,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT6"/> </comp> <comp lib="1" loc="(130,790)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(550,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(850,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(470,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(700,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,310)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(490,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(650,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,130)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(890,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(220,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1040,800)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(340,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,190)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(790,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(950,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(700,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(240,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(990,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT8"/> </comp> <comp lib="6" loc="(566,44)" name="Text"> <a name="text" val="BLUE"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(820,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(570,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(650,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(990,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(670,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(990,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(720,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(550,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1000,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(640,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT11"/> </comp> <comp lib="0" loc="(840,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT9"/> </comp> <comp lib="0" loc="(700,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,370)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(950,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(790,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(740,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(800,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(390,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(450,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(100,550)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT7"/> </comp> <comp lib="0" loc="(400,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(250,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(290,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,440)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(950,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(700,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(600,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(990,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(700,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,550)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(290,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(990,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(750,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(800,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,610)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT3"/> </comp> <comp lib="0" loc="(400,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(920,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT0"/> </comp> <comp lib="0" loc="(340,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,670)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1040,620)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(390,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT2"/> </comp> <comp lib="0" loc="(500,520)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,250)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(890,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,620)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="1" loc="(130,730)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(950,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(800,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(500,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(490,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(620,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(640,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,490)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(600,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,740)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,500)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1040,200)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(950,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(590,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(900,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(390,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(300,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(890,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(590,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(340,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,580)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(690,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(890,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(520,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(240,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(450,220)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(940,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(350,460)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(540,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,700)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(290,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(1000,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(850,400)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,340)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(690,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(850,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(340,140)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,380)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(500,640)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(840,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,260)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(900,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(350,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(600,760)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(1040,560)" name="Pull Resistor"> <a name="facing" val="west"/> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="output" val="true"/> <a name="label" val="OUT4"/> </comp> <comp lib="0" loc="(540,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(770,850)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(890,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(440,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(690,440)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(790,800)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(940,200)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(130,430)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,280)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(750,160)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(650,100)" name="Ground"> <a name="facing" val="east"/> </comp> <comp lib="0" loc="(690,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(540,500)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(740,320)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,680)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(550,460)" name="Ground"> <a name="facing" val="east"/> </comp> </circuit> <circuit name="PAR_OLD"> <a name="circuit" val="PAR_OLD"/> <a name="clabel" val="PICTURE ADDRESS GEN"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M81,52 Q76,64 72,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ba16ff" height="600" stroke="#000000" stroke-width="2" width="410" x="70" y="50"/> <polyline fill="none" points="70,74 75,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="70,66 76,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="76,67 76,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="71">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="114">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="394">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="234">/W6.2</text> <polyline fill="none" points="76,66 76,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="254">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="135">O8/16</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="334">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="594">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="314">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="615">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="174">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="474">SC/CNT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="154">l1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="254">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="288" y="76">PPU DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="130" y="564">OBJ TILE V. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="280" y="639">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="461" y="554">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="388" y="234">PPU ADDRESS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="208" y="627">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="215">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="515">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="468" y="394">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="454">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="354">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="514">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="294">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="360" y="69">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="334">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="434">TILE H. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="140" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="274">/PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="114">/PA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="294">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="354">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="220" y="69">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="379" y="626">OBJ DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="494">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="154">/PA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="309" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="214">/PA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="275">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="234">/PA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="633">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="314">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="174">/PA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="594">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="194">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="534">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="194">/PA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="468" y="474">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="134">/PA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="94">/PA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="434">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="461" y="534">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="640">7</text> <circ-port height="8" pin="100,50" width="8" x="66" y="66"/> <circ-port height="8" pin="100,140" width="8" x="66" y="466"/> <circ-port height="8" pin="100,180" width="8" x="66" y="626"/> <circ-port height="8" pin="100,240" width="8" x="66" y="386"/> <circ-port height="8" pin="100,290" width="8" x="66" y="146"/> <circ-port height="8" pin="100,340" width="8" x="66" y="606"/> <circ-port height="8" pin="100,390" width="8" x="66" y="486"/> <circ-port height="8" pin="100,450" width="8" x="66" y="306"/> <circ-port height="8" pin="100,510" width="8" x="66" y="426"/> <circ-port height="8" pin="100,580" width="8" x="66" y="366"/> <circ-port height="8" pin="100,670" width="8" x="66" y="126"/> <circ-port height="8" pin="100,730" width="8" x="306" y="646"/> <circ-port height="8" pin="100,770" width="8" x="326" y="646"/> <circ-port height="8" pin="100,810" width="8" x="346" y="646"/> <circ-port height="8" pin="100,850" width="8" x="366" y="646"/> <circ-port height="8" pin="100,890" width="8" x="386" y="646"/> <circ-port height="8" pin="100,930" width="8" x="406" y="646"/> <circ-port height="8" pin="100,970" width="8" x="426" y="646"/> <circ-port height="8" pin="100,1010" width="8" x="446" y="646"/> <circ-port height="8" pin="100,1120" width="8" x="136" y="646"/> <circ-port height="8" pin="100,1170" width="8" x="156" y="646"/> <circ-port height="8" pin="100,1220" width="8" x="176" y="646"/> <circ-port height="8" pin="100,1270" width="8" x="196" y="646"/> <circ-port height="8" pin="100,1320" width="8" x="216" y="646"/> <circ-port height="8" pin="100,1370" width="8" x="236" y="646"/> <circ-port height="8" pin="100,1420" width="8" x="256" y="646"/> <circ-port height="8" pin="100,1470" width="8" x="276" y="646"/> <circ-port height="8" pin="100,1610" width="8" x="66" y="266"/> <circ-port height="8" pin="100,1670" width="8" x="66" y="206"/> <circ-port height="8" pin="100,1740" width="8" x="66" y="246"/> <circ-port height="8" pin="100,1800" width="8" x="66" y="226"/> <circ-port height="8" pin="100,1860" width="8" x="66" y="86"/> <circ-port height="8" pin="100,1920" width="8" x="66" y="106"/> <circ-port height="8" pin="100,2000" width="8" x="216" y="46"/> <circ-port height="8" pin="100,2030" width="8" x="236" y="46"/> <circ-port height="8" pin="100,2060" width="8" x="256" y="46"/> <circ-port height="8" pin="100,2090" width="8" x="276" y="46"/> <circ-port height="8" pin="100,2120" width="8" x="296" y="46"/> <circ-port height="8" pin="100,2150" width="8" x="316" y="46"/> <circ-port height="8" pin="100,2180" width="8" x="336" y="46"/> <circ-port height="8" pin="100,2210" width="8" x="356" y="46"/> <circ-port height="8" pin="100,2270" width="8" x="66" y="166"/> <circ-port height="8" pin="100,2310" width="8" x="66" y="186"/> <circ-port height="8" pin="100,2350" width="8" x="66" y="406"/> <circ-port height="10" pin="3100,590" width="10" x="475" y="85"/> <circ-port height="10" pin="3100,790" width="10" x="475" y="105"/> <circ-port height="10" pin="3100,990" width="10" x="475" y="125"/> <circ-port height="10" pin="3100,1190" width="10" x="475" y="145"/> <circ-port height="10" pin="3100,1390" width="10" x="475" y="165"/> <circ-port height="10" pin="3100,1790" width="10" x="475" y="185"/> <circ-port height="10" pin="3100,1990" width="10" x="475" y="205"/> <circ-port height="10" pin="3100,2190" width="10" x="475" y="225"/> <circ-port height="10" pin="3100,2390" width="10" x="475" y="245"/> <circ-port height="10" pin="3100,2590" width="10" x="475" y="265"/> <circ-port height="10" pin="3100,2790" width="10" x="475" y="285"/> <circ-port height="10" pin="3100,2990" width="10" x="475" y="305"/> <circ-port height="10" pin="320,2480" width="10" x="475" y="505"/> <circ-port height="10" pin="3100,3190" width="10" x="475" y="325"/> <circ-port height="10" pin="320,2590" width="10" x="475" y="525"/> <circ-port height="10" pin="320,2700" width="10" x="475" y="545"/> <circ-port height="10" pin="3100,3390" width="10" x="475" y="345"/> <circ-port height="10" pin="1300,70" width="10" x="475" y="385"/> <circ-port height="10" pin="1340,70" width="10" x="475" y="405"/> <circ-port height="10" pin="1380,70" width="10" x="475" y="425"/> <circ-port height="10" pin="1420,70" width="10" x="475" y="445"/> <circ-port height="10" pin="1460,70" width="10" x="475" y="465"/> <circ-port height="10" pin="1500,70" width="10" x="475" y="585"/> <circ-port height="8" pin="1850,70" width="8" x="66" y="446"/> <circ-port height="8" pin="1930,70" width="8" x="156" y="46"/> <circ-port height="8" pin="2060,70" width="8" x="66" y="326"/> <circ-port height="8" pin="2140,70" width="8" x="66" y="506"/> <circ-port height="8" pin="1610,70" width="8" x="66" y="586"/> <circ-port height="8" pin="1640,70" width="8" x="66" y="566"/> <circ-port height="8" pin="1670,70" width="8" x="66" y="546"/> <circ-port height="8" pin="1700,70" width="8" x="66" y="526"/> <circ-port height="8" pin="2660,70" width="8" x="66" y="346"/> <circ-port height="8" pin="100,1550" width="8" x="66" y="286"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(1890,610)" to="(1890,640)"/> <wire from="(620,3430)" to="(620,3630)"/> <wire from="(810,2020)" to="(810,2220)"/> <wire from="(2580,1720)" to="(2610,1720)"/> <wire from="(2840,2710)" to="(2840,2810)"/> <wire from="(770,2440)" to="(830,2440)"/> <wire from="(770,840)" to="(830,840)"/> <wire from="(2190,1660)" to="(2210,1660)"/> <wire from="(1090,2690)" to="(1090,2720)"/> <wire from="(1910,2630)" to="(1960,2630)"/> <wire from="(1010,50)" to="(1010,80)"/> <wire from="(2640,910)" to="(2710,910)"/> <wire from="(1610,70)" to="(1610,200)"/> <wire from="(1670,140)" to="(1730,140)"/> <wire from="(100,2120)" to="(130,2120)"/> <wire from="(750,3420)" to="(770,3420)"/> <wire from="(810,2520)" to="(830,2520)"/> <wire from="(2750,910)" to="(2800,910)"/> <wire from="(1000,3040)" to="(1010,3040)"/> <wire from="(2250,730)" to="(2300,730)"/> <wire from="(100,850)" to="(120,850)"/> <wire from="(100,1170)" to="(120,1170)"/> <wire from="(190,300)" to="(210,300)"/> <wire from="(1370,3390)" to="(1400,3390)"/> <wire from="(2340,2940)" to="(2580,2940)"/> <wire from="(1240,3260)" to="(1270,3260)"/> <wire from="(3060,590)" to="(3100,590)"/> <wire from="(3060,2190)" to="(3100,2190)"/> <wire from="(1000,480)" to="(1010,480)"/> <wire from="(810,1770)" to="(810,1820)"/> <wire from="(630,3440)" to="(770,3440)"/> <wire from="(1910,2200)" to="(2010,2200)"/> <wire from="(2700,380)" to="(2720,380)"/> <wire from="(160,40)" to="(220,40)"/> <wire from="(2820,500)" to="(2840,500)"/> <wire from="(1300,70)" to="(1300,610)"/> <wire from="(2280,2520)" to="(2300,2520)"/> <wire from="(620,2860)" to="(620,2950)"/> <wire from="(2340,730)" to="(2420,730)"/> <wire from="(2290,300)" to="(2300,300)"/> <wire from="(1930,1030)" to="(1930,1230)"/> <wire from="(2640,2310)" to="(2720,2310)"/> <wire from="(2940,1010)" to="(3020,1010)"/> <wire from="(2940,2610)" to="(3020,2610)"/> <wire from="(1670,70)" to="(1670,140)"/> <wire from="(750,3230)" to="(770,3230)"/> <wire from="(810,3610)" to="(830,3610)"/> <wire from="(1370,3280)" to="(1450,3280)"/> <wire from="(2250,2140)" to="(2300,2140)"/> <wire from="(1830,2280)" to="(1830,2320)"/> <wire from="(1240,2880)" to="(1400,2880)"/> <wire from="(2170,1110)" to="(2210,1110)"/> <wire from="(1890,840)" to="(1920,840)"/> <wire from="(630,3250)" to="(770,3250)"/> <wire from="(2060,1160)" to="(2730,1160)"/> <wire from="(860,1050)" to="(860,1250)"/> <wire from="(700,2640)" to="(750,2640)"/> <wire from="(770,1030)" to="(770,1040)"/> <wire from="(1740,1840)" to="(1840,1840)"/> <wire from="(2820,1910)" to="(2840,1910)"/> <wire from="(2580,2300)" to="(2610,2300)"/> <wire from="(2190,1280)" to="(2210,1280)"/> <wire from="(2150,1880)" to="(2170,1880)"/> <wire from="(1460,2870)" to="(1460,2960)"/> <wire from="(2190,2880)" to="(2210,2880)"/> <wire from="(2460,720)" to="(2610,720)"/> <wire from="(1850,1850)" to="(1850,1990)"/> <wire from="(100,510)" to="(210,510)"/> <wire from="(1240,610)" to="(1300,610)"/> <wire from="(3010,1790)" to="(3020,1790)"/> <wire from="(3010,3390)" to="(3020,3390)"/> <wire from="(2890,1990)" to="(2900,1990)"/> <wire from="(2710,3090)" to="(2720,3090)"/> <wire from="(2280,2920)" to="(2280,3110)"/> <wire from="(2280,1260)" to="(2280,1320)"/> <wire from="(2280,2860)" to="(2280,2920)"/> <wire from="(100,2060)" to="(130,2060)"/> <wire from="(2620,2490)" to="(2620,2690)"/> <wire from="(810,1820)" to="(830,1820)"/> <wire from="(1010,100)" to="(1030,100)"/> <wire from="(2810,1720)" to="(2810,1920)"/> <wire from="(720,130)" to="(740,130)"/> <wire from="(2190,2450)" to="(2190,2460)"/> <wire from="(2840,2210)" to="(2900,2210)"/> <wire from="(400,450)" to="(420,450)"/> <wire from="(1370,3100)" to="(1370,3220)"/> <wire from="(190,240)" to="(210,240)"/> <wire from="(2840,610)" to="(2900,610)"/> <wire from="(2760,3110)" to="(2800,3110)"/> <wire from="(2580,1880)" to="(2580,1900)"/> <wire from="(2340,1280)" to="(2580,1280)"/> <wire from="(2340,2880)" to="(2580,2880)"/> <wire from="(1000,1700)" to="(1010,1700)"/> <wire from="(870,2020)" to="(1010,2020)"/> <wire from="(1440,3090)" to="(1460,3090)"/> <wire from="(1940,1980)" to="(1970,1980)"/> <wire from="(2580,2520)" to="(2580,2540)"/> <wire from="(2700,400)" to="(2700,420)"/> <wire from="(2160,2650)" to="(2190,2650)"/> <wire from="(740,2020)" to="(740,2220)"/> <wire from="(680,830)" to="(730,830)"/> <wire from="(680,2430)" to="(730,2430)"/> <wire from="(770,2440)" to="(770,2450)"/> <wire from="(770,840)" to="(770,850)"/> <wire from="(2190,1090)" to="(2210,1090)"/> <wire from="(1910,520)" to="(1910,2200)"/> <wire from="(2280,2460)" to="(2300,2460)"/> <wire from="(1820,1820)" to="(1820,2020)"/> <wire from="(1460,1410)" to="(1650,1410)"/> <wire from="(2830,3410)" to="(2900,3410)"/> <wire from="(1830,1010)" to="(1890,1010)"/> <wire from="(1830,2610)" to="(1890,2610)"/> <wire from="(690,120)" to="(690,140)"/> <wire from="(750,2530)" to="(770,2530)"/> <wire from="(590,130)" to="(610,130)"/> <wire from="(590,2050)" to="(610,2050)"/> <wire from="(290,2700)" to="(320,2700)"/> <wire from="(100,340)" to="(190,340)"/> <wire from="(1270,3200)" to="(1400,3200)"/> <wire from="(2250,2080)" to="(2300,2080)"/> <wire from="(710,3120)" to="(740,3120)"/> <wire from="(1160,2740)" to="(1320,2740)"/> <wire from="(1000,550)" to="(1010,550)"/> <wire from="(2170,730)" to="(2210,730)"/> <wire from="(1260,1970)" to="(1260,2010)"/> <wire from="(630,2550)" to="(770,2550)"/> <wire from="(1890,810)" to="(1890,840)"/> <wire from="(810,620)" to="(810,820)"/> <wire from="(810,2220)" to="(810,2420)"/> <wire from="(2390,1090)" to="(2420,1090)"/> <wire from="(1810,2330)" to="(1810,2350)"/> <wire from="(2840,2910)" to="(2840,3010)"/> <wire from="(770,1040)" to="(830,1040)"/> <wire from="(2580,1920)" to="(2610,1920)"/> <wire from="(2480,3110)" to="(2500,3110)"/> <wire from="(2190,1860)" to="(2210,1860)"/> <wire from="(2840,1310)" to="(2840,1410)"/> <wire from="(160,40)" to="(160,60)"/> <wire from="(1890,1810)" to="(2840,1810)"/> <wire from="(100,2000)" to="(130,2000)"/> <wire from="(750,3620)" to="(770,3620)"/> <wire from="(870,2520)" to="(960,2520)"/> <wire from="(780,120)" to="(810,120)"/> <wire from="(2250,930)" to="(2300,930)"/> <wire from="(100,730)" to="(120,730)"/> <wire from="(100,1370)" to="(120,1370)"/> <wire from="(1840,2680)" to="(1840,2730)"/> <wire from="(1420,3320)" to="(1450,3320)"/> <wire from="(3060,790)" to="(3100,790)"/> <wire from="(3060,2390)" to="(3100,2390)"/> <wire from="(730,1570)" to="(730,1620)"/> <wire from="(1620,840)" to="(1840,840)"/> <wire from="(1860,1840)" to="(1890,1840)"/> <wire from="(1940,640)" to="(1970,640)"/> <wire from="(630,3640)" to="(770,3640)"/> <wire from="(1830,2320)" to="(1930,2320)"/> <wire from="(2190,710)" to="(2210,710)"/> <wire from="(2280,2720)" to="(2300,2720)"/> <wire from="(590,150)" to="(590,220)"/> <wire from="(2340,930)" to="(2420,930)"/> <wire from="(710,2730)" to="(750,2730)"/> <wire from="(1930,1230)" to="(1930,1430)"/> <wire from="(2640,2510)" to="(2720,2510)"/> <wire from="(810,2740)" to="(810,2760)"/> <wire from="(1090,2720)" to="(1400,2720)"/> <wire from="(2940,1210)" to="(3020,1210)"/> <wire from="(2940,2810)" to="(3020,2810)"/> <wire from="(750,1830)" to="(770,1830)"/> <wire from="(1240,3610)" to="(1250,3610)"/> <wire from="(1110,160)" to="(1110,210)"/> <wire from="(230,2590)" to="(250,2590)"/> <wire from="(1270,3200)" to="(1270,3260)"/> <wire from="(120,450)" to="(120,490)"/> <wire from="(1850,2680)" to="(1930,2680)"/> <wire from="(2250,2340)" to="(2300,2340)"/> <wire from="(1240,3080)" to="(1400,3080)"/> <wire from="(2280,1320)" to="(2280,1660)"/> <wire from="(930,100)" to="(940,100)"/> <wire from="(2620,890)" to="(2620,1290)"/> <wire from="(2810,510)" to="(2810,720)"/> <wire from="(660,2710)" to="(670,2710)"/> <wire from="(630,1850)" to="(770,1850)"/> <wire from="(1890,1040)" to="(1920,1040)"/> <wire from="(1160,1490)" to="(1160,1570)"/> <wire from="(860,1250)" to="(860,1450)"/> <wire from="(860,2850)" to="(860,3050)"/> <wire from="(770,1230)" to="(770,1240)"/> <wire from="(2390,710)" to="(2420,710)"/> <wire from="(2820,2110)" to="(2840,2110)"/> <wire from="(2460,1100)" to="(2490,1100)"/> <wire from="(770,2830)" to="(770,2840)"/> <wire from="(2580,2500)" to="(2610,2500)"/> <wire from="(2150,2080)" to="(2170,2080)"/> <wire from="(2460,920)" to="(2610,920)"/> <wire from="(3010,1990)" to="(3020,1990)"/> <wire from="(2890,2190)" to="(2900,2190)"/> <wire from="(2890,590)" to="(2900,590)"/> <wire from="(2710,1690)" to="(2720,1690)"/> <wire from="(2620,2690)" to="(2620,2890)"/> <wire from="(810,2020)" to="(830,2020)"/> <wire from="(2810,1920)" to="(2810,2120)"/> <wire from="(250,240)" to="(340,240)"/> <wire from="(1000,2860)" to="(1010,2860)"/> <wire from="(1000,3180)" to="(1010,3180)"/> <wire from="(730,1620)" to="(750,1620)"/> <wire from="(2190,2650)" to="(2190,2660)"/> <wire from="(2840,2410)" to="(2900,2410)"/> <wire from="(810,2420)" to="(810,2520)"/> <wire from="(230,2480)" to="(230,2590)"/> <wire from="(100,670)" to="(120,670)"/> <wire from="(2340,320)" to="(2390,320)"/> <wire from="(1930,70)" to="(1930,630)"/> <wire from="(2840,810)" to="(2900,810)"/> <wire from="(2760,1710)" to="(2800,1710)"/> <wire from="(850,3670)" to="(860,3670)"/> <wire from="(870,620)" to="(1010,620)"/> <wire from="(870,2220)" to="(1010,2220)"/> <wire from="(1940,2180)" to="(1970,2180)"/> <wire from="(2580,2080)" to="(2580,2100)"/> <wire from="(2580,2720)" to="(2580,2740)"/> <wire from="(1240,850)" to="(1260,850)"/> <wire from="(2160,2850)" to="(2190,2850)"/> <wire from="(2160,1250)" to="(2190,1250)"/> <wire from="(680,1030)" to="(730,1030)"/> <wire from="(770,1040)" to="(770,1050)"/> <wire from="(860,1450)" to="(860,1460)"/> <wire from="(2280,2660)" to="(2300,2660)"/> <wire from="(2810,390)" to="(2810,510)"/> <wire from="(810,2680)" to="(810,2710)"/> <wire from="(1820,2020)" to="(1820,2220)"/> <wire from="(1830,1210)" to="(1890,1210)"/> <wire from="(320,430)" to="(420,430)"/> <wire from="(740,1840)" to="(740,1920)"/> <wire from="(120,490)" to="(150,490)"/> <wire from="(730,2710)" to="(750,2710)"/> <wire from="(110,2720)" to="(140,2720)"/> <wire from="(1680,2210)" to="(1810,2210)"/> <wire from="(590,650)" to="(610,650)"/> <wire from="(590,2250)" to="(610,2250)"/> <wire from="(660,2640)" to="(680,2640)"/> <wire from="(740,3120)" to="(740,3220)"/> <wire from="(400,140)" to="(420,140)"/> <wire from="(590,1920)" to="(620,1920)"/> <wire from="(460,440)" to="(2280,440)"/> <wire from="(1320,2740)" to="(1320,2860)"/> <wire from="(2250,2280)" to="(2300,2280)"/> <wire from="(100,1120)" to="(120,1120)"/> <wire from="(200,1860)" to="(220,1860)"/> <wire from="(940,1720)" to="(1010,1720)"/> <wire from="(730,1640)" to="(730,1700)"/> <wire from="(2170,930)" to="(2210,930)"/> <wire from="(1110,210)" to="(1130,210)"/> <wire from="(1930,2650)" to="(1930,2680)"/> <wire from="(1890,1010)" to="(1890,1040)"/> <wire from="(810,820)" to="(810,1020)"/> <wire from="(2590,3100)" to="(2610,3100)"/> <wire from="(1120,3120)" to="(1120,3140)"/> <wire from="(1820,2220)" to="(1820,2240)"/> <wire from="(2280,3110)" to="(2300,3110)"/> <wire from="(2840,3110)" to="(2840,3210)"/> <wire from="(770,1240)" to="(830,1240)"/> <wire from="(770,2840)" to="(830,2840)"/> <wire from="(2580,2120)" to="(2610,2120)"/> <wire from="(2620,520)" to="(2620,690)"/> <wire from="(2190,2060)" to="(2210,2060)"/> <wire from="(1710,1440)" to="(1710,2410)"/> <wire from="(100,140)" to="(340,140)"/> <wire from="(1890,2010)" to="(2840,2010)"/> <wire from="(860,1770)" to="(860,1850)"/> <wire from="(2280,440)" to="(2280,500)"/> <wire from="(1240,1210)" to="(1420,1210)"/> <wire from="(1320,2860)" to="(1400,2860)"/> <wire from="(1000,2800)" to="(1010,2800)"/> <wire from="(2340,1340)" to="(2530,1340)"/> <wire from="(1840,2680)" to="(1850,2680)"/> <wire from="(100,930)" to="(120,930)"/> <wire from="(100,290)" to="(120,290)"/> <wire from="(190,380)" to="(210,380)"/> <wire from="(2340,1740)" to="(2580,1740)"/> <wire from="(3060,990)" to="(3100,990)"/> <wire from="(3060,2590)" to="(3100,2590)"/> <wire from="(1590,1010)" to="(1810,1010)"/> <wire from="(1940,840)" to="(1970,840)"/> <wire from="(1090,1490)" to="(1090,1570)"/> <wire from="(620,2040)" to="(620,2240)"/> <wire from="(1840,2810)" to="(2840,2810)"/> <wire from="(2190,910)" to="(2210,910)"/> <wire from="(280,2730)" to="(280,2740)"/> <wire from="(100,390)" to="(150,390)"/> <wire from="(2280,2920)" to="(2300,2920)"/> <wire from="(2280,1320)" to="(2300,1320)"/> <wire from="(1850,1990)" to="(1850,2190)"/> <wire from="(2640,2710)" to="(2720,2710)"/> <wire from="(620,3260)" to="(620,3340)"/> <wire from="(2940,1410)" to="(3020,1410)"/> <wire from="(2940,3010)" to="(3020,3010)"/> <wire from="(750,2030)" to="(770,2030)"/> <wire from="(790,3670)" to="(810,3670)"/> <wire from="(790,2710)" to="(810,2710)"/> <wire from="(810,2620)" to="(810,2660)"/> <wire from="(1240,2810)" to="(1820,2810)"/> <wire from="(450,130)" to="(470,130)"/> <wire from="(2250,2540)" to="(2300,2540)"/> <wire from="(2280,500)" to="(2280,710)"/> <wire from="(2190,480)" to="(2190,500)"/> <wire from="(1040,410)" to="(1050,410)"/> <wire from="(650,1620)" to="(660,1620)"/> <wire from="(630,2050)" to="(770,2050)"/> <wire from="(1890,1240)" to="(1920,1240)"/> <wire from="(860,3050)" to="(860,3250)"/> <wire from="(770,1430)" to="(770,1440)"/> <wire from="(2390,910)" to="(2420,910)"/> <wire from="(2820,2310)" to="(2840,2310)"/> <wire from="(2820,710)" to="(2840,710)"/> <wire from="(770,3030)" to="(770,3040)"/> <wire from="(2580,2700)" to="(2610,2700)"/> <wire from="(2540,1390)" to="(2560,1390)"/> <wire from="(2150,2280)" to="(2170,2280)"/> <wire from="(2190,1680)" to="(2210,1680)"/> <wire from="(3010,2190)" to="(3020,2190)"/> <wire from="(1820,2350)" to="(1820,2420)"/> <wire from="(2890,2390)" to="(2900,2390)"/> <wire from="(2890,790)" to="(2900,790)"/> <wire from="(3010,590)" to="(3020,590)"/> <wire from="(2280,1660)" to="(2280,1720)"/> <wire from="(2710,1890)" to="(2720,1890)"/> <wire from="(810,620)" to="(830,620)"/> <wire from="(810,2220)" to="(830,2220)"/> <wire from="(2620,2890)" to="(2620,3090)"/> <wire from="(2810,2120)" to="(2810,2320)"/> <wire from="(730,2670)" to="(730,2710)"/> <wire from="(1000,1780)" to="(1010,1780)"/> <wire from="(1000,3060)" to="(1010,3060)"/> <wire from="(300,430)" to="(320,430)"/> <wire from="(2190,2850)" to="(2190,2860)"/> <wire from="(590,2950)" to="(620,2950)"/> <wire from="(2840,2610)" to="(2900,2610)"/> <wire from="(1590,640)" to="(1590,1010)"/> <wire from="(2190,1250)" to="(2190,1260)"/> <wire from="(2280,1720)" to="(2280,1860)"/> <wire from="(2840,1010)" to="(2900,1010)"/> <wire from="(910,2590)" to="(910,2780)"/> <wire from="(2760,1910)" to="(2800,1910)"/> <wire from="(1240,3410)" to="(1400,3410)"/> <wire from="(2340,1680)" to="(2580,1680)"/> <wire from="(2250,350)" to="(2250,370)"/> <wire from="(870,120)" to="(940,120)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(870,820)" to="(1010,820)"/> <wire from="(2580,1320)" to="(2580,1350)"/> <wire from="(870,2420)" to="(1010,2420)"/> <wire from="(2580,2280)" to="(2580,2300)"/> <wire from="(2580,2920)" to="(2580,2940)"/> <wire from="(1240,2010)" to="(1260,2010)"/> <wire from="(1860,1980)" to="(1890,1980)"/> <wire from="(1810,2280)" to="(1810,2310)"/> <wire from="(740,820)" to="(740,1020)"/> <wire from="(1260,2010)" to="(1500,2010)"/> <wire from="(680,1230)" to="(730,1230)"/> <wire from="(2700,400)" to="(2720,400)"/> <wire from="(680,2830)" to="(730,2830)"/> <wire from="(770,1240)" to="(770,1250)"/> <wire from="(2820,1160)" to="(2840,1160)"/> <wire from="(770,2840)" to="(770,2850)"/> <wire from="(2280,2860)" to="(2300,2860)"/> <wire from="(2280,1260)" to="(2300,1260)"/> <wire from="(1820,620)" to="(1820,820)"/> <wire from="(1850,650)" to="(1850,850)"/> <wire from="(1830,1410)" to="(1890,1410)"/> <wire from="(1650,1040)" to="(1840,1040)"/> <wire from="(740,2360)" to="(740,2440)"/> <wire from="(100,2270)" to="(130,2270)"/> <wire from="(160,2720)" to="(250,2720)"/> <wire from="(590,850)" to="(610,850)"/> <wire from="(590,2450)" to="(610,2450)"/> <wire from="(190,340)" to="(190,380)"/> <wire from="(2250,2480)" to="(2300,2480)"/> <wire from="(100,1320)" to="(120,1320)"/> <wire from="(810,2660)" to="(840,2660)"/> <wire from="(620,1920)" to="(620,2040)"/> <wire from="(1370,3220)" to="(1400,3220)"/> <wire from="(580,2780)" to="(910,2780)"/> <wire from="(1890,1210)" to="(1890,1240)"/> <wire from="(1260,770)" to="(1260,850)"/> <wire from="(810,1020)" to="(810,1220)"/> <wire from="(770,1440)" to="(830,1440)"/> <wire from="(770,3040)" to="(830,3040)"/> <wire from="(2580,2320)" to="(2610,2320)"/> <wire from="(2560,1350)" to="(2580,1350)"/> <wire from="(250,290)" to="(300,290)"/> <wire from="(1930,1430)" to="(1930,1830)"/> <wire from="(2190,2260)" to="(2210,2260)"/> <wire from="(2840,1710)" to="(2840,1810)"/> <wire from="(700,110)" to="(740,110)"/> <wire from="(1890,2210)" to="(2840,2210)"/> <wire from="(1890,610)" to="(2840,610)"/> <wire from="(520,3740)" to="(1120,3740)"/> <wire from="(1110,110)" to="(1110,160)"/> <wire from="(1000,3000)" to="(1010,3000)"/> <wire from="(290,2590)" to="(320,2590)"/> <wire from="(650,2760)" to="(810,2760)"/> <wire from="(100,810)" to="(120,810)"/> <wire from="(2340,1940)" to="(2580,1940)"/> <wire from="(230,2430)" to="(230,2480)"/> <wire from="(620,1860)" to="(620,1920)"/> <wire from="(3060,1190)" to="(3100,1190)"/> <wire from="(3060,2790)" to="(3100,2790)"/> <wire from="(1270,3260)" to="(1290,3260)"/> <wire from="(2620,3090)" to="(2620,3170)"/> <wire from="(1380,1010)" to="(1590,1010)"/> <wire from="(580,2590)" to="(910,2590)"/> <wire from="(1860,640)" to="(1890,640)"/> <wire from="(1640,170)" to="(1730,170)"/> <wire from="(1120,3120)" to="(1460,3120)"/> <wire from="(1240,2410)" to="(1710,2410)"/> <wire from="(1940,1040)" to="(1970,1040)"/> <wire from="(620,2240)" to="(620,2440)"/> <wire from="(1890,1980)" to="(1890,2010)"/> <wire from="(1800,1980)" to="(1840,1980)"/> <wire from="(130,1690)" to="(130,1760)"/> <wire from="(860,2550)" to="(860,2560)"/> <wire from="(1840,3010)" to="(2840,3010)"/> <wire from="(860,3440)" to="(860,3640)"/> <wire from="(770,3420)" to="(770,3430)"/> <wire from="(1440,3210)" to="(1820,3210)"/> <wire from="(1850,2190)" to="(1850,2390)"/> <wire from="(2530,3120)" to="(2610,3120)"/> <wire from="(2640,1310)" to="(2720,1310)"/> <wire from="(2640,2910)" to="(2720,2910)"/> <wire from="(2030,100)" to="(2860,100)"/> <wire from="(2940,3210)" to="(3020,3210)"/> <wire from="(100,2210)" to="(130,2210)"/> <wire from="(750,2230)" to="(770,2230)"/> <wire from="(2490,1100)" to="(2490,1360)"/> <wire from="(810,580)" to="(810,620)"/> <wire from="(590,150)" to="(610,150)"/> <wire from="(750,630)" to="(770,630)"/> <wire from="(1240,3010)" to="(1820,3010)"/> <wire from="(590,3340)" to="(620,3340)"/> <wire from="(130,1820)" to="(130,1860)"/> <wire from="(960,2520)" to="(960,2620)"/> <wire from="(2250,2740)" to="(2300,2740)"/> <wire from="(200,1680)" to="(220,1680)"/> <wire from="(860,3250)" to="(860,3440)"/> <wire from="(520,1700)" to="(520,3740)"/> <wire from="(330,220)" to="(340,220)"/> <wire from="(2620,1290)" to="(2620,1690)"/> <wire from="(670,120)" to="(670,170)"/> <wire from="(630,650)" to="(770,650)"/> <wire from="(630,2250)" to="(770,2250)"/> <wire from="(1890,1440)" to="(1920,1440)"/> <wire from="(2580,1300)" to="(2610,1300)"/> <wire from="(100,1670)" to="(160,1670)"/> <wire from="(2820,2510)" to="(2840,2510)"/> <wire from="(2820,910)" to="(2840,910)"/> <wire from="(770,3230)" to="(770,3240)"/> <wire from="(1710,2410)" to="(1810,2410)"/> <wire from="(2580,2900)" to="(2610,2900)"/> <wire from="(2150,2480)" to="(2170,2480)"/> <wire from="(2190,1880)" to="(2210,1880)"/> <wire from="(860,3640)" to="(860,3670)"/> <wire from="(620,2950)" to="(620,3040)"/> <wire from="(3010,2390)" to="(3020,2390)"/> <wire from="(1240,3460)" to="(1290,3460)"/> <wire from="(2890,990)" to="(2900,990)"/> <wire from="(2890,2590)" to="(2900,2590)"/> <wire from="(3010,790)" to="(3020,790)"/> <wire from="(2710,2090)" to="(2720,2090)"/> <wire from="(2060,70)" to="(2060,1160)"/> <wire from="(2280,1860)" to="(2280,1920)"/> <wire from="(2700,480)" to="(2710,480)"/> <wire from="(810,820)" to="(830,820)"/> <wire from="(810,2420)" to="(830,2420)"/> <wire from="(1420,70)" to="(1420,1210)"/> <wire from="(2810,720)" to="(2810,920)"/> <wire from="(2810,2320)" to="(2810,2520)"/> <wire from="(230,2480)" to="(250,2480)"/> <wire from="(2840,2810)" to="(2900,2810)"/> <wire from="(2280,1920)" to="(2280,2060)"/> <wire from="(200,1810)" to="(220,1810)"/> <wire from="(2840,1210)" to="(2900,1210)"/> <wire from="(810,2740)" to="(1160,2740)"/> <wire from="(660,2670)" to="(730,2670)"/> <wire from="(2760,2110)" to="(2800,2110)"/> <wire from="(2340,1880)" to="(2580,1880)"/> <wire from="(1430,2710)" to="(1460,2710)"/> <wire from="(200,220)" to="(210,220)"/> <wire from="(870,1020)" to="(1010,1020)"/> <wire from="(2580,2480)" to="(2580,2500)"/> <wire from="(2810,1170)" to="(2810,1320)"/> <wire from="(2810,2770)" to="(2810,2920)"/> <wire from="(2700,360)" to="(2700,380)"/> <wire from="(1170,220)" to="(1190,220)"/> <wire from="(1320,1570)" to="(1320,2700)"/> <wire from="(130,1630)" to="(130,1690)"/> <wire from="(1860,2180)" to="(1890,2180)"/> <wire from="(2160,1650)" to="(2190,1650)"/> <wire from="(740,1020)" to="(740,1220)"/> <wire from="(2840,500)" to="(2840,610)"/> <wire from="(680,3030)" to="(730,3030)"/> <wire from="(680,1430)" to="(730,1430)"/> <wire from="(100,1800)" to="(160,1800)"/> <wire from="(770,1440)" to="(770,1450)"/> <wire from="(770,3040)" to="(770,3050)"/> <wire from="(2280,1090)" to="(2280,1260)"/> <wire from="(1460,3090)" to="(1460,3120)"/> <wire from="(770,3430)" to="(830,3430)"/> <wire from="(2590,490)" to="(2610,490)"/> <wire from="(1120,3710)" to="(1120,3740)"/> <wire from="(2280,500)" to="(2300,500)"/> <wire from="(1820,820)" to="(1820,1020)"/> <wire from="(1850,850)" to="(1850,1050)"/> <wire from="(1820,2420)" to="(1820,2620)"/> <wire from="(470,50)" to="(470,130)"/> <wire from="(1850,70)" to="(1850,650)"/> <wire from="(280,310)" to="(280,340)"/> <wire from="(1620,1210)" to="(1810,1210)"/> <wire from="(100,2150)" to="(130,2150)"/> <wire from="(570,70)" to="(590,70)"/> <wire from="(590,1050)" to="(610,1050)"/> <wire from="(740,1920)" to="(740,2020)"/> <wire from="(2250,2680)" to="(2300,2680)"/> <wire from="(620,2440)" to="(620,2540)"/> <wire from="(200,1620)" to="(220,1620)"/> <wire from="(1370,3100)" to="(1400,3100)"/> <wire from="(580,2590)" to="(580,2780)"/> <wire from="(1000,1470)" to="(1010,1470)"/> <wire from="(130,1760)" to="(130,1820)"/> <wire from="(2030,100)" to="(2030,3460)"/> <wire from="(1890,1410)" to="(1890,1440)"/> <wire from="(940,1630)" to="(1120,1630)"/> <wire from="(810,1220)" to="(810,1420)"/> <wire from="(810,2820)" to="(810,3020)"/> <wire from="(100,1610)" to="(160,1610)"/> <wire from="(770,2530)" to="(770,2540)"/> <wire from="(1820,2620)" to="(1820,2640)"/> <wire from="(770,3240)" to="(830,3240)"/> <wire from="(2580,2520)" to="(2610,2520)"/> <wire from="(2860,100)" to="(2860,3460)"/> <wire from="(2190,2460)" to="(2210,2460)"/> <wire from="(2840,1910)" to="(2840,2010)"/> <wire from="(1370,3320)" to="(1370,3390)"/> <wire from="(1930,1830)" to="(1930,1970)"/> <wire from="(1890,2410)" to="(2840,2410)"/> <wire from="(650,2730)" to="(650,2760)"/> <wire from="(1890,810)" to="(2840,810)"/> <wire from="(110,2610)" to="(140,2610)"/> <wire from="(790,100)" to="(810,100)"/> <wire from="(1000,2880)" to="(1010,2880)"/> <wire from="(1000,3200)" to="(1010,3200)"/> <wire from="(1240,1010)" to="(1380,1010)"/> <wire from="(730,1640)" to="(750,1640)"/> <wire from="(2250,3130)" to="(2300,3130)"/> <wire from="(100,1010)" to="(120,1010)"/> <wire from="(200,1750)" to="(220,1750)"/> <wire from="(1340,70)" to="(1340,810)"/> <wire from="(1960,2770)" to="(2810,2770)"/> <wire from="(2340,2140)" to="(2580,2140)"/> <wire from="(2190,1070)" to="(2190,1090)"/> <wire from="(3060,1390)" to="(3100,1390)"/> <wire from="(3060,2990)" to="(3100,2990)"/> <wire from="(850,1770)" to="(860,1770)"/> <wire from="(1640,70)" to="(1640,170)"/> <wire from="(1860,840)" to="(1890,840)"/> <wire from="(130,1570)" to="(130,1630)"/> <wire from="(1940,1240)" to="(1970,1240)"/> <wire from="(740,640)" to="(740,820)"/> <wire from="(620,840)" to="(620,1040)"/> <wire from="(1890,2180)" to="(1890,2210)"/> <wire from="(1800,2180)" to="(1840,2180)"/> <wire from="(1840,3210)" to="(2840,3210)"/> <wire from="(100,1740)" to="(160,1740)"/> <wire from="(770,3620)" to="(770,3630)"/> <wire from="(2010,520)" to="(2010,2200)"/> <wire from="(2280,1720)" to="(2300,1720)"/> <wire from="(2080,230)" to="(2080,1140)"/> <wire from="(620,3340)" to="(620,3430)"/> <wire from="(1960,2630)" to="(1960,2770)"/> <wire from="(700,2360)" to="(740,2360)"/> <wire from="(1240,1810)" to="(1810,1810)"/> <wire from="(1850,2390)" to="(1850,2590)"/> <wire from="(2640,3110)" to="(2720,3110)"/> <wire from="(2940,1810)" to="(3020,1810)"/> <wire from="(380,120)" to="(420,120)"/> <wire from="(2940,3410)" to="(3020,3410)"/> <wire from="(100,2090)" to="(130,2090)"/> <wire from="(750,2430)" to="(770,2430)"/> <wire from="(120,2430)" to="(150,2430)"/> <wire from="(1830,2760)" to="(1830,2820)"/> <wire from="(1460,2710)" to="(1460,2760)"/> <wire from="(600,1320)" to="(620,1320)"/> <wire from="(1000,3650)" to="(1010,3650)"/> <wire from="(100,240)" to="(190,240)"/> <wire from="(750,830)" to="(770,830)"/> <wire from="(260,340)" to="(280,340)"/> <wire from="(120,410)" to="(120,450)"/> <wire from="(2250,1340)" to="(2300,1340)"/> <wire from="(2250,2940)" to="(2300,2940)"/> <wire from="(200,1560)" to="(220,1560)"/> <wire from="(1700,70)" to="(1700,110)"/> <wire from="(1680,1240)" to="(1840,1240)"/> <wire from="(630,2450)" to="(770,2450)"/> <wire from="(630,850)" to="(770,850)"/> <wire from="(730,2620)" to="(730,2670)"/> <wire from="(2820,2710)" to="(2840,2710)"/> <wire from="(860,1850)" to="(860,2050)"/> <wire from="(680,3420)" to="(730,3420)"/> <wire from="(100,1550)" to="(160,1550)"/> <wire from="(770,1830)" to="(770,1840)"/> <wire from="(770,3430)" to="(770,3440)"/> <wire from="(740,1220)" to="(740,1360)"/> <wire from="(770,2540)" to="(830,2540)"/> <wire from="(2150,2680)" to="(2170,2680)"/> <wire from="(2190,2080)" to="(2210,2080)"/> <wire from="(2810,920)" to="(2810,1170)"/> <wire from="(1820,2640)" to="(1870,2640)"/> <wire from="(730,1570)" to="(1090,1570)"/> <wire from="(1830,2820)" to="(1830,3020)"/> <wire from="(590,220)" to="(1010,220)"/> <wire from="(2180,480)" to="(2190,480)"/> <wire from="(3010,2590)" to="(3020,2590)"/> <wire from="(3010,990)" to="(3020,990)"/> <wire from="(1240,3660)" to="(1290,3660)"/> <wire from="(2890,1190)" to="(2900,1190)"/> <wire from="(2890,2790)" to="(2900,2790)"/> <wire from="(2710,2290)" to="(2720,2290)"/> <wire from="(1090,30)" to="(1090,300)"/> <wire from="(2280,2060)" to="(2280,2120)"/> <wire from="(240,500)" to="(340,500)"/> <wire from="(810,1020)" to="(830,1020)"/> <wire from="(2620,1690)" to="(2620,1890)"/> <wire from="(850,100)" to="(870,100)"/> <wire from="(2810,2520)" to="(2810,2720)"/> <wire from="(2840,3010)" to="(2900,3010)"/> <wire from="(1810,2350)" to="(1820,2350)"/> <wire from="(2280,710)" to="(2280,910)"/> <wire from="(2190,1650)" to="(2190,1660)"/> <wire from="(100,1270)" to="(120,1270)"/> <wire from="(2280,2120)" to="(2280,2260)"/> <wire from="(2840,1410)" to="(2900,1410)"/> <wire from="(2760,2310)" to="(2800,2310)"/> <wire from="(2580,1720)" to="(2580,1740)"/> <wire from="(2340,2080)" to="(2580,2080)"/> <wire from="(2190,690)" to="(2190,710)"/> <wire from="(500,30)" to="(1090,30)"/> <wire from="(2390,500)" to="(2390,710)"/> <wire from="(870,1220)" to="(1010,1220)"/> <wire from="(1000,580)" to="(1010,580)"/> <wire from="(870,2820)" to="(1010,2820)"/> <wire from="(2580,2680)" to="(2580,2700)"/> <wire from="(1170,100)" to="(1190,100)"/> <wire from="(1860,2380)" to="(1890,2380)"/> <wire from="(1500,70)" to="(1500,2010)"/> <wire from="(2160,1850)" to="(2190,1850)"/> <wire from="(680,3230)" to="(730,3230)"/> <wire from="(1850,2590)" to="(1850,2680)"/> <wire from="(770,3240)" to="(770,3250)"/> <wire from="(770,3630)" to="(830,3630)"/> <wire from="(2280,1660)" to="(2300,1660)"/> <wire from="(690,1630)" to="(750,1630)"/> <wire from="(1680,1240)" to="(1680,2210)"/> <wire from="(2640,500)" to="(2710,500)"/> <wire from="(1850,1050)" to="(1850,1250)"/> <wire from="(1820,1020)" to="(1820,1220)"/> <wire from="(1070,90)" to="(1130,90)"/> <wire from="(160,70)" to="(160,90)"/> <wire from="(1830,1810)" to="(1890,1810)"/> <wire from="(2810,2720)" to="(2810,2770)"/> <wire from="(170,490)" to="(210,490)"/> <wire from="(740,2440)" to="(740,2520)"/> <wire from="(790,1770)" to="(810,1770)"/> <wire from="(100,2030)" to="(130,2030)"/> <wire from="(100,2350)" to="(130,2350)"/> <wire from="(470,50)" to="(1010,50)"/> <wire from="(590,1250)" to="(610,1250)"/> <wire from="(590,2850)" to="(610,2850)"/> <wire from="(520,1700)" to="(730,1700)"/> <wire from="(2750,500)" to="(2800,500)"/> <wire from="(710,1360)" to="(740,1360)"/> <wire from="(280,2620)" to="(280,2730)"/> <wire from="(2250,1280)" to="(2300,1280)"/> <wire from="(2250,2880)" to="(2300,2880)"/> <wire from="(1110,160)" to="(1140,160)"/> <wire from="(2290,280)" to="(2290,300)"/> <wire from="(1700,110)" to="(1730,110)"/> <wire from="(650,1640)" to="(660,1640)"/> <wire from="(810,3020)" to="(810,3220)"/> <wire from="(1120,2760)" to="(1120,2780)"/> <wire from="(2840,2110)" to="(2840,2210)"/> <wire from="(770,1840)" to="(830,1840)"/> <wire from="(2580,2720)" to="(2610,2720)"/> <wire from="(2190,2660)" to="(2210,2660)"/> <wire from="(1890,2610)" to="(2840,2610)"/> <wire from="(280,2430)" to="(280,2510)"/> <wire from="(1890,1010)" to="(2840,1010)"/> <wire from="(150,2620)" to="(150,2710)"/> <wire from="(1740,2610)" to="(1810,2610)"/> <wire from="(160,2610)" to="(250,2610)"/> <wire from="(1000,3080)" to="(1010,3080)"/> <wire from="(1650,1040)" to="(1650,1410)"/> <wire from="(100,890)" to="(120,890)"/> <wire from="(380,240)" to="(1030,240)"/> <wire from="(2340,2340)" to="(2580,2340)"/> <wire from="(3060,3190)" to="(3100,3190)"/> <wire from="(1000,520)" to="(1010,520)"/> <wire from="(1940,1440)" to="(1970,1440)"/> <wire from="(1860,1040)" to="(1890,1040)"/> <wire from="(620,1040)" to="(620,1240)"/> <wire from="(1890,2380)" to="(1890,2410)"/> <wire from="(1800,2380)" to="(1840,2380)"/> <wire from="(680,2530)" to="(730,2530)"/> <wire from="(770,2540)" to="(770,2550)"/> <wire from="(2660,70)" to="(2660,360)"/> <wire from="(860,580)" to="(860,650)"/> <wire from="(2280,1920)" to="(2300,1920)"/> <wire from="(150,2430)" to="(150,2510)"/> <wire from="(2280,910)" to="(2280,1090)"/> <wire from="(2640,1710)" to="(2720,1710)"/> <wire from="(1500,2010)" to="(1810,2010)"/> <wire from="(2940,2010)" to="(3020,2010)"/> <wire from="(100,50)" to="(130,50)"/> <wire from="(290,2480)" to="(320,2480)"/> <wire from="(750,1030)" to="(770,1030)"/> <wire from="(2520,230)" to="(2520,1140)"/> <wire from="(740,3020)" to="(740,3120)"/> <wire from="(340,300)" to="(360,300)"/> <wire from="(1430,3400)" to="(1820,3400)"/> <wire from="(810,2680)" to="(840,2680)"/> <wire from="(2660,360)" to="(2700,360)"/> <wire from="(1090,400)" to="(1120,400)"/> <wire from="(1650,1410)" to="(1810,1410)"/> <wire from="(1110,110)" to="(1130,110)"/> <wire from="(630,1050)" to="(770,1050)"/> <wire from="(1890,1840)" to="(1920,1840)"/> <wire from="(2820,2910)" to="(2840,2910)"/> <wire from="(960,2620)" to="(1010,2620)"/> <wire from="(2580,1700)" to="(2610,1700)"/> <wire from="(860,2050)" to="(860,2250)"/> <wire from="(770,2030)" to="(770,2040)"/> <wire from="(2820,1310)" to="(2840,1310)"/> <wire from="(770,3630)" to="(770,3640)"/> <wire from="(2150,1280)" to="(2170,1280)"/> <wire from="(2150,2880)" to="(2170,2880)"/> <wire from="(2190,2280)" to="(2210,2280)"/> <wire from="(2280,1090)" to="(2300,1090)"/> <wire from="(1830,3020)" to="(1830,3220)"/> <wire from="(3010,2790)" to="(3020,2790)"/> <wire from="(3010,1190)" to="(3020,1190)"/> <wire from="(2890,1390)" to="(2900,1390)"/> <wire from="(2890,2990)" to="(2900,2990)"/> <wire from="(2710,2490)" to="(2720,2490)"/> <wire from="(2280,2260)" to="(2280,2320)"/> <wire from="(810,1220)" to="(830,1220)"/> <wire from="(2620,1890)" to="(2620,2090)"/> <wire from="(810,2820)" to="(830,2820)"/> <wire from="(280,370)" to="(300,370)"/> <wire from="(2190,1850)" to="(2190,1860)"/> <wire from="(2840,3210)" to="(2900,3210)"/> <wire from="(980,100)" to="(1010,100)"/> <wire from="(780,1630)" to="(940,1630)"/> <wire from="(100,1470)" to="(120,1470)"/> <wire from="(190,280)" to="(210,280)"/> <wire from="(2280,2320)" to="(2280,2460)"/> <wire from="(2140,350)" to="(2250,350)"/> <wire from="(2760,2510)" to="(2800,2510)"/> <wire from="(2580,1280)" to="(2580,1300)"/> <wire from="(2580,1920)" to="(2580,1940)"/> <wire from="(2340,2280)" to="(2580,2280)"/> <wire from="(2190,890)" to="(2190,910)"/> <wire from="(740,1360)" to="(740,1420)"/> <wire from="(870,1420)" to="(1010,1420)"/> <wire from="(870,3020)" to="(1010,3020)"/> <wire from="(800,580)" to="(810,580)"/> <wire from="(2580,2880)" to="(2580,2900)"/> <wire from="(620,660)" to="(620,840)"/> <wire from="(1240,1970)" to="(1260,1970)"/> <wire from="(1860,2580)" to="(1890,2580)"/> <wire from="(2160,2050)" to="(2190,2050)"/> <wire from="(810,3410)" to="(810,3610)"/> <wire from="(680,1830)" to="(730,1830)"/> <wire from="(770,1840)" to="(770,1850)"/> <wire from="(2280,1860)" to="(2300,1860)"/> <wire from="(2390,320)" to="(2390,500)"/> <wire from="(1820,1220)" to="(1820,1420)"/> <wire from="(1850,1250)" to="(1850,1450)"/> <wire from="(1930,1970)" to="(1930,2170)"/> <wire from="(1830,2010)" to="(1890,2010)"/> <wire from="(620,1240)" to="(620,1320)"/> <wire from="(2700,690)" to="(2710,690)"/> <wire from="(1710,1440)" to="(1840,1440)"/> <wire from="(590,1450)" to="(610,1450)"/> <wire from="(590,3050)" to="(610,3050)"/> <wire from="(2760,390)" to="(2810,390)"/> <wire from="(190,300)" to="(190,340)"/> <wire from="(2250,520)" to="(2300,520)"/> <wire from="(1420,1210)" to="(1620,1210)"/> <wire from="(2540,1370)" to="(2540,1390)"/> <wire from="(810,3220)" to="(810,3410)"/> <wire from="(150,60)" to="(160,60)"/> <wire from="(320,430)" to="(320,480)"/> <wire from="(1890,1810)" to="(1890,1840)"/> <wire from="(2340,3130)" to="(2500,3130)"/> <wire from="(2580,1320)" to="(2610,1320)"/> <wire from="(1120,2960)" to="(1120,2980)"/> <wire from="(2840,2310)" to="(2840,2410)"/> <wire from="(770,2040)" to="(830,2040)"/> <wire from="(2580,2920)" to="(2610,2920)"/> <wire from="(2590,700)" to="(2610,700)"/> <wire from="(2190,1260)" to="(2210,1260)"/> <wire from="(2280,710)" to="(2300,710)"/> <wire from="(2190,2860)" to="(2210,2860)"/> <wire from="(2840,710)" to="(2840,810)"/> <wire from="(2340,520)" to="(2420,520)"/> <wire from="(790,70)" to="(790,100)"/> <wire from="(2080,230)" to="(2520,230)"/> <wire from="(1890,1210)" to="(2840,1210)"/> <wire from="(2840,1160)" to="(2840,1210)"/> <wire from="(710,3620)" to="(730,3620)"/> <wire from="(1010,80)" to="(1030,80)"/> <wire from="(1320,2700)" to="(1400,2700)"/> <wire from="(280,310)" to="(300,310)"/> <wire from="(100,770)" to="(120,770)"/> <wire from="(100,450)" to="(120,450)"/> <wire from="(1120,400)" to="(1120,460)"/> <wire from="(810,3610)" to="(810,3670)"/> <wire from="(2340,2540)" to="(2580,2540)"/> <wire from="(3060,1790)" to="(3100,1790)"/> <wire from="(3060,3390)" to="(3100,3390)"/> <wire from="(1000,1680)" to="(1010,1680)"/> <wire from="(2510,3070)" to="(2510,3100)"/> <wire from="(1860,1240)" to="(1890,1240)"/> <wire from="(1120,2760)" to="(1460,2760)"/> <wire from="(1910,520)" to="(2010,520)"/> <wire from="(1890,2580)" to="(1890,2610)"/> <wire from="(1800,2580)" to="(1840,2580)"/> <wire from="(500,30)" to="(500,300)"/> <wire from="(130,1860)" to="(180,1860)"/> <wire from="(1240,810)" to="(1340,810)"/> <wire from="(2280,2120)" to="(2300,2120)"/> <wire from="(2460,510)" to="(2610,510)"/> <wire from="(1610,200)" to="(1730,200)"/> <wire from="(1070,230)" to="(1130,230)"/> <wire from="(1930,630)" to="(1930,830)"/> <wire from="(100,180)" to="(400,180)"/> <wire from="(2180,1070)" to="(2190,1070)"/> <wire from="(400,450)" to="(400,480)"/> <wire from="(2640,1910)" to="(2720,1910)"/> <wire from="(2940,610)" to="(3020,610)"/> <wire from="(2940,2210)" to="(3020,2210)"/> <wire from="(110,2500)" to="(140,2500)"/> <wire from="(750,2830)" to="(770,2830)"/> <wire from="(720,130)" to="(720,170)"/> <wire from="(1240,2050)" to="(1250,2050)"/> <wire from="(750,1230)" to="(770,1230)"/> <wire from="(650,2730)" to="(670,2730)"/> <wire from="(320,480)" to="(340,480)"/> <wire from="(190,240)" to="(190,280)"/> <wire from="(2250,1740)" to="(2300,1740)"/> <wire from="(100,580)" to="(120,580)"/> <wire from="(100,1220)" to="(120,1220)"/> <wire from="(500,300)" to="(1090,300)"/> <wire from="(1830,3220)" to="(1830,3390)"/> <wire from="(2140,70)" to="(2140,350)"/> <wire from="(870,3410)" to="(1010,3410)"/> <wire from="(630,2850)" to="(770,2850)"/> <wire from="(630,1250)" to="(770,1250)"/> <wire from="(2820,3110)" to="(2840,3110)"/> <wire from="(770,630)" to="(770,640)"/> <wire from="(740,3410)" to="(740,3610)"/> <wire from="(860,650)" to="(860,850)"/> <wire from="(2580,1900)" to="(2610,1900)"/> <wire from="(160,90)" to="(220,90)"/> <wire from="(860,2250)" to="(860,2450)"/> <wire from="(770,2230)" to="(770,2240)"/> <wire from="(1930,2170)" to="(1930,2320)"/> <wire from="(2190,2480)" to="(2210,2480)"/> <wire from="(940,1630)" to="(940,1720)"/> <wire from="(3010,1390)" to="(3020,1390)"/> <wire from="(3010,2990)" to="(3020,2990)"/> <wire from="(2890,3190)" to="(2900,3190)"/> <wire from="(2710,2690)" to="(2720,2690)"/> <wire from="(1240,2210)" to="(1680,2210)"/> <wire from="(2280,2460)" to="(2280,2520)"/> <wire from="(810,1420)" to="(830,1420)"/> <wire from="(2620,2090)" to="(2620,2290)"/> <wire from="(130,1690)" to="(160,1690)"/> <wire from="(730,2620)" to="(750,2620)"/> <wire from="(810,3020)" to="(830,3020)"/> <wire from="(2810,2920)" to="(2810,3120)"/> <wire from="(590,3440)" to="(610,3440)"/> <wire from="(2190,2050)" to="(2190,2060)"/> <wire from="(2280,2520)" to="(2280,2660)"/> <wire from="(2840,1810)" to="(2900,1810)"/> <wire from="(2580,3170)" to="(2620,3170)"/> <wire from="(1160,1570)" to="(1320,1570)"/> <wire from="(740,3220)" to="(740,3410)"/> <wire from="(2760,2710)" to="(2800,2710)"/> <wire from="(2340,2480)" to="(2580,2480)"/> <wire from="(1010,100)" to="(1010,220)"/> <wire from="(2170,520)" to="(2210,520)"/> <wire from="(870,3220)" to="(1010,3220)"/> <wire from="(2580,2120)" to="(2580,2140)"/> <wire from="(1340,810)" to="(1810,810)"/> <wire from="(2160,2250)" to="(2190,2250)"/> <wire from="(680,2030)" to="(730,2030)"/> <wire from="(1820,2640)" to="(1820,2730)"/> <wire from="(770,2040)" to="(770,2050)"/> <wire from="(2280,2060)" to="(2300,2060)"/> <wire from="(2180,690)" to="(2190,690)"/> <wire from="(1830,610)" to="(1890,610)"/> <wire from="(1830,2210)" to="(1890,2210)"/> <wire from="(2700,890)" to="(2710,890)"/> <wire from="(130,1820)" to="(160,1820)"/> <wire from="(590,3250)" to="(610,3250)"/> <wire from="(720,170)" to="(750,170)"/> <wire from="(380,480)" to="(400,480)"/> <wire from="(2390,710)" to="(2390,910)"/> <wire from="(2250,1680)" to="(2300,1680)"/> <wire from="(1910,2650)" to="(1930,2650)"/> <wire from="(330,120)" to="(340,120)"/> <wire from="(1000,1750)" to="(1010,1750)"/> <wire from="(2230,390)" to="(2270,390)"/> <wire from="(1370,3280)" to="(1370,3320)"/> <wire from="(1890,1980)" to="(1920,1980)"/> <wire from="(810,1820)" to="(810,2020)"/> <wire from="(2840,2510)" to="(2840,2610)"/> <wire from="(770,2240)" to="(830,2240)"/> <wire from="(2590,900)" to="(2610,900)"/> <wire from="(2190,500)" to="(2210,500)"/> <wire from="(2280,910)" to="(2300,910)"/> <wire from="(2840,910)" to="(2840,1010)"/> <wire from="(770,640)" to="(830,640)"/> <wire from="(2640,710)" to="(2710,710)"/> <wire from="(2280,280)" to="(2290,280)"/> <wire from="(1890,1410)" to="(2840,1410)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(100,1920)" to="(130,1920)"/> <wire from="(130,1630)" to="(160,1630)"/> <wire from="(790,2620)" to="(810,2620)"/> <wire from="(1000,2840)" to="(1010,2840)"/> <wire from="(1000,3160)" to="(1010,3160)"/> <wire from="(2750,710)" to="(2800,710)"/> <wire from="(230,2700)" to="(250,2700)"/> <wire from="(860,2450)" to="(860,2550)"/> <wire from="(280,2510)" to="(280,2620)"/> <wire from="(100,970)" to="(120,970)"/> <wire from="(590,70)" to="(790,70)"/> <wire from="(270,2430)" to="(280,2430)"/> <wire from="(150,70)" to="(160,70)"/> <wire from="(2340,2740)" to="(2580,2740)"/> <wire from="(590,70)" to="(590,130)"/> <wire from="(3060,1990)" to="(3100,1990)"/> <wire from="(740,2840)" to="(740,3020)"/> <wire from="(1940,1840)" to="(1970,1840)"/> <wire from="(1860,1440)" to="(1890,1440)"/> <wire from="(1120,2960)" to="(1460,2960)"/> <wire from="(2390,500)" to="(2420,500)"/> <wire from="(2250,370)" to="(2270,370)"/> <wire from="(2280,2320)" to="(2300,2320)"/> <wire from="(2320,330)" to="(2320,380)"/> <wire from="(1930,830)" to="(1930,1030)"/> <wire from="(2640,2110)" to="(2720,2110)"/> <wire from="(2940,810)" to="(3020,810)"/> <wire from="(1840,3400)" to="(2800,3400)"/> <wire from="(2940,2410)" to="(3020,2410)"/> <wire from="(1160,2690)" to="(1160,2740)"/> <wire from="(130,1760)" to="(160,1760)"/> <wire from="(750,3030)" to="(770,3030)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(810,3410)" to="(830,3410)"/> <wire from="(1240,3210)" to="(1250,3210)"/> <wire from="(2030,3460)" to="(2860,3460)"/> <wire from="(2750,1160)" to="(2800,1160)"/> <wire from="(160,2500)" to="(250,2500)"/> <wire from="(590,2550)" to="(610,2550)"/> <wire from="(340,380)" to="(360,380)"/> <wire from="(1460,70)" to="(1460,1410)"/> <wire from="(230,2590)" to="(230,2700)"/> <wire from="(1370,3220)" to="(1370,3280)"/> <wire from="(150,2510)" to="(150,2620)"/> <wire from="(2250,1940)" to="(2300,1940)"/> <wire from="(100,1420)" to="(120,1420)"/> <wire from="(880,2670)" to="(1010,2670)"/> <wire from="(1370,3320)" to="(1400,3320)"/> <wire from="(870,3610)" to="(1010,3610)"/> <wire from="(850,580)" to="(860,580)"/> <wire from="(2810,1320)" to="(2810,1720)"/> <wire from="(1890,640)" to="(1920,640)"/> <wire from="(630,1450)" to="(770,1450)"/> <wire from="(630,3050)" to="(770,3050)"/> <wire from="(670,170)" to="(720,170)"/> <wire from="(860,850)" to="(860,1050)"/> <wire from="(770,2430)" to="(770,2440)"/> <wire from="(770,830)" to="(770,840)"/> <wire from="(2820,1710)" to="(2840,1710)"/> <wire from="(640,140)" to="(690,140)"/> <wire from="(2580,2100)" to="(2610,2100)"/> <wire from="(1850,1450)" to="(1850,1850)"/> <wire from="(1820,1420)" to="(1820,1820)"/> <wire from="(250,390)" to="(300,390)"/> <wire from="(2150,1680)" to="(2170,1680)"/> <wire from="(2190,2680)" to="(2210,2680)"/> <wire from="(2390,910)" to="(2390,1090)"/> <wire from="(1300,610)" to="(1810,610)"/> <wire from="(1740,1840)" to="(1740,2610)"/> <wire from="(3010,3190)" to="(3020,3190)"/> <wire from="(280,340)" to="(280,370)"/> <wire from="(2890,1790)" to="(2900,1790)"/> <wire from="(2890,3390)" to="(2900,3390)"/> <wire from="(2710,2890)" to="(2720,2890)"/> <wire from="(1590,640)" to="(1840,640)"/> <wire from="(2280,2660)" to="(2280,2720)"/> <wire from="(2710,1290)" to="(2720,1290)"/> <wire from="(100,2180)" to="(130,2180)"/> <wire from="(2620,2290)" to="(2620,2490)"/> <wire from="(100,1860)" to="(130,1860)"/> <wire from="(130,1570)" to="(160,1570)"/> <wire from="(810,3220)" to="(830,3220)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(590,3640)" to="(610,3640)"/> <wire from="(2190,2250)" to="(2190,2260)"/> <wire from="(2250,1110)" to="(2300,1110)"/> <wire from="(400,140)" to="(400,180)"/> <wire from="(2620,690)" to="(2620,890)"/> <wire from="(2280,2720)" to="(2280,2860)"/> <wire from="(2840,2010)" to="(2900,2010)"/> <wire from="(2760,1310)" to="(2800,1310)"/> <wire from="(2760,2910)" to="(2800,2910)"/> <wire from="(2580,1680)" to="(2580,1700)"/> <wire from="(2340,2680)" to="(2580,2680)"/> <wire from="(1430,2870)" to="(1460,2870)"/> <wire from="(870,1820)" to="(1010,1820)"/> <wire from="(2580,2320)" to="(2580,2340)"/> <wire from="(2490,1360)" to="(2530,1360)"/> <wire from="(1240,770)" to="(1260,770)"/> <wire from="(2270,320)" to="(2300,320)"/> <wire from="(770,640)" to="(770,650)"/> <wire from="(2160,2450)" to="(2190,2450)"/> <wire from="(2680,420)" to="(2700,420)"/> <wire from="(680,630)" to="(730,630)"/> <wire from="(690,1920)" to="(740,1920)"/> <wire from="(680,2230)" to="(730,2230)"/> <wire from="(770,2240)" to="(770,2250)"/> <wire from="(2280,2260)" to="(2300,2260)"/> <wire from="(1120,1630)" to="(1120,1660)"/> <wire from="(2340,1110)" to="(2420,1110)"/> <wire from="(2310,380)" to="(2320,380)"/> <wire from="(2180,890)" to="(2190,890)"/> <wire from="(1240,2610)" to="(1740,2610)"/> <wire from="(1830,2410)" to="(1890,2410)"/> <wire from="(1830,810)" to="(1890,810)"/> <wire from="(870,100)" to="(870,120)"/> <wire from="(2790,3420)" to="(2800,3420)"/> <wire from="(120,410)" to="(150,410)"/> <wire from="(100,2310)" to="(130,2310)"/> <wire from="(2810,3120)" to="(2810,3390)"/> <wire from="(590,1850)" to="(610,1850)"/> <wire from="(210,2430)" to="(230,2430)"/> <wire from="(2080,1140)" to="(2520,1140)"/> <wire from="(1620,840)" to="(1620,1210)"/> <wire from="(2250,1880)" to="(2300,1880)"/> <wire from="(620,1320)" to="(620,1440)"/> <wire from="(1240,1410)" to="(1460,1410)"/> <wire from="(1380,70)" to="(1380,1010)"/> <wire from="(1040,390)" to="(1050,390)"/> <wire from="(2470,3070)" to="(2510,3070)"/> <wire from="(1890,2180)" to="(1920,2180)"/> <comp loc="(2340,2070)" name="D-latch"/> <comp lib="4" loc="(2340,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,670)" name="Tunnel"> <a name="label" val="O8/16"/> </comp> <comp lib="0" loc="(1000,520)" name="Constant"/> <comp loc="(2940,1400)" name="D-latch"/> <comp lib="0" loc="(3100,3190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,2350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(300,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(120,1270)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="1" loc="(2460,920)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(2277,435)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,2500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(2820,1710)" name="Controlled Buffer"/> <comp lib="1" loc="(750,1830)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="1" loc="(1830,2760)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1470)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(120,810)" name="Tunnel"> <a name="label" val="OB2"/> </comp> <comp loc="(2340,1100)" name="D-latch"/> <comp lib="1" loc="(2460,720)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1094,2769)" name="Text"> <a name="text" val="NTHIN"/> </comp> <comp lib="1" loc="(460,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1820,597)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="1" loc="(1830,1410)" name="Controlled Buffer"/> <comp lib="1" loc="(2190,2880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(2640,2710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(380,130)" name="D-latch"/> <comp lib="0" loc="(2150,2280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(3010,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1830,1210)" name="Controlled Buffer"/> <comp lib="0" loc="(930,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(700,2640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(2530,3120)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(650,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="6" loc="(1870,2674)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(474,432)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(100,2120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(2170,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV0"/> </comp> <comp lib="0" loc="(120,730)" name="Tunnel"> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(2250,2740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(100,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(2760,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1840,2810)" name="Controlled Buffer"/> <comp lib="0" loc="(100,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0&quot;"/> </comp> <comp lib="0" loc="(100,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp lib="0" loc="(120,1220)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(100,1920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(130,2150)" name="Tunnel"> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(340,300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1170,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1067,1561)" name="Text"> <a name="text" val="THZB"/> </comp> <comp lib="1" loc="(1860,2580)" name="Controlled Buffer"/> <comp lib="1" loc="(160,2610)" name="Controlled Buffer"/> <comp lib="1" loc="(160,2500)" name="Controlled Buffer"/> <comp lib="1" loc="(200,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2760,1900)" name="D-latch"/> <comp lib="6" loc="(2406,150)" name="Text"> <a name="text" val="PATTERN ADDRESS GENERATOR"/> <a name="font" val="SansSerif plain 26"/> </comp> <comp loc="(2940,2000)" name="D-latch"/> <comp lib="0" loc="(1800,2380)" name="Constant"/> <comp lib="1" loc="(1830,2410)" name="Controlled Buffer"/> <comp lib="0" loc="(2710,2490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(1240,3140)" name="PAR_3BIT_COUNTER"/> <comp lib="0" loc="(2470,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="O8/16"/> </comp> <comp loc="(380,230)" name="D-latch"/> <comp lib="2" loc="(2640,2310)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2340,1730)" name="D-latch"/> <comp loc="(2750,700)" name="D-latch"/> <comp lib="0" loc="(2150,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(100,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(320,2700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(790,2630)" name="D-latch"/> <comp lib="0" loc="(1450,3280)" name="Tunnel"> <a name="label" val="#BLNK"/> </comp> <comp lib="1" loc="(2820,2110)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(2190,1280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2150,2880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD7"/> </comp> <comp lib="6" loc="(918,2816)" name="Text"> <a name="text" val="NTH"/> </comp> <comp lib="0" loc="(1000,1750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(100,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/1"/> </comp> <comp lib="0" loc="(2250,2340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(3010,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(2340,2130)" name="D-latch"/> <comp lib="0" loc="(100,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TSTEP"/> </comp> <comp lib="1" loc="(2190,1680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,2210)" name="Tunnel"> <a name="label" val="PD7"/> </comp> <comp lib="6" loc="(1177,2709)" name="Text"> <a name="text" val="TVZ"/> </comp> <comp lib="1" loc="(2820,1160)" name="Controlled Buffer"/> <comp lib="6" loc="(987,1016)" name="Text"> <a name="text" val="TH2"/> </comp> <comp loc="(3060,600)" name="D-latch"/> <comp lib="0" loc="(710,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(660,2670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(750,170)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp lib="6" loc="(1802,2675)" name="Text"> <a name="text" val="PAH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(850,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp loc="(2340,1270)" name="D-latch"/> <comp lib="0" loc="(120,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(2280,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp loc="(2760,2700)" name="D-latch"/> <comp lib="0" loc="(2270,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(100,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp loc="(2250,2470)" name="D-latch"/> <comp lib="0" loc="(680,2830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1000,3060)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(100,2030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(1290,3260)" name="Tunnel"> <a name="label" val="/FVO0"/> </comp> <comp lib="1" loc="(250,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2890,1190)" name="Constant"/> <comp lib="0" loc="(2250,2140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(3100,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(320,2480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(170,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,1250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(2760,2300)" name="D-latch"/> <comp lib="0" loc="(700,2360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(2890,1790)" name="Constant"/> <comp lib="0" loc="(1970,1240)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(1800,2235)" name="Text"> <a name="text" val="PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2890,790)" name="Constant"/> <comp lib="0" loc="(680,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(100,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(1000,1470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(2180,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1000,2880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> </comp> <comp lib="2" loc="(2640,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1099,3130)" name="Text"> <a name="text" val="FVIN"/> </comp> <comp lib="4" loc="(870,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1860,840)" name="Controlled Buffer"/> <comp lib="1" loc="(630,3440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2890,2790)" name="Constant"/> <comp lib="1" loc="(1860,2380)" name="Controlled Buffer"/> <comp lib="0" loc="(2250,1940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB2"/> </comp> <comp lib="4" loc="(850,100)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(992,1815)" name="Text"> <a name="text" val="TV0"/> </comp> <comp lib="1" loc="(200,1810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2940,2400)" name="D-latch"/> <comp lib="0" loc="(3010,2590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1920,1840)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp loc="(2340,2930)" name="D-latch"/> <comp lib="0" loc="(2710,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(630,1450)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1000,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(2190,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3100,2390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA8"/> <a name="labelloc" val="east"/> </comp> <comp loc="(2340,2670)" name="D-latch"/> <comp lib="0" loc="(130,2270)" name="Tunnel"> <a name="label" val="OBSEL"/> </comp> <comp lib="6" loc="(991,2665)" name="Text"> <a name="text" val="0/TV"/> </comp> <comp lib="0" loc="(1800,1980)" name="Constant"/> <comp lib="1" loc="(2750,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="0" loc="(210,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="6" loc="(1094,2969)" name="Text"> <a name="text" val="NTVIN"/> </comp> <comp lib="0" loc="(260,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(630,650)" name="Controlled Buffer"/> <comp lib="1" loc="(2190,2280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,2720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(130,1920)" name="Tunnel"> <a name="label" val="RC"/> </comp> <comp loc="(2340,2470)" name="D-latch"/> <comp lib="0" loc="(1970,1840)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(100,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(100,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/1"/> </comp> <comp lib="0" loc="(220,1860)" name="Tunnel"> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(1730,170)" name="Tunnel"> <a name="label" val="OV2"/> </comp> <comp lib="1" loc="(1430,2710)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1420,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO3"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2250,2870)" name="D-latch"/> <comp lib="6" loc="(990,1218)" name="Text"> <a name="text" val="TH3"/> </comp> <comp lib="0" loc="(1730,200)" name="Tunnel"> <a name="label" val="OV3"/> </comp> <comp lib="1" loc="(1440,3210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(993,2414)" name="Text"> <a name="text" val="TV3"/> </comp> <comp lib="0" loc="(2160,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1860,1840)" name="Controlled Buffer"/> <comp lib="1" loc="(450,130)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(640,140)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1000,1780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(680,1830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="6" loc="(992,2016)" name="Text"> <a name="text" val="TV1"/> </comp> <comp lib="0" loc="(3100,2190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2590,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO1"/> </comp> <comp loc="(2940,2200)" name="D-latch"/> <comp lib="2" loc="(2640,1910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(590,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(3010,3390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,2000)" name="Tunnel"> <a name="label" val="PD0"/> </comp> <comp lib="2" loc="(2640,2110)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(680,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(2160,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2150,2480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(1610,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV3"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(290,2480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2340,1930)" name="D-latch"/> <comp lib="0" loc="(120,930)" name="Tunnel"> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(2890,3390)" name="Constant"/> <comp lib="1" loc="(2820,2710)" name="Controlled Buffer"/> <comp lib="1" loc="(630,2550)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2250,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(240,500)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2170,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV3"/> </comp> <comp lib="2" loc="(2640,2510)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="4" loc="(870,1420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1920,1240)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(1830,810)" name="Controlled Buffer"/> <comp lib="1" loc="(1170,100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2940,800)" name="D-latch"/> <comp lib="0" loc="(360,300)" name="Tunnel"> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(680,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(790,3670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(590,3440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(2820,710)" name="Controlled Buffer"/> <comp lib="0" loc="(800,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(1190,100)" name="Tunnel"> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(1930,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(2640,1710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(700,90)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(870,2820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2940,1200)" name="D-latch"/> <comp lib="0" loc="(1000,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="0" loc="(100,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(2710,2890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(3100,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(870,1820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1810,2310)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1920,1040)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(660,2710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(680,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(750,830)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1820,2240)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(2890,2190)" name="Constant"/> <comp loc="(2760,2500)" name="D-latch"/> <comp lib="0" loc="(2150,1880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(100,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(2820,3110)" name="Controlled Buffer"/> <comp lib="0" loc="(590,3250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp loc="(2940,3400)" name="D-latch"/> <comp lib="6" loc="(630,2741)" name="Text"> <a name="text" val="TVZ"/> </comp> <comp loc="(2340,2730)" name="D-latch"/> <comp lib="1" loc="(750,630)" name="Controlled Buffer"/> <comp lib="0" loc="(100,2270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> </comp> <comp lib="1" loc="(1070,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(710,2720)" name="D-latch"/> <comp lib="0" loc="(590,2550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp loc="(250,230)" name="D-latch"/> <comp lib="0" loc="(850,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp loc="(1240,470)" name="PAR_5BIT_COUNTER"/> <comp lib="0" loc="(1970,1440)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp loc="(2940,3000)" name="D-latch"/> <comp lib="0" loc="(1000,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(100,1860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp loc="(2940,2800)" name="D-latch"/> <comp lib="6" loc="(1178,1561)" name="Text"> <a name="text" val="THZ"/> </comp> <comp loc="(2250,720)" name="D-latch"/> <comp lib="0" loc="(2160,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1730,110)" name="Tunnel"> <a name="label" val="OV0"/> </comp> <comp loc="(3060,1000)" name="D-latch"/> <comp lib="0" loc="(2170,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(2250,2940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(1640,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV2"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(870,2220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1800,2180)" name="Constant"/> <comp loc="(2760,1700)" name="D-latch"/> <comp lib="0" loc="(680,2230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(200,1680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(993,2215)" name="Text"> <a name="text" val="TV2"/> </comp> <comp lib="0" loc="(2890,1990)" name="Constant"/> <comp lib="0" loc="(130,2310)" name="Tunnel"> <a name="label" val="BGSEL"/> </comp> <comp lib="1" loc="(1430,3400)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,2610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(250,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2150,2080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD3"/> </comp> <comp loc="(380,490)" name="D-latch"/> <comp lib="0" loc="(2140,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(120,1010)" name="Tunnel"> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(750,2530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1000,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(3010,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(3100,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(994,3625)" name="Text"> <a name="text" val="FV2"/> </comp> <comp lib="0" loc="(3100,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1860,1040)" name="Controlled Buffer"/> <comp lib="0" loc="(1000,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(290,2700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(750,3030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(2250,1270)" name="D-latch"/> <comp lib="0" loc="(2180,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="2" loc="(2640,2910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,2180)" name="Tunnel"> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(2710,2290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(2750,900)" name="D-latch"/> <comp lib="0" loc="(2170,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV1"/> </comp> <comp lib="4" loc="(870,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2150,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(1000,3000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(1988,2758)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,580)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(3100,2590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(750,3420)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(200,1860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(780,1630)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(2790,3420)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(2640,3110)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(3010,1990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(680,3420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(320,2590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1240,1670)" name="PAR_5BIT_COUNTER"/> <comp lib="0" loc="(590,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1800,2580)" name="Constant"/> <comp lib="0" loc="(220,1810)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp loc="(2340,2330)" name="D-latch"/> <comp lib="1" loc="(780,120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,3640)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1460,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(120,1120)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(220,1680)" name="Tunnel"> <a name="label" val="/W6.1'"/> </comp> <comp loc="(2940,600)" name="D-latch"/> <comp lib="0" loc="(1970,1980)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(690,1630)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2890,2990)" name="Constant"/> <comp lib="0" loc="(3010,1390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(2340,1330)" name="D-latch"/> <comp loc="(2340,2270)" name="D-latch"/> <comp lib="1" loc="(1830,2010)" name="Controlled Buffer"/> <comp lib="0" loc="(1000,1700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="4" loc="(290,2590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2250,2540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(3010,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp lib="0" loc="(1000,3180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(590,2950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W0'"/> </comp> <comp lib="6" loc="(712,1672)" name="Text"> <a name="text" val="FVZ"/> </comp> <comp loc="(2940,3200)" name="D-latch"/> <comp lib="1" loc="(1400,3320)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(590,3640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(100,2210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="2" loc="(2560,1350)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,3230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(630,3250)" name="Controlled Buffer"/> <comp lib="1" loc="(1860,640)" name="Controlled Buffer"/> <comp lib="0" loc="(1670,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2660,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(590,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(750,1230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="6" loc="(830,2711)" name="Text"> <a name="text" val="/TVZ''"/> </comp> <comp lib="0" loc="(100,2310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> </comp> <comp lib="1" loc="(2190,2080)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1170)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(100,2060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(590,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(1860,1440)" name="Controlled Buffer"/> <comp lib="0" loc="(1300,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO0"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(777,285)" name="Text"> <a name="text" val="W6.2 LOADER"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="2" loc="(2830,3410)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(570,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(650,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(590,3050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(2710,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2890,2390)" name="Constant"/> <comp lib="0" loc="(660,2640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(1000,3200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp loc="(2340,2870)" name="D-latch"/> <comp lib="1" loc="(200,1620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2560,1390)" name="Tunnel"> <a name="label" val="O8/16"/> </comp> <comp lib="0" loc="(2590,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO2"/> </comp> <comp lib="6" loc="(2370,312)" name="Text"> <a name="text" val="VDIR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> </comp> <comp lib="0" loc="(2230,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(1969,542)" name="Text"> <a name="text" val="$2007W"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="4" loc="(870,2420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,2350)" name="Tunnel"> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(630,1050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2890,590)" name="Constant"/> <comp lib="0" loc="(2160,2250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="4" loc="(870,3020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(750,3620)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2160,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,2180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp loc="(2340,1670)" name="D-latch"/> <comp lib="6" loc="(2788,377)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(630,1850)" name="Controlled Buffer"/> <comp lib="0" loc="(2890,2590)" name="Constant"/> <comp lib="0" loc="(2890,3190)" name="Constant"/> <comp lib="1" loc="(2820,500)" name="Controlled Buffer"/> <comp loc="(3060,1400)" name="D-latch"/> <comp loc="(2250,920)" name="D-latch"/> <comp lib="1" loc="(1860,2180)" name="Controlled Buffer"/> <comp lib="0" loc="(270,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(1970,640)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(130,50)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(750,2430)" name="Controlled Buffer"/> <comp lib="1" loc="(1830,1810)" name="Controlled Buffer"/> <comp lib="0" loc="(1000,2860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="1" loc="(2460,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1370)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(850,3670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="1" loc="(1840,3400)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2820,910)" name="Controlled Buffer"/> <comp lib="1" loc="(1840,3010)" name="Controlled Buffer"/> <comp lib="6" loc="(1344,2693)" name="Text"> <a name="text" val="THZ"/> </comp> <comp lib="0" loc="(1040,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(130,2030)" name="Tunnel"> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(120,1420)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp loc="(3060,3000)" name="D-latch"/> <comp lib="0" loc="(3100,2990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA11"/> <a name="labelloc" val="east"/> </comp> <comp loc="(2760,1300)" name="D-latch"/> <comp lib="0" loc="(590,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(1970,1040)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(330,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(2340,3120)" name="D-latch"/> <comp lib="6" loc="(919,3015)" name="Text"> <a name="text" val="NTV"/> </comp> <comp lib="0" loc="(590,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(630,2450)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(590,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(2710,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(990,615)" name="Text"> <a name="text" val="TH0"/> </comp> <comp lib="0" loc="(680,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp loc="(3060,2800)" name="D-latch"/> <comp lib="0" loc="(120,770)" name="Tunnel"> <a name="label" val="OB1"/> </comp> <comp loc="(2940,1800)" name="D-latch"/> <comp lib="0" loc="(220,1750)" name="Tunnel"> <a name="label" val="/W5.1'"/> </comp> <comp lib="1" loc="(630,850)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(870,2520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1920,840)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(630,2850)" name="Controlled Buffer"/> <comp lib="6" loc="(988,1416)" name="Text"> <a name="text" val="TH4"/> </comp> <comp lib="1" loc="(1830,2610)" name="Controlled Buffer"/> <comp lib="0" loc="(690,1920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(3100,3390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1500,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1116,394)" name="Text"> <a name="text" val="THIN"/> </comp> <comp lib="0" loc="(130,2090)" name="Tunnel"> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp loc="(3060,1200)" name="D-latch"/> <comp loc="(2760,2100)" name="D-latch"/> <comp lib="0" loc="(1000,3650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="4" loc="(870,3220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1380,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO2"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(1870,2640)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,890)" name="Tunnel"> <a name="label" val="OB4"/> </comp> <comp lib="1" loc="(1920,640)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(750,2830)" name="Controlled Buffer"/> <comp lib="1" loc="(1830,1010)" name="Controlled Buffer"/> <comp lib="0" loc="(1340,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1290,3460)" name="Tunnel"> <a name="label" val="/FVO1"/> </comp> <comp lib="0" loc="(2590,3100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BGSEL"/> </comp> <comp lib="0" loc="(1190,220)" name="Tunnel"> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(790,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp loc="(2760,3100)" name="D-latch"/> <comp lib="1" loc="(1440,3090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1104,1623)" name="Text"> <a name="text" val="TVIN"/> </comp> <comp lib="0" loc="(100,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/2"/> </comp> <comp lib="6" loc="(1902,2314)" name="Text"> <a name="text" val="DB/PAR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(600,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(220,1620)" name="Tunnel"> <a name="label" val="/W5.2'"/> </comp> <comp lib="2" loc="(2640,500)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1000,3160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,1320)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1290,3660)" name="Tunnel"> <a name="label" val="/FVO2"/> </comp> <comp lib="0" loc="(2160,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(590,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="2" loc="(2640,1310)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2180,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(590,2250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(1700,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(680,2530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="6" loc="(642,2614)" name="Text"> <a name="text" val="TV NULLER"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="0" loc="(1000,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="0" loc="(120,850)" name="Tunnel"> <a name="label" val="OB3"/> </comp> <comp lib="4" loc="(870,3410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2760,2900)" name="D-latch"/> <comp loc="(2250,2670)" name="D-latch"/> <comp lib="6" loc="(996,3429)" name="Text"> <a name="text" val="FV1"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp loc="(3060,2000)" name="D-latch"/> <comp loc="(3060,2600)" name="D-latch"/> <comp lib="1" loc="(750,2030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(3060,2200)" name="D-latch"/> <comp lib="0" loc="(2180,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(2340,720)" name="D-latch"/> <comp lib="0" loc="(2700,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,2150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(1860,1980)" name="Controlled Buffer"/> <comp lib="0" loc="(2680,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp loc="(2250,2270)" name="D-latch"/> <comp loc="(2340,1870)" name="D-latch"/> <comp lib="0" loc="(2890,990)" name="Constant"/> <comp lib="0" loc="(2710,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1830,2210)" name="Controlled Buffer"/> <comp lib="1" loc="(2820,2310)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/2"/> </comp> <comp lib="0" loc="(590,3340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(2700,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(120,290)" name="Tunnel"> <a name="label" val="l1/32"/> </comp> <comp loc="(2940,2600)" name="D-latch"/> <comp lib="0" loc="(1140,160)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(180,400)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,2050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(3060,800)" name="D-latch"/> <comp lib="0" loc="(3010,3190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(790,2720)" name="D-latch"/> <comp lib="1" loc="(1920,2180)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp loc="(1240,2980)" name="PAR_1BIT_COUNTER"/> <comp lib="1" loc="(2820,2910)" name="Controlled Buffer"/> <comp lib="0" loc="(120,970)" name="Tunnel"> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(3010,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1070,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2160,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2700,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,2060)" name="Tunnel"> <a name="label" val="PD2"/> </comp> <comp lib="1" loc="(1920,1980)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(2820,1910)" name="Controlled Buffer"/> <comp lib="0" loc="(680,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(710,3120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(3010,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(880,2670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2190,2480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(710,1592)" name="Text"> <a name="text" val="THZB"/> </comp> <comp loc="(2250,1870)" name="D-latch"/> <comp lib="0" loc="(2890,1390)" name="Constant"/> <comp lib="0" loc="(100,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="1" loc="(200,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2590,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO0"/> </comp> <comp lib="0" loc="(680,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(680,3230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1970,2180)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp loc="(980,110)" name="D-latch"/> <comp lib="0" loc="(220,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(2460,1100)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(3100,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1040,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(2580,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> </comp> <comp lib="6" loc="(1260,2872)" name="Text"> <a name="text" val="NTH0"/> </comp> <comp lib="0" loc="(100,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="6" loc="(1259,3072)" name="Text"> <a name="text" val="NTV0"/> </comp> <comp lib="0" loc="(1970,840)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(750,1030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2820,2510)" name="Controlled Buffer"/> <comp loc="(2340,510)" name="D-latch"/> <comp lib="0" loc="(590,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="1" loc="(1430,2870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,3050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(2250,510)" name="D-latch"/> <comp lib="6" loc="(2404,259)" name="Text"> <a name="text" val="SPRITE V. INVERSION"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(995,2614)" name="Text"> <a name="text" val="TV4"/> </comp> <comp loc="(2250,2070)" name="D-latch"/> <comp lib="0" loc="(3010,2990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(1066,2712)" name="Text"> <a name="text" val="TVZB"/> </comp> <comp lib="1" loc="(2310,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2250,3130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp lib="4" loc="(870,2020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2250,1740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB1"/> </comp> <comp loc="(3060,2400)" name="D-latch"/> <comp lib="0" loc="(220,90)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(360,380)" name="Tunnel"> <a name="label" val="THSTEP"/> </comp> <comp lib="4" loc="(870,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2250,1100)" name="D-latch"/> <comp lib="2" loc="(2640,910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1000,3040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp loc="(3060,3200)" name="D-latch"/> <comp lib="1" loc="(2190,2680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,1470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(2060,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2820,1310)" name="Controlled Buffer"/> <comp lib="0" loc="(3010,2790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1920,1440)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(3100,1990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2480,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OBSEL"/> </comp> <comp loc="(2340,2530)" name="D-latch"/> <comp lib="0" loc="(2710,1690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(2940,1000)" name="D-latch"/> <comp lib="0" loc="(220,1560)" name="Tunnel"> <a name="label" val="/W0'"/> </comp> <comp loc="(1240,2780)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(2160,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(3010,2390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(2340,920)" name="D-latch"/> <comp lib="0" loc="(130,2120)" name="Tunnel"> <a name="label" val="PD4"/> </comp> <comp lib="6" loc="(994,3237)" name="Text"> <a name="text" val="FV0"/> </comp> <comp lib="1" loc="(1830,610)" name="Controlled Buffer"/> <comp lib="1" loc="(1840,3210)" name="Controlled Buffer"/> <comp lib="0" loc="(1730,140)" name="Tunnel"> <a name="label" val="OV1"/> </comp> <comp lib="6" loc="(993,817)" name="Text"> <a name="text" val="TH1"/> </comp> <comp lib="0" loc="(1850,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="north"/> </comp> <comp loc="(3060,3400)" name="D-latch"/> <comp lib="0" loc="(680,3030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(330,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(3100,2790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3100,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(2150,2680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD6"/> </comp> <comp loc="(2750,490)" name="D-latch"/> <comp lib="4" loc="(870,3610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(750,1430)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1860,1240)" name="Controlled Buffer"/> <comp loc="(2250,1670)" name="D-latch"/> <comp lib="0" loc="(1000,3080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> </comp> <comp lib="1" loc="(160,2720)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(200,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(2710,3090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(750,2230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(3060,1800)" name="D-latch"/> <comp lib="1" loc="(1090,400)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(710,3620)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(340,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(630,2250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1450,3320)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(590,1920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="4" loc="(870,1220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="EXT_IO"> <a name="circuit" val="EXT_IO"/> <a name="clabel" val="EXT IO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 18"/> <appear> <path d="M185,40 Q189,50 193,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#e8ffee" height="70" stroke="#000000" stroke-width="2" width="250" x="50" y="40"/> <polyline fill="none" points="50,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="94">/SLAVE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="140" y="58">EXT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="58">EXT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="219" y="58">EXT2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="58">EXT3</text> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,120" width="8" x="126" y="106"/> <circ-port height="10" pin="100,180" width="10" x="145" y="105"/> <circ-port height="8" pin="100,260" width="8" x="166" y="106"/> <circ-port height="10" pin="100,320" width="10" x="185" y="105"/> <circ-port height="8" pin="100,400" width="8" x="206" y="106"/> <circ-port height="10" pin="100,460" width="10" x="225" y="105"/> <circ-port height="8" pin="100,540" width="8" x="246" y="106"/> <circ-port height="10" pin="100,600" width="10" x="265" y="105"/> <circ-port height="8" pin="100,670" width="8" x="46" y="86"/> <circ-port height="10" pin="340,120" width="10" x="125" y="35"/> <circ-port height="8" pin="340,190" width="8" x="146" y="36"/> <circ-port height="10" pin="340,260" width="10" x="165" y="35"/> <circ-port height="8" pin="340,330" width="8" x="186" y="36"/> <circ-port height="10" pin="340,400" width="10" x="205" y="35"/> <circ-port height="8" pin="340,470" width="8" x="226" y="36"/> <circ-port height="10" pin="340,540" width="10" x="245" y="35"/> <circ-port height="8" pin="340,610" width="8" x="266" y="36"/> <circ-anchor facing="east" height="6" width="6" x="297" y="37"/> </appear> <wire from="(220,190)" to="(340,190)"/> <wire from="(220,330)" to="(340,330)"/> <wire from="(220,470)" to="(340,470)"/> <wire from="(220,610)" to="(340,610)"/> <wire from="(160,100)" to="(160,240)"/> <wire from="(160,240)" to="(160,380)"/> <wire from="(160,380)" to="(160,520)"/> <wire from="(300,590)" to="(300,670)"/> <wire from="(300,170)" to="(300,270)"/> <wire from="(300,310)" to="(300,410)"/> <wire from="(300,450)" to="(300,550)"/> <wire from="(220,170)" to="(250,170)"/> <wire from="(220,310)" to="(250,310)"/> <wire from="(220,450)" to="(250,450)"/> <wire from="(220,590)" to="(250,590)"/> <wire from="(100,60)" to="(130,60)"/> <wire from="(270,170)" to="(300,170)"/> <wire from="(270,310)" to="(300,310)"/> <wire from="(270,450)" to="(300,450)"/> <wire from="(270,590)" to="(300,590)"/> <wire from="(310,120)" to="(340,120)"/> <wire from="(310,260)" to="(340,260)"/> <wire from="(310,400)" to="(340,400)"/> <wire from="(310,540)" to="(340,540)"/> <wire from="(100,180)" to="(190,180)"/> <wire from="(100,320)" to="(190,320)"/> <wire from="(100,460)" to="(190,460)"/> <wire from="(100,600)" to="(190,600)"/> <wire from="(160,60)" to="(160,100)"/> <wire from="(300,130)" to="(300,170)"/> <wire from="(300,270)" to="(300,310)"/> <wire from="(300,410)" to="(300,450)"/> <wire from="(300,550)" to="(300,590)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(160,520)" to="(180,520)"/> <wire from="(100,120)" to="(180,120)"/> <wire from="(100,260)" to="(180,260)"/> <wire from="(100,400)" to="(180,400)"/> <wire from="(100,540)" to="(180,540)"/> <wire from="(150,60)" to="(160,60)"/> <wire from="(220,120)" to="(290,120)"/> <wire from="(220,260)" to="(290,260)"/> <wire from="(220,400)" to="(290,400)"/> <wire from="(220,540)" to="(290,540)"/> <wire from="(100,670)" to="(300,670)"/> <comp lib="1" loc="(190,600)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(190,320)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(310,400)" name="Controlled Buffer"/> <comp loc="(220,530)" name="D-latch"/> <comp lib="0" loc="(130,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT1_IN"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(250,310)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SLAVE"/> </comp> <comp loc="(220,110)" name="D-latch"/> <comp lib="0" loc="(340,190)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(190,180)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(186,65)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(340,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,590)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT2_OUT"/> </comp> <comp loc="(220,390)" name="D-latch"/> <comp lib="1" loc="(310,120)" name="Controlled Buffer"/> <comp lib="1" loc="(310,540)" name="Controlled Buffer"/> <comp lib="0" loc="(340,330)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT1_OUT"/> </comp> <comp lib="0" loc="(340,470)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,260)" name="Controlled Buffer"/> <comp lib="0" loc="(100,600)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT3_IN"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT3_OUT"/> </comp> <comp lib="1" loc="(250,170)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(340,610)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT0_OUT"/> </comp> <comp lib="0" loc="(100,460)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT2_IN"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT0_IN"/> </comp> <comp lib="1" loc="(250,450)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,460)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(220,250)" name="D-latch"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="2.7.1" version="1.0"> This file is intended to be loaded by Logisim (http://www.cburch.com/logisim/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="tristate" val="false"/> </tool> <tool name="Probe"> <a name="facing" val="west"/> <a name="radix" val="8"/> <a name="labelfont" val="SansSerif plain 40"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"> <tool name="ROM"> <a name="contents">addr/data: 8 8 0 </a> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> </lib> <main name="MAIN"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="text" val=""/> <a name="font" val="SansSerif plain 12"/> <a name="halign" val="center"/> <a name="valign" val="base"/> </tool> <sep/> <tool lib="0" name="Pin"> <a name="tristate" val="false"/> </tool> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="labelloc" val="east"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="MAIN"> <a name="circuit" val="MAIN"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> </circuit> <circuit name="6538"> <a name="circuit" val="6538"/> <a name="clabel" val="6538"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M655,33 Q659,43 663,33" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff9955" height="570" stroke="#000000" stroke-width="2" width="340" x="420" y="30"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="95">AD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="565">/INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="375">AD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="336">AD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="733" y="586">VIDEO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="585">CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="470">EXT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="215">AD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="504">PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="121">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="181">DB3</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="588" y="65">PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="65">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="295">AD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="175">AD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="405">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="355">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="445">PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="151">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="405">PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="335">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="55">ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="740" y="525">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="464">PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="212">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="270">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="255">AD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="241">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="440">EXT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="500">EXT2</text> <polyline fill="none" points="492,33 492,601" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="739" y="425">PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="300">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="736" y="566">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="439" y="375">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="440" y="91">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="738" y="545">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="737" y="484">PA12</text> <polyline fill="none" points="692,31 692,601" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="741" y="135">AD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="443" y="530">EXT3</text> <circ-port height="10" pin="150,510" width="10" x="755" y="575"/> <circ-port height="8" pin="120,690" width="8" x="756" y="556"/> <circ-port height="10" pin="120,1830" width="10" x="415" y="555"/> <circ-port height="8" pin="1350,110" width="8" x="416" y="396"/> <circ-port height="8" pin="1390,110" width="8" x="416" y="366"/> <circ-port height="8" pin="1430,110" width="8" x="416" y="346"/> <circ-port height="8" pin="1470,110" width="8" x="416" y="326"/> <circ-port height="8" pin="1510,110" width="8" x="416" y="56"/> <circ-port height="10" pin="2530,110" width="10" x="415" y="295"/> <circ-port height="8" pin="2550,110" width="8" x="416" y="286"/> <circ-port height="10" pin="2480,110" width="10" x="415" y="265"/> <circ-port height="8" pin="2500,110" width="8" x="416" y="256"/> <circ-port height="10" pin="2420,110" width="10" x="415" y="235"/> <circ-port height="8" pin="2440,110" width="8" x="416" y="226"/> <circ-port height="10" pin="2360,110" width="10" x="415" y="205"/> <circ-port height="8" pin="2380,110" width="8" x="416" y="196"/> <circ-port height="10" pin="2300,110" width="10" x="415" y="175"/> <circ-port height="8" pin="2320,110" width="8" x="416" y="166"/> <circ-port height="10" pin="2240,110" width="10" x="415" y="145"/> <circ-port height="8" pin="2260,110" width="8" x="416" y="136"/> <circ-port height="10" pin="2180,110" width="10" x="415" y="115"/> <circ-port height="8" pin="2200,110" width="8" x="416" y="106"/> <circ-port height="10" pin="2120,110" width="10" x="415" y="85"/> <circ-port height="8" pin="2140,110" width="8" x="416" y="76"/> <circ-port height="10" pin="2870,110" width="10" x="415" y="435"/> <circ-port height="8" pin="2930,110" width="8" x="416" y="426"/> <circ-port height="10" pin="2990,110" width="10" x="415" y="465"/> <circ-port height="8" pin="3050,110" width="8" x="416" y="456"/> <circ-port height="10" pin="3110,110" width="10" x="415" y="495"/> <circ-port height="8" pin="3170,110" width="8" x="416" y="486"/> <circ-port height="10" pin="3230,110" width="10" x="415" y="525"/> <circ-port height="8" pin="3290,110" width="8" x="416" y="516"/> <circ-port height="10" pin="1980,4660" width="10" x="755" y="515"/> <circ-port height="10" pin="2030,4660" width="10" x="755" y="535"/> <circ-port height="10" pin="2080,4660" width="10" x="755" y="495"/> <circ-port height="10" pin="2130,4660" width="10" x="755" y="475"/> <circ-port height="10" pin="2180,4660" width="10" x="755" y="455"/> <circ-port height="10" pin="2230,4660" width="10" x="755" y="435"/> <circ-port height="10" pin="2280,4660" width="10" x="755" y="415"/> <circ-port height="10" pin="2330,4660" width="10" x="755" y="395"/> <circ-port height="10" pin="2380,4660" width="10" x="755" y="355"/> <circ-port height="10" pin="2430,4660" width="10" x="755" y="315"/> <circ-port height="10" pin="2480,4660" width="10" x="755" y="275"/> <circ-port height="10" pin="2530,4660" width="10" x="755" y="235"/> <circ-port height="10" pin="2580,4660" width="10" x="755" y="195"/> <circ-port height="10" pin="2630,4660" width="10" x="755" y="155"/> <circ-port height="10" pin="2680,4660" width="10" x="755" y="115"/> <circ-port height="10" pin="2730,4660" width="10" x="755" y="75"/> <circ-port height="10" pin="2810,4660" width="10" x="755" y="45"/> <circ-port height="8" pin="2890,4660" width="8" x="756" y="376"/> <circ-port height="8" pin="2940,4660" width="8" x="756" y="336"/> <circ-port height="8" pin="2990,4660" width="8" x="756" y="296"/> <circ-port height="8" pin="3040,4660" width="8" x="756" y="256"/> <circ-port height="8" pin="3090,4660" width="8" x="756" y="216"/> <circ-port height="8" pin="3140,4660" width="8" x="756" y="176"/> <circ-port height="8" pin="3190,4660" width="8" x="756" y="136"/> <circ-port height="8" pin="3240,4660" width="8" x="756" y="96"/> <circ-port height="8" pin="120,590" width="8" x="416" y="576"/> <circ-anchor facing="east" height="6" width="6" x="757" y="27"/> </appear> <wire from="(1730,940)" to="(1730,1670)"/> <wire from="(1710,1690)" to="(2260,1690)"/> <wire from="(1520,1960)" to="(2520,1960)"/> <wire from="(1750,900)" to="(1750,1500)"/> <wire from="(2180,2730)" to="(2340,2730)"/> <wire from="(1420,3660)" to="(1420,3680)"/> <wire from="(3460,3260)" to="(3470,3260)"/> <wire from="(3290,3410)" to="(3300,3410)"/> <wire from="(1430,3670)" to="(1430,3700)"/> <wire from="(2550,740)" to="(2570,740)"/> <wire from="(2870,220)" to="(3030,220)"/> <wire from="(2540,2330)" to="(2560,2330)"/> <wire from="(3140,360)" to="(3170,360)"/> <wire from="(1520,1960)" to="(1520,2220)"/> <wire from="(2120,1410)" to="(2260,1410)"/> <wire from="(2250,2050)" to="(2260,2050)"/> <wire from="(1500,1550)" to="(1500,2000)"/> <wire from="(2370,2690)" to="(2370,2740)"/> <wire from="(2140,2260)" to="(2150,2260)"/> <wire from="(3090,330)" to="(3100,330)"/> <wire from="(2390,150)" to="(2390,210)"/> <wire from="(2140,1050)" to="(2140,1170)"/> <wire from="(730,1880)" to="(730,1960)"/> <wire from="(3390,3390)" to="(3390,3430)"/> <wire from="(1410,3650)" to="(1410,3660)"/> <wire from="(2370,2690)" to="(2570,2690)"/> <wire from="(3340,1530)" to="(3360,1530)"/> <wire from="(2620,720)" to="(2930,720)"/> <wire from="(2980,4260)" to="(2980,4270)"/> <wire from="(1210,3240)" to="(1210,3870)"/> <wire from="(3620,1180)" to="(3620,3500)"/> <wire from="(1050,1360)" to="(1050,1740)"/> <wire from="(410,2250)" to="(560,2250)"/> <wire from="(3420,2870)" to="(3460,2870)"/> <wire from="(3420,3190)" to="(3460,3190)"/> <wire from="(1250,3360)" to="(1320,3360)"/> <wire from="(230,340)" to="(250,340)"/> <wire from="(2160,1070)" to="(2160,1150)"/> <wire from="(2080,4640)" to="(2080,4660)"/> <wire from="(2500,1220)" to="(2500,1250)"/> <wire from="(1100,1740)" to="(1100,1780)"/> <wire from="(1120,800)" to="(1120,840)"/> <wire from="(2390,2710)" to="(2390,2740)"/> <wire from="(1440,3680)" to="(1440,3720)"/> <wire from="(2530,4580)" to="(2530,4620)"/> <wire from="(2170,2400)" to="(2200,2400)"/> <wire from="(630,2520)" to="(1390,2520)"/> <wire from="(2440,180)" to="(2530,180)"/> <wire from="(1870,450)" to="(1870,2970)"/> <wire from="(2540,4380)" to="(2560,4380)"/> <wire from="(800,3490)" to="(800,3500)"/> <wire from="(3150,3400)" to="(3160,3400)"/> <wire from="(1250,3300)" to="(1250,3330)"/> <wire from="(3130,1530)" to="(3200,1530)"/> <wire from="(2540,2460)" to="(2560,2460)"/> <wire from="(3160,1370)" to="(3160,1430)"/> <wire from="(1930,740)" to="(2170,740)"/> <wire from="(2980,4170)" to="(3010,4170)"/> <wire from="(2220,4380)" to="(2240,4380)"/> <wire from="(760,320)" to="(820,320)"/> <wire from="(2270,160)" to="(2270,210)"/> <wire from="(1190,420)" to="(1190,550)"/> <wire from="(1260,3700)" to="(1320,3700)"/> <wire from="(2420,170)" to="(2500,170)"/> <wire from="(3420,3010)" to="(3450,3010)"/> <wire from="(1270,3400)" to="(1320,3400)"/> <wire from="(200,200)" to="(1260,200)"/> <wire from="(1280,3650)" to="(1280,3660)"/> <wire from="(1910,1280)" to="(2100,1280)"/> <wire from="(2960,4130)" to="(3010,4130)"/> <wire from="(800,3280)" to="(820,3280)"/> <wire from="(1290,1220)" to="(1300,1220)"/> <wire from="(2380,140)" to="(2380,210)"/> <wire from="(2570,2130)" to="(2630,2130)"/> <wire from="(3090,4500)" to="(3090,4520)"/> <wire from="(830,1920)" to="(830,1960)"/> <wire from="(220,2050)" to="(250,2050)"/> <wire from="(990,800)" to="(990,840)"/> <wire from="(200,200)" to="(200,300)"/> <wire from="(1110,1680)" to="(1120,1680)"/> <wire from="(2990,110)" to="(2990,180)"/> <wire from="(790,3260)" to="(820,3260)"/> <wire from="(1170,1400)" to="(1200,1400)"/> <wire from="(1610,1140)" to="(1610,4000)"/> <wire from="(3250,2740)" to="(3250,2750)"/> <wire from="(3290,3420)" to="(3290,3430)"/> <wire from="(3090,340)" to="(3090,360)"/> <wire from="(1160,440)" to="(1180,440)"/> <wire from="(2150,1000)" to="(2150,1030)"/> <wire from="(2990,4320)" to="(3010,4320)"/> <wire from="(2150,2600)" to="(2150,2700)"/> <wire from="(2160,2610)" to="(2160,2710)"/> <wire from="(2170,2620)" to="(2170,2720)"/> <wire from="(2180,2630)" to="(2180,2730)"/> <wire from="(2480,1770)" to="(2690,1770)"/> <wire from="(2980,4300)" to="(3010,4300)"/> <wire from="(3230,1570)" to="(3230,1630)"/> <wire from="(700,3090)" to="(1210,3090)"/> <wire from="(2490,1270)" to="(2500,1270)"/> <wire from="(2120,1350)" to="(2260,1350)"/> <wire from="(2120,3820)" to="(3410,3820)"/> <wire from="(780,3690)" to="(820,3690)"/> <wire from="(840,1530)" to="(1520,1530)"/> <wire from="(1570,1260)" to="(1570,3130)"/> <wire from="(1130,1390)" to="(1130,1400)"/> <wire from="(3050,110)" to="(3050,160)"/> <wire from="(2770,3480)" to="(3100,3480)"/> <wire from="(3360,1490)" to="(3380,1490)"/> <wire from="(2090,2020)" to="(2090,2340)"/> <wire from="(720,3330)" to="(740,3330)"/> <wire from="(1160,320)" to="(1240,320)"/> <wire from="(800,3730)" to="(820,3730)"/> <wire from="(780,3710)" to="(800,3710)"/> <wire from="(440,2170)" to="(440,2270)"/> <wire from="(850,2260)" to="(850,2370)"/> <wire from="(3290,1630)" to="(3290,1650)"/> <wire from="(1460,3500)" to="(1540,3500)"/> <wire from="(2540,2560)" to="(2590,2560)"/> <wire from="(2580,2580)" to="(2580,2710)"/> <wire from="(2120,4380)" to="(2170,4380)"/> <wire from="(1250,3300)" to="(1320,3300)"/> <wire from="(2120,860)" to="(2170,860)"/> <wire from="(780,3700)" to="(810,3700)"/> <wire from="(2360,4540)" to="(2360,4560)"/> <wire from="(1730,1670)" to="(2260,1670)"/> <wire from="(210,2710)" to="(210,2760)"/> <wire from="(1100,1360)" to="(1100,1400)"/> <wire from="(1180,800)" to="(1180,840)"/> <wire from="(780,3720)" to="(790,3720)"/> <wire from="(2550,660)" to="(2590,660)"/> <wire from="(2210,4300)" to="(2240,4300)"/> <wire from="(2990,2850)" to="(3010,2850)"/> <wire from="(1930,390)" to="(1930,740)"/> <wire from="(3420,2970)" to="(3430,2970)"/> <wire from="(2170,420)" to="(2200,420)"/> <wire from="(720,3350)" to="(720,3360)"/> <wire from="(930,420)" to="(930,550)"/> <wire from="(2980,4110)" to="(3010,4110)"/> <wire from="(1230,3410)" to="(1230,3500)"/> <wire from="(2220,2080)" to="(2240,2080)"/> <wire from="(2220,4320)" to="(2240,4320)"/> <wire from="(1260,3320)" to="(1320,3320)"/> <wire from="(2560,2430)" to="(2570,2430)"/> <wire from="(2540,2090)" to="(2550,2090)"/> <wire from="(3070,1540)" to="(3070,1600)"/> <wire from="(2220,1770)" to="(2230,1770)"/> <wire from="(1290,1060)" to="(1930,1060)"/> <wire from="(2630,3090)" to="(2890,3090)"/> <wire from="(3460,2990)" to="(3490,2990)"/> <wire from="(2960,4110)" to="(2970,4110)"/> <wire from="(3110,1060)" to="(3120,1060)"/> <wire from="(1270,3340)" to="(1320,3340)"/> <wire from="(2580,4570)" to="(2580,4620)"/> <wire from="(180,240)" to="(180,590)"/> <wire from="(2960,4070)" to="(3010,4070)"/> <wire from="(2540,4350)" to="(2660,4350)"/> <wire from="(900,440)" to="(920,440)"/> <wire from="(780,3730)" to="(780,3770)"/> <wire from="(1070,300)" to="(1080,300)"/> <wire from="(2880,380)" to="(2880,2760)"/> <wire from="(680,2460)" to="(700,2460)"/> <wire from="(1460,2540)" to="(1460,3050)"/> <wire from="(2240,150)" to="(2290,150)"/> <wire from="(930,2060)" to="(960,2060)"/> <wire from="(2340,2730)" to="(2340,2740)"/> <wire from="(3250,1400)" to="(3250,1430)"/> <wire from="(2330,4640)" to="(2330,4660)"/> <wire from="(120,630)" to="(130,630)"/> <wire from="(2970,4090)" to="(3010,4090)"/> <wire from="(1210,380)" to="(1210,550)"/> <wire from="(1250,3350)" to="(1270,3350)"/> <wire from="(1290,1160)" to="(1630,1160)"/> <wire from="(1050,800)" to="(1050,840)"/> <wire from="(2130,690)" to="(2170,690)"/> <wire from="(3030,220)" to="(3030,240)"/> <wire from="(1540,3500)" to="(3620,3500)"/> <wire from="(2430,4580)" to="(2530,4580)"/> <wire from="(2050,1470)" to="(2050,3870)"/> <wire from="(2890,4480)" to="(2910,4480)"/> <wire from="(2170,4520)" to="(2330,4520)"/> <wire from="(3100,4510)" to="(3240,4510)"/> <wire from="(2130,4550)" to="(2350,4550)"/> <wire from="(1160,1360)" to="(1160,1380)"/> <wire from="(3370,1070)" to="(3370,1250)"/> <wire from="(800,3240)" to="(800,3250)"/> <wire from="(2770,1160)" to="(3120,1160)"/> <wire from="(2110,820)" to="(2130,820)"/> <wire from="(3290,1570)" to="(3290,1630)"/> <wire from="(500,2170)" to="(500,2260)"/> <wire from="(2420,4540)" to="(2420,4590)"/> <wire from="(2120,1290)" to="(2260,1290)"/> <wire from="(2190,2190)" to="(2200,2190)"/> <wire from="(780,3630)" to="(820,3630)"/> <wire from="(2160,880)" to="(2170,880)"/> <wire from="(2980,3300)" to="(2990,3300)"/> <wire from="(1430,3670)" to="(1440,3670)"/> <wire from="(800,3670)" to="(820,3670)"/> <wire from="(2270,420)" to="(2270,490)"/> <wire from="(920,800)" to="(920,840)"/> <wire from="(610,2520)" to="(630,2520)"/> <wire from="(1110,2070)" to="(1120,2070)"/> <wire from="(2230,4350)" to="(2230,4360)"/> <wire from="(2990,4530)" to="(2990,4660)"/> <wire from="(3520,3170)" to="(3520,4410)"/> <wire from="(790,3650)" to="(820,3650)"/> <wire from="(2230,190)" to="(2230,210)"/> <wire from="(840,960)" to="(840,1530)"/> <wire from="(610,2410)" to="(610,2460)"/> <wire from="(1390,110)" to="(1390,410)"/> <wire from="(2220,1870)" to="(2260,1870)"/> <wire from="(1240,800)" to="(1240,840)"/> <wire from="(900,320)" to="(980,320)"/> <wire from="(1150,1460)" to="(1170,1460)"/> <wire from="(3130,1490)" to="(3180,1490)"/> <wire from="(810,3700)" to="(810,3710)"/> <wire from="(1670,1100)" to="(1670,1250)"/> <wire from="(760,3830)" to="(1500,3830)"/> <wire from="(3170,1360)" to="(3200,1360)"/> <wire from="(2120,1420)" to="(2260,1420)"/> <wire from="(2190,2320)" to="(2200,2320)"/> <wire from="(2250,1100)" to="(2260,1100)"/> <wire from="(2230,4280)" to="(2240,4280)"/> <wire from="(2630,4560)" to="(2630,4620)"/> <wire from="(3420,2890)" to="(3450,2890)"/> <wire from="(2350,2680)" to="(2350,2740)"/> <wire from="(3000,2810)" to="(3010,2810)"/> <wire from="(1430,3440)" to="(1480,3440)"/> <wire from="(2200,160)" to="(2270,160)"/> <wire from="(3180,1380)" to="(3200,1380)"/> <wire from="(840,960)" to="(860,960)"/> <wire from="(1250,3620)" to="(1260,3620)"/> <wire from="(910,1360)" to="(910,1660)"/> <wire from="(950,380)" to="(950,550)"/> <wire from="(2930,200)" to="(3050,200)"/> <wire from="(2550,720)" to="(2600,720)"/> <wire from="(540,330)" to="(570,330)"/> <wire from="(820,940)" to="(820,1550)"/> <wire from="(390,2760)" to="(400,2760)"/> <wire from="(1110,800)" to="(1110,840)"/> <wire from="(1570,3130)" to="(3010,3130)"/> <wire from="(810,300)" to="(820,300)"/> <wire from="(2980,3310)" to="(2980,3330)"/> <wire from="(1510,350)" to="(1530,350)"/> <wire from="(2380,2710)" to="(2380,2740)"/> <wire from="(2110,560)" to="(2400,560)"/> <wire from="(3460,3150)" to="(3460,3160)"/> <wire from="(1260,3320)" to="(1260,3340)"/> <wire from="(980,2370)" to="(1540,2370)"/> <wire from="(1230,340)" to="(1230,550)"/> <wire from="(2170,2410)" to="(2200,2410)"/> <wire from="(3070,760)" to="(3090,760)"/> <wire from="(3170,110)" to="(3170,160)"/> <wire from="(2520,2120)" to="(2550,2120)"/> <wire from="(800,920)" to="(800,1570)"/> <wire from="(3050,310)" to="(3050,350)"/> <wire from="(1290,960)" to="(1710,960)"/> <wire from="(1290,880)" to="(1330,880)"/> <wire from="(2890,3090)" to="(2890,3250)"/> <wire from="(3120,1600)" to="(3250,1600)"/> <wire from="(1430,3260)" to="(1470,3260)"/> <wire from="(2770,1160)" to="(2770,1920)"/> <wire from="(2250,1230)" to="(2260,1230)"/> <wire from="(1510,110)" to="(1510,240)"/> <wire from="(3430,3480)" to="(3590,3480)"/> <wire from="(560,2170)" to="(560,2250)"/> <wire from="(3250,3390)" to="(3250,3430)"/> <wire from="(1290,940)" to="(1730,940)"/> <wire from="(3160,3410)" to="(3180,3410)"/> <wire from="(3040,1120)" to="(3120,1120)"/> <wire from="(2180,4560)" to="(2180,4620)"/> <wire from="(1810,510)" to="(1810,1590)"/> <wire from="(3240,2740)" to="(3240,2760)"/> <wire from="(220,2060)" to="(250,2060)"/> <wire from="(980,800)" to="(980,840)"/> <wire from="(1310,480)" to="(1310,860)"/> <wire from="(130,590)" to="(130,630)"/> <wire from="(3260,2760)" to="(3260,2790)"/> <wire from="(3420,3330)" to="(3460,3330)"/> <wire from="(3110,110)" to="(3110,240)"/> <wire from="(3080,4500)" to="(3080,4530)"/> <wire from="(410,2280)" to="(740,2280)"/> <wire from="(2940,4520)" to="(3040,4520)"/> <wire from="(2360,130)" to="(2360,210)"/> <wire from="(3130,160)" to="(3170,160)"/> <wire from="(3030,990)" to="(3030,1140)"/> <wire from="(1510,240)" to="(1510,350)"/> <wire from="(2350,120)" to="(2350,210)"/> <wire from="(2450,190)" to="(2550,190)"/> <wire from="(650,590)" to="(660,590)"/> <wire from="(780,780)" to="(860,780)"/> <wire from="(2910,4480)" to="(3020,4480)"/> <wire from="(2580,4640)" to="(2580,4660)"/> <wire from="(3430,2930)" to="(3430,2940)"/> <wire from="(3460,3280)" to="(3460,3290)"/> <wire from="(2490,1030)" to="(2490,1130)"/> <wire from="(2140,270)" to="(2170,270)"/> <wire from="(2170,2220)" to="(2200,2220)"/> <wire from="(2550,680)" to="(2580,680)"/> <wire from="(2470,1250)" to="(2490,1250)"/> <wire from="(2520,1310)" to="(2860,1310)"/> <wire from="(1810,3030)" to="(3010,3030)"/> <wire from="(2180,2240)" to="(2200,2240)"/> <wire from="(2220,4200)" to="(2240,4200)"/> <wire from="(2480,1590)" to="(2490,1590)"/> <wire from="(1260,3200)" to="(1320,3200)"/> <wire from="(2120,1360)" to="(2260,1360)"/> <wire from="(2190,2580)" to="(2200,2580)"/> <wire from="(310,470)" to="(310,1960)"/> <wire from="(1050,2150)" to="(1050,2220)"/> <wire from="(2160,630)" to="(2170,630)"/> <wire from="(3000,3070)" to="(3010,3070)"/> <wire from="(1450,3320)" to="(1450,3330)"/> <wire from="(1770,1520)" to="(1770,1780)"/> <wire from="(2530,110)" to="(2530,180)"/> <wire from="(2330,4590)" to="(2390,4590)"/> <wire from="(1290,1040)" to="(1300,1040)"/> <wire from="(2930,1360)" to="(2980,1360)"/> <wire from="(3120,3390)" to="(3120,3410)"/> <wire from="(1050,2150)" to="(1120,2150)"/> <wire from="(1160,340)" to="(1230,340)"/> <wire from="(1260,3110)" to="(2670,3110)"/> <wire from="(2350,4540)" to="(2350,4550)"/> <wire from="(2130,4640)" to="(2130,4660)"/> <wire from="(1220,1360)" to="(1220,1460)"/> <wire from="(2120,2480)" to="(2160,2480)"/> <wire from="(1170,800)" to="(1170,840)"/> <wire from="(1150,1420)" to="(1150,1460)"/> <wire from="(3420,3130)" to="(3470,3130)"/> <wire from="(1260,1720)" to="(1260,1830)"/> <wire from="(2720,4330)" to="(2720,4480)"/> <wire from="(1130,3430)" to="(1150,3430)"/> <wire from="(560,630)" to="(570,630)"/> <wire from="(2540,2580)" to="(2580,2580)"/> <wire from="(2770,1920)" to="(2770,3050)"/> <wire from="(3300,2740)" to="(3300,2790)"/> <wire from="(2540,2400)" to="(2570,2400)"/> <wire from="(2520,2060)" to="(2550,2060)"/> <wire from="(3150,1430)" to="(3160,1430)"/> <wire from="(1430,390)" to="(1530,390)"/> <wire from="(1650,3190)" to="(2720,3190)"/> <wire from="(620,2170)" to="(620,2240)"/> <wire from="(3050,350)" to="(3080,350)"/> <wire from="(2240,2110)" to="(2260,2110)"/> <wire from="(2600,760)" to="(2600,800)"/> <wire from="(3250,3430)" to="(3280,3430)"/> <wire from="(1950,540)" to="(2960,540)"/> <wire from="(1330,2120)" to="(1390,2120)"/> <wire from="(2420,2760)" to="(2880,2760)"/> <wire from="(2250,1810)" to="(2260,1810)"/> <wire from="(2210,4330)" to="(2220,4330)"/> <wire from="(780,3510)" to="(820,3510)"/> <wire from="(2250,2130)" to="(2260,2130)"/> <wire from="(2160,760)" to="(2170,760)"/> <wire from="(3040,1010)" to="(3370,1010)"/> <wire from="(2940,260)" to="(2950,260)"/> <wire from="(180,2820)" to="(180,2850)"/> <wire from="(2270,300)" to="(2270,420)"/> <wire from="(3310,3390)" to="(3310,3430)"/> <wire from="(2470,4540)" to="(2730,4540)"/> <wire from="(3070,4540)" to="(3090,4540)"/> <wire from="(970,340)" to="(970,550)"/> <wire from="(2120,2480)" to="(2120,3820)"/> <wire from="(3110,310)" to="(3110,360)"/> <wire from="(3330,3410)" to="(3330,3430)"/> <wire from="(780,3530)" to="(800,3530)"/> <wire from="(800,3550)" to="(820,3550)"/> <wire from="(410,2260)" to="(500,2260)"/> <wire from="(2200,1920)" to="(2770,1920)"/> <wire from="(1240,1440)" to="(1250,1440)"/> <wire from="(1990,270)" to="(2000,270)"/> <wire from="(1250,300)" to="(1250,550)"/> <wire from="(3370,3450)" to="(3370,3480)"/> <wire from="(3450,2890)" to="(3450,2920)"/> <wire from="(2680,4550)" to="(2680,4620)"/> <wire from="(1210,3870)" to="(2050,3870)"/> <wire from="(2570,730)" to="(2570,740)"/> <wire from="(3450,2980)" to="(3490,2980)"/> <wire from="(930,2070)" to="(960,2070)"/> <wire from="(3320,3400)" to="(3320,3430)"/> <wire from="(1250,3440)" to="(1320,3440)"/> <wire from="(780,3520)" to="(810,3520)"/> <wire from="(3430,2940)" to="(3490,2940)"/> <wire from="(2580,740)" to="(2580,760)"/> <wire from="(230,1470)" to="(950,1470)"/> <wire from="(1040,800)" to="(1040,840)"/> <wire from="(2130,700)" to="(2170,700)"/> <wire from="(2590,750)" to="(2590,780)"/> <wire from="(780,3540)" to="(790,3540)"/> <wire from="(1810,1590)" to="(1810,3030)"/> <wire from="(2510,1500)" to="(2510,1590)"/> <wire from="(2690,1770)" to="(2690,3070)"/> <wire from="(3340,3420)" to="(3340,3430)"/> <wire from="(3090,160)" to="(3090,240)"/> <wire from="(3380,4100)" to="(3380,4110)"/> <wire from="(2990,3310)" to="(3010,3310)"/> <wire from="(1830,490)" to="(1830,3010)"/> <wire from="(3010,2750)" to="(3100,2750)"/> <wire from="(1260,3390)" to="(1260,3420)"/> <wire from="(2980,3290)" to="(3010,3290)"/> <wire from="(2910,4180)" to="(2940,4180)"/> <wire from="(3330,760)" to="(3360,760)"/> <wire from="(650,630)" to="(690,630)"/> <wire from="(780,780)" to="(780,1380)"/> <wire from="(1330,240)" to="(1330,880)"/> <wire from="(2190,2520)" to="(2200,2520)"/> <wire from="(2120,1300)" to="(2260,1300)"/> <wire from="(2350,120)" to="(2360,120)"/> <wire from="(370,470)" to="(370,1960)"/> <wire from="(2980,880)" to="(3120,880)"/> <wire from="(2410,4540)" to="(2410,4600)"/> <wire from="(3100,3420)" to="(3120,3420)"/> <wire from="(2990,180)" to="(3070,180)"/> <wire from="(3230,1630)" to="(3250,1630)"/> <wire from="(2960,4210)" to="(3010,4210)"/> <wire from="(1290,980)" to="(1300,980)"/> <wire from="(2300,140)" to="(2300,210)"/> <wire from="(780,3550)" to="(780,3590)"/> <wire from="(3180,3390)" to="(3180,3410)"/> <wire from="(3200,2770)" to="(3200,2790)"/> <wire from="(210,2760)" to="(240,2760)"/> <wire from="(910,800)" to="(910,840)"/> <wire from="(3330,1070)" to="(3370,1070)"/> <wire from="(2560,2450)" to="(2560,2460)"/> <wire from="(2670,1420)" to="(2670,3110)"/> <wire from="(2240,1810)" to="(2240,1830)"/> <wire from="(1790,1610)" to="(2260,1610)"/> <wire from="(3230,110)" to="(3230,180)"/> <wire from="(900,340)" to="(970,340)"/> <wire from="(180,590)" to="(570,590)"/> <wire from="(1830,3010)" to="(3010,3010)"/> <wire from="(1300,3220)" to="(1320,3220)"/> <wire from="(1230,800)" to="(1230,840)"/> <wire from="(2980,4150)" to="(2980,4170)"/> <wire from="(850,860)" to="(860,860)"/> <wire from="(810,3380)" to="(820,3380)"/> <wire from="(780,3670)" to="(790,3670)"/> <wire from="(1420,3660)" to="(1440,3660)"/> <wire from="(1430,3350)" to="(1450,3350)"/> <wire from="(2570,2460)" to="(2570,2480)"/> <wire from="(1100,1740)" to="(1120,1740)"/> <wire from="(3040,1010)" to="(3040,1120)"/> <wire from="(3170,310)" to="(3170,360)"/> <wire from="(3460,3280)" to="(3470,3280)"/> <wire from="(2470,1310)" to="(2500,1310)"/> <wire from="(1130,3390)" to="(1130,3410)"/> <wire from="(740,3320)" to="(740,3330)"/> <wire from="(3250,1600)" to="(3390,1600)"/> <wire from="(3470,2850)" to="(3470,2900)"/> <wire from="(2350,2680)" to="(2560,2680)"/> <wire from="(200,300)" to="(250,300)"/> <wire from="(2150,1000)" to="(2170,1000)"/> <wire from="(2180,2630)" to="(2200,2630)"/> <wire from="(3120,1540)" to="(3120,1600)"/> <wire from="(2120,1430)" to="(2260,1430)"/> <wire from="(780,3450)" to="(820,3450)"/> <wire from="(800,1570)" to="(1480,1570)"/> <wire from="(780,3770)" to="(820,3770)"/> <wire from="(3360,4120)" to="(3390,4120)"/> <wire from="(3160,1430)" to="(3250,1430)"/> <wire from="(720,3300)" to="(720,3320)"/> <wire from="(3420,2910)" to="(3440,2910)"/> <wire from="(2500,1880)" to="(2500,1940)"/> <wire from="(1630,3230)" to="(2840,3230)"/> <wire from="(2400,300)" to="(2400,560)"/> <wire from="(800,3490)" to="(820,3490)"/> <wire from="(2630,4390)" to="(2750,4390)"/> <wire from="(2140,110)" to="(2140,180)"/> <wire from="(3370,3390)" to="(3370,3420)"/> <wire from="(1770,310)" to="(1780,310)"/> <wire from="(3450,2920)" to="(3490,2920)"/> <wire from="(790,3470)" to="(820,3470)"/> <wire from="(230,360)" to="(250,360)"/> <wire from="(2380,4640)" to="(2380,4660)"/> <wire from="(240,1980)" to="(250,1980)"/> <wire from="(2580,680)" to="(2580,700)"/> <wire from="(680,2170)" to="(680,2290)"/> <wire from="(130,590)" to="(140,590)"/> <wire from="(990,300)" to="(990,550)"/> <wire from="(3360,690)" to="(3360,760)"/> <wire from="(2090,2020)" to="(2580,2020)"/> <wire from="(3270,2720)" to="(3330,2720)"/> <wire from="(1060,440)" to="(1060,480)"/> <wire from="(510,2370)" to="(510,2930)"/> <wire from="(1100,800)" to="(1100,840)"/> <wire from="(2480,1710)" to="(2900,1710)"/> <wire from="(2330,4590)" to="(2330,4620)"/> <wire from="(2730,4540)" to="(2730,4620)"/> <wire from="(570,330)" to="(570,510)"/> <wire from="(2050,3870)" to="(3430,3870)"/> <wire from="(1270,3660)" to="(1270,3680)"/> <wire from="(2960,4390)" to="(3490,4390)"/> <wire from="(3350,940)" to="(3350,990)"/> <wire from="(2730,2930)" to="(3010,2930)"/> <wire from="(810,3520)" to="(810,3530)"/> <wire from="(2470,1130)" to="(2490,1130)"/> <wire from="(2260,170)" to="(2260,210)"/> <wire from="(1520,1530)" to="(1520,1940)"/> <wire from="(1280,3760)" to="(1320,3760)"/> <wire from="(2960,1100)" to="(3120,1100)"/> <wire from="(2180,2440)" to="(2200,2440)"/> <wire from="(3170,3420)" to="(3200,3420)"/> <wire from="(2200,110)" to="(2200,160)"/> <wire from="(2800,2890)" to="(2930,2890)"/> <wire from="(3070,4500)" to="(3070,4540)"/> <wire from="(2560,1810)" to="(2560,2000)"/> <wire from="(3000,3910)" to="(3010,3910)"/> <wire from="(2080,4540)" to="(2340,4540)"/> <wire from="(1270,3340)" to="(1270,3350)"/> <wire from="(3340,1360)" to="(3360,1360)"/> <wire from="(3290,110)" to="(3290,220)"/> <wire from="(120,690)" to="(150,690)"/> <wire from="(1520,510)" to="(1530,510)"/> <wire from="(1430,3620)" to="(1440,3620)"/> <wire from="(1810,1590)" to="(2260,1590)"/> <wire from="(1310,3180)" to="(1320,3180)"/> <wire from="(3080,350)" to="(3080,360)"/> <wire from="(1850,2990)" to="(3010,2990)"/> <wire from="(220,2070)" to="(250,2070)"/> <wire from="(1120,1390)" to="(1130,1390)"/> <wire from="(970,800)" to="(970,840)"/> <wire from="(1110,1700)" to="(1120,1700)"/> <wire from="(1670,1250)" to="(2260,1250)"/> <wire from="(2240,2070)" to="(2240,2080)"/> <wire from="(1370,1900)" to="(1370,2090)"/> <wire from="(3230,2740)" to="(3230,2770)"/> <wire from="(2030,4480)" to="(2030,4620)"/> <wire from="(2550,2060)" to="(2550,2070)"/> <wire from="(2960,4070)" to="(2960,4100)"/> <wire from="(200,2710)" to="(210,2710)"/> <wire from="(2730,1690)" to="(2730,2930)"/> <wire from="(1460,3320)" to="(1480,3320)"/> <wire from="(420,2170)" to="(420,2230)"/> <wire from="(2220,1730)" to="(2220,1760)"/> <wire from="(2570,2400)" to="(2570,2420)"/> <wire from="(3430,1590)" to="(3440,1590)"/> <wire from="(2940,4240)" to="(2940,4410)"/> <wire from="(2570,710)" to="(2600,710)"/> <wire from="(2540,2600)" to="(2570,2600)"/> <wire from="(3320,3400)" to="(3330,3400)"/> <wire from="(2550,700)" to="(2570,700)"/> <wire from="(2300,130)" to="(2320,130)"/> <wire from="(2600,640)" to="(2600,680)"/> <wire from="(2590,750)" to="(2600,750)"/> <wire from="(1480,3230)" to="(1480,3300)"/> <wire from="(2440,4570)" to="(2580,4570)"/> <wire from="(2170,2250)" to="(2180,2250)"/> <wire from="(2160,960)" to="(2170,960)"/> <wire from="(2820,1750)" to="(2820,4040)"/> <wire from="(3470,2900)" to="(3490,2900)"/> <wire from="(1670,1250)" to="(1670,3170)"/> <wire from="(3060,1540)" to="(3070,1540)"/> <wire from="(2650,4330)" to="(2660,4330)"/> <wire from="(1420,3620)" to="(1420,3630)"/> <wire from="(1390,980)" to="(2170,980)"/> <wire from="(740,2170)" to="(740,2280)"/> <wire from="(3130,3410)" to="(3130,3430)"/> <wire from="(2150,2700)" to="(2400,2700)"/> <wire from="(3420,3150)" to="(3460,3150)"/> <wire from="(1250,3640)" to="(1320,3640)"/> <wire from="(170,2800)" to="(190,2800)"/> <wire from="(180,2820)" to="(190,2820)"/> <wire from="(1520,1940)" to="(2500,1940)"/> <wire from="(1400,3700)" to="(1430,3700)"/> <wire from="(1950,370)" to="(1950,540)"/> <wire from="(1160,800)" to="(1160,840)"/> <wire from="(2890,4510)" to="(2890,4660)"/> <wire from="(2840,3980)" to="(3010,3980)"/> <wire from="(1050,2220)" to="(1520,2220)"/> <wire from="(2960,4120)" to="(2980,4120)"/> <wire from="(2990,4150)" to="(3010,4150)"/> <wire from="(1890,430)" to="(1890,2950)"/> <wire from="(3620,490)" to="(3620,1180)"/> <wire from="(3200,2770)" to="(3210,2770)"/> <wire from="(230,320)" to="(230,330)"/> <wire from="(1250,3580)" to="(1250,3610)"/> <wire from="(2540,2420)" to="(2560,2420)"/> <wire from="(2150,430)" to="(2170,430)"/> <wire from="(1280,3380)" to="(1320,3380)"/> <wire from="(2220,1780)" to="(2240,1780)"/> <wire from="(2210,1130)" to="(2230,1130)"/> <wire from="(2220,2100)" to="(2240,2100)"/> <wire from="(2560,2450)" to="(2570,2450)"/> <wire from="(1370,900)" to="(1750,900)"/> <wire from="(2480,1670)" to="(2750,1670)"/> <wire from="(1160,360)" to="(1220,360)"/> <wire from="(2230,4360)" to="(2240,4360)"/> <wire from="(490,470)" to="(490,1960)"/> <wire from="(2750,2910)" to="(3010,2910)"/> <wire from="(2900,690)" to="(3360,690)"/> <wire from="(3330,1100)" to="(3480,1100)"/> <wire from="(3110,1080)" to="(3120,1080)"/> <wire from="(3110,760)" to="(3120,760)"/> <wire from="(2890,4510)" to="(3030,4510)"/> <wire from="(210,390)" to="(250,390)"/> <wire from="(1270,3680)" to="(1320,3680)"/> <wire from="(660,2250)" to="(830,2250)"/> <wire from="(720,2240)" to="(830,2240)"/> <wire from="(2570,930)" to="(2570,1050)"/> <wire from="(1520,450)" to="(1530,450)"/> <wire from="(220,410)" to="(250,410)"/> <wire from="(800,3240)" to="(820,3240)"/> <wire from="(1030,800)" to="(1030,840)"/> <wire from="(1110,1640)" to="(1120,1640)"/> <wire from="(2180,2270)" to="(2180,2280)"/> <wire from="(2550,800)" to="(2600,800)"/> <wire from="(2980,1540)" to="(3040,1540)"/> <wire from="(1930,1190)" to="(2260,1190)"/> <wire from="(2490,1620)" to="(2490,1630)"/> <wire from="(930,2080)" to="(960,2080)"/> <wire from="(230,430)" to="(250,430)"/> <wire from="(2200,1840)" to="(2200,1920)"/> <wire from="(2130,710)" to="(2170,710)"/> <wire from="(480,2170)" to="(480,2220)"/> <wire from="(3490,3290)" to="(3490,4390)"/> <wire from="(3420,3270)" to="(3470,3270)"/> <wire from="(3440,2970)" to="(3490,2970)"/> <wire from="(2260,110)" to="(2260,140)"/> <wire from="(2630,4640)" to="(2630,4660)"/> <wire from="(780,1900)" to="(1370,1900)"/> <wire from="(2840,3230)" to="(2840,3980)"/> <wire from="(3160,2740)" to="(3160,2790)"/> <wire from="(3460,3160)" to="(3470,3160)"/> <wire from="(2960,2860)" to="(2960,2900)"/> <wire from="(2680,4290)" to="(2700,4290)"/> <wire from="(3010,1480)" to="(3100,1480)"/> <wire from="(1440,3580)" to="(1440,3610)"/> <wire from="(2980,4260)" to="(3010,4260)"/> <wire from="(2360,130)" to="(2380,130)"/> <wire from="(720,3340)" to="(820,3340)"/> <wire from="(700,3090)" to="(700,3310)"/> <wire from="(2590,690)" to="(2600,690)"/> <wire from="(1210,3090)" to="(1210,3220)"/> <wire from="(1870,2970)" to="(3010,2970)"/> <wire from="(150,690)" to="(150,2760)"/> <wire from="(2250,1630)" to="(2260,1630)"/> <wire from="(2120,1310)" to="(2260,1310)"/> <wire from="(3490,3170)" to="(3520,3170)"/> <wire from="(2230,4170)" to="(2240,4170)"/> <wire from="(2400,4540)" to="(2400,4600)"/> <wire from="(2960,540)" to="(2960,1100)"/> <wire from="(590,2410)" to="(590,2430)"/> <wire from="(1400,3660)" to="(1410,3660)"/> <wire from="(2480,1690)" to="(2730,1690)"/> <wire from="(950,1360)" to="(950,1470)"/> <wire from="(2630,4270)" to="(2750,4270)"/> <wire from="(900,800)" to="(900,840)"/> <wire from="(3270,1570)" to="(3270,1590)"/> <wire from="(1110,2090)" to="(1120,2090)"/> <wire from="(1210,3220)" to="(1280,3220)"/> <wire from="(1250,3580)" to="(1320,3580)"/> <wire from="(1590,4020)" to="(3010,4020)"/> <wire from="(3180,2760)" to="(3180,2790)"/> <wire from="(3420,3070)" to="(3480,3070)"/> <wire from="(1410,3650)" to="(1440,3650)"/> <wire from="(240,260)" to="(250,260)"/> <wire from="(410,2290)" to="(680,2290)"/> <wire from="(3050,160)" to="(3090,160)"/> <wire from="(2180,4640)" to="(2180,4660)"/> <wire from="(2220,4360)" to="(2220,4380)"/> <wire from="(810,3710)" to="(820,3710)"/> <wire from="(2280,4580)" to="(2380,4580)"/> <wire from="(1140,1360)" to="(1140,1400)"/> <wire from="(1220,800)" to="(1220,840)"/> <wire from="(2170,2620)" to="(2200,2620)"/> <wire from="(3420,2930)" to="(3430,2930)"/> <wire from="(2170,2300)" to="(2200,2300)"/> <wire from="(1260,200)" to="(1260,280)"/> <wire from="(2550,760)" to="(2580,760)"/> <wire from="(210,390)" to="(210,1740)"/> <wire from="(3050,200)" to="(3050,240)"/> <wire from="(3040,4540)" to="(3040,4660)"/> <wire from="(900,360)" to="(960,360)"/> <wire from="(120,1830)" to="(170,1830)"/> <wire from="(1330,2090)" to="(1370,2090)"/> <wire from="(600,2200)" to="(830,2200)"/> <wire from="(1260,3600)" to="(1320,3600)"/> <wire from="(820,940)" to="(860,940)"/> <wire from="(2120,1440)" to="(2260,1440)"/> <wire from="(540,2210)" to="(830,2210)"/> <wire from="(980,2090)" to="(980,2370)"/> <wire from="(3000,3150)" to="(3010,3150)"/> <wire from="(3000,2830)" to="(3010,2830)"/> <wire from="(800,3710)" to="(800,3730)"/> <wire from="(1270,3620)" to="(1320,3620)"/> <wire from="(3230,1400)" to="(3230,1570)"/> <wire from="(2540,4290)" to="(2550,4290)"/> <wire from="(1930,1060)" to="(1930,1190)"/> <wire from="(2170,2720)" to="(2360,2720)"/> <wire from="(420,2230)" to="(830,2230)"/> <wire from="(540,2170)" to="(540,2210)"/> <wire from="(1110,3240)" to="(1190,3240)"/> <wire from="(2580,1440)" to="(2580,2020)"/> <wire from="(2980,4290)" to="(2980,4300)"/> <wire from="(3460,3330)" to="(3460,4370)"/> <wire from="(2320,110)" to="(2320,120)"/> <wire from="(480,2220)" to="(830,2220)"/> <wire from="(3260,2740)" to="(3300,2740)"/> <wire from="(3100,3450)" to="(3100,3480)"/> <wire from="(2080,4540)" to="(2080,4620)"/> <wire from="(2140,1050)" to="(2570,1050)"/> <wire from="(1090,800)" to="(1090,840)"/> <wire from="(1250,3630)" to="(1270,3630)"/> <wire from="(2130,650)" to="(2170,650)"/> <wire from="(2560,4380)" to="(2560,4460)"/> <wire from="(760,220)" to="(1350,220)"/> <wire from="(220,1490)" to="(990,1490)"/> <wire from="(2260,140)" to="(2300,140)"/> <wire from="(780,3490)" to="(790,3490)"/> <wire from="(220,410)" to="(220,1490)"/> <wire from="(3420,3210)" to="(3470,3210)"/> <wire from="(1180,440)" to="(1180,550)"/> <wire from="(3220,2740)" to="(3220,2790)"/> <wire from="(2230,1850)" to="(2260,1850)"/> <wire from="(680,3070)" to="(680,3400)"/> <wire from="(1020,240)" to="(1330,240)"/> <wire from="(2540,2480)" to="(2570,2480)"/> <wire from="(1690,1080)" to="(1690,3210)"/> <wire from="(2410,4600)" to="(2430,4600)"/> <wire from="(2150,820)" to="(2170,820)"/> <wire from="(1430,110)" to="(1430,390)"/> <wire from="(2180,2450)" to="(2200,2450)"/> <wire from="(3390,1500)" to="(3390,1600)"/> <wire from="(2250,1570)" to="(2260,1570)"/> <wire from="(1290,1140)" to="(1610,1140)"/> <wire from="(780,3590)" to="(820,3590)"/> <wire from="(2160,840)" to="(2170,840)"/> <wire from="(3060,4500)" to="(3060,4540)"/> <wire from="(880,1360)" to="(880,1380)"/> <wire from="(3000,4240)" to="(3010,4240)"/> <wire from="(2990,3910)" to="(3000,3910)"/> <wire from="(2960,1650)" to="(3290,1650)"/> <wire from="(1980,4460)" to="(2560,4460)"/> <wire from="(3030,310)" to="(3030,360)"/> <wire from="(2880,2900)" to="(2960,2900)"/> <wire from="(750,3260)" to="(770,3260)"/> <wire from="(3510,3030)" to="(3510,3050)"/> <wire from="(410,2270)" to="(440,2270)"/> <wire from="(960,800)" to="(960,840)"/> <wire from="(220,2080)" to="(250,2080)"/> <wire from="(1110,2030)" to="(1120,2030)"/> <wire from="(3180,3430)" to="(3220,3430)"/> <wire from="(510,2370)" to="(540,2370)"/> <wire from="(2460,4540)" to="(2460,4550)"/> <wire from="(390,2390)" to="(540,2390)"/> <wire from="(3420,3030)" to="(3460,3030)"/> <wire from="(1230,3500)" to="(1230,3600)"/> <wire from="(780,1900)" to="(780,1960)"/> <wire from="(2570,2600)" to="(2570,2690)"/> <wire from="(1540,2370)" to="(1540,3500)"/> <wire from="(2120,190)" to="(2230,190)"/> <wire from="(3030,820)" to="(3030,910)"/> <wire from="(1430,3290)" to="(1460,3290)"/> <wire from="(2230,1750)" to="(2230,1770)"/> <wire from="(1360,980)" to="(1390,980)"/> <wire from="(1260,4130)" to="(2560,4130)"/> <wire from="(2330,120)" to="(2330,210)"/> <wire from="(660,3050)" to="(660,3420)"/> <wire from="(1200,1360)" to="(1200,1400)"/> <wire from="(720,3560)" to="(720,3870)"/> <wire from="(2970,4090)" to="(2970,4110)"/> <wire from="(740,3320)" to="(820,3320)"/> <wire from="(1890,2950)" to="(3010,2950)"/> <wire from="(2560,4130)" to="(2560,4170)"/> <wire from="(2100,1040)" to="(2900,1040)"/> <wire from="(3360,3450)" to="(3370,3450)"/> <wire from="(3380,4110)" to="(3390,4110)"/> <wire from="(1290,920)" to="(2170,920)"/> <wire from="(1460,3350)" to="(1460,3380)"/> <wire from="(2580,740)" to="(2600,740)"/> <wire from="(2540,2620)" to="(2560,2620)"/> <wire from="(1430,3410)" to="(1470,3410)"/> <wire from="(2220,4220)" to="(2240,4220)"/> <wire from="(2480,1610)" to="(2490,1610)"/> <wire from="(2700,1070)" to="(2900,1070)"/> <wire from="(1610,4000)" to="(3010,4000)"/> <wire from="(780,3630)" to="(780,3660)"/> <wire from="(600,2170)" to="(600,2200)"/> <wire from="(2230,4240)" to="(2240,4240)"/> <wire from="(3330,3410)" to="(3350,3410)"/> <wire from="(3100,2750)" to="(3100,2790)"/> <wire from="(3000,3090)" to="(3010,3090)"/> <wire from="(3290,1400)" to="(3290,1570)"/> <wire from="(1450,3340)" to="(1450,3350)"/> <wire from="(920,440)" to="(920,550)"/> <wire from="(2980,3270)" to="(2980,3280)"/> <wire from="(1470,3360)" to="(1470,3410)"/> <wire from="(660,3420)" to="(820,3420)"/> <wire from="(2660,1100)" to="(2720,1100)"/> <wire from="(3100,3390)" to="(3100,3420)"/> <wire from="(2540,4200)" to="(2580,4200)"/> <wire from="(2380,110)" to="(2380,130)"/> <wire from="(2430,4640)" to="(2430,4660)"/> <wire from="(1170,2390)" to="(1170,3390)"/> <wire from="(1150,3360)" to="(1150,3400)"/> <wire from="(3410,3820)" to="(3410,4090)"/> <wire from="(1260,3600)" to="(1260,3620)"/> <wire from="(2170,2370)" to="(2200,2370)"/> <wire from="(1510,240)" to="(2000,240)"/> <wire from="(2610,2440)" to="(2610,2930)"/> <wire from="(1200,400)" to="(1200,550)"/> <wire from="(2520,2080)" to="(2550,2080)"/> <wire from="(2770,3050)" to="(2770,3480)"/> <wire from="(2230,4570)" to="(2230,4620)"/> <wire from="(2190,2090)" to="(2200,2090)"/> <wire from="(3420,2990)" to="(3440,2990)"/> <wire from="(2700,3350)" to="(2700,4230)"/> <wire from="(1480,3370)" to="(1480,3440)"/> <wire from="(2290,150)" to="(2290,210)"/> <wire from="(1160,380)" to="(1210,380)"/> <wire from="(1250,3390)" to="(1260,3390)"/> <wire from="(3130,350)" to="(3130,360)"/> <wire from="(1020,800)" to="(1020,840)"/> <wire from="(3290,3390)" to="(3290,3410)"/> <wire from="(2410,2720)" to="(2590,2720)"/> <wire from="(3420,3290)" to="(3460,3290)"/> <wire from="(2150,410)" to="(2200,410)"/> <wire from="(1260,1360)" to="(1260,1420)"/> <wire from="(3430,2960)" to="(3490,2960)"/> <wire from="(2090,2340)" to="(2200,2340)"/> <wire from="(2470,1440)" to="(2580,1440)"/> <wire from="(3080,4530)" to="(3140,4530)"/> <wire from="(1980,4640)" to="(1980,4660)"/> <wire from="(1250,3370)" to="(1280,3370)"/> <wire from="(1250,3380)" to="(1270,3380)"/> <wire from="(2130,720)" to="(2170,720)"/> <wire from="(2220,2090)" to="(2260,2090)"/> <wire from="(3090,310)" to="(3090,330)"/> <wire from="(3120,340)" to="(3120,360)"/> <wire from="(790,3250)" to="(800,3250)"/> <wire from="(1290,860)" to="(1310,860)"/> <wire from="(3390,4130)" to="(3390,4140)"/> <wire from="(1390,980)" to="(1390,1000)"/> <wire from="(2960,3940)" to="(2980,3940)"/> <wire from="(1150,1380)" to="(1150,1400)"/> <wire from="(510,2930)" to="(2610,2930)"/> <wire from="(1390,2120)" to="(1390,2520)"/> <wire from="(800,3270)" to="(800,3280)"/> <wire from="(2590,2560)" to="(2590,2720)"/> <wire from="(3010,1250)" to="(3010,1480)"/> <wire from="(1460,3290)" to="(1460,3320)"/> <wire from="(2440,110)" to="(2440,150)"/> <wire from="(3180,1490)" to="(3180,1550)"/> <wire from="(1480,1570)" to="(1480,1980)"/> <wire from="(1400,3640)" to="(1440,3640)"/> <wire from="(1750,1500)" to="(2510,1500)"/> <wire from="(3150,180)" to="(3150,240)"/> <wire from="(2190,2540)" to="(2200,2540)"/> <wire from="(2390,4540)" to="(2390,4590)"/> <wire from="(2120,1320)" to="(2260,1320)"/> <wire from="(760,3740)" to="(760,3830)"/> <wire from="(3370,910)" to="(3370,1010)"/> <wire from="(350,470)" to="(350,1960)"/> <wire from="(2960,1140)" to="(3030,1140)"/> <wire from="(1160,1390)" to="(1160,1400)"/> <wire from="(2270,490)" to="(3620,490)"/> <wire from="(1500,3380)" to="(1500,3830)"/> <wire from="(2470,1420)" to="(2670,1420)"/> <wire from="(780,3680)" to="(800,3680)"/> <wire from="(1230,3500)" to="(1240,3500)"/> <wire from="(1290,1000)" to="(1300,1000)"/> <wire from="(890,800)" to="(890,840)"/> <wire from="(2980,1360)" to="(3040,1360)"/> <wire from="(2170,4380)" to="(2170,4520)"/> <wire from="(760,220)" to="(760,320)"/> <wire from="(2970,4160)" to="(2970,4190)"/> <wire from="(680,3400)" to="(820,3400)"/> <wire from="(2810,4640)" to="(2810,4660)"/> <wire from="(1300,3240)" to="(1320,3240)"/> <wire from="(1210,800)" to="(1210,840)"/> <wire from="(3160,3390)" to="(3160,3400)"/> <wire from="(1060,440)" to="(1080,440)"/> <wire from="(1250,3400)" to="(1250,3440)"/> <wire from="(2230,1820)" to="(2230,1850)"/> <wire from="(2380,140)" to="(2420,140)"/> <wire from="(210,1740)" to="(1050,1740)"/> <wire from="(1710,960)" to="(1710,1690)"/> <wire from="(3070,340)" to="(3090,340)"/> <wire from="(2650,4290)" to="(2650,4330)"/> <wire from="(900,380)" to="(950,380)"/> <wire from="(2550,910)" to="(3030,910)"/> <wire from="(3150,310)" to="(3150,350)"/> <wire from="(1110,3480)" to="(1150,3480)"/> <wire from="(2150,1030)" to="(2490,1030)"/> <wire from="(2240,2070)" to="(2260,2070)"/> <wire from="(200,2540)" to="(1460,2540)"/> <wire from="(3250,2750)" to="(3280,2750)"/> <wire from="(1970,520)" to="(2980,520)"/> <wire from="(230,430)" to="(230,1470)"/> <wire from="(2120,1450)" to="(2260,1450)"/> <wire from="(2250,1130)" to="(2260,1130)"/> <wire from="(3360,4140)" to="(3390,4140)"/> <wire from="(940,400)" to="(940,550)"/> <wire from="(660,2170)" to="(660,2250)"/> <wire from="(720,3870)" to="(1210,3870)"/> <wire from="(1350,110)" to="(1350,120)"/> <wire from="(3270,3420)" to="(3290,3420)"/> <wire from="(3350,3390)" to="(3350,3410)"/> <wire from="(150,2850)" to="(180,2850)"/> <wire from="(3470,3190)" to="(3470,3210)"/> <wire from="(1260,1420)" to="(1270,1420)"/> <wire from="(3120,1430)" to="(3120,1500)"/> <wire from="(1220,360)" to="(1220,550)"/> <wire from="(1770,330)" to="(1780,330)"/> <wire from="(2490,1250)" to="(2490,1260)"/> <wire from="(930,2030)" to="(960,2030)"/> <wire from="(1250,3720)" to="(1320,3720)"/> <wire from="(190,340)" to="(210,340)"/> <wire from="(2220,420)" to="(2270,420)"/> <wire from="(2120,110)" to="(2120,190)"/> <wire from="(3370,3480)" to="(3430,3480)"/> <wire from="(2360,2720)" to="(2360,2740)"/> <wire from="(2900,690)" to="(2900,1040)"/> <wire from="(2800,1650)" to="(2800,2890)"/> <wire from="(2130,660)" to="(2170,660)"/> <wire from="(1080,800)" to="(1080,840)"/> <wire from="(2160,2610)" to="(2200,2610)"/> <wire from="(810,3530)" to="(820,3530)"/> <wire from="(2680,4640)" to="(2680,4660)"/> <wire from="(3460,3180)" to="(3460,3190)"/> <wire from="(3130,160)" to="(3130,240)"/> <wire from="(2210,4400)" to="(2240,4400)"/> <wire from="(1850,470)" to="(1850,2990)"/> <wire from="(610,2460)" to="(660,2460)"/> <wire from="(2990,4370)" to="(3460,4370)"/> <wire from="(3120,3410)" to="(3130,3410)"/> <wire from="(3470,3000)" to="(3470,3050)"/> <wire from="(3480,3010)" to="(3480,3070)"/> <wire from="(1260,3670)" to="(1260,3700)"/> <wire from="(2980,3250)" to="(3010,3250)"/> <wire from="(1400,3580)" to="(1440,3580)"/> <wire from="(2180,2460)" to="(2200,2460)"/> <wire from="(1630,1160)" to="(1630,3230)"/> <wire from="(1260,3420)" to="(1320,3420)"/> <wire from="(1260,3740)" to="(1320,3740)"/> <wire from="(2230,4570)" to="(2370,4570)"/> <wire from="(2630,4270)" to="(2630,4390)"/> <wire from="(2890,3250)" to="(2960,3250)"/> <wire from="(800,3530)" to="(800,3550)"/> <wire from="(2500,110)" to="(2500,170)"/> <wire from="(3220,3390)" to="(3220,3430)"/> <wire from="(1290,1280)" to="(1410,1280)"/> <wire from="(3460,2990)" to="(3460,3030)"/> <wire from="(2180,110)" to="(2180,170)"/> <wire from="(3270,1630)" to="(3290,1630)"/> <wire from="(1280,3370)" to="(1280,3380)"/> <wire from="(1470,3360)" to="(1480,3360)"/> <wire from="(3440,2970)" to="(3440,2990)"/> <wire from="(2980,4110)" to="(2980,4120)"/> <wire from="(950,800)" to="(950,840)"/> <wire from="(3240,2770)" to="(3240,2790)"/> <wire from="(1110,1720)" to="(1120,1720)"/> <wire from="(2880,380)" to="(3060,380)"/> <wire from="(2240,1770)" to="(2240,1780)"/> <wire from="(2630,2130)" to="(2630,3090)"/> <wire from="(2140,1170)" to="(2260,1170)"/> <wire from="(2950,2870)" to="(3010,2870)"/> <wire from="(3450,2980)" to="(3450,3010)"/> <wire from="(2170,420)" to="(2170,430)"/> <wire from="(3050,4500)" to="(3050,4530)"/> <wire from="(3210,2740)" to="(3210,2770)"/> <wire from="(2230,4640)" to="(2230,4660)"/> <wire from="(2450,4540)" to="(2450,4560)"/> <wire from="(2180,430)" to="(2180,450)"/> <wire from="(2970,4190)" to="(3010,4190)"/> <wire from="(2210,4300)" to="(2210,4320)"/> <wire from="(1460,3050)" to="(2770,3050)"/> <wire from="(2840,3230)" to="(3010,3230)"/> <wire from="(1350,220)" to="(1350,900)"/> <wire from="(2480,1790)" to="(2840,1790)"/> <wire from="(3430,2960)" to="(3430,2970)"/> <wire from="(1290,670)" to="(1910,670)"/> <wire from="(2960,3050)" to="(2980,3050)"/> <wire from="(2880,2860)" to="(2880,2900)"/> <wire from="(2570,730)" to="(2600,730)"/> <wire from="(150,2760)" to="(210,2760)"/> <wire from="(3120,1500)" to="(3120,1540)"/> <wire from="(3090,4540)" to="(3090,4660)"/> <wire from="(2470,1280)" to="(2490,1280)"/> <wire from="(3490,2830)" to="(3490,2890)"/> <wire from="(1110,3420)" to="(1150,3420)"/> <wire from="(720,2170)" to="(720,2240)"/> <wire from="(2400,2700)" to="(2400,2740)"/> <wire from="(3330,1140)" to="(3590,1140)"/> <wire from="(3420,2950)" to="(3490,2950)"/> <wire from="(2050,1470)" to="(2100,1470)"/> <wire from="(2250,1710)" to="(2260,1710)"/> <wire from="(2120,1390)" to="(2260,1390)"/> <wire from="(820,1550)" to="(1500,1550)"/> <wire from="(3360,4080)" to="(3390,4080)"/> <wire from="(3340,3420)" to="(3370,3420)"/> <wire from="(2170,2270)" to="(2180,2270)"/> <wire from="(3120,340)" to="(3130,340)"/> <wire from="(660,3050)" to="(1410,3050)"/> <wire from="(790,3650)" to="(790,3670)"/> <wire from="(3470,3130)" to="(3470,3150)"/> <wire from="(1240,1660)" to="(1250,1660)"/> <wire from="(190,180)" to="(1370,180)"/> <wire from="(2450,4560)" to="(2630,4560)"/> <wire from="(2120,900)" to="(2170,900)"/> <wire from="(230,320)" to="(250,320)"/> <wire from="(790,3750)" to="(820,3750)"/> <wire from="(960,360)" to="(960,550)"/> <wire from="(3490,3020)" to="(3490,3090)"/> <wire from="(2450,190)" to="(2450,210)"/> <wire from="(2380,4600)" to="(2380,4620)"/> <wire from="(170,590)" to="(180,590)"/> <wire from="(1140,800)" to="(1140,840)"/> <wire from="(1330,2060)" to="(1350,2060)"/> <wire from="(3120,3420)" to="(3120,3430)"/> <wire from="(2440,180)" to="(2440,210)"/> <wire from="(2570,930)" to="(3120,930)"/> <wire from="(2170,2380)" to="(2200,2380)"/> <wire from="(2210,4340)" to="(2240,4340)"/> <wire from="(1690,3210)" to="(3010,3210)"/> <wire from="(2860,1310)" to="(2860,3270)"/> <wire from="(2520,1860)" to="(2520,1960)"/> <wire from="(2980,520)" to="(2980,880)"/> <wire from="(1160,400)" to="(1200,400)"/> <wire from="(2240,110)" to="(2240,150)"/> <wire from="(2480,1750)" to="(2820,1750)"/> <wire from="(2520,2100)" to="(2540,2100)"/> <wire from="(2210,4350)" to="(2230,4350)"/> <wire from="(1650,1120)" to="(1650,3190)"/> <wire from="(1470,370)" to="(1530,370)"/> <wire from="(2940,4410)" to="(3520,4410)"/> <wire from="(780,3450)" to="(780,3480)"/> <wire from="(2210,4360)" to="(2220,4360)"/> <wire from="(470,470)" to="(470,1960)"/> <wire from="(1060,480)" to="(1310,480)"/> <wire from="(2480,1810)" to="(2560,1810)"/> <wire from="(3120,1430)" to="(3130,1430)"/> <wire from="(3280,2750)" to="(3280,2790)"/> <wire from="(3040,4540)" to="(3060,4540)"/> <wire from="(3180,2760)" to="(3200,2760)"/> <wire from="(1270,3620)" to="(1270,3630)"/> <wire from="(1670,3170)" to="(3010,3170)"/> <wire from="(3440,2910)" to="(3440,2930)"/> <wire from="(1290,1200)" to="(1300,1200)"/> <wire from="(1310,3780)" to="(1320,3780)"/> <wire from="(1150,1380)" to="(1160,1380)"/> <wire from="(220,2030)" to="(250,2030)"/> <wire from="(1010,800)" to="(1010,840)"/> <wire from="(3300,3410)" to="(3300,3430)"/> <wire from="(2720,3190)" to="(2720,3960)"/> <wire from="(2900,1070)" to="(2900,1710)"/> <wire from="(2030,4480)" to="(2720,4480)"/> <wire from="(3100,330)" to="(3100,360)"/> <wire from="(2750,1670)" to="(2750,2910)"/> <wire from="(1240,320)" to="(1240,550)"/> <wire from="(2720,3190)" to="(3010,3190)"/> <wire from="(2170,2280)" to="(2170,2300)"/> <wire from="(3170,220)" to="(3290,220)"/> <wire from="(850,760)" to="(860,760)"/> <wire from="(2160,1150)" to="(2260,1150)"/> <wire from="(3460,3250)" to="(3460,3260)"/> <wire from="(2140,240)" to="(2170,240)"/> <wire from="(3460,3180)" to="(3470,3180)"/> <wire from="(1370,180)" to="(1370,900)"/> <wire from="(2540,4170)" to="(2560,4170)"/> <wire from="(200,2090)" to="(200,2540)"/> <wire from="(2700,4330)" to="(2720,4330)"/> <wire from="(1110,3360)" to="(1150,3360)"/> <wire from="(2980,4280)" to="(3010,4280)"/> <wire from="(1160,280)" to="(1260,280)"/> <wire from="(2380,4540)" to="(2380,4580)"/> <wire from="(1120,1360)" to="(1120,1390)"/> <wire from="(720,3360)" to="(820,3360)"/> <wire from="(2250,1650)" to="(2260,1650)"/> <wire from="(2120,1330)" to="(2260,1330)"/> <wire from="(2320,120)" to="(2330,120)"/> <wire from="(2160,600)" to="(2170,600)"/> <wire from="(3110,910)" to="(3120,910)"/> <wire from="(2980,1360)" to="(2980,1540)"/> <wire from="(2650,4290)" to="(2660,4290)"/> <wire from="(1190,2500)" to="(2200,2500)"/> <wire from="(3360,1470)" to="(3380,1470)"/> <wire from="(2940,4520)" to="(2940,4660)"/> <wire from="(2480,1830)" to="(2540,1830)"/> <wire from="(1290,1080)" to="(1690,1080)"/> <wire from="(1390,1880)" to="(1390,2120)"/> <wire from="(570,2520)" to="(590,2520)"/> <wire from="(1110,2110)" to="(1120,2110)"/> <wire from="(220,2810)" to="(240,2810)"/> <wire from="(410,2240)" to="(620,2240)"/> <wire from="(1210,3240)" to="(1280,3240)"/> <wire from="(2390,150)" to="(2440,150)"/> <wire from="(680,3070)" to="(2690,3070)"/> <wire from="(2660,1050)" to="(2720,1050)"/> <wire from="(3250,1570)" to="(3250,1600)"/> <wire from="(2770,560)" to="(2770,1160)"/> <wire from="(1100,1780)" to="(1770,1780)"/> <wire from="(2480,4640)" to="(2480,4660)"/> <wire from="(240,280)" to="(250,280)"/> <wire from="(2720,3960)" to="(3010,3960)"/> <wire from="(1970,350)" to="(1970,520)"/> <wire from="(1200,800)" to="(1200,840)"/> <wire from="(1290,1260)" to="(1570,1260)"/> <wire from="(2210,4370)" to="(2210,4400)"/> <wire from="(3480,3010)" to="(3490,3010)"/> <wire from="(800,920)" to="(860,920)"/> <wire from="(3060,1360)" to="(3150,1360)"/> <wire from="(1290,1120)" to="(1650,1120)"/> <wire from="(1280,3660)" to="(1320,3660)"/> <wire from="(1290,1100)" to="(1670,1100)"/> <wire from="(2180,170)" to="(2260,170)"/> <wire from="(790,3720)" to="(790,3750)"/> <wire from="(2750,4270)" to="(2750,4390)"/> <wire from="(2960,1140)" to="(2960,1650)"/> <wire from="(2120,1460)" to="(2260,1460)"/> <wire from="(900,400)" to="(940,400)"/> <wire from="(3360,1490)" to="(3360,1530)"/> <wire from="(3460,2870)" to="(3460,2910)"/> <wire from="(2990,4320)" to="(2990,4370)"/> <wire from="(3360,1360)" to="(3360,1470)"/> <wire from="(3240,2760)" to="(3260,2760)"/> <wire from="(3150,180)" to="(3230,180)"/> <wire from="(780,3500)" to="(800,3500)"/> <wire from="(1390,410)" to="(1530,410)"/> <wire from="(3390,4080)" to="(3390,4100)"/> <wire from="(3070,1600)" to="(3120,1600)"/> <wire from="(1250,3340)" to="(1260,3340)"/> <wire from="(1070,280)" to="(1080,280)"/> <wire from="(570,2410)" to="(570,2520)"/> <wire from="(980,320)" to="(980,550)"/> <wire from="(3330,910)" to="(3370,910)"/> <wire from="(2930,720)" to="(2930,1360)"/> <wire from="(930,2040)" to="(960,2040)"/> <wire from="(2570,700)" to="(2570,710)"/> <wire from="(3330,1180)" to="(3620,1180)"/> <wire from="(2150,2600)" to="(2200,2600)"/> <wire from="(2520,1290)" to="(2520,1310)"/> <wire from="(3140,4530)" to="(3140,4660)"/> <wire from="(2030,4640)" to="(2030,4660)"/> <wire from="(2170,2220)" to="(2170,2240)"/> <wire from="(2300,110)" to="(2300,130)"/> <wire from="(1070,800)" to="(1070,840)"/> <wire from="(2130,670)" to="(2170,670)"/> <wire from="(810,3220)" to="(820,3220)"/> <wire from="(1150,3440)" to="(1150,3480)"/> <wire from="(3440,2930)" to="(3490,2930)"/> <wire from="(1240,1720)" to="(1260,1720)"/> <wire from="(1980,4460)" to="(1980,4620)"/> <wire from="(1290,1180)" to="(1590,1180)"/> <wire from="(2810,4260)" to="(2810,4620)"/> <wire from="(2540,4230)" to="(2700,4230)"/> <wire from="(3030,1140)" to="(3120,1140)"/> <wire from="(3030,820)" to="(3120,820)"/> <wire from="(1180,1360)" to="(1180,1390)"/> <wire from="(2180,2470)" to="(2200,2470)"/> <wire from="(2170,4380)" to="(2190,4380)"/> <wire from="(3420,2830)" to="(3490,2830)"/> <wire from="(2550,610)" to="(2560,610)"/> <wire from="(720,3300)" to="(820,3300)"/> <wire from="(900,280)" to="(1000,280)"/> <wire from="(2250,1270)" to="(2260,1270)"/> <wire from="(190,1830)" to="(1260,1830)"/> <wire from="(1290,900)" to="(1350,900)"/> <wire from="(3110,850)" to="(3120,850)"/> <wire from="(2160,1070)" to="(2680,1070)"/> <wire from="(3000,3940)" to="(3010,3940)"/> <wire from="(3520,3170)" to="(3540,3170)"/> <wire from="(3180,1550)" to="(3200,1550)"/> <wire from="(1260,280)" to="(1260,550)"/> <wire from="(2420,4590)" to="(2480,4590)"/> <wire from="(1790,530)" to="(1790,1610)"/> <wire from="(1770,350)" to="(1970,350)"/> <wire from="(3040,4500)" to="(3040,4520)"/> <wire from="(3200,2740)" to="(3200,2760)"/> <wire from="(940,800)" to="(940,840)"/> <wire from="(1110,2050)" to="(1120,2050)"/> <wire from="(2240,2100)" to="(2240,2110)"/> <wire from="(2220,4320)" to="(2220,4330)"/> <wire from="(2560,2420)" to="(2560,2430)"/> <wire from="(2120,780)" to="(2170,780)"/> <wire from="(2110,560)" to="(2110,640)"/> <wire from="(2570,2110)" to="(2570,2130)"/> <wire from="(2320,130)" to="(2320,210)"/> <wire from="(1400,3600)" to="(1430,3600)"/> <wire from="(1450,3330)" to="(1480,3330)"/> <wire from="(1190,2500)" to="(1190,3240)"/> <wire from="(2440,4540)" to="(2440,4570)"/> <wire from="(2840,290)" to="(2950,290)"/> <wire from="(1420,3630)" to="(1440,3630)"/> <wire from="(1430,3320)" to="(1450,3320)"/> <wire from="(1460,3350)" to="(1480,3350)"/> <wire from="(3130,1470)" to="(3180,1470)"/> <wire from="(1410,1280)" to="(1410,3050)"/> <wire from="(2240,180)" to="(2240,210)"/> <wire from="(2170,2260)" to="(2200,2260)"/> <wire from="(3130,350)" to="(3150,350)"/> <wire from="(1500,2000)" to="(2560,2000)"/> <wire from="(3270,1590)" to="(3410,1590)"/> <wire from="(800,3670)" to="(800,3680)"/> <wire from="(1480,1980)" to="(2540,1980)"/> <wire from="(2420,170)" to="(2420,210)"/> <wire from="(990,1360)" to="(990,1490)"/> <wire from="(2180,2280)" to="(2200,2280)"/> <wire from="(1400,3720)" to="(1440,3720)"/> <wire from="(2480,1630)" to="(2490,1630)"/> <wire from="(3590,1140)" to="(3590,3480)"/> <wire from="(3070,180)" to="(3070,240)"/> <wire from="(2120,1400)" to="(2260,1400)"/> <wire from="(2490,1520)" to="(2490,1570)"/> <wire from="(2230,4260)" to="(2240,4260)"/> <wire from="(2410,160)" to="(2410,210)"/> <wire from="(3460,2910)" to="(3490,2910)"/> <wire from="(1770,370)" to="(1950,370)"/> <wire from="(3080,3390)" to="(3080,3430)"/> <wire from="(3360,4100)" to="(3380,4100)"/> <wire from="(3000,3110)" to="(3010,3110)"/> <wire from="(3270,1400)" to="(3270,1570)"/> <wire from="(2660,1050)" to="(2660,1100)"/> <wire from="(1020,240)" to="(1020,320)"/> <wire from="(2700,3350)" to="(3010,3350)"/> <wire from="(1210,3090)" to="(2630,3090)"/> <wire from="(3060,1530)" to="(3110,1530)"/> <wire from="(2130,4550)" to="(2130,4620)"/> <wire from="(630,2410)" to="(630,2520)"/> <wire from="(2990,3300)" to="(2990,3310)"/> <wire from="(2360,110)" to="(2360,120)"/> <wire from="(2400,560)" to="(2770,560)"/> <wire from="(3350,3430)" to="(3390,3430)"/> <wire from="(3090,4520)" to="(3190,4520)"/> <wire from="(2410,2720)" to="(2410,2740)"/> <wire from="(2590,660)" to="(2590,690)"/> <wire from="(810,280)" to="(820,280)"/> <wire from="(3420,3170)" to="(3470,3170)"/> <wire from="(3420,2850)" to="(3470,2850)"/> <wire from="(1770,390)" to="(1930,390)"/> <wire from="(1110,3450)" to="(1130,3450)"/> <wire from="(3190,4520)" to="(3190,4660)"/> <wire from="(2730,4640)" to="(2730,4660)"/> <wire from="(2170,2390)" to="(2200,2390)"/> <wire from="(2220,1800)" to="(2250,1800)"/> <wire from="(1000,280)" to="(1000,550)"/> <wire from="(2960,4150)" to="(2980,4150)"/> <wire from="(2150,450)" to="(2180,450)"/> <wire from="(2540,2440)" to="(2570,2440)"/> <wire from="(1770,450)" to="(1870,450)"/> <wire from="(230,350)" to="(230,360)"/> <wire from="(2960,4140)" to="(2990,4140)"/> <wire from="(2220,1810)" to="(2240,1810)"/> <wire from="(2240,1830)" to="(2260,1830)"/> <wire from="(3410,1480)" to="(3480,1480)"/> <wire from="(3420,3090)" to="(3490,3090)"/> <wire from="(780,1380)" to="(880,1380)"/> <wire from="(1470,110)" to="(1470,370)"/> <wire from="(1770,430)" to="(1890,430)"/> <wire from="(3160,2740)" to="(3190,2740)"/> <wire from="(2250,1210)" to="(2260,1210)"/> <wire from="(2220,1820)" to="(2230,1820)"/> <wire from="(2160,800)" to="(2170,800)"/> <wire from="(2960,4160)" to="(2970,4160)"/> <wire from="(790,3470)" to="(790,3490)"/> <wire from="(3110,790)" to="(3120,790)"/> <wire from="(1430,3230)" to="(1480,3230)"/> <wire from="(390,2300)" to="(390,2390)"/> <wire from="(2880,2860)" to="(2960,2860)"/> <wire from="(2410,160)" to="(2480,160)"/> <wire from="(910,1660)" to="(1120,1660)"/> <wire from="(1470,3310)" to="(1480,3310)"/> <wire from="(1220,1460)" to="(1230,1460)"/> <wire from="(220,2040)" to="(250,2040)"/> <wire from="(2480,1650)" to="(2800,1650)"/> <wire from="(1000,800)" to="(1000,840)"/> <wire from="(2390,2710)" to="(2580,2710)"/> <wire from="(1770,470)" to="(1850,470)"/> <wire from="(1770,410)" to="(1780,410)"/> <wire from="(3270,3390)" to="(3270,3420)"/> <wire from="(790,3570)" to="(820,3570)"/> <wire from="(2280,4640)" to="(2280,4660)"/> <wire from="(3070,310)" to="(3070,340)"/> <wire from="(1160,420)" to="(1190,420)"/> <wire from="(830,1920)" to="(1350,1920)"/> <wire from="(3030,360)" to="(3070,360)"/> <wire from="(2840,290)" to="(2840,1790)"/> <wire from="(1280,4110)" to="(2580,4110)"/> <wire from="(2220,1790)" to="(2260,1790)"/> <wire from="(3100,4500)" to="(3100,4510)"/> <wire from="(790,3270)" to="(800,3270)"/> <wire from="(2140,180)" to="(2240,180)"/> <wire from="(1160,1390)" to="(1180,1390)"/> <wire from="(1170,2390)" to="(2150,2390)"/> <wire from="(1430,3600)" to="(1430,3620)"/> <wire from="(1240,1360)" to="(1240,1440)"/> <wire from="(1770,510)" to="(1810,510)"/> <wire from="(2100,940)" to="(2100,1040)"/> <wire from="(2870,110)" to="(2870,220)"/> <wire from="(2960,4170)" to="(2960,4210)"/> <wire from="(2160,2710)" to="(2380,2710)"/> <wire from="(2470,1220)" to="(2500,1220)"/> <wire from="(2480,1880)" to="(2500,1880)"/> <wire from="(2220,1830)" to="(2220,1870)"/> <wire from="(1280,3760)" to="(1280,4110)"/> <wire from="(2580,700)" to="(2600,700)"/> <wire from="(2980,3330)" to="(3010,3330)"/> <wire from="(2480,1570)" to="(2490,1570)"/> <wire from="(2490,1260)" to="(2500,1260)"/> <wire from="(3080,3430)" to="(3110,3430)"/> <wire from="(650,670)" to="(690,670)"/> <wire from="(2190,2560)" to="(2200,2560)"/> <wire from="(2120,1340)" to="(2260,1340)"/> <wire from="(330,470)" to="(330,1960)"/> <wire from="(3000,3050)" to="(3010,3050)"/> <wire from="(3140,3390)" to="(3140,3430)"/> <wire from="(3000,3370)" to="(3010,3370)"/> <wire from="(2100,940)" to="(2170,940)"/> <wire from="(2720,1050)" to="(2720,1100)"/> <wire from="(1770,490)" to="(1830,490)"/> <wire from="(1290,1020)" to="(1300,1020)"/> <wire from="(190,180)" to="(190,340)"/> <wire from="(3170,220)" to="(3170,240)"/> <wire from="(3240,4510)" to="(3240,4660)"/> <wire from="(3160,3410)" to="(3160,3430)"/> <wire from="(2550,640)" to="(2600,640)"/> <wire from="(1050,2130)" to="(1120,2130)"/> <wire from="(3180,1380)" to="(3180,1470)"/> <wire from="(3150,3400)" to="(3150,3430)"/> <wire from="(2180,4560)" to="(2360,4560)"/> <wire from="(2860,3270)" to="(2960,3270)"/> <wire from="(2430,4600)" to="(2430,4620)"/> <wire from="(1460,3500)" to="(1460,3600)"/> <wire from="(1430,3380)" to="(1460,3380)"/> <wire from="(2550,110)" to="(2550,190)"/> <wire from="(2940,4240)" to="(2980,4240)"/> <wire from="(1160,300)" to="(1250,300)"/> <wire from="(1770,530)" to="(1790,530)"/> <wire from="(2370,4540)" to="(2370,4570)"/> <wire from="(1190,800)" to="(1190,840)"/> <wire from="(1400,3680)" to="(1420,3680)"/> <wire from="(2420,110)" to="(2420,140)"/> <wire from="(3170,3420)" to="(3170,3430)"/> <wire from="(1130,3410)" to="(1150,3410)"/> <wire from="(1110,3390)" to="(1130,3390)"/> <wire from="(2480,1860)" to="(2520,1860)"/> <wire from="(1910,670)" to="(1910,1280)"/> <wire from="(2230,1750)" to="(2260,1750)"/> <wire from="(3510,3050)" to="(3520,3050)"/> <wire from="(3230,2770)" to="(3240,2770)"/> <wire from="(2590,2440)" to="(2610,2440)"/> <wire from="(1130,3430)" to="(1130,3450)"/> <wire from="(2280,4580)" to="(2280,4620)"/> <wire from="(2180,430)" to="(2200,430)"/> <wire from="(2240,1770)" to="(2260,1770)"/> <wire from="(1260,3110)" to="(1260,3200)"/> <wire from="(1260,3740)" to="(1260,4130)"/> <wire from="(2560,2620)" to="(2560,2680)"/> <wire from="(3110,730)" to="(3120,730)"/> <wire from="(3470,3000)" to="(3490,3000)"/> <wire from="(2540,4260)" to="(2810,4260)"/> <wire from="(3330,940)" to="(3350,940)"/> <wire from="(2540,4320)" to="(2550,4320)"/> <wire from="(730,1880)" to="(1390,1880)"/> <wire from="(1250,3670)" to="(1260,3670)"/> <wire from="(2180,2240)" to="(2180,2250)"/> <wire from="(2490,1590)" to="(2490,1600)"/> <wire from="(2490,1270)" to="(2490,1280)"/> <wire from="(930,2050)" to="(960,2050)"/> <wire from="(3420,3250)" to="(3460,3250)"/> <wire from="(2820,4040)" to="(3010,4040)"/> <wire from="(900,420)" to="(930,420)"/> <wire from="(390,2810)" to="(400,2810)"/> <wire from="(3130,310)" to="(3130,340)"/> <wire from="(2580,4110)" to="(2580,4200)"/> <wire from="(1250,3650)" to="(1280,3650)"/> <wire from="(3010,1250)" to="(3370,1250)"/> <wire from="(1250,3660)" to="(1270,3660)"/> <wire from="(2130,680)" to="(2170,680)"/> <wire from="(2500,1280)" to="(2500,1310)"/> <wire from="(1060,800)" to="(1060,840)"/> <wire from="(2220,1730)" to="(2260,1730)"/> <wire from="(2550,780)" to="(2590,780)"/> <wire from="(3330,3390)" to="(3330,3400)"/> <wire from="(1270,3380)" to="(1270,3400)"/> <wire from="(1590,1180)" to="(1590,4020)"/> <wire from="(2910,4180)" to="(2910,4480)"/> <wire from="(2460,4550)" to="(2680,4550)"/> <wire from="(3480,1100)" to="(3480,1480)"/> <wire from="(2380,4600)" to="(2400,4600)"/> <wire from="(2550,930)" to="(2570,930)"/> <wire from="(1020,320)" to="(1080,320)"/> <wire from="(2980,3270)" to="(3010,3270)"/> <wire from="(2430,4540)" to="(2430,4580)"/> <wire from="(2900,2870)" to="(2930,2870)"/> <wire from="(790,3540)" to="(790,3570)"/> <wire from="(720,3560)" to="(760,3560)"/> <wire from="(1050,1740)" to="(1050,2130)"/> <wire from="(2480,110)" to="(2480,160)"/> <wire from="(3110,1180)" to="(3120,1180)"/> <wire from="(1350,1920)" to="(1350,2060)"/> <wire from="(680,2370)" to="(850,2370)"/> <wire from="(150,510)" to="(570,510)"/> <wire from="(2900,1710)" to="(2900,2870)"/> <wire from="(1470,3260)" to="(1470,3310)"/> <wire from="(2990,4140)" to="(2990,4150)"/> <wire from="(930,800)" to="(930,840)"/> <wire from="(2250,1800)" to="(2250,1810)"/> <wire from="(2950,2890)" to="(3010,2890)"/> <wire from="(900,300)" to="(990,300)"/> <wire from="(1770,1520)" to="(2490,1520)"/> <wire from="(2990,4530)" to="(3050,4530)"/> <wire from="(3200,3390)" to="(3200,3420)"/> <wire from="(2540,2090)" to="(2540,2100)"/> <wire from="(3030,990)" to="(3350,990)"/> <wire from="(2540,1830)" to="(2540,1980)"/> <wire from="(2550,2100)" to="(2550,2120)"/> <wire from="(3430,3480)" to="(3430,3870)"/> <wire from="(2960,4300)" to="(2960,4390)"/> <wire from="(1450,3340)" to="(1480,3340)"/> <wire from="(2930,110)" to="(2930,200)"/> <wire from="(180,240)" to="(250,240)"/> <wire from="(2480,4590)" to="(2480,4620)"/> <wire from="(1400,3620)" to="(1420,3620)"/> <wire from="(3030,4500)" to="(3030,4510)"/> <wire from="(3420,3050)" to="(3470,3050)"/> <wire from="(1250,800)" to="(1250,840)"/> <wire from="(1250,3680)" to="(1250,3720)"/> <wire from="(2530,4640)" to="(2530,4660)"/> <wire from="(1100,1400)" to="(1120,1400)"/> <comp lib="0" loc="(2260,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1510,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="R/W"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2430,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1110,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3170,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(2960,3940)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3510,3030)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2980,3940)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp loc="(3260,710)" name="OAM_BUF_CONTROL"/> <comp lib="1" loc="(2680,1070)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2110,640)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2990,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2300,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2810,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3230,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(560,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3040,1360)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> </comp> <comp lib="0" loc="(3090,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1520,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(2190,2580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2500,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2080,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3910)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2540,2170)" name="MUX"/> <comp loc="(3330,1040)" name="OAM_BUFFER"/> <comp lib="0" loc="(1250,1660)" name="Tunnel"> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2140,2260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(2689,1095)" name="Text"> <a name="text" val="!!!PAL"/> </comp> <comp loc="(2470,1080)" name="OAM_EVAL"/> <comp lib="0" loc="(2150,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1140,2010)" name="COLOR_CONTROL"/> <comp lib="1" loc="(590,2520)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,2460)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1520,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2480,1550)" name="CONTROL_REGS_PAL"/> <comp lib="0" loc="(3440,1590)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(760,3740)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3490,3290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2230,1130)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(3090,760)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(2140,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2580,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(770,3260)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> </comp> <comp lib="0" loc="(2120,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1150,1420)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> </comp> <comp lib="0" loc="(1310,3780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,2260)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3110,1180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1780,310)" name="Tunnel"> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2890,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD7"/> <a name="labelloc" val="south"/> </comp> <comp lib="1" loc="(2180,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp loc="(1160,280)" name="V_COUNTER"/> <comp lib="1" loc="(3170,1360)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2190,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(390,2300)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(660,590)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2630,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2230,4240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD6"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(394,133)" name="Text"> <a name="text" val="6538 PPU"/> <a name="font" val="SansSerif plain 64"/> </comp> <comp lib="0" loc="(2200,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(2911,2884)" name="Text"> <a name="text" val="PAL!!!"/> </comp> <comp lib="0" loc="(2190,2520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2130,820)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(3330,2720)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2530,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1350,120)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(3000,2810)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1230,3600)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3540,3170)" name="Tunnel"> <a name="width" val="5"/> <a name="label" val="TH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2380,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA7"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1290,840)" name="CONTROL_UNIT_PAL"/> <comp lib="0" loc="(2190,4380)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="14"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="1"/> <a name="bit10" val="2"/> <a name="bit11" val="3"/> <a name="bit12" val="4"/> <a name="bit13" val="5"/> </comp> <comp lib="0" loc="(2180,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1170,3390)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(810,3220)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1240,3500)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3490,3170)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2230,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1990,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1300,1020)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/INT"/> </comp> <comp lib="0" loc="(1110,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2680,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2120,4380)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2560,2330)" name="Tunnel"> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(2700,4330)" name="D Flip-Flop"/> <comp lib="0" loc="(1170,1460)" name="Tunnel"> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2150,2260)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(2280,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2680,4290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(2980,4240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> </comp> <comp lib="0" loc="(2530,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(850,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2550,580)" name="OAM_CONTROL_PAL"/> <comp lib="0" loc="(2960,3050)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(1329,983)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="0" loc="(3000,2830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(240,1980)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3290,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> </comp> <comp lib="0" loc="(1390,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS2"/> <a name="labelloc" val="north"/> </comp> <comp loc="(900,280)" name="H_COUNTER"/> <comp lib="0" loc="(2220,4200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3140,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2250,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,4320)" name="Tunnel"> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,2810)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,2480)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1350,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1110,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,1080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1120,1640)" name="INTERRUPT_CONTROL"/> <comp lib="0" loc="(1070,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3060,380)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2250,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3078,64)" name="Text"> <a name="text" val="EXT INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(2990,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="6" loc="(2347,35)" name="Text"> <a name="text" val="Logisim doesn't support bidirectional pads and wires"/> </comp> <comp lib="0" loc="(1110,1720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1290,550)" name="HV_SELECT_PAL"/> <comp lib="1" loc="(3130,1530)" name="Controlled Buffer"> <a name="width" val="5"/> </comp> <comp lib="0" loc="(2160,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(170,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3020,4480)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2510,1590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="6" loc="(3323,1313)" name="Text"> <a name="text" val="OAM1"/> </comp> <comp lib="0" loc="(2100,1280)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(3050,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> </comp> <comp lib="0" loc="(1300,1000)" name="Tunnel"> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,4180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2250,2130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,1060)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2520,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(2160,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2870,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp lib="0" loc="(1250,1440)" name="Tunnel"> <a name="label" val="/H1'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(540,220)" name="VIDEO_OUT_PAL"/> <comp lib="4" loc="(3340,1360)" name="RAM"> <a name="bus" val="separate"/> </comp> <comp loc="(1430,3160)" name="H_INVERSION"/> <comp lib="0" loc="(2250,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2280,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2160,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4170)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2030,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2810,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="label" val="ALE"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1110,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3110,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2560,610)" name="Tunnel"> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(240,2760)" name="RESET_FF"/> <comp lib="1" loc="(3250,1630)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3110,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2950,2870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(760,3560)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2250,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2140,220)" name="RW_CONTROL"/> <comp loc="(1770,300)" name="REGISTER_SELECT"/> <comp lib="0" loc="(2480,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1280,3240)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2200,2090)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="1" loc="(2080,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(210,340)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1780,410)" name="Tunnel"> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3360,3450)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2190,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2330,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3430,1590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="4" loc="(680,2370)" name="RAM"> <a name="addrWidth" val="5"/> <a name="dataWidth" val="6"/> <a name="bus" val="separate"/> </comp> <comp lib="0" loc="(2220,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2320,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D3"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(2630,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2430,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3240,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1390,1000)" name="Ground"/> <comp lib="0" loc="(2190,2320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2330,4520)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1230,1460)" name="Tunnel"> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1500,3380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(2662,4748)" name="Text"> <a name="text" val="VRAM INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(2120,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2150,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB6"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2520,2040)" name="SELECT_2.3.5.7_PIXEL"/> <comp lib="6" loc="(2345,59)" name="Text"> <a name="text" val="So we have to add workaround by separate I/O wires"/> </comp> <comp loc="(3200,240)" name="EXT_IO"/> <comp lib="0" loc="(1270,1420)" name="Tunnel"> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2930,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> </comp> <comp loc="(2540,4150)" name="VRAM_BUS_CONTROL"/> <comp lib="0" loc="(2120,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1300,1220)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D7"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3520,3050)" name="Tunnel"> <a name="width" val="14"/> <a name="label" val="PPU ADR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(1814,60)" name="Text"> <a name="text" val="CPU INTERFACE"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="0" loc="(2130,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(810,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1430,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3410,4090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(2620,720)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(2580,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA3"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(142,2877)" name="Text"> <a name="text" val="Manual cleaning"/> </comp> <comp lib="0" loc="(2990,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1470,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="RS0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2240,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(810,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(3420,2790)" name="PICTURE_ADDRESS_GEN"/> <comp lib="0" loc="(3110,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> </comp> <comp lib="0" loc="(3040,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2110,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2190,2540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2160,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2230,4260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2500,210)" name="CPU_DATA_IO"/> <comp lib="0" loc="(120,630)" name="Clock"/> <comp lib="0" loc="(240,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2890,4480)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3250)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="0" loc="(3000,3150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(650,590)" name="PIXEL_CLOCK_PAL"/> <comp lib="0" loc="(3190,4660)" name="Pin"> <a name="facing" val="north"/> <a name="tristate" val="false"/> <a name="label" val="PD1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2420,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2420,2760)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(2150,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R2DB5"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1070,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,3270)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp loc="(1110,3200)" name="OAM_FIFO"/> <comp lib="0" loc="(590,2430)" name="Constant"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(2480,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D6"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(3070,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2550,4290)" name="Tunnel"> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3000,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2940,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1780,330)" name="Tunnel"> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2230,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2680,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1280,3220)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="4"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> </comp> <comp lib="1" loc="(2480,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(150,510)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="label" val="VOUT"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(400,2760)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(3100,3450)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(2130,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3270,2720)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(2200,1840)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3040,1540)" name="Splitter"> <a name="incoming" val="9"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> </comp> <comp lib="0" loc="(2730,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2180,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA11"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2100,1470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2250,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2150,2390)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(1980,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2440,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D5"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(3100,1480)" name="Demultiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp loc="(3360,3900)" name="BG_COLOR"/> <comp lib="0" loc="(1230,3410)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2980,3050)" name="Splitter"> <a name="fanout" val="1"/> <a name="incoming" val="6"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> </comp> <comp lib="0" loc="(700,3310)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1310,3180)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2960,4300)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="6" loc="(2675,4382)" name="Text"> <a name="text" val="WR DELAY"/> </comp> <comp lib="0" loc="(680,2460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(2380,110)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2250,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2330,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PA8"/> <a name="labelloc" val="south"/> </comp> <comp lib="2" loc="(3410,1480)" name="Multiplexer"> <a name="width" val="8"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2030,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2700,4290)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,3260)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(3323,1484)" name="Text"> <a name="text" val="OAM2"/> </comp> <comp lib="0" loc="(1110,1700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2950,2890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2190,2560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R2"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH/MUX"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2380,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1460,3600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1980,4660)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(2570,2110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(980,2090)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(2120,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(170,590)" name="NOT Gate"/> <comp lib="1" loc="(2730,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2220,4220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2590,2440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1300,1200)" name="Tunnel"> <a name="label" val="PAR/O"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(200,2710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/RES"/> </comp> <comp lib="0" loc="(1300,1040)" name="Tunnel"> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1110,2070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/R7"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(2250,1710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1400,3530)" name="READ_$2007"/> <comp lib="0" loc="(2160,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(3340,1530)" name="RAM"> <a name="addrWidth" val="5"/> <a name="bus" val="separate"/> </comp> <comp lib="1" loc="(220,2810)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(3150,1430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(200,2090)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="8"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="5" loc="(150,2850)" name="Button"/> <comp lib="0" loc="(2210,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(2530,4640)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3010,2750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB/PAR"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(170,1830)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2360,110)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="D4"/> <a name="labelloc" val="north"/> </comp> <comp loc="(270,1960)" name="COLOR_IO"/> <comp lib="0" loc="(3000,3090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/H2'"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> </circuit> <circuit name="D-latch"> <a name="circuit" val="D-latch"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#3dff63" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <polyline fill="none" points="51,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <ellipse cx="90.0" cy="80.0" fill="none" rx="4.0" ry="4.0" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="48">D LATCH</text> <circ-port height="8" pin="110,110" width="8" x="46" y="56"/> <circ-port height="8" pin="110,170" width="8" x="46" y="76"/> <circ-port height="10" pin="230,110" width="10" x="85" y="55"/> <circ-port height="10" pin="230,170" width="10" x="85" y="75"/> <circ-anchor facing="east" height="6" width="6" x="87" y="67"/> </appear> <wire from="(130,110)" to="(130,130)"/> <wire from="(130,150)" to="(130,170)"/> <wire from="(210,150)" to="(210,170)"/> <wire from="(210,110)" to="(210,130)"/> <wire from="(110,170)" to="(130,170)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(130,130)" to="(150,130)"/> <wire from="(130,150)" to="(150,150)"/> <wire from="(190,150)" to="(210,150)"/> <wire from="(190,130)" to="(210,130)"/> <wire from="(210,170)" to="(230,170)"/> <wire from="(210,110)" to="(230,110)"/> <comp lib="0" loc="(110,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D"/> </comp> <comp lib="4" loc="(190,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(230,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(230,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EN"/> </comp> </circuit> <circuit name="PIXEL_CLOCK_PAL"> <a name="circuit" val="PIXEL_CLOCK_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7c40" height="121" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="74">/CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="155">/PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="114">PCLK</text> <circ-port height="8" pin="80,60" width="8" x="46" y="66"/> <circ-port height="8" pin="80,240" width="8" x="46" y="106"/> <circ-port height="10" pin="960,260" width="10" x="125" y="65"/> <circ-port height="10" pin="880,730" width="10" x="125" y="145"/> <circ-port height="10" pin="880,530" width="10" x="125" y="105"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(520,450)" to="(520,650)"/> <wire from="(600,440)" to="(600,450)"/> <wire from="(600,640)" to="(600,650)"/> <wire from="(690,250)" to="(740,250)"/> <wire from="(910,230)" to="(910,240)"/> <wire from="(490,570)" to="(540,570)"/> <wire from="(460,600)" to="(460,740)"/> <wire from="(490,570)" to="(490,580)"/> <wire from="(230,750)" to="(280,750)"/> <wire from="(490,770)" to="(490,780)"/> <wire from="(600,610)" to="(640,610)"/> <wire from="(600,730)" to="(640,730)"/> <wire from="(600,530)" to="(640,530)"/> <wire from="(600,650)" to="(640,650)"/> <wire from="(600,450)" to="(640,450)"/> <wire from="(640,450)" to="(680,450)"/> <wire from="(640,530)" to="(680,530)"/> <wire from="(600,810)" to="(640,810)"/> <wire from="(680,450)" to="(720,450)"/> <wire from="(680,530)" to="(720,530)"/> <wire from="(640,810)" to="(680,810)"/> <wire from="(640,730)" to="(680,730)"/> <wire from="(640,650)" to="(680,650)"/> <wire from="(640,610)" to="(680,610)"/> <wire from="(680,610)" to="(720,610)"/> <wire from="(680,810)" to="(720,810)"/> <wire from="(680,650)" to="(720,650)"/> <wire from="(680,730)" to="(720,730)"/> <wire from="(260,650)" to="(260,730)"/> <wire from="(430,800)" to="(470,800)"/> <wire from="(780,290)" to="(800,290)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(260,170)" to="(280,170)"/> <wire from="(260,730)" to="(280,730)"/> <wire from="(180,360)" to="(180,530)"/> <wire from="(360,630)" to="(360,740)"/> <wire from="(540,570)" to="(540,690)"/> <wire from="(460,740)" to="(470,740)"/> <wire from="(390,650)" to="(520,650)"/> <wire from="(390,450)" to="(520,450)"/> <wire from="(840,240)" to="(850,240)"/> <wire from="(520,660)" to="(520,860)"/> <wire from="(720,610)" to="(720,620)"/> <wire from="(720,810)" to="(720,820)"/> <wire from="(560,300)" to="(740,300)"/> <wire from="(490,620)" to="(490,630)"/> <wire from="(490,820)" to="(490,830)"/> <wire from="(390,450)" to="(390,650)"/> <wire from="(560,490)" to="(560,770)"/> <wire from="(840,210)" to="(840,240)"/> <wire from="(260,630)" to="(360,630)"/> <wire from="(80,60)" to="(120,60)"/> <wire from="(600,650)" to="(600,670)"/> <wire from="(600,730)" to="(600,750)"/> <wire from="(640,530)" to="(640,550)"/> <wire from="(640,450)" to="(640,470)"/> <wire from="(600,530)" to="(600,550)"/> <wire from="(600,450)" to="(600,470)"/> <wire from="(320,740)" to="(360,740)"/> <wire from="(680,730)" to="(680,750)"/> <wire from="(680,650)" to="(680,670)"/> <wire from="(640,730)" to="(640,750)"/> <wire from="(640,650)" to="(640,670)"/> <wire from="(680,450)" to="(680,470)"/> <wire from="(680,530)" to="(680,550)"/> <wire from="(720,450)" to="(720,470)"/> <wire from="(720,530)" to="(720,550)"/> <wire from="(720,650)" to="(720,670)"/> <wire from="(720,730)" to="(720,750)"/> <wire from="(800,290)" to="(800,330)"/> <wire from="(560,160)" to="(580,160)"/> <wire from="(540,180)" to="(560,180)"/> <wire from="(640,160)" to="(660,160)"/> <wire from="(620,180)" to="(640,180)"/> <wire from="(700,180)" to="(720,180)"/> <wire from="(180,60)" to="(180,160)"/> <wire from="(720,280)" to="(740,280)"/> <wire from="(320,160)" to="(340,160)"/> <wire from="(400,160)" to="(420,160)"/> <wire from="(480,160)" to="(500,160)"/> <wire from="(340,540)" to="(340,650)"/> <wire from="(180,180)" to="(200,180)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(180,360)" to="(840,360)"/> <wire from="(260,650)" to="(340,650)"/> <wire from="(840,240)" to="(840,360)"/> <wire from="(260,190)" to="(260,240)"/> <wire from="(390,860)" to="(520,860)"/> <wire from="(390,660)" to="(520,660)"/> <wire from="(490,770)" to="(560,770)"/> <wire from="(480,90)" to="(480,160)"/> <wire from="(320,90)" to="(320,160)"/> <wire from="(910,210)" to="(910,220)"/> <wire from="(490,510)" to="(490,520)"/> <wire from="(490,710)" to="(490,720)"/> <wire from="(390,660)" to="(390,860)"/> <wire from="(260,160)" to="(260,170)"/> <wire from="(640,90)" to="(640,160)"/> <wire from="(540,570)" to="(580,570)"/> <wire from="(540,690)" to="(580,690)"/> <wire from="(620,490)" to="(660,490)"/> <wire from="(620,570)" to="(660,570)"/> <wire from="(580,690)" to="(620,690)"/> <wire from="(580,770)" to="(620,770)"/> <wire from="(620,770)" to="(660,770)"/> <wire from="(620,690)" to="(660,690)"/> <wire from="(580,490)" to="(620,490)"/> <wire from="(580,570)" to="(620,570)"/> <wire from="(660,690)" to="(700,690)"/> <wire from="(660,770)" to="(700,770)"/> <wire from="(660,570)" to="(700,570)"/> <wire from="(660,490)" to="(700,490)"/> <wire from="(180,180)" to="(180,330)"/> <wire from="(260,550)" to="(260,630)"/> <wire from="(360,740)" to="(460,740)"/> <wire from="(430,540)" to="(470,540)"/> <wire from="(180,530)" to="(180,750)"/> <wire from="(120,60)" to="(120,90)"/> <wire from="(160,90)" to="(320,90)"/> <wire from="(560,770)" to="(580,770)"/> <wire from="(560,490)" to="(580,490)"/> <wire from="(320,90)" to="(480,90)"/> <wire from="(180,60)" to="(400,60)"/> <wire from="(480,90)" to="(640,90)"/> <wire from="(260,550)" to="(280,550)"/> <wire from="(260,190)" to="(280,190)"/> <wire from="(720,730)" to="(880,730)"/> <wire from="(720,530)" to="(880,530)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(880,240)" to="(910,240)"/> <wire from="(460,600)" to="(470,600)"/> <wire from="(840,210)" to="(910,210)"/> <wire from="(720,180)" to="(720,230)"/> <wire from="(430,540)" to="(430,800)"/> <wire from="(120,60)" to="(180,60)"/> <wire from="(490,560)" to="(490,570)"/> <wire from="(80,240)" to="(260,240)"/> <wire from="(490,760)" to="(490,770)"/> <wire from="(640,180)" to="(640,250)"/> <wire from="(780,240)" to="(840,240)"/> <wire from="(180,330)" to="(800,330)"/> <wire from="(930,240)" to="(930,260)"/> <wire from="(600,590)" to="(600,610)"/> <wire from="(600,510)" to="(600,530)"/> <wire from="(380,180)" to="(420,180)"/> <wire from="(600,710)" to="(600,730)"/> <wire from="(640,590)" to="(640,610)"/> <wire from="(640,510)" to="(640,530)"/> <wire from="(600,790)" to="(600,810)"/> <wire from="(680,510)" to="(680,530)"/> <wire from="(640,790)" to="(640,810)"/> <wire from="(680,590)" to="(680,610)"/> <wire from="(640,710)" to="(640,730)"/> <wire from="(680,790)" to="(680,810)"/> <wire from="(680,710)" to="(680,730)"/> <wire from="(720,790)" to="(720,810)"/> <wire from="(720,710)" to="(720,730)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(180,530)" to="(280,530)"/> <wire from="(720,510)" to="(720,530)"/> <wire from="(720,590)" to="(720,610)"/> <wire from="(180,750)" to="(210,750)"/> <wire from="(400,60)" to="(400,160)"/> <wire from="(340,540)" to="(430,540)"/> <wire from="(560,180)" to="(580,180)"/> <wire from="(640,180)" to="(660,180)"/> <wire from="(400,60)" to="(560,60)"/> <wire from="(320,180)" to="(340,180)"/> <wire from="(320,540)" to="(340,540)"/> <wire from="(640,250)" to="(670,250)"/> <wire from="(930,260)" to="(960,260)"/> <wire from="(560,60)" to="(560,160)"/> <wire from="(180,160)" to="(200,160)"/> <wire from="(560,180)" to="(560,300)"/> <wire from="(720,230)" to="(720,280)"/> <comp lib="0" loc="(600,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(219,734)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(720,620)" name="Ground"/> <comp lib="1" loc="(320,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(320,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(490,760)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(510,471)" name="Text"> <a name="text" val="I"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(320,540)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(880,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(650,175)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(490,560)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(930,240)" name="Splitter"> <a name="facing" val="west"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(490,710)" name="Power"/> <comp lib="6" loc="(487,173)" name="Text"> <a name="text" val="6"/> </comp> <comp loc="(380,170)" name="D-latch"/> <comp lib="0" loc="(600,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(620,170)" name="D-latch"/> <comp lib="6" loc="(679,238)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(458,414)" name="Text"> <a name="text" val="PCLK DISTRIBUTION"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(640,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(880,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(490,780)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(507,681)" name="Text"> <a name="text" val="II"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(690,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(680,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(600,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(860,229)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(960,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(680,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(680,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(160,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(680,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="6" loc="(191,176)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(407,173)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="0" loc="(600,440)" name="Power"/> <comp lib="0" loc="(600,640)" name="Power"/> <comp lib="6" loc="(335,318)" name="Text"> <a name="text" val="Pixel clock is disabled during RESET (PPU stall)"/> </comp> <comp loc="(700,170)" name="D-latch"/> <comp lib="0" loc="(80,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="1" loc="(230,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(720,750)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(720,820)" name="Ground"/> <comp lib="0" loc="(720,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,510)" name="Power"/> <comp lib="0" loc="(600,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(640,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(880,240)" name="NOT Gate"/> <comp loc="(460,170)" name="D-latch"/> <comp lib="6" loc="(567,173)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(780,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="0" loc="(720,710)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="6" loc="(327,173)" name="Text"> <a name="text" val="8"/> </comp> <comp loc="(540,170)" name="D-latch"/> <comp lib="6" loc="(414,229)" name="Text"> <a name="text" val="PCLK = CLK / 5"/> </comp> <comp lib="1" loc="(780,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(490,830)" name="Ground"/> <comp lib="0" loc="(640,510)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(490,630)" name="Ground"/> <comp lib="0" loc="(640,550)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(240,170)" name="D-latch"/> <comp lib="0" loc="(490,580)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> </circuit> <circuit name="RESET_FF"> <a name="circuit" val="RESET_FF"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff3773" height="70" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="114">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="64">/RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="184" y="64">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="124" y="44">RESET FLIP/FLOP</text> <circ-port height="8" pin="80,60" width="8" x="46" y="56"/> <circ-port height="8" pin="80,160" width="8" x="46" y="106"/> <circ-port height="10" pin="430,30" width="10" x="195" y="105"/> <circ-port height="10" pin="430,150" width="10" x="195" y="55"/> <circ-anchor facing="east" height="6" width="6" x="47" y="57"/> </appear> <wire from="(80,160)" to="(270,160)"/> <wire from="(140,60)" to="(200,60)"/> <wire from="(310,70)" to="(330,70)"/> <wire from="(250,80)" to="(270,80)"/> <wire from="(250,140)" to="(270,140)"/> <wire from="(310,150)" to="(320,150)"/> <wire from="(250,120)" to="(330,120)"/> <wire from="(320,150)" to="(430,150)"/> <wire from="(320,100)" to="(320,150)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(250,80)" to="(250,100)"/> <wire from="(330,70)" to="(330,120)"/> <wire from="(200,30)" to="(430,30)"/> <wire from="(80,60)" to="(120,60)"/> <wire from="(200,60)" to="(270,60)"/> <wire from="(250,100)" to="(320,100)"/> <wire from="(200,30)" to="(200,60)"/> <comp lib="6" loc="(292,203)" name="Text"> <a name="text" val="Reset flip/flop remains set after RESET, until not cleared by RESCL"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RES"/> </comp> <comp lib="1" loc="(140,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(516,156)" name="Text"> <a name="text" val="(REG CLEAR)"/> </comp> <comp lib="0" loc="(430,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RC"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,70)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(430,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RES"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(388,111)" name="Text"> <a name="text" val="Reset flip/flop"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> </circuit> <circuit name="HV_COUNTER_BIT"> <a name="circuit" val="HV_COUNTER_BIT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M110,51 Q114,61 118,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fffca6" height="90" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="65">cin</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="137" y="74">Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="136" y="114">/Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="114">CLR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="133">cout</text> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,66 56,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,67 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,70" width="8" x="46" y="66"/> <circ-port height="8" pin="90,180" width="8" x="96" y="46"/> <circ-port height="8" pin="90,320" width="8" x="46" y="86"/> <circ-port height="8" pin="90,120" width="8" x="46" y="106"/> <circ-port height="10" pin="570,140" width="10" x="145" y="65"/> <circ-port height="10" pin="570,200" width="10" x="145" y="105"/> <circ-port height="10" pin="570,270" width="10" x="95" y="135"/> <circ-anchor facing="east" height="6" width="6" x="147" y="67"/> </appear> <wire from="(190,50)" to="(380,50)"/> <wire from="(460,160)" to="(520,160)"/> <wire from="(150,240)" to="(460,240)"/> <wire from="(520,200)" to="(570,200)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(430,170)" to="(430,320)"/> <wire from="(460,240)" to="(460,260)"/> <wire from="(460,160)" to="(460,240)"/> <wire from="(190,60)" to="(230,60)"/> <wire from="(310,120)" to="(310,150)"/> <wire from="(210,190)" to="(250,190)"/> <wire from="(290,170)" to="(330,170)"/> <wire from="(380,50)" to="(380,140)"/> <wire from="(460,260)" to="(500,260)"/> <wire from="(90,180)" to="(120,180)"/> <wire from="(120,180)" to="(120,280)"/> <wire from="(90,120)" to="(310,120)"/> <wire from="(370,160)" to="(400,160)"/> <wire from="(310,150)" to="(330,150)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(540,270)" to="(570,270)"/> <wire from="(440,160)" to="(460,160)"/> <wire from="(480,280)" to="(500,280)"/> <wire from="(230,60)" to="(230,170)"/> <wire from="(90,320)" to="(430,320)"/> <wire from="(150,200)" to="(170,200)"/> <wire from="(120,280)" to="(460,280)"/> <wire from="(520,160)" to="(520,200)"/> <wire from="(230,170)" to="(250,170)"/> <wire from="(90,70)" to="(170,70)"/> <wire from="(440,140)" to="(570,140)"/> <comp lib="0" loc="(90,70)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(540,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(114,173)" name="Text"> <a name="text" val="carry_in"/> </comp> <comp lib="0" loc="(570,270)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="carry_out"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="in"/> </comp> <comp lib="0" loc="(570,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="clear"/> </comp> <comp lib="6" loc="(131,311)" name="Text"> <a name="text" val="global RESET"/> </comp> <comp lib="6" loc="(132,113)" name="Text"> <a name="text" val="clear manually"/> </comp> <comp lib="0" loc="(170,70)" name="Splitter"/> <comp lib="1" loc="(370,160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(210,190)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(440,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(480,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(290,170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="H_COUNTER"> <a name="circuit" val="H_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M60,50 Q64,60 68,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffee3f" height="200" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="91" y="160">H</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="74">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="114">HC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">PCLK</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,75" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="234">8</text> <circ-port height="8" pin="60,70" width="8" x="46" y="86"/> <circ-port height="8" pin="60,150" width="8" x="46" y="106"/> <circ-port height="8" pin="60,110" width="8" x="46" y="66"/> <circ-port height="10" pin="370,110" width="10" x="125" y="65"/> <circ-port height="10" pin="370,220" width="10" x="125" y="85"/> <circ-port height="10" pin="370,330" width="10" x="125" y="105"/> <circ-port height="10" pin="370,440" width="10" x="125" y="125"/> <circ-port height="10" pin="370,550" width="10" x="125" y="145"/> <circ-port height="10" pin="370,740" width="10" x="125" y="165"/> <circ-port height="10" pin="370,850" width="10" x="125" y="185"/> <circ-port height="10" pin="370,960" width="10" x="125" y="205"/> <circ-port height="10" pin="370,1070" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(100,110)" to="(160,110)"/> <wire from="(100,330)" to="(160,330)"/> <wire from="(100,850)" to="(160,850)"/> <wire from="(100,550)" to="(160,550)"/> <wire from="(60,150)" to="(120,150)"/> <wire from="(100,1070)" to="(160,1070)"/> <wire from="(300,480)" to="(300,620)"/> <wire from="(260,110)" to="(370,110)"/> <wire from="(260,330)" to="(370,330)"/> <wire from="(260,850)" to="(370,850)"/> <wire from="(260,550)" to="(370,550)"/> <wire from="(260,1070)" to="(370,1070)"/> <wire from="(210,70)" to="(210,90)"/> <wire from="(210,810)" to="(210,830)"/> <wire from="(210,290)" to="(210,310)"/> <wire from="(210,1030)" to="(210,1050)"/> <wire from="(210,510)" to="(210,530)"/> <wire from="(60,110)" to="(100,110)"/> <wire from="(120,150)" to="(160,150)"/> <wire from="(120,370)" to="(160,370)"/> <wire from="(120,890)" to="(160,890)"/> <wire from="(290,590)" to="(290,620)"/> <wire from="(120,590)" to="(160,590)"/> <wire from="(120,1110)" to="(160,1110)"/> <wire from="(260,890)" to="(280,890)"/> <wire from="(260,1110)" to="(280,1110)"/> <wire from="(140,130)" to="(140,240)"/> <wire from="(120,890)" to="(120,1000)"/> <wire from="(140,870)" to="(140,980)"/> <wire from="(140,350)" to="(140,460)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,570)" to="(160,570)"/> <wire from="(140,1090)" to="(160,1090)"/> <wire from="(140,350)" to="(160,350)"/> <wire from="(140,870)" to="(160,870)"/> <wire from="(100,850)" to="(100,960)"/> <wire from="(100,330)" to="(100,440)"/> <wire from="(120,150)" to="(120,260)"/> <wire from="(120,370)" to="(120,480)"/> <wire from="(100,110)" to="(100,220)"/> <wire from="(260,150)" to="(330,150)"/> <wire from="(260,260)" to="(320,260)"/> <wire from="(100,220)" to="(160,220)"/> <wire from="(100,740)" to="(160,740)"/> <wire from="(100,440)" to="(160,440)"/> <wire from="(100,960)" to="(160,960)"/> <wire from="(260,370)" to="(310,370)"/> <wire from="(310,680)" to="(310,700)"/> <wire from="(330,150)" to="(330,620)"/> <wire from="(260,220)" to="(370,220)"/> <wire from="(260,740)" to="(370,740)"/> <wire from="(260,440)" to="(370,440)"/> <wire from="(260,960)" to="(370,960)"/> <wire from="(210,700)" to="(210,720)"/> <wire from="(210,180)" to="(210,200)"/> <wire from="(210,920)" to="(210,940)"/> <wire from="(210,400)" to="(210,420)"/> <wire from="(210,620)" to="(210,640)"/> <wire from="(210,1140)" to="(210,1160)"/> <wire from="(120,260)" to="(160,260)"/> <wire from="(120,780)" to="(160,780)"/> <wire from="(120,480)" to="(160,480)"/> <wire from="(120,1000)" to="(160,1000)"/> <wire from="(260,480)" to="(300,480)"/> <wire from="(210,700)" to="(310,700)"/> <wire from="(260,590)" to="(290,590)"/> <wire from="(260,780)" to="(280,780)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(140,980)" to="(140,1090)"/> <wire from="(120,1000)" to="(120,1110)"/> <wire from="(120,480)" to="(120,590)"/> <wire from="(140,460)" to="(140,570)"/> <wire from="(120,780)" to="(120,890)"/> <wire from="(140,760)" to="(140,870)"/> <wire from="(320,260)" to="(320,620)"/> <wire from="(140,240)" to="(140,350)"/> <wire from="(140,460)" to="(160,460)"/> <wire from="(140,980)" to="(160,980)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(140,760)" to="(160,760)"/> <wire from="(100,740)" to="(100,850)"/> <wire from="(100,220)" to="(100,330)"/> <wire from="(100,960)" to="(100,1070)"/> <wire from="(100,440)" to="(100,550)"/> <wire from="(120,260)" to="(120,370)"/> <wire from="(60,70)" to="(140,70)"/> <wire from="(120,590)" to="(120,780)"/> <wire from="(140,570)" to="(140,760)"/> <wire from="(310,370)" to="(310,620)"/> <wire from="(140,70)" to="(140,130)"/> <wire from="(100,550)" to="(100,740)"/> <comp lib="1" loc="(310,680)" name="NOR Gate"> <a name="facing" val="south"/> </comp> <comp loc="(260,440)" name="HV_COUNTER_BIT"/> <comp loc="(260,110)" name="HV_COUNTER_BIT"/> <comp loc="(260,330)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(210,70)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="0" loc="(60,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(370,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,550)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(60,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(370,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,740)" name="HV_COUNTER_BIT"/> <comp loc="(260,850)" name="HV_COUNTER_BIT"/> <comp lib="6" loc="(222,667)" name="Text"> <a name="text" val="reduce propagation delay"/> </comp> <comp loc="(260,1070)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H8"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,960)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(370,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="H7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,220)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(60,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HC"/> </comp> </circuit> <circuit name="V_COUNTER"> <a name="circuit" val="V_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffee3f" height="200" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="74">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="114">VC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="94">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="234">VIN</text> <text font-family="SansSerif" font-size="26" text-anchor="middle" x="91" y="164">V</text> <polyline fill="none" points="51,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="52,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="235">8</text> <circ-port height="8" pin="70,30" width="8" x="46" y="226"/> <circ-port height="8" pin="70,70" width="8" x="46" y="66"/> <circ-port height="8" pin="70,200" width="8" x="46" y="86"/> <circ-port height="8" pin="70,110" width="8" x="46" y="106"/> <circ-port height="10" pin="380,70" width="10" x="125" y="65"/> <circ-port height="10" pin="380,180" width="10" x="125" y="85"/> <circ-port height="10" pin="380,290" width="10" x="125" y="105"/> <circ-port height="10" pin="380,400" width="10" x="125" y="125"/> <circ-port height="10" pin="380,510" width="10" x="125" y="145"/> <circ-port height="10" pin="380,700" width="10" x="125" y="165"/> <circ-port height="10" pin="380,810" width="10" x="125" y="185"/> <circ-port height="10" pin="380,920" width="10" x="125" y="205"/> <circ-port height="10" pin="380,1030" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="67"/> </appear> <wire from="(110,180)" to="(170,180)"/> <wire from="(110,400)" to="(170,400)"/> <wire from="(110,700)" to="(170,700)"/> <wire from="(110,920)" to="(170,920)"/> <wire from="(270,330)" to="(320,330)"/> <wire from="(270,180)" to="(380,180)"/> <wire from="(270,700)" to="(380,700)"/> <wire from="(270,400)" to="(380,400)"/> <wire from="(270,920)" to="(380,920)"/> <wire from="(220,660)" to="(220,680)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,580)" to="(220,600)"/> <wire from="(220,1100)" to="(220,1120)"/> <wire from="(220,880)" to="(220,900)"/> <wire from="(220,360)" to="(220,380)"/> <wire from="(130,220)" to="(170,220)"/> <wire from="(130,740)" to="(170,740)"/> <wire from="(130,440)" to="(170,440)"/> <wire from="(130,960)" to="(170,960)"/> <wire from="(270,440)" to="(310,440)"/> <wire from="(320,30)" to="(360,30)"/> <wire from="(270,550)" to="(300,550)"/> <wire from="(270,740)" to="(290,740)"/> <wire from="(270,960)" to="(290,960)"/> <wire from="(70,30)" to="(220,30)"/> <wire from="(130,960)" to="(130,1070)"/> <wire from="(150,420)" to="(150,530)"/> <wire from="(110,700)" to="(110,810)"/> <wire from="(150,940)" to="(150,1050)"/> <wire from="(130,440)" to="(130,550)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(130,740)" to="(130,850)"/> <wire from="(150,720)" to="(150,830)"/> <wire from="(130,220)" to="(130,330)"/> <wire from="(110,920)" to="(110,1030)"/> <wire from="(150,420)" to="(170,420)"/> <wire from="(150,940)" to="(170,940)"/> <wire from="(150,200)" to="(170,200)"/> <wire from="(150,720)" to="(170,720)"/> <wire from="(110,180)" to="(110,290)"/> <wire from="(110,400)" to="(110,510)"/> <wire from="(270,110)" to="(350,110)"/> <wire from="(130,550)" to="(130,740)"/> <wire from="(150,530)" to="(150,720)"/> <wire from="(270,220)" to="(340,220)"/> <wire from="(320,330)" to="(320,580)"/> <wire from="(110,510)" to="(110,700)"/> <wire from="(110,70)" to="(170,70)"/> <wire from="(70,110)" to="(130,110)"/> <wire from="(110,510)" to="(170,510)"/> <wire from="(110,290)" to="(170,290)"/> <wire from="(110,1030)" to="(170,1030)"/> <wire from="(110,810)" to="(170,810)"/> <wire from="(310,440)" to="(310,580)"/> <wire from="(220,660)" to="(330,660)"/> <wire from="(330,640)" to="(330,660)"/> <wire from="(350,110)" to="(350,580)"/> <wire from="(270,70)" to="(380,70)"/> <wire from="(270,510)" to="(380,510)"/> <wire from="(270,1030)" to="(380,1030)"/> <wire from="(270,290)" to="(380,290)"/> <wire from="(270,810)" to="(380,810)"/> <wire from="(220,30)" to="(220,50)"/> <wire from="(220,470)" to="(220,490)"/> <wire from="(220,990)" to="(220,1010)"/> <wire from="(220,770)" to="(220,790)"/> <wire from="(220,250)" to="(220,270)"/> <wire from="(70,70)" to="(110,70)"/> <wire from="(130,110)" to="(170,110)"/> <wire from="(130,550)" to="(170,550)"/> <wire from="(300,550)" to="(300,580)"/> <wire from="(130,1070)" to="(170,1070)"/> <wire from="(130,330)" to="(170,330)"/> <wire from="(130,850)" to="(170,850)"/> <wire from="(360,30)" to="(360,580)"/> <wire from="(270,1070)" to="(290,1070)"/> <wire from="(270,850)" to="(290,850)"/> <wire from="(130,850)" to="(130,960)"/> <wire from="(150,830)" to="(150,940)"/> <wire from="(130,330)" to="(130,440)"/> <wire from="(150,310)" to="(150,420)"/> <wire from="(110,810)" to="(110,920)"/> <wire from="(130,110)" to="(130,220)"/> <wire from="(150,90)" to="(150,200)"/> <wire from="(340,220)" to="(340,580)"/> <wire from="(150,310)" to="(170,310)"/> <wire from="(150,830)" to="(170,830)"/> <wire from="(150,90)" to="(170,90)"/> <wire from="(150,530)" to="(170,530)"/> <wire from="(150,1050)" to="(170,1050)"/> <wire from="(110,70)" to="(110,180)"/> <wire from="(110,290)" to="(110,400)"/> <wire from="(70,200)" to="(150,200)"/> <wire from="(220,30)" to="(300,30)"/> <comp loc="(270,810)" name="HV_COUNTER_BIT"/> <comp loc="(270,70)" name="HV_COUNTER_BIT"/> <comp loc="(270,400)" name="HV_COUNTER_BIT"/> <comp loc="(270,510)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(70,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VC"/> </comp> <comp loc="(270,290)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(380,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,70)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(232,627)" name="Text"> <a name="text" val="reduce propagation delay"/> </comp> <comp loc="(270,1030)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(70,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp loc="(270,180)" name="HV_COUNTER_BIT"/> <comp lib="1" loc="(320,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(270,920)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(380,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V8"/> <a name="labelloc" val="east"/> </comp> <comp loc="(270,700)" name="HV_COUNTER_BIT"/> <comp lib="0" loc="(380,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(380,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(330,640)" name="NOR Gate"> <a name="facing" val="south"/> <a name="inputs" val="6"/> </comp> <comp lib="0" loc="(380,290)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="V2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VIN"/> </comp> </circuit> <circuit name="HV_SELECT_PAL"> <a name="circuit" val="HV_SELECT_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M226,51 Q230,61 234,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#b2ff73" height="250" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="370" y="68">V8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="395" y="283">VPLA OUTPUTS</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="255" y="169">H/V SELECT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="284">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="174">V POS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="189" y="68">H0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="282">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="69">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="198" y="282">HPLA OTPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="264">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="68">H8</text> <circ-port height="8" pin="80,170" width="8" x="106" y="46"/> <circ-port height="8" pin="80,250" width="8" x="116" y="46"/> <circ-port height="8" pin="80,330" width="8" x="126" y="46"/> <circ-port height="8" pin="80,410" width="8" x="136" y="46"/> <circ-port height="8" pin="80,490" width="8" x="146" y="46"/> <circ-port height="8" pin="80,570" width="8" x="156" y="46"/> <circ-port height="8" pin="80,650" width="8" x="166" y="46"/> <circ-port height="8" pin="80,730" width="8" x="176" y="46"/> <circ-port height="8" pin="80,810" width="8" x="186" y="46"/> <circ-port height="8" pin="80,890" width="8" x="46" y="276"/> <circ-port height="8" pin="80,930" width="8" x="46" y="256"/> <circ-port height="8" pin="140,1170" width="8" x="366" y="46"/> <circ-port height="8" pin="140,1250" width="8" x="376" y="46"/> <circ-port height="8" pin="140,1330" width="8" x="386" y="46"/> <circ-port height="8" pin="140,1410" width="8" x="396" y="46"/> <circ-port height="8" pin="140,1490" width="8" x="406" y="46"/> <circ-port height="8" pin="140,1570" width="8" x="416" y="46"/> <circ-port height="8" pin="140,1650" width="8" x="426" y="46"/> <circ-port height="8" pin="140,1730" width="8" x="436" y="46"/> <circ-port height="8" pin="140,1810" width="8" x="446" y="46"/> <circ-port height="10" pin="1060,1560" width="10" x="475" y="165"/> <circ-port height="10" pin="130,1010" width="10" x="325" y="295"/> <circ-port height="10" pin="280,1020" width="10" x="75" y="295"/> <circ-port height="10" pin="280,1930" width="10" x="345" y="295"/> <circ-port height="10" pin="350,1020" width="10" x="85" y="295"/> <circ-port height="10" pin="350,1930" width="10" x="355" y="295"/> <circ-port height="10" pin="420,1020" width="10" x="95" y="295"/> <circ-port height="10" pin="420,1930" width="10" x="365" y="295"/> <circ-port height="10" pin="490,1020" width="10" x="105" y="295"/> <circ-port height="10" pin="490,1930" width="10" x="375" y="295"/> <circ-port height="10" pin="560,1020" width="10" x="115" y="295"/> <circ-port height="10" pin="560,1930" width="10" x="385" y="295"/> <circ-port height="10" pin="630,1020" width="10" x="125" y="295"/> <circ-port height="10" pin="630,1930" width="10" x="395" y="295"/> <circ-port height="10" pin="700,1020" width="10" x="135" y="295"/> <circ-port height="10" pin="700,1930" width="10" x="405" y="295"/> <circ-port height="10" pin="770,1020" width="10" x="145" y="295"/> <circ-port height="10" pin="770,1930" width="10" x="415" y="295"/> <circ-port height="10" pin="840,1020" width="10" x="155" y="295"/> <circ-port height="10" pin="840,1930" width="10" x="425" y="295"/> <circ-port height="10" pin="910,1020" width="10" x="165" y="295"/> <circ-port height="10" pin="910,1930" width="10" x="435" y="295"/> <circ-port height="10" pin="980,1020" width="10" x="175" y="295"/> <circ-port height="10" pin="1050,1020" width="10" x="185" y="295"/> <circ-port height="10" pin="1120,1020" width="10" x="195" y="295"/> <circ-port height="10" pin="1190,1020" width="10" x="205" y="295"/> <circ-port height="10" pin="1260,1020" width="10" x="215" y="295"/> <circ-port height="10" pin="1330,1020" width="10" x="225" y="295"/> <circ-port height="10" pin="1400,1020" width="10" x="235" y="295"/> <circ-port height="10" pin="1470,1020" width="10" x="245" y="295"/> <circ-port height="10" pin="1540,1020" width="10" x="255" y="295"/> <circ-port height="10" pin="1610,1020" width="10" x="265" y="295"/> <circ-port height="10" pin="1680,1020" width="10" x="275" y="295"/> <circ-port height="10" pin="1750,1020" width="10" x="285" y="295"/> <circ-port height="10" pin="1820,1020" width="10" x="295" y="295"/> <circ-port height="10" pin="1890,1020" width="10" x="305" y="295"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(1680,270)" to="(1680,350)"/> <wire from="(1610,870)" to="(1610,1020)"/> <wire from="(280,1270)" to="(280,1350)"/> <wire from="(280,1750)" to="(280,1830)"/> <wire from="(280,1590)" to="(280,1670)"/> <wire from="(910,140)" to="(910,230)"/> <wire from="(980,190)" to="(980,910)"/> <wire from="(820,1770)" to="(930,1770)"/> <wire from="(820,1450)" to="(930,1450)"/> <wire from="(1660,250)" to="(1730,250)"/> <wire from="(1520,810)" to="(1660,810)"/> <wire from="(1520,490)" to="(1660,490)"/> <wire from="(1890,830)" to="(1890,1020)"/> <wire from="(910,1230)" to="(910,1270)"/> <wire from="(260,530)" to="(610,530)"/> <wire from="(560,910)" to="(560,1020)"/> <wire from="(260,1530)" to="(470,1530)"/> <wire from="(910,1870)" to="(910,1930)"/> <wire from="(400,170)" to="(540,170)"/> <wire from="(840,1350)" to="(840,1470)"/> <wire from="(1660,690)" to="(1870,690)"/> <wire from="(820,1330)" to="(890,1330)"/> <wire from="(170,410)" to="(170,980)"/> <wire from="(1190,710)" to="(1190,750)"/> <wire from="(280,1430)" to="(280,1550)"/> <wire from="(1870,370)" to="(1900,370)"/> <wire from="(260,1730)" to="(330,1730)"/> <wire from="(1870,690)" to="(1900,690)"/> <wire from="(260,1410)" to="(330,1410)"/> <wire from="(1870,210)" to="(1900,210)"/> <wire from="(1870,530)" to="(1900,530)"/> <wire from="(260,1250)" to="(330,1250)"/> <wire from="(1470,510)" to="(1470,590)"/> <wire from="(1470,350)" to="(1470,430)"/> <wire from="(1470,670)" to="(1470,750)"/> <wire from="(1800,330)" to="(1900,330)"/> <wire from="(1800,650)" to="(1900,650)"/> <wire from="(1260,140)" to="(1260,230)"/> <wire from="(630,950)" to="(630,1020)"/> <wire from="(350,670)" to="(350,750)"/> <wire from="(350,350)" to="(350,430)"/> <wire from="(910,350)" to="(910,950)"/> <wire from="(350,510)" to="(350,590)"/> <wire from="(350,1630)" to="(350,1710)"/> <wire from="(630,790)" to="(630,870)"/> <wire from="(630,1590)" to="(630,1670)"/> <wire from="(630,1270)" to="(630,1350)"/> <wire from="(630,1750)" to="(630,1830)"/> <wire from="(630,1430)" to="(630,1510)"/> <wire from="(890,1330)" to="(1000,1330)"/> <wire from="(1050,140)" to="(1050,670)"/> <wire from="(910,270)" to="(910,350)"/> <wire from="(140,1490)" to="(170,1490)"/> <wire from="(140,1330)" to="(170,1330)"/> <wire from="(130,1000)" to="(160,1000)"/> <wire from="(140,1650)" to="(170,1650)"/> <wire from="(140,1170)" to="(170,1170)"/> <wire from="(140,1810)" to="(170,1810)"/> <wire from="(170,1490)" to="(330,1490)"/> <wire from="(1450,810)" to="(1520,810)"/> <wire from="(1450,490)" to="(1520,490)"/> <wire from="(1590,850)" to="(1730,850)"/> <wire from="(1330,190)" to="(1330,950)"/> <wire from="(1450,330)" to="(1520,330)"/> <wire from="(420,390)" to="(420,430)"/> <wire from="(170,1690)" to="(190,1690)"/> <wire from="(170,1370)" to="(190,1370)"/> <wire from="(170,1530)" to="(190,1530)"/> <wire from="(170,1210)" to="(190,1210)"/> <wire from="(170,1850)" to="(190,1850)"/> <wire from="(610,1570)" to="(680,1570)"/> <wire from="(610,1730)" to="(680,1730)"/> <wire from="(610,930)" to="(680,930)"/> <wire from="(610,770)" to="(680,770)"/> <wire from="(470,1810)" to="(610,1810)"/> <wire from="(330,650)" to="(400,650)"/> <wire from="(1540,710)" to="(1540,750)"/> <wire from="(210,1370)" to="(470,1370)"/> <wire from="(330,490)" to="(400,490)"/> <wire from="(1610,140)" to="(1610,230)"/> <wire from="(1260,430)" to="(1260,510)"/> <wire from="(1400,140)" to="(1400,670)"/> <wire from="(980,950)" to="(980,1020)"/> <wire from="(680,1370)" to="(930,1370)"/> <wire from="(420,870)" to="(420,950)"/> <wire from="(420,1190)" to="(420,1270)"/> <wire from="(420,1510)" to="(420,1590)"/> <wire from="(420,1350)" to="(420,1430)"/> <wire from="(420,1670)" to="(420,1750)"/> <wire from="(260,690)" to="(680,690)"/> <wire from="(560,190)" to="(560,910)"/> <wire from="(700,190)" to="(700,270)"/> <wire from="(700,1470)" to="(700,1550)"/> <wire from="(700,1310)" to="(700,1390)"/> <wire from="(490,1550)" to="(490,1590)"/> <wire from="(1800,810)" to="(1870,810)"/> <wire from="(1820,350)" to="(1820,470)"/> <wire from="(1820,670)" to="(1820,790)"/> <wire from="(680,1730)" to="(890,1730)"/> <wire from="(400,650)" to="(610,650)"/> <wire from="(180,490)" to="(180,980)"/> <wire from="(1470,830)" to="(1470,1020)"/> <wire from="(1520,690)" to="(1590,690)"/> <wire from="(260,1570)" to="(400,1570)"/> <wire from="(890,1250)" to="(1020,1250)"/> <wire from="(610,570)" to="(1450,570)"/> <wire from="(680,1450)" to="(750,1450)"/> <wire from="(700,350)" to="(700,470)"/> <wire from="(1400,790)" to="(1400,1020)"/> <wire from="(1890,550)" to="(1890,590)"/> <wire from="(1890,230)" to="(1890,270)"/> <wire from="(1890,390)" to="(1890,430)"/> <wire from="(1890,710)" to="(1890,750)"/> <wire from="(960,930)" to="(1030,930)"/> <wire from="(1100,770)" to="(1380,770)"/> <wire from="(350,830)" to="(350,1020)"/> <wire from="(1240,210)" to="(1450,210)"/> <wire from="(400,1650)" to="(470,1650)"/> <wire from="(750,450)" to="(1660,450)"/> <wire from="(840,140)" to="(840,190)"/> <wire from="(750,610)" to="(1660,610)"/> <wire from="(1050,670)" to="(1050,750)"/> <wire from="(490,140)" to="(490,270)"/> <wire from="(110,410)" to="(170,410)"/> <wire from="(1610,270)" to="(1610,350)"/> <wire from="(1020,1530)" to="(1020,1810)"/> <wire from="(130,1000)" to="(130,1010)"/> <wire from="(610,1170)" to="(930,1170)"/> <wire from="(150,690)" to="(260,690)"/> <wire from="(150,530)" to="(260,530)"/> <wire from="(150,850)" to="(260,850)"/> <wire from="(150,210)" to="(260,210)"/> <wire from="(110,810)" to="(220,810)"/> <wire from="(1330,950)" to="(1330,1020)"/> <wire from="(560,1140)" to="(560,1230)"/> <wire from="(890,1850)" to="(930,1850)"/> <wire from="(890,1210)" to="(930,1210)"/> <wire from="(490,430)" to="(490,510)"/> <wire from="(490,270)" to="(490,350)"/> <wire from="(490,1390)" to="(490,1470)"/> <wire from="(170,1170)" to="(400,1170)"/> <wire from="(330,1690)" to="(750,1690)"/> <wire from="(770,390)" to="(770,470)"/> <wire from="(770,550)" to="(770,630)"/> <wire from="(770,710)" to="(770,790)"/> <wire from="(770,870)" to="(770,950)"/> <wire from="(1610,590)" to="(1610,710)"/> <wire from="(1610,430)" to="(1610,550)"/> <wire from="(1610,750)" to="(1610,870)"/> <wire from="(1590,250)" to="(1660,250)"/> <wire from="(80,250)" to="(110,250)"/> <wire from="(80,570)" to="(110,570)"/> <wire from="(80,410)" to="(110,410)"/> <wire from="(80,730)" to="(110,730)"/> <wire from="(170,410)" to="(260,410)"/> <wire from="(840,1230)" to="(840,1270)"/> <wire from="(840,1550)" to="(840,1590)"/> <wire from="(1820,830)" to="(1820,1020)"/> <wire from="(180,490)" to="(330,490)"/> <wire from="(750,770)" to="(1100,770)"/> <wire from="(110,610)" to="(130,610)"/> <wire from="(110,290)" to="(130,290)"/> <wire from="(110,450)" to="(130,450)"/> <wire from="(110,770)" to="(130,770)"/> <wire from="(330,330)" to="(470,330)"/> <wire from="(1680,790)" to="(1680,830)"/> <wire from="(1680,470)" to="(1680,510)"/> <wire from="(840,1870)" to="(840,1930)"/> <wire from="(770,1350)" to="(770,1470)"/> <wire from="(80,890)" to="(540,890)"/> <wire from="(750,1330)" to="(820,1330)"/> <wire from="(1590,530)" to="(1800,530)"/> <wire from="(610,1250)" to="(750,1250)"/> <wire from="(1030,930)" to="(1240,930)"/> <wire from="(80,930)" to="(400,930)"/> <wire from="(1120,710)" to="(1120,790)"/> <wire from="(1680,630)" to="(1680,710)"/> <wire from="(280,350)" to="(280,430)"/> <wire from="(840,350)" to="(840,950)"/> <wire from="(910,1140)" to="(910,1230)"/> <wire from="(560,1590)" to="(560,1670)"/> <wire from="(190,570)" to="(190,980)"/> <wire from="(560,1270)" to="(560,1350)"/> <wire from="(840,270)" to="(840,350)"/> <wire from="(840,1710)" to="(840,1790)"/> <wire from="(1000,1470)" to="(1020,1470)"/> <wire from="(1540,140)" to="(1540,190)"/> <wire from="(540,1210)" to="(750,1210)"/> <wire from="(540,1850)" to="(750,1850)"/> <wire from="(170,1330)" to="(170,1370)"/> <wire from="(170,1650)" to="(170,1690)"/> <wire from="(1100,690)" to="(1170,690)"/> <wire from="(170,1490)" to="(170,1530)"/> <wire from="(170,1810)" to="(170,1850)"/> <wire from="(170,1170)" to="(170,1210)"/> <wire from="(350,230)" to="(350,270)"/> <wire from="(1400,670)" to="(1400,790)"/> <wire from="(1380,650)" to="(1450,650)"/> <wire from="(540,1570)" to="(610,1570)"/> <wire from="(540,1250)" to="(610,1250)"/> <wire from="(400,1330)" to="(540,1330)"/> <wire from="(400,1490)" to="(540,1490)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(820,250)" to="(890,250)"/> <wire from="(150,770)" to="(610,770)"/> <wire from="(820,1210)" to="(890,1210)"/> <wire from="(820,1850)" to="(890,1850)"/> <wire from="(1870,250)" to="(1900,250)"/> <wire from="(680,170)" to="(820,170)"/> <wire from="(1870,570)" to="(1900,570)"/> <wire from="(260,330)" to="(330,330)"/> <wire from="(1870,410)" to="(1900,410)"/> <wire from="(680,330)" to="(820,330)"/> <wire from="(1470,230)" to="(1470,270)"/> <wire from="(1870,730)" to="(1900,730)"/> <wire from="(910,950)" to="(910,1020)"/> <wire from="(1750,670)" to="(1750,750)"/> <wire from="(1750,510)" to="(1750,590)"/> <wire from="(1520,170)" to="(1900,170)"/> <wire from="(350,1350)" to="(350,1430)"/> <wire from="(910,1430)" to="(910,1510)"/> <wire from="(910,1270)" to="(910,1350)"/> <wire from="(1730,650)" to="(1800,650)"/> <wire from="(1590,570)" to="(1730,570)"/> <wire from="(1590,410)" to="(1730,410)"/> <wire from="(1590,730)" to="(1730,730)"/> <wire from="(890,210)" to="(1240,210)"/> <wire from="(630,670)" to="(630,790)"/> <wire from="(1820,230)" to="(1820,270)"/> <wire from="(470,410)" to="(610,410)"/> <wire from="(1820,550)" to="(1820,590)"/> <wire from="(470,570)" to="(610,570)"/> <wire from="(470,250)" to="(610,250)"/> <wire from="(910,1750)" to="(910,1870)"/> <wire from="(890,930)" to="(960,930)"/> <wire from="(420,1870)" to="(420,1930)"/> <wire from="(350,1510)" to="(350,1630)"/> <wire from="(330,1490)" to="(400,1490)"/> <wire from="(330,1330)" to="(400,1330)"/> <wire from="(1020,1250)" to="(1020,1460)"/> <wire from="(1890,140)" to="(1890,230)"/> <wire from="(1540,270)" to="(1540,350)"/> <wire from="(1540,750)" to="(1540,830)"/> <wire from="(1540,430)" to="(1540,510)"/> <wire from="(200,650)" to="(200,980)"/> <wire from="(1730,490)" to="(1900,490)"/> <wire from="(400,730)" to="(1030,730)"/> <wire from="(210,1610)" to="(330,1610)"/> <wire from="(1260,950)" to="(1260,1020)"/> <wire from="(420,430)" to="(420,510)"/> <wire from="(420,590)" to="(420,670)"/> <wire from="(700,710)" to="(700,790)"/> <wire from="(700,550)" to="(700,630)"/> <wire from="(700,1670)" to="(700,1750)"/> <wire from="(700,870)" to="(700,950)"/> <wire from="(110,730)" to="(210,730)"/> <wire from="(1800,210)" to="(1870,210)"/> <wire from="(1800,530)" to="(1870,530)"/> <wire from="(770,1230)" to="(770,1270)"/> <wire from="(770,1550)" to="(770,1590)"/> <wire from="(400,850)" to="(610,850)"/> <wire from="(400,1170)" to="(610,1170)"/> <wire from="(400,370)" to="(610,370)"/> <wire from="(110,570)" to="(110,610)"/> <wire from="(1240,930)" to="(1310,930)"/> <wire from="(110,250)" to="(110,290)"/> <wire from="(110,410)" to="(110,450)"/> <wire from="(110,730)" to="(110,770)"/> <wire from="(110,330)" to="(260,330)"/> <wire from="(150,610)" to="(680,610)"/> <wire from="(150,450)" to="(680,450)"/> <wire from="(1660,450)" to="(1800,450)"/> <wire from="(1660,770)" to="(1800,770)"/> <wire from="(1520,570)" to="(1590,570)"/> <wire from="(1520,250)" to="(1590,250)"/> <wire from="(1520,730)" to="(1590,730)"/> <wire from="(1520,410)" to="(1590,410)"/> <wire from="(1540,590)" to="(1540,710)"/> <wire from="(700,1830)" to="(700,1930)"/> <wire from="(680,690)" to="(750,690)"/> <wire from="(770,1870)" to="(770,1930)"/> <wire from="(680,530)" to="(750,530)"/> <wire from="(680,850)" to="(750,850)"/> <wire from="(400,410)" to="(470,410)"/> <wire from="(400,570)" to="(470,570)"/> <wire from="(400,250)" to="(470,250)"/> <wire from="(1240,410)" to="(1450,410)"/> <wire from="(1380,770)" to="(1660,770)"/> <wire from="(420,750)" to="(420,870)"/> <wire from="(420,270)" to="(420,390)"/> <wire from="(1000,1330)" to="(1000,1470)"/> <wire from="(150,370)" to="(400,370)"/> <wire from="(1890,750)" to="(1890,830)"/> <wire from="(840,1140)" to="(840,1230)"/> <wire from="(490,1590)" to="(490,1670)"/> <wire from="(490,1750)" to="(490,1830)"/> <wire from="(770,1710)" to="(770,1790)"/> <wire from="(1000,1520)" to="(1000,1730)"/> <wire from="(890,330)" to="(1450,330)"/> <wire from="(770,140)" to="(770,310)"/> <wire from="(560,1470)" to="(560,1510)"/> <wire from="(1450,210)" to="(1590,210)"/> <wire from="(610,1410)" to="(890,1410)"/> <wire from="(1890,430)" to="(1890,550)"/> <wire from="(1890,270)" to="(1890,390)"/> <wire from="(1890,590)" to="(1890,710)"/> <wire from="(170,1250)" to="(260,1250)"/> <wire from="(170,1570)" to="(260,1570)"/> <wire from="(170,1730)" to="(260,1730)"/> <wire from="(170,1410)" to="(260,1410)"/> <wire from="(890,1650)" to="(980,1650)"/> <wire from="(470,1370)" to="(680,1370)"/> <wire from="(470,1530)" to="(680,1530)"/> <wire from="(280,230)" to="(280,270)"/> <wire from="(280,550)" to="(280,590)"/> <wire from="(280,710)" to="(280,750)"/> <wire from="(490,1140)" to="(490,1310)"/> <wire from="(750,1210)" to="(820,1210)"/> <wire from="(750,1850)" to="(820,1850)"/> <wire from="(750,1530)" to="(820,1530)"/> <wire from="(750,1690)" to="(820,1690)"/> <wire from="(210,730)" to="(210,980)"/> <wire from="(470,1570)" to="(540,1570)"/> <wire from="(1450,650)" to="(1730,650)"/> <wire from="(980,1410)" to="(980,1480)"/> <wire from="(840,950)" to="(840,1020)"/> <wire from="(1470,140)" to="(1470,230)"/> <wire from="(280,1350)" to="(280,1430)"/> <wire from="(280,1670)" to="(280,1750)"/> <wire from="(560,1790)" to="(560,1870)"/> <wire from="(1190,750)" to="(1190,1020)"/> <wire from="(840,1270)" to="(840,1350)"/> <wire from="(820,1690)" to="(930,1690)"/> <wire from="(350,140)" to="(350,230)"/> <wire from="(820,1530)" to="(930,1530)"/> <wire from="(1680,350)" to="(1680,470)"/> <wire from="(630,390)" to="(630,430)"/> <wire from="(280,1830)" to="(280,1930)"/> <wire from="(630,550)" to="(630,590)"/> <wire from="(630,230)" to="(630,270)"/> <wire from="(1680,510)" to="(1680,630)"/> <wire from="(1660,490)" to="(1730,490)"/> <wire from="(910,1630)" to="(910,1670)"/> <wire from="(490,590)" to="(490,1020)"/> <wire from="(150,290)" to="(750,290)"/> <wire from="(350,1230)" to="(350,1270)"/> <wire from="(350,1710)" to="(350,1750)"/> <wire from="(1750,230)" to="(1750,270)"/> <wire from="(1750,390)" to="(1750,430)"/> <wire from="(400,1850)" to="(540,1850)"/> <wire from="(750,850)" to="(1590,850)"/> <wire from="(750,530)" to="(1590,530)"/> <wire from="(420,1140)" to="(420,1190)"/> <wire from="(840,1590)" to="(840,1710)"/> <wire from="(820,930)" to="(890,930)"/> <wire from="(820,1250)" to="(890,1250)"/> <wire from="(700,140)" to="(700,190)"/> <wire from="(350,1870)" to="(350,1930)"/> <wire from="(260,210)" to="(330,210)"/> <wire from="(260,1330)" to="(330,1330)"/> <wire from="(1820,140)" to="(1820,230)"/> <wire from="(1470,590)" to="(1470,670)"/> <wire from="(1470,270)" to="(1470,350)"/> <wire from="(1470,430)" to="(1470,510)"/> <wire from="(1470,750)" to="(1470,830)"/> <wire from="(280,870)" to="(280,1020)"/> <wire from="(350,750)" to="(350,830)"/> <wire from="(350,430)" to="(350,510)"/> <wire from="(350,590)" to="(350,670)"/> <wire from="(350,270)" to="(350,350)"/> <wire from="(630,870)" to="(630,950)"/> <wire from="(630,1350)" to="(630,1430)"/> <wire from="(630,1670)" to="(630,1750)"/> <wire from="(630,1510)" to="(630,1590)"/> <wire from="(630,1190)" to="(630,1270)"/> <wire from="(890,1730)" to="(1000,1730)"/> <wire from="(140,1250)" to="(170,1250)"/> <wire from="(140,1410)" to="(170,1410)"/> <wire from="(140,1730)" to="(170,1730)"/> <wire from="(140,1570)" to="(170,1570)"/> <wire from="(1730,210)" to="(1800,210)"/> <wire from="(700,1550)" to="(700,1590)"/> <wire from="(110,650)" to="(200,650)"/> <wire from="(1680,830)" to="(1680,1020)"/> <wire from="(680,1810)" to="(1020,1810)"/> <wire from="(220,810)" to="(220,980)"/> <wire from="(1450,570)" to="(1520,570)"/> <wire from="(1450,250)" to="(1520,250)"/> <wire from="(1450,410)" to="(1520,410)"/> <wire from="(1450,730)" to="(1520,730)"/> <wire from="(630,1830)" to="(630,1930)"/> <wire from="(170,1450)" to="(190,1450)"/> <wire from="(170,1770)" to="(190,1770)"/> <wire from="(170,1290)" to="(190,1290)"/> <wire from="(170,1610)" to="(190,1610)"/> <wire from="(610,1650)" to="(680,1650)"/> <wire from="(610,1810)" to="(680,1810)"/> <wire from="(1170,690)" to="(1520,690)"/> <wire from="(610,530)" to="(680,530)"/> <wire from="(610,850)" to="(680,850)"/> <wire from="(210,1450)" to="(470,1450)"/> <wire from="(470,1730)" to="(610,1730)"/> <wire from="(330,410)" to="(400,410)"/> <wire from="(330,730)" to="(400,730)"/> <wire from="(330,570)" to="(400,570)"/> <wire from="(330,250)" to="(400,250)"/> <wire from="(330,1850)" to="(400,1850)"/> <wire from="(210,1290)" to="(470,1290)"/> <wire from="(420,950)" to="(420,1020)"/> <wire from="(1040,1540)" to="(1040,1560)"/> <wire from="(1240,370)" to="(1730,370)"/> <wire from="(1820,270)" to="(1820,350)"/> <wire from="(1820,590)" to="(1820,670)"/> <wire from="(1750,870)" to="(1750,1020)"/> <wire from="(1730,850)" to="(1900,850)"/> <wire from="(680,1290)" to="(930,1290)"/> <wire from="(540,890)" to="(960,890)"/> <wire from="(420,1270)" to="(420,1350)"/> <wire from="(770,1140)" to="(770,1230)"/> <wire from="(420,1590)" to="(420,1670)"/> <wire from="(420,1430)" to="(420,1510)"/> <wire from="(700,270)" to="(700,350)"/> <wire from="(700,1390)" to="(700,1470)"/> <wire from="(110,170)" to="(400,170)"/> <wire from="(1800,570)" to="(1870,570)"/> <wire from="(1800,250)" to="(1870,250)"/> <wire from="(680,1650)" to="(890,1650)"/> <wire from="(1660,330)" to="(1800,330)"/> <wire from="(1810,670)" to="(1820,670)"/> <wire from="(1660,810)" to="(1800,810)"/> <wire from="(260,850)" to="(400,850)"/> <wire from="(890,1490)" to="(1020,1490)"/> <wire from="(260,1650)" to="(400,1650)"/> <wire from="(680,1530)" to="(750,1530)"/> <wire from="(820,1570)" to="(960,1570)"/> <wire from="(540,1450)" to="(680,1450)"/> <wire from="(540,170)" to="(680,170)"/> <wire from="(400,1570)" to="(470,1570)"/> <wire from="(400,1730)" to="(470,1730)"/> <wire from="(420,1750)" to="(420,1870)"/> <wire from="(980,1510)" to="(980,1650)"/> <wire from="(1610,350)" to="(1610,430)"/> <wire from="(770,950)" to="(770,1020)"/> <wire from="(960,1500)" to="(1020,1500)"/> <wire from="(890,1610)" to="(930,1610)"/> <wire from="(490,510)" to="(490,590)"/> <wire from="(490,350)" to="(490,430)"/> <wire from="(490,1470)" to="(490,1550)"/> <wire from="(490,1310)" to="(490,1390)"/> <wire from="(770,470)" to="(770,550)"/> <wire from="(770,310)" to="(770,390)"/> <wire from="(770,630)" to="(770,710)"/> <wire from="(770,790)" to="(770,870)"/> <wire from="(770,1270)" to="(770,1350)"/> <wire from="(280,140)" to="(280,230)"/> <wire from="(1590,330)" to="(1660,330)"/> <wire from="(80,650)" to="(110,650)"/> <wire from="(80,330)" to="(110,330)"/> <wire from="(80,810)" to="(110,810)"/> <wire from="(80,170)" to="(110,170)"/> <wire from="(80,490)" to="(110,490)"/> <wire from="(1190,140)" to="(1190,710)"/> <wire from="(750,690)" to="(1100,690)"/> <wire from="(280,1550)" to="(280,1590)"/> <wire from="(280,1230)" to="(280,1270)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(330,210)" to="(610,210)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(110,530)" to="(130,530)"/> <wire from="(110,690)" to="(130,690)"/> <wire from="(1730,370)" to="(1870,370)"/> <wire from="(110,850)" to="(130,850)"/> <wire from="(1680,230)" to="(1680,270)"/> <wire from="(750,930)" to="(820,930)"/> <wire from="(750,1250)" to="(820,1250)"/> <wire from="(1030,650)" to="(1380,650)"/> <wire from="(210,1770)" to="(540,1770)"/> <wire from="(770,1590)" to="(770,1710)"/> <wire from="(750,1570)" to="(820,1570)"/> <wire from="(1310,170)" to="(1520,170)"/> <wire from="(1170,730)" to="(1450,730)"/> <wire from="(470,1450)" to="(540,1450)"/> <wire from="(610,370)" to="(750,370)"/> <wire from="(610,1330)" to="(750,1330)"/> <wire from="(1750,140)" to="(1750,230)"/> <wire from="(1680,710)" to="(1680,790)"/> <wire from="(210,1210)" to="(260,1210)"/> <wire from="(210,1530)" to="(260,1530)"/> <wire from="(210,730)" to="(260,730)"/> <wire from="(220,810)" to="(330,810)"/> <wire from="(630,140)" to="(630,230)"/> <wire from="(280,270)" to="(280,350)"/> <wire from="(980,1510)" to="(1020,1510)"/> <wire from="(560,1510)" to="(560,1590)"/> <wire from="(840,190)" to="(840,270)"/> <wire from="(840,1790)" to="(840,1870)"/> <wire from="(840,1470)" to="(840,1550)"/> <wire from="(350,1140)" to="(350,1230)"/> <wire from="(1660,210)" to="(1730,210)"/> <wire from="(910,230)" to="(910,270)"/> <wire from="(540,1770)" to="(750,1770)"/> <wire from="(260,1810)" to="(470,1810)"/> <wire from="(170,1410)" to="(170,1450)"/> <wire from="(170,1730)" to="(170,1770)"/> <wire from="(170,1570)" to="(170,1610)"/> <wire from="(170,1250)" to="(170,1290)"/> <wire from="(110,570)" to="(190,570)"/> <wire from="(560,1350)" to="(560,1470)"/> <wire from="(560,1670)" to="(560,1790)"/> <wire from="(400,1250)" to="(540,1250)"/> <wire from="(540,1330)" to="(610,1330)"/> <wire from="(540,1490)" to="(610,1490)"/> <wire from="(540,1650)" to="(610,1650)"/> <wire from="(820,330)" to="(890,330)"/> <wire from="(280,430)" to="(280,550)"/> <wire from="(280,750)" to="(280,870)"/> <wire from="(980,140)" to="(980,190)"/> <wire from="(280,590)" to="(280,710)"/> <wire from="(680,250)" to="(820,250)"/> <wire from="(260,410)" to="(330,410)"/> <wire from="(260,730)" to="(330,730)"/> <wire from="(260,570)" to="(330,570)"/> <wire from="(260,250)" to="(330,250)"/> <wire from="(1870,810)" to="(1900,810)"/> <wire from="(260,1210)" to="(330,1210)"/> <wire from="(610,410)" to="(1240,410)"/> <wire from="(1800,450)" to="(1900,450)"/> <wire from="(1800,770)" to="(1900,770)"/> <wire from="(1750,430)" to="(1750,510)"/> <wire from="(1750,590)" to="(1750,670)"/> <wire from="(350,1270)" to="(350,1350)"/> <wire from="(350,1430)" to="(350,1510)"/> <wire from="(980,1480)" to="(1020,1480)"/> <wire from="(1050,750)" to="(1050,950)"/> <wire from="(630,590)" to="(630,670)"/> <wire from="(910,1350)" to="(910,1430)"/> <wire from="(910,1670)" to="(910,1750)"/> <wire from="(1730,570)" to="(1800,570)"/> <wire from="(1730,250)" to="(1800,250)"/> <wire from="(1750,750)" to="(1750,870)"/> <wire from="(1750,270)" to="(1750,390)"/> <wire from="(1000,1520)" to="(1020,1520)"/> <wire from="(1030,730)" to="(1170,730)"/> <wire from="(1330,140)" to="(1330,190)"/> <wire from="(980,910)" to="(980,950)"/> <wire from="(330,1210)" to="(540,1210)"/> <wire from="(630,270)" to="(630,390)"/> <wire from="(630,430)" to="(630,550)"/> <wire from="(610,250)" to="(680,250)"/> <wire from="(1820,790)" to="(1820,830)"/> <wire from="(910,1510)" to="(910,1630)"/> <wire from="(1260,390)" to="(1260,430)"/> <wire from="(1040,1560)" to="(1060,1560)"/> <wire from="(350,1750)" to="(350,1870)"/> <wire from="(330,1250)" to="(400,1250)"/> <wire from="(330,1730)" to="(400,1730)"/> <wire from="(330,1410)" to="(400,1410)"/> <wire from="(1540,350)" to="(1540,430)"/> <wire from="(1540,510)" to="(1540,590)"/> <wire from="(1540,190)" to="(1540,270)"/> <wire from="(1820,470)" to="(1820,550)"/> <wire from="(210,1850)" to="(330,1850)"/> <wire from="(210,1690)" to="(330,1690)"/> <wire from="(700,950)" to="(700,1020)"/> <wire from="(420,190)" to="(420,270)"/> <wire from="(420,510)" to="(420,590)"/> <wire from="(420,670)" to="(420,750)"/> <wire from="(700,790)" to="(700,870)"/> <wire from="(700,470)" to="(700,550)"/> <wire from="(700,630)" to="(700,710)"/> <wire from="(700,1750)" to="(700,1830)"/> <wire from="(700,1590)" to="(700,1670)"/> <wire from="(700,1140)" to="(700,1310)"/> <wire from="(330,810)" to="(1450,810)"/> <wire from="(400,930)" to="(610,930)"/> <wire from="(400,1410)" to="(610,1410)"/> <wire from="(110,330)" to="(110,370)"/> <wire from="(110,650)" to="(110,690)"/> <wire from="(110,490)" to="(110,530)"/> <wire from="(110,170)" to="(110,210)"/> <wire from="(110,810)" to="(110,850)"/> <wire from="(110,250)" to="(260,250)"/> <wire from="(1120,140)" to="(1120,710)"/> <wire from="(960,170)" to="(1310,170)"/> <wire from="(1520,330)" to="(1590,330)"/> <wire from="(1610,550)" to="(1610,590)"/> <wire from="(680,770)" to="(750,770)"/> <wire from="(1610,230)" to="(1610,270)"/> <wire from="(680,450)" to="(750,450)"/> <wire from="(680,610)" to="(750,610)"/> <wire from="(680,930)" to="(750,930)"/> <wire from="(1610,710)" to="(1610,750)"/> <wire from="(680,1570)" to="(750,1570)"/> <wire from="(1120,790)" to="(1120,1020)"/> <wire from="(820,170)" to="(960,170)"/> <wire from="(470,490)" to="(1240,490)"/> <wire from="(560,140)" to="(560,190)"/> <wire from="(400,490)" to="(470,490)"/> <wire from="(1240,490)" to="(1450,490)"/> <wire from="(1680,140)" to="(1680,230)"/> <wire from="(960,1500)" to="(960,1570)"/> <wire from="(610,650)" to="(1030,650)"/> <wire from="(1050,950)" to="(1050,1020)"/> <wire from="(330,1610)" to="(890,1610)"/> <wire from="(490,1670)" to="(490,1750)"/> <wire from="(770,1790)" to="(770,1870)"/> <wire from="(770,1470)" to="(770,1550)"/> <wire from="(750,370)" to="(1240,370)"/> <wire from="(890,250)" to="(1450,250)"/> <wire from="(280,1140)" to="(280,1230)"/> <wire from="(610,210)" to="(890,210)"/> <wire from="(560,1230)" to="(560,1270)"/> <wire from="(1590,210)" to="(1660,210)"/> <wire from="(1590,690)" to="(1660,690)"/> <wire from="(610,1490)" to="(890,1490)"/> <wire from="(170,1650)" to="(260,1650)"/> <wire from="(170,1330)" to="(260,1330)"/> <wire from="(170,1810)" to="(260,1810)"/> <wire from="(890,1410)" to="(980,1410)"/> <wire from="(470,330)" to="(680,330)"/> <wire from="(1540,830)" to="(1540,1020)"/> <wire from="(470,1290)" to="(680,1290)"/> <wire from="(1260,510)" to="(1260,950)"/> <wire from="(490,1830)" to="(490,1930)"/> <wire from="(1730,410)" to="(1870,410)"/> <wire from="(1730,730)" to="(1870,730)"/> <wire from="(1260,230)" to="(1260,390)"/> <wire from="(560,1870)" to="(560,1930)"/> <wire from="(750,1770)" to="(820,1770)"/> <wire from="(750,1450)" to="(820,1450)"/> <wire from="(630,1140)" to="(630,1190)"/> <wire from="(190,570)" to="(260,570)"/> <wire from="(110,490)" to="(180,490)"/> <wire from="(470,1650)" to="(540,1650)"/> <wire from="(200,650)" to="(330,650)"/> <comp lib="0" loc="(1780,550)" name="Ground"/> <comp lib="0" loc="(350,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1630)" name="Ground"/> <comp lib="0" loc="(1470,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1918,575)" name="Text"> <a name="text" val="H3"/> </comp> <comp lib="0" loc="(840,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(841,1071)" name="Text"> <a name="text" val="0-63"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H4"/> </comp> <comp lib="0" loc="(730,550)" name="Ground"/> <comp lib="0" loc="(700,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1918,335)" name="Text"> <a name="text" val="H6"/> </comp> <comp lib="0" loc="(1570,870)" name="Ground"/> <comp lib="1" loc="(150,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(590,870)" name="Ground"/> <comp lib="0" loc="(1470,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(630,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(699,1070)" name="Text"> <a name="text" val="63"/> </comp> <comp lib="0" loc="(490,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1230)" name="Ground"/> <comp lib="0" loc="(700,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,270)" name="Ground"/> <comp lib="0" loc="(1330,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(940,190)" name="Ground"/> <comp lib="0" loc="(560,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1890,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1310)" name="Ground"/> <comp lib="0" loc="(590,1830)" name="Ground"/> <comp lib="0" loc="(1710,590)" name="Ground"/> <comp lib="0" loc="(1750,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,470)" name="Ground"/> <comp lib="0" loc="(520,190)" name="Ground"/> <comp lib="0" loc="(420,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1329,1072)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(590,1430)" name="Ground"/> <comp lib="0" loc="(840,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1350)" name="Ground"/> <comp lib="0" loc="(350,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(490,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1350)" name="Ground"/> <comp lib="0" loc="(420,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1350)" name="Ground"/> <comp lib="0" loc="(450,510)" name="Ground"/> <comp lib="0" loc="(1750,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(730,1590)" name="Ground"/> <comp lib="0" loc="(770,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,590)" name="Ground"/> <comp lib="0" loc="(280,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(210,1370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(310,670)" name="Ground"/> <comp lib="6" loc="(1188,1074)" name="Text"> <a name="text" val="4/5"/> </comp> <comp lib="0" loc="(660,950)" name="Ground"/> <comp lib="0" loc="(590,550)" name="Ground"/> <comp lib="0" loc="(520,1510)" name="Ground"/> <comp lib="0" loc="(800,1270)" name="Ground"/> <comp lib="0" loc="(350,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(380,270)" name="Ground"/> <comp lib="1" loc="(210,1530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H3"/> </comp> <comp lib="0" loc="(840,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,310)" name="Ground"/> <comp lib="0" loc="(1470,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,630)" name="Ground"/> <comp lib="0" loc="(1430,750)" name="Ground"/> <comp lib="0" loc="(770,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(421,1072)" name="Text"> <a name="text" val="65"/> </comp> <comp lib="0" loc="(1820,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1750)" name="Ground"/> <comp lib="0" loc="(280,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(800,350)" name="Ground"/> <comp lib="6" loc="(1918,816)" name="Text"> <a name="text" val="H0"/> </comp> <comp lib="0" loc="(1610,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1430)" name="Ground"/> <comp lib="0" loc="(310,430)" name="Ground"/> <comp lib="0" loc="(770,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1850,750)" name="Ground"/> <comp lib="0" loc="(770,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1260,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1538,1074)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(420,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,470)" name="Ground"/> <comp lib="0" loc="(450,590)" name="Ground"/> <comp lib="0" loc="(1260,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(1260,1073)" name="Text"> <a name="text" val="320-355"/> </comp> <comp lib="0" loc="(1190,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(730,630)" name="Ground"/> <comp lib="0" loc="(800,1550)" name="Ground"/> <comp lib="0" loc="(1780,590)" name="Ground"/> <comp lib="0" loc="(700,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1230)" name="Ground"/> <comp lib="0" loc="(560,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H8"/> </comp> <comp lib="0" loc="(350,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,1630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H7"/> </comp> <comp lib="0" loc="(1890,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,230)" name="Ground"/> <comp lib="0" loc="(1540,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(560,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1870)" name="Ground"/> <comp lib="0" loc="(770,310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,950)" name="Ground"/> <comp lib="0" loc="(240,550)" name="Ground"/> <comp lib="0" loc="(1500,590)" name="Ground"/> <comp lib="0" loc="(770,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(450,430)" name="Ground"/> <comp lib="0" loc="(840,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1590)" name="Ground"/> <comp lib="0" loc="(420,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,790)" name="Ground"/> <comp lib="6" loc="(1120,1073)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="0" loc="(770,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1550)" name="Ground"/> <comp lib="0" loc="(1610,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,710)" name="Ground"/> <comp lib="0" loc="(380,1670)" name="Ground"/> <comp lib="0" loc="(310,590)" name="Ground"/> <comp lib="0" loc="(840,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,350)" name="Ground"/> <comp lib="0" loc="(280,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,790)" name="Ground"/> <comp lib="0" loc="(350,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,790)" name="Ground"/> <comp lib="0" loc="(630,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(910,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,550)" name="Ground"/> <comp lib="0" loc="(910,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1010,750)" name="Ground"/> <comp lib="0" loc="(770,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1310)" name="Ground"/> <comp lib="6" loc="(557,1983)" name="Text"> <a name="text" val="291"/> </comp> <comp lib="0" loc="(420,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,710)" name="Ground"/> <comp lib="0" loc="(380,1750)" name="Ground"/> <comp lib="1" loc="(150,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(910,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,830)" name="Ground"/> <comp lib="0" loc="(1330,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,910)" name="Ground"/> <comp lib="0" loc="(240,430)" name="Ground"/> <comp lib="0" loc="(1680,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H6"/> </comp> <comp lib="0" loc="(1680,630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1230)" name="Ground"/> <comp lib="0" loc="(420,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,670)" name="Ground"/> <comp lib="0" loc="(770,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1049,1073)" name="Text"> <a name="text" val="0/1"/> </comp> <comp lib="0" loc="(1190,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,510)" name="Ground"/> <comp lib="0" loc="(310,1750)" name="Ground"/> <comp lib="0" loc="(630,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1670)" name="Ground"/> <comp lib="0" loc="(140,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V8"/> </comp> <comp lib="0" loc="(800,1870)" name="Ground"/> <comp lib="0" loc="(1430,510)" name="Ground"/> <comp lib="0" loc="(1710,390)" name="Ground"/> <comp lib="0" loc="(590,430)" name="Ground"/> <comp lib="1" loc="(210,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(800,1710)" name="Ground"/> <comp lib="0" loc="(980,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(380,950)" name="Ground"/> <comp lib="0" loc="(1430,430)" name="Ground"/> <comp lib="0" loc="(560,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,230)" name="Ground"/> <comp lib="0" loc="(630,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(770,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(840,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(910,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,550)" name="Ground"/> <comp lib="0" loc="(310,750)" name="Ground"/> <comp lib="0" loc="(1540,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,950)" name="Ground"/> <comp lib="0" loc="(1780,230)" name="Ground"/> <comp lib="0" loc="(870,1630)" name="Ground"/> <comp lib="0" loc="(630,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(130,1010)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="width" val="6"/> <a name="label" val="Hnn"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(350,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,430)" name="Ground"/> <comp lib="0" loc="(1820,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1870)" name="Ground"/> <comp lib="0" loc="(1850,830)" name="Ground"/> <comp lib="0" loc="(1640,510)" name="Ground"/> <comp lib="0" loc="(1500,270)" name="Ground"/> <comp lib="0" loc="(1820,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,230)" name="Ground"/> <comp lib="0" loc="(490,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,910)" name="Ground"/> <comp lib="6" loc="(1916,734)" name="Text"> <a name="text" val="H1"/> </comp> <comp lib="6" loc="(1819,1072)" name="Text"> <a name="text" val="306"/> </comp> <comp lib="0" loc="(280,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(380,430)" name="Ground"/> <comp lib="0" loc="(660,1670)" name="Ground"/> <comp lib="0" loc="(80,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H5"/> </comp> <comp lib="0" loc="(910,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1500,750)" name="Ground"/> <comp lib="0" loc="(420,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,230)" name="Ground"/> <comp lib="0" loc="(1780,790)" name="Ground"/> <comp lib="0" loc="(700,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1050,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1609,1073)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="0" loc="(700,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,190)" name="Ground"/> <comp lib="0" loc="(700,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(150,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1850,390)" name="Ground"/> <comp lib="0" loc="(1190,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1430)" name="Ground"/> <comp lib="0" loc="(140,1330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="0" loc="(980,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1570,270)" name="Ground"/> <comp lib="0" loc="(800,1230)" name="Ground"/> <comp lib="0" loc="(630,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(768,1073)" name="Text"> <a name="text" val="255"/> </comp> <comp lib="0" loc="(1010,670)" name="Ground"/> <comp lib="0" loc="(770,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1190,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(630,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,270)" name="Ground"/> <comp lib="0" loc="(1850,270)" name="Ground"/> <comp lib="0" loc="(1750,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,230)" name="Ground"/> <comp lib="0" loc="(1540,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,430)" name="Ground"/> <comp lib="0" loc="(1050,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1590)" name="Ground"/> <comp lib="0" loc="(1820,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,510)" name="Ground"/> <comp lib="0" loc="(1680,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(488,1073)" name="Text"> <a name="text" val="0-7,256-263"/> </comp> <comp lib="0" loc="(450,350)" name="Ground"/> <comp lib="0" loc="(240,1670)" name="Ground"/> <comp lib="0" loc="(1610,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,390)" name="Ground"/> <comp lib="0" loc="(980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,350)" name="Ground"/> <comp lib="0" loc="(770,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1640,470)" name="Ground"/> <comp lib="0" loc="(840,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1710,670)" name="Ground"/> <comp lib="0" loc="(280,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,430)" name="Ground"/> <comp lib="0" loc="(280,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1230)" name="Ground"/> <comp lib="0" loc="(700,1390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1680,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(350,1980)" name="Text"> <a name="text" val="269"/> </comp> <comp lib="6" loc="(770,1980)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="0" loc="(700,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,590)" name="Ground"/> <comp lib="0" loc="(380,390)" name="Ground"/> <comp lib="0" loc="(520,1230)" name="Ground"/> <comp lib="0" loc="(80,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0"/> </comp> <comp lib="6" loc="(1918,495)" name="Text"> <a name="text" val="H4"/> </comp> <comp lib="0" loc="(240,870)" name="Ground"/> <comp lib="0" loc="(840,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1150,750)" name="Ground"/> <comp lib="0" loc="(490,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1510)" name="Ground"/> <comp lib="0" loc="(1010,950)" name="Ground"/> <comp lib="0" loc="(1430,350)" name="Ground"/> <comp lib="0" loc="(1610,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,230)" name="Ground"/> <comp lib="0" loc="(1610,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H1"/> </comp> <comp lib="6" loc="(910,1980)" name="Text"> <a name="text" val="265"/> </comp> <comp lib="0" loc="(910,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1540,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1870)" name="Ground"/> <comp lib="0" loc="(140,1250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="0" loc="(770,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1830)" name="Ground"/> <comp lib="0" loc="(350,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(160,1000)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1500,830)" name="Ground"/> <comp lib="0" loc="(450,1670)" name="Ground"/> <comp lib="0" loc="(280,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="1" loc="(210,1770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(490,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(420,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,1470)" name="Ground"/> <comp lib="0" loc="(870,350)" name="Ground"/> <comp lib="0" loc="(1680,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1780,670)" name="Ground"/> <comp lib="0" loc="(1260,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1640,350)" name="Ground"/> <comp lib="0" loc="(310,830)" name="Ground"/> <comp lib="0" loc="(700,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1400,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(700,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(560,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(348,1073)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="0" loc="(1330,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(700,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1610,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,950)" name="Ground"/> <comp lib="0" loc="(1500,350)" name="Ground"/> <comp lib="1" loc="(150,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1680,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,270)" name="Ground"/> <comp lib="0" loc="(630,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1590)" name="Ground"/> <comp lib="0" loc="(1570,230)" name="Ground"/> <comp lib="0" loc="(980,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,230)" name="Ground"/> <comp lib="0" loc="(420,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1040,1540)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(730,1790)" name="Ground"/> <comp lib="6" loc="(279,1073)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="0" loc="(1540,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1270)" name="Ground"/> <comp lib="0" loc="(490,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(420,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1510)" name="Ground"/> <comp lib="0" loc="(380,670)" name="Ground"/> <comp lib="0" loc="(840,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(489,1981)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(770,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,870)" name="Ground"/> <comp lib="0" loc="(1360,790)" name="Ground"/> <comp lib="0" loc="(840,1470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(80,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VB"/> </comp> <comp lib="6" loc="(556,1073)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(280,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(140,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="0" loc="(140,1650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="0" loc="(590,390)" name="Ground"/> <comp lib="0" loc="(1060,1560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="VPOS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,390)" name="Ground"/> <comp lib="0" loc="(240,1590)" name="Ground"/> <comp lib="0" loc="(450,1830)" name="Ground"/> <comp lib="0" loc="(700,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1850,710)" name="Ground"/> <comp lib="0" loc="(800,1790)" name="Ground"/> <comp lib="6" loc="(1918,256)" name="Text"> <a name="text" val="H7"/> </comp> <comp lib="0" loc="(1050,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1400,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(80,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(730,870)" name="Ground"/> <comp lib="6" loc="(1680,1072)" name="Text"> <a name="text" val="302"/> </comp> <comp lib="0" loc="(700,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="1" loc="(210,1610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(730,1550)" name="Ground"/> <comp lib="1" loc="(210,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(660,190)" name="Ground"/> <comp lib="0" loc="(840,1790)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1750,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(520,1870)" name="Ground"/> <comp lib="0" loc="(140,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="0" loc="(700,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,710)" name="Ground"/> <comp lib="1" loc="(150,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(240,1750)" name="Ground"/> <comp lib="0" loc="(1680,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,1230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1830)" name="Ground"/> <comp lib="0" loc="(1570,710)" name="Ground"/> <comp lib="0" loc="(80,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H2"/> </comp> <comp lib="0" loc="(590,1750)" name="Ground"/> <comp lib="0" loc="(310,350)" name="Ground"/> <comp lib="0" loc="(1780,270)" name="Ground"/> <comp lib="0" loc="(1610,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1270)" name="Ground"/> <comp lib="0" loc="(1780,830)" name="Ground"/> <comp lib="1" loc="(150,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1640,230)" name="Ground"/> <comp lib="0" loc="(660,630)" name="Ground"/> <comp lib="0" loc="(660,1470)" name="Ground"/> <comp lib="0" loc="(380,1350)" name="Ground"/> <comp lib="0" loc="(350,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(450,1590)" name="Ground"/> <comp lib="0" loc="(1290,190)" name="Ground"/> <comp lib="0" loc="(450,1390)" name="Ground"/> <comp lib="0" loc="(630,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> <a name="labelloc" val="south"/> </comp> <comp lib="6" loc="(1919,415)" name="Text"> <a name="text" val="H5"/> </comp> <comp lib="0" loc="(1850,230)" name="Ground"/> <comp lib="1" loc="(210,1850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1750,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1050,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,1310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(1469,1074)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="0" loc="(1430,270)" name="Ground"/> <comp lib="0" loc="(240,750)" name="Ground"/> <comp lib="0" loc="(240,1550)" name="Ground"/> <comp lib="0" loc="(910,1870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1550)" name="Ground"/> <comp lib="0" loc="(1850,590)" name="Ground"/> <comp lib="0" loc="(280,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1820,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1710)" name="Ground"/> <comp lib="0" loc="(660,870)" name="Ground"/> <comp lib="1" loc="(210,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1640,270)" name="Ground"/> <comp lib="0" loc="(350,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(628,1073)" name="Text"> <a name="text" val="339"/> </comp> <comp lib="0" loc="(1570,430)" name="Ground"/> <comp lib="0" loc="(1750,510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1260,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(560,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1470)" name="Ground"/> <comp lib="0" loc="(660,270)" name="Ground"/> <comp lib="0" loc="(450,1750)" name="Ground"/> <comp lib="6" loc="(839,1980)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="0" loc="(1610,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1330,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(380,510)" name="Ground"/> <comp lib="0" loc="(1680,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1670)" name="Ground"/> <comp lib="0" loc="(240,710)" name="Ground"/> <comp lib="0" loc="(630,1830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,830)" name="Ground"/> <comp lib="0" loc="(770,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(770,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(419,1981)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(1750,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(730,1470)" name="Ground"/> <comp lib="0" loc="(350,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1120,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(840,1270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,670)" name="Ground"/> <comp lib="0" loc="(1890,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(910,1750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(310,510)" name="Ground"/> <comp lib="6" loc="(1890,1073)" name="Text"> <a name="text" val="340"/> </comp> <comp lib="6" loc="(279,1981)" name="Text"> <a name="text" val="272"/> </comp> <comp lib="0" loc="(700,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(1820,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(800,950)" name="Ground"/> <comp lib="0" loc="(1500,190)" name="Ground"/> <comp lib="6" loc="(1919,174)" name="Text"> <a name="text" val="H8"/> </comp> <comp lib="0" loc="(1610,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,350)" name="Ground"/> <comp lib="6" loc="(699,1981)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="0" loc="(730,950)" name="Ground"/> <comp lib="0" loc="(980,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,270)" name="Ground"/> <comp lib="0" loc="(1570,750)" name="Ground"/> <comp lib="0" loc="(380,1190)" name="Ground"/> <comp lib="0" loc="(140,1570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="0" loc="(560,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,590)" name="Ground"/> <comp lib="0" loc="(590,1190)" name="Ground"/> <comp lib="0" loc="(380,1510)" name="Ground"/> <comp lib="0" loc="(350,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,270)" name="Ground"/> <comp lib="0" loc="(280,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1570,590)" name="Ground"/> <comp lib="0" loc="(840,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(280,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(590,1270)" name="Ground"/> <comp lib="0" loc="(840,1140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="6" loc="(628,1982)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="0" loc="(140,1410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp lib="0" loc="(420,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,1710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(559,2001)" name="Text"> <a name="text" val="2C07 = 241"/> </comp> <comp lib="0" loc="(380,1270)" name="Ground"/> <comp lib="1" loc="(210,1690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(420,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1710)" name="Ground"/> <comp lib="0" loc="(770,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,350)" name="Ground"/> <comp lib="0" loc="(630,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1430,590)" name="Ground"/> <comp lib="1" loc="(150,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(630,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,270)" name="Ground"/> <comp lib="0" loc="(910,1430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1430)" name="Ground"/> <comp lib="0" loc="(350,1630)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(700,270)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,550)" name="Ground"/> <comp lib="0" loc="(310,1430)" name="Ground"/> <comp lib="0" loc="(590,1350)" name="Ground"/> <comp lib="0" loc="(350,1930)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(660,1750)" name="Ground"/> <comp lib="0" loc="(1890,830)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(630,1350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1470,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(770,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(910,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1350)" name="Ground"/> <comp lib="0" loc="(910,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1150,710)" name="Ground"/> <comp lib="0" loc="(520,1790)" name="Ground"/> <comp lib="0" loc="(730,790)" name="Ground"/> <comp lib="6" loc="(988,58)" name="Text"> <a name="text" val="6538 HV SELECT"/> <a name="font" val="SansSerif bold 40"/> </comp> <comp lib="0" loc="(450,1470)" name="Ground"/> <comp lib="0" loc="(630,230)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,1270)" name="Ground"/> <comp lib="0" loc="(630,1190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1220,510)" name="Ground"/> <comp lib="0" loc="(700,190)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,750)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(730,1350)" name="Ground"/> <comp lib="0" loc="(910,1510)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="6" loc="(979,1072)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(840,1590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1870)" name="Ground"/> <comp lib="6" loc="(1917,654)" name="Text"> <a name="text" val="H2"/> </comp> <comp lib="0" loc="(1080,790)" name="Ground"/> <comp lib="6" loc="(909,1071)" name="Text"> <a name="text" val="256-319"/> </comp> <comp lib="0" loc="(1680,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(660,1590)" name="Ground"/> <comp lib="0" loc="(1050,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1470,670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(350,350)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,710)" name="Ground"/> <comp lib="0" loc="(1680,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(840,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(350,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1670)" name="Ground"/> <comp lib="0" loc="(700,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(660,1390)" name="Ground"/> <comp lib="6" loc="(1750,1073)" name="Text"> <a name="text" val="321"/> </comp> <comp lib="0" loc="(700,1670)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,270)" name="Ground"/> <comp lib="0" loc="(730,1270)" name="Ground"/> <comp lib="0" loc="(420,870)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(280,550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,1590)" name="Ground"/> <comp lib="6" loc="(1399,1072)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="0" loc="(490,1550)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(310,1270)" name="Ground"/> <comp lib="0" loc="(420,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1820,470)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,950)" name="Ground"/> <comp lib="0" loc="(560,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(590,670)" name="Ground"/> <comp lib="0" loc="(490,430)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1710,750)" name="Ground"/> <comp lib="0" loc="(1540,1020)" name="Pin"> <a name="facing" val="north"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> <a name="labelloc" val="south"/> </comp> <comp lib="0" loc="(140,1730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="0" loc="(700,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(490,590)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(870,1350)" name="Ground"/> <comp lib="0" loc="(870,1510)" name="Ground"/> <comp lib="0" loc="(1610,140)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(380,750)" name="Ground"/> <comp lib="0" loc="(1120,710)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,870)" name="Ground"/> <comp lib="0" loc="(660,710)" name="Ground"/> <comp lib="0" loc="(1290,950)" name="Ground"/> <comp lib="0" loc="(1780,470)" name="Ground"/> <comp lib="1" loc="(150,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(380,190)" name="Ground"/> <comp lib="0" loc="(1500,430)" name="Ground"/> <comp lib="0" loc="(1260,390)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1890,710)" name="Transistor"> <a name="type" val="n"/> </comp> </circuit> <circuit name="CONTROL_UNIT_PAL"> <a name="circuit" val="CONTROL_UNIT_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M54,51 Q58,61 62,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffa029" height="520" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="459" y="114">HC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="456" y="475">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="559">/PICTURE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="372" y="559">H4''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="458" y="253">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="234">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="75">Hnn</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="153">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="436" y="194">ZOMG_PAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="392" y="543">H5''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="374">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="559">/VSET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="415">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="558">VB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="274">S/EV</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="259" y="324">CONTROL UNIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="560">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="214">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="353">F/TA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="559">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="432" y="544">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="458" y="394">/FO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="459" y="95">VC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="194" y="74">HPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="333">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="559">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="294">SC/CNT</text> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="66"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="154">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="314">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="174">BLACK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="452" y="134">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="292" y="559">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="411" y="559">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="174">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="312" y="543">H1''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="434">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="395" y="75">VPLA INPUTS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="559">H2''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="448" y="494">0/HPOS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="351" y="544">H3''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="74">VIN</text> <circ-port height="8" pin="150,80" width="8" x="46" y="66"/> <circ-port height="8" pin="190,260" width="8" x="326" y="46"/> <circ-port height="8" pin="150,500" width="8" x="46" y="126"/> <circ-port height="8" pin="150,540" width="8" x="46" y="146"/> <circ-port height="8" pin="150,620" width="8" x="96" y="46"/> <circ-port height="8" pin="150,700" width="8" x="106" y="46"/> <circ-port height="8" pin="150,780" width="8" x="116" y="46"/> <circ-port height="8" pin="150,850" width="8" x="126" y="46"/> <circ-port height="8" pin="150,920" width="8" x="136" y="46"/> <circ-port height="8" pin="150,1000" width="8" x="146" y="46"/> <circ-port height="8" pin="150,1070" width="8" x="156" y="46"/> <circ-port height="8" pin="150,1140" width="8" x="166" y="46"/> <circ-port height="8" pin="150,1210" width="8" x="176" y="46"/> <circ-port height="8" pin="150,1280" width="8" x="186" y="46"/> <circ-port height="8" pin="150,1350" width="8" x="236" y="46"/> <circ-port height="8" pin="150,1420" width="8" x="206" y="46"/> <circ-port height="8" pin="150,1490" width="8" x="196" y="46"/> <circ-port height="8" pin="150,1560" width="8" x="216" y="46"/> <circ-port height="8" pin="150,1630" width="8" x="226" y="46"/> <circ-port height="8" pin="150,1700" width="8" x="266" y="46"/> <circ-port height="8" pin="150,1780" width="8" x="276" y="46"/> <circ-port height="8" pin="150,1850" width="8" x="76" y="46"/> <circ-port height="8" pin="150,1930" width="8" x="86" y="46"/> <circ-port height="8" pin="150,2020" width="8" x="286" y="46"/> <circ-port height="8" pin="150,2100" width="8" x="296" y="46"/> <circ-port height="8" pin="150,2180" width="8" x="246" y="46"/> <circ-port height="8" pin="150,2260" width="8" x="256" y="46"/> <circ-port height="8" pin="150,2340" width="8" x="356" y="46"/> <circ-port height="8" pin="150,2420" width="8" x="346" y="46"/> <circ-port height="8" pin="150,2520" width="8" x="376" y="46"/> <circ-port height="8" pin="150,2600" width="8" x="366" y="46"/> <circ-port height="8" pin="150,2680" width="8" x="386" y="46"/> <circ-port height="8" pin="150,2760" width="8" x="396" y="46"/> <circ-port height="8" pin="150,2840" width="8" x="406" y="46"/> <circ-port height="8" pin="150,2920" width="8" x="416" y="46"/> <circ-port height="8" pin="150,3060" width="8" x="426" y="46"/> <circ-port height="8" pin="150,2990" width="8" x="46" y="166"/> <circ-port height="8" pin="150,3130" width="8" x="306" y="46"/> <circ-port height="8" pin="150,3340" width="8" x="436" y="46"/> <circ-port height="10" pin="730,130" width="10" x="285" y="565"/> <circ-port height="10" pin="730,190" width="10" x="305" y="565"/> <circ-port height="10" pin="730,250" width="10" x="325" y="565"/> <circ-port height="10" pin="730,310" width="10" x="345" y="565"/> <circ-port height="10" pin="730,370" width="10" x="365" y="565"/> <circ-port height="10" pin="730,430" width="10" x="385" y="565"/> <circ-port height="10" pin="730,480" width="10" x="405" y="565"/> <circ-port height="10" pin="730,520" width="10" x="425" y="565"/> <circ-port height="10" pin="730,560" width="10" x="445" y="565"/> <circ-port height="10" pin="730,620" width="10" x="475" y="265"/> <circ-port height="10" pin="730,670" width="10" x="475" y="145"/> <circ-port height="10" pin="730,750" width="10" x="475" y="165"/> <circ-port height="10" pin="730,850" width="10" x="475" y="485"/> <circ-port height="10" pin="730,880" width="10" x="475" y="125"/> <circ-port height="10" pin="730,1000" width="10" x="475" y="465"/> <circ-port height="10" pin="730,1070" width="10" x="475" y="205"/> <circ-port height="10" pin="730,1140" width="10" x="475" y="405"/> <circ-port height="10" pin="730,1190" width="10" x="475" y="245"/> <circ-port height="10" pin="730,1260" width="10" x="475" y="305"/> <circ-port height="10" pin="730,1360" width="10" x="475" y="325"/> <circ-port height="10" pin="730,1410" width="10" x="475" y="345"/> <circ-port height="10" pin="730,1460" width="10" x="475" y="365"/> <circ-port height="10" pin="730,1580" width="10" x="475" y="385"/> <circ-port height="10" pin="730,1740" width="10" x="475" y="285"/> <circ-port height="10" pin="730,1870" width="10" x="135" y="565"/> <circ-port height="10" pin="730,2020" width="10" x="175" y="565"/> <circ-port height="10" pin="730,2480" width="10" x="235" y="565"/> <circ-port height="10" pin="730,2680" width="10" x="95" y="565"/> <circ-port height="10" pin="730,2760" width="10" x="65" y="565"/> <circ-port height="10" pin="730,2930" width="10" x="475" y="425"/> <circ-port height="10" pin="730,3060" width="10" x="475" y="225"/> <circ-port height="10" pin="730,3130" width="10" x="475" y="65"/> <circ-port height="10" pin="730,3190" width="10" x="475" y="105"/> <circ-port height="10" pin="730,3260" width="10" x="475" y="85"/> <circ-port height="10" pin="730,3350" width="10" x="475" y="185"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(460,370)" to="(520,370)"/> <wire from="(150,780)" to="(260,780)"/> <wire from="(150,620)" to="(260,620)"/> <wire from="(150,1420)" to="(260,1420)"/> <wire from="(310,1590)" to="(310,1610)"/> <wire from="(550,2240)" to="(590,2240)"/> <wire from="(150,3340)" to="(260,3340)"/> <wire from="(240,1740)" to="(240,1890)"/> <wire from="(690,1740)" to="(730,1740)"/> <wire from="(300,2050)" to="(410,2050)"/> <wire from="(380,700)" to="(380,730)"/> <wire from="(150,80)" to="(190,80)"/> <wire from="(220,2070)" to="(260,2070)"/> <wire from="(220,1750)" to="(260,1750)"/> <wire from="(220,2230)" to="(260,2230)"/> <wire from="(480,250)" to="(520,250)"/> <wire from="(450,3060)" to="(730,3060)"/> <wire from="(580,1460)" to="(730,1460)"/> <wire from="(490,1880)" to="(510,1880)"/> <wire from="(240,2060)" to="(240,2220)"/> <wire from="(240,1470)" to="(260,1470)"/> <wire from="(240,830)" to="(260,830)"/> <wire from="(310,740)" to="(330,740)"/> <wire from="(240,2910)" to="(260,2910)"/> <wire from="(390,980)" to="(410,980)"/> <wire from="(450,1140)" to="(730,1140)"/> <wire from="(560,110)" to="(630,110)"/> <wire from="(300,1540)" to="(310,1540)"/> <wire from="(640,3360)" to="(640,3410)"/> <wire from="(150,2100)" to="(220,2100)"/> <wire from="(150,1780)" to="(220,1780)"/> <wire from="(150,2260)" to="(220,2260)"/> <wire from="(510,350)" to="(510,410)"/> <wire from="(390,1190)" to="(390,1260)"/> <wire from="(360,2210)" to="(360,2470)"/> <wire from="(530,2450)" to="(530,2520)"/> <wire from="(150,1070)" to="(260,1070)"/> <wire from="(300,1350)" to="(540,1350)"/> <wire from="(490,2380)" to="(490,2410)"/> <wire from="(220,1880)" to="(260,1880)"/> <wire from="(300,2760)" to="(340,2760)"/> <wire from="(710,310)" to="(730,310)"/> <wire from="(630,2470)" to="(650,2470)"/> <wire from="(240,1120)" to="(260,1120)"/> <wire from="(150,2600)" to="(300,2600)"/> <wire from="(240,3040)" to="(260,3040)"/> <wire from="(390,3040)" to="(390,3340)"/> <wire from="(390,1860)" to="(390,2030)"/> <wire from="(790,40)" to="(790,590)"/> <wire from="(370,1580)" to="(380,1580)"/> <wire from="(240,110)" to="(510,110)"/> <wire from="(320,890)" to="(330,890)"/> <wire from="(490,140)" to="(490,190)"/> <wire from="(410,480)" to="(540,480)"/> <wire from="(630,110)" to="(630,480)"/> <wire from="(660,110)" to="(670,110)"/> <wire from="(610,2940)" to="(620,2940)"/> <wire from="(240,1330)" to="(240,1400)"/> <wire from="(440,140)" to="(490,140)"/> <wire from="(150,500)" to="(520,500)"/> <wire from="(540,590)" to="(790,590)"/> <wire from="(460,170)" to="(460,370)"/> <wire from="(380,1370)" to="(380,1580)"/> <wire from="(630,2490)" to="(630,2520)"/> <wire from="(390,680)" to="(390,760)"/> <wire from="(520,1420)" to="(520,1450)"/> <wire from="(190,260)" to="(420,260)"/> <wire from="(440,150)" to="(480,150)"/> <wire from="(240,3250)" to="(240,3350)"/> <wire from="(440,160)" to="(470,160)"/> <wire from="(520,1450)" to="(520,1560)"/> <wire from="(300,830)" to="(320,830)"/> <wire from="(240,1890)" to="(260,1890)"/> <wire from="(240,3170)" to="(260,3170)"/> <wire from="(440,170)" to="(460,170)"/> <wire from="(390,600)" to="(410,600)"/> <wire from="(390,760)" to="(410,760)"/> <wire from="(390,1400)" to="(410,1400)"/> <wire from="(390,1560)" to="(410,1560)"/> <wire from="(570,1730)" to="(600,1730)"/> <wire from="(560,2360)" to="(590,2360)"/> <wire from="(440,180)" to="(450,180)"/> <wire from="(510,410)" to="(520,410)"/> <wire from="(300,680)" to="(310,680)"/> <wire from="(240,3410)" to="(640,3410)"/> <wire from="(300,3190)" to="(560,3190)"/> <wire from="(510,290)" to="(510,350)"/> <wire from="(640,2940)" to="(650,2940)"/> <wire from="(240,980)" to="(240,1050)"/> <wire from="(610,190)" to="(610,520)"/> <wire from="(240,2770)" to="(240,2910)"/> <wire from="(360,2760)" to="(730,2760)"/> <wire from="(150,850)" to="(260,850)"/> <wire from="(150,1490)" to="(260,1490)"/> <wire from="(180,3060)" to="(180,3270)"/> <wire from="(300,1000)" to="(410,1000)"/> <wire from="(150,2340)" to="(440,2340)"/> <wire from="(470,2410)" to="(490,2410)"/> <wire from="(710,250)" to="(730,250)"/> <wire from="(540,480)" to="(540,590)"/> <wire from="(240,1540)" to="(260,1540)"/> <wire from="(240,2660)" to="(260,2660)"/> <wire from="(240,900)" to="(260,900)"/> <wire from="(560,250)" to="(590,250)"/> <wire from="(390,1050)" to="(410,1050)"/> <wire from="(300,1610)" to="(310,1610)"/> <wire from="(560,3190)" to="(560,3250)"/> <wire from="(240,3350)" to="(240,3410)"/> <wire from="(150,1850)" to="(220,1850)"/> <wire from="(330,2590)" to="(450,2590)"/> <wire from="(150,1140)" to="(260,1140)"/> <wire from="(560,3250)" to="(600,3250)"/> <wire from="(560,430)" to="(670,430)"/> <wire from="(220,2020)" to="(220,2050)"/> <wire from="(220,1700)" to="(220,1730)"/> <wire from="(220,2180)" to="(220,2210)"/> <wire from="(240,1190)" to="(260,1190)"/> <wire from="(420,2300)" to="(570,2300)"/> <wire from="(510,350)" to="(520,350)"/> <wire from="(300,780)" to="(310,780)"/> <wire from="(510,230)" to="(510,290)"/> <wire from="(240,2220)" to="(240,2660)"/> <wire from="(590,560)" to="(730,560)"/> <wire from="(240,1400)" to="(240,1470)"/> <wire from="(240,760)" to="(240,830)"/> <wire from="(530,3340)" to="(580,3340)"/> <wire from="(390,1260)" to="(390,1400)"/> <wire from="(590,2450)" to="(630,2450)"/> <wire from="(240,600)" to="(240,680)"/> <wire from="(630,480)" to="(730,480)"/> <wire from="(300,620)" to="(410,620)"/> <wire from="(300,1420)" to="(410,1420)"/> <wire from="(390,2030)" to="(390,2120)"/> <wire from="(560,3190)" to="(730,3190)"/> <wire from="(580,670)" to="(730,670)"/> <wire from="(710,190)" to="(730,190)"/> <wire from="(230,2900)" to="(260,2900)"/> <wire from="(490,2360)" to="(520,2360)"/> <wire from="(390,830)" to="(410,830)"/> <wire from="(390,1470)" to="(410,1470)"/> <wire from="(240,680)" to="(260,680)"/> <wire from="(660,350)" to="(660,410)"/> <wire from="(530,3160)" to="(530,3340)"/> <wire from="(240,1050)" to="(240,1120)"/> <wire from="(580,480)" to="(630,480)"/> <wire from="(390,2120)" to="(390,2450)"/> <wire from="(210,80)" to="(390,80)"/> <wire from="(150,920)" to="(260,920)"/> <wire from="(150,1560)" to="(260,1560)"/> <wire from="(150,2680)" to="(260,2680)"/> <wire from="(620,3250)" to="(660,3250)"/> <wire from="(300,2680)" to="(730,2680)"/> <wire from="(450,2510)" to="(450,2540)"/> <wire from="(300,1070)" to="(410,1070)"/> <wire from="(560,370)" to="(670,370)"/> <wire from="(220,2050)" to="(260,2050)"/> <wire from="(220,1730)" to="(260,1730)"/> <wire from="(220,2210)" to="(260,2210)"/> <wire from="(370,1880)" to="(410,1880)"/> <wire from="(450,2120)" to="(490,2120)"/> <wire from="(450,760)" to="(540,760)"/> <wire from="(450,1400)" to="(540,1400)"/> <wire from="(390,880)" to="(390,980)"/> <wire from="(380,780)" to="(410,780)"/> <wire from="(380,1580)" to="(410,1580)"/> <wire from="(230,3190)" to="(260,3190)"/> <wire from="(240,1610)" to="(260,1610)"/> <wire from="(310,720)" to="(330,720)"/> <wire from="(240,110)" to="(240,600)"/> <wire from="(390,1120)" to="(410,1120)"/> <wire from="(390,3040)" to="(410,3040)"/> <wire from="(510,290)" to="(520,290)"/> <wire from="(180,3060)" to="(260,3060)"/> <wire from="(510,170)" to="(510,230)"/> <wire from="(450,2030)" to="(650,2030)"/> <wire from="(500,540)" to="(500,740)"/> <wire from="(150,1210)" to="(260,1210)"/> <wire from="(470,160)" to="(470,310)"/> <wire from="(280,2500)" to="(280,2580)"/> <wire from="(640,3310)" to="(640,3340)"/> <wire from="(420,2320)" to="(420,2400)"/> <wire from="(310,1540)" to="(310,1570)"/> <wire from="(280,2470)" to="(280,2500)"/> <wire from="(400,2140)" to="(400,2230)"/> <wire from="(580,1410)" to="(730,1410)"/> <wire from="(300,2920)" to="(650,2920)"/> <wire from="(710,130)" to="(730,130)"/> <wire from="(240,1260)" to="(260,1260)"/> <wire from="(240,2060)" to="(260,2060)"/> <wire from="(240,1740)" to="(260,1740)"/> <wire from="(240,2220)" to="(260,2220)"/> <wire from="(280,2580)" to="(300,2580)"/> <wire from="(420,2400)" to="(440,2400)"/> <wire from="(310,740)" to="(310,780)"/> <wire from="(150,2840)" to="(230,2840)"/> <wire from="(390,80)" to="(660,80)"/> <wire from="(660,290)" to="(660,350)"/> <wire from="(660,410)" to="(670,410)"/> <wire from="(450,430)" to="(520,430)"/> <wire from="(390,980)" to="(390,1050)"/> <wire from="(300,2210)" to="(360,2210)"/> <wire from="(240,1470)" to="(240,1540)"/> <wire from="(240,830)" to="(240,900)"/> <wire from="(320,910)" to="(320,980)"/> <wire from="(470,310)" to="(520,310)"/> <wire from="(150,700)" to="(260,700)"/> <wire from="(590,2520)" to="(630,2520)"/> <wire from="(620,3350)" to="(660,3350)"/> <wire from="(400,2230)" to="(510,2230)"/> <wire from="(490,2330)" to="(490,2360)"/> <wire from="(300,850)" to="(410,850)"/> <wire from="(300,1490)" to="(410,1490)"/> <wire from="(560,310)" to="(670,310)"/> <wire from="(220,1900)" to="(220,1930)"/> <wire from="(450,2560)" to="(470,2560)"/> <wire from="(490,190)" to="(520,190)"/> <wire from="(520,500)" to="(520,660)"/> <wire from="(390,1860)" to="(410,1860)"/> <wire from="(510,230)" to="(520,230)"/> <wire from="(370,730)" to="(380,730)"/> <wire from="(150,2020)" to="(220,2020)"/> <wire from="(150,1700)" to="(220,1700)"/> <wire from="(150,2180)" to="(220,2180)"/> <wire from="(510,110)" to="(510,170)"/> <wire from="(240,1120)" to="(240,1190)"/> <wire from="(240,2910)" to="(240,3040)"/> <wire from="(210,100)" to="(210,110)"/> <wire from="(150,1630)" to="(260,1630)"/> <wire from="(300,3060)" to="(410,3060)"/> <wire from="(300,1140)" to="(410,1140)"/> <wire from="(450,1470)" to="(540,1470)"/> <wire from="(530,2450)" to="(550,2450)"/> <wire from="(230,2780)" to="(260,2780)"/> <wire from="(640,3360)" to="(660,3360)"/> <wire from="(690,2930)" to="(710,2930)"/> <wire from="(620,1730)" to="(650,1730)"/> <wire from="(310,1590)" to="(330,1590)"/> <wire from="(150,2520)" to="(300,2520)"/> <wire from="(390,1190)" to="(410,1190)"/> <wire from="(200,3130)" to="(730,3130)"/> <wire from="(710,2930)" to="(710,3160)"/> <wire from="(310,680)" to="(310,720)"/> <wire from="(450,1190)" to="(730,1190)"/> <wire from="(390,2450)" to="(530,2450)"/> <wire from="(660,230)" to="(660,290)"/> <wire from="(200,3130)" to="(200,3190)"/> <wire from="(230,2840)" to="(230,2900)"/> <wire from="(660,350)" to="(670,350)"/> <wire from="(390,760)" to="(390,830)"/> <wire from="(390,1400)" to="(390,1470)"/> <wire from="(530,3160)" to="(710,3160)"/> <wire from="(240,3040)" to="(240,3170)"/> <wire from="(150,3130)" to="(200,3130)"/> <wire from="(150,1280)" to="(260,1280)"/> <wire from="(510,2540)" to="(550,2540)"/> <wire from="(240,3170)" to="(240,3250)"/> <wire from="(390,600)" to="(390,680)"/> <wire from="(570,2220)" to="(570,2300)"/> <wire from="(180,3270)" to="(180,3360)"/> <wire from="(520,1450)" to="(540,1450)"/> <wire from="(300,900)" to="(330,900)"/> <wire from="(620,3310)" to="(640,3310)"/> <wire from="(240,1330)" to="(260,1330)"/> <wire from="(240,2770)" to="(260,2770)"/> <wire from="(240,3250)" to="(260,3250)"/> <wire from="(390,680)" to="(410,680)"/> <wire from="(390,2120)" to="(410,2120)"/> <wire from="(450,1000)" to="(730,1000)"/> <wire from="(510,170)" to="(520,170)"/> <wire from="(400,2140)" to="(410,2140)"/> <wire from="(590,2240)" to="(590,2360)"/> <wire from="(150,2990)" to="(610,2990)"/> <wire from="(490,1880)" to="(490,2120)"/> <wire from="(550,1870)" to="(630,1870)"/> <wire from="(590,250)" to="(590,560)"/> <wire from="(390,1050)" to="(390,1120)"/> <wire from="(240,1540)" to="(240,1610)"/> <wire from="(360,2470)" to="(550,2470)"/> <wire from="(610,190)" to="(670,190)"/> <wire from="(240,900)" to="(240,980)"/> <wire from="(220,1900)" to="(260,1900)"/> <wire from="(150,2420)" to="(440,2420)"/> <wire from="(300,3270)" to="(660,3270)"/> <wire from="(500,740)" to="(540,740)"/> <wire from="(570,1730)" to="(570,2220)"/> <wire from="(520,1420)" to="(540,1420)"/> <wire from="(470,2330)" to="(490,2330)"/> <wire from="(630,2490)" to="(650,2490)"/> <wire from="(630,2010)" to="(650,2010)"/> <wire from="(240,980)" to="(260,980)"/> <wire from="(240,2660)" to="(240,2770)"/> <wire from="(240,1890)" to="(240,2060)"/> <wire from="(700,3350)" to="(730,3350)"/> <wire from="(200,3190)" to="(210,3190)"/> <wire from="(320,910)" to="(330,910)"/> <wire from="(660,170)" to="(660,230)"/> <wire from="(440,130)" to="(520,130)"/> <wire from="(230,2780)" to="(230,2840)"/> <wire from="(150,1930)" to="(220,1930)"/> <wire from="(660,290)" to="(670,290)"/> <wire from="(240,1190)" to="(240,1260)"/> <wire from="(680,2480)" to="(730,2480)"/> <wire from="(330,2510)" to="(450,2510)"/> <wire from="(420,2300)" to="(420,2320)"/> <wire from="(690,2020)" to="(730,2020)"/> <wire from="(630,1870)" to="(730,1870)"/> <wire from="(300,1210)" to="(410,1210)"/> <wire from="(370,900)" to="(410,900)"/> <wire from="(150,540)" to="(500,540)"/> <wire from="(210,110)" to="(240,110)"/> <wire from="(480,150)" to="(480,250)"/> <wire from="(550,2220)" to="(570,2220)"/> <wire from="(530,2520)" to="(550,2520)"/> <wire from="(380,1370)" to="(540,1370)"/> <wire from="(240,3350)" to="(260,3350)"/> <wire from="(390,1260)" to="(410,1260)"/> <wire from="(390,3340)" to="(410,3340)"/> <wire from="(610,1750)" to="(610,2940)"/> <wire from="(450,620)" to="(730,620)"/> <wire from="(450,1260)" to="(730,1260)"/> <wire from="(450,1580)" to="(730,1580)"/> <wire from="(510,110)" to="(520,110)"/> <wire from="(180,3360)" to="(260,3360)"/> <wire from="(390,830)" to="(390,880)"/> <wire from="(590,250)" to="(670,250)"/> <wire from="(450,180)" to="(450,430)"/> <wire from="(450,1560)" to="(520,1560)"/> <wire from="(610,520)" to="(730,520)"/> <wire from="(390,80)" to="(390,600)"/> <wire from="(150,1350)" to="(260,1350)"/> <wire from="(610,1750)" to="(650,1750)"/> <wire from="(240,680)" to="(240,760)"/> <wire from="(220,2070)" to="(220,2100)"/> <wire from="(220,1750)" to="(220,1780)"/> <wire from="(220,2230)" to="(220,2260)"/> <wire from="(390,1470)" to="(390,1560)"/> <wire from="(150,3060)" to="(180,3060)"/> <wire from="(580,750)" to="(730,750)"/> <wire from="(440,2550)" to="(470,2550)"/> <wire from="(710,430)" to="(730,430)"/> <wire from="(240,1400)" to="(260,1400)"/> <wire from="(240,760)" to="(260,760)"/> <wire from="(300,980)" to="(320,980)"/> <wire from="(390,1560)" to="(390,1860)"/> <wire from="(390,2030)" to="(410,2030)"/> <wire from="(240,600)" to="(260,600)"/> <wire from="(450,1070)" to="(730,1070)"/> <wire from="(280,2470)" to="(360,2470)"/> <wire from="(660,110)" to="(660,170)"/> <wire from="(450,3360)" to="(580,3360)"/> <wire from="(300,1730)" to="(570,1730)"/> <wire from="(610,2940)" to="(610,2990)"/> <wire from="(660,230)" to="(670,230)"/> <wire from="(410,40)" to="(410,480)"/> <wire from="(420,190)" to="(420,260)"/> <wire from="(390,1120)" to="(390,1190)"/> <wire from="(450,1860)" to="(510,1860)"/> <wire from="(630,1870)" to="(630,2010)"/> <wire from="(470,2370)" to="(520,2370)"/> <wire from="(300,1880)" to="(350,1880)"/> <wire from="(150,1000)" to="(260,1000)"/> <wire from="(150,2920)" to="(260,2920)"/> <wire from="(150,2760)" to="(260,2760)"/> <wire from="(660,80)" to="(660,110)"/> <wire from="(560,130)" to="(670,130)"/> <wire from="(630,2450)" to="(630,2470)"/> <wire from="(450,680)" to="(540,680)"/> <wire from="(580,1360)" to="(730,1360)"/> <wire from="(450,2540)" to="(470,2540)"/> <wire from="(380,700)" to="(410,700)"/> <wire from="(580,3310)" to="(600,3310)"/> <wire from="(240,1050)" to="(260,1050)"/> <wire from="(390,880)" to="(410,880)"/> <wire from="(700,3260)" to="(730,3260)"/> <wire from="(450,880)" to="(730,880)"/> <wire from="(240,1260)" to="(240,1330)"/> <wire from="(410,40)" to="(790,40)"/> <wire from="(240,1610)" to="(240,1740)"/> <wire from="(560,190)" to="(610,190)"/> <wire from="(210,80)" to="(210,90)"/> <wire from="(390,2450)" to="(390,3040)"/> <wire from="(300,3360)" to="(410,3360)"/> <wire from="(450,2560)" to="(450,2590)"/> <wire from="(300,1280)" to="(410,1280)"/> <wire from="(220,1850)" to="(220,1880)"/> <wire from="(710,2930)" to="(730,2930)"/> <wire from="(520,660)" to="(540,660)"/> <wire from="(710,370)" to="(730,370)"/> <wire from="(640,3340)" to="(660,3340)"/> <wire from="(310,1570)" to="(330,1570)"/> <wire from="(280,2500)" to="(300,2500)"/> <wire from="(490,2380)" to="(520,2380)"/> <wire from="(420,2320)" to="(440,2320)"/> <wire from="(450,850)" to="(730,850)"/> <wire from="(180,3270)" to="(260,3270)"/> <wire from="(380,730)" to="(380,780)"/> <wire from="(320,830)" to="(320,890)"/> <wire from="(660,170)" to="(670,170)"/> <comp lib="6" loc="(174,1206)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="1" loc="(330,2590)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(150,1280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_11"/> </comp> <comp lib="0" loc="(730,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="S/EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_13"/> </comp> <comp loc="(560,240)" name="D-latch"/> <comp lib="0" loc="(730,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="0/HPOS"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,1360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,1140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1130)" name="D-latch"/> <comp lib="6" loc="(171,2015)" name="Text"> <a name="text" val="321"/> </comp> <comp lib="0" loc="(150,1700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_19"/> </comp> <comp lib="0" loc="(730,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H1''"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,990)" name="D-latch"/> <comp loc="(710,360)" name="D-latch"/> <comp lib="4" loc="(300,2760)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(620,3350)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(217,3212)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(150,2600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_2"/> </comp> <comp lib="1" loc="(690,2930)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H2''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(172,2415)" name="Text"> <a name="text" val="272"/> </comp> <comp lib="6" loc="(169,2335)" name="Text"> <a name="text" val="269"/> </comp> <comp lib="0" loc="(150,2680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_4"/> </comp> <comp loc="(300,1340)" name="D-latch"/> <comp lib="6" loc="(165,3053)" name="Text"> <a name="text" val="311"/> </comp> <comp loc="(560,180)" name="D-latch"/> <comp lib="4" loc="(300,2050)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_3"/> </comp> <comp loc="(710,120)" name="D-latch"/> <comp lib="0" loc="(150,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_16"/> </comp> <comp lib="1" loc="(360,2760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(730,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H3''"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(332,2675)" name="Text"> <a name="text" val="/VSET"/> </comp> <comp lib="0" loc="(150,2180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_17"/> </comp> <comp loc="(450,770)" name="D-latch"/> <comp loc="(710,240)" name="D-latch"/> <comp lib="4" loc="(300,3340)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(590,2530)" name="D-latch"/> <comp lib="0" loc="(150,2420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_0"/> </comp> <comp loc="(300,610)" name="D-latch"/> <comp lib="6" loc="(169,995)" name="Text"> <a name="text" val="255"/> </comp> <comp loc="(300,990)" name="D-latch"/> <comp lib="0" loc="(580,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> </comp> <comp lib="0" loc="(730,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BURST"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1060)" name="D-latch"/> <comp lib="0" loc="(150,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_8"/> </comp> <comp lib="4" loc="(300,2210)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,3130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_23"/> </comp> <comp lib="0" loc="(730,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TA"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_0"/> </comp> <comp loc="(300,3050)" name="D-latch"/> <comp lib="0" loc="(730,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(170,1696)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="0" loc="(150,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_12"/> </comp> <comp lib="4" loc="(300,1880)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(710,420)" name="D-latch"/> <comp lib="6" loc="(610,3295)" name="Text"> <a name="text" val="4"/> </comp> <comp loc="(450,1270)" name="D-latch"/> <comp lib="0" loc="(730,2930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,1620)" name="D-latch"/> <comp lib="4" loc="(300,1730)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(300,1200)" name="D-latch"/> <comp lib="0" loc="(150,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_9"/> </comp> <comp lib="6" loc="(359,1863)" name="Text"> <a name="text" val="/FPORCH"/> <a name="font" val="SansSerif plain 10"/> </comp> <comp loc="(450,610)" name="D-latch"/> <comp lib="6" loc="(309,3262)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="1" loc="(230,3190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(79,2308)" name="Text"> <a name="text" val="VPOS control"/> </comp> <comp lib="6" loc="(171,1925)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="6" loc="(171,2835)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="6" loc="(171,1845)" name="Text"> <a name="text" val="277"/> </comp> <comp lib="1" loc="(700,3260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp loc="(710,180)" name="D-latch"/> <comp lib="0" loc="(150,3340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_9"/> </comp> <comp lib="1" loc="(690,1740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,2990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> </comp> <comp lib="6" loc="(310,3183)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="6" loc="(169,2095)" name="Text"> <a name="text" val="306"/> </comp> <comp loc="(560,420)" name="D-latch"/> <comp lib="0" loc="(730,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(172,2675)" name="Text"> <a name="text" val="291"/> </comp> <comp lib="0" loc="(150,500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> </comp> <comp lib="6" loc="(317,1829)" name="Text"> <a name="text" val="Front porch RS flip/flop"/> </comp> <comp lib="1" loc="(640,2940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(440,2550)" name="Constant"/> <comp lib="0" loc="(150,1930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_1"/> </comp> <comp lib="6" loc="(170,2916)" name="Text"> <a name="text" val="311"/> </comp> <comp lib="6" loc="(80,3099)" name="Text"> <a name="text" val="H/V control"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(433,2297)" name="Text"> <a name="text" val="/HB"/> </comp> <comp lib="0" loc="(730,1580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/FO"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H1'"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,2680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VSET"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(168,1277)" name="Text"> <a name="text" val="0/1"/> </comp> <comp lib="1" loc="(370,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(620,3250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,1730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(168,2593)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(730,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0'"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> </comp> <comp lib="0" loc="(150,2340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_1"/> </comp> <comp lib="0" loc="(730,3350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZOMG_PAL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(300,2670)" name="D-latch"/> <comp lib="0" loc="(730,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/H2'"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_15"/> </comp> <comp lib="0" loc="(150,3060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_8"/> </comp> <comp loc="(450,3350)" name="D-latch"/> <comp lib="0" loc="(730,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H5''"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_7"/> </comp> <comp lib="6" loc="(166,614)" name="Text"> <a name="text" val="65"/> </comp> <comp loc="(560,300)" name="D-latch"/> <comp lib="6" loc="(163,3118)" name="Text"> <a name="text" val="340"/> </comp> <comp lib="1" loc="(370,900)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(730,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H4''"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_5"/> </comp> <comp lib="6" loc="(395,3354)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(730,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(190,260)" name="Pin"> <a name="width" val="6"/> <a name="tristate" val="false"/> <a name="label" val="Hnn"/> </comp> <comp lib="6" loc="(322,2463)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp loc="(300,1270)" name="D-latch"/> <comp lib="0" loc="(730,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,890)" name="D-latch"/> <comp lib="6" loc="(541,1725)" name="Text"> <a name="text" val="/HB"/> </comp> <comp lib="6" loc="(517,2125)" name="Text"> <a name="text" val="VSYNC"/> </comp> <comp lib="0" loc="(150,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_4"/> </comp> <comp lib="0" loc="(150,2920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_7"/> </comp> <comp lib="1" loc="(370,1580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,2410)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(580,1460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(339,2201)" name="Text"> <a name="text" val="BPORCH"/> </comp> <comp lib="0" loc="(730,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(580,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(300,1480)" name="D-latch"/> <comp lib="0" loc="(420,190)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="1" loc="(510,2230)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,3130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VIN"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(176,1626)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="6" loc="(167,1415)" name="Text"> <a name="text" val="4/5"/> </comp> <comp loc="(300,3180)" name="D-latch"/> <comp lib="4" loc="(510,2540)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(330,2510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,3060)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(599,67)" name="Text"> <a name="text" val="DELAYED H"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp loc="(300,840)" name="D-latch"/> <comp loc="(300,910)" name="D-latch"/> <comp lib="1" loc="(700,3350)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="6"/> </comp> <comp loc="(450,1410)" name="D-latch"/> <comp lib="0" loc="(150,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_10"/> </comp> <comp lib="6" loc="(169,915)" name="Text"> <a name="text" val="63"/> </comp> <comp loc="(450,1480)" name="D-latch"/> <comp lib="0" loc="(150,2020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_21"/> </comp> <comp lib="6" loc="(149,589)" name="Text"> <a name="text" val="HPOS control"/> </comp> <comp lib="6" loc="(166,2755)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="6" loc="(608,3238)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="1" loc="(580,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(730,1740)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,3260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VC"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(190,696)" name="Text"> <a name="text" val="0-7,256-263"/> </comp> <comp lib="6" loc="(181,1135)" name="Text"> <a name="text" val="256-319"/> </comp> <comp loc="(300,1550)" name="D-latch"/> <comp lib="0" loc="(730,2760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VB"/> <a name="labelloc" val="east"/> </comp> <comp loc="(590,2460)" name="D-latch"/> <comp loc="(450,690)" name="D-latch"/> <comp lib="0" loc="(150,1560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_14"/> </comp> <comp lib="6" loc="(171,2175)" name="Text"> <a name="text" val="256"/> </comp> <comp lib="1" loc="(680,2480)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(450,1200)" name="D-latch"/> <comp lib="1" loc="(470,2330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_5"/> </comp> <comp loc="(450,840)" name="D-latch"/> <comp loc="(300,1060)" name="D-latch"/> <comp loc="(560,120)" name="D-latch"/> <comp lib="0" loc="(150,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_6"/> </comp> <comp lib="0" loc="(150,2520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_3"/> </comp> <comp loc="(300,3260)" name="D-latch"/> <comp lib="0" loc="(730,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,1570)" name="D-latch"/> <comp lib="6" loc="(174,775)" name="Text"> <a name="text" val="0-255"/> </comp> <comp lib="0" loc="(730,2480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(690,2020)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_20"/> </comp> <comp lib="6" loc="(640,1774)" name="Text"> <a name="text" val="BLACK"/> </comp> <comp loc="(710,300)" name="D-latch"/> <comp loc="(450,2040)" name="D-latch"/> <comp lib="0" loc="(730,3190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="HC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(730,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="H0''"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,2260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_18"/> </comp> <comp loc="(300,770)" name="D-latch"/> <comp loc="(300,1410)" name="D-latch"/> <comp lib="4" loc="(300,2900)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(560,2360)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(580,3310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0'"/> </comp> <comp loc="(450,1130)" name="D-latch"/> <comp lib="6" loc="(181,1556)" name="Text"> <a name="text" val="320-355"/> </comp> <comp loc="(450,1870)" name="D-latch"/> <comp lib="6" loc="(168,1345)" name="Text"> <a name="text" val="2/3"/> </comp> <comp lib="1" loc="(580,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(620,3310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(170,2514)" name="Text"> <a name="text" val="240"/> </comp> <comp lib="6" loc="(163,3326)" name="Text"> <a name="text" val="265"/> </comp> <comp lib="1" loc="(550,1870)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(470,2370)" name="Constant"/> <comp lib="6" loc="(170,1066)" name="Text"> <a name="text" val="0-63"/> </comp> <comp loc="(450,2130)" name="D-latch"/> <comp lib="0" loc="(730,1870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(150,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_2"/> </comp> <comp lib="0" loc="(150,2100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="HPLA_22"/> </comp> <comp loc="(300,690)" name="D-latch"/> <comp lib="6" loc="(166,1484)" name="Text"> <a name="text" val="6/7"/> </comp> <comp lib="6" loc="(312,2176)" name="Text"> <a name="text" val="Back porch flip/flop"/> </comp> <comp lib="0" loc="(730,750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> <a name="labelloc" val="east"/> </comp> <comp loc="(450,3050)" name="D-latch"/> <comp lib="0" loc="(190,80)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp loc="(560,360)" name="D-latch"/> <comp lib="6" loc="(170,1776)" name="Text"> <a name="text" val="302"/> </comp> <comp lib="6" loc="(167,2255)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(170,844)" name="Text"> <a name="text" val="339"/> </comp> <comp lib="0" loc="(150,2840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VPLA_6"/> </comp> </circuit> <circuit name="REGISTER_SELECT"> <a name="circuit" val="REGISTER_SELECT"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff5e9c" height="241" stroke="#000000" stroke-width="2" width="240" x="50" y="49"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="43">REGISTER SELECT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="105">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="125">RS0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="144">RS1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="165">RS2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="204">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="265">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="273" y="63">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="85">/W7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="104">/W4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="273" y="124">/R4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="144">/W3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="272" y="164">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="184">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="204">/W6.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="267" y="225">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="266" y="244">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="264">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="271" y="284">/W1</text> <circ-port height="8" pin="70,90" width="8" x="46" y="196"/> <circ-port height="8" pin="70,320" width="8" x="46" y="256"/> <circ-port height="8" pin="70,370" width="8" x="46" y="116"/> <circ-port height="8" pin="70,420" width="8" x="46" y="136"/> <circ-port height="8" pin="70,470" width="8" x="46" y="156"/> <circ-port height="8" pin="70,520" width="8" x="46" y="96"/> <circ-port height="10" pin="560,720" width="10" x="285" y="175"/> <circ-port height="10" pin="560,770" width="10" x="285" y="195"/> <circ-port height="10" pin="560,620" width="10" x="285" y="215"/> <circ-port height="10" pin="560,670" width="10" x="285" y="235"/> <circ-port height="10" pin="560,940" width="10" x="285" y="55"/> <circ-port height="10" pin="560,810" width="10" x="285" y="75"/> <circ-port height="10" pin="560,580" width="10" x="285" y="95"/> <circ-port height="10" pin="560,540" width="10" x="285" y="135"/> <circ-port height="10" pin="560,850" width="10" x="285" y="155"/> <circ-port height="10" pin="560,500" width="10" x="285" y="275"/> <circ-port height="10" pin="560,460" width="10" x="285" y="255"/> <circ-port height="10" pin="560,890" width="10" x="285" y="115"/> <circ-anchor facing="east" height="6" width="6" x="287" y="47"/> </appear> <wire from="(500,770)" to="(560,770)"/> <wire from="(410,730)" to="(460,730)"/> <wire from="(310,590)" to="(310,610)"/> <wire from="(330,850)" to="(330,870)"/> <wire from="(230,460)" to="(230,540)"/> <wire from="(270,460)" to="(270,540)"/> <wire from="(120,440)" to="(120,460)"/> <wire from="(70,320)" to="(300,320)"/> <wire from="(90,210)" to="(90,240)"/> <wire from="(510,160)" to="(550,160)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(260,210)" to="(280,210)"/> <wire from="(90,370)" to="(90,410)"/> <wire from="(290,600)" to="(290,710)"/> <wire from="(510,260)" to="(530,260)"/> <wire from="(440,710)" to="(460,710)"/> <wire from="(510,140)" to="(530,140)"/> <wire from="(350,350)" to="(350,390)"/> <wire from="(150,190)" to="(160,190)"/> <wire from="(250,870)" to="(330,870)"/> <wire from="(70,90)" to="(530,90)"/> <wire from="(90,410)" to="(100,410)"/> <wire from="(530,90)" to="(530,140)"/> <wire from="(390,780)" to="(460,780)"/> <wire from="(350,350)" to="(550,350)"/> <wire from="(410,190)" to="(410,630)"/> <wire from="(250,570)" to="(310,570)"/> <wire from="(500,620)" to="(560,620)"/> <wire from="(270,610)" to="(270,810)"/> <wire from="(120,280)" to="(230,280)"/> <wire from="(280,240)" to="(390,240)"/> <wire from="(340,710)" to="(440,710)"/> <wire from="(280,210)" to="(280,240)"/> <wire from="(250,550)" to="(290,550)"/> <wire from="(180,150)" to="(470,150)"/> <wire from="(340,430)" to="(340,710)"/> <wire from="(70,420)" to="(100,420)"/> <wire from="(90,150)" to="(180,150)"/> <wire from="(250,610)" to="(270,610)"/> <wire from="(180,150)" to="(180,190)"/> <wire from="(250,890)" to="(460,890)"/> <wire from="(440,760)" to="(460,760)"/> <wire from="(70,470)" to="(90,470)"/> <wire from="(90,210)" to="(110,210)"/> <wire from="(260,190)" to="(410,190)"/> <wire from="(360,430)" to="(360,610)"/> <wire from="(140,810)" to="(220,810)"/> <wire from="(250,920)" to="(330,920)"/> <wire from="(180,190)" to="(190,190)"/> <wire from="(440,610)" to="(440,660)"/> <wire from="(290,500)" to="(290,550)"/> <wire from="(490,810)" to="(560,810)"/> <wire from="(490,890)" to="(560,890)"/> <wire from="(500,670)" to="(560,670)"/> <wire from="(160,210)" to="(220,210)"/> <wire from="(270,810)" to="(460,810)"/> <wire from="(410,630)" to="(460,630)"/> <wire from="(290,710)" to="(340,710)"/> <wire from="(310,610)" to="(360,610)"/> <wire from="(220,520)" to="(220,540)"/> <wire from="(250,600)" to="(290,600)"/> <wire from="(140,520)" to="(140,810)"/> <wire from="(390,680)" to="(390,780)"/> <wire from="(250,540)" to="(270,540)"/> <wire from="(280,290)" to="(300,290)"/> <wire from="(90,430)" to="(90,470)"/> <wire from="(90,150)" to="(90,190)"/> <wire from="(440,610)" to="(460,610)"/> <wire from="(250,580)" to="(460,580)"/> <wire from="(530,850)" to="(560,850)"/> <wire from="(510,280)" to="(530,280)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(530,140)" to="(530,260)"/> <wire from="(210,190)" to="(220,190)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(70,520)" to="(140,520)"/> <wire from="(330,850)" to="(460,850)"/> <wire from="(390,680)" to="(460,680)"/> <wire from="(120,220)" to="(120,280)"/> <wire from="(490,940)" to="(560,940)"/> <wire from="(490,540)" to="(560,540)"/> <wire from="(490,460)" to="(560,460)"/> <wire from="(490,500)" to="(560,500)"/> <wire from="(490,580)" to="(560,580)"/> <wire from="(250,590)" to="(310,590)"/> <wire from="(90,240)" to="(280,240)"/> <wire from="(500,720)" to="(560,720)"/> <wire from="(280,270)" to="(470,270)"/> <wire from="(270,460)" to="(460,460)"/> <wire from="(120,460)" to="(230,460)"/> <wire from="(330,920)" to="(330,940)"/> <wire from="(290,500)" to="(460,500)"/> <wire from="(160,190)" to="(160,210)"/> <wire from="(310,540)" to="(310,570)"/> <wire from="(300,290)" to="(300,320)"/> <wire from="(490,850)" to="(530,850)"/> <wire from="(190,520)" to="(220,520)"/> <wire from="(410,630)" to="(410,730)"/> <wire from="(440,660)" to="(460,660)"/> <wire from="(220,810)" to="(220,850)"/> <wire from="(90,190)" to="(110,190)"/> <wire from="(70,370)" to="(90,370)"/> <wire from="(310,540)" to="(460,540)"/> <wire from="(530,280)" to="(530,850)"/> <wire from="(230,540)" to="(230,850)"/> <wire from="(440,710)" to="(440,760)"/> <wire from="(360,610)" to="(440,610)"/> <wire from="(550,160)" to="(550,350)"/> <wire from="(330,940)" to="(460,940)"/> <wire from="(390,240)" to="(390,680)"/> <wire from="(230,220)" to="(230,280)"/> <comp lib="1" loc="(490,890)" name="NOT Gate"/> <comp lib="6" loc="(493,131)" name="Text"> <a name="text" val="W5/6"/> </comp> <comp lib="0" loc="(560,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(230,850)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="6" loc="(196,897)" name="Text"> <a name="text" val="R"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(490,850)" name="NOT Gate"/> <comp lib="1" loc="(470,150)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W5.2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(491,251)" name="Text"> <a name="text" val="R2"/> </comp> <comp lib="1" loc="(500,670)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(560,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(560,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W5.1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,770)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,770)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W6.2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(150,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(190,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(230,540)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp lib="1" loc="(490,580)" name="NOT Gate"/> <comp lib="1" loc="(490,540)" name="NOT Gate"/> <comp lib="6" loc="(196,588)" name="Text"> <a name="text" val="W"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(70,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(490,940)" name="NOT Gate"/> <comp lib="6" loc="(186,134)" name="Text"> <a name="text" val="$2005/$2006 first/second write latch"/> </comp> <comp lib="4" loc="(260,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(70,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(70,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS0"/> </comp> <comp lib="6" loc="(399,182)" name="Text"> <a name="text" val="1ST"/> </comp> <comp lib="0" loc="(70,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="1" loc="(470,270)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/R7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,280)" name="OR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W6.1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,500)" name="NOT Gate"/> <comp lib="0" loc="(560,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(560,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(490,810)" name="NOT Gate"/> <comp lib="1" loc="(500,620)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,390)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(560,810)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/W7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(500,720)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(379,233)" name="Text"> <a name="text" val="2ND"/> </comp> <comp lib="0" loc="(70,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS1"/> </comp> <comp lib="1" loc="(490,460)" name="NOT Gate"/> <comp lib="0" loc="(70,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RS2"/> </comp> </circuit> <circuit name="VIDEO_OUT_PAL"> <a name="circuit" val="VIDEO_OUT_PAL"/> <a name="clabel" val="VIDEO OUT"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#96ffac" height="250" stroke="#000000" stroke-width="2" width="290" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="154">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="180" y="290">CC0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="135">V0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">/CLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="174">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="316" y="164">VOUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="298" y="291">LL1#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="195">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="265">SYNC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="104" y="290">CC3#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="291">LL0#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="244">BURST</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="95">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="224">/PICTURE</text> <circ-port height="8" pin="90,80" width="8" x="46" y="66"/> <circ-port height="8" pin="90,150" width="8" x="46" y="106"/> <circ-port height="8" pin="90,250" width="8" x="46" y="146"/> <circ-port height="8" pin="90,290" width="8" x="46" y="166"/> <circ-port height="8" pin="90,330" width="8" x="46" y="186"/> <circ-port height="8" pin="90,480" width="8" x="46" y="126"/> <circ-port height="8" pin="90,430" width="8" x="46" y="86"/> <circ-port height="8" pin="90,580" width="8" x="166" y="296"/> <circ-port height="8" pin="90,630" width="8" x="146" y="296"/> <circ-port height="8" pin="90,680" width="8" x="126" y="296"/> <circ-port height="8" pin="90,730" width="8" x="106" y="296"/> <circ-port height="8" pin="90,840" width="8" x="46" y="216"/> <circ-port height="8" pin="90,1080" width="8" x="46" y="256"/> <circ-port height="8" pin="90,1220" width="8" x="46" y="236"/> <circ-port height="8" pin="90,1290" width="8" x="266" y="296"/> <circ-port height="8" pin="90,1360" width="8" x="286" y="296"/> <circ-port height="10" pin="150,1540" width="10" x="335" y="155"/> <circ-anchor facing="east" height="6" width="6" x="337" y="47"/> </appear> <wire from="(530,1330)" to="(530,1340)"/> <wire from="(960,480)" to="(960,490)"/> <wire from="(280,1280)" to="(470,1280)"/> <wire from="(190,580)" to="(250,580)"/> <wire from="(1140,80)" to="(1140,230)"/> <wire from="(1510,1220)" to="(1510,1300)"/> <wire from="(1300,150)" to="(1530,150)"/> <wire from="(110,1150)" to="(160,1150)"/> <wire from="(200,1080)" to="(250,1080)"/> <wire from="(390,870)" to="(390,890)"/> <wire from="(190,220)" to="(190,300)"/> <wire from="(1130,1170)" to="(1320,1170)"/> <wire from="(870,640)" to="(910,640)"/> <wire from="(870,480)" to="(910,480)"/> <wire from="(570,1340)" to="(1130,1340)"/> <wire from="(940,1260)" to="(940,1280)"/> <wire from="(760,150)" to="(760,230)"/> <wire from="(160,1280)" to="(160,1310)"/> <wire from="(1360,240)" to="(1360,250)"/> <wire from="(460,410)" to="(460,1010)"/> <wire from="(160,1280)" to="(260,1280)"/> <wire from="(820,290)" to="(840,290)"/> <wire from="(1680,110)" to="(1680,230)"/> <wire from="(90,480)" to="(250,480)"/> <wire from="(980,290)" to="(1000,290)"/> <wire from="(680,350)" to="(890,350)"/> <wire from="(1070,230)" to="(1080,230)"/> <wire from="(2040,240)" to="(2050,240)"/> <wire from="(580,200)" to="(610,200)"/> <wire from="(570,1320)" to="(920,1320)"/> <wire from="(880,570)" to="(970,570)"/> <wire from="(90,840)" to="(110,840)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(1900,250)" to="(1920,250)"/> <wire from="(290,580)" to="(620,580)"/> <wire from="(1580,1210)" to="(1600,1210)"/> <wire from="(220,340)" to="(230,340)"/> <wire from="(960,760)" to="(970,760)"/> <wire from="(1420,250)" to="(1440,250)"/> <wire from="(1210,250)" to="(1210,290)"/> <wire from="(400,720)" to="(400,780)"/> <wire from="(460,1260)" to="(460,1320)"/> <wire from="(1060,230)" to="(1060,250)"/> <wire from="(960,770)" to="(960,780)"/> <wire from="(540,110)" to="(590,110)"/> <wire from="(880,850)" to="(880,860)"/> <wire from="(1450,110)" to="(1680,110)"/> <wire from="(900,870)" to="(900,900)"/> <wire from="(870,840)" to="(970,840)"/> <wire from="(1320,1170)" to="(1510,1170)"/> <wire from="(890,860)" to="(890,880)"/> <wire from="(290,1150)" to="(330,1150)"/> <wire from="(1010,1540)" to="(1060,1540)"/> <wire from="(220,610)" to="(250,610)"/> <wire from="(960,240)" to="(980,240)"/> <wire from="(910,880)" to="(910,920)"/> <wire from="(670,1220)" to="(700,1220)"/> <wire from="(1040,560)" to="(1040,680)"/> <wire from="(2060,230)" to="(2070,230)"/> <wire from="(1440,290)" to="(1440,350)"/> <wire from="(1470,1540)" to="(1600,1540)"/> <wire from="(870,620)" to="(900,620)"/> <wire from="(870,780)" to="(900,780)"/> <wire from="(930,900)" to="(930,960)"/> <wire from="(1130,1200)" to="(1160,1200)"/> <wire from="(940,1260)" to="(1010,1260)"/> <wire from="(290,1080)" to="(370,1080)"/> <wire from="(480,390)" to="(1700,390)"/> <wire from="(290,680)" to="(420,680)"/> <wire from="(920,890)" to="(920,940)"/> <wire from="(1130,250)" to="(1150,250)"/> <wire from="(760,1210)" to="(760,1260)"/> <wire from="(1290,250)" to="(1310,250)"/> <wire from="(1270,230)" to="(1290,230)"/> <wire from="(370,820)" to="(370,890)"/> <wire from="(130,1090)" to="(130,1220)"/> <wire from="(1300,150)" to="(1300,230)"/> <wire from="(220,990)" to="(220,1060)"/> <wire from="(90,580)" to="(150,580)"/> <wire from="(1600,1540)" to="(1700,1540)"/> <wire from="(110,1080)" to="(170,1080)"/> <wire from="(190,840)" to="(250,840)"/> <wire from="(190,680)" to="(250,680)"/> <wire from="(880,820)" to="(880,830)"/> <wire from="(990,640)" to="(990,710)"/> <wire from="(910,600)" to="(970,600)"/> <wire from="(1700,390)" to="(1700,1500)"/> <wire from="(1210,1540)" to="(1270,1540)"/> <wire from="(420,840)" to="(420,870)"/> <wire from="(1450,230)" to="(1460,230)"/> <wire from="(580,200)" to="(580,240)"/> <wire from="(920,1170)" to="(1130,1170)"/> <wire from="(220,1060)" to="(250,1060)"/> <wire from="(870,600)" to="(890,600)"/> <wire from="(130,930)" to="(130,1090)"/> <wire from="(90,150)" to="(760,150)"/> <wire from="(480,290)" to="(480,390)"/> <wire from="(520,1360)" to="(550,1360)"/> <wire from="(880,830)" to="(970,830)"/> <wire from="(210,260)" to="(230,260)"/> <wire from="(400,780)" to="(410,780)"/> <wire from="(1590,250)" to="(1590,290)"/> <wire from="(900,870)" to="(970,870)"/> <wire from="(1320,1200)" to="(1350,1200)"/> <wire from="(190,220)" to="(330,220)"/> <wire from="(1360,290)" to="(1380,290)"/> <wire from="(1070,150)" to="(1300,150)"/> <wire from="(670,1170)" to="(920,1170)"/> <wire from="(1200,1430)" to="(1200,1460)"/> <wire from="(330,1520)" to="(330,1540)"/> <wire from="(380,930)" to="(380,960)"/> <wire from="(890,800)" to="(890,820)"/> <wire from="(810,1520)" to="(810,1540)"/> <wire from="(130,1090)" to="(170,1090)"/> <wire from="(1130,240)" to="(1130,250)"/> <wire from="(1220,1210)" to="(1270,1210)"/> <wire from="(120,610)" to="(150,610)"/> <wire from="(220,710)" to="(250,710)"/> <wire from="(820,250)" to="(820,290)"/> <wire from="(980,250)" to="(980,290)"/> <wire from="(380,720)" to="(400,720)"/> <wire from="(210,280)" to="(210,320)"/> <wire from="(1810,240)" to="(1820,240)"/> <wire from="(1450,110)" to="(1450,230)"/> <wire from="(430,780)" to="(440,780)"/> <wire from="(220,610)" to="(220,660)"/> <wire from="(1130,1300)" to="(1160,1300)"/> <wire from="(90,250)" to="(230,250)"/> <wire from="(1670,250)" to="(1690,250)"/> <wire from="(1510,1200)" to="(1540,1200)"/> <wire from="(870,580)" to="(880,580)"/> <wire from="(680,230)" to="(690,230)"/> <wire from="(890,820)" to="(970,820)"/> <wire from="(420,680)" to="(420,800)"/> <wire from="(1190,250)" to="(1210,250)"/> <wire from="(890,350)" to="(1390,350)"/> <wire from="(1830,80)" to="(2060,80)"/> <wire from="(370,1430)" to="(1200,1430)"/> <wire from="(90,680)" to="(150,680)"/> <wire from="(1220,110)" to="(1450,110)"/> <wire from="(2060,80)" to="(2060,230)"/> <wire from="(1210,290)" to="(1210,320)"/> <wire from="(1130,1170)" to="(1130,1200)"/> <wire from="(900,780)" to="(900,810)"/> <wire from="(640,680)" to="(640,710)"/> <wire from="(510,1350)" to="(510,1380)"/> <wire from="(930,900)" to="(970,900)"/> <wire from="(150,960)" to="(380,960)"/> <wire from="(670,1220)" to="(670,1300)"/> <wire from="(1410,1210)" to="(1460,1210)"/> <wire from="(130,1290)" to="(130,1320)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(1040,230)" to="(1060,230)"/> <wire from="(290,910)" to="(320,910)"/> <wire from="(740,1210)" to="(760,1210)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(1990,230)" to="(2000,230)"/> <wire from="(320,630)" to="(340,630)"/> <wire from="(920,1220)" to="(950,1220)"/> <wire from="(1830,230)" to="(1840,230)"/> <wire from="(1900,290)" to="(1920,290)"/> <wire from="(680,110)" to="(680,230)"/> <wire from="(1040,700)" to="(1070,700)"/> <wire from="(900,810)" to="(970,810)"/> <wire from="(1320,1300)" to="(1350,1300)"/> <wire from="(960,480)" to="(970,480)"/> <wire from="(1060,250)" to="(1080,250)"/> <wire from="(1010,1210)" to="(1010,1260)"/> <wire from="(990,710)" to="(990,760)"/> <wire from="(90,80)" to="(540,80)"/> <wire from="(1070,150)" to="(1070,230)"/> <wire from="(760,150)" to="(1070,150)"/> <wire from="(380,620)" to="(440,620)"/> <wire from="(960,490)" to="(960,500)"/> <wire from="(220,1060)" to="(220,1130)"/> <wire from="(880,570)" to="(880,580)"/> <wire from="(1980,230)" to="(1980,250)"/> <wire from="(1320,1170)" to="(1320,1200)"/> <wire from="(560,180)" to="(600,180)"/> <wire from="(870,560)" to="(970,560)"/> <wire from="(900,590)" to="(900,620)"/> <wire from="(1600,1210)" to="(1650,1210)"/> <wire from="(610,620)" to="(610,650)"/> <wire from="(210,190)" to="(440,190)"/> <wire from="(890,580)" to="(890,600)"/> <wire from="(290,300)" to="(290,330)"/> <wire from="(120,710)" to="(150,710)"/> <wire from="(220,1130)" to="(250,1130)"/> <wire from="(1220,230)" to="(1230,230)"/> <wire from="(560,200)" to="(580,200)"/> <wire from="(1150,1280)" to="(1160,1280)"/> <wire from="(910,600)" to="(910,640)"/> <wire from="(910,760)" to="(910,800)"/> <wire from="(220,380)" to="(430,380)"/> <wire from="(150,1070)" to="(170,1070)"/> <wire from="(470,1280)" to="(470,1320)"/> <wire from="(870,500)" to="(900,500)"/> <wire from="(120,610)" to="(120,660)"/> <wire from="(150,960)" to="(150,1010)"/> <wire from="(930,620)" to="(930,680)"/> <wire from="(2050,250)" to="(2070,250)"/> <wire from="(1510,1300)" to="(1540,1300)"/> <wire from="(960,770)" to="(970,770)"/> <wire from="(950,760)" to="(960,760)"/> <wire from="(1130,1300)" to="(1130,1340)"/> <wire from="(1220,1290)" to="(1220,1460)"/> <wire from="(1360,250)" to="(1360,290)"/> <wire from="(920,610)" to="(920,660)"/> <wire from="(1130,290)" to="(1150,290)"/> <wire from="(110,1080)" to="(110,1150)"/> <wire from="(1060,1520)" to="(1060,1540)"/> <wire from="(880,540)" to="(880,550)"/> <wire from="(1510,1170)" to="(1510,1200)"/> <wire from="(910,800)" to="(970,800)"/> <wire from="(1700,1520)" to="(1700,1540)"/> <wire from="(510,1380)" to="(550,1380)"/> <wire from="(220,710)" to="(220,790)"/> <wire from="(540,80)" to="(830,80)"/> <wire from="(570,1360)" to="(1320,1360)"/> <wire from="(550,270)" to="(550,420)"/> <wire from="(220,460)" to="(250,460)"/> <wire from="(460,1010)" to="(460,1240)"/> <wire from="(870,800)" to="(890,800)"/> <wire from="(1340,1280)" to="(1350,1280)"/> <wire from="(1320,1300)" to="(1320,1360)"/> <wire from="(320,730)" to="(340,730)"/> <wire from="(1220,110)" to="(1220,230)"/> <wire from="(880,550)" to="(970,550)"/> <wire from="(1460,1210)" to="(1460,1460)"/> <wire from="(1580,240)" to="(1590,240)"/> <wire from="(210,190)" to="(210,240)"/> <wire from="(1270,1210)" to="(1270,1500)"/> <wire from="(240,820)" to="(250,820)"/> <wire from="(550,210)" to="(550,270)"/> <wire from="(900,590)" to="(970,590)"/> <wire from="(180,1150)" to="(250,1150)"/> <wire from="(1440,250)" to="(1460,250)"/> <wire from="(920,740)" to="(920,790)"/> <wire from="(1200,1290)" to="(1220,1290)"/> <wire from="(920,790)" to="(970,790)"/> <wire from="(1600,80)" to="(1830,80)"/> <wire from="(1410,1520)" to="(1410,1540)"/> <wire from="(870,740)" to="(920,740)"/> <wire from="(1650,1210)" to="(1650,1430)"/> <wire from="(1150,1260)" to="(1150,1280)"/> <wire from="(1410,1290)" to="(1410,1500)"/> <wire from="(1480,1430)" to="(1480,1460)"/> <wire from="(1830,80)" to="(1830,230)"/> <wire from="(490,1330)" to="(530,1330)"/> <wire from="(2050,240)" to="(2050,250)"/> <wire from="(990,110)" to="(1220,110)"/> <wire from="(890,520)" to="(890,540)"/> <wire from="(920,1220)" to="(920,1300)"/> <wire from="(220,910)" to="(250,910)"/> <wire from="(1530,1280)" to="(1540,1280)"/> <wire from="(990,1210)" to="(1010,1210)"/> <wire from="(490,1350)" to="(510,1350)"/> <wire from="(270,330)" to="(290,330)"/> <wire from="(670,1200)" to="(700,1200)"/> <wire from="(490,1340)" to="(520,1340)"/> <wire from="(1760,230)" to="(1770,230)"/> <wire from="(1600,230)" to="(1610,230)"/> <wire from="(610,110)" to="(680,110)"/> <wire from="(1900,250)" to="(1900,290)"/> <wire from="(130,1320)" to="(140,1320)"/> <wire from="(90,290)" to="(230,290)"/> <wire from="(1670,290)" to="(1690,290)"/> <wire from="(1390,1290)" to="(1410,1290)"/> <wire from="(810,240)" to="(820,240)"/> <wire from="(890,540)" to="(970,540)"/> <wire from="(890,860)" to="(970,860)"/> <wire from="(120,710)" to="(120,770)"/> <wire from="(1340,1260)" to="(1340,1280)"/> <wire from="(220,1130)" to="(220,1200)"/> <wire from="(1510,1300)" to="(1510,1380)"/> <wire from="(290,610)" to="(340,610)"/> <wire from="(1600,1290)" to="(1600,1500)"/> <wire from="(1600,1520)" to="(1600,1540)"/> <wire from="(1750,230)" to="(1750,250)"/> <wire from="(120,420)" to="(120,560)"/> <wire from="(900,500)" to="(900,530)"/> <wire from="(930,620)" to="(970,620)"/> <wire from="(370,1080)" to="(370,1430)"/> <wire from="(90,1220)" to="(130,1220)"/> <wire from="(210,320)" to="(210,410)"/> <wire from="(130,1330)" to="(130,1360)"/> <wire from="(1040,700)" to="(1040,840)"/> <wire from="(220,560)" to="(250,560)"/> <wire from="(220,1200)" to="(250,1200)"/> <wire from="(1150,1260)" to="(1220,1260)"/> <wire from="(90,1080)" to="(110,1080)"/> <wire from="(210,240)" to="(230,240)"/> <wire from="(170,410)" to="(170,460)"/> <wire from="(1960,230)" to="(1980,230)"/> <wire from="(1980,250)" to="(2000,250)"/> <wire from="(1580,1290)" to="(1600,1290)"/> <wire from="(1820,250)" to="(1840,250)"/> <wire from="(900,530)" to="(970,530)"/> <wire from="(990,230)" to="(1000,230)"/> <wire from="(1130,250)" to="(1130,290)"/> <wire from="(830,230)" to="(840,230)"/> <wire from="(1060,1540)" to="(1210,1540)"/> <wire from="(460,250)" to="(530,250)"/> <wire from="(610,650)" to="(620,650)"/> <wire from="(680,110)" to="(990,110)"/> <wire from="(920,890)" to="(970,890)"/> <wire from="(290,1220)" to="(670,1220)"/> <wire from="(1480,1430)" to="(1650,1430)"/> <wire from="(760,1210)" to="(810,1210)"/> <wire from="(1470,1520)" to="(1470,1540)"/> <wire from="(1530,1260)" to="(1530,1280)"/> <wire from="(190,630)" to="(250,630)"/> <wire from="(170,460)" to="(220,460)"/> <wire from="(120,410)" to="(170,410)"/> <wire from="(1990,150)" to="(1990,230)"/> <wire from="(410,780)" to="(410,800)"/> <wire from="(210,260)" to="(210,280)"/> <wire from="(330,220)" to="(330,250)"/> <wire from="(610,660)" to="(610,680)"/> <wire from="(1350,240)" to="(1360,240)"/> <wire from="(560,240)" to="(580,240)"/> <wire from="(910,480)" to="(910,520)"/> <wire from="(220,460)" to="(220,560)"/> <wire from="(670,1300)" to="(700,1300)"/> <wire from="(1080,420)" to="(1080,670)"/> <wire from="(1010,840)" to="(1040,840)"/> <wire from="(1340,1260)" to="(1410,1260)"/> <wire from="(2050,290)" to="(2070,290)"/> <wire from="(240,770)" to="(240,820)"/> <wire from="(990,110)" to="(990,230)"/> <wire from="(1100,690)" to="(1510,690)"/> <wire from="(960,490)" to="(970,490)"/> <wire from="(950,480)" to="(960,480)"/> <wire from="(620,670)" to="(620,720)"/> <wire from="(1210,250)" to="(1230,250)"/> <wire from="(890,300)" to="(890,350)"/> <wire from="(1760,150)" to="(1990,150)"/> <wire from="(870,960)" to="(930,960)"/> <wire from="(910,520)" to="(970,520)"/> <wire from="(130,930)" to="(250,930)"/> <wire from="(290,710)" to="(340,710)"/> <wire from="(1600,80)" to="(1600,230)"/> <wire from="(1370,80)" to="(1600,80)"/> <wire from="(1820,240)" to="(1820,250)"/> <wire from="(290,1010)" to="(460,1010)"/> <wire from="(220,910)" to="(220,990)"/> <wire from="(670,1170)" to="(670,1200)"/> <wire from="(540,80)" to="(540,110)"/> <wire from="(910,320)" to="(1210,320)"/> <wire from="(190,300)" to="(230,300)"/> <wire from="(520,1340)" to="(520,1360)"/> <wire from="(1470,1490)" to="(1470,1500)"/> <wire from="(120,560)" to="(150,560)"/> <wire from="(1270,1540)" to="(1410,1540)"/> <wire from="(220,660)" to="(250,660)"/> <wire from="(1530,230)" to="(1540,230)"/> <wire from="(870,520)" to="(890,520)"/> <wire from="(1370,230)" to="(1380,230)"/> <wire from="(400,720)" to="(620,720)"/> <wire from="(920,1200)" to="(950,1200)"/> <wire from="(1530,1260)" to="(1600,1260)"/> <wire from="(680,250)" to="(680,350)"/> <wire from="(1880,250)" to="(1900,250)"/> <wire from="(220,560)" to="(220,610)"/> <wire from="(1670,250)" to="(1670,290)"/> <wire from="(340,290)" to="(480,290)"/> <wire from="(1040,680)" to="(1070,680)"/> <wire from="(960,780)" to="(970,780)"/> <wire from="(1440,290)" to="(1460,290)"/> <wire from="(920,460)" to="(920,510)"/> <wire from="(460,190)" to="(530,190)"/> <wire from="(600,260)" to="(610,260)"/> <wire from="(920,510)" to="(970,510)"/> <wire from="(1520,230)" to="(1520,250)"/> <wire from="(870,460)" to="(920,460)"/> <wire from="(870,940)" to="(920,940)"/> <wire from="(90,630)" to="(150,630)"/> <wire from="(900,250)" to="(900,260)"/> <wire from="(190,730)" to="(250,730)"/> <wire from="(1210,1520)" to="(1210,1540)"/> <wire from="(130,1220)" to="(250,1220)"/> <wire from="(830,80)" to="(830,230)"/> <wire from="(90,1290)" to="(130,1290)"/> <wire from="(1220,1210)" to="(1220,1260)"/> <wire from="(1130,1220)" to="(1160,1220)"/> <wire from="(1590,250)" to="(1610,250)"/> <wire from="(90,330)" to="(230,330)"/> <wire from="(1730,230)" to="(1750,230)"/> <wire from="(1750,250)" to="(1770,250)"/> <wire from="(960,910)" to="(970,910)"/> <wire from="(870,820)" to="(880,820)"/> <wire from="(690,1280)" to="(700,1280)"/> <wire from="(890,580)" to="(970,580)"/> <wire from="(760,230)" to="(770,230)"/> <wire from="(1010,1210)" to="(1060,1210)"/> <wire from="(2110,250)" to="(2140,250)"/> <wire from="(960,760)" to="(960,770)"/> <wire from="(1760,150)" to="(1760,230)"/> <wire from="(490,1320)" to="(550,1320)"/> <wire from="(440,620)" to="(610,620)"/> <wire from="(870,760)" to="(910,760)"/> <wire from="(870,920)" to="(910,920)"/> <wire from="(760,1520)" to="(760,1540)"/> <wire from="(1210,1490)" to="(1210,1500)"/> <wire from="(290,250)" to="(290,280)"/> <wire from="(570,1380)" to="(1510,1380)"/> <wire from="(760,1290)" to="(760,1500)"/> <wire from="(750,230)" to="(750,250)"/> <wire from="(120,820)" to="(150,820)"/> <wire from="(120,660)" to="(150,660)"/> <wire from="(820,250)" to="(840,250)"/> <wire from="(320,630)" to="(320,730)"/> <wire from="(980,250)" to="(1000,250)"/> <wire from="(440,620)" to="(440,780)"/> <wire from="(1120,240)" to="(1130,240)"/> <wire from="(1410,1210)" to="(1410,1260)"/> <wire from="(740,1290)" to="(760,1290)"/> <wire from="(640,710)" to="(990,710)"/> <wire from="(220,340)" to="(220,380)"/> <wire from="(1910,230)" to="(1920,230)"/> <wire from="(880,850)" to="(970,850)"/> <wire from="(920,1300)" to="(950,1300)"/> <wire from="(130,840)" to="(150,840)"/> <wire from="(810,1210)" to="(810,1500)"/> <wire from="(210,280)" to="(230,280)"/> <wire from="(120,560)" to="(120,610)"/> <wire from="(220,660)" to="(220,710)"/> <wire from="(130,1330)" to="(140,1330)"/> <wire from="(620,580)" to="(620,640)"/> <wire from="(1320,1220)" to="(1350,1220)"/> <wire from="(2050,250)" to="(2050,290)"/> <wire from="(1820,290)" to="(1840,290)"/> <wire from="(1410,350)" to="(1440,350)"/> <wire from="(290,480)" to="(550,480)"/> <wire from="(920,610)" to="(970,610)"/> <wire from="(1370,80)" to="(1370,230)"/> <wire from="(210,410)" to="(460,410)"/> <wire from="(90,730)" to="(150,730)"/> <wire from="(1270,1520)" to="(1270,1540)"/> <wire from="(1140,80)" to="(1370,80)"/> <wire from="(1530,150)" to="(1760,150)"/> <wire from="(560,260)" to="(600,260)"/> <wire from="(920,1170)" to="(920,1200)"/> <wire from="(1590,240)" to="(1590,250)"/> <wire from="(330,250)" to="(440,250)"/> <wire from="(330,1540)" to="(760,1540)"/> <wire from="(270,290)" to="(310,290)"/> <wire from="(690,1260)" to="(690,1280)"/> <wire from="(1910,110)" to="(1910,230)"/> <wire from="(1300,230)" to="(1310,230)"/> <wire from="(1140,230)" to="(1150,230)"/> <wire from="(1600,1210)" to="(1600,1260)"/> <wire from="(1010,560)" to="(1040,560)"/> <wire from="(870,900)" to="(900,900)"/> <wire from="(1650,250)" to="(1670,250)"/> <wire from="(1510,1220)" to="(1540,1220)"/> <wire from="(810,1540)" to="(1010,1540)"/> <wire from="(1510,690)" to="(1510,1170)"/> <wire from="(680,250)" to="(690,250)"/> <wire from="(1440,250)" to="(1440,290)"/> <wire from="(1210,290)" to="(1230,290)"/> <wire from="(610,660)" to="(620,660)"/> <wire from="(1130,1220)" to="(1130,1300)"/> <wire from="(760,1540)" to="(810,1540)"/> <wire from="(1680,110)" to="(1910,110)"/> <wire from="(980,240)" to="(980,250)"/> <wire from="(420,680)" to="(610,680)"/> <wire from="(820,240)" to="(820,250)"/> <wire from="(1290,230)" to="(1290,250)"/> <wire from="(870,680)" to="(930,680)"/> <wire from="(910,880)" to="(970,880)"/> <wire from="(150,1540)" to="(330,1540)"/> <wire from="(1410,1540)" to="(1470,1540)"/> <wire from="(880,230)" to="(920,230)"/> <wire from="(90,1360)" to="(130,1360)"/> <wire from="(920,1300)" to="(920,1320)"/> <wire from="(150,1010)" to="(250,1010)"/> <wire from="(870,880)" to="(890,880)"/> <wire from="(390,870)" to="(420,870)"/> <wire from="(530,1340)" to="(550,1340)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(120,660)" to="(120,710)"/> <wire from="(690,1260)" to="(760,1260)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(1360,250)" to="(1380,250)"/> <wire from="(940,1280)" to="(950,1280)"/> <wire from="(960,500)" to="(970,500)"/> <wire from="(1500,230)" to="(1520,230)"/> <wire from="(220,790)" to="(220,910)"/> <wire from="(1520,250)" to="(1540,250)"/> <wire from="(1200,1210)" to="(1220,1210)"/> <wire from="(150,1010)" to="(150,1070)"/> <wire from="(870,660)" to="(920,660)"/> <wire from="(1320,1220)" to="(1320,1300)"/> <wire from="(1010,1520)" to="(1010,1540)"/> <wire from="(830,80)" to="(1140,80)"/> <wire from="(1530,150)" to="(1530,230)"/> <wire from="(120,770)" to="(240,770)"/> <wire from="(430,780)" to="(430,800)"/> <wire from="(910,300)" to="(910,320)"/> <wire from="(600,180)" to="(600,260)"/> <wire from="(330,1150)" to="(330,1500)"/> <wire from="(120,790)" to="(120,820)"/> <wire from="(1010,1290)" to="(1010,1500)"/> <wire from="(120,790)" to="(220,790)"/> <wire from="(220,990)" to="(250,990)"/> <wire from="(990,1290)" to="(1010,1290)"/> <wire from="(550,420)" to="(1080,420)"/> <wire from="(730,230)" to="(750,230)"/> <wire from="(750,250)" to="(770,250)"/> <wire from="(270,250)" to="(290,250)"/> <wire from="(1680,230)" to="(1690,230)"/> <wire from="(320,730)" to="(320,910)"/> <wire from="(1060,1210)" to="(1060,1500)"/> <wire from="(1820,250)" to="(1820,290)"/> <wire from="(290,820)" to="(370,820)"/> <wire from="(1590,290)" to="(1610,290)"/> <wire from="(550,420)" to="(550,480)"/> <wire from="(960,630)" to="(970,630)"/> <wire from="(1390,1210)" to="(1410,1210)"/> <wire from="(870,540)" to="(880,540)"/> <wire from="(870,860)" to="(880,860)"/> <comp lib="6" loc="(2089,202)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="6" loc="(426,885)" name="Text"> <a name="text" val="PBLACK"/> </comp> <comp lib="0" loc="(870,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(570,1380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(950,480)" name="Constant"/> <comp lib="6" loc="(169,1139)" name="Text"> <a name="text" val="41"/> </comp> <comp loc="(290,620)" name="D-latch"/> <comp lib="0" loc="(1470,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="0"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(430,380)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="1" loc="(2040,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(137,674)" name="Text"> <a name="text" val="22"/> </comp> <comp lib="1" loc="(270,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="32"/> </comp> <comp lib="1" loc="(740,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1920,290)" name="Tunnel"> <a name="label" val="10"/> </comp> <comp lib="6" loc="(138,574)" name="Text"> <a name="text" val="23"/> </comp> <comp loc="(290,1070)" name="D-latch"/> <comp lib="6" loc="(138,623)" name="Text"> <a name="text" val="25"/> </comp> <comp lib="0" loc="(870,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="1" loc="(1390,350)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1390,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1420,240)" name="D-latch"/> <comp lib="6" loc="(1019,200)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="6" loc="(580,675)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="1" loc="(810,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1350,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1120,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1200,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1399,201)" name="Text"> <a name="text" val="6"/> </comp> <comp loc="(880,240)" name="D-latch"/> <comp lib="0" loc="(870,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="6" loc="(1573,1158)" name="Text"> <a name="text" val="LUMA3 SWING"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TB"/> </comp> <comp lib="0" loc="(100,430)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="6" loc="(579,714)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(380,930)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="44"/> </comp> <comp lib="6" loc="(300,1057)" name="Text"> <a name="text" val="47"/> </comp> <comp lib="6" loc="(350,1004)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="0" loc="(2070,290)" name="Tunnel"> <a name="label" val="11"/> </comp> <comp lib="6" loc="(1174,1157)" name="Text"> <a name="text" val="LUMA1 SWING"/> </comp> <comp lib="6" loc="(308,1431)" name="Text"> <a name="text" val="Synch"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLK"/> </comp> <comp lib="0" loc="(870,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(196,452)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(1000,290)" name="Tunnel"> <a name="label" val="1"/> </comp> <comp lib="0" loc="(810,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(299,811)" name="Text"> <a name="text" val="52"/> </comp> <comp lib="6" loc="(1858,200)" name="Text"> <a name="text" val="10"/> </comp> <comp loc="(290,920)" name="D-latch"/> <comp lib="0" loc="(960,630)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(1190,240)" name="D-latch"/> <comp lib="0" loc="(870,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="10"/> </comp> <comp loc="(2110,240)" name="D-latch"/> <comp lib="0" loc="(1410,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(90,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL0#"/> </comp> <comp lib="6" loc="(304,505)" name="Text"> <a name="text" val="located above the H counter"/> </comp> <comp lib="6" loc="(381,185)" name="Text"> <a name="text" val="/PR"/> </comp> <comp lib="6" loc="(518,1214)" name="Text"> <a name="text" val="Color burst"/> </comp> <comp lib="0" loc="(1460,290)" name="Tunnel"> <a name="label" val="6"/> </comp> <comp lib="0" loc="(150,1540)" name="Pin"> <a name="output" val="true"/> <a name="width" val="11"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,190)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(870,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp loc="(190,670)" name="D-latch"/> <comp lib="0" loc="(870,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(960,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(77,221)" name="Text"> <a name="text" val="Emphasis"/> </comp> <comp lib="0" loc="(1270,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(1690,290)" name="Tunnel"> <a name="label" val="8"/> </comp> <comp lib="6" loc="(376,372)" name="Text"> <a name="text" val="/PB"/> </comp> <comp lib="6" loc="(529,471)" name="Text"> <a name="text" val="/V0'"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(870,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(605,1423)" name="Text"> <a name="text" val="Color 1D (black)"/> </comp> <comp loc="(190,620)" name="D-latch"/> <comp loc="(190,570)" name="D-latch"/> <comp lib="6" loc="(711,198)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(900,260)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="16"/> </comp> <comp lib="1" loc="(460,1260)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(302,1190)" name="Text"> <a name="text" val="48"/> </comp> <comp lib="0" loc="(160,1310)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="6" loc="(116,832)" name="Text"> <a name="text" val="50"/> </comp> <comp lib="0" loc="(1610,290)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="1" loc="(180,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1580,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(450,242)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(1210,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(381,245)" name="Text"> <a name="text" val="/PG"/> </comp> <comp lib="0" loc="(950,760)" name="Constant"/> <comp lib="6" loc="(302,981)" name="Text"> <a name="text" val="45"/> </comp> <comp lib="0" loc="(870,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp loc="(290,470)" name="D-latch"/> <comp loc="(1270,240)" name="D-latch"/> <comp lib="1" loc="(130,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="33"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC0#"/> </comp> <comp loc="(1880,240)" name="D-latch"/> <comp lib="6" loc="(201,812)" name="Text"> <a name="text" val="51"/> </comp> <comp lib="6" loc="(1709,199)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="6" loc="(237,623)" name="Text"> <a name="text" val="18"/> </comp> <comp lib="6" loc="(626,1377)" name="Text"> <a name="text" val="/LU3"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TG"/> </comp> <comp lib="6" loc="(628,1337)" name="Text"> <a name="text" val="/LU1"/> </comp> <comp loc="(290,670)" name="D-latch"/> <comp lib="0" loc="(90,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC3#"/> </comp> <comp loc="(730,240)" name="D-latch"/> <comp lib="6" loc="(1369,1159)" name="Text"> <a name="text" val="LUMA2 SWING"/> </comp> <comp lib="6" loc="(597,1357)" name="Text"> <a name="text" val="/LU2"/> </comp> <comp lib="6" loc="(238,724)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="0" loc="(90,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC2#"/> </comp> <comp lib="6" loc="(1249,201)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(449,179)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="1" loc="(990,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,720)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="20"/> </comp> <comp lib="1" loc="(1210,1490)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SYNC"/> </comp> <comp lib="0" loc="(870,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="7"/> </comp> <comp loc="(190,720)" name="D-latch"/> <comp lib="6" loc="(238,674)" name="Text"> <a name="text" val="19"/> </comp> <comp lib="0" loc="(640,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp loc="(290,1210)" name="D-latch"/> <comp lib="1" loc="(1580,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(610,200)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="0" loc="(870,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="1"/> </comp> <comp lib="6" loc="(581,613)" name="Text"> <a name="text" val="1"/> </comp> <comp loc="(1500,240)" name="D-latch"/> <comp lib="1" loc="(570,1360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1628,199)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="1" loc="(570,1340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(840,290)" name="Tunnel"> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1600,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(597,1315)" name="Text"> <a name="text" val="/LU0"/> </comp> <comp lib="1" loc="(280,1280)" name="NOT Gate"> <a name="width" val="2"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(870,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="2" loc="(470,1320)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="disabled" val="0"/> </comp> <comp lib="6" loc="(268,868)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(1390,1210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1470,1490)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(433,425)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="0" loc="(760,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(237,574)" name="Text"> <a name="text" val="17"/> </comp> <comp lib="0" loc="(870,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(2140,250)" name="Tunnel"> <a name="label" val="12"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(870,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="11"/> </comp> <comp lib="6" loc="(136,724)" name="Text"> <a name="text" val="21"/> </comp> <comp loc="(290,720)" name="D-latch"/> <comp loc="(1650,240)" name="D-latch"/> <comp lib="2" loc="(1100,690)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1380,290)" name="Tunnel"> <a name="label" val="5"/> </comp> <comp lib="6" loc="(720,1159)" name="Text"> <a name="text" val="BURST SWING"/> </comp> <comp lib="6" loc="(1682,1490)" name="Text"> <a name="text" val="TINT"/> </comp> <comp lib="1" loc="(440,250)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(190,830)" name="D-latch"/> <comp lib="0" loc="(1010,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="0" loc="(330,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="6" loc="(1039,55)" name="Text"> <a name="text" val="PAL"/> <a name="font" val="SansSerif bold 40"/> </comp> <comp lib="1" loc="(270,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="31"/> </comp> <comp lib="6" loc="(381,281)" name="Text"> <a name="text" val="TINT"/> </comp> <comp lib="1" loc="(990,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(1398,338)" name="Text"> <a name="text" val="15"/> </comp> <comp loc="(290,1140)" name="D-latch"/> <comp lib="2" loc="(1010,560)" name="Multiplexer"> <a name="select" val="4"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(870,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> <comp lib="6" loc="(860,198)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(90,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BURST"/> </comp> <comp loc="(290,830)" name="D-latch"/> <comp lib="1" loc="(340,290)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="34"/> </comp> <comp lib="0" loc="(960,910)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="6" loc="(168,869)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(90,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/TR"/> </comp> <comp lib="0" loc="(1230,290)" name="Tunnel"> <a name="label" val="3"/> </comp> <comp loc="(290,570)" name="D-latch"/> <comp lib="1" loc="(740,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1960,240)" name="D-latch"/> <comp lib="6" loc="(302,1127)" name="Text"> <a name="text" val="46"/> </comp> <comp lib="0" loc="(870,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="0"/> </comp> <comp lib="0" loc="(1840,290)" name="Tunnel"> <a name="label" val="9"/> </comp> <comp lib="0" loc="(1700,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="0"/> </comp> <comp lib="0" loc="(870,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(90,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="6" loc="(1939,199)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="1" loc="(1810,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(967,1158)" name="Text"> <a name="text" val="LUMA0 SWING"/> </comp> <comp lib="1" loc="(570,1320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1150,290)" name="Tunnel"> <a name="label" val="2"/> </comp> <comp lib="1" loc="(420,840)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="24"/> </comp> <comp loc="(290,1000)" name="D-latch"/> <comp lib="2" loc="(530,250)" name="Multiplexer"> <a name="facing" val="west"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1479,202)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="1" loc="(1580,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(530,190)" name="Multiplexer"> <a name="facing" val="west"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(870,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(580,573)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="6" loc="(1171,200)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(870,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="12"/> </comp> <comp lib="6" loc="(118,869)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="0" loc="(870,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(1060,1520)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="1"/> <a name="incoming" val="11"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="bit10" val="none"/> </comp> <comp lib="1" loc="(610,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(870,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="9"/> </comp> <comp lib="0" loc="(90,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LL1#"/> </comp> <comp lib="6" loc="(140,519)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="2" loc="(1010,840)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="4"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CC1#"/> </comp> <comp lib="1" loc="(380,620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp lib="1" loc="(1200,1290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1730,240)" name="D-latch"/> <comp lib="1" loc="(200,1080)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="42"/> </comp> <comp loc="(1040,240)" name="D-latch"/> <comp lib="0" loc="(610,260)" name="Tunnel"> <a name="label" val="7"/> </comp> <comp lib="0" loc="(870,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="3"/> </comp> </circuit> <circuit name="RW_CONTROL"> <a name="circuit" val="RW_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#d900ff" height="70" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="74">R/W</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="104">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="73">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="104">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="121" y="46">R/W CONTROL</text> <circ-port height="8" pin="110,70" width="8" x="46" y="66"/> <circ-port height="8" pin="110,160" width="8" x="46" y="96"/> <circ-port height="10" pin="290,80" width="10" x="185" y="65"/> <circ-port height="10" pin="290,150" width="10" x="185" y="95"/> <circ-anchor facing="east" height="6" width="6" x="187" y="47"/> </appear> <wire from="(260,80)" to="(290,80)"/> <wire from="(150,140)" to="(230,140)"/> <wire from="(150,70)" to="(150,140)"/> <wire from="(210,90)" to="(210,160)"/> <wire from="(260,150)" to="(290,150)"/> <wire from="(110,70)" to="(150,70)"/> <wire from="(190,70)" to="(230,70)"/> <wire from="(110,160)" to="(210,160)"/> <wire from="(150,70)" to="(170,70)"/> <wire from="(210,90)" to="(230,90)"/> <wire from="(210,160)" to="(230,160)"/> <comp lib="6" loc="(101,27)" name="Text"> <a name="text" val="R/W = 0: write data to PPU"/> </comp> <comp lib="1" loc="(260,150)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(190,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="R/W"/> </comp> <comp lib="6" loc="(448,154)" name="Text"> <a name="text" val="/WR = 0: CPU write data to PPU"/> </comp> <comp lib="6" loc="(455,87)" name="Text"> <a name="text" val="/RD = 0: CPU read data from PPU"/> </comp> <comp lib="0" loc="(290,80)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/RD"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,80)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(290,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/WR"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="CPU_DATA_IO"> <a name="circuit" val="CPU_DATA_IO"/> <a name="clabel" val="CPU DATA IO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffc63e" height="90" stroke="#000000" stroke-width="2" width="330" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="84">/RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="114">/WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="71">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="72">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="175" y="72">D2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="206" y="72">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="234" y="72">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="265" y="72">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="294" y="72">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="72">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="278" y="127">CPU/PPU</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="127">PPU/CPU</text> <circ-port height="8" pin="90,70" width="8" x="46" y="76"/> <circ-port height="8" pin="90,270" width="8" x="46" y="106"/> <circ-port height="8" pin="150,170" width="8" x="146" y="136"/> <circ-port height="10" pin="470,500" width="10" x="275" y="135"/> <circ-port height="10" pin="500,250" width="10" x="285" y="45"/> <circ-port height="10" pin="500,280" width="10" x="315" y="45"/> <circ-port height="8" pin="90,370" width="8" x="116" y="46"/> <circ-port height="8" pin="90,400" width="8" x="146" y="46"/> <circ-port height="8" pin="90,430" width="8" x="176" y="46"/> <circ-port height="8" pin="90,460" width="8" x="206" y="46"/> <circ-port height="8" pin="90,490" width="8" x="236" y="46"/> <circ-port height="8" pin="90,520" width="8" x="266" y="46"/> <circ-port height="8" pin="90,550" width="8" x="296" y="46"/> <circ-port height="8" pin="90,580" width="8" x="326" y="46"/> <circ-port height="10" pin="500,190" width="10" x="225" y="45"/> <circ-port height="10" pin="500,220" width="10" x="255" y="45"/> <circ-port height="10" pin="500,130" width="10" x="165" y="45"/> <circ-port height="10" pin="500,160" width="10" x="195" y="45"/> <circ-port height="10" pin="500,70" width="10" x="105" y="45"/> <circ-port height="10" pin="500,100" width="10" x="135" y="45"/> <circ-anchor facing="east" height="6" width="6" x="377" y="47"/> </appear> <wire from="(140,370)" to="(140,440)"/> <wire from="(150,270)" to="(200,270)"/> <wire from="(310,170)" to="(430,170)"/> <wire from="(90,370)" to="(140,370)"/> <wire from="(450,200)" to="(450,280)"/> <wire from="(90,430)" to="(120,430)"/> <wire from="(250,510)" to="(250,670)"/> <wire from="(440,500)" to="(470,500)"/> <wire from="(390,490)" to="(420,490)"/> <wire from="(450,150)" to="(480,150)"/> <wire from="(300,450)" to="(320,450)"/> <wire from="(300,650)" to="(320,650)"/> <wire from="(150,70)" to="(300,70)"/> <wire from="(480,190)" to="(500,190)"/> <wire from="(280,480)" to="(280,520)"/> <wire from="(390,510)" to="(390,550)"/> <wire from="(210,480)" to="(230,480)"/> <wire from="(130,450)" to="(140,450)"/> <wire from="(300,500)" to="(300,550)"/> <wire from="(300,300)" to="(300,350)"/> <wire from="(250,320)" to="(320,320)"/> <wire from="(250,320)" to="(250,440)"/> <wire from="(420,530)" to="(420,650)"/> <wire from="(260,620)" to="(320,620)"/> <wire from="(110,480)" to="(110,490)"/> <wire from="(90,580)" to="(140,580)"/> <wire from="(480,130)" to="(480,150)"/> <wire from="(480,170)" to="(480,190)"/> <wire from="(400,400)" to="(400,480)"/> <wire from="(400,520)" to="(400,600)"/> <wire from="(90,550)" to="(130,550)"/> <wire from="(90,270)" to="(130,270)"/> <wire from="(90,70)" to="(130,70)"/> <wire from="(300,270)" to="(300,300)"/> <wire from="(280,420)" to="(320,420)"/> <wire from="(120,490)" to="(120,520)"/> <wire from="(90,520)" to="(120,520)"/> <wire from="(470,220)" to="(500,220)"/> <wire from="(470,100)" to="(500,100)"/> <wire from="(250,480)" to="(280,480)"/> <wire from="(360,550)" to="(390,550)"/> <wire from="(300,300)" to="(320,300)"/> <wire from="(250,490)" to="(270,490)"/> <wire from="(300,500)" to="(320,500)"/> <wire from="(250,450)" to="(270,450)"/> <wire from="(400,480)" to="(420,480)"/> <wire from="(400,520)" to="(420,520)"/> <wire from="(90,490)" to="(110,490)"/> <wire from="(130,500)" to="(130,550)"/> <wire from="(250,500)" to="(260,500)"/> <wire from="(130,500)" to="(140,500)"/> <wire from="(300,350)" to="(300,400)"/> <wire from="(300,550)" to="(300,600)"/> <wire from="(150,170)" to="(290,170)"/> <wire from="(460,190)" to="(460,250)"/> <wire from="(260,500)" to="(260,620)"/> <wire from="(360,650)" to="(420,650)"/> <wire from="(140,510)" to="(140,580)"/> <wire from="(450,70)" to="(500,70)"/> <wire from="(270,370)" to="(320,370)"/> <wire from="(270,570)" to="(320,570)"/> <wire from="(200,270)" to="(200,470)"/> <wire from="(90,400)" to="(130,400)"/> <wire from="(300,70)" to="(300,160)"/> <wire from="(460,250)" to="(500,250)"/> <wire from="(160,480)" to="(190,480)"/> <wire from="(110,470)" to="(140,470)"/> <wire from="(450,170)" to="(480,170)"/> <wire from="(390,510)" to="(420,510)"/> <wire from="(420,300)" to="(420,460)"/> <wire from="(300,350)" to="(320,350)"/> <wire from="(300,550)" to="(320,550)"/> <wire from="(450,180)" to="(470,180)"/> <wire from="(450,140)" to="(470,140)"/> <wire from="(480,130)" to="(500,130)"/> <wire from="(280,420)" to="(280,460)"/> <wire from="(90,460)" to="(110,460)"/> <wire from="(120,490)" to="(140,490)"/> <wire from="(390,450)" to="(390,490)"/> <wire from="(410,470)" to="(420,470)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(300,400)" to="(300,450)"/> <wire from="(300,600)" to="(300,650)"/> <wire from="(450,70)" to="(450,130)"/> <wire from="(360,500)" to="(420,500)"/> <wire from="(360,300)" to="(420,300)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(450,280)" to="(500,280)"/> <wire from="(360,350)" to="(410,350)"/> <wire from="(110,460)" to="(110,470)"/> <wire from="(270,370)" to="(270,450)"/> <wire from="(270,490)" to="(270,570)"/> <wire from="(280,520)" to="(320,520)"/> <wire from="(120,430)" to="(120,460)"/> <wire from="(360,400)" to="(400,400)"/> <wire from="(360,600)" to="(400,600)"/> <wire from="(110,480)" to="(140,480)"/> <wire from="(250,460)" to="(280,460)"/> <wire from="(360,450)" to="(390,450)"/> <wire from="(300,400)" to="(320,400)"/> <wire from="(300,600)" to="(320,600)"/> <wire from="(120,460)" to="(140,460)"/> <wire from="(470,180)" to="(470,220)"/> <wire from="(470,100)" to="(470,140)"/> <wire from="(130,400)" to="(130,450)"/> <wire from="(300,450)" to="(300,500)"/> <wire from="(250,670)" to="(320,670)"/> <wire from="(410,350)" to="(410,470)"/> <wire from="(250,470)" to="(320,470)"/> <comp lib="0" loc="(90,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp loc="(360,410)" name="D-latch"/> <comp lib="0" loc="(230,480)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(310,170)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="1" loc="(150,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(500,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,560)" name="D-latch"/> <comp lib="0" loc="(500,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WR"/> </comp> <comp loc="(360,360)" name="D-latch"/> <comp lib="0" loc="(150,170)" name="Pin"> <a name="width" val="8"/> <a name="label" val="PPU/CPU"/> </comp> <comp lib="0" loc="(500,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="6" loc="(167,37)" name="Text"> <a name="text" val="/RD = 0: CPU read data from PPU"/> </comp> <comp lib="0" loc="(500,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,510)" name="D-latch"/> <comp loc="(360,660)" name="D-latch"/> <comp loc="(360,310)" name="D-latch"/> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp loc="(360,460)" name="D-latch"/> <comp lib="0" loc="(160,480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(500,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(500,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(470,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="CPU/PPU"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(500,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/RD"/> </comp> <comp lib="0" loc="(500,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="D3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(440,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(300,270)" name="Constant"> <a name="facing" val="south"/> </comp> <comp loc="(360,610)" name="D-latch"/> <comp lib="6" loc="(159,238)" name="Text"> <a name="text" val="/WR = 0: CPU write data to PPU"/> </comp> <comp lib="0" loc="(90,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="1" loc="(210,480)" name="Controlled Buffer"> <a name="width" val="8"/> <a name="control" val="left"/> </comp> <comp lib="0" loc="(430,170)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> </circuit> <circuit name="INTERRUPT_CONTROL"> <a name="circuit" val="INTERRUPT_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M120,51 Q124,61 128,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#639dff" height="141" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="152" y="154">INT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="148" y="94">&gt;DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="114">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="155">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="94">/VSET</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="175">VBL_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="43">INTERRUPT CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <circ-port height="8" pin="80,40" width="8" x="46" y="166"/> <circ-port height="8" pin="80,150" width="8" x="46" y="86"/> <circ-port height="8" pin="80,210" width="8" x="46" y="146"/> <circ-port height="8" pin="80,250" width="8" x="46" y="126"/> <circ-port height="8" pin="80,290" width="8" x="46" y="106"/> <circ-port height="10" pin="650,70" width="10" x="165" y="145"/> <circ-port height="10" pin="650,240" width="10" x="165" y="85"/> <circ-port height="8" pin="80,110" width="8" x="46" y="66"/> <circ-anchor facing="east" height="6" width="6" x="47" y="67"/> </appear> <wire from="(530,70)" to="(650,70)"/> <wire from="(150,250)" to="(150,260)"/> <wire from="(610,240)" to="(650,240)"/> <wire from="(390,110)" to="(390,130)"/> <wire from="(460,40)" to="(460,60)"/> <wire from="(460,80)" to="(460,100)"/> <wire from="(80,110)" to="(120,110)"/> <wire from="(310,90)" to="(310,120)"/> <wire from="(150,150)" to="(150,180)"/> <wire from="(80,40)" to="(180,40)"/> <wire from="(150,180)" to="(310,180)"/> <wire from="(140,90)" to="(230,90)"/> <wire from="(460,80)" to="(490,80)"/> <wire from="(460,60)" to="(490,60)"/> <wire from="(310,120)" to="(330,120)"/> <wire from="(310,140)" to="(330,140)"/> <wire from="(340,230)" to="(360,230)"/> <wire from="(80,210)" to="(360,210)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(230,90)" to="(230,130)"/> <wire from="(150,280)" to="(170,280)"/> <wire from="(150,260)" to="(170,260)"/> <wire from="(230,90)" to="(310,90)"/> <wire from="(140,100)" to="(150,100)"/> <wire from="(600,260)" to="(600,320)"/> <wire from="(460,100)" to="(460,290)"/> <wire from="(80,290)" to="(150,290)"/> <wire from="(80,150)" to="(150,150)"/> <wire from="(80,250)" to="(150,250)"/> <wire from="(210,270)" to="(340,270)"/> <wire from="(570,230)" to="(580,230)"/> <wire from="(570,250)" to="(580,250)"/> <wire from="(590,260)" to="(590,270)"/> <wire from="(150,280)" to="(150,290)"/> <wire from="(440,270)" to="(490,270)"/> <wire from="(530,270)" to="(590,270)"/> <wire from="(210,150)" to="(250,150)"/> <wire from="(290,130)" to="(330,130)"/> <wire from="(150,100)" to="(150,130)"/> <wire from="(420,100)" to="(460,100)"/> <wire from="(460,290)" to="(490,290)"/> <wire from="(410,110)" to="(410,220)"/> <wire from="(370,130)" to="(390,130)"/> <wire from="(310,140)" to="(310,180)"/> <wire from="(340,230)" to="(340,270)"/> <wire from="(150,150)" to="(170,150)"/> <wire from="(150,130)" to="(170,130)"/> <wire from="(230,130)" to="(250,130)"/> <wire from="(340,270)" to="(420,270)"/> <wire from="(340,270)" to="(340,320)"/> <wire from="(340,320)" to="(600,320)"/> <wire from="(200,40)" to="(460,40)"/> <comp lib="6" loc="(392,64)" name="Text"> <a name="text" val="VBLANK FLIP/FLOP"/> </comp> <comp lib="0" loc="(80,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VBL_EN"/> </comp> <comp loc="(210,140)" name="D-latch"/> <comp lib="1" loc="(530,70)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(210,270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,140)" name="D-latch"/> <comp lib="1" loc="(440,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(650,70)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="INT"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(596,209)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="1" loc="(370,130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="VSET"/> </comp> <comp lib="0" loc="(570,250)" name="Constant"/> <comp lib="0" loc="(570,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(390,220)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(231,263)" name="Text"> <a name="text" val="R2_EN"/> </comp> <comp lib="4" loc="(420,80)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(530,280)" name="D-latch"/> <comp lib="1" loc="(200,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(650,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="2" loc="(610,240)" name="Multiplexer"/> <comp lib="0" loc="(80,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="0" loc="(120,110)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(80,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> </circuit> <circuit name="COLOR_IO"> <a name="circuit" val="COLOR_IO"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M63,50 Q67,60 71,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#37ffb2" height="210" stroke="#000000" stroke-width="2" width="680" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="152">&lt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="124">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="71">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="282" y="85">LL#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="270" y="70">0</text> <text font-family="SansSerif" font-size="24" text-anchor="middle" x="384" y="165">COLOR IO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="717" y="123">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="175">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="702" y="149">&gt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="720" y="173">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="582" y="70">#CB/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="380" y="224">RAM IO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="170" y="71">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="70">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="628" y="69">OE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="141" y="85">CC#</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="527" y="70">#DB/CB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="229" y="250">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="469" y="250">5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="290" y="250">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="349" y="250">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="409" y="250">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="530" y="250">4</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,75 50,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,50" width="8" x="46" y="66"/> <circ-port height="8" pin="100,90" width="8" x="526" y="46"/> <circ-port height="8" pin="100,130" width="8" x="576" y="46"/> <circ-port height="8" pin="100,170" width="8" x="626" y="46"/> <circ-port height="8" pin="100,220" width="8" x="396" y="256"/> <circ-port height="8" pin="100,350" width="8" x="46" y="116"/> <circ-port height="8" pin="100,430" width="8" x="336" y="256"/> <circ-port height="8" pin="100,560" width="8" x="46" y="126"/> <circ-port height="8" pin="100,640" width="8" x="276" y="256"/> <circ-port height="8" pin="100,770" width="8" x="46" y="136"/> <circ-port height="8" pin="100,850" width="8" x="216" y="256"/> <circ-port height="8" pin="100,980" width="8" x="46" y="146"/> <circ-port height="8" pin="100,1060" width="8" x="516" y="256"/> <circ-port height="8" pin="100,1190" width="8" x="46" y="156"/> <circ-port height="8" pin="100,1270" width="8" x="456" y="256"/> <circ-port height="8" pin="100,1400" width="8" x="46" y="166"/> <circ-port height="10" pin="700,210" width="10" x="165" y="45"/> <circ-port height="10" pin="700,280" width="10" x="725" y="115"/> <circ-port height="10" pin="700,340" width="10" x="415" y="255"/> <circ-port height="10" pin="700,420" width="10" x="145" y="45"/> <circ-port height="10" pin="700,490" width="10" x="725" y="125"/> <circ-port height="10" pin="700,550" width="10" x="355" y="255"/> <circ-port height="10" pin="700,630" width="10" x="125" y="45"/> <circ-port height="10" pin="700,700" width="10" x="725" y="135"/> <circ-port height="10" pin="700,760" width="10" x="295" y="255"/> <circ-port height="10" pin="700,840" width="10" x="105" y="45"/> <circ-port height="10" pin="700,910" width="10" x="725" y="145"/> <circ-port height="10" pin="700,970" width="10" x="235" y="255"/> <circ-port height="10" pin="700,1050" width="10" x="265" y="45"/> <circ-port height="10" pin="700,1120" width="10" x="725" y="155"/> <circ-port height="10" pin="700,1180" width="10" x="535" y="255"/> <circ-port height="10" pin="700,1260" width="10" x="285" y="45"/> <circ-port height="10" pin="700,1330" width="10" x="725" y="165"/> <circ-port height="10" pin="700,1390" width="10" x="475" y="255"/> <circ-anchor facing="east" height="6" width="6" x="67" y="47"/> </appear> <wire from="(410,1240)" to="(410,1310)"/> <wire from="(330,840)" to="(330,910)"/> <wire from="(590,130)" to="(590,270)"/> <wire from="(390,210)" to="(700,210)"/> <wire from="(490,1240)" to="(490,1310)"/> <wire from="(160,410)" to="(160,620)"/> <wire from="(410,260)" to="(410,470)"/> <wire from="(490,260)" to="(490,470)"/> <wire from="(600,1120)" to="(700,1120)"/> <wire from="(600,280)" to="(700,280)"/> <wire from="(310,400)" to="(310,610)"/> <wire from="(330,490)" to="(430,490)"/> <wire from="(330,1330)" to="(430,1330)"/> <wire from="(220,830)" to="(260,830)"/> <wire from="(620,750)" to="(620,960)"/> <wire from="(590,480)" to="(590,690)"/> <wire from="(310,400)" to="(350,400)"/> <wire from="(290,420)" to="(330,420)"/> <wire from="(290,1260)" to="(330,1260)"/> <wire from="(310,1240)" to="(350,1240)"/> <wire from="(470,1120)" to="(510,1120)"/> <wire from="(470,280)" to="(510,280)"/> <wire from="(490,1240)" to="(510,1240)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(620,1170)" to="(640,1170)"/> <wire from="(680,550)" to="(700,550)"/> <wire from="(680,1390)" to="(700,1390)"/> <wire from="(330,840)" to="(350,840)"/> <wire from="(410,680)" to="(430,680)"/> <wire from="(410,1240)" to="(430,1240)"/> <wire from="(550,490)" to="(580,490)"/> <wire from="(550,1330)" to="(580,1330)"/> <wire from="(490,680)" to="(510,680)"/> <wire from="(100,50)" to="(120,50)"/> <wire from="(160,830)" to="(180,830)"/> <wire from="(240,430)" to="(260,430)"/> <wire from="(100,640)" to="(180,640)"/> <wire from="(380,770)" to="(640,770)"/> <wire from="(100,770)" to="(360,770)"/> <wire from="(330,1050)" to="(330,1120)"/> <wire from="(330,210)" to="(330,280)"/> <wire from="(160,40)" to="(410,40)"/> <wire from="(390,420)" to="(700,420)"/> <wire from="(160,620)" to="(160,830)"/> <wire from="(240,220)" to="(240,430)"/> <wire from="(410,470)" to="(410,680)"/> <wire from="(490,470)" to="(490,680)"/> <wire from="(600,490)" to="(700,490)"/> <wire from="(600,1330)" to="(700,1330)"/> <wire from="(310,610)" to="(310,820)"/> <wire from="(330,700)" to="(430,700)"/> <wire from="(220,200)" to="(260,200)"/> <wire from="(220,1040)" to="(260,1040)"/> <wire from="(620,960)" to="(620,1170)"/> <wire from="(590,690)" to="(590,900)"/> <wire from="(290,630)" to="(330,630)"/> <wire from="(310,610)" to="(350,610)"/> <wire from="(390,1050)" to="(430,1050)"/> <wire from="(470,1330)" to="(510,1330)"/> <wire from="(470,490)" to="(510,490)"/> <wire from="(470,1050)" to="(510,1050)"/> <wire from="(490,30)" to="(490,260)"/> <wire from="(620,540)" to="(640,540)"/> <wire from="(620,1380)" to="(640,1380)"/> <wire from="(680,760)" to="(700,760)"/> <wire from="(330,1050)" to="(350,1050)"/> <wire from="(330,210)" to="(350,210)"/> <wire from="(410,890)" to="(430,890)"/> <wire from="(550,700)" to="(580,700)"/> <wire from="(490,890)" to="(510,890)"/> <wire from="(160,200)" to="(180,200)"/> <wire from="(160,1040)" to="(180,1040)"/> <wire from="(240,640)" to="(260,640)"/> <wire from="(240,170)" to="(240,220)"/> <wire from="(100,850)" to="(180,850)"/> <wire from="(250,1060)" to="(260,1060)"/> <wire from="(380,980)" to="(640,980)"/> <wire from="(100,980)" to="(360,980)"/> <wire from="(330,1260)" to="(330,1330)"/> <wire from="(330,420)" to="(330,490)"/> <wire from="(410,890)" to="(410,1030)"/> <wire from="(490,890)" to="(490,1030)"/> <wire from="(390,630)" to="(700,630)"/> <wire from="(160,830)" to="(160,1040)"/> <wire from="(240,430)" to="(240,640)"/> <wire from="(410,680)" to="(410,890)"/> <wire from="(490,680)" to="(490,890)"/> <wire from="(600,700)" to="(700,700)"/> <wire from="(310,820)" to="(310,1030)"/> <wire from="(330,910)" to="(430,910)"/> <wire from="(410,40)" to="(410,260)"/> <wire from="(220,410)" to="(260,410)"/> <wire from="(220,1250)" to="(260,1250)"/> <wire from="(620,1170)" to="(620,1380)"/> <wire from="(620,330)" to="(620,540)"/> <wire from="(590,900)" to="(590,1110)"/> <wire from="(290,840)" to="(330,840)"/> <wire from="(310,820)" to="(350,820)"/> <wire from="(100,130)" to="(520,130)"/> <wire from="(390,1260)" to="(430,1260)"/> <wire from="(470,700)" to="(510,700)"/> <wire from="(470,1260)" to="(510,1260)"/> <wire from="(160,40)" to="(160,200)"/> <wire from="(550,1050)" to="(700,1050)"/> <wire from="(310,30)" to="(310,190)"/> <wire from="(620,750)" to="(640,750)"/> <wire from="(680,970)" to="(700,970)"/> <wire from="(240,850)" to="(260,850)"/> <wire from="(330,1260)" to="(350,1260)"/> <wire from="(330,420)" to="(350,420)"/> <wire from="(410,1100)" to="(430,1100)"/> <wire from="(410,260)" to="(430,260)"/> <wire from="(550,910)" to="(580,910)"/> <wire from="(490,1100)" to="(510,1100)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(160,410)" to="(180,410)"/> <wire from="(160,1250)" to="(180,1250)"/> <wire from="(100,220)" to="(180,220)"/> <wire from="(250,1270)" to="(260,1270)"/> <wire from="(100,1060)" to="(180,1060)"/> <wire from="(100,170)" to="(240,170)"/> <wire from="(620,90)" to="(620,330)"/> <wire from="(100,90)" to="(620,90)"/> <wire from="(380,1190)" to="(640,1190)"/> <wire from="(380,350)" to="(640,350)"/> <wire from="(100,350)" to="(360,350)"/> <wire from="(100,1190)" to="(360,1190)"/> <wire from="(410,1030)" to="(410,1100)"/> <wire from="(490,1030)" to="(490,1100)"/> <wire from="(330,630)" to="(330,700)"/> <wire from="(540,130)" to="(590,130)"/> <wire from="(310,30)" to="(490,30)"/> <wire from="(410,1100)" to="(410,1240)"/> <wire from="(490,1100)" to="(490,1240)"/> <wire from="(390,840)" to="(700,840)"/> <wire from="(160,1040)" to="(160,1250)"/> <wire from="(160,200)" to="(160,410)"/> <wire from="(240,640)" to="(240,850)"/> <wire from="(140,30)" to="(310,30)"/> <wire from="(600,910)" to="(700,910)"/> <wire from="(310,190)" to="(310,400)"/> <wire from="(310,1030)" to="(310,1240)"/> <wire from="(330,1120)" to="(430,1120)"/> <wire from="(330,280)" to="(430,280)"/> <wire from="(220,620)" to="(260,620)"/> <wire from="(590,1110)" to="(590,1320)"/> <wire from="(620,540)" to="(620,750)"/> <wire from="(590,270)" to="(590,480)"/> <wire from="(290,210)" to="(330,210)"/> <wire from="(310,190)" to="(350,190)"/> <wire from="(290,1050)" to="(330,1050)"/> <wire from="(310,1030)" to="(350,1030)"/> <wire from="(470,910)" to="(510,910)"/> <wire from="(550,1260)" to="(700,1260)"/> <wire from="(490,1310)" to="(510,1310)"/> <wire from="(620,960)" to="(640,960)"/> <wire from="(680,340)" to="(700,340)"/> <wire from="(680,1180)" to="(700,1180)"/> <wire from="(330,630)" to="(350,630)"/> <wire from="(410,1310)" to="(430,1310)"/> <wire from="(410,470)" to="(430,470)"/> <wire from="(410,1030)" to="(430,1030)"/> <wire from="(550,280)" to="(580,280)"/> <wire from="(550,1120)" to="(580,1120)"/> <wire from="(490,1030)" to="(510,1030)"/> <wire from="(490,470)" to="(510,470)"/> <wire from="(160,620)" to="(180,620)"/> <wire from="(140,40)" to="(160,40)"/> <wire from="(240,220)" to="(260,220)"/> <wire from="(100,430)" to="(180,430)"/> <wire from="(100,1270)" to="(180,1270)"/> <wire from="(380,560)" to="(640,560)"/> <wire from="(380,1400)" to="(640,1400)"/> <wire from="(100,560)" to="(360,560)"/> <wire from="(100,1400)" to="(360,1400)"/> <comp loc="(470,480)" name="D-latch"/> <comp lib="0" loc="(700,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="1" loc="(600,700)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(550,1110)" name="D-latch"/> <comp lib="1" loc="(680,550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,270)" name="D-latch"/> <comp loc="(390,410)" name="D-latch"/> <comp lib="0" loc="(100,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB2"/> </comp> <comp lib="1" loc="(540,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,760)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,1250)" name="D-latch"/> <comp loc="(550,480)" name="D-latch"/> <comp lib="1" loc="(290,210)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(680,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(600,1120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(700,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,420)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(700,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/BW"/> </comp> <comp lib="4" loc="(220,1250)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,1050)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,900)" name="D-latch"/> <comp lib="1" loc="(600,490)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(700,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(680,1180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,1270)" name="Constant"/> <comp loc="(390,830)" name="D-latch"/> <comp lib="0" loc="(100,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> <comp lib="1" loc="(680,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(470,1040)" name="D-latch"/> <comp lib="0" loc="(700,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,1190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(680,970)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(680,1390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(550,270)" name="D-latch"/> <comp lib="1" loc="(600,910)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(220,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(700,1260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,1110)" name="D-latch"/> <comp lib="0" loc="(700,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB1"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(390,620)" name="D-latch"/> <comp lib="0" loc="(100,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#DB/CB"/> </comp> <comp lib="0" loc="(100,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB3"/> </comp> <comp lib="4" loc="(220,1040)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(700,1180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(390,1250)" name="D-latch"/> <comp lib="0" loc="(100,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB0"/> </comp> <comp lib="1" loc="(380,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,1120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(250,1060)" name="Constant"/> <comp lib="4" loc="(220,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(220,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(700,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(220,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB5"/> </comp> <comp lib="0" loc="(700,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CB/RAM3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,1400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#CB/DB"/> </comp> <comp lib="0" loc="(120,50)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(100,1190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp lib="0" loc="(100,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RAM/CB4"/> </comp> <comp loc="(390,1040)" name="D-latch"/> <comp loc="(470,690)" name="D-latch"/> <comp lib="1" loc="(290,630)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(390,200)" name="D-latch"/> <comp loc="(470,1320)" name="D-latch"/> <comp lib="1" loc="(380,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(700,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp loc="(550,1250)" name="D-latch"/> <comp lib="0" loc="(700,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(700,1330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="&gt;DB5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(550,1320)" name="D-latch"/> <comp loc="(550,690)" name="D-latch"/> <comp loc="(550,1040)" name="D-latch"/> <comp loc="(550,900)" name="D-latch"/> <comp lib="1" loc="(600,1330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> </circuit> <circuit name="COLOR_CONTROL"> <a name="circuit" val="COLOR_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff89ea" height="160" stroke="#000000" stroke-width="2" width="210" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="164">#DB/CB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="230" y="134">#CB/DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="219" y="105">COLOR_EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="155" y="41">COLOR CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="194">BW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="154">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="115">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="86" y="174">/PICTURE</text> <polyline fill="none" points="54,66 50,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,100" width="8" x="46" y="66"/> <circ-port height="8" pin="90,150" width="8" x="46" y="126"/> <circ-port height="8" pin="90,200" width="8" x="46" y="146"/> <circ-port height="8" pin="90,240" width="8" x="46" y="106"/> <circ-port height="8" pin="90,280" width="8" x="46" y="86"/> <circ-port height="8" pin="90,340" width="8" x="46" y="166"/> <circ-port height="8" pin="90,390" width="8" x="46" y="186"/> <circ-port height="10" pin="370,110" width="10" x="255" y="155"/> <circ-port height="10" pin="370,240" width="10" x="255" y="125"/> <circ-port height="10" pin="370,340" width="10" x="255" y="95"/> <circ-anchor facing="east" height="6" width="6" x="67" y="47"/> </appear> <wire from="(260,330)" to="(310,330)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(200,100)" to="(240,100)"/> <wire from="(190,250)" to="(230,250)"/> <wire from="(190,230)" to="(230,230)"/> <wire from="(190,250)" to="(190,280)"/> <wire from="(190,200)" to="(190,230)"/> <wire from="(90,280)" to="(190,280)"/> <wire from="(120,170)" to="(220,170)"/> <wire from="(210,290)" to="(210,320)"/> <wire from="(120,170)" to="(120,200)"/> <wire from="(120,120)" to="(120,150)"/> <wire from="(280,110)" to="(370,110)"/> <wire from="(120,200)" to="(150,200)"/> <wire from="(90,200)" to="(120,200)"/> <wire from="(90,150)" to="(120,150)"/> <wire from="(90,100)" to="(120,100)"/> <wire from="(260,240)" to="(290,240)"/> <wire from="(290,350)" to="(310,350)"/> <wire from="(350,340)" to="(370,340)"/> <wire from="(290,350)" to="(290,390)"/> <wire from="(140,100)" to="(160,100)"/> <wire from="(170,200)" to="(190,200)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(220,120)" to="(240,120)"/> <wire from="(220,120)" to="(220,170)"/> <wire from="(210,290)" to="(290,290)"/> <wire from="(290,240)" to="(370,240)"/> <wire from="(90,340)" to="(230,340)"/> <wire from="(90,240)" to="(230,240)"/> <wire from="(290,240)" to="(290,290)"/> <wire from="(90,390)" to="(290,390)"/> <comp lib="1" loc="(350,340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BW"/> </comp> <comp lib="0" loc="(90,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R7"/> </comp> <comp lib="0" loc="(370,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#DB/CB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(370,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="COLOR_EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(370,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#CB/DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PICTURE"/> </comp> <comp lib="1" loc="(280,110)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TH/MUX"/> </comp> <comp loc="(200,110)" name="D-latch"/> <comp lib="0" loc="(120,100)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(170,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(140,86)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(260,240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> </circuit> <circuit name="CONTROL_REGS_PAL"> <a name="circuit" val="CONTROL_REGS_PAL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M156,40 Q160,50 164,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffce1f" height="353" stroke="#000000" stroke-width="2" width="220" x="50" y="39"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="374">BLACK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="249" y="354">BW</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="264">CLPO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="84">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="293">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="143">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="204">#O8/16</text> <polyline fill="none" points="56,55 56,65" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="244">/CLPB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="225">&lt;D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="236" y="304">/OBCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="83">/TR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="124">/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="284">/SLAVE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="164">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="184">CLIP_B</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="124">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="103">/TG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="205">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="236" y="324">/BGCLIP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="241" y="143">#I1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="363">&lt;D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="164">CLIP_O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="104">/W1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="184">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="64">VBL_EN</text> <polyline fill="none" points="56,55 51,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 51,65" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="157" y="33">CONTROL REGISTERS</text> <circ-port height="8" pin="80,30" width="8" x="46" y="136"/> <circ-port height="8" pin="80,80" width="8" x="46" y="116"/> <circ-port height="8" pin="80,120" width="8" x="46" y="76"/> <circ-port height="8" pin="80,160" width="8" x="46" y="216"/> <circ-port height="8" pin="80,240" width="8" x="46" y="236"/> <circ-port height="8" pin="80,320" width="8" x="46" y="256"/> <circ-port height="8" pin="80,400" width="8" x="46" y="276"/> <circ-port height="8" pin="80,480" width="8" x="46" y="296"/> <circ-port height="8" pin="80,560" width="8" x="46" y="316"/> <circ-port height="8" pin="80,640" width="8" x="46" y="336"/> <circ-port height="8" pin="80,720" width="8" x="46" y="356"/> <circ-port height="8" pin="80,800" width="8" x="46" y="96"/> <circ-port height="8" pin="80,1470" width="8" x="46" y="56"/> <circ-port height="8" pin="80,1520" width="8" x="46" y="196"/> <circ-port height="8" pin="80,1590" width="8" x="46" y="176"/> <circ-port height="8" pin="80,1640" width="8" x="46" y="156"/> <circ-port height="10" pin="840,300" width="10" x="265" y="135"/> <circ-port height="10" pin="840,380" width="10" x="265" y="155"/> <circ-port height="10" pin="840,460" width="10" x="265" y="175"/> <circ-port height="10" pin="840,540" width="10" x="265" y="195"/> <circ-port height="10" pin="840,620" width="10" x="265" y="275"/> <circ-port height="10" pin="840,700" width="10" x="265" y="55"/> <circ-port height="10" pin="840,830" width="10" x="265" y="345"/> <circ-port height="10" pin="840,890" width="10" x="265" y="315"/> <circ-port height="10" pin="840,970" width="10" x="265" y="295"/> <circ-port height="10" pin="840,1070" width="10" x="265" y="235"/> <circ-port height="10" pin="840,1150" width="10" x="265" y="255"/> <circ-port height="10" pin="840,1230" width="10" x="265" y="75"/> <circ-port height="10" pin="840,1310" width="10" x="265" y="95"/> <circ-port height="10" pin="840,1410" width="10" x="265" y="115"/> <circ-port height="10" pin="840,1750" width="10" x="265" y="365"/> <circ-anchor facing="east" height="6" width="6" x="267" y="37"/> </appear> <wire from="(80,1640)" to="(650,1640)"/> <wire from="(80,1520)" to="(460,1520)"/> <wire from="(260,100)" to="(260,120)"/> <wire from="(220,1750)" to="(260,1750)"/> <wire from="(80,480)" to="(180,480)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(420,1150)" to="(460,1150)"/> <wire from="(400,90)" to="(440,90)"/> <wire from="(420,1070)" to="(460,1070)"/> <wire from="(420,1230)" to="(460,1230)"/> <wire from="(420,910)" to="(460,910)"/> <wire from="(420,1310)" to="(460,1310)"/> <wire from="(630,1080)" to="(630,1570)"/> <wire from="(220,1010)" to="(380,1010)"/> <wire from="(650,1160)" to="(670,1160)"/> <wire from="(650,830)" to="(680,830)"/> <wire from="(340,770)" to="(360,770)"/> <wire from="(340,1730)" to="(360,1730)"/> <wire from="(500,380)" to="(840,380)"/> <wire from="(500,300)" to="(840,300)"/> <wire from="(500,460)" to="(840,460)"/> <wire from="(500,540)" to="(840,540)"/> <wire from="(810,1150)" to="(840,1150)"/> <wire from="(180,480)" to="(180,1170)"/> <wire from="(260,160)" to="(260,850)"/> <wire from="(80,80)" to="(280,80)"/> <wire from="(80,800)" to="(280,800)"/> <wire from="(240,240)" to="(490,240)"/> <wire from="(500,1750)" to="(550,1750)"/> <wire from="(260,850)" to="(380,850)"/> <wire from="(410,1420)" to="(410,1430)"/> <wire from="(440,1470)" to="(750,1470)"/> <wire from="(710,1150)" to="(770,1150)"/> <wire from="(320,1730)" to="(320,1750)"/> <wire from="(410,570)" to="(410,650)"/> <wire from="(410,410)" to="(410,490)"/> <wire from="(440,280)" to="(440,360)"/> <wire from="(440,440)" to="(440,520)"/> <wire from="(410,330)" to="(410,410)"/> <wire from="(440,360)" to="(440,440)"/> <wire from="(410,490)" to="(410,570)"/> <wire from="(410,650)" to="(410,730)"/> <wire from="(500,1500)" to="(610,1500)"/> <wire from="(670,700)" to="(840,700)"/> <wire from="(520,1050)" to="(520,1090)"/> <wire from="(500,1230)" to="(840,1230)"/> <wire from="(500,1310)" to="(840,1310)"/> <wire from="(530,1730)" to="(550,1730)"/> <wire from="(280,760)" to="(300,760)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,280)" to="(460,280)"/> <wire from="(440,440)" to="(460,440)"/> <wire from="(440,520)" to="(460,520)"/> <wire from="(710,620)" to="(840,620)"/> <wire from="(120,720)" to="(380,720)"/> <wire from="(520,1090)" to="(530,1090)"/> <wire from="(410,730)" to="(410,860)"/> <wire from="(80,400)" to="(200,400)"/> <wire from="(220,1450)" to="(590,1450)"/> <wire from="(280,780)" to="(280,800)"/> <wire from="(410,1180)" to="(410,1260)"/> <wire from="(410,1340)" to="(410,1420)"/> <wire from="(410,860)" to="(410,940)"/> <wire from="(410,1020)" to="(410,1100)"/> <wire from="(410,1260)" to="(410,1340)"/> <wire from="(410,940)" to="(410,1020)"/> <wire from="(410,1100)" to="(410,1180)"/> <wire from="(440,890)" to="(440,970)"/> <wire from="(440,1050)" to="(440,1130)"/> <wire from="(440,1210)" to="(440,1290)"/> <wire from="(440,970)" to="(440,1050)"/> <wire from="(440,1130)" to="(440,1210)"/> <wire from="(610,1060)" to="(610,1140)"/> <wire from="(420,1410)" to="(840,1410)"/> <wire from="(570,1100)" to="(590,1100)"/> <wire from="(160,560)" to="(380,560)"/> <wire from="(240,1730)" to="(260,1730)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(400,1730)" to="(420,1730)"/> <wire from="(440,1130)" to="(460,1130)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(440,890)" to="(460,890)"/> <wire from="(440,1050)" to="(460,1050)"/> <wire from="(440,1290)" to="(460,1290)"/> <wire from="(440,1210)" to="(460,1210)"/> <wire from="(160,560)" to="(160,1250)"/> <wire from="(240,240)" to="(240,930)"/> <wire from="(710,830)" to="(840,830)"/> <wire from="(710,1070)" to="(840,1070)"/> <wire from="(150,1490)" to="(160,1490)"/> <wire from="(360,620)" to="(360,670)"/> <wire from="(120,1410)" to="(380,1410)"/> <wire from="(440,1500)" to="(440,1570)"/> <wire from="(440,1660)" to="(440,1730)"/> <wire from="(80,1590)" to="(460,1590)"/> <wire from="(80,120)" to="(260,120)"/> <wire from="(200,400)" to="(380,400)"/> <wire from="(360,300)" to="(360,380)"/> <wire from="(360,460)" to="(360,540)"/> <wire from="(360,380)" to="(360,460)"/> <wire from="(360,540)" to="(360,620)"/> <wire from="(80,720)" to="(120,720)"/> <wire from="(440,1470)" to="(440,1500)"/> <wire from="(360,670)" to="(360,700)"/> <wire from="(260,100)" to="(300,100)"/> <wire from="(420,700)" to="(650,700)"/> <wire from="(750,1130)" to="(750,1470)"/> <wire from="(160,1250)" to="(380,1250)"/> <wire from="(280,780)" to="(300,780)"/> <wire from="(220,1450)" to="(220,1750)"/> <wire from="(360,380)" to="(380,380)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,700)" to="(380,700)"/> <wire from="(360,300)" to="(380,300)"/> <wire from="(360,460)" to="(380,460)"/> <wire from="(360,620)" to="(380,620)"/> <wire from="(440,1500)" to="(460,1500)"/> <wire from="(340,1690)" to="(340,1730)"/> <wire from="(80,320)" to="(220,320)"/> <wire from="(440,90)" to="(440,280)"/> <wire from="(520,1110)" to="(530,1110)"/> <wire from="(160,1490)" to="(160,1690)"/> <wire from="(200,1090)" to="(380,1090)"/> <wire from="(160,1690)" to="(340,1690)"/> <wire from="(360,670)" to="(660,670)"/> <wire from="(630,1080)" to="(670,1080)"/> <wire from="(360,1070)" to="(360,1150)"/> <wire from="(360,910)" to="(360,990)"/> <wire from="(360,990)" to="(360,1070)"/> <wire from="(360,830)" to="(360,910)"/> <wire from="(360,1230)" to="(360,1310)"/> <wire from="(360,1310)" to="(360,1390)"/> <wire from="(360,1150)" to="(360,1230)"/> <wire from="(360,90)" to="(360,300)"/> <wire from="(590,1100)" to="(590,1450)"/> <wire from="(400,770)" to="(440,770)"/> <wire from="(420,1750)" to="(460,1750)"/> <wire from="(530,1690)" to="(530,1730)"/> <wire from="(500,1050)" to="(520,1050)"/> <wire from="(500,1130)" to="(520,1130)"/> <wire from="(360,990)" to="(380,990)"/> <wire from="(360,830)" to="(380,830)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(360,910)" to="(380,910)"/> <wire from="(360,1070)" to="(380,1070)"/> <wire from="(300,1730)" to="(320,1730)"/> <wire from="(360,1150)" to="(380,1150)"/> <wire from="(360,1310)" to="(380,1310)"/> <wire from="(360,1390)" to="(380,1390)"/> <wire from="(360,1230)" to="(380,1230)"/> <wire from="(140,640)" to="(140,1330)"/> <wire from="(240,930)" to="(380,930)"/> <wire from="(220,320)" to="(220,1010)"/> <wire from="(420,620)" to="(620,620)"/> <wire from="(80,640)" to="(140,640)"/> <wire from="(590,1750)" to="(840,1750)"/> <wire from="(660,670)" to="(660,690)"/> <wire from="(260,160)" to="(490,160)"/> <wire from="(80,240)" to="(240,240)"/> <wire from="(280,80)" to="(300,80)"/> <wire from="(150,1480)" to="(160,1480)"/> <wire from="(500,1570)" to="(630,1570)"/> <wire from="(360,770)" to="(360,830)"/> <wire from="(420,830)" to="(620,830)"/> <wire from="(610,1060)" to="(670,1060)"/> <wire from="(610,1140)" to="(670,1140)"/> <wire from="(140,640)" to="(380,640)"/> <wire from="(440,1570)" to="(440,1660)"/> <wire from="(320,1750)" to="(360,1750)"/> <wire from="(610,1140)" to="(610,1500)"/> <wire from="(360,770)" to="(380,770)"/> <wire from="(410,30)" to="(410,330)"/> <wire from="(650,1160)" to="(650,1640)"/> <wire from="(160,1470)" to="(440,1470)"/> <wire from="(440,1570)" to="(460,1570)"/> <wire from="(440,1730)" to="(460,1730)"/> <wire from="(280,80)" to="(280,760)"/> <wire from="(120,720)" to="(120,1410)"/> <wire from="(80,560)" to="(160,560)"/> <wire from="(200,400)" to="(200,1090)"/> <wire from="(80,30)" to="(410,30)"/> <wire from="(180,480)" to="(380,480)"/> <wire from="(240,1660)" to="(440,1660)"/> <wire from="(440,770)" to="(440,890)"/> <wire from="(240,1660)" to="(240,1730)"/> <wire from="(340,1690)" to="(530,1690)"/> <wire from="(160,1470)" to="(160,1480)"/> <wire from="(80,160)" to="(260,160)"/> <wire from="(80,1470)" to="(130,1470)"/> <wire from="(140,1330)" to="(380,1330)"/> <wire from="(420,1730)" to="(420,1750)"/> <wire from="(520,1110)" to="(520,1130)"/> <wire from="(420,300)" to="(460,300)"/> <wire from="(420,380)" to="(460,380)"/> <wire from="(500,1070)" to="(670,1070)"/> <wire from="(500,1150)" to="(670,1150)"/> <wire from="(420,460)" to="(460,460)"/> <wire from="(420,540)" to="(460,540)"/> <wire from="(220,320)" to="(380,320)"/> <wire from="(500,970)" to="(840,970)"/> <wire from="(500,890)" to="(840,890)"/> <wire from="(750,1130)" to="(770,1130)"/> <wire from="(650,620)" to="(680,620)"/> <wire from="(180,1170)" to="(380,1170)"/> <comp loc="(590,1740)" name="D-latch"/> <comp lib="0" loc="(80,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB0"/> </comp> <comp lib="4" loc="(420,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,1470)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp loc="(500,450)" name="D-latch"/> <comp lib="4" loc="(300,1730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,970)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/OBCLIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB6"/> </comp> <comp lib="0" loc="(840,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB4"/> </comp> <comp lib="0" loc="(840,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BLACK"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(840,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="BW"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(607,205)" name="Text"> <a name="text" val="bits 0 and 1 are in the PPU address generator circuit"/> </comp> <comp lib="6" loc="(660,531)" name="Text"> <a name="text" val="!!! INVERSE LOGIC PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,1230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1580)" name="D-latch"/> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB2"/> </comp> <comp lib="0" loc="(840,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(340,770)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(400,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(500,370)" name="D-latch"/> <comp lib="0" loc="(840,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/SLAVE"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB1"/> </comp> <comp loc="(810,1140)" name="D-latch"/> <comp lib="0" loc="(80,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB3"/> </comp> <comp lib="0" loc="(840,1070)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/CLPB"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W1"/> </comp> <comp lib="4" loc="(420,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(804,792)" name="Text"> <a name="text" val="$2001"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="4" loc="(400,1730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(183,1684)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp lib="0" loc="(80,1520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(80,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_B"/> </comp> <comp lib="1" loc="(710,620)" name="NOT Gate"/> <comp lib="6" loc="(633,810)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(692,601)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,1150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="CLPO"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1300)" name="D-latch"/> <comp lib="0" loc="(840,890)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/BGCLIP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(710,1150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="4" loc="(420,1150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(570,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(692,811)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(420,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(650,830)" name="NOT Gate"/> <comp loc="(500,1510)" name="D-latch"/> <comp lib="6" loc="(538,1055)" name="Text"> <a name="text" val="BGE"/> </comp> <comp lib="0" loc="(80,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB5"/> </comp> <comp lib="0" loc="(80,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CLIP_O"/> </comp> <comp lib="0" loc="(840,1310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TG"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1140)" name="D-latch"/> <comp lib="0" loc="(840,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="I1/32"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1740)" name="D-latch"/> <comp lib="1" loc="(670,700)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(794,148)" name="Text"> <a name="text" val="$2000"/> <a name="font" val="SansSerif plain 24"/> </comp> <comp lib="6" loc="(185,1464)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="4" loc="(420,460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(420,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,900)" name="D-latch"/> <comp lib="1" loc="(400,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(420,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(420,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(660,291)" name="Text"> <a name="text" val="!!! INVERSE LOGIC PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="4" loc="(420,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1220)" name="D-latch"/> <comp lib="6" loc="(633,600)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(840,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="VBL"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,290)" name="D-latch"/> <comp loc="(500,530)" name="D-latch"/> <comp lib="0" loc="(80,1470)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(420,380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(500,1060)" name="D-latch"/> <comp lib="1" loc="(710,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(650,620)" name="NOT Gate"/> <comp lib="0" loc="(80,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="&lt;DB7"/> </comp> <comp loc="(500,980)" name="D-latch"/> <comp lib="1" loc="(710,830)" name="NOT Gate"/> <comp lib="6" loc="(539,1132)" name="Text"> <a name="text" val="OBE"/> </comp> <comp lib="4" loc="(420,1310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(661,720)" name="Text"> <a name="text" val="!"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(340,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(420,990)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(840,1410)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="/TB"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="MUX"> <a name="circuit" val="MUX"/> <a name="clabel" val="MUX"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff586d" height="489" stroke="#000000" stroke-width="2" width="340" x="50" y="51"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="284">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="305">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="324">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="344">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="375" y="365">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="329" y="284">COLOR OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="384">/SPR0HIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="404">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="204">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="294">/PRIO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="425">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="463">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="255">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="444">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="324">BG COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="484">EXT IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="354">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="284">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="255">OBJ COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="324">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="484">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="88" y="224">SPR0_EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="513">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="363" y="214">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="184">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="104">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="505">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="484">2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="444">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="373" y="464">1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="115" y="104">DIRECT COLOR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="339" y="444">EXT OUT</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,75 56,67" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="265">/1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="274">2</text> <circ-port height="8" pin="130,70" width="8" x="46" y="506"/> <circ-port height="8" pin="130,110" width="8" x="46" y="496"/> <circ-port height="8" pin="130,150" width="8" x="46" y="486"/> <circ-port height="8" pin="130,190" width="8" x="46" y="476"/> <circ-port height="8" pin="130,230" width="8" x="46" y="66"/> <circ-port height="8" pin="130,340" width="8" x="46" y="316"/> <circ-port height="8" pin="130,390" width="8" x="46" y="326"/> <circ-port height="8" pin="130,440" width="8" x="46" y="336"/> <circ-port height="8" pin="130,490" width="8" x="46" y="346"/> <circ-port height="8" pin="130,680" width="8" x="46" y="246"/> <circ-port height="8" pin="130,740" width="8" x="46" y="256"/> <circ-port height="8" pin="130,800" width="8" x="46" y="266"/> <circ-port height="8" pin="130,860" width="8" x="46" y="276"/> <circ-port height="8" pin="130,920" width="8" x="46" y="286"/> <circ-port height="8" pin="130,990" width="8" x="46" y="96"/> <circ-port height="8" pin="130,1020" width="8" x="46" y="116"/> <circ-port height="8" pin="130,1050" width="8" x="46" y="136"/> <circ-port height="8" pin="130,1080" width="8" x="46" y="156"/> <circ-port height="8" pin="130,1110" width="8" x="46" y="176"/> <circ-port height="8" pin="130,1140" width="8" x="46" y="196"/> <circ-port height="8" pin="130,1230" width="8" x="46" y="376"/> <circ-port height="8" pin="130,1270" width="8" x="46" y="216"/> <circ-port height="8" pin="130,1310" width="8" x="46" y="396"/> <circ-port height="8" pin="130,1350" width="8" x="46" y="456"/> <circ-port height="8" pin="130,1390" width="8" x="46" y="416"/> <circ-port height="8" pin="130,1430" width="8" x="46" y="436"/> <circ-port height="10" pin="1250,90" width="10" x="385" y="435"/> <circ-port height="10" pin="1250,130" width="10" x="385" y="455"/> <circ-port height="10" pin="1250,170" width="10" x="385" y="475"/> <circ-port height="10" pin="1250,210" width="10" x="385" y="495"/> <circ-port height="10" pin="1250,370" width="10" x="385" y="275"/> <circ-port height="10" pin="1250,420" width="10" x="385" y="295"/> <circ-port height="10" pin="1250,470" width="10" x="385" y="315"/> <circ-port height="10" pin="1250,520" width="10" x="385" y="335"/> <circ-port height="10" pin="1250,570" width="10" x="385" y="355"/> <circ-port height="10" pin="1250,1250" width="10" x="385" y="205"/> <circ-anchor facing="east" height="6" width="6" x="387" y="47"/> </appear> <wire from="(920,360)" to="(970,360)"/> <wire from="(900,780)" to="(900,1050)"/> <wire from="(830,150)" to="(830,420)"/> <wire from="(620,90)" to="(1250,90)"/> <wire from="(830,420)" to="(890,420)"/> <wire from="(550,630)" to="(550,660)"/> <wire from="(570,1290)" to="(570,1310)"/> <wire from="(130,1110)" to="(160,1110)"/> <wire from="(130,1430)" to="(160,1430)"/> <wire from="(950,340)" to="(970,340)"/> <wire from="(1100,540)" to="(1100,590)"/> <wire from="(840,110)" to="(840,470)"/> <wire from="(550,660)" to="(570,660)"/> <wire from="(920,630)" to="(920,730)"/> <wire from="(650,210)" to="(650,500)"/> <wire from="(1010,630)" to="(1040,630)"/> <wire from="(130,490)" to="(470,490)"/> <wire from="(550,630)" to="(750,630)"/> <wire from="(950,790)" to="(950,850)"/> <wire from="(820,370)" to="(890,370)"/> <wire from="(1160,370)" to="(1250,370)"/> <wire from="(730,330)" to="(730,380)"/> <wire from="(950,390)" to="(950,440)"/> <wire from="(930,690)" to="(930,740)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(920,410)" to="(970,410)"/> <wire from="(540,1230)" to="(590,1230)"/> <wire from="(1010,810)" to="(1070,810)"/> <wire from="(850,70)" to="(850,520)"/> <wire from="(690,730)" to="(750,730)"/> <wire from="(900,530)" to="(900,660)"/> <wire from="(640,170)" to="(640,450)"/> <wire from="(380,740)" to="(490,740)"/> <wire from="(200,250)" to="(200,270)"/> <wire from="(420,1190)" to="(420,1220)"/> <wire from="(220,920)" to="(260,920)"/> <wire from="(790,710)" to="(810,710)"/> <wire from="(810,650)" to="(830,650)"/> <wire from="(950,390)" to="(970,390)"/> <wire from="(950,790)" to="(970,790)"/> <wire from="(40,1170)" to="(40,1460)"/> <wire from="(730,330)" to="(750,330)"/> <wire from="(280,600)" to="(300,600)"/> <wire from="(550,450)" to="(640,450)"/> <wire from="(240,720)" to="(260,720)"/> <wire from="(470,680)" to="(470,720)"/> <wire from="(570,1270)" to="(660,1270)"/> <wire from="(150,1040)" to="(160,1040)"/> <wire from="(480,370)" to="(480,420)"/> <wire from="(170,900)" to="(180,900)"/> <wire from="(1040,380)" to="(1040,630)"/> <wire from="(1100,590)" to="(1100,1140)"/> <wire from="(1160,420)" to="(1250,420)"/> <wire from="(660,1270)" to="(660,1320)"/> <wire from="(730,380)" to="(730,430)"/> <wire from="(950,440)" to="(950,490)"/> <wire from="(130,680)" to="(260,680)"/> <wire from="(1010,360)" to="(1090,360)"/> <wire from="(920,460)" to="(970,460)"/> <wire from="(220,1410)" to="(1110,1410)"/> <wire from="(440,610)" to="(500,610)"/> <wire from="(700,560)" to="(750,560)"/> <wire from="(130,860)" to="(190,860)"/> <wire from="(630,130)" to="(630,400)"/> <wire from="(240,1190)" to="(420,1190)"/> <wire from="(130,230)" to="(180,230)"/> <wire from="(300,860)" to="(420,860)"/> <wire from="(730,540)" to="(730,610)"/> <wire from="(280,390)" to="(280,600)"/> <wire from="(300,800)" to="(400,800)"/> <wire from="(420,510)" to="(420,860)"/> <wire from="(420,1240)" to="(420,1270)"/> <wire from="(1110,1270)" to="(1110,1410)"/> <wire from="(630,130)" to="(1250,130)"/> <wire from="(1060,480)" to="(1060,750)"/> <wire from="(130,1050)" to="(160,1050)"/> <wire from="(950,440)" to="(970,440)"/> <wire from="(480,560)" to="(700,560)"/> <wire from="(380,410)" to="(470,410)"/> <wire from="(550,680)" to="(570,680)"/> <wire from="(810,670)" to="(810,710)"/> <wire from="(1080,580)" to="(1090,580)"/> <wire from="(630,1240)" to="(650,1240)"/> <wire from="(730,540)" to="(750,540)"/> <wire from="(730,380)" to="(750,380)"/> <wire from="(130,390)" to="(280,390)"/> <wire from="(440,1210)" to="(460,1210)"/> <wire from="(950,730)" to="(950,790)"/> <wire from="(1080,580)" to="(1080,870)"/> <wire from="(300,740)" to="(380,740)"/> <wire from="(480,420)" to="(480,470)"/> <wire from="(730,270)" to="(730,330)"/> <wire from="(1160,470)" to="(1250,470)"/> <wire from="(920,740)" to="(930,740)"/> <wire from="(730,430)" to="(730,480)"/> <wire from="(1120,370)" to="(1140,370)"/> <wire from="(1010,410)" to="(1090,410)"/> <wire from="(240,660)" to="(240,720)"/> <wire from="(920,510)" to="(970,510)"/> <wire from="(300,680)" to="(360,680)"/> <wire from="(920,750)" to="(970,750)"/> <wire from="(280,390)" to="(470,390)"/> <wire from="(600,670)" to="(650,670)"/> <wire from="(130,920)" to="(180,920)"/> <wire from="(620,90)" to="(620,350)"/> <wire from="(400,460)" to="(400,800)"/> <wire from="(930,690)" to="(970,690)"/> <wire from="(150,1020)" to="(150,1040)"/> <wire from="(1010,690)" to="(1050,690)"/> <wire from="(420,1220)" to="(460,1220)"/> <wire from="(810,670)" to="(830,670)"/> <wire from="(950,490)" to="(970,490)"/> <wire from="(950,730)" to="(970,730)"/> <wire from="(500,350)" to="(530,350)"/> <wire from="(570,1310)" to="(590,1310)"/> <wire from="(730,430)" to="(750,430)"/> <wire from="(1170,240)" to="(1170,550)"/> <wire from="(240,900)" to="(260,900)"/> <wire from="(520,610)" to="(550,610)"/> <wire from="(200,270)" to="(730,270)"/> <wire from="(240,660)" to="(260,660)"/> <wire from="(700,560)" to="(700,680)"/> <wire from="(150,1060)" to="(160,1060)"/> <wire from="(480,470)" to="(480,520)"/> <wire from="(1010,870)" to="(1080,870)"/> <wire from="(950,490)" to="(950,610)"/> <wire from="(730,480)" to="(730,540)"/> <wire from="(1160,520)" to="(1250,520)"/> <wire from="(550,400)" to="(630,400)"/> <wire from="(1070,530)" to="(1090,530)"/> <wire from="(930,760)" to="(930,810)"/> <wire from="(1170,550)" to="(1190,550)"/> <wire from="(1120,420)" to="(1140,420)"/> <wire from="(1010,460)" to="(1090,460)"/> <wire from="(130,800)" to="(190,800)"/> <wire from="(130,1310)" to="(440,1310)"/> <wire from="(40,1170)" to="(1310,1170)"/> <wire from="(130,190)" to="(820,190)"/> <wire from="(380,410)" to="(380,740)"/> <wire from="(790,350)" to="(890,350)"/> <wire from="(530,730)" to="(630,730)"/> <wire from="(640,170)" to="(1250,170)"/> <wire from="(260,340)" to="(260,620)"/> <wire from="(570,1330)" to="(570,1350)"/> <wire from="(570,1250)" to="(570,1270)"/> <wire from="(130,990)" to="(160,990)"/> <wire from="(130,1390)" to="(160,1390)"/> <wire from="(810,610)" to="(810,650)"/> <wire from="(500,400)" to="(530,400)"/> <wire from="(1080,1240)" to="(1090,1240)"/> <wire from="(730,480)" to="(750,480)"/> <wire from="(130,1080)" to="(150,1080)"/> <wire from="(480,520)" to="(480,560)"/> <wire from="(1060,480)" to="(1090,480)"/> <wire from="(950,670)" to="(950,730)"/> <wire from="(550,680)" to="(550,920)"/> <wire from="(240,840)" to="(240,900)"/> <wire from="(920,760)" to="(930,760)"/> <wire from="(1120,470)" to="(1140,470)"/> <wire from="(1010,510)" to="(1090,510)"/> <wire from="(900,380)" to="(900,430)"/> <wire from="(360,360)" to="(360,680)"/> <wire from="(130,150)" to="(830,150)"/> <wire from="(420,510)" to="(470,510)"/> <wire from="(1050,430)" to="(1090,430)"/> <wire from="(40,1460)" to="(1310,1460)"/> <wire from="(210,860)" to="(260,860)"/> <wire from="(790,400)" to="(890,400)"/> <wire from="(630,730)" to="(670,730)"/> <wire from="(650,500)" to="(750,500)"/> <wire from="(360,360)" to="(470,360)"/> <wire from="(360,680)" to="(470,680)"/> <wire from="(420,1240)" to="(460,1240)"/> <wire from="(1100,390)" to="(1100,440)"/> <wire from="(950,670)" to="(970,670)"/> <wire from="(1100,1270)" to="(1100,1320)"/> <wire from="(500,450)" to="(530,450)"/> <wire from="(570,1250)" to="(590,1250)"/> <wire from="(570,1330)" to="(590,1330)"/> <wire from="(730,610)" to="(750,610)"/> <wire from="(240,840)" to="(260,840)"/> <wire from="(260,340)" to="(470,340)"/> <wire from="(730,610)" to="(730,710)"/> <wire from="(870,660)" to="(900,660)"/> <wire from="(160,1400)" to="(180,1400)"/> <wire from="(550,350)" to="(620,350)"/> <wire from="(130,1230)" to="(460,1230)"/> <wire from="(130,110)" to="(840,110)"/> <wire from="(440,1250)" to="(440,1310)"/> <wire from="(1120,520)" to="(1140,520)"/> <wire from="(900,430)" to="(900,480)"/> <wire from="(1040,380)" to="(1090,380)"/> <wire from="(1010,750)" to="(1060,750)"/> <wire from="(1070,530)" to="(1070,810)"/> <wire from="(160,1420)" to="(160,1430)"/> <wire from="(790,450)" to="(890,450)"/> <wire from="(1050,430)" to="(1050,690)"/> <wire from="(850,520)" to="(890,520)"/> <wire from="(790,560)" to="(1090,560)"/> <wire from="(640,450)" to="(750,450)"/> <wire from="(550,610)" to="(550,630)"/> <wire from="(130,1270)" to="(420,1270)"/> <wire from="(440,610)" to="(440,1210)"/> <wire from="(630,690)" to="(630,730)"/> <wire from="(1100,440)" to="(1100,490)"/> <wire from="(650,210)" to="(1250,210)"/> <wire from="(500,500)" to="(530,500)"/> <wire from="(1080,1260)" to="(1090,1260)"/> <wire from="(240,900)" to="(240,1190)"/> <wire from="(240,240)" to="(240,660)"/> <wire from="(950,240)" to="(950,340)"/> <wire from="(920,770)" to="(920,870)"/> <wire from="(1120,570)" to="(1190,570)"/> <wire from="(470,720)" to="(490,720)"/> <wire from="(440,1250)" to="(460,1250)"/> <wire from="(130,1020)" to="(150,1020)"/> <wire from="(130,70)" to="(850,70)"/> <wire from="(950,610)" to="(950,670)"/> <wire from="(130,1140)" to="(1100,1140)"/> <wire from="(1310,1170)" to="(1310,1460)"/> <wire from="(240,780)" to="(240,840)"/> <wire from="(570,1290)" to="(650,1290)"/> <wire from="(900,480)" to="(900,530)"/> <wire from="(920,870)" to="(970,870)"/> <wire from="(920,630)" to="(970,630)"/> <wire from="(630,400)" to="(750,400)"/> <wire from="(840,470)" to="(890,470)"/> <wire from="(660,1320)" to="(1100,1320)"/> <wire from="(300,920)" to="(550,920)"/> <wire from="(160,1390)" to="(160,1400)"/> <wire from="(130,1350)" to="(570,1350)"/> <wire from="(210,800)" to="(260,800)"/> <wire from="(790,500)" to="(890,500)"/> <wire from="(550,500)" to="(650,500)"/> <wire from="(930,810)" to="(970,810)"/> <wire from="(150,1060)" to="(150,1080)"/> <wire from="(340,610)" to="(440,610)"/> <wire from="(200,240)" to="(240,240)"/> <wire from="(260,620)" to="(300,620)"/> <wire from="(790,610)" to="(810,610)"/> <wire from="(1100,490)" to="(1100,540)"/> <wire from="(950,850)" to="(970,850)"/> <wire from="(950,610)" to="(970,610)"/> <wire from="(630,690)" to="(650,690)"/> <wire from="(730,710)" to="(750,710)"/> <wire from="(240,780)" to="(260,780)"/> <wire from="(630,1320)" to="(660,1320)"/> <wire from="(950,240)" to="(1170,240)"/> <wire from="(160,1070)" to="(160,1110)"/> <wire from="(160,990)" to="(160,1030)"/> <wire from="(130,440)" to="(470,440)"/> <wire from="(160,1420)" to="(180,1420)"/> <wire from="(1120,1250)" to="(1250,1250)"/> <wire from="(180,1050)" to="(900,1050)"/> <wire from="(620,350)" to="(750,350)"/> <wire from="(820,190)" to="(820,370)"/> <wire from="(650,1240)" to="(650,1290)"/> <wire from="(950,340)" to="(950,390)"/> <wire from="(400,460)" to="(470,460)"/> <wire from="(130,340)" to="(260,340)"/> <wire from="(690,680)" to="(700,680)"/> <wire from="(130,740)" to="(260,740)"/> <wire from="(240,240)" to="(950,240)"/> <wire from="(1230,570)" to="(1250,570)"/> <comp loc="(790,390)" name="D-latch"/> <comp lib="2" loc="(920,460)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> <comp lib="6" loc="(742,624)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(1250,210)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT3_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(500,350)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(530,730)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp loc="(790,340)" name="D-latch"/> <comp lib="1" loc="(540,1230)" name="NOR Gate"> <a name="size" val="70"/> </comp> <comp lib="1" loc="(550,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(900,780)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="6" loc="(708,48)" name="Text"> <a name="text" val="MUX - select one of 4 sources for final color output"/> <a name="font" val="SansSerif plain 28"/> </comp> <comp loc="(1010,400)" name="D-latch"/> <comp lib="2" loc="(920,510)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(741,723)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1250,520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(210,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(500,400)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1250,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1010,350)" name="D-latch"/> <comp loc="(790,720)" name="D-latch"/> <comp lib="2" loc="(500,450)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC3"/> </comp> <comp lib="0" loc="(130,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(130,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT2_IN"/> </comp> <comp lib="6" loc="(1094,1207)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="0" loc="(1250,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT2_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(508,598)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="6" loc="(757,1212)" name="Text"> <a name="text" val="STRIKE TEST"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp loc="(1010,680)" name="D-latch"/> <comp loc="(790,620)" name="D-latch"/> <comp lib="6" loc="(680,555)" name="Text"> <a name="text" val="OCOL"/> </comp> <comp loc="(300,790)" name="D-latch"/> <comp lib="2" loc="(920,410)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC2"/> </comp> <comp lib="6" loc="(1134,236)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="6" loc="(1100,329)" name="Text"> <a name="text" val="Direct/Prev"/> </comp> <comp loc="(1010,500)" name="D-latch"/> <comp lib="0" loc="(130,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO4"/> </comp> <comp lib="6" loc="(883,651)" name="Text"> <a name="text" val="EXT"/> </comp> <comp lib="0" loc="(130,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1250,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT1_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(600,670)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="2" loc="(1120,570)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT0_IN"/> </comp> <comp loc="(1010,800)" name="D-latch"/> <comp loc="(790,490)" name="D-latch"/> <comp lib="0" loc="(130,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT1_IN"/> </comp> <comp loc="(300,730)" name="D-latch"/> <comp lib="0" loc="(130,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO2"/> </comp> <comp lib="1" loc="(210,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1120,470)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(1230,560)" name="D-latch"/> <comp lib="0" loc="(180,1050)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(1160,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,610)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(127,969)" name="Text"> <a name="text" val="TH contain directly loaded color"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(241,1402)" name="Text"> <a name="text" val="R2'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1080)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO3"/> </comp> <comp lib="0" loc="(130,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZPRIO"/> </comp> <comp lib="1" loc="(1160,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC1"/> </comp> <comp loc="(1010,860)" name="D-latch"/> <comp loc="(220,910)" name="D-latch"/> <comp loc="(1010,740)" name="D-latch"/> <comp lib="2" loc="(500,500)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(920,360)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR0_EV"/> </comp> <comp lib="1" loc="(690,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(130,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(170,900)" name="Constant"/> <comp loc="(1010,450)" name="D-latch"/> <comp lib="0" loc="(1080,1260)" name="Constant"/> <comp lib="0" loc="(1250,1250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(482,315)" name="Text"> <a name="text" val="Sprite/background"/> </comp> <comp lib="1" loc="(1160,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(300,850)" name="D-latch"/> <comp lib="1" loc="(520,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(902,326)" name="Text"> <a name="text" val="External/Prev"/> </comp> <comp lib="2" loc="(1120,520)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(705,286)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZCOL2"/> </comp> <comp lib="1" loc="(1160,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1020)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO1"/> </comp> <comp lib="1" loc="(630,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1250,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT0_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGC0"/> </comp> <comp loc="(300,910)" name="D-latch"/> <comp lib="0" loc="(130,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TH/MUX"/> </comp> <comp lib="0" loc="(130,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO0"/> </comp> <comp lib="2" loc="(1120,420)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(220,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(1120,1250)" name="Multiplexer"/> <comp lib="0" loc="(130,1230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SPR0HIT"/> </comp> <comp loc="(300,670)" name="D-latch"/> <comp loc="(790,440)" name="D-latch"/> <comp lib="0" loc="(1250,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1120,370)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="1" loc="(550,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,570)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAL4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,230)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(870,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="1" loc="(550,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1010,620)" name="D-latch"/> <comp lib="6" loc="(678,718)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(1080,1240)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(130,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/ZCOL0"/> </comp> <comp lib="1" loc="(630,1240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(790,550)" name="D-latch"/> <comp lib="0" loc="(130,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT3_IN"/> </comp> </circuit> <circuit name="OAM_EVAL"> <a name="circuit" val="OAM_EVAL"/> <a name="clabel" val="OAM EVAL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#69ff1b" height="400" stroke="#000000" stroke-width="2" width="210" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="404">SPR0_EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="227" y="385">PD/FIFO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="238" y="184">OV0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="240" y="274">0V3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="232" y="94">OMFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="289">V POS BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="389">OBJ BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="254">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="324">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="354">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="423">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="234">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="174">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="194">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="154">S/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="134">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="94">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="214">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="114">O8/16</text> <polyline fill="none" points="51,55 55,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="52,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,55 56,64" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,30" width="8" x="46" y="56"/> <circ-port height="8" pin="90,200" width="8" x="46" y="206"/> <circ-port height="8" pin="90,310" width="8" x="46" y="86"/> <circ-port height="8" pin="90,380" width="8" x="46" y="186"/> <circ-port height="8" pin="90,420" width="8" x="46" y="226"/> <circ-port height="8" pin="90,480" width="8" x="46" y="126"/> <circ-port height="8" pin="90,580" width="8" x="46" y="146"/> <circ-port height="8" pin="90,670" width="8" x="46" y="166"/> <circ-port height="8" pin="90,720" width="8" x="46" y="106"/> <circ-port height="8" pin="90,1100" width="8" x="46" y="346"/> <circ-port height="8" pin="90,1140" width="8" x="46" y="356"/> <circ-port height="8" pin="90,1180" width="8" x="46" y="366"/> <circ-port height="8" pin="90,1220" width="8" x="46" y="376"/> <circ-port height="8" pin="90,1260" width="8" x="46" y="386"/> <circ-port height="8" pin="90,1300" width="8" x="46" y="396"/> <circ-port height="8" pin="90,1340" width="8" x="46" y="406"/> <circ-port height="8" pin="90,1380" width="8" x="46" y="416"/> <circ-port height="8" pin="90,770" width="8" x="46" y="246"/> <circ-port height="8" pin="90,810" width="8" x="46" y="256"/> <circ-port height="8" pin="90,850" width="8" x="46" y="266"/> <circ-port height="8" pin="90,890" width="8" x="46" y="276"/> <circ-port height="8" pin="90,930" width="8" x="46" y="286"/> <circ-port height="8" pin="90,970" width="8" x="46" y="296"/> <circ-port height="8" pin="90,1010" width="8" x="46" y="306"/> <circ-port height="8" pin="90,1050" width="8" x="46" y="316"/> <circ-port height="10" pin="980,110" width="10" x="255" y="375"/> <circ-port height="10" pin="980,420" width="10" x="255" y="85"/> <circ-port height="10" pin="980,540" width="10" x="255" y="395"/> <circ-port height="10" pin="980,960" width="10" x="255" y="175"/> <circ-port height="10" pin="980,990" width="10" x="255" y="205"/> <circ-port height="10" pin="980,1020" width="10" x="255" y="235"/> <circ-port height="10" pin="980,1050" width="10" x="255" y="265"/> <circ-anchor facing="east" height="6" width="6" x="257" y="37"/> </appear> <wire from="(260,1280)" to="(260,1410)"/> <wire from="(260,1280)" to="(760,1280)"/> <wire from="(120,440)" to="(170,440)"/> <wire from="(90,970)" to="(140,970)"/> <wire from="(620,1110)" to="(660,1110)"/> <wire from="(870,480)" to="(870,700)"/> <wire from="(120,1120)" to="(360,1120)"/> <wire from="(430,1310)" to="(430,1330)"/> <wire from="(880,410)" to="(920,410)"/> <wire from="(260,470)" to="(870,470)"/> <wire from="(320,1050)" to="(360,1050)"/> <wire from="(490,960)" to="(980,960)"/> <wire from="(310,210)" to="(530,210)"/> <wire from="(880,1150)" to="(900,1150)"/> <wire from="(860,410)" to="(880,410)"/> <wire from="(190,260)" to="(350,260)"/> <wire from="(570,360)" to="(590,360)"/> <wire from="(350,260)" to="(510,260)"/> <wire from="(730,360)" to="(750,360)"/> <wire from="(510,260)" to="(670,260)"/> <wire from="(410,360)" to="(430,360)"/> <wire from="(150,470)" to="(150,520)"/> <wire from="(130,50)" to="(130,100)"/> <wire from="(600,1080)" to="(600,1140)"/> <wire from="(220,810)" to="(220,930)"/> <wire from="(440,70)" to="(510,70)"/> <wire from="(730,130)" to="(740,130)"/> <wire from="(160,70)" to="(420,70)"/> <wire from="(320,1050)" to="(320,1310)"/> <wire from="(310,670)" to="(370,670)"/> <wire from="(260,1410)" to="(760,1410)"/> <wire from="(240,910)" to="(360,910)"/> <wire from="(740,730)" to="(740,1120)"/> <wire from="(90,1180)" to="(140,1180)"/> <wire from="(90,850)" to="(200,850)"/> <wire from="(260,480)" to="(260,700)"/> <wire from="(510,160)" to="(510,190)"/> <wire from="(170,310)" to="(210,310)"/> <wire from="(430,560)" to="(530,560)"/> <wire from="(230,450)" to="(270,450)"/> <wire from="(510,160)" to="(610,160)"/> <wire from="(130,40)" to="(160,40)"/> <wire from="(580,1110)" to="(580,1150)"/> <wire from="(90,480)" to="(120,480)"/> <wire from="(200,1200)" to="(360,1200)"/> <wire from="(90,720)" to="(120,720)"/> <wire from="(670,110)" to="(690,110)"/> <wire from="(320,1360)" to="(340,1360)"/> <wire from="(510,110)" to="(530,110)"/> <wire from="(510,190)" to="(530,190)"/> <wire from="(150,470)" to="(170,470)"/> <wire from="(490,1110)" to="(580,1110)"/> <wire from="(160,930)" to="(160,990)"/> <wire from="(710,1130)" to="(760,1130)"/> <wire from="(120,460)" to="(170,460)"/> <wire from="(880,410)" to="(880,730)"/> <wire from="(730,540)" to="(980,540)"/> <wire from="(490,1340)" to="(740,1340)"/> <wire from="(180,970)" to="(360,970)"/> <wire from="(90,1300)" to="(200,1300)"/> <wire from="(870,20)" to="(870,240)"/> <wire from="(650,360)" to="(690,360)"/> <wire from="(120,460)" to="(120,480)"/> <wire from="(170,220)" to="(170,310)"/> <wire from="(240,1380)" to="(340,1380)"/> <wire from="(260,250)" to="(870,250)"/> <wire from="(150,260)" to="(190,260)"/> <wire from="(550,570)" to="(550,590)"/> <wire from="(330,360)" to="(370,360)"/> <wire from="(560,1140)" to="(560,1160)"/> <wire from="(490,360)" to="(530,360)"/> <wire from="(160,40)" to="(190,40)"/> <wire from="(90,1010)" to="(120,1010)"/> <wire from="(640,1090)" to="(660,1090)"/> <wire from="(750,400)" to="(770,400)"/> <wire from="(250,300)" to="(270,300)"/> <wire from="(90,670)" to="(290,670)"/> <wire from="(750,420)" to="(750,430)"/> <wire from="(590,180)" to="(590,190)"/> <wire from="(90,200)" to="(280,200)"/> <wire from="(430,430)" to="(750,430)"/> <wire from="(240,770)" to="(240,910)"/> <wire from="(730,110)" to="(980,110)"/> <wire from="(180,1180)" to="(360,1180)"/> <wire from="(710,570)" to="(710,660)"/> <wire from="(120,1030)" to="(360,1030)"/> <wire from="(710,140)" to="(710,170)"/> <wire from="(710,1100)" to="(710,1130)"/> <wire from="(260,700)" to="(870,700)"/> <wire from="(190,260)" to="(190,290)"/> <wire from="(260,20)" to="(260,240)"/> <wire from="(140,310)" to="(170,310)"/> <wire from="(960,420)" to="(980,420)"/> <wire from="(90,420)" to="(120,420)"/> <wire from="(90,1140)" to="(120,1140)"/> <wire from="(570,190)" to="(590,190)"/> <wire from="(90,890)" to="(180,890)"/> <wire from="(430,450)" to="(430,560)"/> <wire from="(600,1140)" to="(760,1140)"/> <wire from="(430,1330)" to="(450,1330)"/> <wire from="(90,30)" to="(110,30)"/> <wire from="(190,290)" to="(210,290)"/> <wire from="(150,380)" to="(150,430)"/> <wire from="(90,1100)" to="(360,1100)"/> <wire from="(310,580)" to="(370,580)"/> <wire from="(580,1150)" to="(760,1150)"/> <wire from="(380,1380)" to="(430,1380)"/> <wire from="(140,720)" to="(640,720)"/> <wire from="(350,630)" to="(350,650)"/> <wire from="(180,890)" to="(180,970)"/> <wire from="(350,260)" to="(350,340)"/> <wire from="(490,1080)" to="(600,1080)"/> <wire from="(120,1120)" to="(120,1140)"/> <wire from="(510,260)" to="(510,340)"/> <wire from="(320,1310)" to="(430,1310)"/> <wire from="(430,1350)" to="(430,1380)"/> <wire from="(670,260)" to="(670,340)"/> <wire from="(160,40)" to="(160,70)"/> <wire from="(840,1150)" to="(860,1150)"/> <wire from="(670,70)" to="(670,110)"/> <wire from="(90,310)" to="(120,310)"/> <wire from="(200,950)" to="(360,950)"/> <wire from="(270,300)" to="(430,300)"/> <wire from="(90,1260)" to="(180,1260)"/> <wire from="(590,340)" to="(610,340)"/> <wire from="(590,180)" to="(610,180)"/> <wire from="(670,340)" to="(690,340)"/> <wire from="(430,300)" to="(590,300)"/> <wire from="(750,420)" to="(770,420)"/> <wire from="(270,340)" to="(290,340)"/> <wire from="(350,340)" to="(370,340)"/> <wire from="(430,340)" to="(450,340)"/> <wire from="(140,1140)" to="(140,1180)"/> <wire from="(510,340)" to="(530,340)"/> <wire from="(90,770)" to="(240,770)"/> <wire from="(490,160)" to="(510,160)"/> <wire from="(510,70)" to="(510,110)"/> <wire from="(560,1160)" to="(760,1160)"/> <wire from="(160,1160)" to="(360,1160)"/> <wire from="(160,1160)" to="(160,1220)"/> <wire from="(570,560)" to="(690,560)"/> <wire from="(590,410)" to="(770,410)"/> <wire from="(620,70)" to="(670,70)"/> <wire from="(650,170)" to="(710,170)"/> <wire from="(870,250)" to="(870,470)"/> <wire from="(620,1050)" to="(980,1050)"/> <wire from="(180,1180)" to="(180,1260)"/> <wire from="(120,1010)" to="(120,1030)"/> <wire from="(900,430)" to="(900,450)"/> <wire from="(260,240)" to="(870,240)"/> <wire from="(260,480)" to="(870,480)"/> <wire from="(350,600)" to="(350,630)"/> <wire from="(750,360)" to="(750,400)"/> <wire from="(140,1010)" to="(360,1010)"/> <wire from="(200,1200)" to="(200,1300)"/> <wire from="(740,1180)" to="(760,1180)"/> <wire from="(90,1380)" to="(240,1380)"/> <wire from="(430,1350)" to="(450,1350)"/> <wire from="(430,450)" to="(900,450)"/> <wire from="(150,430)" to="(170,430)"/> <wire from="(410,590)" to="(550,590)"/> <wire from="(350,880)" to="(360,880)"/> <wire from="(340,630)" to="(350,630)"/> <wire from="(640,720)" to="(640,1090)"/> <wire from="(90,580)" to="(290,580)"/> <wire from="(590,360)" to="(590,410)"/> <wire from="(220,1220)" to="(220,1340)"/> <wire from="(90,930)" to="(160,930)"/> <wire from="(570,540)" to="(580,540)"/> <wire from="(430,360)" to="(430,430)"/> <wire from="(570,130)" to="(690,130)"/> <wire from="(90,380)" to="(150,380)"/> <wire from="(130,100)" to="(190,100)"/> <wire from="(240,1240)" to="(240,1380)"/> <wire from="(240,1240)" to="(360,1240)"/> <wire from="(760,1280)" to="(760,1410)"/> <wire from="(170,220)" to="(280,220)"/> <wire from="(410,660)" to="(710,660)"/> <wire from="(120,420)" to="(120,440)"/> <wire from="(260,250)" to="(260,470)"/> <wire from="(270,360)" to="(270,450)"/> <wire from="(490,1020)" to="(980,1020)"/> <wire from="(120,520)" to="(150,520)"/> <wire from="(900,430)" to="(920,430)"/> <wire from="(590,360)" to="(610,360)"/> <wire from="(140,1140)" to="(360,1140)"/> <wire from="(690,1100)" to="(710,1100)"/> <wire from="(200,850)" to="(200,950)"/> <wire from="(270,360)" to="(290,360)"/> <wire from="(350,600)" to="(370,600)"/> <wire from="(430,360)" to="(450,360)"/> <wire from="(740,1180)" to="(740,1340)"/> <wire from="(810,410)" to="(840,410)"/> <wire from="(490,1140)" to="(560,1140)"/> <wire from="(220,930)" to="(360,930)"/> <wire from="(490,1050)" to="(620,1050)"/> <wire from="(490,1170)" to="(760,1170)"/> <wire from="(90,1220)" to="(160,1220)"/> <wire from="(680,540)" to="(690,540)"/> <wire from="(520,540)" to="(530,540)"/> <wire from="(90,810)" to="(220,810)"/> <wire from="(740,730)" to="(880,730)"/> <wire from="(260,20)" to="(870,20)"/> <wire from="(90,1050)" to="(320,1050)"/> <wire from="(490,990)" to="(980,990)"/> <wire from="(490,130)" to="(530,130)"/> <wire from="(590,300)" to="(590,340)"/> <wire from="(510,70)" to="(600,70)"/> <wire from="(270,450)" to="(430,450)"/> <wire from="(740,1120)" to="(760,1120)"/> <wire from="(350,650)" to="(370,650)"/> <wire from="(140,970)" to="(140,1010)"/> <wire from="(270,300)" to="(270,340)"/> <wire from="(430,300)" to="(430,340)"/> <wire from="(620,1050)" to="(620,1110)"/> <wire from="(220,1220)" to="(360,1220)"/> <wire from="(160,990)" to="(360,990)"/> <wire from="(90,1340)" to="(220,1340)"/> <wire from="(730,560)" to="(740,560)"/> <comp lib="0" loc="(490,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/OVZ"/> </comp> <comp lib="0" loc="(90,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="6" loc="(600,354)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="1" loc="(840,1150)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="6" loc="(848,394)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="0" loc="(90,1180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="6" loc="(522,203)" name="Text"> <a name="text" val="9"/> </comp> <comp loc="(380,1370)" name="D-latch"/> <comp lib="0" loc="(190,100)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(650,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="18"/> </comp> <comp lib="0" loc="(520,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="0" loc="(90,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(90,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(310,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(709,524)" name="Text"> <a name="text" val="DFF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(775,272)" name="Text"> <a name="text" val="COPY ENABLE COUNTER"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(90,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(980,960)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="1" loc="(860,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(980,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OMFG"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,1300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="1" loc="(230,450)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="29"/> </comp> <comp lib="0" loc="(120,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/OVZ"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="4" loc="(730,110)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(124,667)" name="Text"/> <comp lib="0" loc="(90,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> <comp lib="0" loc="(90,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp lib="1" loc="(960,420)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="12"/> </comp> <comp lib="0" loc="(90,1380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="4" loc="(730,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="0" loc="(980,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(900,1150)" name="Tunnel"> <a name="label" val="/OVZ"/> </comp> <comp lib="1" loc="(620,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(980,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR0_EV"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(777,44)" name="Text"> <a name="text" val="PD/FIFO CIRCUIT"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(130,706)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(690,1100)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(90,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="1" loc="(810,410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(678,354)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="6" loc="(299,566)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="6" loc="(473,64)" name="Text"> <a name="text" val="/PCLK2"/> </comp> <comp lib="0" loc="(90,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(980,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD/FIFO"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(980,1050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(140,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="6" loc="(520,355)" name="Text"> <a name="text" val="4"/> </comp> <comp loc="(330,350)" name="D-latch"/> <comp lib="0" loc="(150,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(190,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(90,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="0" loc="(90,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="1" loc="(410,660)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="2"/> </comp> <comp lib="6" loc="(371,276)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(140,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(880,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(570,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="S/EV"/> </comp> <comp loc="(570,200)" name="D-latch"/> <comp lib="6" loc="(651,64)" name="Text"> <a name="text" val="PCLK2"/> </comp> <comp lib="0" loc="(110,30)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(306,443)" name="Text"> <a name="text" val="DO_COPY"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(350,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(410,350)" name="D-latch"/> <comp lib="0" loc="(680,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(362,353)" name="Text"> <a name="text" val="2"/> </comp> <comp loc="(570,120)" name="D-latch"/> <comp lib="6" loc="(709,95)" name="Text"> <a name="text" val="DFF3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(441,354)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(320,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(207,418)" name="Text"> <a name="text" val="copy condition"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(410,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="24"/> </comp> <comp lib="1" loc="(310,210)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="20"/> </comp> <comp lib="0" loc="(90,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp loc="(490,350)" name="D-latch"/> <comp lib="6" loc="(633,691)" name="Text"> <a name="text" val="SPRITE 0 NOT FOUND ON CURRENT SCANLINE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="6" loc="(280,353)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(980,1020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(250,300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="19"/> </comp> <comp lib="0" loc="(90,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(90,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp loc="(570,350)" name="D-latch"/> <comp loc="(490,860)" name="OAM_SUBSTRACTOR"/> <comp lib="6" loc="(332,1374)" name="Text"> <a name="text" val="7"/> </comp> <comp loc="(650,350)" name="D-latch"/> <comp loc="(730,350)" name="D-latch"/> <comp lib="1" loc="(310,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(90,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp lib="6" loc="(131,295)" name="Text"> <a name="text" val="22"/> </comp> <comp lib="6" loc="(306,294)" name="Text"> <a name="text" val="COPY_STEP"/> </comp> <comp lib="6" loc="(134,677)" name="Text"/> <comp lib="1" loc="(490,1340)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(551,523)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(298,659)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="6" loc="(794,1154)" name="Text"> <a name="text" val="OVZ"/> </comp> <comp lib="6" loc="(584,1390)" name="Text"> <a name="text" val="IN RANGE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(490,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(870,1138)" name="Text"> <a name="text" val="29"/> </comp> <comp lib="6" loc="(519,125)" name="Text"> <a name="text" val="8"/> </comp> </circuit> <circuit name="OAM_SUBSTRACTOR"> <a name="circuit" val="OAM_SUBSTRACTOR"/> <a name="clabel" val="OAM SUBSTRACTOR"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M241,86 Q245,96 249,86" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff003b" height="401" stroke="#000000" stroke-width="2" width="130" x="230" y="70"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="314">B0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="335">B1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="354">B2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="374">B3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="394">B4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="414">B5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="434">B6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="454">B7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="254" y="95">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="124">A0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="144">A1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="164">A2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="184">A3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="204">A4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="224">A5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="244">A6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="245" y="264">A7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="174">S0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="204">S1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="234">S2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="264">S3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="294">S4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="324">S5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="354">S6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="343" y="384">S7</text> <polyline fill="none" points="230,85 236,85" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="230,95 235,95" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="236,86 236,95" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="294" y="66">OV = V - OB</text> <circ-port height="8" pin="80,80" width="8" x="226" y="86"/> <circ-port height="8" pin="80,130" width="8" x="226" y="306"/> <circ-port height="8" pin="80,420" width="8" x="226" y="326"/> <circ-port height="8" pin="80,550" width="8" x="226" y="346"/> <circ-port height="8" pin="80,840" width="8" x="226" y="366"/> <circ-port height="8" pin="80,970" width="8" x="226" y="386"/> <circ-port height="8" pin="80,1260" width="8" x="226" y="406"/> <circ-port height="8" pin="80,1390" width="8" x="226" y="426"/> <circ-port height="8" pin="80,1680" width="8" x="226" y="446"/> <circ-port height="8" pin="80,190" width="8" x="226" y="116"/> <circ-port height="8" pin="80,480" width="8" x="226" y="136"/> <circ-port height="8" pin="80,610" width="8" x="226" y="156"/> <circ-port height="8" pin="80,900" width="8" x="226" y="176"/> <circ-port height="8" pin="80,1030" width="8" x="226" y="196"/> <circ-port height="8" pin="80,1320" width="8" x="226" y="216"/> <circ-port height="8" pin="80,1450" width="8" x="226" y="236"/> <circ-port height="8" pin="80,1740" width="8" x="226" y="256"/> <circ-port height="10" pin="580,140" width="10" x="355" y="165"/> <circ-port height="10" pin="580,260" width="10" x="355" y="195"/> <circ-port height="10" pin="580,560" width="10" x="355" y="225"/> <circ-port height="10" pin="580,680" width="10" x="355" y="255"/> <circ-port height="10" pin="580,980" width="10" x="355" y="285"/> <circ-port height="10" pin="580,1100" width="10" x="355" y="315"/> <circ-port height="10" pin="580,1400" width="10" x="355" y="345"/> <circ-port height="10" pin="580,1520" width="10" x="355" y="375"/> <circ-anchor facing="east" height="6" width="6" x="357" y="67"/> </appear> <wire from="(270,1460)" to="(330,1460)"/> <wire from="(520,1220)" to="(520,1360)"/> <wire from="(310,1090)" to="(310,1220)"/> <wire from="(310,520)" to="(490,520)"/> <wire from="(80,1680)" to="(130,1680)"/> <wire from="(190,1260)" to="(190,1340)"/> <wire from="(330,1690)" to="(430,1690)"/> <wire from="(190,920)" to="(230,920)"/> <wire from="(190,840)" to="(230,840)"/> <wire from="(310,800)" to="(350,800)"/> <wire from="(390,800)" to="(430,800)"/> <wire from="(390,1520)" to="(430,1520)"/> <wire from="(110,950)" to="(110,1240)"/> <wire from="(380,1040)" to="(410,1040)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(410,1000)" to="(430,1000)"/> <wire from="(390,740)" to="(410,740)"/> <wire from="(410,1080)" to="(430,1080)"/> <wire from="(470,1700)" to="(490,1700)"/> <wire from="(330,200)" to="(330,310)"/> <wire from="(210,1410)" to="(210,1450)"/> <wire from="(330,330)" to="(330,370)"/> <wire from="(490,1110)" to="(490,1280)"/> <wire from="(110,1660)" to="(130,1660)"/> <wire from="(410,1290)" to="(410,1330)"/> <wire from="(170,840)" to="(190,840)"/> <wire from="(210,1280)" to="(230,1280)"/> <wire from="(210,480)" to="(230,480)"/> <wire from="(290,140)" to="(430,140)"/> <wire from="(330,1210)" to="(330,1270)"/> <wire from="(410,810)" to="(410,870)"/> <wire from="(80,900)" to="(210,900)"/> <wire from="(270,1270)" to="(330,1270)"/> <wire from="(290,810)" to="(350,810)"/> <wire from="(290,1530)" to="(350,1530)"/> <wire from="(290,560)" to="(290,690)"/> <wire from="(80,130)" to="(130,130)"/> <wire from="(310,100)" to="(310,250)"/> <wire from="(190,1390)" to="(190,1470)"/> <wire from="(490,940)" to="(490,970)"/> <wire from="(190,1050)" to="(230,1050)"/> <wire from="(190,970)" to="(230,970)"/> <wire from="(310,1090)" to="(350,1090)"/> <wire from="(110,80)" to="(110,110)"/> <wire from="(470,1410)" to="(510,1410)"/> <wire from="(470,1090)" to="(510,1090)"/> <wire from="(490,1530)" to="(510,1530)"/> <wire from="(560,560)" to="(580,560)"/> <wire from="(560,1520)" to="(580,1520)"/> <wire from="(330,1040)" to="(360,1040)"/> <wire from="(330,730)" to="(350,730)"/> <wire from="(330,1210)" to="(350,1210)"/> <wire from="(330,330)" to="(350,330)"/> <wire from="(490,1360)" to="(520,1360)"/> <wire from="(410,1290)" to="(430,1290)"/> <wire from="(410,810)" to="(430,810)"/> <wire from="(410,1210)" to="(430,1210)"/> <wire from="(490,970)" to="(510,970)"/> <wire from="(210,1700)" to="(210,1740)"/> <wire from="(110,110)" to="(130,110)"/> <wire from="(260,1750)" to="(410,1750)"/> <wire from="(410,620)" to="(410,660)"/> <wire from="(410,1420)" to="(410,1460)"/> <wire from="(210,1410)" to="(230,1410)"/> <wire from="(210,610)" to="(230,610)"/> <wire from="(170,970)" to="(190,970)"/> <wire from="(410,1580)" to="(410,1630)"/> <wire from="(290,690)" to="(290,810)"/> <wire from="(80,1030)" to="(210,1030)"/> <wire from="(270,200)" to="(330,200)"/> <wire from="(310,1510)" to="(310,1640)"/> <wire from="(310,940)" to="(490,940)"/> <wire from="(80,420)" to="(130,420)"/> <wire from="(190,1680)" to="(190,1760)"/> <wire from="(330,430)" to="(430,430)"/> <wire from="(190,1340)" to="(230,1340)"/> <wire from="(190,1260)" to="(230,1260)"/> <wire from="(310,1220)" to="(350,1220)"/> <wire from="(390,1220)" to="(430,1220)"/> <wire from="(390,260)" to="(430,260)"/> <wire from="(110,1370)" to="(110,1660)"/> <wire from="(490,1530)" to="(490,1700)"/> <wire from="(380,1460)" to="(410,1460)"/> <wire from="(210,1700)" to="(230,1700)"/> <wire from="(270,560)" to="(290,560)"/> <wire from="(410,1420)" to="(430,1420)"/> <wire from="(390,1160)" to="(410,1160)"/> <wire from="(410,1500)" to="(430,1500)"/> <wire from="(210,150)" to="(210,190)"/> <wire from="(330,620)" to="(330,730)"/> <wire from="(470,440)" to="(490,440)"/> <wire from="(330,750)" to="(330,790)"/> <wire from="(110,400)" to="(130,400)"/> <wire from="(210,900)" to="(230,900)"/> <wire from="(170,1260)" to="(190,1260)"/> <wire from="(410,1710)" to="(410,1750)"/> <wire from="(290,560)" to="(430,560)"/> <wire from="(330,1630)" to="(330,1690)"/> <wire from="(410,1230)" to="(410,1290)"/> <wire from="(80,1320)" to="(210,1320)"/> <wire from="(290,270)" to="(350,270)"/> <wire from="(270,1690)" to="(330,1690)"/> <wire from="(290,1230)" to="(350,1230)"/> <wire from="(110,400)" to="(110,530)"/> <wire from="(290,980)" to="(290,1110)"/> <wire from="(470,380)" to="(520,380)"/> <wire from="(80,550)" to="(130,550)"/> <wire from="(190,130)" to="(190,210)"/> <wire from="(310,520)" to="(310,670)"/> <wire from="(490,1360)" to="(490,1390)"/> <wire from="(190,1470)" to="(230,1470)"/> <wire from="(190,1390)" to="(230,1390)"/> <wire from="(310,1510)" to="(350,1510)"/> <wire from="(470,150)" to="(510,150)"/> <wire from="(470,1510)" to="(510,1510)"/> <wire from="(560,260)" to="(580,260)"/> <wire from="(490,1390)" to="(510,1390)"/> <wire from="(560,980)" to="(580,980)"/> <wire from="(490,100)" to="(520,100)"/> <wire from="(330,1460)" to="(360,1460)"/> <wire from="(330,1630)" to="(350,1630)"/> <wire from="(330,1150)" to="(350,1150)"/> <wire from="(330,750)" to="(350,750)"/> <wire from="(410,1230)" to="(430,1230)"/> <wire from="(210,440)" to="(210,480)"/> <wire from="(410,1710)" to="(430,1710)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(410,1630)" to="(430,1630)"/> <wire from="(110,530)" to="(130,530)"/> <wire from="(410,160)" to="(410,200)"/> <wire from="(260,490)" to="(410,490)"/> <wire from="(410,1040)" to="(410,1080)"/> <wire from="(210,1030)" to="(230,1030)"/> <wire from="(170,1390)" to="(190,1390)"/> <wire from="(210,150)" to="(230,150)"/> <wire from="(410,320)" to="(410,370)"/> <wire from="(290,1110)" to="(290,1230)"/> <wire from="(80,1450)" to="(210,1450)"/> <wire from="(270,620)" to="(330,620)"/> <wire from="(520,380)" to="(520,520)"/> <wire from="(310,250)" to="(310,380)"/> <wire from="(310,1360)" to="(490,1360)"/> <wire from="(80,840)" to="(130,840)"/> <wire from="(190,420)" to="(190,500)"/> <wire from="(520,80)" to="(520,100)"/> <wire from="(330,850)" to="(430,850)"/> <wire from="(190,1760)" to="(230,1760)"/> <wire from="(190,1680)" to="(230,1680)"/> <wire from="(310,1640)" to="(350,1640)"/> <wire from="(390,680)" to="(430,680)"/> <wire from="(390,1640)" to="(430,1640)"/> <wire from="(470,1640)" to="(510,1640)"/> <wire from="(110,110)" to="(110,400)"/> <wire from="(380,200)" to="(410,200)"/> <wire from="(270,980)" to="(290,980)"/> <wire from="(410,240)" to="(430,240)"/> <wire from="(410,160)" to="(430,160)"/> <wire from="(390,1580)" to="(410,1580)"/> <wire from="(210,570)" to="(210,610)"/> <wire from="(330,1040)" to="(330,1150)"/> <wire from="(470,860)" to="(490,860)"/> <wire from="(490,270)" to="(490,440)"/> <wire from="(330,1170)" to="(330,1210)"/> <wire from="(410,450)" to="(410,490)"/> <wire from="(110,820)" to="(130,820)"/> <wire from="(210,1320)" to="(230,1320)"/> <wire from="(170,1680)" to="(190,1680)"/> <wire from="(210,440)" to="(230,440)"/> <wire from="(290,980)" to="(430,980)"/> <wire from="(330,370)" to="(330,430)"/> <wire from="(410,1650)" to="(410,1710)"/> <wire from="(80,1740)" to="(210,1740)"/> <wire from="(110,820)" to="(110,950)"/> <wire from="(290,690)" to="(350,690)"/> <wire from="(270,430)" to="(330,430)"/> <wire from="(290,1650)" to="(350,1650)"/> <wire from="(290,1400)" to="(290,1530)"/> <wire from="(470,800)" to="(520,800)"/> <wire from="(80,970)" to="(130,970)"/> <wire from="(190,550)" to="(190,630)"/> <wire from="(310,940)" to="(310,1090)"/> <wire from="(490,100)" to="(490,130)"/> <wire from="(190,130)" to="(230,130)"/> <wire from="(190,210)" to="(230,210)"/> <wire from="(310,250)" to="(350,250)"/> <wire from="(470,570)" to="(510,570)"/> <wire from="(470,250)" to="(510,250)"/> <wire from="(560,680)" to="(580,680)"/> <wire from="(560,1400)" to="(580,1400)"/> <wire from="(490,520)" to="(520,520)"/> <wire from="(330,200)" to="(360,200)"/> <wire from="(330,1570)" to="(350,1570)"/> <wire from="(330,370)" to="(350,370)"/> <wire from="(330,1170)" to="(350,1170)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(410,450)" to="(430,450)"/> <wire from="(410,1650)" to="(430,1650)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(210,860)" to="(210,900)"/> <wire from="(490,690)" to="(510,690)"/> <wire from="(410,580)" to="(410,620)"/> <wire from="(170,130)" to="(190,130)"/> <wire from="(110,950)" to="(130,950)"/> <wire from="(260,910)" to="(410,910)"/> <wire from="(410,1460)" to="(410,1500)"/> <wire from="(210,1450)" to="(230,1450)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(410,740)" to="(410,790)"/> <wire from="(290,1530)" to="(290,1650)"/> <wire from="(80,190)" to="(210,190)"/> <wire from="(270,1040)" to="(330,1040)"/> <wire from="(520,800)" to="(520,940)"/> <wire from="(310,670)" to="(310,800)"/> <wire from="(310,100)" to="(490,100)"/> <wire from="(80,1260)" to="(130,1260)"/> <wire from="(190,840)" to="(190,920)"/> <wire from="(330,1270)" to="(430,1270)"/> <wire from="(190,420)" to="(230,420)"/> <wire from="(190,500)" to="(230,500)"/> <wire from="(310,380)" to="(350,380)"/> <wire from="(390,1100)" to="(430,1100)"/> <wire from="(390,380)" to="(430,380)"/> <wire from="(110,530)" to="(110,820)"/> <wire from="(80,80)" to="(110,80)"/> <wire from="(380,620)" to="(410,620)"/> <wire from="(210,1740)" to="(230,1740)"/> <wire from="(270,1400)" to="(290,1400)"/> <wire from="(410,660)" to="(430,660)"/> <wire from="(390,320)" to="(410,320)"/> <wire from="(410,580)" to="(430,580)"/> <wire from="(330,1460)" to="(330,1570)"/> <wire from="(210,990)" to="(210,1030)"/> <wire from="(470,1280)" to="(490,1280)"/> <wire from="(490,690)" to="(490,860)"/> <wire from="(330,1590)" to="(330,1630)"/> <wire from="(170,420)" to="(190,420)"/> <wire from="(410,870)" to="(410,910)"/> <wire from="(110,1240)" to="(130,1240)"/> <wire from="(210,860)" to="(230,860)"/> <wire from="(290,1400)" to="(430,1400)"/> <wire from="(330,790)" to="(330,850)"/> <wire from="(410,390)" to="(410,450)"/> <wire from="(80,480)" to="(210,480)"/> <wire from="(110,1240)" to="(110,1370)"/> <wire from="(290,1110)" to="(350,1110)"/> <wire from="(270,850)" to="(330,850)"/> <wire from="(290,390)" to="(350,390)"/> <wire from="(290,140)" to="(290,270)"/> <wire from="(470,1220)" to="(520,1220)"/> <wire from="(80,1390)" to="(130,1390)"/> <wire from="(190,970)" to="(190,1050)"/> <wire from="(310,1360)" to="(310,1510)"/> <wire from="(490,520)" to="(490,550)"/> <wire from="(190,550)" to="(230,550)"/> <wire from="(190,630)" to="(230,630)"/> <wire from="(310,670)" to="(350,670)"/> <wire from="(470,990)" to="(510,990)"/> <wire from="(470,670)" to="(510,670)"/> <wire from="(560,140)" to="(580,140)"/> <wire from="(560,1100)" to="(580,1100)"/> <wire from="(490,940)" to="(520,940)"/> <wire from="(330,620)" to="(360,620)"/> <wire from="(330,310)" to="(350,310)"/> <wire from="(330,790)" to="(350,790)"/> <wire from="(330,1590)" to="(350,1590)"/> <wire from="(410,790)" to="(430,790)"/> <wire from="(410,390)" to="(430,390)"/> <wire from="(410,870)" to="(430,870)"/> <wire from="(490,550)" to="(510,550)"/> <wire from="(210,1280)" to="(210,1320)"/> <wire from="(490,1110)" to="(510,1110)"/> <wire from="(410,200)" to="(410,240)"/> <wire from="(410,1000)" to="(410,1040)"/> <wire from="(170,550)" to="(190,550)"/> <wire from="(110,1370)" to="(130,1370)"/> <wire from="(260,1330)" to="(410,1330)"/> <wire from="(210,990)" to="(230,990)"/> <wire from="(210,190)" to="(230,190)"/> <wire from="(410,1160)" to="(410,1210)"/> <wire from="(290,270)" to="(290,390)"/> <wire from="(80,610)" to="(210,610)"/> <comp lib="1" loc="(470,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(470,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(270,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,1040)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(170,830)" name="D-latch"/> <comp lib="1" loc="(560,560)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,980)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(80,1260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="1" loc="(270,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,1100)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,620)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V6"/> </comp> <comp lib="1" loc="(260,1750)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,1690)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V2"/> </comp> <comp lib="1" loc="(560,1520)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(260,490)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(580,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(560,980)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,990)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,1400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(170,1380)" name="D-latch"/> <comp lib="1" loc="(390,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,200)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,1520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(380,1460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,1330)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(520,80)" name="Constant"> <a name="facing" val="south"/> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(80,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V7"/> </comp> <comp lib="1" loc="(470,1410)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,980)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,1460)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV5"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V1"/> </comp> <comp lib="1" loc="(380,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,740)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V3"/> </comp> <comp lib="0" loc="(580,1520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(380,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(80,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="1" loc="(270,850)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="1" loc="(470,1280)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OV1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(560,260)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,680)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(295,48)" name="Text"> <a name="text" val="8-BIT SIGNED SUBTRACT"/> <a name="font" val="SansSerif plain 26"/> </comp> <comp lib="1" loc="(470,860)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(199,309)" name="Text"> <a name="text" val="S=V-OB"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp loc="(170,1670)" name="D-latch"/> <comp lib="1" loc="(470,1090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,1400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(390,1100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V0"/> </comp> <comp loc="(170,120)" name="D-latch"/> <comp lib="1" loc="(390,1580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="6" loc="(548,1642)" name="Text"> <a name="text" val="not used"/> </comp> <comp loc="(170,540)" name="D-latch"/> <comp lib="0" loc="(80,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="1" loc="(390,1220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(80,420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="1" loc="(470,1510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(390,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(170,960)" name="D-latch"/> <comp lib="1" loc="(560,1400)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(260,910)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V4"/> </comp> <comp lib="1" loc="(470,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(170,410)" name="D-latch"/> <comp loc="(170,1250)" name="D-latch"/> <comp lib="0" loc="(80,1680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(270,1270)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(560,140)" name="XNOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="V5"/> </comp> </circuit> <circuit name="OAM_CONTROL_PAL"> <a name="circuit" val="OAM_CONTROL_PAL"/> <a name="clabel" val="OAM CONTROL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,52 Q65,62 69,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8924" height="441" stroke="#000000" stroke-width="2" width="380" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="235">/R2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="409" y="84">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="254">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="294">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="392" y="384">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="434">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="104">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="334">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="396" y="405">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="354">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="394">/EVAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="157">CPU DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="124">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="474">OMFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="274">OAM8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="274">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="314">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="414">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="454">ZOMG_PAL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="404" y="114">OAM0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="214">/W3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="195">7</text> <polyline fill="none" points="50,66 56,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,74 56,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,73" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="402" y="254">OAM7</text> <circ-port height="8" pin="110,80" width="8" x="46" y="66"/> <circ-port height="8" pin="110,150" width="8" x="46" y="406"/> <circ-port height="8" pin="110,190" width="8" x="46" y="446"/> <circ-port height="8" pin="110,440" width="8" x="46" y="366"/> <circ-port height="8" pin="110,390" width="8" x="46" y="346"/> <circ-port height="8" pin="110,320" width="8" x="46" y="286"/> <circ-port height="8" pin="110,250" width="8" x="46" y="326"/> <circ-port height="8" pin="110,550" width="8" x="46" y="466"/> <circ-port height="8" pin="110,590" width="8" x="46" y="96"/> <circ-port height="8" pin="110,640" width="8" x="46" y="206"/> <circ-port height="8" pin="110,690" width="8" x="46" y="426"/> <circ-port height="8" pin="110,750" width="8" x="46" y="116"/> <circ-port height="8" pin="110,790" width="8" x="46" y="126"/> <circ-port height="8" pin="110,830" width="8" x="46" y="136"/> <circ-port height="8" pin="110,870" width="8" x="46" y="146"/> <circ-port height="8" pin="110,910" width="8" x="46" y="156"/> <circ-port height="8" pin="110,950" width="8" x="46" y="166"/> <circ-port height="8" pin="110,990" width="8" x="46" y="176"/> <circ-port height="8" pin="110,1030" width="8" x="46" y="186"/> <circ-port height="8" pin="110,1120" width="8" x="46" y="386"/> <circ-port height="8" pin="110,1340" width="8" x="46" y="306"/> <circ-port height="8" pin="110,1660" width="8" x="46" y="266"/> <circ-port height="8" pin="110,1710" width="8" x="46" y="246"/> <circ-port height="8" pin="110,1770" width="8" x="46" y="226"/> <circ-port height="10" pin="1250,480" width="10" x="425" y="105"/> <circ-port height="10" pin="1250,530" width="10" x="425" y="125"/> <circ-port height="10" pin="1250,580" width="10" x="425" y="145"/> <circ-port height="10" pin="1250,630" width="10" x="425" y="165"/> <circ-port height="10" pin="1250,680" width="10" x="425" y="185"/> <circ-port height="10" pin="1250,730" width="10" x="425" y="205"/> <circ-port height="10" pin="1250,780" width="10" x="425" y="225"/> <circ-port height="10" pin="1250,830" width="10" x="425" y="245"/> <circ-port height="10" pin="1250,880" width="10" x="425" y="265"/> <circ-port height="10" pin="1340,1030" width="10" x="425" y="395"/> <circ-port height="10" pin="1340,1460" width="10" x="425" y="375"/> <circ-port height="10" pin="1340,1660" width="10" x="425" y="75"/> <circ-anchor facing="east" height="6" width="6" x="427" y="47"/> </appear> <wire from="(720,20)" to="(1410,20)"/> <wire from="(1140,240)" to="(1310,240)"/> <wire from="(190,1220)" to="(250,1220)"/> <wire from="(260,260)" to="(260,280)"/> <wire from="(560,490)" to="(600,490)"/> <wire from="(840,200)" to="(840,230)"/> <wire from="(500,1490)" to="(500,1570)"/> <wire from="(1070,1370)" to="(1190,1370)"/> <wire from="(420,100)" to="(420,130)"/> <wire from="(130,1120)" to="(130,1210)"/> <wire from="(1250,1410)" to="(1250,1460)"/> <wire from="(830,1260)" to="(850,1260)"/> <wire from="(1080,1580)" to="(1160,1580)"/> <wire from="(550,180)" to="(570,180)"/> <wire from="(830,110)" to="(980,110)"/> <wire from="(1070,770)" to="(1070,1210)"/> <wire from="(330,1080)" to="(350,1080)"/> <wire from="(340,130)" to="(360,130)"/> <wire from="(1110,1140)" to="(1180,1140)"/> <wire from="(310,1430)" to="(310,1470)"/> <wire from="(890,190)" to="(920,190)"/> <wire from="(1270,1430)" to="(1270,1490)"/> <wire from="(1170,630)" to="(1200,630)"/> <wire from="(1220,680)" to="(1250,680)"/> <wire from="(830,60)" to="(900,60)"/> <wire from="(480,1500)" to="(480,1690)"/> <wire from="(930,1690)" to="(940,1690)"/> <wire from="(1200,190)" to="(1220,190)"/> <wire from="(1270,1380)" to="(1290,1380)"/> <wire from="(590,1030)" to="(600,1030)"/> <wire from="(990,1360)" to="(1040,1360)"/> <wire from="(110,790)" to="(170,790)"/> <wire from="(900,1540)" to="(900,1610)"/> <wire from="(110,640)" to="(160,640)"/> <wire from="(420,230)" to="(420,250)"/> <wire from="(1110,980)" to="(1110,1110)"/> <wire from="(760,1530)" to="(760,1550)"/> <wire from="(1150,410)" to="(1150,610)"/> <wire from="(490,140)" to="(490,170)"/> <wire from="(870,1060)" to="(1040,1060)"/> <wire from="(320,380)" to="(360,380)"/> <wire from="(1150,880)" to="(1200,880)"/> <wire from="(1250,1060)" to="(1250,1110)"/> <wire from="(1010,1620)" to="(1010,1670)"/> <wire from="(980,1700)" to="(1000,1700)"/> <wire from="(400,150)" to="(430,150)"/> <wire from="(1240,1650)" to="(1250,1650)"/> <wire from="(740,340)" to="(760,340)"/> <wire from="(270,510)" to="(290,510)"/> <wire from="(230,1430)" to="(250,1430)"/> <wire from="(330,1210)" to="(350,1210)"/> <wire from="(110,320)" to="(260,320)"/> <wire from="(780,1550)" to="(780,1610)"/> <wire from="(130,220)" to="(140,220)"/> <wire from="(330,520)" to="(600,520)"/> <wire from="(870,740)" to="(1140,740)"/> <wire from="(110,1710)" to="(940,1710)"/> <wire from="(200,630)" to="(520,630)"/> <wire from="(1180,1120)" to="(1180,1140)"/> <wire from="(1260,1680)" to="(1260,1700)"/> <wire from="(1160,1580)" to="(1160,1610)"/> <wire from="(290,890)" to="(600,890)"/> <wire from="(270,530)" to="(270,550)"/> <wire from="(960,190)" to="(1000,190)"/> <wire from="(160,100)" to="(160,120)"/> <wire from="(930,1670)" to="(930,1690)"/> <wire from="(1100,1600)" to="(1150,1600)"/> <wire from="(1150,610)" to="(1150,660)"/> <wire from="(190,790)" to="(600,790)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(310,1320)" to="(330,1320)"/> <wire from="(110,1120)" to="(130,1120)"/> <wire from="(140,1790)" to="(160,1790)"/> <wire from="(210,1060)" to="(230,1060)"/> <wire from="(1170,730)" to="(1200,730)"/> <wire from="(1220,780)" to="(1250,780)"/> <wire from="(930,1630)" to="(940,1630)"/> <wire from="(520,390)" to="(520,630)"/> <wire from="(110,1030)" to="(290,1030)"/> <wire from="(560,1200)" to="(600,1200)"/> <wire from="(560,1200)" to="(560,1420)"/> <wire from="(160,70)" to="(160,90)"/> <wire from="(140,1810)" to="(140,1830)"/> <wire from="(230,550)" to="(270,550)"/> <wire from="(130,520)" to="(130,550)"/> <wire from="(130,620)" to="(160,620)"/> <wire from="(830,530)" to="(850,530)"/> <wire from="(830,690)" to="(850,690)"/> <wire from="(880,1540)" to="(900,1540)"/> <wire from="(1260,1030)" to="(1340,1030)"/> <wire from="(260,280)" to="(280,280)"/> <wire from="(290,1430)" to="(310,1430)"/> <wire from="(420,130)" to="(430,130)"/> <wire from="(500,1490)" to="(1270,1490)"/> <wire from="(680,1550)" to="(680,1610)"/> <wire from="(870,840)" to="(1140,840)"/> <wire from="(1250,1110)" to="(1270,1110)"/> <wire from="(290,1200)" to="(350,1200)"/> <wire from="(170,1400)" to="(230,1400)"/> <wire from="(130,250)" to="(180,250)"/> <wire from="(540,650)" to="(600,650)"/> <wire from="(160,120)" to="(210,120)"/> <wire from="(260,300)" to="(260,320)"/> <wire from="(330,1170)" to="(330,1190)"/> <wire from="(40,1680)" to="(470,1680)"/> <wire from="(780,1550)" to="(820,1550)"/> <wire from="(680,1520)" to="(680,1550)"/> <wire from="(530,1070)" to="(530,1470)"/> <wire from="(320,290)" to="(360,290)"/> <wire from="(980,170)" to="(1000,170)"/> <wire from="(1180,1080)" to="(1260,1080)"/> <wire from="(1150,710)" to="(1150,760)"/> <wire from="(1180,1410)" to="(1250,1410)"/> <wire from="(1040,620)" to="(1040,1060)"/> <wire from="(1080,820)" to="(1080,1260)"/> <wire from="(370,1480)" to="(390,1480)"/> <wire from="(470,140)" to="(490,140)"/> <wire from="(190,1300)" to="(210,1300)"/> <wire from="(1170,830)" to="(1200,830)"/> <wire from="(1220,880)" to="(1250,880)"/> <wire from="(1250,1460)" to="(1340,1460)"/> <wire from="(1020,1380)" to="(1020,1420)"/> <wire from="(840,200)" to="(850,200)"/> <wire from="(560,490)" to="(560,990)"/> <wire from="(1140,170)" to="(1160,170)"/> <wire from="(110,1660)" to="(370,1660)"/> <wire from="(20,20)" to="(20,340)"/> <wire from="(1110,1140)" to="(1110,1540)"/> <wire from="(990,980)" to="(1110,980)"/> <wire from="(370,1660)" to="(800,1660)"/> <wire from="(190,1320)" to="(190,1340)"/> <wire from="(800,1560)" to="(820,1560)"/> <wire from="(900,1540)" to="(1110,1540)"/> <wire from="(830,790)" to="(850,790)"/> <wire from="(830,1110)" to="(850,1110)"/> <wire from="(110,990)" to="(270,990)"/> <wire from="(1140,190)" to="(1140,240)"/> <wire from="(530,1470)" to="(1190,1470)"/> <wire from="(260,370)" to="(290,370)"/> <wire from="(240,1310)" to="(270,1310)"/> <wire from="(250,850)" to="(600,850)"/> <wire from="(740,220)" to="(760,220)"/> <wire from="(250,1330)" to="(270,1330)"/> <wire from="(1180,1060)" to="(1250,1060)"/> <wire from="(1090,1610)" to="(1160,1610)"/> <wire from="(920,870)" to="(950,870)"/> <wire from="(110,390)" to="(130,390)"/> <wire from="(110,550)" to="(130,550)"/> <wire from="(130,1210)" to="(150,1210)"/> <wire from="(1220,530)" to="(1250,530)"/> <wire from="(870,530)" to="(1200,530)"/> <wire from="(1000,1650)" to="(1000,1700)"/> <wire from="(520,390)" to="(700,390)"/> <wire from="(40,1140)" to="(470,1140)"/> <wire from="(740,1610)" to="(780,1610)"/> <wire from="(800,230)" to="(840,230)"/> <wire from="(740,240)" to="(740,270)"/> <wire from="(900,1610)" to="(940,1610)"/> <wire from="(230,1170)" to="(330,1170)"/> <wire from="(130,520)" to="(170,520)"/> <wire from="(230,1170)" to="(230,1200)"/> <wire from="(130,590)" to="(130,620)"/> <wire from="(130,1230)" to="(130,1260)"/> <wire from="(1110,1110)" to="(1190,1110)"/> <wire from="(130,440)" to="(220,440)"/> <wire from="(1180,1120)" to="(1190,1120)"/> <wire from="(340,270)" to="(360,270)"/> <wire from="(130,1830)" to="(140,1830)"/> <wire from="(1220,190)" to="(1240,190)"/> <wire from="(390,1200)" to="(560,1200)"/> <wire from="(330,1080)" to="(330,1100)"/> <wire from="(1070,1700)" to="(1260,1700)"/> <wire from="(1090,1590)" to="(1150,1590)"/> <wire from="(1150,810)" to="(1150,880)"/> <wire from="(220,260)" to="(260,260)"/> <wire from="(470,1140)" to="(470,1680)"/> <wire from="(830,1210)" to="(850,1210)"/> <wire from="(1270,1380)" to="(1270,1430)"/> <wire from="(460,260)" to="(550,260)"/> <wire from="(370,1500)" to="(370,1660)"/> <wire from="(740,320)" to="(760,320)"/> <wire from="(360,420)" to="(380,420)"/> <wire from="(330,1190)" to="(350,1190)"/> <wire from="(310,1490)" to="(330,1490)"/> <wire from="(500,1570)" to="(700,1570)"/> <wire from="(1220,630)" to="(1250,630)"/> <wire from="(390,1070)" to="(530,1070)"/> <wire from="(110,950)" to="(250,950)"/> <wire from="(130,490)" to="(270,490)"/> <wire from="(720,20)" to="(720,390)"/> <wire from="(130,270)" to="(130,390)"/> <wire from="(680,1520)" to="(820,1520)"/> <wire from="(830,890)" to="(950,890)"/> <wire from="(1430,1500)" to="(1430,1850)"/> <wire from="(130,1260)" to="(500,1260)"/> <wire from="(740,340)" to="(740,370)"/> <wire from="(340,100)" to="(340,130)"/> <wire from="(290,1100)" to="(330,1100)"/> <wire from="(130,690)" to="(130,720)"/> <wire from="(1170,1570)" to="(1170,1620)"/> <wire from="(340,130)" to="(340,230)"/> <wire from="(940,970)" to="(960,970)"/> <wire from="(740,180)" to="(740,220)"/> <wire from="(870,1260)" to="(1080,1260)"/> <wire from="(1300,220)" to="(1310,220)"/> <wire from="(1050,670)" to="(1050,1110)"/> <wire from="(130,550)" to="(210,550)"/> <wire from="(1180,1430)" to="(1270,1430)"/> <wire from="(560,990)" to="(960,990)"/> <wire from="(210,810)" to="(600,810)"/> <wire from="(1120,190)" to="(1140,190)"/> <wire from="(930,1670)" to="(1010,1670)"/> <wire from="(870,690)" to="(1140,690)"/> <wire from="(720,390)" to="(1410,390)"/> <wire from="(450,1360)" to="(450,1490)"/> <wire from="(1180,1390)" to="(1180,1410)"/> <wire from="(130,1120)" to="(250,1120)"/> <wire from="(230,1060)" to="(350,1060)"/> <wire from="(230,1430)" to="(230,1510)"/> <wire from="(230,1400)" to="(230,1430)"/> <wire from="(340,70)" to="(340,100)"/> <wire from="(1370,230)" to="(1370,430)"/> <wire from="(230,1510)" to="(250,1510)"/> <wire from="(330,1210)" to="(330,1320)"/> <wire from="(490,170)" to="(510,170)"/> <wire from="(110,590)" to="(130,590)"/> <wire from="(900,60)" to="(1060,60)"/> <wire from="(340,230)" to="(340,270)"/> <wire from="(200,1800)" to="(220,1800)"/> <wire from="(210,1170)" to="(230,1170)"/> <wire from="(170,1450)" to="(190,1450)"/> <wire from="(1060,60)" to="(1220,60)"/> <wire from="(1220,730)" to="(1250,730)"/> <wire from="(1170,680)" to="(1200,680)"/> <wire from="(110,190)" to="(510,190)"/> <wire from="(930,1650)" to="(1000,1650)"/> <wire from="(1080,1620)" to="(1170,1620)"/> <wire from="(1350,230)" to="(1370,230)"/> <wire from="(480,1500)" to="(1430,1500)"/> <wire from="(1090,1590)" to="(1090,1610)"/> <wire from="(1180,1040)" to="(1180,1060)"/> <wire from="(110,910)" to="(230,910)"/> <wire from="(1070,1570)" to="(1170,1570)"/> <wire from="(160,70)" to="(340,70)"/> <wire from="(40,1850)" to="(1430,1850)"/> <wire from="(360,380)" to="(360,400)"/> <wire from="(1040,190)" to="(1080,190)"/> <wire from="(260,440)" to="(360,440)"/> <wire from="(830,480)" to="(850,480)"/> <wire from="(830,640)" to="(850,640)"/> <wire from="(560,320)" to="(560,490)"/> <wire from="(680,1610)" to="(700,1610)"/> <wire from="(920,1360)" to="(950,1360)"/> <wire from="(980,110)" to="(1140,110)"/> <wire from="(1230,1030)" to="(1260,1030)"/> <wire from="(1010,870)" to="(1010,930)"/> <wire from="(870,1210)" to="(1070,1210)"/> <wire from="(1080,1580)" to="(1080,1620)"/> <wire from="(870,790)" to="(1140,790)"/> <wire from="(240,1800)" to="(1130,1800)"/> <wire from="(680,20)" to="(680,340)"/> <wire from="(540,430)" to="(1370,430)"/> <wire from="(1280,1660)" to="(1340,1660)"/> <wire from="(1080,820)" to="(1140,820)"/> <wire from="(1300,170)" to="(1300,220)"/> <wire from="(40,1690)" to="(40,1850)"/> <wire from="(1150,660)" to="(1150,710)"/> <wire from="(1180,1450)" to="(1190,1450)"/> <wire from="(1240,1670)" to="(1250,1670)"/> <wire from="(940,930)" to="(940,970)"/> <wire from="(130,690)" to="(600,690)"/> <wire from="(270,530)" to="(290,530)"/> <wire from="(290,1510)" to="(310,1510)"/> <wire from="(1070,770)" to="(1140,770)"/> <wire from="(430,1490)" to="(450,1490)"/> <wire from="(110,690)" to="(130,690)"/> <wire from="(1220,830)" to="(1250,830)"/> <wire from="(1170,780)" to="(1200,780)"/> <wire from="(130,440)" to="(130,490)"/> <wire from="(270,870)" to="(600,870)"/> <wire from="(740,270)" to="(820,270)"/> <wire from="(250,1360)" to="(450,1360)"/> <wire from="(170,770)" to="(600,770)"/> <wire from="(1070,1570)" to="(1070,1700)"/> <wire from="(540,430)" to="(540,650)"/> <wire from="(170,770)" to="(170,790)"/> <wire from="(1150,1590)" to="(1150,1600)"/> <wire from="(250,1330)" to="(250,1360)"/> <wire from="(110,870)" to="(210,870)"/> <wire from="(110,1770)" to="(140,1770)"/> <wire from="(830,580)" to="(850,580)"/> <wire from="(830,740)" to="(850,740)"/> <wire from="(1060,720)" to="(1140,720)"/> <wire from="(420,410)" to="(1150,410)"/> <wire from="(900,170)" to="(920,170)"/> <wire from="(830,1060)" to="(850,1060)"/> <wire from="(1180,1100)" to="(1190,1100)"/> <wire from="(680,1550)" to="(700,1550)"/> <wire from="(230,1100)" to="(250,1100)"/> <wire from="(1060,720)" to="(1060,1160)"/> <wire from="(190,790)" to="(190,830)"/> <wire from="(140,1810)" to="(160,1810)"/> <wire from="(1220,480)" to="(1250,480)"/> <wire from="(130,590)" to="(210,590)"/> <wire from="(940,930)" to="(1010,930)"/> <wire from="(870,480)" to="(1200,480)"/> <wire from="(670,1550)" to="(680,1550)"/> <wire from="(1060,170)" to="(1080,170)"/> <wire from="(560,1420)" to="(1020,1420)"/> <wire from="(1220,170)" to="(1240,170)"/> <wire from="(1230,1460)" to="(1250,1460)"/> <wire from="(210,810)" to="(210,870)"/> <wire from="(830,1380)" to="(950,1380)"/> <wire from="(1180,1430)" to="(1180,1450)"/> <wire from="(110,150)" to="(360,150)"/> <wire from="(870,1160)" to="(1060,1160)"/> <wire from="(230,830)" to="(230,910)"/> <wire from="(110,750)" to="(600,750)"/> <wire from="(740,180)" to="(850,180)"/> <wire from="(130,220)" to="(130,250)"/> <wire from="(250,850)" to="(250,950)"/> <wire from="(1260,1030)" to="(1260,1080)"/> <wire from="(900,60)" to="(900,170)"/> <wire from="(990,870)" to="(1010,870)"/> <wire from="(1150,760)" to="(1150,810)"/> <wire from="(1180,1390)" to="(1190,1390)"/> <wire from="(400,270)" to="(430,270)"/> <wire from="(260,300)" to="(280,300)"/> <wire from="(800,1560)" to="(800,1660)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(310,1470)" to="(330,1470)"/> <wire from="(1140,110)" to="(1140,170)"/> <wire from="(820,270)" to="(820,330)"/> <wire from="(980,110)" to="(980,170)"/> <wire from="(130,720)" to="(210,720)"/> <wire from="(110,1340)" to="(190,1340)"/> <wire from="(210,420)" to="(220,420)"/> <wire from="(1050,670)" to="(1140,670)"/> <wire from="(1220,60)" to="(1220,170)"/> <wire from="(1020,1380)" to="(1040,1380)"/> <wire from="(270,870)" to="(270,990)"/> <wire from="(1060,60)" to="(1060,170)"/> <wire from="(1230,1110)" to="(1250,1110)"/> <wire from="(1180,1080)" to="(1180,1100)"/> <wire from="(760,1530)" to="(820,1530)"/> <wire from="(290,890)" to="(290,1030)"/> <wire from="(40,1690)" to="(480,1690)"/> <wire from="(1230,1380)" to="(1270,1380)"/> <wire from="(130,270)" to="(180,270)"/> <wire from="(1040,620)" to="(1140,620)"/> <wire from="(270,490)" to="(270,510)"/> <wire from="(360,420)" to="(360,440)"/> <wire from="(310,1490)" to="(310,1510)"/> <wire from="(930,1630)" to="(930,1650)"/> <wire from="(40,1140)" to="(40,1680)"/> <wire from="(800,330)" to="(820,330)"/> <wire from="(830,840)" to="(850,840)"/> <wire from="(830,1160)" to="(850,1160)"/> <wire from="(1180,1040)" to="(1190,1040)"/> <wire from="(740,1550)" to="(760,1550)"/> <wire from="(1410,20)" to="(1410,390)"/> <wire from="(670,1630)" to="(700,1630)"/> <wire from="(230,1200)" to="(250,1200)"/> <wire from="(370,1500)" to="(390,1500)"/> <wire from="(1270,1680)" to="(1270,1800)"/> <wire from="(570,180)" to="(570,280)"/> <wire from="(110,440)" to="(130,440)"/> <wire from="(980,1620)" to="(1010,1620)"/> <wire from="(190,1320)" to="(210,1320)"/> <wire from="(1220,580)" to="(1250,580)"/> <wire from="(110,830)" to="(190,830)"/> <wire from="(170,1530)" to="(250,1530)"/> <wire from="(340,100)" to="(420,100)"/> <wire from="(260,320)" to="(260,370)"/> <wire from="(870,580)" to="(1200,580)"/> <wire from="(1140,190)" to="(1160,190)"/> <wire from="(1170,1020)" to="(1190,1020)"/> <wire from="(1280,170)" to="(1300,170)"/> <wire from="(870,1110)" to="(1050,1110)"/> <wire from="(230,830)" to="(600,830)"/> <wire from="(700,180)" to="(740,180)"/> <wire from="(740,290)" to="(740,320)"/> <wire from="(140,1770)" to="(140,1790)"/> <wire from="(740,290)" to="(840,290)"/> <wire from="(700,180)" to="(700,390)"/> <wire from="(1150,1800)" to="(1270,1800)"/> <wire from="(210,1450)" to="(250,1450)"/> <wire from="(550,260)" to="(550,280)"/> <wire from="(130,390)" to="(290,390)"/> <wire from="(110,80)" to="(140,80)"/> <wire from="(1220,190)" to="(1220,370)"/> <wire from="(740,240)" to="(760,240)"/> <wire from="(230,1060)" to="(230,1100)"/> <wire from="(740,370)" to="(1220,370)"/> <wire from="(20,20)" to="(680,20)"/> <wire from="(20,340)" to="(680,340)"/> <wire from="(110,250)" to="(130,250)"/> <wire from="(130,1230)" to="(150,1230)"/> <wire from="(500,1260)" to="(500,1490)"/> <wire from="(840,230)" to="(840,290)"/> <wire from="(420,250)" to="(430,250)"/> <wire from="(530,1070)" to="(600,1070)"/> <wire from="(1000,1700)" to="(1070,1700)"/> <wire from="(340,230)" to="(420,230)"/> <wire from="(870,640)" to="(1140,640)"/> <comp lib="0" loc="(1340,1660)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(210,720)" name="Tunnel"> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(110,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0'"/> </comp> <comp lib="0" loc="(110,1710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="6" loc="(413,1194)" name="Text"> <a name="text" val="OSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(350,284)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="1" loc="(550,180)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(691,1565)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(415,1065)" name="Text"> <a name="text" val="ORES"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(870,690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(920,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1220,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1210,1075)" name="Text"> <a name="text" val="1"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="6" loc="(689,1625)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="1" loc="(980,1620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(870,1210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(1280,180)" name="D-latch"/> <comp lib="0" loc="(1250,780)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(390,1200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(670,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(830,1010)" name="OAM2_COUNTER"/> <comp lib="0" loc="(920,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1070,1370)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="14"/> </comp> <comp lib="1" loc="(200,630)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1220,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(210,590)" name="Tunnel"> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(110,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/EVAL"/> </comp> <comp lib="6" loc="(343,1485)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(244,464)" name="Text"> <a name="text" val="!!! D-latch PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1220,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(172,1806)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="1" loc="(1220,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(830,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(1170,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(290,1110)" name="D-latch"/> <comp lib="6" loc="(970,926)" name="Text"> <a name="text" val="OMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(870,740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1170,680)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(360,70)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(560,320)" name="NAND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1520)" name="D-latch"/> <comp loc="(990,1370)" name="D-latch"/> <comp lib="1" loc="(880,1540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(330,520)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(320,290)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(320,380)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(240,1114)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(210,1060)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(401,1494)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="1" loc="(1230,1460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(990,980)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="27"/> </comp> <comp lib="1" loc="(420,410)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(290,1440)" name="D-latch"/> <comp lib="6" loc="(1266,1629)" name="Text"> <a name="text" val="TRI-STATE"/> </comp> <comp lib="0" loc="(1250,680)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(365,1206)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(196,265)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="1" loc="(310,1320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(240,1214)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(140,220)" name="Tunnel"> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(1011,1355)" name="Text"> <a name="text" val="TMV'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(870,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(210,120)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(777,284)" name="Text"> <a name="text" val="FF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1152,184)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="6" loc="(234,625)" name="Text"> <a name="text" val="W3'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(199,1472)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(870,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1170,830)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(936,1374)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="6" loc="(958,1665)" name="Text"> <a name="text" val="3"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="6" loc="(592,330)" name="Text"> <a name="text" val="OMSTEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1072,184)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="0" loc="(1340,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="SPR_OV"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(848,1375)" name="Text"> <a name="text" val="TMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(290,1210)" name="D-latch"/> <comp lib="6" loc="(223,1315)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="0" loc="(210,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(870,1110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1240,1650)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(1040,180)" name="D-latch"/> <comp lib="0" loc="(670,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(1250,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1170,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> </comp> <comp lib="6" loc="(175,634)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="1" loc="(230,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(1220,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(740,1620)" name="D-latch"/> <comp lib="6" loc="(162,1224)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="0" loc="(210,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(443,145)" name="Text"> <a name="text" val="24"/> </comp> <comp lib="0" loc="(1250,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="1" loc="(890,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="6" loc="(1233,184)" name="Text"> <a name="text" val="4"/> </comp> <comp loc="(1120,180)" name="D-latch"/> <comp loc="(830,460)" name="OAM_COUNTER"/> <comp lib="2" loc="(1170,780)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(110,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> </comp> <comp lib="6" loc="(294,293)" name="Text"> <a name="text" val="21"/> </comp> <comp lib="1" loc="(1220,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(1209,1424)" name="Text"> <a name="text" val="2"/> <a name="font" val="SansSerif bold 14"/> </comp> <comp lib="0" loc="(1250,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(439,404)" name="Text"> <a name="text" val="OAP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(870,1060)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,1800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(990,880)" name="D-latch"/> <comp lib="0" loc="(1170,1020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(364,1074)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="6" loc="(242,1445)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="0" loc="(110,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="6" loc="(229,1792)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="0" loc="(1340,1460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAMCTR2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(260,430)" name="D-latch"/> <comp lib="1" loc="(980,1700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1250,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1250,830)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,260)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(400,280)" name="D-latch"/> <comp lib="6" loc="(965,1593)" name="Text"> <a name="text" val="Sprite overflow flag"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(241,1526)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="6" loc="(841,1544)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="0" loc="(110,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(1220,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(740,1560)" name="D-latch"/> <comp lib="0" loc="(110,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="ZOMG_PAL"/> </comp> <comp lib="0" loc="(110,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="6" loc="(204,1597)" name="Text"> <a name="text" val="OAM CNT2 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(190,1220)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(991,183)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(936,884)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="0" loc="(130,1830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/DBE"/> </comp> <comp lib="0" loc="(140,80)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(1250,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM8"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(284,1325)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="1" loc="(870,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,520)" name="Tunnel"> <a name="label" val="OMFG"/> </comp> <comp lib="1" loc="(1220,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W3"/> </comp> <comp lib="1" loc="(800,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(870,1260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(830,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(870,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1019,282)" name="Text"> <a name="text" val="PAL W3 ENABLER"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="6" loc="(536,46)" name="Text"> <a name="text" val="OAM CNT1 STEP CONTROL"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(1230,1380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1240,1670)" name="Constant"/> <comp lib="0" loc="(170,1400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="4" loc="(960,170)" name="D Flip-Flop"> <a name="trigger" val="low"/> </comp> <comp loc="(400,140)" name="D-latch"/> <comp lib="1" loc="(870,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(110,1030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(110,830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(430,1490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(220,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(730,1752)" name="Text"> <a name="text" val="SPRITE OVERFLOW FLAG"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(1200,180)" name="D-latch"/> <comp lib="1" loc="(240,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,1480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> </comp> <comp lib="1" loc="(1230,1110)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(1220,530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(210,1450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(939,151)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(390,1070)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(850,881)" name="Text"> <a name="text" val="OMV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1350,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="1" loc="(800,330)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="6" loc="(531,155)" name="Text"> <a name="text" val="!!! NOR PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(524,183)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="1" loc="(1230,1030)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(270,1793)" name="Text"> <a name="text" val="/R2'"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1150,1800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1250,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OAM3"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(349,145)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="2" loc="(1280,1660)" name="Multiplexer"/> <comp lib="0" loc="(110,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OFETCH"/> </comp> <comp lib="0" loc="(110,1770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R2"/> </comp> </circuit> <circuit name="OAM_COUNTER"> <a name="circuit" val="OAM_COUNTER"/> <a name="clabel" val="OAM COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#eaff00" height="461" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="114">MODE 4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="84">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="284">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="344">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="485">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="415">INPUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="248" y="484">COUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="74">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="124">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="174">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="233">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="284">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="334">Q5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="384">Q6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="433">Q7</text> <circ-port height="8" pin="130,70" width="8" x="46" y="106"/> <circ-port height="8" pin="130,190" width="8" x="46" y="76"/> <circ-port height="8" pin="130,130" width="8" x="46" y="236"/> <circ-port height="8" pin="130,290" width="8" x="46" y="336"/> <circ-port height="8" pin="130,240" width="8" x="46" y="276"/> <circ-port height="8" pin="130,470" width="8" x="46" y="356"/> <circ-port height="8" pin="130,640" width="8" x="46" y="376"/> <circ-port height="8" pin="130,800" width="8" x="46" y="396"/> <circ-port height="8" pin="130,960" width="8" x="46" y="416"/> <circ-port height="8" pin="130,1120" width="8" x="46" y="436"/> <circ-port height="8" pin="130,1280" width="8" x="46" y="456"/> <circ-port height="8" pin="130,1440" width="8" x="46" y="476"/> <circ-port height="10" pin="870,170" width="10" x="275" y="65"/> <circ-port height="10" pin="870,370" width="10" x="275" y="115"/> <circ-port height="10" pin="870,550" width="10" x="275" y="165"/> <circ-port height="10" pin="870,710" width="10" x="275" y="225"/> <circ-port height="10" pin="870,870" width="10" x="275" y="275"/> <circ-port height="10" pin="870,1030" width="10" x="275" y="325"/> <circ-port height="10" pin="870,1190" width="10" x="275" y="375"/> <circ-port height="10" pin="870,1450" width="10" x="275" y="475"/> <circ-port height="10" pin="870,1350" width="10" x="275" y="425"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(410,520)" to="(410,590)"/> <wire from="(340,450)" to="(340,520)"/> <wire from="(410,1300)" to="(730,1300)"/> <wire from="(220,520)" to="(340,520)"/> <wire from="(550,480)" to="(590,480)"/> <wire from="(130,190)" to="(300,190)"/> <wire from="(650,970)" to="(750,970)"/> <wire from="(210,290)" to="(210,310)"/> <wire from="(700,490)" to="(700,570)"/> <wire from="(610,480)" to="(630,480)"/> <wire from="(390,1030)" to="(870,1030)"/> <wire from="(300,240)" to="(330,240)"/> <wire from="(660,450)" to="(680,450)"/> <wire from="(390,1350)" to="(870,1350)"/> <wire from="(390,1190)" to="(870,1190)"/> <wire from="(390,550)" to="(870,550)"/> <wire from="(390,710)" to="(870,710)"/> <wire from="(390,870)" to="(870,870)"/> <wire from="(370,240)" to="(390,240)"/> <wire from="(410,440)" to="(430,440)"/> <wire from="(390,710)" to="(390,750)"/> <wire from="(390,550)" to="(390,590)"/> <wire from="(390,870)" to="(390,910)"/> <wire from="(390,1030)" to="(390,1070)"/> <wire from="(390,1190)" to="(390,1230)"/> <wire from="(390,1350)" to="(390,1390)"/> <wire from="(170,680)" to="(190,680)"/> <wire from="(170,840)" to="(190,840)"/> <wire from="(170,1000)" to="(190,1000)"/> <wire from="(170,1160)" to="(190,1160)"/> <wire from="(170,1320)" to="(190,1320)"/> <wire from="(170,1480)" to="(190,1480)"/> <wire from="(130,470)" to="(210,470)"/> <wire from="(320,440)" to="(330,440)"/> <wire from="(490,230)" to="(490,410)"/> <wire from="(130,70)" to="(590,70)"/> <wire from="(240,300)" to="(240,480)"/> <wire from="(570,410)" to="(570,460)"/> <wire from="(240,240)" to="(240,300)"/> <wire from="(630,980)" to="(750,980)"/> <wire from="(320,640)" to="(570,640)"/> <wire from="(320,800)" to="(570,800)"/> <wire from="(320,960)" to="(570,960)"/> <wire from="(320,1120)" to="(570,1120)"/> <wire from="(320,1280)" to="(570,1280)"/> <wire from="(320,1440)" to="(570,1440)"/> <wire from="(410,820)" to="(650,820)"/> <wire from="(320,610)" to="(320,640)"/> <wire from="(320,770)" to="(320,800)"/> <wire from="(320,930)" to="(320,960)"/> <wire from="(320,1090)" to="(320,1120)"/> <wire from="(320,1250)" to="(320,1280)"/> <wire from="(320,1410)" to="(320,1440)"/> <wire from="(630,980)" to="(630,1130)"/> <wire from="(590,300)" to="(590,450)"/> <wire from="(170,680)" to="(170,840)"/> <wire from="(170,840)" to="(170,1000)"/> <wire from="(170,130)" to="(330,130)"/> <wire from="(170,1320)" to="(170,1480)"/> <wire from="(170,1160)" to="(170,1320)"/> <wire from="(170,1000)" to="(170,1160)"/> <wire from="(550,230)" to="(570,230)"/> <wire from="(690,1330)" to="(690,1440)"/> <wire from="(610,320)" to="(610,480)"/> <wire from="(490,410)" to="(510,410)"/> <wire from="(170,330)" to="(190,330)"/> <wire from="(240,480)" to="(260,480)"/> <wire from="(300,190)" to="(300,240)"/> <wire from="(670,660)" to="(750,660)"/> <wire from="(830,800)" to="(830,850)"/> <wire from="(830,640)" to="(830,690)"/> <wire from="(830,1120)" to="(830,1170)"/> <wire from="(830,960)" to="(830,1010)"/> <wire from="(590,450)" to="(640,450)"/> <wire from="(690,940)" to="(750,940)"/> <wire from="(690,780)" to="(750,780)"/> <wire from="(690,620)" to="(750,620)"/> <wire from="(690,1100)" to="(750,1100)"/> <wire from="(210,470)" to="(210,490)"/> <wire from="(590,450)" to="(590,480)"/> <wire from="(320,260)" to="(320,290)"/> <wire from="(410,520)" to="(830,520)"/> <wire from="(650,970)" to="(650,1120)"/> <wire from="(490,140)" to="(490,230)"/> <wire from="(550,280)" to="(570,280)"/> <wire from="(550,600)" to="(570,600)"/> <wire from="(550,760)" to="(570,760)"/> <wire from="(550,920)" to="(570,920)"/> <wire from="(550,1080)" to="(570,1080)"/> <wire from="(550,1240)" to="(570,1240)"/> <wire from="(550,1400)" to="(570,1400)"/> <wire from="(300,420)" to="(330,420)"/> <wire from="(390,170)" to="(870,170)"/> <wire from="(370,420)" to="(390,420)"/> <wire from="(240,480)" to="(240,650)"/> <wire from="(740,300)" to="(770,300)"/> <wire from="(360,620)" to="(360,660)"/> <wire from="(360,780)" to="(360,820)"/> <wire from="(360,940)" to="(360,980)"/> <wire from="(360,1100)" to="(360,1140)"/> <wire from="(490,410)" to="(490,580)"/> <wire from="(360,1260)" to="(360,1300)"/> <wire from="(360,1420)" to="(360,1460)"/> <wire from="(170,330)" to="(170,510)"/> <wire from="(410,660)" to="(670,660)"/> <wire from="(670,1110)" to="(750,1110)"/> <wire from="(670,950)" to="(750,950)"/> <wire from="(290,660)" to="(360,660)"/> <wire from="(290,820)" to="(360,820)"/> <wire from="(290,980)" to="(360,980)"/> <wire from="(290,1140)" to="(360,1140)"/> <wire from="(290,1300)" to="(360,1300)"/> <wire from="(290,1460)" to="(360,1460)"/> <wire from="(410,350)" to="(410,420)"/> <wire from="(390,170)" to="(390,240)"/> <wire from="(690,200)" to="(740,200)"/> <wire from="(650,1120)" to="(750,1120)"/> <wire from="(130,130)" to="(170,130)"/> <wire from="(670,800)" to="(670,950)"/> <wire from="(370,610)" to="(410,610)"/> <wire from="(370,770)" to="(410,770)"/> <wire from="(370,930)" to="(410,930)"/> <wire from="(370,1090)" to="(410,1090)"/> <wire from="(370,1250)" to="(410,1250)"/> <wire from="(370,1410)" to="(410,1410)"/> <wire from="(690,600)" to="(690,620)"/> <wire from="(610,1140)" to="(610,1290)"/> <wire from="(410,1460)" to="(770,1460)"/> <wire from="(300,750)" to="(300,910)"/> <wire from="(300,590)" to="(300,750)"/> <wire from="(300,910)" to="(300,1070)"/> <wire from="(550,410)" to="(570,410)"/> <wire from="(300,1230)" to="(300,1390)"/> <wire from="(300,1070)" to="(300,1230)"/> <wire from="(300,150)" to="(330,150)"/> <wire from="(690,300)" to="(720,300)"/> <wire from="(410,750)" to="(430,750)"/> <wire from="(410,590)" to="(430,590)"/> <wire from="(410,910)" to="(430,910)"/> <wire from="(410,1070)" to="(430,1070)"/> <wire from="(410,1230)" to="(430,1230)"/> <wire from="(410,1390)" to="(430,1390)"/> <wire from="(360,270)" to="(360,310)"/> <wire from="(170,510)" to="(190,510)"/> <wire from="(410,1330)" to="(690,1330)"/> <wire from="(290,310)" to="(360,310)"/> <wire from="(410,320)" to="(610,320)"/> <wire from="(690,1330)" to="(830,1330)"/> <wire from="(630,1130)" to="(750,1130)"/> <wire from="(130,240)" to="(240,240)"/> <wire from="(220,670)" to="(260,670)"/> <wire from="(220,830)" to="(260,830)"/> <wire from="(220,990)" to="(260,990)"/> <wire from="(220,1150)" to="(260,1150)"/> <wire from="(220,1310)" to="(260,1310)"/> <wire from="(320,440)" to="(320,470)"/> <wire from="(220,1470)" to="(260,1470)"/> <wire from="(630,1130)" to="(630,1280)"/> <wire from="(370,260)" to="(410,260)"/> <wire from="(470,600)" to="(510,600)"/> <wire from="(470,760)" to="(510,760)"/> <wire from="(470,920)" to="(510,920)"/> <wire from="(470,1080)" to="(510,1080)"/> <wire from="(470,1240)" to="(510,1240)"/> <wire from="(470,1400)" to="(510,1400)"/> <wire from="(810,1120)" to="(830,1120)"/> <wire from="(810,960)" to="(830,960)"/> <wire from="(810,800)" to="(830,800)"/> <wire from="(810,640)" to="(830,640)"/> <wire from="(550,460)" to="(570,460)"/> <wire from="(830,310)" to="(830,350)"/> <wire from="(170,510)" to="(170,680)"/> <wire from="(610,320)" to="(770,320)"/> <wire from="(740,1440)" to="(770,1440)"/> <wire from="(410,240)" to="(430,240)"/> <wire from="(690,200)" to="(690,300)"/> <wire from="(300,240)" to="(300,420)"/> <wire from="(830,1270)" to="(830,1330)"/> <wire from="(410,610)" to="(410,660)"/> <wire from="(410,770)" to="(410,820)"/> <wire from="(410,930)" to="(410,980)"/> <wire from="(410,1090)" to="(410,1140)"/> <wire from="(410,1250)" to="(410,1300)"/> <wire from="(410,1410)" to="(410,1460)"/> <wire from="(410,1330)" to="(410,1390)"/> <wire from="(410,1170)" to="(410,1230)"/> <wire from="(410,1010)" to="(410,1070)"/> <wire from="(410,850)" to="(410,910)"/> <wire from="(410,690)" to="(410,750)"/> <wire from="(610,1140)" to="(750,1140)"/> <wire from="(830,470)" to="(830,520)"/> <wire from="(340,620)" to="(340,690)"/> <wire from="(340,780)" to="(340,850)"/> <wire from="(340,940)" to="(340,1010)"/> <wire from="(340,1100)" to="(340,1170)"/> <wire from="(340,1260)" to="(340,1330)"/> <wire from="(340,1420)" to="(340,1490)"/> <wire from="(650,1120)" to="(650,1260)"/> <wire from="(670,660)" to="(670,800)"/> <wire from="(320,290)" to="(510,290)"/> <wire from="(810,1450)" to="(870,1450)"/> <wire from="(220,690)" to="(340,690)"/> <wire from="(220,850)" to="(340,850)"/> <wire from="(220,1010)" to="(340,1010)"/> <wire from="(220,1170)" to="(340,1170)"/> <wire from="(220,1330)" to="(340,1330)"/> <wire from="(220,1490)" to="(340,1490)"/> <wire from="(630,1280)" to="(730,1280)"/> <wire from="(650,820)" to="(750,820)"/> <wire from="(410,350)" to="(830,350)"/> <wire from="(220,320)" to="(260,320)"/> <wire from="(470,250)" to="(510,250)"/> <wire from="(690,1440)" to="(720,1440)"/> <wire from="(410,610)" to="(430,610)"/> <wire from="(410,930)" to="(430,930)"/> <wire from="(410,770)" to="(430,770)"/> <wire from="(410,1090)" to="(430,1090)"/> <wire from="(410,1250)" to="(430,1250)"/> <wire from="(410,1410)" to="(430,1410)"/> <wire from="(300,150)" to="(300,190)"/> <wire from="(360,450)" to="(360,490)"/> <wire from="(130,640)" to="(210,640)"/> <wire from="(130,800)" to="(210,800)"/> <wire from="(130,960)" to="(210,960)"/> <wire from="(130,1120)" to="(210,1120)"/> <wire from="(130,1280)" to="(210,1280)"/> <wire from="(130,1440)" to="(210,1440)"/> <wire from="(320,610)" to="(330,610)"/> <wire from="(320,770)" to="(330,770)"/> <wire from="(320,930)" to="(330,930)"/> <wire from="(320,1090)" to="(330,1090)"/> <wire from="(320,1250)" to="(330,1250)"/> <wire from="(320,1410)" to="(330,1410)"/> <wire from="(410,260)" to="(410,320)"/> <wire from="(290,490)" to="(360,490)"/> <wire from="(410,1140)" to="(610,1140)"/> <wire from="(610,1290)" to="(730,1290)"/> <wire from="(340,270)" to="(340,340)"/> <wire from="(670,1110)" to="(670,1250)"/> <wire from="(220,340)" to="(340,340)"/> <wire from="(550,300)" to="(590,300)"/> <wire from="(660,490)" to="(700,490)"/> <wire from="(690,1240)" to="(730,1240)"/> <wire from="(370,440)" to="(410,440)"/> <wire from="(490,1220)" to="(510,1220)"/> <wire from="(490,1380)" to="(510,1380)"/> <wire from="(390,370)" to="(870,370)"/> <wire from="(240,1290)" to="(260,1290)"/> <wire from="(240,810)" to="(260,810)"/> <wire from="(240,970)" to="(260,970)"/> <wire from="(240,1130)" to="(260,1130)"/> <wire from="(240,1450)" to="(260,1450)"/> <wire from="(410,260)" to="(430,260)"/> <wire from="(410,420)" to="(430,420)"/> <wire from="(670,950)" to="(670,1110)"/> <wire from="(490,580)" to="(510,580)"/> <wire from="(490,740)" to="(510,740)"/> <wire from="(490,900)" to="(510,900)"/> <wire from="(490,1060)" to="(510,1060)"/> <wire from="(300,420)" to="(300,590)"/> <wire from="(410,200)" to="(690,200)"/> <wire from="(240,650)" to="(260,650)"/> <wire from="(680,450)" to="(750,450)"/> <wire from="(320,260)" to="(330,260)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(680,450)" to="(680,570)"/> <wire from="(390,370)" to="(390,420)"/> <wire from="(570,230)" to="(570,280)"/> <wire from="(700,490)" to="(750,490)"/> <wire from="(690,1100)" to="(690,1240)"/> <wire from="(320,470)" to="(510,470)"/> <wire from="(170,130)" to="(170,330)"/> <wire from="(370,140)" to="(490,140)"/> <wire from="(670,1250)" to="(730,1250)"/> <wire from="(210,640)" to="(210,660)"/> <wire from="(210,800)" to="(210,820)"/> <wire from="(210,960)" to="(210,980)"/> <wire from="(210,1120)" to="(210,1140)"/> <wire from="(210,1280)" to="(210,1300)"/> <wire from="(210,1440)" to="(210,1460)"/> <wire from="(410,1170)" to="(830,1170)"/> <wire from="(410,1010)" to="(830,1010)"/> <wire from="(410,850)" to="(830,850)"/> <wire from="(410,690)" to="(830,690)"/> <wire from="(220,500)" to="(260,500)"/> <wire from="(650,820)" to="(650,970)"/> <wire from="(470,430)" to="(510,430)"/> <wire from="(810,1270)" to="(830,1270)"/> <wire from="(810,470)" to="(830,470)"/> <wire from="(810,310)" to="(830,310)"/> <wire from="(570,600)" to="(570,640)"/> <wire from="(570,760)" to="(570,800)"/> <wire from="(570,920)" to="(570,960)"/> <wire from="(570,1080)" to="(570,1120)"/> <wire from="(570,1240)" to="(570,1280)"/> <wire from="(570,1400)" to="(570,1440)"/> <wire from="(410,980)" to="(630,980)"/> <wire from="(410,500)" to="(630,500)"/> <wire from="(240,650)" to="(240,810)"/> <wire from="(240,1290)" to="(240,1450)"/> <wire from="(240,1130)" to="(240,1290)"/> <wire from="(240,970)" to="(240,1130)"/> <wire from="(240,810)" to="(240,970)"/> <wire from="(300,590)" to="(330,590)"/> <wire from="(300,750)" to="(330,750)"/> <wire from="(300,910)" to="(330,910)"/> <wire from="(300,1390)" to="(330,1390)"/> <wire from="(300,1070)" to="(330,1070)"/> <wire from="(300,1230)" to="(330,1230)"/> <wire from="(490,1060)" to="(490,1220)"/> <wire from="(490,900)" to="(490,1060)"/> <wire from="(490,740)" to="(490,900)"/> <wire from="(490,580)" to="(490,740)"/> <wire from="(490,1220)" to="(490,1380)"/> <wire from="(370,590)" to="(390,590)"/> <wire from="(370,750)" to="(390,750)"/> <wire from="(370,1390)" to="(390,1390)"/> <wire from="(370,910)" to="(390,910)"/> <wire from="(370,1230)" to="(390,1230)"/> <wire from="(370,1070)" to="(390,1070)"/> <wire from="(690,940)" to="(690,1100)"/> <wire from="(690,780)" to="(690,940)"/> <wire from="(690,620)" to="(690,780)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(410,200)" to="(410,240)"/> <wire from="(590,70)" to="(590,300)"/> <wire from="(240,300)" to="(260,300)"/> <wire from="(410,440)" to="(410,500)"/> <wire from="(650,1260)" to="(730,1260)"/> <wire from="(670,800)" to="(750,800)"/> <comp lib="4" loc="(550,900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(740,200)" name="Constant"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(290,660)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,980)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,920)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,250)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,870)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,1460)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1140)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(550,1380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(550,580)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="1" loc="(290,310)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(810,960)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="label" val="9"/> </comp> <comp lib="4" loc="(370,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(190,330)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(550,1220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(870,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(810,800)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="label" val="8"/> </comp> <comp lib="1" loc="(810,1120)" name="NOR Gate"> <a name="label" val="10"/> </comp> <comp lib="1" loc="(470,760)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(470,1240)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,1480)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(510,470)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(190,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(810,640)" name="NOR Gate"> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="1" loc="(510,290)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(470,600)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(550,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="4" loc="(370,1390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="2" loc="(190,1160)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(740,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp lib="6" loc="(353,41)" name="Text"> <a name="text" val="OAM COUNTER 1 or 4 step mode "/> <a name="font" val="SansSerif plain 18"/> </comp> <comp lib="4" loc="(370,240)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="2" loc="(190,510)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(470,1400)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(550,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,140)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="MODE4"/> </comp> <comp lib="4" loc="(550,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(810,470)" name="NAND Gate"> <a name="inputs" val="2"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(870,1350)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out7"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(550,1060)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,600)" name="AND Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(130,960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="1" loc="(740,1440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(190,1320)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(660,490)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,1270)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> <a name="label" val="11"/> </comp> <comp lib="1" loc="(290,1300)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,1280)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="4" loc="(370,1230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(660,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(810,1450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(870,1450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="COUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(190,1000)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(470,1080)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp lib="1" loc="(470,430)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(370,910)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(870,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out3"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(190,680)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(870,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(870,1030)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="out5"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="OAM2_COUNTER"> <a name="circuit" val="OAM2_COUNTER"/> <a name="clabel" val="OAM2 COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffdb74" height="390" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="74">/PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="244">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="104">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="154">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="204">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="253">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="304">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="424">COUT</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 55,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="110,140" width="8" x="46" y="236"/> <circ-port height="8" pin="110,40" width="8" x="46" y="66"/> <circ-port height="8" pin="110,90" width="8" x="46" y="106"/> <circ-port height="10" pin="480,90" width="10" x="275" y="95"/> <circ-port height="10" pin="480,280" width="10" x="275" y="145"/> <circ-port height="10" pin="480,460" width="10" x="275" y="195"/> <circ-port height="10" pin="480,640" width="10" x="275" y="245"/> <circ-port height="10" pin="480,820" width="10" x="275" y="295"/> <circ-port height="10" pin="480,940" width="10" x="275" y="415"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(250,680)" to="(310,680)"/> <wire from="(250,680)" to="(250,750)"/> <wire from="(230,820)" to="(480,820)"/> <wire from="(230,700)" to="(230,770)"/> <wire from="(250,320)" to="(250,390)"/> <wire from="(230,340)" to="(230,410)"/> <wire from="(230,460)" to="(480,460)"/> <wire from="(250,320)" to="(310,320)"/> <wire from="(250,790)" to="(370,790)"/> <wire from="(250,430)" to="(370,430)"/> <wire from="(160,160)" to="(160,190)"/> <wire from="(160,520)" to="(160,550)"/> <wire from="(160,880)" to="(160,910)"/> <wire from="(140,320)" to="(170,320)"/> <wire from="(140,680)" to="(170,680)"/> <wire from="(350,220)" to="(370,220)"/> <wire from="(350,580)" to="(370,580)"/> <wire from="(110,40)" to="(390,40)"/> <wire from="(210,520)" to="(230,520)"/> <wire from="(210,880)" to="(230,880)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(210,680)" to="(230,680)"/> <wire from="(210,160)" to="(230,160)"/> <wire from="(470,870)" to="(470,910)"/> <wire from="(470,150)" to="(470,190)"/> <wire from="(470,510)" to="(470,550)"/> <wire from="(390,130)" to="(390,310)"/> <wire from="(390,490)" to="(390,670)"/> <wire from="(230,410)" to="(310,410)"/> <wire from="(230,770)" to="(310,770)"/> <wire from="(160,520)" to="(170,520)"/> <wire from="(160,160)" to="(170,160)"/> <wire from="(160,880)" to="(170,880)"/> <wire from="(140,680)" to="(140,860)"/> <wire from="(140,320)" to="(140,500)"/> <wire from="(350,510)" to="(410,510)"/> <wire from="(350,870)" to="(410,870)"/> <wire from="(350,150)" to="(410,150)"/> <wire from="(250,610)" to="(250,680)"/> <wire from="(250,250)" to="(250,320)"/> <wire from="(160,190)" to="(470,190)"/> <wire from="(160,550)" to="(470,550)"/> <wire from="(160,910)" to="(470,910)"/> <wire from="(200,890)" to="(200,900)"/> <wire from="(370,580)" to="(370,610)"/> <wire from="(370,220)" to="(370,250)"/> <wire from="(110,140)" to="(140,140)"/> <wire from="(110,90)" to="(200,90)"/> <wire from="(250,930)" to="(270,930)"/> <wire from="(290,570)" to="(310,570)"/> <wire from="(290,210)" to="(310,210)"/> <wire from="(250,570)" to="(270,570)"/> <wire from="(290,930)" to="(310,930)"/> <wire from="(390,670)" to="(410,670)"/> <wire from="(390,310)" to="(410,310)"/> <wire from="(450,330)" to="(470,330)"/> <wire from="(230,640)" to="(230,680)"/> <wire from="(230,280)" to="(230,320)"/> <wire from="(450,690)" to="(470,690)"/> <wire from="(250,210)" to="(270,210)"/> <wire from="(230,340)" to="(310,340)"/> <wire from="(230,700)" to="(310,700)"/> <wire from="(200,170)" to="(210,170)"/> <wire from="(200,890)" to="(210,890)"/> <wire from="(200,530)" to="(210,530)"/> <wire from="(200,350)" to="(200,530)"/> <wire from="(200,710)" to="(200,890)"/> <wire from="(350,940)" to="(480,940)"/> <wire from="(250,860)" to="(310,860)"/> <wire from="(250,500)" to="(310,500)"/> <wire from="(250,500)" to="(250,570)"/> <wire from="(250,860)" to="(250,930)"/> <wire from="(230,880)" to="(230,950)"/> <wire from="(230,640)" to="(480,640)"/> <wire from="(250,140)" to="(250,210)"/> <wire from="(230,160)" to="(230,230)"/> <wire from="(230,520)" to="(230,590)"/> <wire from="(230,280)" to="(480,280)"/> <wire from="(250,140)" to="(310,140)"/> <wire from="(250,250)" to="(370,250)"/> <wire from="(250,610)" to="(370,610)"/> <wire from="(200,90)" to="(200,170)"/> <wire from="(160,700)" to="(160,730)"/> <wire from="(160,340)" to="(160,370)"/> <wire from="(390,40)" to="(390,130)"/> <wire from="(140,500)" to="(170,500)"/> <wire from="(140,140)" to="(170,140)"/> <wire from="(140,860)" to="(170,860)"/> <wire from="(350,760)" to="(370,760)"/> <wire from="(350,400)" to="(370,400)"/> <wire from="(210,340)" to="(230,340)"/> <wire from="(210,500)" to="(230,500)"/> <wire from="(210,140)" to="(230,140)"/> <wire from="(470,690)" to="(470,730)"/> <wire from="(470,330)" to="(470,370)"/> <wire from="(210,700)" to="(230,700)"/> <wire from="(210,860)" to="(230,860)"/> <wire from="(230,90)" to="(230,140)"/> <wire from="(390,670)" to="(390,850)"/> <wire from="(390,310)" to="(390,490)"/> <wire from="(230,230)" to="(310,230)"/> <wire from="(230,590)" to="(310,590)"/> <wire from="(230,950)" to="(310,950)"/> <wire from="(160,340)" to="(170,340)"/> <wire from="(160,700)" to="(170,700)"/> <wire from="(140,140)" to="(140,320)"/> <wire from="(140,500)" to="(140,680)"/> <wire from="(350,690)" to="(410,690)"/> <wire from="(350,330)" to="(410,330)"/> <wire from="(250,790)" to="(250,860)"/> <wire from="(250,430)" to="(250,500)"/> <wire from="(230,90)" to="(480,90)"/> <wire from="(160,370)" to="(470,370)"/> <wire from="(160,730)" to="(470,730)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(370,760)" to="(370,790)"/> <wire from="(370,400)" to="(370,430)"/> <wire from="(290,750)" to="(310,750)"/> <wire from="(290,390)" to="(310,390)"/> <wire from="(250,750)" to="(270,750)"/> <wire from="(390,130)" to="(410,130)"/> <wire from="(390,850)" to="(410,850)"/> <wire from="(390,490)" to="(410,490)"/> <wire from="(450,150)" to="(470,150)"/> <wire from="(450,510)" to="(470,510)"/> <wire from="(230,460)" to="(230,500)"/> <wire from="(450,870)" to="(470,870)"/> <wire from="(230,820)" to="(230,860)"/> <wire from="(250,390)" to="(270,390)"/> <wire from="(230,520)" to="(310,520)"/> <wire from="(230,160)" to="(310,160)"/> <wire from="(230,880)" to="(310,880)"/> <wire from="(200,350)" to="(210,350)"/> <wire from="(200,710)" to="(210,710)"/> <wire from="(200,530)" to="(200,710)"/> <wire from="(200,170)" to="(200,350)"/> <comp lib="4" loc="(210,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(350,940)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(350,690)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(450,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(210,320)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(250,120)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(210,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(450,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,330)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="1" loc="(350,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(480,90)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(480,280)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(450,310)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(450,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(290,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(210,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(480,820)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(480,940)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CARRY_OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(290,930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(210,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(350,870)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(350,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> </circuit> <circuit name="OAM_BUF_CONTROL"> <a name="circuit" val="OAM_BUF_CONTROL"/> <a name="clabel" val="OAM BUF CONTROL"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#2eff26" height="261" stroke="#000000" stroke-width="2" width="210" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="254">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="228" y="254">OB/OAM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="228" y="104">OFETCH</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="164">OAMCTR2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="239" y="284">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="104">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="274">SPR_OV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="224">/W4</text> <circ-port height="8" pin="90,60" width="8" x="46" y="66"/> <circ-port height="8" pin="90,160" width="8" x="46" y="126"/> <circ-port height="8" pin="90,210" width="8" x="46" y="266"/> <circ-port height="8" pin="90,270" width="8" x="46" y="186"/> <circ-port height="8" pin="90,320" width="8" x="46" y="156"/> <circ-port height="8" pin="90,370" width="8" x="46" y="96"/> <circ-port height="8" pin="90,430" width="8" x="46" y="216"/> <circ-port height="8" pin="90,490" width="8" x="46" y="246"/> <circ-port height="10" pin="920,150" width="10" x="255" y="245"/> <circ-port height="10" pin="920,250" width="10" x="255" y="275"/> <circ-port height="10" pin="920,470" width="10" x="255" y="95"/> <circ-anchor facing="east" height="6" width="6" x="187" y="47"/> </appear> <wire from="(90,320)" to="(150,320)"/> <wire from="(520,430)" to="(560,430)"/> <wire from="(150,70)" to="(150,220)"/> <wire from="(110,250)" to="(110,270)"/> <wire from="(110,210)" to="(110,230)"/> <wire from="(130,470)" to="(130,490)"/> <wire from="(130,430)" to="(130,450)"/> <wire from="(140,370)" to="(180,370)"/> <wire from="(320,440)" to="(320,470)"/> <wire from="(280,470)" to="(320,470)"/> <wire from="(220,580)" to="(220,610)"/> <wire from="(220,480)" to="(220,510)"/> <wire from="(440,430)" to="(480,430)"/> <wire from="(620,480)" to="(790,480)"/> <wire from="(120,80)" to="(120,110)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(90,370)" to="(120,370)"/> <wire from="(380,70)" to="(380,300)"/> <wire from="(540,410)" to="(560,410)"/> <wire from="(620,410)" to="(640,410)"/> <wire from="(600,430)" to="(620,430)"/> <wire from="(620,430)" to="(640,430)"/> <wire from="(680,430)" to="(700,430)"/> <wire from="(700,410)" to="(720,410)"/> <wire from="(700,430)" to="(720,430)"/> <wire from="(180,270)" to="(180,370)"/> <wire from="(370,430)" to="(400,430)"/> <wire from="(90,160)" to="(180,160)"/> <wire from="(460,350)" to="(620,350)"/> <wire from="(760,410)" to="(780,410)"/> <wire from="(280,570)" to="(300,570)"/> <wire from="(380,410)" to="(400,410)"/> <wire from="(220,420)" to="(220,460)"/> <wire from="(460,410)" to="(480,410)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(180,160)" to="(180,210)"/> <wire from="(320,440)" to="(330,440)"/> <wire from="(340,110)" to="(340,350)"/> <wire from="(280,240)" to="(860,240)"/> <wire from="(780,460)" to="(790,460)"/> <wire from="(830,470)" to="(840,470)"/> <wire from="(280,150)" to="(920,150)"/> <wire from="(180,160)" to="(240,160)"/> <wire from="(220,110)" to="(340,110)"/> <wire from="(150,220)" to="(200,220)"/> <wire from="(150,260)" to="(200,260)"/> <wire from="(340,350)" to="(460,350)"/> <wire from="(220,420)" to="(330,420)"/> <wire from="(150,70)" to="(380,70)"/> <wire from="(90,430)" to="(130,430)"/> <wire from="(90,490)" to="(130,490)"/> <wire from="(220,530)" to="(220,560)"/> <wire from="(120,110)" to="(220,110)"/> <wire from="(220,110)" to="(220,140)"/> <wire from="(840,260)" to="(840,470)"/> <wire from="(220,530)" to="(320,530)"/> <wire from="(840,260)" to="(860,260)"/> <wire from="(190,460)" to="(220,460)"/> <wire from="(220,610)" to="(700,610)"/> <wire from="(120,70)" to="(150,70)"/> <wire from="(700,300)" to="(700,410)"/> <wire from="(380,300)" to="(540,300)"/> <wire from="(540,300)" to="(540,410)"/> <wire from="(110,250)" to="(200,250)"/> <wire from="(110,230)" to="(200,230)"/> <wire from="(540,300)" to="(700,300)"/> <wire from="(380,300)" to="(380,410)"/> <wire from="(90,210)" to="(110,210)"/> <wire from="(90,270)" to="(110,270)"/> <wire from="(130,450)" to="(150,450)"/> <wire from="(130,470)" to="(150,470)"/> <wire from="(220,460)" to="(240,460)"/> <wire from="(220,140)" to="(240,140)"/> <wire from="(220,580)" to="(240,580)"/> <wire from="(220,480)" to="(240,480)"/> <wire from="(220,560)" to="(240,560)"/> <wire from="(220,510)" to="(300,510)"/> <wire from="(620,350)" to="(620,410)"/> <wire from="(90,60)" to="(100,60)"/> <wire from="(300,510)" to="(300,570)"/> <wire from="(320,470)" to="(320,530)"/> <wire from="(620,430)" to="(620,480)"/> <wire from="(460,350)" to="(460,410)"/> <wire from="(840,470)" to="(920,470)"/> <wire from="(780,410)" to="(780,460)"/> <wire from="(700,430)" to="(700,610)"/> <wire from="(150,260)" to="(150,320)"/> <comp lib="1" loc="(280,240)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> <a name="label" val="4"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="1" loc="(140,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(600,420)" name="D-latch"/> <comp lib="4" loc="(440,410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(520,420)" name="D-latch"/> <comp lib="0" loc="(90,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(190,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="1"/> </comp> <comp lib="1" loc="(280,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="9"/> </comp> <comp lib="1" loc="(370,430)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="6"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(920,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OB/OAM"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(920,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/WE"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W4"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(900,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="3"/> </comp> <comp lib="1" loc="(280,150)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="7"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp loc="(760,420)" name="D-latch"/> <comp loc="(680,420)" name="D-latch"/> <comp lib="0" loc="(90,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OAMCTR2"/> </comp> <comp lib="6" loc="(471,423)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="6" loc="(552,424)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="1" loc="(280,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="8"/> </comp> <comp lib="6" loc="(132,359)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="6" loc="(420,391)" name="Text"> <a name="text" val="DFF2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(258,525)" name="Text"> <a name="text" val="FF1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(830,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="10"/> </comp> <comp lib="6" loc="(632,424)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="0" loc="(920,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OFETCH"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(713,424)" name="Text"> <a name="text" val="4"/> </comp> </circuit> <circuit name="OAM_BUFFER"> <a name="circuit" val="OAM_BUFFER"/> <a name="clabel" val="OAM BUFFER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fa12ff" height="170" stroke="#000000" stroke-width="2" width="210" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="217" y="104">RAM read bit</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="84">I/OAM2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="104">/R4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="217" y="73">RAM write bit</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="164">DB--&gt;OAM</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="221" y="184">OAM--&gt;DB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="235" y="143">OB bit </text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="144">/WE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="184">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="124">OB/OAM</text> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 56,56" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="130,40" width="8" x="46" y="56"/> <circ-port height="8" pin="150,560" width="8" x="46" y="96"/> <circ-port height="10" pin="930,310" width="10" x="255" y="175"/> <circ-port height="8" pin="150,320" width="8" x="46" y="76"/> <circ-port height="10" pin="930,610" width="10" x="255" y="135"/> <circ-port height="8" pin="150,190" width="8" x="256" y="96"/> <circ-port height="8" pin="150,680" width="8" x="46" y="116"/> <circ-port height="8" pin="150,870" width="8" x="46" y="156"/> <circ-port height="8" pin="150,920" width="8" x="46" y="176"/> <circ-port height="8" pin="150,1130" width="8" x="46" y="136"/> <circ-port height="10" pin="930,900" width="10" x="255" y="65"/> <circ-anchor facing="east" height="6" width="6" x="257" y="37"/> </appear> <wire from="(180,340)" to="(180,350)"/> <wire from="(180,660)" to="(180,670)"/> <wire from="(1780,500)" to="(1780,510)"/> <wire from="(1150,420)" to="(1210,420)"/> <wire from="(1870,270)" to="(1870,280)"/> <wire from="(1910,470)" to="(1910,480)"/> <wire from="(1730,350)" to="(1730,480)"/> <wire from="(1460,500)" to="(1460,510)"/> <wire from="(560,880)" to="(560,920)"/> <wire from="(710,180)" to="(730,180)"/> <wire from="(360,200)" to="(360,240)"/> <wire from="(790,250)" to="(820,250)"/> <wire from="(680,870)" to="(680,970)"/> <wire from="(660,850)" to="(730,850)"/> <wire from="(520,360)" to="(520,420)"/> <wire from="(1470,290)" to="(1500,290)"/> <wire from="(450,610)" to="(450,660)"/> <wire from="(710,710)" to="(710,770)"/> <wire from="(1800,140)" to="(1830,140)"/> <wire from="(1780,440)" to="(1810,440)"/> <wire from="(1620,440)" to="(1650,440)"/> <wire from="(470,500)" to="(540,500)"/> <wire from="(1550,350)" to="(1700,350)"/> <wire from="(1270,420)" to="(1290,420)"/> <wire from="(1870,170)" to="(1910,170)"/> <wire from="(1830,200)" to="(1930,200)"/> <wire from="(180,310)" to="(180,320)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(650,260)" to="(650,520)"/> <wire from="(1560,440)" to="(1560,530)"/> <wire from="(670,1030)" to="(730,1030)"/> <wire from="(1800,170)" to="(1800,190)"/> <wire from="(1810,500)" to="(1810,510)"/> <wire from="(690,910)" to="(730,910)"/> <wire from="(1650,500)" to="(1650,510)"/> <wire from="(840,900)" to="(880,900)"/> <wire from="(1520,210)" to="(1520,220)"/> <wire from="(410,310)" to="(450,310)"/> <wire from="(1390,400)" to="(1390,410)"/> <wire from="(1930,140)" to="(1930,200)"/> <wire from="(1960,170)" to="(1960,230)"/> <wire from="(1420,230)" to="(1430,230)"/> <wire from="(710,950)" to="(730,950)"/> <wire from="(280,200)" to="(300,200)"/> <wire from="(770,360)" to="(800,360)"/> <wire from="(1830,200)" to="(1830,250)"/> <wire from="(520,120)" to="(540,120)"/> <wire from="(1770,100)" to="(1780,100)"/> <wire from="(470,240)" to="(480,240)"/> <wire from="(580,260)" to="(650,260)"/> <wire from="(340,270)" to="(350,270)"/> <wire from="(200,30)" to="(280,30)"/> <wire from="(710,360)" to="(710,420)"/> <wire from="(1580,140)" to="(1580,250)"/> <wire from="(1450,250)" to="(1470,250)"/> <wire from="(1650,440)" to="(1680,440)"/> <wire from="(800,770)" to="(800,820)"/> <wire from="(180,280)" to="(180,290)"/> <wire from="(1920,420)" to="(1920,440)"/> <wire from="(1780,440)" to="(1780,460)"/> <wire from="(1520,250)" to="(1580,250)"/> <wire from="(1680,500)" to="(1680,510)"/> <wire from="(1140,40)" to="(1140,560)"/> <wire from="(1460,440)" to="(1460,450)"/> <wire from="(170,50)" to="(200,50)"/> <wire from="(800,850)" to="(820,850)"/> <wire from="(170,60)" to="(520,60)"/> <wire from="(710,120)" to="(730,120)"/> <wire from="(660,870)" to="(680,870)"/> <wire from="(660,860)" to="(690,860)"/> <wire from="(450,660)" to="(470,660)"/> <wire from="(1700,480)" to="(1710,480)"/> <wire from="(200,680)" to="(470,680)"/> <wire from="(520,300)" to="(520,360)"/> <wire from="(1490,250)" to="(1520,250)"/> <wire from="(1360,440)" to="(1390,440)"/> <wire from="(710,650)" to="(710,710)"/> <wire from="(660,880)" to="(670,880)"/> <wire from="(790,250)" to="(790,300)"/> <wire from="(640,320)" to="(640,520)"/> <wire from="(610,500)" to="(730,500)"/> <wire from="(480,140)" to="(540,140)"/> <wire from="(1650,440)" to="(1650,460)"/> <wire from="(600,540)" to="(600,610)"/> <wire from="(1810,440)" to="(1810,460)"/> <wire from="(480,290)" to="(480,440)"/> <wire from="(630,380)" to="(730,380)"/> <wire from="(280,30)" to="(710,30)"/> <wire from="(1960,270)" to="(1960,280)"/> <wire from="(1520,310)" to="(1520,320)"/> <wire from="(1390,500)" to="(1390,510)"/> <wire from="(800,820)" to="(820,820)"/> <wire from="(150,320)" to="(180,320)"/> <wire from="(660,840)" to="(680,840)"/> <wire from="(710,890)" to="(730,890)"/> <wire from="(800,260)" to="(800,360)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(520,850)" to="(550,850)"/> <wire from="(520,60)" to="(540,60)"/> <wire from="(1640,230)" to="(1650,230)"/> <wire from="(1700,290)" to="(1710,290)"/> <wire from="(1830,140)" to="(1830,180)"/> <wire from="(1270,290)" to="(1430,290)"/> <wire from="(240,110)" to="(250,110)"/> <wire from="(710,300)" to="(710,360)"/> <wire from="(1830,250)" to="(1850,250)"/> <wire from="(650,260)" to="(730,260)"/> <wire from="(1460,380)" to="(1460,400)"/> <wire from="(580,380)" to="(630,380)"/> <wire from="(180,700)" to="(180,710)"/> <wire from="(1680,440)" to="(1680,460)"/> <wire from="(670,140)" to="(730,140)"/> <wire from="(1780,380)" to="(1780,400)"/> <wire from="(1800,80)" to="(1800,90)"/> <wire from="(1890,250)" to="(1940,250)"/> <wire from="(770,420)" to="(810,420)"/> <wire from="(280,30)" to="(280,110)"/> <wire from="(840,880)" to="(840,900)"/> <wire from="(810,270)" to="(810,420)"/> <wire from="(1450,210)" to="(1450,220)"/> <wire from="(1830,180)" to="(1890,180)"/> <wire from="(710,60)" to="(730,60)"/> <wire from="(280,270)" to="(300,270)"/> <wire from="(1880,440)" to="(1890,440)"/> <wire from="(350,230)" to="(350,270)"/> <wire from="(1370,480)" to="(1440,480)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(360,240)" to="(360,300)"/> <wire from="(810,810)" to="(820,810)"/> <wire from="(520,240)" to="(520,300)"/> <wire from="(600,610)" to="(930,610)"/> <wire from="(1390,440)" to="(1390,460)"/> <wire from="(1520,250)" to="(1520,270)"/> <wire from="(820,280)" to="(820,480)"/> <wire from="(630,380)" to="(630,520)"/> <wire from="(770,60)" to="(820,60)"/> <wire from="(180,670)" to="(180,680)"/> <wire from="(1650,380)" to="(1650,400)"/> <wire from="(1580,310)" to="(1580,320)"/> <wire from="(770,710)" to="(810,710)"/> <wire from="(1870,120)" to="(1870,130)"/> <wire from="(1730,350)" to="(1910,350)"/> <wire from="(770,890)" to="(790,890)"/> <wire from="(1270,480)" to="(1270,530)"/> <wire from="(520,480)" to="(540,480)"/> <wire from="(710,830)" to="(730,830)"/> <wire from="(1930,140)" to="(1940,140)"/> <wire from="(230,190)" to="(250,190)"/> <wire from="(290,260)" to="(300,260)"/> <wire from="(300,110)" to="(310,110)"/> <wire from="(710,240)" to="(710,300)"/> <wire from="(1420,250)" to="(1450,250)"/> <wire from="(690,860)" to="(690,910)"/> <wire from="(1580,250)" to="(1610,250)"/> <wire from="(660,890)" to="(660,1090)"/> <wire from="(770,830)" to="(820,830)"/> <wire from="(280,130)" to="(280,200)"/> <wire from="(180,320)" to="(180,330)"/> <wire from="(180,640)" to="(180,650)"/> <wire from="(1670,210)" to="(1670,220)"/> <wire from="(580,80)" to="(680,80)"/> <wire from="(820,60)" to="(820,210)"/> <wire from="(1140,40)" to="(2090,40)"/> <wire from="(1450,310)" to="(1450,320)"/> <wire from="(270,190)" to="(300,190)"/> <wire from="(710,480)" to="(730,480)"/> <wire from="(580,500)" to="(610,500)"/> <wire from="(1920,420)" to="(1930,420)"/> <wire from="(660,670)" to="(730,670)"/> <wire from="(360,300)" to="(370,300)"/> <wire from="(710,1010)" to="(710,1070)"/> <wire from="(810,270)" to="(820,270)"/> <wire from="(520,180)" to="(520,240)"/> <wire from="(890,320)" to="(890,560)"/> <wire from="(1390,380)" to="(1390,400)"/> <wire from="(1430,420)" to="(1430,440)"/> <wire from="(1520,190)" to="(1520,210)"/> <wire from="(770,480)" to="(820,480)"/> <wire from="(180,290)" to="(180,300)"/> <wire from="(490,200)" to="(540,200)"/> <wire from="(1580,250)" to="(1580,270)"/> <wire from="(1750,420)" to="(1750,440)"/> <wire from="(290,240)" to="(290,260)"/> <wire from="(2090,40)" to="(2090,560)"/> <wire from="(620,440)" to="(620,520)"/> <wire from="(660,670)" to="(660,820)"/> <wire from="(1460,450)" to="(1460,460)"/> <wire from="(1670,250)" to="(1730,250)"/> <wire from="(1500,290)" to="(1510,290)"/> <wire from="(150,680)" to="(180,680)"/> <wire from="(480,140)" to="(480,240)"/> <wire from="(150,920)" to="(560,920)"/> <wire from="(520,420)" to="(540,420)"/> <wire from="(710,770)" to="(730,770)"/> <wire from="(770,180)" to="(800,180)"/> <wire from="(790,840)" to="(820,840)"/> <wire from="(900,310)" to="(930,310)"/> <wire from="(150,1130)" to="(740,1130)"/> <wire from="(760,1130)" to="(890,1130)"/> <wire from="(710,180)" to="(710,240)"/> <wire from="(1330,420)" to="(1360,420)"/> <wire from="(680,790)" to="(680,840)"/> <wire from="(1800,250)" to="(1830,250)"/> <wire from="(1640,250)" to="(1670,250)"/> <wire from="(1450,250)" to="(1450,270)"/> <wire from="(1620,420)" to="(1620,440)"/> <wire from="(1390,440)" to="(1430,440)"/> <wire from="(1800,120)" to="(1800,140)"/> <wire from="(290,210)" to="(290,230)"/> <wire from="(1270,290)" to="(1270,420)"/> <wire from="(1670,310)" to="(1670,320)"/> <wire from="(1960,120)" to="(1960,130)"/> <wire from="(490,280)" to="(490,380)"/> <wire from="(710,420)" to="(730,420)"/> <wire from="(810,120)" to="(810,220)"/> <wire from="(1770,210)" to="(1780,210)"/> <wire from="(450,610)" to="(600,610)"/> <wire from="(770,950)" to="(800,950)"/> <wire from="(1390,380)" to="(1460,380)"/> <wire from="(660,1090)" to="(730,1090)"/> <wire from="(1610,250)" to="(1610,290)"/> <wire from="(710,950)" to="(710,1010)"/> <wire from="(580,200)" to="(660,200)"/> <wire from="(520,120)" to="(520,180)"/> <wire from="(470,260)" to="(540,260)"/> <wire from="(290,240)" to="(360,240)"/> <wire from="(280,200)" to="(280,270)"/> <wire from="(480,440)" to="(540,440)"/> <wire from="(680,970)" to="(730,970)"/> <wire from="(1830,440)" to="(1830,470)"/> <wire from="(580,860)" to="(640,860)"/> <wire from="(1960,170)" to="(2010,170)"/> <wire from="(1870,160)" to="(1870,170)"/> <wire from="(1710,530)" to="(1890,530)"/> <wire from="(1950,400)" to="(1950,410)"/> <wire from="(1500,350)" to="(1550,350)"/> <wire from="(610,500)" to="(610,520)"/> <wire from="(500,320)" to="(540,320)"/> <wire from="(520,360)" to="(540,360)"/> <wire from="(710,710)" to="(730,710)"/> <wire from="(1710,480)" to="(1710,530)"/> <wire from="(1390,510)" to="(1460,510)"/> <wire from="(150,870)" to="(550,870)"/> <wire from="(260,110)" to="(270,110)"/> <wire from="(710,120)" to="(710,180)"/> <wire from="(660,830)" to="(670,830)"/> <wire from="(790,840)" to="(790,890)"/> <wire from="(1890,440)" to="(1920,440)"/> <wire from="(1360,420)" to="(1360,440)"/> <wire from="(1450,190)" to="(1450,210)"/> <wire from="(1490,230)" to="(1490,250)"/> <wire from="(180,680)" to="(180,690)"/> <wire from="(1330,480)" to="(1370,480)"/> <wire from="(1270,530)" to="(1560,530)"/> <wire from="(1670,250)" to="(1670,270)"/> <wire from="(1800,60)" to="(1800,80)"/> <wire from="(1730,310)" to="(1730,320)"/> <wire from="(840,310)" to="(880,310)"/> <wire from="(1890,180)" to="(1890,250)"/> <wire from="(1140,560)" to="(2090,560)"/> <wire from="(1830,480)" to="(1890,480)"/> <wire from="(470,270)" to="(500,270)"/> <wire from="(710,360)" to="(730,360)"/> <wire from="(800,850)" to="(800,950)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(1550,290)" to="(1550,350)"/> <wire from="(1620,480)" to="(1630,480)"/> <wire from="(150,560)" to="(740,560)"/> <wire from="(470,290)" to="(480,290)"/> <wire from="(150,190)" to="(230,190)"/> <wire from="(680,80)" to="(680,520)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(760,560)" to="(890,560)"/> <wire from="(710,890)" to="(710,950)"/> <wire from="(230,280)" to="(300,280)"/> <wire from="(520,60)" to="(520,120)"/> <wire from="(1580,140)" to="(1800,140)"/> <wire from="(800,180)" to="(800,230)"/> <wire from="(1920,440)" to="(1950,440)"/> <wire from="(1250,420)" to="(1270,420)"/> <wire from="(1870,100)" to="(1870,120)"/> <wire from="(180,330)" to="(180,340)"/> <wire from="(180,650)" to="(180,660)"/> <wire from="(580,320)" to="(640,320)"/> <wire from="(670,730)" to="(730,730)"/> <wire from="(2010,480)" to="(2060,480)"/> <wire from="(1800,190)" to="(1800,200)"/> <wire from="(770,1010)" to="(810,1010)"/> <wire from="(200,30)" to="(200,50)"/> <wire from="(1950,500)" to="(1950,510)"/> <wire from="(810,860)" to="(810,1010)"/> <wire from="(620,440)" to="(730,440)"/> <wire from="(670,880)" to="(670,1030)"/> <wire from="(800,260)" to="(820,260)"/> <wire from="(1430,420)" to="(1440,420)"/> <wire from="(520,300)" to="(540,300)"/> <wire from="(710,650)" to="(730,650)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(1750,420)" to="(1760,420)"/> <wire from="(640,320)" to="(730,320)"/> <wire from="(660,200)" to="(730,200)"/> <wire from="(1890,440)" to="(1890,480)"/> <wire from="(710,60)" to="(710,120)"/> <wire from="(1950,440)" to="(1980,440)"/> <wire from="(680,80)" to="(730,80)"/> <wire from="(820,870)" to="(820,1070)"/> <wire from="(770,650)" to="(820,650)"/> <wire from="(180,300)" to="(180,310)"/> <wire from="(1670,190)" to="(1670,210)"/> <wire from="(1730,250)" to="(1730,270)"/> <wire from="(710,30)" to="(710,60)"/> <wire from="(1980,500)" to="(1980,510)"/> <wire from="(1960,160)" to="(1960,170)"/> <wire from="(800,230)" to="(820,230)"/> <wire from="(710,300)" to="(730,300)"/> <wire from="(1910,170)" to="(1910,350)"/> <wire from="(2010,170)" to="(2010,480)"/> <wire from="(2000,480)" to="(2010,480)"/> <wire from="(130,40)" to="(150,40)"/> <wire from="(1620,420)" to="(1630,420)"/> <wire from="(290,210)" to="(300,210)"/> <wire from="(670,140)" to="(670,520)"/> <wire from="(710,830)" to="(710,890)"/> <wire from="(1810,440)" to="(1830,440)"/> <wire from="(1910,350)" to="(2060,350)"/> <wire from="(1830,140)" to="(1850,140)"/> <wire from="(1420,230)" to="(1420,250)"/> <wire from="(1950,440)" to="(1950,460)"/> <wire from="(580,440)" to="(620,440)"/> <wire from="(890,910)" to="(890,1130)"/> <wire from="(1560,440)" to="(1620,440)"/> <wire from="(840,290)" to="(840,310)"/> <wire from="(230,190)" to="(230,280)"/> <wire from="(820,650)" to="(820,800)"/> <wire from="(1730,250)" to="(1800,250)"/> <wire from="(710,1070)" to="(730,1070)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(1830,440)" to="(1840,440)"/> <wire from="(500,270)" to="(500,320)"/> <wire from="(1730,480)" to="(1760,480)"/> <wire from="(810,220)" to="(820,220)"/> <wire from="(810,860)" to="(820,860)"/> <wire from="(520,670)" to="(520,850)"/> <wire from="(580,320)" to="(580,330)"/> <wire from="(770,1070)" to="(820,1070)"/> <wire from="(1960,100)" to="(1960,120)"/> <wire from="(1980,440)" to="(1980,460)"/> <wire from="(470,300)" to="(470,500)"/> <wire from="(1780,400)" to="(1780,410)"/> <wire from="(770,120)" to="(810,120)"/> <wire from="(200,320)" to="(370,320)"/> <wire from="(1870,170)" to="(1870,230)"/> <wire from="(1490,230)" to="(1500,230)"/> <wire from="(1550,290)" to="(1560,290)"/> <wire from="(1360,420)" to="(1370,420)"/> <wire from="(710,240)" to="(730,240)"/> <wire from="(770,300)" to="(790,300)"/> <wire from="(500,670)" to="(520,670)"/> <wire from="(1830,470)" to="(1910,470)"/> <wire from="(900,900)" to="(930,900)"/> <wire from="(770,770)" to="(800,770)"/> <wire from="(1910,480)" to="(1930,480)"/> <wire from="(520,420)" to="(520,480)"/> <wire from="(250,110)" to="(260,110)"/> <wire from="(710,770)" to="(710,830)"/> <wire from="(470,80)" to="(540,80)"/> <wire from="(1470,250)" to="(1470,290)"/> <wire from="(1270,480)" to="(1290,480)"/> <wire from="(290,230)" to="(350,230)"/> <wire from="(1610,290)" to="(1650,290)"/> <wire from="(680,790)" to="(730,790)"/> <wire from="(770,240)" to="(820,240)"/> <wire from="(1950,380)" to="(1950,400)"/> <wire from="(180,690)" to="(180,700)"/> <wire from="(660,200)" to="(660,520)"/> <wire from="(1640,230)" to="(1640,250)"/> <wire from="(1800,230)" to="(1800,250)"/> <wire from="(470,80)" to="(470,230)"/> <wire from="(1650,400)" to="(1650,410)"/> <wire from="(1460,450)" to="(1510,450)"/> <wire from="(710,480)" to="(710,650)"/> <wire from="(1700,290)" to="(1700,350)"/> <wire from="(710,1010)" to="(730,1010)"/> <wire from="(810,710)" to="(810,810)"/> <wire from="(520,180)" to="(540,180)"/> <wire from="(580,140)" to="(670,140)"/> <wire from="(670,730)" to="(670,830)"/> <wire from="(1890,480)" to="(1890,530)"/> <wire from="(280,110)" to="(290,110)"/> <wire from="(490,200)" to="(490,250)"/> <wire from="(710,420)" to="(710,480)"/> <wire from="(1750,440)" to="(1780,440)"/> <comp lib="0" loc="(1580,320)" name="Ground"/> <comp lib="6" loc="(1310,453)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(1960,230)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(770,70)" name="D-latch"/> <comp lib="6" loc="(1750,216)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(1980,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp lib="0" loc="(1950,380)" name="Power"/> <comp lib="0" loc="(1960,280)" name="Ground"/> <comp lib="0" loc="(1810,510)" name="Ground"/> <comp lib="4" loc="(770,830)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1330,420)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,510)" name="Ground"/> <comp lib="0" loc="(1670,320)" name="Ground"/> <comp lib="0" loc="(150,560)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R4"/> </comp> <comp lib="0" loc="(1520,210)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1650,400)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(930,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="OB bit out"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(340,270)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(770,190)" name="D-latch"/> <comp lib="0" loc="(1450,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(840,880)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(840,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="6" loc="(1230,394)" name="Text"> <a name="text" val="BLNK"/> </comp> <comp lib="0" loc="(1680,510)" name="Ground"/> <comp lib="0" loc="(1730,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1460,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="4" loc="(770,1010)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1680,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp loc="(770,430)" name="D-latch"/> <comp lib="0" loc="(1520,320)" name="Ground"/> <comp lib="1" loc="(900,900)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1800,170)" name="Power"/> <comp lib="0" loc="(1960,100)" name="Power"/> <comp lib="0" loc="(1390,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1800,190)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1495,441)" name="Text"> <a name="text" val="OBx"/> </comp> <comp lib="0" loc="(1870,100)" name="Power"/> <comp lib="0" loc="(1870,230)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp loc="(580,370)" name="D-latch"/> <comp lib="6" loc="(1862,414)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp loc="(770,490)" name="D-latch"/> <comp lib="0" loc="(150,920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(1330,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp loc="(770,370)" name="D-latch"/> <comp lib="6" loc="(1310,392)" name="Text"> <a name="text" val="OB/OAM"/> </comp> <comp lib="0" loc="(1450,210)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1390,400)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1800,60)" name="Power"/> <comp loc="(580,130)" name="D-latch"/> <comp loc="(770,130)" name="D-latch"/> <comp lib="0" loc="(600,540)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(580,860)" name="Multiplexer"> <a name="width" val="8"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1390,510)" name="Ground"/> <comp loc="(580,250)" name="D-latch"/> <comp lib="0" loc="(1960,120)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1484,356)" name="Text"> <a name="text" val="/WR"/> </comp> <comp lib="0" loc="(1950,400)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(150,40)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(450,310)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1810,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> <a name="gate" val="br"/> </comp> <comp loc="(580,430)" name="D-latch"/> <comp lib="0" loc="(1250,420)" name="Transistor"> <a name="type" val="n"/> </comp> <comp loc="(580,490)" name="D-latch"/> <comp lib="0" loc="(930,900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="RAM write"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1670,210)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1595,486)" name="Text"> <a name="text" val="I/OAM2"/> </comp> <comp lib="0" loc="(1670,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="4" loc="(770,650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1650,510)" name="Ground"/> <comp loc="(580,190)" name="D-latch"/> <comp lib="0" loc="(1780,510)" name="Ground"/> <comp loc="(580,70)" name="D-latch"/> <comp lib="0" loc="(1870,280)" name="Ground"/> <comp lib="0" loc="(150,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/WE"/> </comp> <comp lib="0" loc="(150,680)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB/OAM"/> </comp> <comp lib="0" loc="(640,860)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp loc="(770,310)" name="D-latch"/> <comp lib="6" loc="(1168,411)" name="Text"> <a name="text" val="DBx"/> </comp> <comp lib="0" loc="(1650,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1950,510)" name="Ground"/> <comp loc="(580,310)" name="D-latch"/> <comp lib="0" loc="(1460,400)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1520,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1870,120)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(280,130)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="4" loc="(770,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(1730,320)" name="Ground"/> <comp lib="1" loc="(760,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1780,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="1" loc="(340,200)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1950,460)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(150,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="I/OAM2"/> </comp> <comp lib="0" loc="(1880,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="4" loc="(770,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1450,190)" name="Power"/> <comp lib="1" loc="(410,310)" name="NOR Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1650,380)" name="Power"/> <comp lib="6" loc="(2039,474)" name="Text"> <a name="text" val="/VAL"/> </comp> <comp lib="0" loc="(1670,190)" name="Power"/> <comp loc="(770,250)" name="D-latch"/> <comp lib="6" loc="(2036,341)" name="Text"> <a name="text" val="VAL"/> </comp> <comp lib="0" loc="(1780,380)" name="Power"/> <comp lib="0" loc="(1390,380)" name="Power"/> <comp lib="1" loc="(900,310)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(930,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="width" val="8"/> <a name="label" val="OAM--&gt;DB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1748,105)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(1780,400)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="6" loc="(1297,81)" name="Text"> <a name="text" val="2C04-0003 OAM BIT BUF"/> <a name="font" val="SansSerif plain 22"/> </comp> <comp lib="4" loc="(770,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="center"/> </comp> <comp lib="1" loc="(760,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="width" val="8"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1450,320)" name="Ground"/> <comp lib="1" loc="(270,190)" name="NOT Gate"> <a name="width" val="8"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1800,80)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(1520,190)" name="Power"/> <comp lib="0" loc="(1580,270)" name="Transistor"> <a name="type" val="n"/> <a name="facing" val="north"/> </comp> <comp lib="4" loc="(770,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(770,770)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="RAM read"/> </comp> <comp lib="0" loc="(150,870)" name="Pin"> <a name="width" val="8"/> <a name="tristate" val="false"/> <a name="label" val="DB--&gt;OAM"/> </comp> </circuit> <circuit name="OAM_FIFO"> <a name="circuit" val="OAM_FIFO"/> <a name="clabel" val="OAM FIFO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M59,51 Q63,61 67,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbabe" height="602" stroke="#000000" stroke-width="2" width="290" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="294">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="183">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="264">ZCOL2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="244">CLPO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="234">/ZCOL1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="295">ZCOL3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="224">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="544">T BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="434">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="305" y="84">/SPR0HIT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">H3''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="104">H4''</text> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="163">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="310" y="204">/ZCOL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="204">/SH7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="364">OBJ BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="474">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="311" y="324">/ZPRIO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="614">/7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="124">H5''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="82" y="264">0/HPOS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="144">/SH2</text> <polyline fill="none" points="56,55 50,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 50,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,160" width="8" x="46" y="256"/> <circ-port height="8" pin="100,250" width="8" x="46" y="76"/> <circ-port height="8" pin="100,290" width="8" x="46" y="96"/> <circ-port height="8" pin="100,330" width="8" x="46" y="116"/> <circ-port height="8" pin="100,540" width="8" x="46" y="136"/> <circ-port height="8" pin="100,580" width="8" x="46" y="156"/> <circ-port height="8" pin="100,620" width="8" x="46" y="176"/> <circ-port height="8" pin="100,660" width="8" x="46" y="196"/> <circ-port height="8" pin="100,700" width="8" x="46" y="216"/> <circ-port height="8" pin="100,740" width="8" x="46" y="236"/> <circ-port height="8" pin="100,820" width="8" x="46" y="286"/> <circ-port height="8" pin="100,870" width="8" x="46" y="306"/> <circ-port height="8" pin="100,920" width="8" x="46" y="326"/> <circ-port height="8" pin="100,970" width="8" x="46" y="346"/> <circ-port height="8" pin="100,1020" width="8" x="46" y="366"/> <circ-port height="8" pin="100,1070" width="8" x="46" y="386"/> <circ-port height="8" pin="100,1120" width="8" x="46" y="406"/> <circ-port height="8" pin="100,1170" width="8" x="46" y="426"/> <circ-port height="8" pin="100,1250" width="8" x="46" y="466"/> <circ-port height="8" pin="100,1300" width="8" x="46" y="486"/> <circ-port height="8" pin="100,1350" width="8" x="46" y="506"/> <circ-port height="8" pin="100,1400" width="8" x="46" y="526"/> <circ-port height="8" pin="100,1450" width="8" x="46" y="546"/> <circ-port height="8" pin="100,1500" width="8" x="46" y="566"/> <circ-port height="8" pin="100,1550" width="8" x="46" y="586"/> <circ-port height="8" pin="100,1600" width="8" x="46" y="606"/> <circ-port height="10" pin="1590,180" width="10" x="335" y="75"/> <circ-port height="10" pin="1590,220" width="10" x="335" y="195"/> <circ-port height="10" pin="1590,260" width="10" x="335" y="225"/> <circ-port height="10" pin="1590,300" width="10" x="335" y="255"/> <circ-port height="10" pin="1590,340" width="10" x="335" y="285"/> <circ-port height="10" pin="1590,380" width="10" x="335" y="315"/> <circ-anchor facing="east" height="6" width="6" x="337" y="37"/> </appear> <wire from="(750,110)" to="(750,120)"/> <wire from="(930,1400)" to="(930,1730)"/> <wire from="(1230,1130)" to="(1400,1130)"/> <wire from="(770,1400)" to="(770,1730)"/> <wire from="(1270,240)" to="(1310,240)"/> <wire from="(1020,300)" to="(1400,300)"/> <wire from="(1090,440)" to="(1090,760)"/> <wire from="(930,130)" to="(930,160)"/> <wire from="(970,2080)" to="(970,2430)"/> <wire from="(1020,940)" to="(1400,940)"/> <wire from="(1020,1580)" to="(1400,1580)"/> <wire from="(1020,2220)" to="(1400,2220)"/> <wire from="(650,2080)" to="(650,2430)"/> <wire from="(120,1400)" to="(120,1420)"/> <wire from="(1090,1400)" to="(1090,1730)"/> <wire from="(1130,2400)" to="(1130,2770)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(1230,230)" to="(1240,230)"/> <wire from="(1230,2150)" to="(1240,2150)"/> <wire from="(1170,2380)" to="(1310,2380)"/> <wire from="(1060,60)" to="(1070,60)"/> <wire from="(1110,2070)" to="(1310,2070)"/> <wire from="(1410,770)" to="(1410,830)"/> <wire from="(1580,260)" to="(1590,260)"/> <wire from="(1150,1310)" to="(1150,1370)"/> <wire from="(1190,1970)" to="(1410,1970)"/> <wire from="(120,1430)" to="(190,1430)"/> <wire from="(970,450)" to="(970,760)"/> <wire from="(1390,60)" to="(1410,60)"/> <wire from="(1420,1210)" to="(1440,1210)"/> <wire from="(1420,2490)" to="(1440,2490)"/> <wire from="(1420,2650)" to="(1440,2650)"/> <wire from="(650,450)" to="(650,760)"/> <wire from="(1110,750)" to="(1110,1050)"/> <wire from="(580,380)" to="(590,380)"/> <wire from="(1020,1170)" to="(1230,1170)"/> <wire from="(580,2300)" to="(590,2300)"/> <wire from="(580,2460)" to="(590,2460)"/> <wire from="(910,110)" to="(910,160)"/> <wire from="(1070,2440)" to="(1310,2440)"/> <wire from="(950,1070)" to="(950,1400)"/> <wire from="(790,1070)" to="(790,1400)"/> <wire from="(1270,530)" to="(1310,530)"/> <wire from="(1020,590)" to="(1400,590)"/> <wire from="(970,1730)" to="(970,2080)"/> <wire from="(1110,1390)" to="(1110,1710)"/> <wire from="(1020,1870)" to="(1400,1870)"/> <wire from="(650,1730)" to="(650,2080)"/> <wire from="(1150,2390)" to="(1150,2760)"/> <wire from="(1020,820)" to="(1230,820)"/> <wire from="(100,330)" to="(130,330)"/> <wire from="(1230,520)" to="(1240,520)"/> <wire from="(1230,1160)" to="(1240,1160)"/> <wire from="(1230,1800)" to="(1240,1800)"/> <wire from="(1290,1100)" to="(1290,1150)"/> <wire from="(1310,480)" to="(1310,530)"/> <wire from="(950,120)" to="(950,160)"/> <wire from="(690,130)" to="(710,130)"/> <wire from="(710,160)" to="(710,450)"/> <wire from="(850,120)" to="(880,120)"/> <wire from="(210,930)" to="(230,930)"/> <wire from="(870,160)" to="(870,450)"/> <wire from="(180,1390)" to="(190,1390)"/> <wire from="(1420,380)" to="(1440,380)"/> <wire from="(1420,220)" to="(1440,220)"/> <wire from="(1420,860)" to="(1440,860)"/> <wire from="(1110,1710)" to="(1110,2070)"/> <wire from="(1420,2300)" to="(1440,2300)"/> <wire from="(830,760)" to="(830,1070)"/> <wire from="(1420,1500)" to="(1440,1500)"/> <wire from="(1390,2750)" to="(1410,2750)"/> <wire from="(1420,2140)" to="(1440,2140)"/> <wire from="(670,760)" to="(670,1070)"/> <wire from="(580,2590)" to="(590,2590)"/> <wire from="(1410,1220)" to="(1410,1260)"/> <wire from="(1020,1460)" to="(1230,1460)"/> <wire from="(580,190)" to="(590,190)"/> <wire from="(1410,2500)" to="(1410,2540)"/> <wire from="(580,1150)" to="(590,1150)"/> <wire from="(580,2110)" to="(590,2110)"/> <wire from="(580,670)" to="(590,670)"/> <wire from="(580,1950)" to="(590,1950)"/> <wire from="(670,1400)" to="(670,1730)"/> <wire from="(1070,2090)" to="(1310,2090)"/> <wire from="(1020,180)" to="(1330,180)"/> <wire from="(100,1550)" to="(160,1550)"/> <wire from="(830,1400)" to="(830,1730)"/> <wire from="(140,1440)" to="(190,1440)"/> <wire from="(180,820)" to="(180,960)"/> <wire from="(180,1460)" to="(180,1600)"/> <wire from="(1090,400)" to="(1410,400)"/> <wire from="(870,2080)" to="(870,2430)"/> <wire from="(1130,1380)" to="(1130,1700)"/> <wire from="(710,2080)" to="(710,2430)"/> <wire from="(1230,1490)" to="(1230,1500)"/> <wire from="(1230,850)" to="(1230,860)"/> <wire from="(100,290)" to="(140,290)"/> <wire from="(1410,2310)" to="(1410,2320)"/> <wire from="(290,160)" to="(330,160)"/> <wire from="(1130,2400)" to="(1310,2400)"/> <wire from="(1410,390)" to="(1410,400)"/> <wire from="(1390,2730)" to="(1400,2730)"/> <wire from="(840,90)" to="(860,90)"/> <wire from="(100,620)" to="(130,620)"/> <wire from="(1170,1680)" to="(1310,1680)"/> <wire from="(1110,1050)" to="(1310,1050)"/> <wire from="(210,310)" to="(210,350)"/> <wire from="(220,430)" to="(240,430)"/> <wire from="(1150,2760)" to="(1310,2760)"/> <wire from="(1290,2460)" to="(1310,2460)"/> <wire from="(1420,510)" to="(1440,510)"/> <wire from="(1130,1700)" to="(1130,2060)"/> <wire from="(1420,670)" to="(1440,670)"/> <wire from="(1420,1790)" to="(1440,1790)"/> <wire from="(1170,2380)" to="(1170,2740)"/> <wire from="(1420,1950)" to="(1440,1950)"/> <wire from="(650,110)" to="(650,160)"/> <wire from="(870,450)" to="(870,760)"/> <wire from="(1290,2670)" to="(1290,2710)"/> <wire from="(970,110)" to="(970,160)"/> <wire from="(710,450)" to="(710,760)"/> <wire from="(120,60)" to="(120,120)"/> <wire from="(1410,230)" to="(1410,270)"/> <wire from="(1410,870)" to="(1410,910)"/> <wire from="(580,320)" to="(590,320)"/> <wire from="(1410,1510)" to="(1410,1550)"/> <wire from="(1410,2150)" to="(1410,2190)"/> <wire from="(580,960)" to="(590,960)"/> <wire from="(580,1600)" to="(590,1600)"/> <wire from="(580,2240)" to="(590,2240)"/> <wire from="(580,480)" to="(590,480)"/> <wire from="(1270,1480)" to="(1290,1480)"/> <wire from="(1270,840)" to="(1290,840)"/> <wire from="(580,1760)" to="(590,1760)"/> <wire from="(690,1070)" to="(690,1400)"/> <wire from="(1070,1740)" to="(1310,1740)"/> <wire from="(1020,470)" to="(1330,470)"/> <wire from="(850,1070)" to="(850,1400)"/> <wire from="(140,1410)" to="(190,1410)"/> <wire from="(1070,2090)" to="(1070,2440)"/> <wire from="(1210,2720)" to="(1310,2720)"/> <wire from="(870,1730)" to="(870,2080)"/> <wire from="(1150,1370)" to="(1150,1690)"/> <wire from="(1020,2610)" to="(1400,2610)"/> <wire from="(710,1730)" to="(710,2080)"/> <wire from="(1230,1460)" to="(1230,1470)"/> <wire from="(1230,820)" to="(1230,830)"/> <wire from="(1410,1960)" to="(1410,1970)"/> <wire from="(710,140)" to="(710,160)"/> <wire from="(1410,680)" to="(1410,690)"/> <wire from="(160,970)" to="(190,970)"/> <wire from="(180,350)" to="(210,350)"/> <wire from="(160,1450)" to="(190,1450)"/> <wire from="(850,120)" to="(850,160)"/> <wire from="(770,160)" to="(770,450)"/> <wire from="(1110,2780)" to="(1310,2780)"/> <wire from="(930,160)" to="(930,450)"/> <wire from="(100,1400)" to="(120,1400)"/> <wire from="(1290,2110)" to="(1310,2110)"/> <wire from="(1090,2430)" to="(1090,2790)"/> <wire from="(1390,770)" to="(1410,770)"/> <wire from="(1150,1690)" to="(1150,2050)"/> <wire from="(890,760)" to="(890,1070)"/> <wire from="(1190,2370)" to="(1190,2730)"/> <wire from="(1410,520)" to="(1410,560)"/> <wire from="(740,130)" to="(750,130)"/> <wire from="(730,760)" to="(730,1070)"/> <wire from="(1410,1800)" to="(1410,1840)"/> <wire from="(140,1010)" to="(140,1070)"/> <wire from="(580,1250)" to="(590,1250)"/> <wire from="(580,610)" to="(590,610)"/> <wire from="(580,1890)" to="(590,1890)"/> <wire from="(730,1400)" to="(730,1730)"/> <wire from="(890,1400)" to="(890,1730)"/> <wire from="(1230,1170)" to="(1400,1170)"/> <wire from="(1020,340)" to="(1400,340)"/> <wire from="(1020,1420)" to="(1310,1420)"/> <wire from="(1070,1740)" to="(1070,2090)"/> <wire from="(1090,2080)" to="(1090,2430)"/> <wire from="(930,2080)" to="(930,2430)"/> <wire from="(1020,780)" to="(1310,780)"/> <wire from="(770,2080)" to="(770,2430)"/> <wire from="(1020,1620)" to="(1400,1620)"/> <wire from="(1020,980)" to="(1400,980)"/> <wire from="(1020,2260)" to="(1400,2260)"/> <wire from="(660,60)" to="(660,90)"/> <wire from="(200,80)" to="(200,100)"/> <wire from="(100,1350)" to="(140,1350)"/> <wire from="(200,490)" to="(240,490)"/> <wire from="(1130,1380)" to="(1310,1380)"/> <wire from="(1130,1700)" to="(1310,1700)"/> <wire from="(710,110)" to="(710,130)"/> <wire from="(930,120)" to="(950,120)"/> <wire from="(160,870)" to="(160,970)"/> <wire from="(1170,2740)" to="(1310,2740)"/> <wire from="(310,140)" to="(330,140)"/> <wire from="(1580,300)" to="(1590,300)"/> <wire from="(100,1600)" to="(180,1600)"/> <wire from="(180,1460)" to="(190,1460)"/> <wire from="(1350,60)" to="(1370,60)"/> <wire from="(120,990)" to="(190,990)"/> <wire from="(1290,1760)" to="(1310,1760)"/> <wire from="(930,450)" to="(930,760)"/> <wire from="(1110,2420)" to="(1110,2780)"/> <wire from="(1170,1680)" to="(1170,2040)"/> <wire from="(1420,2690)" to="(1440,2690)"/> <wire from="(1420,1250)" to="(1440,1250)"/> <wire from="(1420,2530)" to="(1440,2530)"/> <wire from="(1210,2360)" to="(1210,2720)"/> <wire from="(770,450)" to="(770,760)"/> <wire from="(1020,2490)" to="(1230,2490)"/> <wire from="(580,900)" to="(590,900)"/> <wire from="(580,1540)" to="(590,1540)"/> <wire from="(750,1070)" to="(750,1400)"/> <wire from="(910,1070)" to="(910,1400)"/> <wire from="(1230,1460)" to="(1400,1460)"/> <wire from="(1230,820)" to="(1400,820)"/> <wire from="(100,1300)" to="(160,1300)"/> <wire from="(1020,630)" to="(1400,630)"/> <wire from="(1410,2410)" to="(1410,2500)"/> <wire from="(1090,1730)" to="(1090,2080)"/> <wire from="(1110,2070)" to="(1110,2420)"/> <wire from="(930,1730)" to="(930,2080)"/> <wire from="(650,110)" to="(690,110)"/> <wire from="(770,1730)" to="(770,2080)"/> <wire from="(900,110)" to="(900,140)"/> <wire from="(1020,1910)" to="(1400,1910)"/> <wire from="(200,50)" to="(200,70)"/> <wire from="(1230,2520)" to="(1230,2530)"/> <wire from="(130,300)" to="(130,330)"/> <wire from="(740,110)" to="(740,130)"/> <wire from="(1020,220)" to="(1230,220)"/> <wire from="(1020,860)" to="(1230,860)"/> <wire from="(670,160)" to="(670,450)"/> <wire from="(1410,460)" to="(1410,520)"/> <wire from="(220,390)" to="(220,430)"/> <wire from="(100,60)" to="(120,60)"/> <wire from="(100,1020)" to="(120,1020)"/> <wire from="(830,160)" to="(830,450)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(100,1250)" to="(180,1250)"/> <wire from="(1090,760)" to="(1310,760)"/> <wire from="(1090,1400)" to="(1310,1400)"/> <wire from="(950,760)" to="(950,1070)"/> <wire from="(1270,2510)" to="(1290,2510)"/> <wire from="(1420,900)" to="(1440,900)"/> <wire from="(1420,260)" to="(1440,260)"/> <wire from="(1420,1540)" to="(1440,1540)"/> <wire from="(1420,2180)" to="(1440,2180)"/> <wire from="(790,760)" to="(790,1070)"/> <wire from="(1310,200)" to="(1310,240)"/> <wire from="(580,2630)" to="(590,2630)"/> <wire from="(1410,1260)" to="(1410,1300)"/> <wire from="(1410,2700)" to="(1410,2740)"/> <wire from="(1020,1500)" to="(1230,1500)"/> <wire from="(1410,2540)" to="(1410,2580)"/> <wire from="(1020,2140)" to="(1230,2140)"/> <wire from="(580,1190)" to="(590,1190)"/> <wire from="(930,110)" to="(930,120)"/> <wire from="(950,1400)" to="(950,1730)"/> <wire from="(1090,1060)" to="(1090,1400)"/> <wire from="(1130,2060)" to="(1130,2400)"/> <wire from="(790,1400)" to="(790,1730)"/> <wire from="(830,2080)" to="(830,2430)"/> <wire from="(670,2080)" to="(670,2430)"/> <wire from="(1230,250)" to="(1230,260)"/> <wire from="(1230,2170)" to="(1230,2180)"/> <wire from="(1230,2490)" to="(1230,2500)"/> <wire from="(1290,790)" to="(1290,840)"/> <wire from="(1020,510)" to="(1230,510)"/> <wire from="(100,660)" to="(130,660)"/> <wire from="(1230,1490)" to="(1240,1490)"/> <wire from="(1230,850)" to="(1240,850)"/> <wire from="(1290,1430)" to="(1290,1480)"/> <wire from="(1170,2040)" to="(1310,2040)"/> <wire from="(160,1450)" to="(160,1550)"/> <wire from="(100,160)" to="(250,160)"/> <wire from="(1070,160)" to="(1330,160)"/> <wire from="(1190,1970)" to="(1190,2030)"/> <wire from="(1270,2160)" to="(1290,2160)"/> <wire from="(1130,1000)" to="(1410,1000)"/> <wire from="(1420,550)" to="(1440,550)"/> <wire from="(1420,1830)" to="(1440,1830)"/> <wire from="(830,450)" to="(830,760)"/> <wire from="(670,450)" to="(670,760)"/> <wire from="(1410,270)" to="(1410,310)"/> <wire from="(1410,910)" to="(1410,950)"/> <wire from="(1020,1790)" to="(1230,1790)"/> <wire from="(1410,1550)" to="(1410,1590)"/> <wire from="(1410,2190)" to="(1410,2230)"/> <wire from="(140,920)" to="(140,980)"/> <wire from="(580,360)" to="(590,360)"/> <wire from="(580,840)" to="(590,840)"/> <wire from="(580,1480)" to="(590,1480)"/> <wire from="(580,2280)" to="(590,2280)"/> <wire from="(650,1070)" to="(650,1400)"/> <wire from="(1110,1050)" to="(1110,1390)"/> <wire from="(970,1070)" to="(970,1400)"/> <wire from="(1150,2050)" to="(1150,2390)"/> <wire from="(1410,2640)" to="(1410,2670)"/> <wire from="(1020,2450)" to="(1310,2450)"/> <wire from="(830,1730)" to="(830,2080)"/> <wire from="(1410,1070)" to="(1410,1140)"/> <wire from="(1020,2650)" to="(1400,2650)"/> <wire from="(1020,1210)" to="(1400,1210)"/> <wire from="(670,1730)" to="(670,2080)"/> <wire from="(1230,220)" to="(1230,230)"/> <wire from="(1230,540)" to="(1230,550)"/> <wire from="(1230,1820)" to="(1230,1830)"/> <wire from="(1230,2140)" to="(1230,2150)"/> <wire from="(870,130)" to="(890,130)"/> <wire from="(640,60)" to="(660,60)"/> <wire from="(1230,1140)" to="(1240,1140)"/> <wire from="(730,160)" to="(730,450)"/> <wire from="(1070,450)" to="(1330,450)"/> <wire from="(890,160)" to="(890,450)"/> <wire from="(1410,180)" to="(1440,180)"/> <wire from="(1090,400)" to="(1090,440)"/> <wire from="(1270,1810)" to="(1290,1810)"/> <wire from="(1390,2410)" to="(1410,2410)"/> <wire from="(850,760)" to="(850,1070)"/> <wire from="(710,140)" to="(720,140)"/> <wire from="(690,760)" to="(690,1070)"/> <wire from="(580,2570)" to="(590,2570)"/> <wire from="(1410,560)" to="(1410,600)"/> <wire from="(1410,1840)" to="(1410,1880)"/> <wire from="(580,650)" to="(590,650)"/> <wire from="(580,1290)" to="(590,1290)"/> <wire from="(580,1930)" to="(590,1930)"/> <wire from="(690,1400)" to="(690,1730)"/> <wire from="(1230,2490)" to="(1400,2490)"/> <wire from="(1130,1040)" to="(1130,1380)"/> <wire from="(1170,2040)" to="(1170,2380)"/> <wire from="(850,1400)" to="(850,1730)"/> <wire from="(1020,380)" to="(1400,380)"/> <wire from="(1020,2100)" to="(1310,2100)"/> <wire from="(890,2080)" to="(890,2430)"/> <wire from="(730,2080)" to="(730,2430)"/> <wire from="(690,130)" to="(690,160)"/> <wire from="(1020,2300)" to="(1400,2300)"/> <wire from="(120,1000)" to="(120,1020)"/> <wire from="(210,930)" to="(210,950)"/> <wire from="(1230,510)" to="(1230,520)"/> <wire from="(1230,1790)" to="(1230,1800)"/> <wire from="(100,1070)" to="(140,1070)"/> <wire from="(1190,2370)" to="(1310,2370)"/> <wire from="(1130,2060)" to="(1310,2060)"/> <wire from="(450,160)" to="(470,160)"/> <wire from="(1580,340)" to="(1590,340)"/> <wire from="(210,1360)" to="(230,1360)"/> <wire from="(1070,60)" to="(1070,160)"/> <wire from="(1090,2430)" to="(1310,2430)"/> <wire from="(1390,460)" to="(1410,460)"/> <wire from="(1420,1290)" to="(1440,1290)"/> <wire from="(1420,2570)" to="(1440,2570)"/> <wire from="(1420,1130)" to="(1440,1130)"/> <wire from="(1420,2730)" to="(1440,2730)"/> <wire from="(890,450)" to="(890,760)"/> <wire from="(730,450)" to="(730,760)"/> <wire from="(580,300)" to="(590,300)"/> <wire from="(830,110)" to="(830,160)"/> <wire from="(1020,2530)" to="(1230,2530)"/> <wire from="(200,280)" to="(200,340)"/> <wire from="(580,1100)" to="(590,1100)"/> <wire from="(580,940)" to="(590,940)"/> <wire from="(580,2220)" to="(590,2220)"/> <wire from="(580,1580)" to="(590,1580)"/> <wire from="(700,110)" to="(700,120)"/> <wire from="(1070,1080)" to="(1310,1080)"/> <wire from="(710,1070)" to="(710,1400)"/> <wire from="(1230,220)" to="(1400,220)"/> <wire from="(1230,1500)" to="(1400,1500)"/> <wire from="(1230,860)" to="(1400,860)"/> <wire from="(1230,2140)" to="(1400,2140)"/> <wire from="(1190,2030)" to="(1190,2370)"/> <wire from="(870,1070)" to="(870,1400)"/> <wire from="(1020,670)" to="(1400,670)"/> <wire from="(1020,1750)" to="(1310,1750)"/> <wire from="(180,1250)" to="(180,1390)"/> <wire from="(890,1730)" to="(890,2080)"/> <wire from="(1020,1950)" to="(1400,1950)"/> <wire from="(730,1730)" to="(730,2080)"/> <wire from="(120,970)" to="(120,990)"/> <wire from="(890,140)" to="(890,160)"/> <wire from="(1410,2740)" to="(1410,2750)"/> <wire from="(1410,1300)" to="(1410,1310)"/> <wire from="(1020,260)" to="(1230,260)"/> <wire from="(100,250)" to="(130,250)"/> <wire from="(1230,2520)" to="(1240,2520)"/> <wire from="(1290,2460)" to="(1290,2510)"/> <wire from="(1410,180)" to="(1410,230)"/> <wire from="(760,110)" to="(790,110)"/> <wire from="(950,160)" to="(950,450)"/> <wire from="(120,120)" to="(140,120)"/> <wire from="(180,340)" to="(200,340)"/> <wire from="(790,160)" to="(790,450)"/> <wire from="(1150,2390)" to="(1310,2390)"/> <wire from="(130,300)" to="(140,300)"/> <wire from="(230,400)" to="(240,400)"/> <wire from="(1090,2080)" to="(1310,2080)"/> <wire from="(120,1000)" to="(190,1000)"/> <wire from="(910,760)" to="(910,1070)"/> <wire from="(1390,1070)" to="(1410,1070)"/> <wire from="(1420,940)" to="(1440,940)"/> <wire from="(1420,300)" to="(1440,300)"/> <wire from="(1420,1580)" to="(1440,1580)"/> <wire from="(1420,2220)" to="(1440,2220)"/> <wire from="(920,130)" to="(930,130)"/> <wire from="(580,2510)" to="(590,2510)"/> <wire from="(750,760)" to="(750,1070)"/> <wire from="(1410,1140)" to="(1410,1180)"/> <wire from="(1410,2580)" to="(1410,2620)"/> <wire from="(1020,2180)" to="(1230,2180)"/> <wire from="(580,590)" to="(590,590)"/> <wire from="(580,1230)" to="(590,1230)"/> <wire from="(580,1870)" to="(590,1870)"/> <wire from="(1230,510)" to="(1400,510)"/> <wire from="(910,1400)" to="(910,1730)"/> <wire from="(1230,1790)" to="(1400,1790)"/> <wire from="(750,1400)" to="(750,1730)"/> <wire from="(200,50)" to="(310,50)"/> <wire from="(950,2080)" to="(950,2430)"/> <wire from="(790,2080)" to="(790,2430)"/> <wire from="(840,60)" to="(840,90)"/> <wire from="(200,410)" to="(200,490)"/> <wire from="(750,130)" to="(750,160)"/> <wire from="(890,110)" to="(890,130)"/> <wire from="(1070,1080)" to="(1070,1410)"/> <wire from="(370,160)" to="(410,160)"/> <wire from="(1130,1040)" to="(1310,1040)"/> <wire from="(160,1400)" to="(190,1400)"/> <wire from="(1020,550)" to="(1230,550)"/> <wire from="(100,540)" to="(130,540)"/> <wire from="(100,700)" to="(130,700)"/> <wire from="(1230,250)" to="(1240,250)"/> <wire from="(1230,2170)" to="(1240,2170)"/> <wire from="(1290,2110)" to="(1290,2160)"/> <wire from="(180,960)" to="(190,960)"/> <wire from="(1090,1730)" to="(1310,1730)"/> <wire from="(1290,1100)" to="(1310,1100)"/> <wire from="(1310,480)" to="(1330,480)"/> <wire from="(950,450)" to="(950,760)"/> <wire from="(730,110)" to="(730,160)"/> <wire from="(1420,590)" to="(1440,590)"/> <wire from="(1420,1870)" to="(1440,1870)"/> <wire from="(790,450)" to="(790,760)"/> <wire from="(1410,310)" to="(1410,350)"/> <wire from="(1410,950)" to="(1410,990)"/> <wire from="(1390,2690)" to="(1390,2730)"/> <wire from="(140,1440)" to="(140,1500)"/> <wire from="(1020,1830)" to="(1230,1830)"/> <wire from="(1410,1590)" to="(1410,1630)"/> <wire from="(1410,2230)" to="(1410,2270)"/> <wire from="(580,240)" to="(590,240)"/> <wire from="(580,880)" to="(590,880)"/> <wire from="(580,2160)" to="(590,2160)"/> <wire from="(580,1520)" to="(590,1520)"/> <wire from="(1480,180)" to="(1590,180)"/> <wire from="(930,1070)" to="(930,1400)"/> <wire from="(1410,2070)" to="(1410,2150)"/> <wire from="(770,1070)" to="(770,1400)"/> <wire from="(100,1120)" to="(160,1120)"/> <wire from="(140,1010)" to="(190,1010)"/> <wire from="(180,1030)" to="(180,1170)"/> <wire from="(950,1730)" to="(950,2080)"/> <wire from="(790,1730)" to="(790,2080)"/> <wire from="(1020,1250)" to="(1400,1250)"/> <wire from="(830,110)" to="(870,110)"/> <wire from="(230,380)" to="(230,400)"/> <wire from="(920,110)" to="(920,130)"/> <wire from="(200,280)" to="(240,280)"/> <wire from="(160,310)" to="(160,340)"/> <wire from="(1130,2770)" to="(1310,2770)"/> <wire from="(210,460)" to="(240,460)"/> <wire from="(770,120)" to="(770,160)"/> <wire from="(1230,540)" to="(1240,540)"/> <wire from="(1230,1820)" to="(1240,1820)"/> <wire from="(1290,1760)" to="(1290,1810)"/> <wire from="(160,1300)" to="(160,1400)"/> <wire from="(670,120)" to="(700,120)"/> <wire from="(690,160)" to="(690,450)"/> <wire from="(1210,2320)" to="(1410,2320)"/> <wire from="(850,160)" to="(850,450)"/> <wire from="(1150,1690)" to="(1310,1690)"/> <wire from="(1150,1370)" to="(1310,1370)"/> <wire from="(1090,1060)" to="(1310,1060)"/> <wire from="(120,1420)" to="(190,1420)"/> <wire from="(970,760)" to="(970,1070)"/> <wire from="(1170,1640)" to="(1170,1680)"/> <wire from="(1210,2320)" to="(1210,2360)"/> <wire from="(580,2610)" to="(590,2610)"/> <wire from="(650,760)" to="(650,1070)"/> <wire from="(1410,600)" to="(1410,640)"/> <wire from="(1410,1880)" to="(1410,1920)"/> <wire from="(580,530)" to="(590,530)"/> <wire from="(580,1810)" to="(590,1810)"/> <wire from="(650,1400)" to="(650,1730)"/> <wire from="(970,1400)" to="(970,1730)"/> <wire from="(1230,2530)" to="(1400,2530)"/> <wire from="(1410,1720)" to="(1410,1800)"/> <wire from="(180,370)" to="(240,370)"/> <wire from="(140,980)" to="(190,980)"/> <wire from="(180,380)" to="(230,380)"/> <wire from="(1410,1400)" to="(1410,1470)"/> <wire from="(850,2080)" to="(850,2430)"/> <wire from="(1020,900)" to="(1400,900)"/> <wire from="(1020,1540)" to="(1400,1540)"/> <wire from="(690,2080)" to="(690,2430)"/> <wire from="(220,340)" to="(220,360)"/> <wire from="(180,390)" to="(220,390)"/> <wire from="(1190,2730)" to="(1310,2730)"/> <wire from="(1290,2670)" to="(1410,2670)"/> <wire from="(130,250)" to="(130,280)"/> <wire from="(160,1020)" to="(190,1020)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(200,100)" to="(230,100)"/> <wire from="(230,100)" to="(390,100)"/> <wire from="(1230,1470)" to="(1240,1470)"/> <wire from="(1230,830)" to="(1240,830)"/> <wire from="(660,90)" to="(680,90)"/> <wire from="(1110,750)" to="(1310,750)"/> <wire from="(390,140)" to="(410,140)"/> <wire from="(1110,1710)" to="(1310,1710)"/> <wire from="(1110,1390)" to="(1310,1390)"/> <wire from="(100,970)" to="(120,970)"/> <wire from="(1580,380)" to="(1590,380)"/> <wire from="(100,1450)" to="(120,1450)"/> <wire from="(1580,220)" to="(1590,220)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(230,140)" to="(250,140)"/> <wire from="(1090,2790)" to="(1310,2790)"/> <wire from="(1390,180)" to="(1410,180)"/> <wire from="(1420,1170)" to="(1440,1170)"/> <wire from="(1420,2610)" to="(1440,2610)"/> <wire from="(850,450)" to="(850,760)"/> <wire from="(690,450)" to="(690,760)"/> <wire from="(790,110)" to="(790,160)"/> <wire from="(580,340)" to="(590,340)"/> <wire from="(1020,1130)" to="(1230,1130)"/> <wire from="(580,980)" to="(590,980)"/> <wire from="(580,1620)" to="(590,1620)"/> <wire from="(580,2260)" to="(590,2260)"/> <wire from="(670,1070)" to="(670,1400)"/> <wire from="(1410,2620)" to="(1410,2640)"/> <wire from="(1230,260)" to="(1400,260)"/> <wire from="(1230,2180)" to="(1400,2180)"/> <wire from="(830,1070)" to="(830,1400)"/> <wire from="(850,1730)" to="(850,2080)"/> <wire from="(690,1730)" to="(690,2080)"/> <wire from="(100,920)" to="(140,920)"/> <wire from="(1230,1160)" to="(1230,1170)"/> <wire from="(180,360)" to="(220,360)"/> <wire from="(820,60)" to="(840,60)"/> <wire from="(670,120)" to="(670,160)"/> <wire from="(750,160)" to="(750,450)"/> <wire from="(1150,1310)" to="(1410,1310)"/> <wire from="(910,160)" to="(910,450)"/> <wire from="(1070,160)" to="(1070,450)"/> <wire from="(100,1170)" to="(180,1170)"/> <wire from="(180,1030)" to="(190,1030)"/> <wire from="(1410,160)" to="(1440,160)"/> <wire from="(1420,340)" to="(1440,340)"/> <wire from="(1420,980)" to="(1440,980)"/> <wire from="(1420,820)" to="(1440,820)"/> <wire from="(1420,1620)" to="(1440,1620)"/> <wire from="(1420,2260)" to="(1440,2260)"/> <wire from="(1420,1460)" to="(1440,1460)"/> <wire from="(1370,2690)" to="(1390,2690)"/> <wire from="(1390,2070)" to="(1410,2070)"/> <wire from="(890,140)" to="(900,140)"/> <wire from="(870,760)" to="(870,1070)"/> <wire from="(580,2550)" to="(590,2550)"/> <wire from="(1410,1180)" to="(1410,1220)"/> <wire from="(710,760)" to="(710,1070)"/> <wire from="(140,1350)" to="(140,1410)"/> <wire from="(580,790)" to="(590,790)"/> <wire from="(1270,1150)" to="(1290,1150)"/> <wire from="(580,1430)" to="(590,1430)"/> <wire from="(580,630)" to="(590,630)"/> <wire from="(580,1270)" to="(590,1270)"/> <wire from="(580,1910)" to="(590,1910)"/> <wire from="(1070,1410)" to="(1310,1410)"/> <wire from="(1070,770)" to="(1310,770)"/> <wire from="(710,1400)" to="(710,1730)"/> <wire from="(1230,550)" to="(1400,550)"/> <wire from="(100,870)" to="(160,870)"/> <wire from="(1230,1830)" to="(1400,1830)"/> <wire from="(870,1400)" to="(870,1730)"/> <wire from="(910,2080)" to="(910,2430)"/> <wire from="(750,2080)" to="(750,2430)"/> <wire from="(870,130)" to="(870,160)"/> <wire from="(1230,1130)" to="(1230,1140)"/> <wire from="(1190,2030)" to="(1310,2030)"/> <wire from="(1410,1630)" to="(1410,1640)"/> <wire from="(1410,990)" to="(1410,1000)"/> <wire from="(1390,2690)" to="(1400,2690)"/> <wire from="(100,740)" to="(130,740)"/> <wire from="(100,580)" to="(130,580)"/> <wire from="(1070,770)" to="(1070,1080)"/> <wire from="(750,120)" to="(770,120)"/> <wire from="(1110,690)" to="(1110,750)"/> <wire from="(100,820)" to="(180,820)"/> <wire from="(1410,60)" to="(1410,160)"/> <wire from="(1390,1720)" to="(1410,1720)"/> <wire from="(1390,1400)" to="(1410,1400)"/> <wire from="(1420,630)" to="(1440,630)"/> <wire from="(1420,1910)" to="(1440,1910)"/> <wire from="(910,450)" to="(910,760)"/> <wire from="(1410,350)" to="(1410,390)"/> <wire from="(1410,830)" to="(1410,870)"/> <wire from="(750,450)" to="(750,760)"/> <wire from="(1410,2270)" to="(1410,2310)"/> <wire from="(580,280)" to="(590,280)"/> <wire from="(1410,1470)" to="(1410,1510)"/> <wire from="(580,920)" to="(590,920)"/> <wire from="(580,2200)" to="(590,2200)"/> <wire from="(580,1560)" to="(590,1560)"/> <wire from="(1310,200)" to="(1330,200)"/> <wire from="(1090,440)" to="(1330,440)"/> <wire from="(730,1070)" to="(730,1400)"/> <wire from="(1170,1640)" to="(1410,1640)"/> <wire from="(1110,690)" to="(1410,690)"/> <wire from="(120,60)" to="(180,60)"/> <wire from="(880,110)" to="(880,120)"/> <wire from="(890,1070)" to="(890,1400)"/> <wire from="(1020,1090)" to="(1310,1090)"/> <wire from="(1210,2360)" to="(1310,2360)"/> <wire from="(1070,450)" to="(1070,770)"/> <wire from="(910,1730)" to="(910,2080)"/> <wire from="(750,1730)" to="(750,2080)"/> <wire from="(720,110)" to="(720,140)"/> <wire from="(1020,1290)" to="(1400,1290)"/> <wire from="(1020,2570)" to="(1400,2570)"/> <wire from="(120,1430)" to="(120,1450)"/> <wire from="(210,1360)" to="(210,1380)"/> <wire from="(100,1500)" to="(140,1500)"/> <wire from="(1070,1410)" to="(1070,1740)"/> <wire from="(310,50)" to="(310,140)"/> <wire from="(1230,2500)" to="(1240,2500)"/> <wire from="(160,1020)" to="(160,1120)"/> <wire from="(1110,2420)" to="(1310,2420)"/> <wire from="(230,100)" to="(230,140)"/> <wire from="(650,160)" to="(650,450)"/> <wire from="(940,110)" to="(970,110)"/> <wire from="(970,160)" to="(970,450)"/> <wire from="(390,100)" to="(390,140)"/> <wire from="(1150,2050)" to="(1310,2050)"/> <wire from="(130,280)" to="(140,280)"/> <wire from="(1290,2710)" to="(1310,2710)"/> <wire from="(930,760)" to="(930,1070)"/> <wire from="(1290,1430)" to="(1310,1430)"/> <wire from="(1130,1000)" to="(1130,1040)"/> <wire from="(770,760)" to="(770,1070)"/> <wire from="(580,2650)" to="(590,2650)"/> <wire from="(1090,760)" to="(1090,1060)"/> <wire from="(1410,640)" to="(1410,680)"/> <wire from="(1410,1920)" to="(1410,1960)"/> <wire from="(1290,790)" to="(1310,790)"/> <wire from="(210,400)" to="(210,460)"/> <wire from="(580,1210)" to="(590,1210)"/> <wire from="(580,570)" to="(590,570)"/> <wire from="(580,1850)" to="(590,1850)"/> <comp lib="0" loc="(1440,1290)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(1440,340)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="label" val="H4''"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="label" val="H3''"/> </comp> <comp lib="0" loc="(580,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL3"/> </comp> <comp lib="0" loc="(580,2610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(100,1120)" name="Pin"> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(580,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(680,90)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="1" loc="(1420,2220)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,550)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(580,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(1440,1130)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp loc="(1020,160)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1420,900)" name="Controlled Buffer"/> <comp loc="(1020,1730)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1420,2610)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,1790)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1400)" name="Pin"> <a name="label" val="/T3"/> </comp> <comp lib="0" loc="(1440,1540)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(210,1380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1440,1210)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(580,1480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL4"/> </comp> <comp lib="0" loc="(580,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL1"/> </comp> <comp lib="0" loc="(1580,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1440,1580)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1590,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZPRIO"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(1440,940)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="1" loc="(1270,840)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(580,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,660)" name="Tunnel"> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(580,1870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="1" loc="(1390,1070)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="6"/> </comp> <comp lib="1" loc="(1420,2530)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,2180)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,1830)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1350)" name="Pin"> <a name="label" val="/T2"/> </comp> <comp lib="1" loc="(1420,590)" name="Controlled Buffer"/> <comp lib="1" loc="(1270,1810)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="OBJ_BUS"/> </comp> <comp lib="0" loc="(1590,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZCOL0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,310)" name="Tunnel"> <a name="label" val="SEL1"/> </comp> <comp lib="0" loc="(580,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(580,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(100,970)" name="Pin"> <a name="label" val="OB3"/> </comp> <comp lib="1" loc="(1390,1400)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="0" loc="(580,2160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL6"/> </comp> <comp lib="1" loc="(1420,2730)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,260)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,980)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,2200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1390,2070)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="9"/> </comp> <comp lib="0" loc="(1440,260)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1590,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZCOL2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(240,490)" name="Tunnel"> <a name="label" val="SEL7"/> </comp> <comp lib="0" loc="(1350,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(820,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="T_BUS"/> </comp> <comp lib="1" loc="(1390,1720)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="8"/> </comp> <comp lib="1" loc="(1420,1950)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2650)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(100,1450)" name="Pin"> <a name="label" val="/T4"/> </comp> <comp lib="1" loc="(1270,530)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL2"/> </comp> <comp lib="0" loc="(100,1020)" name="Pin"> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(240,430)" name="Tunnel"> <a name="label" val="SEL5"/> </comp> <comp lib="1" loc="(1420,860)" name="Controlled Buffer"/> <comp loc="(1480,170)" name="D-latch"/> <comp lib="0" loc="(1440,1460)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="1" loc="(1420,380)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,220)" name="Controlled Buffer"/> <comp lib="1" loc="(1390,2410)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="10"/> </comp> <comp lib="1" loc="(1420,1460)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2610)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(580,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1440,1870)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(100,920)" name="Pin"> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(1440,860)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(580,1950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="6" loc="(1459,136)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(1420,670)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1070)" name="Pin"> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(1440,510)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,2510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL7"/> </comp> <comp loc="(450,150)" name="D-latch"/> <comp lib="0" loc="(1440,1910)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(580,1930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(1390,770)" name="NOR Gate"> <a name="size" val="70"/> </comp> <comp lib="2" loc="(160,340)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,870)" name="Pin"> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(580,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL5"/> </comp> <comp lib="1" loc="(1420,1870)" name="Controlled Buffer"/> <comp lib="0" loc="(130,540)" name="Tunnel"> <a name="label" val="/SH2"/> </comp> <comp loc="(1020,2080)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1420,980)" name="Controlled Buffer"/> <comp lib="1" loc="(1270,2510)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="1" loc="(1420,2140)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2180)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1060,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="CLPO"/> </comp> <comp lib="1" loc="(1420,1170)" name="Controlled Buffer"/> <comp lib="0" loc="(580,1580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(240,280)" name="Tunnel"> <a name="label" val="SEL0"/> </comp> <comp lib="0" loc="(140,120)" name="Tunnel"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(370,95)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(580,1560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(100,820)" name="Pin"> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(1420,940)" name="Controlled Buffer"/> <comp lib="0" loc="(580,2570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(1580,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(100,580)" name="Pin"> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(580,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1420,1210)" name="Controlled Buffer"/> <comp lib="0" loc="(580,2220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(1440,590)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="1" loc="(1420,2650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(580,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(1440,380)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1440,2300)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1370,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="0" loc="(240,400)" name="Tunnel"> <a name="label" val="SEL4"/> </comp> <comp lib="0" loc="(130,620)" name="Tunnel"> <a name="label" val="/SH5"/> </comp> <comp lib="1" loc="(1390,180)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1370,2690)" name="Constant"/> <comp lib="0" loc="(1440,820)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(210,950)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1590,180)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SPR0HIT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(180,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(580,2110)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1440,900)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(100,1500)" name="Pin"> <a name="label" val="/T5"/> </comp> <comp lib="0" loc="(580,2240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(1440,1250)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(580,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(100,1550)" name="Pin"> <a name="label" val="/T6"/> </comp> <comp lib="0" loc="(580,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(240,370)" name="Tunnel"> <a name="label" val="SEL3"/> </comp> <comp lib="1" loc="(1420,2300)" name="Controlled Buffer"/> <comp loc="(370,150)" name="D-latch"/> <comp lib="0" loc="(580,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="1" loc="(1420,630)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1170)" name="Pin"> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(1440,2690)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(580,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(100,740)" name="Pin"> <a name="label" val="CLPO"/> </comp> <comp lib="1" loc="(1420,1250)" name="Controlled Buffer"/> <comp lib="0" loc="(580,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,700)" name="Tunnel"> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,2280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(1440,2730)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(1440,1830)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(580,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH3"/> </comp> <comp lib="1" loc="(1420,820)" name="Controlled Buffer"/> <comp lib="0" loc="(100,700)" name="Pin"> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(1580,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/ZPRIO"/> </comp> <comp loc="(1020,2430)" name="OAM_FIFO_PIPELINE"/> <comp lib="1" loc="(1270,1480)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,580)" name="Tunnel"> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(1440,2260)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(470,160)" name="Tunnel"> <a name="label" val="#0/H"/> </comp> <comp loc="(1020,760)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(860,90)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1440,630)" name="Tunnel"> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1440,1950)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(1440,2570)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(580,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="1" loc="(1420,1620)" name="Controlled Buffer"/> <comp lib="6" loc="(291,45)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(100,160)" name="Pin"> <a name="label" val="0/HPOS"/> </comp> <comp lib="1" loc="(1390,460)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="0" loc="(230,930)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="OBJ_BUS"/> </comp> <comp lib="1" loc="(1270,240)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1390,2750)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="8"/> </comp> <comp lib="1" loc="(1420,1580)" name="Controlled Buffer"/> <comp lib="0" loc="(100,1250)" name="Pin"> <a name="label" val="/T0"/> </comp> <comp lib="0" loc="(580,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(100,1600)" name="Pin"> <a name="label" val="/T7"/> </comp> <comp lib="0" loc="(580,2590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="1" loc="(1420,2570)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,510)" name="Controlled Buffer"/> <comp lib="0" loc="(100,60)" name="Pin"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1020,1400)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(1440,2140)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="1" loc="(1420,2490)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2490)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="0" loc="(1440,1620)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(100,1300)" name="Pin"> <a name="label" val="/T1"/> </comp> <comp lib="1" loc="(1270,1150)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(240,340)" name="Tunnel"> <a name="label" val="SEL2"/> </comp> <comp lib="0" loc="(100,330)" name="Pin"> <a name="label" val="H5''"/> </comp> <comp lib="1" loc="(1420,1910)" name="Controlled Buffer"/> <comp lib="1" loc="(1270,2160)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1590,340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="ZCOL3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1420,2260)" name="Controlled Buffer"/> <comp lib="0" loc="(580,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="1" loc="(1420,2690)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1500)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="0" loc="(100,620)" name="Pin"> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(580,2300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#0/H"/> </comp> <comp lib="0" loc="(1440,2530)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="1" loc="(1420,300)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,1170)" name="Tunnel"> <a name="label" val="/ZCOL1"/> </comp> <comp lib="1" loc="(1420,1540)" name="Controlled Buffer"/> <comp lib="0" loc="(130,740)" name="Tunnel"> <a name="label" val="CLPO"/> </comp> <comp lib="0" loc="(580,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(580,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1420,550)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,670)" name="Tunnel"> <a name="label" val="/ZPRIO"/> </comp> <comp lib="0" loc="(580,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(580,2630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,2460)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(580,1600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(580,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(1440,1790)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp loc="(290,150)" name="D-latch"/> <comp lib="0" loc="(580,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(1580,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(1440,220)" name="Tunnel"> <a name="label" val="/ZCOL0"/> </comp> <comp lib="1" loc="(1420,1500)" name="Controlled Buffer"/> <comp lib="0" loc="(580,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(240,460)" name="Tunnel"> <a name="label" val="SEL6"/> </comp> <comp lib="0" loc="(580,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SEL0"/> </comp> <comp lib="0" loc="(580,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(160,310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(1420,1290)" name="Controlled Buffer"/> <comp lib="1" loc="(1420,340)" name="Controlled Buffer"/> <comp lib="0" loc="(1440,2220)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(1580,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(580,1910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(100,660)" name="Pin"> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(230,1360)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="T_BUS"/> </comp> <comp lib="0" loc="(1440,300)" name="Tunnel"> <a name="label" val="ZCOL2"/> </comp> <comp loc="(1020,1070)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(580,2550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(580,2260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH7"/> </comp> <comp loc="(1020,450)" name="OAM_FIFO_PIPELINE"/> <comp lib="0" loc="(580,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1420,1130)" name="Controlled Buffer"/> <comp lib="0" loc="(1590,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ZCOL1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(580,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/SH2"/> </comp> </circuit> <circuit name="OAM_FIFO_PIPELINE"> <a name="circuit" val="OAM_FIFO_PIPELINE"/> <a name="clabel" val="FIFO PIPELINE"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M321,51 Q325,61 329,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#79ffd0" height="240" stroke="#000000" stroke-width="2" width="430" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="174">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="134">SEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="234">/SH7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="67">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="455" y="74">#X/EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="194">X/COL2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="172" y="84">OBJ DATA BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="68">/7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="234">X/COL3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="274">#0/H</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="254">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="446" y="154">#X/COL1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="361" y="86">T BUS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="289" y="67">/0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="194">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="446" y="114">#X/COL0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="214">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="67">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="274">X/PRIO</text> <polyline fill="none" points="51,76 56,76" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,85 56,85" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,76 56,85" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="80,30" width="8" x="46" y="76"/> <circ-port height="8" pin="80,90" width="8" x="46" y="206"/> <circ-port height="8" pin="80,860" width="8" x="46" y="126"/> <circ-port height="8" pin="80,380" width="8" x="46" y="226"/> <circ-port height="8" pin="80,710" width="8" x="46" y="186"/> <circ-port height="8" pin="80,900" width="8" x="46" y="166"/> <circ-port height="8" pin="80,750" width="8" x="46" y="266"/> <circ-port height="8" pin="80,790" width="8" x="46" y="246"/> <circ-port height="8" pin="80,950" width="8" x="106" y="46"/> <circ-port height="8" pin="80,980" width="8" x="126" y="46"/> <circ-port height="8" pin="80,1010" width="8" x="146" y="46"/> <circ-port height="8" pin="80,1040" width="8" x="166" y="46"/> <circ-port height="8" pin="80,1070" width="8" x="186" y="46"/> <circ-port height="8" pin="80,1100" width="8" x="206" y="46"/> <circ-port height="8" pin="80,1130" width="8" x="226" y="46"/> <circ-port height="8" pin="80,1160" width="8" x="246" y="46"/> <circ-port height="10" pin="720,190" width="10" x="475" y="105"/> <circ-port height="10" pin="720,470" width="10" x="475" y="145"/> <circ-port height="10" pin="720,700" width="10" x="475" y="65"/> <circ-port height="10" pin="720,1040" width="10" x="475" y="185"/> <circ-port height="10" pin="720,1100" width="10" x="475" y="225"/> <circ-port height="10" pin="720,1160" width="10" x="475" y="265"/> <circ-port height="8" pin="80,450" width="8" x="286" y="46"/> <circ-port height="8" pin="80,480" width="8" x="306" y="46"/> <circ-port height="8" pin="80,510" width="8" x="326" y="46"/> <circ-port height="8" pin="80,540" width="8" x="346" y="46"/> <circ-port height="8" pin="80,570" width="8" x="366" y="46"/> <circ-port height="8" pin="80,600" width="8" x="386" y="46"/> <circ-port height="8" pin="80,630" width="8" x="406" y="46"/> <circ-port height="8" pin="80,660" width="8" x="426" y="46"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(120,950)" to="(120,1020)"/> <wire from="(220,810)" to="(220,880)"/> <wire from="(360,1160)" to="(410,1160)"/> <wire from="(430,270)" to="(430,290)"/> <wire from="(460,460)" to="(460,480)"/> <wire from="(460,860)" to="(460,880)"/> <wire from="(200,370)" to="(240,370)"/> <wire from="(200,690)" to="(240,690)"/> <wire from="(80,710)" to="(240,710)"/> <wire from="(80,980)" to="(110,980)"/> <wire from="(450,230)" to="(480,230)"/> <wire from="(260,1090)" to="(280,1090)"/> <wire from="(450,240)" to="(470,240)"/> <wire from="(390,1140)" to="(410,1140)"/> <wire from="(220,410)" to="(220,520)"/> <wire from="(80,510)" to="(100,510)"/> <wire from="(160,30)" to="(180,30)"/> <wire from="(450,250)" to="(460,250)"/> <wire from="(140,460)" to="(140,510)"/> <wire from="(110,1030)" to="(120,1030)"/> <wire from="(220,520)" to="(220,700)"/> <wire from="(300,1020)" to="(300,1080)"/> <wire from="(370,390)" to="(500,390)"/> <wire from="(260,1100)" to="(320,1100)"/> <wire from="(160,30)" to="(160,670)"/> <wire from="(240,970)" to="(430,970)"/> <wire from="(300,890)" to="(300,1020)"/> <wire from="(450,900)" to="(500,900)"/> <wire from="(450,980)" to="(500,980)"/> <wire from="(450,580)" to="(500,580)"/> <wire from="(450,500)" to="(500,500)"/> <wire from="(90,540)" to="(90,550)"/> <wire from="(470,200)" to="(470,210)"/> <wire from="(470,520)" to="(470,540)"/> <wire from="(470,920)" to="(470,940)"/> <wire from="(220,810)" to="(390,810)"/> <wire from="(200,100)" to="(240,100)"/> <wire from="(220,520)" to="(260,520)"/> <wire from="(460,280)" to="(500,280)"/> <wire from="(90,560)" to="(120,560)"/> <wire from="(80,630)" to="(110,630)"/> <wire from="(470,940)" to="(500,940)"/> <wire from="(470,540)" to="(500,540)"/> <wire from="(700,700)" to="(720,700)"/> <wire from="(300,1020)" to="(320,1020)"/> <wire from="(450,210)" to="(470,210)"/> <wire from="(480,240)" to="(500,240)"/> <wire from="(220,700)" to="(220,810)"/> <wire from="(450,260)" to="(450,300)"/> <wire from="(220,700)" to="(240,700)"/> <wire from="(240,630)" to="(700,630)"/> <wire from="(220,30)" to="(220,80)"/> <wire from="(110,480)" to="(110,530)"/> <wire from="(110,1080)" to="(120,1080)"/> <wire from="(450,1040)" to="(720,1040)"/> <wire from="(80,570)" to="(90,570)"/> <wire from="(390,1080)" to="(390,1140)"/> <wire from="(200,370)" to="(200,690)"/> <wire from="(360,1100)" to="(410,1100)"/> <wire from="(200,100)" to="(200,370)"/> <wire from="(680,470)" to="(720,470)"/> <wire from="(200,860)" to="(200,890)"/> <wire from="(80,750)" to="(500,750)"/> <wire from="(370,110)" to="(370,390)"/> <wire from="(80,90)" to="(240,90)"/> <wire from="(280,890)" to="(300,890)"/> <wire from="(260,1110)" to="(280,1110)"/> <wire from="(390,1080)" to="(410,1080)"/> <wire from="(410,460)" to="(430,460)"/> <wire from="(220,130)" to="(500,130)"/> <wire from="(80,1010)" to="(100,1010)"/> <wire from="(140,460)" to="(410,460)"/> <wire from="(220,80)" to="(220,130)"/> <wire from="(80,540)" to="(90,540)"/> <wire from="(450,840)" to="(500,840)"/> <wire from="(450,440)" to="(500,440)"/> <wire from="(90,1040)" to="(90,1050)"/> <wire from="(90,560)" to="(90,570)"/> <wire from="(480,230)" to="(480,240)"/> <wire from="(110,810)" to="(220,810)"/> <wire from="(460,930)" to="(460,960)"/> <wire from="(450,440)" to="(450,470)"/> <wire from="(460,530)" to="(460,560)"/> <wire from="(450,840)" to="(450,870)"/> <wire from="(280,1160)" to="(320,1160)"/> <wire from="(460,860)" to="(500,860)"/> <wire from="(100,570)" to="(100,600)"/> <wire from="(460,460)" to="(500,460)"/> <wire from="(280,90)" to="(500,90)"/> <wire from="(80,380)" to="(240,380)"/> <wire from="(80,1130)" to="(110,1130)"/> <wire from="(90,1060)" to="(120,1060)"/> <wire from="(470,880)" to="(500,880)"/> <wire from="(470,480)" to="(500,480)"/> <wire from="(680,700)" to="(700,700)"/> <wire from="(160,670)" to="(500,670)"/> <wire from="(220,80)" to="(240,80)"/> <wire from="(220,880)" to="(240,880)"/> <wire from="(110,980)" to="(110,1030)"/> <wire from="(450,480)" to="(460,480)"/> <wire from="(450,880)" to="(460,880)"/> <wire from="(110,580)" to="(110,630)"/> <wire from="(80,1070)" to="(90,1070)"/> <wire from="(390,1020)" to="(390,1080)"/> <wire from="(120,590)" to="(120,660)"/> <wire from="(370,390)" to="(370,530)"/> <wire from="(360,1040)" to="(410,1040)"/> <wire from="(430,950)" to="(430,970)"/> <wire from="(460,180)" to="(460,200)"/> <wire from="(80,450)" to="(120,450)"/> <wire from="(200,890)" to="(240,890)"/> <wire from="(280,700)" to="(500,700)"/> <wire from="(90,550)" to="(120,550)"/> <wire from="(450,510)" to="(480,510)"/> <wire from="(450,910)" to="(480,910)"/> <wire from="(390,1020)" to="(410,1020)"/> <wire from="(450,920)" to="(470,920)"/> <wire from="(450,520)" to="(470,520)"/> <wire from="(100,570)" to="(120,570)"/> <wire from="(200,30)" to="(220,30)"/> <wire from="(450,530)" to="(460,530)"/> <wire from="(450,930)" to="(460,930)"/> <wire from="(280,1040)" to="(280,1090)"/> <wire from="(80,1040)" to="(90,1040)"/> <wire from="(370,110)" to="(500,110)"/> <wire from="(300,530)" to="(370,530)"/> <wire from="(450,220)" to="(500,220)"/> <wire from="(450,300)" to="(500,300)"/> <wire from="(90,1060)" to="(90,1070)"/> <wire from="(470,480)" to="(470,490)"/> <wire from="(470,880)" to="(470,890)"/> <wire from="(470,240)" to="(470,260)"/> <wire from="(390,810)" to="(390,1020)"/> <wire from="(80,660)" to="(120,660)"/> <wire from="(100,1070)" to="(100,1100)"/> <wire from="(460,560)" to="(500,560)"/> <wire from="(460,960)" to="(500,960)"/> <wire from="(100,510)" to="(100,540)"/> <wire from="(470,260)" to="(500,260)"/> <wire from="(300,1140)" to="(320,1140)"/> <wire from="(410,290)" to="(430,290)"/> <wire from="(480,520)" to="(500,520)"/> <wire from="(450,890)" to="(470,890)"/> <wire from="(480,920)" to="(500,920)"/> <wire from="(450,490)" to="(470,490)"/> <wire from="(100,540)" to="(120,540)"/> <wire from="(80,600)" to="(100,600)"/> <wire from="(450,940)" to="(450,980)"/> <wire from="(450,540)" to="(450,580)"/> <wire from="(110,1080)" to="(110,1130)"/> <wire from="(80,30)" to="(160,30)"/> <wire from="(450,1160)" to="(720,1160)"/> <wire from="(120,450)" to="(120,520)"/> <wire from="(120,1090)" to="(120,1160)"/> <wire from="(700,630)" to="(700,700)"/> <wire from="(80,860)" to="(130,860)"/> <wire from="(680,190)" to="(720,190)"/> <wire from="(80,950)" to="(120,950)"/> <wire from="(110,810)" to="(110,840)"/> <wire from="(80,790)" to="(500,790)"/> <wire from="(80,480)" to="(110,480)"/> <wire from="(90,1050)" to="(120,1050)"/> <wire from="(220,130)" to="(220,360)"/> <wire from="(240,970)" to="(240,1080)"/> <wire from="(220,410)" to="(500,410)"/> <wire from="(410,290)" to="(410,460)"/> <wire from="(110,840)" to="(130,840)"/> <wire from="(100,1070)" to="(120,1070)"/> <wire from="(220,360)" to="(220,410)"/> <wire from="(110,530)" to="(120,530)"/> <wire from="(300,1080)" to="(300,1140)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(480,910)" to="(480,920)"/> <wire from="(480,510)" to="(480,520)"/> <wire from="(450,160)" to="(450,190)"/> <wire from="(460,250)" to="(460,280)"/> <wire from="(80,1160)" to="(120,1160)"/> <wire from="(240,540)" to="(240,630)"/> <wire from="(100,1010)" to="(100,1040)"/> <wire from="(280,1040)" to="(320,1040)"/> <wire from="(140,970)" to="(240,970)"/> <wire from="(460,180)" to="(500,180)"/> <wire from="(280,370)" to="(500,370)"/> <wire from="(170,860)" to="(200,860)"/> <wire from="(80,900)" to="(240,900)"/> <wire from="(470,200)" to="(500,200)"/> <wire from="(300,1080)" to="(320,1080)"/> <wire from="(200,690)" to="(200,860)"/> <wire from="(140,970)" to="(140,1010)"/> <wire from="(80,1100)" to="(100,1100)"/> <wire from="(100,1040)" to="(120,1040)"/> <wire from="(240,540)" to="(260,540)"/> <wire from="(220,360)" to="(240,360)"/> <wire from="(450,200)" to="(460,200)"/> <wire from="(450,1100)" to="(720,1100)"/> <wire from="(280,1110)" to="(280,1160)"/> <wire from="(110,580)" to="(120,580)"/> <comp lib="0" loc="(720,470)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\COL1"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH3"/> </comp> <comp lib="0" loc="(80,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T6"/> </comp> <comp loc="(450,1030)" name="D-latch"/> <comp loc="(360,1030)" name="D-latch"/> <comp lib="0" loc="(80,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(140,1010)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(298,883)" name="Text"> <a name="text" val="LDAT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,30)" name="Pin"> <a name="width" val="2"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T3"/> </comp> <comp loc="(450,1150)" name="D-latch"/> <comp lib="1" loc="(280,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(430,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(720,1160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\PRIO"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SEL"/> </comp> <comp loc="(680,650)" name="OAM_FIFO_DOWN_COUNTER"/> <comp loc="(680,350)" name="SHIFT_REG_LOAD"/> <comp lib="6" loc="(301,363)" name="Text"> <a name="text" val="T/SR1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,1070)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(430,460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(180,30)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(720,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X/EN"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,1150)" name="D-latch"/> <comp lib="0" loc="(80,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T2"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH7"/> </comp> <comp lib="0" loc="(140,510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="6" loc="(300,693)" name="Text"> <a name="text" val="LOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,980)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(80,480)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T1"/> </comp> <comp lib="6" loc="(220,25)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(80,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(80,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#0/H"/> </comp> <comp loc="(680,70)" name="SHIFT_REG_LOAD"/> <comp lib="0" loc="(80,1130)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp loc="(360,1090)" name="D-latch"/> <comp lib="0" loc="(80,1160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(80,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T4"/> </comp> <comp lib="1" loc="(300,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,1040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="6" loc="(301,82)" name="Text"> <a name="text" val="T/SR0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\COL2"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\COL0"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(280,890)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(368,827)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="1" loc="(280,370)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(170,850)" name="D-latch"/> <comp lib="0" loc="(80,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T5"/> </comp> <comp lib="1" loc="(280,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(450,1090)" name="D-latch"/> <comp lib="0" loc="(430,950)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(80,790)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="0" loc="(80,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="6" loc="(313,523)" name="Text"> <a name="text" val="EN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T0"/> </comp> <comp lib="0" loc="(240,1080)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="2"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> </comp> <comp lib="0" loc="(80,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH5"/> </comp> <comp lib="0" loc="(80,660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/T7"/> </comp> <comp lib="0" loc="(720,1100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="X\COL3"/> <a name="labelloc" val="east"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> </circuit> <circuit name="OAM_FIFO_DOWN_COUNTER"> <a name="circuit" val="OAM_FIFO_DOWN_COUNTER"/> <a name="clabel" val="FIFO DOWN COUNTER"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 20"/> <appear> <path d="M105,52 Q109,62 113,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#a7c2ff" height="360" stroke="#000000" stroke-width="2" width="180" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="244">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">/VIS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="205" y="104">#X\EN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="104">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="385">IN7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="154">#0/H</text> <polyline fill="none" points="50,65 56,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,75 56,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,74 56,66" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,50" width="8" x="46" y="66"/> <circ-port height="8" pin="100,120" width="8" x="46" y="186"/> <circ-port height="8" pin="100,210" width="8" x="46" y="146"/> <circ-port height="8" pin="100,320" width="8" x="46" y="96"/> <circ-port height="8" pin="100,510" width="8" x="46" y="236"/> <circ-port height="8" pin="100,710" width="8" x="46" y="256"/> <circ-port height="8" pin="100,910" width="8" x="46" y="276"/> <circ-port height="8" pin="100,1110" width="8" x="46" y="296"/> <circ-port height="8" pin="100,1310" width="8" x="46" y="316"/> <circ-port height="8" pin="100,1500" width="8" x="46" y="336"/> <circ-port height="8" pin="100,1700" width="8" x="46" y="356"/> <circ-port height="8" pin="100,1900" width="8" x="46" y="376"/> <circ-port height="10" pin="650,130" width="10" x="225" y="95"/> <circ-anchor facing="east" height="6" width="6" x="227" y="47"/> </appear> <wire from="(290,620)" to="(610,620)"/> <wire from="(130,1740)" to="(130,1940)"/> <wire from="(530,1400)" to="(590,1400)"/> <wire from="(310,1860)" to="(310,1940)"/> <wire from="(310,1460)" to="(310,1540)"/> <wire from="(310,1780)" to="(310,1860)"/> <wire from="(470,1750)" to="(470,1780)"/> <wire from="(360,200)" to="(360,230)"/> <wire from="(200,1660)" to="(230,1660)"/> <wire from="(310,1580)" to="(470,1580)"/> <wire from="(270,1660)" to="(290,1660)"/> <wire from="(310,1460)" to="(330,1460)"/> <wire from="(310,1860)" to="(330,1860)"/> <wire from="(390,1060)" to="(410,1060)"/> <wire from="(390,660)" to="(410,660)"/> <wire from="(450,960)" to="(470,960)"/> <wire from="(450,1280)" to="(470,1280)"/> <wire from="(450,880)" to="(470,880)"/> <wire from="(450,480)" to="(470,480)"/> <wire from="(450,560)" to="(470,560)"/> <wire from="(260,500)" to="(260,540)"/> <wire from="(260,1300)" to="(260,1340)"/> <wire from="(260,900)" to="(260,940)"/> <wire from="(470,1670)" to="(470,1710)"/> <wire from="(400,320)" to="(400,370)"/> <wire from="(100,50)" to="(170,50)"/> <wire from="(130,750)" to="(130,950)"/> <wire from="(130,1150)" to="(130,1350)"/> <wire from="(200,1460)" to="(200,1660)"/> <wire from="(290,1760)" to="(410,1760)"/> <wire from="(390,1650)" to="(390,1850)"/> <wire from="(530,1390)" to="(570,1390)"/> <wire from="(380,350)" to="(380,370)"/> <wire from="(310,470)" to="(310,550)"/> <wire from="(310,790)" to="(310,870)"/> <wire from="(310,870)" to="(310,950)"/> <wire from="(310,1190)" to="(310,1270)"/> <wire from="(310,1270)" to="(310,1350)"/> <wire from="(170,1500)" to="(170,1520)"/> <wire from="(170,1900)" to="(170,1920)"/> <wire from="(470,760)" to="(470,790)"/> <wire from="(470,1160)" to="(470,1190)"/> <wire from="(370,1470)" to="(410,1470)"/> <wire from="(370,1870)" to="(410,1870)"/> <wire from="(610,620)" to="(610,1410)"/> <wire from="(200,670)" to="(230,670)"/> <wire from="(200,1070)" to="(230,1070)"/> <wire from="(310,590)" to="(470,590)"/> <wire from="(310,990)" to="(470,990)"/> <wire from="(310,1740)" to="(340,1740)"/> <wire from="(310,470)" to="(330,470)"/> <wire from="(270,1070)" to="(290,1070)"/> <wire from="(270,670)" to="(290,670)"/> <wire from="(550,1220)" to="(550,1380)"/> <wire from="(310,1270)" to="(330,1270)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(310,870)" to="(330,870)"/> <wire from="(100,120)" to="(380,120)"/> <wire from="(470,680)" to="(470,720)"/> <wire from="(470,1080)" to="(470,1120)"/> <wire from="(130,320)" to="(400,320)"/> <wire from="(180,1530)" to="(260,1530)"/> <wire from="(180,1930)" to="(260,1930)"/> <wire from="(290,820)" to="(290,870)"/> <wire from="(290,1220)" to="(290,1270)"/> <wire from="(240,1890)" to="(240,1950)"/> <wire from="(240,1490)" to="(240,1550)"/> <wire from="(100,1700)" to="(170,1700)"/> <wire from="(310,1400)" to="(310,1460)"/> <wire from="(200,1270)" to="(200,1460)"/> <wire from="(260,260)" to="(330,260)"/> <wire from="(270,1480)" to="(330,1480)"/> <wire from="(270,1880)" to="(330,1880)"/> <wire from="(220,1710)" to="(470,1710)"/> <wire from="(180,1550)" to="(240,1550)"/> <wire from="(180,1950)" to="(240,1950)"/> <wire from="(360,1740)" to="(410,1740)"/> <wire from="(200,470)" to="(200,670)"/> <wire from="(200,870)" to="(200,1070)"/> <wire from="(290,770)" to="(410,770)"/> <wire from="(290,1170)" to="(410,1170)"/> <wire from="(390,660)" to="(390,860)"/> <wire from="(390,1060)" to="(390,1260)"/> <wire from="(200,350)" to="(380,350)"/> <wire from="(290,820)" to="(590,820)"/> <wire from="(360,140)" to="(360,160)"/> <wire from="(170,510)" to="(170,530)"/> <wire from="(210,230)" to="(210,250)"/> <wire from="(170,1310)" to="(170,1330)"/> <wire from="(170,910)" to="(170,930)"/> <wire from="(220,1680)" to="(220,1710)"/> <wire from="(370,480)" to="(410,480)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(370,1280)" to="(410,1280)"/> <wire from="(420,130)" to="(460,130)"/> <wire from="(290,1460)" to="(290,1560)"/> <wire from="(290,1860)" to="(290,1960)"/> <wire from="(130,320)" to="(130,550)"/> <wire from="(530,1380)" to="(550,1380)"/> <wire from="(310,750)" to="(340,750)"/> <wire from="(310,1150)" to="(340,1150)"/> <wire from="(290,430)" to="(630,430)"/> <wire from="(210,230)" to="(360,230)"/> <wire from="(130,1540)" to="(150,1540)"/> <wire from="(130,1940)" to="(150,1940)"/> <wire from="(220,1480)" to="(230,1480)"/> <wire from="(220,1880)" to="(230,1880)"/> <wire from="(180,540)" to="(260,540)"/> <wire from="(180,1340)" to="(260,1340)"/> <wire from="(180,940)" to="(260,940)"/> <wire from="(390,410)" to="(390,460)"/> <wire from="(440,60)" to="(440,110)"/> <wire from="(240,900)" to="(240,960)"/> <wire from="(100,1110)" to="(170,1110)"/> <wire from="(240,1300)" to="(240,1360)"/> <wire from="(310,410)" to="(310,470)"/> <wire from="(100,710)" to="(170,710)"/> <wire from="(240,500)" to="(240,560)"/> <wire from="(270,490)" to="(330,490)"/> <wire from="(270,1290)" to="(330,1290)"/> <wire from="(270,890)" to="(330,890)"/> <wire from="(330,190)" to="(330,260)"/> <wire from="(220,1120)" to="(470,1120)"/> <wire from="(220,720)" to="(470,720)"/> <wire from="(180,1360)" to="(240,1360)"/> <wire from="(180,960)" to="(240,960)"/> <wire from="(180,560)" to="(240,560)"/> <wire from="(360,1150)" to="(410,1150)"/> <wire from="(360,750)" to="(410,750)"/> <wire from="(630,430)" to="(630,1420)"/> <wire from="(220,690)" to="(220,720)"/> <wire from="(220,1090)" to="(220,1120)"/> <wire from="(340,180)" to="(380,180)"/> <wire from="(290,470)" to="(290,570)"/> <wire from="(290,870)" to="(290,970)"/> <wire from="(290,1270)" to="(290,1370)"/> <wire from="(360,140)" to="(380,140)"/> <wire from="(390,1450)" to="(410,1450)"/> <wire from="(390,1850)" to="(410,1850)"/> <wire from="(450,1670)" to="(470,1670)"/> <wire from="(450,1750)" to="(470,1750)"/> <wire from="(260,1690)" to="(260,1730)"/> <wire from="(130,550)" to="(150,550)"/> <wire from="(130,1350)" to="(150,1350)"/> <wire from="(130,950)" to="(150,950)"/> <wire from="(450,1360)" to="(460,1360)"/> <wire from="(220,490)" to="(230,490)"/> <wire from="(220,1290)" to="(230,1290)"/> <wire from="(220,890)" to="(230,890)"/> <wire from="(130,1540)" to="(130,1740)"/> <wire from="(190,210)" to="(310,210)"/> <wire from="(590,820)" to="(590,1400)"/> <wire from="(310,190)" to="(310,210)"/> <wire from="(130,160)" to="(240,160)"/> <wire from="(310,1580)" to="(310,1660)"/> <wire from="(310,1660)" to="(310,1740)"/> <wire from="(470,1550)" to="(470,1580)"/> <wire from="(470,1870)" to="(470,1910)"/> <wire from="(200,1860)" to="(230,1860)"/> <wire from="(200,1460)" to="(230,1460)"/> <wire from="(100,320)" to="(130,320)"/> <wire from="(210,70)" to="(210,230)"/> <wire from="(310,1780)" to="(470,1780)"/> <wire from="(270,1460)" to="(290,1460)"/> <wire from="(270,1860)" to="(290,1860)"/> <wire from="(310,1660)" to="(330,1660)"/> <wire from="(390,460)" to="(410,460)"/> <wire from="(390,1260)" to="(410,1260)"/> <wire from="(390,860)" to="(410,860)"/> <wire from="(440,110)" to="(460,110)"/> <wire from="(450,680)" to="(470,680)"/> <wire from="(450,760)" to="(470,760)"/> <wire from="(450,1080)" to="(470,1080)"/> <wire from="(450,1160)" to="(470,1160)"/> <wire from="(260,700)" to="(260,740)"/> <wire from="(260,1100)" to="(260,1140)"/> <wire from="(290,1020)" to="(570,1020)"/> <wire from="(130,200)" to="(150,200)"/> <wire from="(470,1470)" to="(470,1510)"/> <wire from="(310,1400)" to="(450,1400)"/> <wire from="(200,350)" to="(200,470)"/> <wire from="(130,1350)" to="(130,1540)"/> <wire from="(130,950)" to="(130,1150)"/> <wire from="(130,550)" to="(130,750)"/> <wire from="(210,290)" to="(650,290)"/> <wire from="(200,1660)" to="(200,1860)"/> <wire from="(290,1960)" to="(410,1960)"/> <wire from="(290,1560)" to="(410,1560)"/> <wire from="(390,1450)" to="(390,1650)"/> <wire from="(530,1420)" to="(630,1420)"/> <wire from="(310,590)" to="(310,670)"/> <wire from="(310,670)" to="(310,750)"/> <wire from="(310,1070)" to="(310,1150)"/> <wire from="(310,990)" to="(310,1070)"/> <wire from="(170,1700)" to="(170,1720)"/> <wire from="(470,560)" to="(470,590)"/> <wire from="(470,960)" to="(470,990)"/> <wire from="(370,1670)" to="(410,1670)"/> <wire from="(200,870)" to="(230,870)"/> <wire from="(200,470)" to="(230,470)"/> <wire from="(200,1270)" to="(230,1270)"/> <wire from="(310,790)" to="(470,790)"/> <wire from="(310,1190)" to="(470,1190)"/> <wire from="(440,190)" to="(440,350)"/> <wire from="(310,1940)" to="(340,1940)"/> <wire from="(310,1540)" to="(340,1540)"/> <wire from="(270,1270)" to="(290,1270)"/> <wire from="(270,470)" to="(290,470)"/> <wire from="(270,870)" to="(290,870)"/> <wire from="(310,670)" to="(330,670)"/> <wire from="(310,1070)" to="(330,1070)"/> <wire from="(190,70)" to="(210,70)"/> <wire from="(470,880)" to="(470,920)"/> <wire from="(470,480)" to="(470,520)"/> <wire from="(470,1280)" to="(470,1320)"/> <wire from="(210,250)" to="(230,250)"/> <wire from="(180,1730)" to="(260,1730)"/> <wire from="(650,290)" to="(650,1950)"/> <wire from="(290,1020)" to="(290,1070)"/> <wire from="(290,620)" to="(290,670)"/> <wire from="(100,1500)" to="(170,1500)"/> <wire from="(390,1260)" to="(390,1450)"/> <wire from="(240,1690)" to="(240,1750)"/> <wire from="(100,1900)" to="(170,1900)"/> <wire from="(270,1680)" to="(330,1680)"/> <wire from="(380,350)" to="(440,350)"/> <wire from="(220,1510)" to="(470,1510)"/> <wire from="(220,1910)" to="(470,1910)"/> <wire from="(130,220)" to="(130,290)"/> <wire from="(180,1750)" to="(240,1750)"/> <wire from="(360,1940)" to="(410,1940)"/> <wire from="(360,1540)" to="(410,1540)"/> <wire from="(200,670)" to="(200,870)"/> <wire from="(200,1070)" to="(200,1270)"/> <wire from="(290,970)" to="(410,970)"/> <wire from="(290,570)" to="(410,570)"/> <wire from="(290,1370)" to="(410,1370)"/> <wire from="(390,860)" to="(390,1060)"/> <wire from="(390,460)" to="(390,660)"/> <wire from="(170,710)" to="(170,730)"/> <wire from="(210,270)" to="(210,290)"/> <wire from="(170,1110)" to="(170,1130)"/> <wire from="(220,1480)" to="(220,1510)"/> <wire from="(220,1880)" to="(220,1910)"/> <wire from="(370,680)" to="(410,680)"/> <wire from="(370,1080)" to="(410,1080)"/> <wire from="(290,1660)" to="(290,1760)"/> <wire from="(310,550)" to="(340,550)"/> <wire from="(310,950)" to="(340,950)"/> <wire from="(310,1350)" to="(340,1350)"/> <wire from="(420,190)" to="(440,190)"/> <wire from="(290,430)" to="(290,470)"/> <wire from="(130,220)" to="(150,220)"/> <wire from="(130,1740)" to="(150,1740)"/> <wire from="(220,1680)" to="(230,1680)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(180,740)" to="(260,740)"/> <wire from="(180,1140)" to="(260,1140)"/> <wire from="(240,1100)" to="(240,1160)"/> <wire from="(530,1410)" to="(610,1410)"/> <wire from="(100,1310)" to="(170,1310)"/> <wire from="(290,1220)" to="(550,1220)"/> <wire from="(100,510)" to="(170,510)"/> <wire from="(570,1020)" to="(570,1390)"/> <wire from="(100,910)" to="(170,910)"/> <wire from="(240,60)" to="(440,60)"/> <wire from="(450,1950)" to="(650,1950)"/> <wire from="(240,700)" to="(240,760)"/> <wire from="(270,690)" to="(330,690)"/> <wire from="(270,1090)" to="(330,1090)"/> <wire from="(220,1320)" to="(470,1320)"/> <wire from="(220,520)" to="(470,520)"/> <wire from="(220,920)" to="(470,920)"/> <wire from="(180,760)" to="(240,760)"/> <wire from="(180,1160)" to="(240,1160)"/> <wire from="(360,1350)" to="(410,1350)"/> <wire from="(360,950)" to="(410,950)"/> <wire from="(360,550)" to="(410,550)"/> <wire from="(190,60)" to="(240,60)"/> <wire from="(100,210)" to="(150,210)"/> <wire from="(220,890)" to="(220,920)"/> <wire from="(220,490)" to="(220,520)"/> <wire from="(220,1290)" to="(220,1320)"/> <wire from="(290,670)" to="(290,770)"/> <wire from="(290,1070)" to="(290,1170)"/> <wire from="(240,60)" to="(240,160)"/> <wire from="(340,160)" to="(360,160)"/> <wire from="(130,160)" to="(130,200)"/> <wire from="(390,1650)" to="(410,1650)"/> <wire from="(450,1550)" to="(470,1550)"/> <wire from="(450,1870)" to="(470,1870)"/> <wire from="(450,1470)" to="(470,1470)"/> <wire from="(260,1890)" to="(260,1930)"/> <wire from="(260,1490)" to="(260,1530)"/> <wire from="(500,130)" to="(650,130)"/> <wire from="(130,750)" to="(150,750)"/> <wire from="(130,1150)" to="(150,1150)"/> <wire from="(210,270)" to="(230,270)"/> <wire from="(220,690)" to="(230,690)"/> <wire from="(220,1090)" to="(230,1090)"/> <comp lib="4" loc="(270,1660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(420,190)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(150,550)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(340,160)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,870)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(150,1740)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,1500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN5"/> </comp> <comp lib="1" loc="(450,1550)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(384,314)" name="Text"> <a name="text" val="LOAD"/> </comp> <comp lib="1" loc="(450,1950)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#0/H"/> </comp> <comp lib="6" loc="(609,283)" name="Text"> <a name="text" val="CARRY OUT"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="1" loc="(260,260)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(450,1850)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,1060)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1870)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(370,1280)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(270,470)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(222,369)" name="Text"> <a name="text" val="STEP"/> </comp> <comp lib="1" loc="(360,1740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,1310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN4"/> </comp> <comp lib="1" loc="(450,1160)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(150,1150)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(450,1650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,480)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(414,410)" name="Text"> <a name="text" val="UPD"/> </comp> <comp lib="1" loc="(360,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,1900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN7"/> </comp> <comp lib="2" loc="(150,750)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="2" loc="(150,1350)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="4" loc="(450,1450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(450,1400)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/VIS"/> </comp> <comp lib="1" loc="(370,1080)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,760)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(310,410)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="1" loc="(370,880)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(450,660)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(150,1540)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(420,130)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,1350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(500,120)" name="D-latch"/> <comp lib="1" loc="(370,680)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,50)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="1" loc="(450,1360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(450,960)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="2" loc="(150,950)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(450,560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(450,1260)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(450,460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1460)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,1860)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(190,210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(100,1700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN6"/> </comp> <comp lib="1" loc="(370,1470)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(150,1940)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(270,1070)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,1670)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(360,1940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,410)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN3"/> </comp> <comp lib="0" loc="(650,130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="#X\EN"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(270,670)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="SELECT_2.3.5.7_PIXEL"> <a name="circuit" val="SELECT_2.3.5.7_PIXEL"/> <a name="clabel" val="SELECT PIXEL"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#a3d0ff" height="111" stroke="#000000" stroke-width="2" width="260" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="84">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="105">H1''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="124">H2''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="144">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="73">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="94">/SH3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="113">/SH5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="287" y="134">/SH7</text> <polyline fill="none" points="50,55 57,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,65 57,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="57,56 57,64" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="70,30" width="8" x="46" y="56"/> <circ-port height="8" pin="70,200" width="8" x="46" y="136"/> <circ-port height="8" pin="70,70" width="8" x="46" y="76"/> <circ-port height="8" pin="70,110" width="8" x="46" y="96"/> <circ-port height="8" pin="70,150" width="8" x="46" y="116"/> <circ-port height="10" pin="300,150" width="10" x="305" y="65"/> <circ-port height="10" pin="300,240" width="10" x="305" y="85"/> <circ-port height="10" pin="300,330" width="10" x="305" y="105"/> <circ-port height="10" pin="300,420" width="10" x="305" y="125"/> <circ-anchor facing="east" height="6" width="6" x="307" y="47"/> </appear> <wire from="(170,240)" to="(230,240)"/> <wire from="(170,330)" to="(230,330)"/> <wire from="(160,30)" to="(210,30)"/> <wire from="(210,220)" to="(210,310)"/> <wire from="(210,130)" to="(210,220)"/> <wire from="(210,310)" to="(210,400)"/> <wire from="(130,270)" to="(170,270)"/> <wire from="(130,290)" to="(170,290)"/> <wire from="(170,240)" to="(170,270)"/> <wire from="(90,70)" to="(90,100)"/> <wire from="(90,120)" to="(90,150)"/> <wire from="(70,200)" to="(100,200)"/> <wire from="(270,150)" to="(300,150)"/> <wire from="(270,330)" to="(300,330)"/> <wire from="(270,240)" to="(300,240)"/> <wire from="(270,420)" to="(300,420)"/> <wire from="(210,30)" to="(210,130)"/> <wire from="(100,200)" to="(100,240)"/> <wire from="(170,290)" to="(170,330)"/> <wire from="(150,150)" to="(150,260)"/> <wire from="(150,310)" to="(150,420)"/> <wire from="(70,70)" to="(90,70)"/> <wire from="(70,150)" to="(90,150)"/> <wire from="(70,110)" to="(90,110)"/> <wire from="(130,260)" to="(150,260)"/> <wire from="(130,310)" to="(150,310)"/> <wire from="(210,220)" to="(230,220)"/> <wire from="(210,400)" to="(230,400)"/> <wire from="(210,130)" to="(230,130)"/> <wire from="(210,310)" to="(230,310)"/> <wire from="(110,130)" to="(110,240)"/> <wire from="(150,150)" to="(230,150)"/> <wire from="(150,420)" to="(230,420)"/> <wire from="(70,30)" to="(140,30)"/> <comp lib="0" loc="(300,330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH5"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(362,360)" name="Text"> <a name="text" val="SPR Load Low Tile Byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(110,240)" name="Decoder"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="disabled" val="0"/> </comp> <comp loc="(270,410)" name="D-latch"> <a name="label" val="sh7_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="6" loc="(373,182)" name="Text"> <a name="text" val="SPR Load FLAG (ATTRIBUTE)"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(270,230)" name="D-latch"> <a name="label" val="sh3_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(140,30)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(300,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(110,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(300,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/SH7"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(365,452)" name="Text"> <a name="text" val="SPR Load High Tile Byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(237,40)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp loc="(270,140)" name="D-latch"> <a name="label" val="sh2_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(270,320)" name="D-latch"> <a name="label" val="sh5_latch"/> <a name="labelloc" val="south"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(70,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR\O"/> </comp> <comp lib="0" loc="(70,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H2''"/> </comp> <comp lib="0" loc="(70,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(70,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H1''"/> </comp> <comp lib="6" loc="(358,272)" name="Text"> <a name="text" val="SPR Load X POSITION"/> <a name="font" val="SansSerif bold 12"/> </comp> </circuit> <circuit name="H_INVERSION"> <a name="circuit" val="H_INVERSION"/> <a name="clabel" val="H INVERSION"/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 16"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff208d" height="321" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="94">PD/FIFO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="275">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="254">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="244">/T4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="304">/T6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="134">OB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="334">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="214">/T3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="274">/T5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="334">/T7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="114">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="143" y="184">/T2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="214">PD1</text> <polyline fill="none" points="56,67 56,73" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="234">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="294">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="124">/T0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="154">/T1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="314">PD6</text> <polyline fill="none" points="56,75 50,75" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,65 50,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="90,60" width="8" x="46" y="66"/> <circ-port height="8" pin="90,120" width="8" x="46" y="106"/> <circ-port height="8" pin="90,170" width="8" x="46" y="126"/> <circ-port height="8" pin="90,220" width="8" x="46" y="86"/> <circ-port height="8" pin="90,270" width="8" x="46" y="186"/> <circ-port height="8" pin="90,330" width="8" x="46" y="206"/> <circ-port height="8" pin="90,390" width="8" x="46" y="226"/> <circ-port height="8" pin="90,450" width="8" x="46" y="246"/> <circ-port height="8" pin="90,510" width="8" x="46" y="266"/> <circ-port height="8" pin="90,570" width="8" x="46" y="286"/> <circ-port height="8" pin="90,630" width="8" x="46" y="306"/> <circ-port height="8" pin="90,690" width="8" x="46" y="326"/> <circ-port height="10" pin="540,250" width="10" x="155" y="115"/> <circ-port height="10" pin="540,310" width="10" x="155" y="145"/> <circ-port height="10" pin="540,370" width="10" x="155" y="175"/> <circ-port height="10" pin="540,430" width="10" x="155" y="205"/> <circ-port height="10" pin="540,490" width="10" x="155" y="235"/> <circ-port height="10" pin="540,550" width="10" x="155" y="265"/> <circ-port height="10" pin="540,610" width="10" x="155" y="295"/> <circ-port height="10" pin="540,670" width="10" x="155" y="325"/> <circ-anchor facing="east" height="6" width="6" x="157" y="47"/> </appear> <wire from="(90,390)" to="(210,390)"/> <wire from="(340,580)" to="(390,580)"/> <wire from="(340,460)" to="(390,460)"/> <wire from="(340,700)" to="(390,700)"/> <wire from="(340,340)" to="(390,340)"/> <wire from="(370,60)" to="(370,260)"/> <wire from="(90,220)" to="(460,220)"/> <wire from="(150,290)" to="(150,690)"/> <wire from="(460,220)" to="(460,240)"/> <wire from="(190,350)" to="(190,630)"/> <wire from="(230,410)" to="(230,570)"/> <wire from="(520,670)" to="(540,670)"/> <wire from="(520,550)" to="(540,550)"/> <wire from="(520,430)" to="(540,430)"/> <wire from="(520,310)" to="(540,310)"/> <wire from="(370,440)" to="(390,440)"/> <wire from="(370,320)" to="(390,320)"/> <wire from="(370,560)" to="(390,560)"/> <wire from="(370,680)" to="(390,680)"/> <wire from="(320,150)" to="(320,260)"/> <wire from="(270,470)" to="(270,510)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(240,150)" to="(260,150)"/> <wire from="(230,570)" to="(310,570)"/> <wire from="(230,410)" to="(310,410)"/> <wire from="(320,560)" to="(320,620)"/> <wire from="(320,440)" to="(320,500)"/> <wire from="(320,320)" to="(320,380)"/> <wire from="(130,270)" to="(130,710)"/> <wire from="(460,540)" to="(460,600)"/> <wire from="(460,420)" to="(460,480)"/> <wire from="(460,300)" to="(460,360)"/> <wire from="(90,120)" to="(160,120)"/> <wire from="(250,530)" to="(310,530)"/> <wire from="(250,450)" to="(310,450)"/> <wire from="(170,330)" to="(170,650)"/> <wire from="(90,690)" to="(150,690)"/> <wire from="(430,560)" to="(480,560)"/> <wire from="(430,440)" to="(480,440)"/> <wire from="(430,320)" to="(480,320)"/> <wire from="(430,680)" to="(480,680)"/> <wire from="(210,390)" to="(210,590)"/> <wire from="(90,510)" to="(270,510)"/> <wire from="(130,710)" to="(310,710)"/> <wire from="(130,270)" to="(310,270)"/> <wire from="(250,450)" to="(250,530)"/> <wire from="(90,270)" to="(130,270)"/> <wire from="(90,450)" to="(250,450)"/> <wire from="(460,660)" to="(480,660)"/> <wire from="(460,540)" to="(480,540)"/> <wire from="(460,420)" to="(480,420)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(160,80)" to="(180,80)"/> <wire from="(370,380)" to="(370,440)"/> <wire from="(370,260)" to="(370,320)"/> <wire from="(370,500)" to="(370,560)"/> <wire from="(370,620)" to="(370,680)"/> <wire from="(240,90)" to="(240,150)"/> <wire from="(340,400)" to="(390,400)"/> <wire from="(340,640)" to="(390,640)"/> <wire from="(340,280)" to="(390,280)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(190,350)" to="(310,350)"/> <wire from="(190,630)" to="(310,630)"/> <wire from="(160,60)" to="(160,80)"/> <wire from="(160,100)" to="(160,120)"/> <wire from="(90,170)" to="(260,170)"/> <wire from="(90,630)" to="(190,630)"/> <wire from="(210,390)" to="(310,390)"/> <wire from="(210,590)" to="(310,590)"/> <wire from="(520,610)" to="(540,610)"/> <wire from="(520,490)" to="(540,490)"/> <wire from="(520,370)" to="(540,370)"/> <wire from="(520,250)" to="(540,250)"/> <wire from="(300,150)" to="(320,150)"/> <wire from="(370,380)" to="(390,380)"/> <wire from="(370,260)" to="(390,260)"/> <wire from="(370,620)" to="(390,620)"/> <wire from="(370,500)" to="(390,500)"/> <wire from="(90,60)" to="(110,60)"/> <wire from="(90,330)" to="(170,330)"/> <wire from="(320,260)" to="(320,320)"/> <wire from="(320,620)" to="(320,680)"/> <wire from="(320,500)" to="(320,560)"/> <wire from="(320,380)" to="(320,440)"/> <wire from="(460,600)" to="(460,660)"/> <wire from="(460,480)" to="(460,540)"/> <wire from="(460,360)" to="(460,420)"/> <wire from="(460,240)" to="(460,300)"/> <wire from="(430,620)" to="(480,620)"/> <wire from="(430,500)" to="(480,500)"/> <wire from="(430,380)" to="(480,380)"/> <wire from="(430,260)" to="(480,260)"/> <wire from="(270,510)" to="(310,510)"/> <wire from="(270,470)" to="(310,470)"/> <wire from="(130,60)" to="(160,60)"/> <wire from="(150,290)" to="(310,290)"/> <wire from="(150,690)" to="(310,690)"/> <wire from="(460,600)" to="(480,600)"/> <wire from="(460,480)" to="(480,480)"/> <wire from="(460,360)" to="(480,360)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(160,60)" to="(370,60)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(90,570)" to="(230,570)"/> <wire from="(170,330)" to="(310,330)"/> <wire from="(170,650)" to="(310,650)"/> <wire from="(370,320)" to="(370,380)"/> <wire from="(370,440)" to="(370,500)"/> <wire from="(370,560)" to="(370,620)"/> <comp loc="(430,270)" name="D-latch"/> <comp lib="1" loc="(520,430)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,450)" name="D-latch"/> <comp lib="2" loc="(340,400)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(340,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="1" loc="(520,370)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,390)" name="D-latch"/> <comp lib="0" loc="(90,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD/FIFO"/> </comp> <comp lib="2" loc="(340,700)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(339,159)" name="Text"> <a name="text" val="HINV"/> </comp> <comp lib="0" loc="(540,550)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T5"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(300,150)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(540,490)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(110,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp loc="(430,690)" name="D-latch"/> <comp lib="2" loc="(340,280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(520,610)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(340,580)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(540,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(430,570)" name="D-latch"/> <comp lib="0" loc="(90,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="2" loc="(340,340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(340,520)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(540,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="6" loc="(354,55)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="0" loc="(540,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/T7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="1" loc="(220,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(340,640)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(520,250)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,630)" name="D-latch"/> <comp lib="0" loc="(90,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(520,490)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,330)" name="D-latch"/> <comp lib="0" loc="(90,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="1" loc="(520,550)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(520,310)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(520,670)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(430,510)" name="D-latch"/> </circuit> <circuit name="VRAM_BUS_CONTROL"> <a name="circuit" val="VRAM_BUS_CONTROL"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M105,51 Q109,61 113,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fff800" height="271" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="144">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="263">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="184">H0'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="104">XRB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="319" y="225">DB/PAR</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="188" y="193">VRAM BUS CONTROL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="284">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="133">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="254">WR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="304">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="224">/PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="244">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="317" y="193">TH/MUX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="104">/R7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="326" y="164">/ALE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="204">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="164">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="284">RD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="74">PD/RB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="123">/W7</text> <circ-port height="8" pin="80,60" width="8" x="46" y="66"/> <circ-port height="8" pin="80,300" width="8" x="46" y="96"/> <circ-port height="8" pin="80,410" width="8" x="46" y="136"/> <circ-port height="8" pin="80,540" width="8" x="46" y="116"/> <circ-port height="8" pin="80,610" width="8" x="46" y="156"/> <circ-port height="8" pin="80,670" width="8" x="46" y="176"/> <circ-port height="8" pin="80,720" width="8" x="46" y="196"/> <circ-port height="8" pin="80,750" width="8" x="46" y="216"/> <circ-port height="8" pin="80,780" width="8" x="46" y="236"/> <circ-port height="8" pin="80,810" width="8" x="46" y="256"/> <circ-port height="8" pin="80,840" width="8" x="46" y="276"/> <circ-port height="8" pin="80,870" width="8" x="46" y="296"/> <circ-port height="10" pin="1310,110" width="10" x="345" y="125"/> <circ-port height="10" pin="1310,170" width="10" x="345" y="65"/> <circ-port height="10" pin="1310,390" width="10" x="345" y="215"/> <circ-port height="10" pin="1310,460" width="10" x="345" y="155"/> <circ-port height="10" pin="1310,610" width="10" x="345" y="275"/> <circ-port height="10" pin="1310,670" width="10" x="345" y="245"/> <circ-port height="10" pin="1310,730" width="10" x="345" y="95"/> <circ-port height="10" pin="1310,790" width="10" x="345" y="185"/> <circ-anchor facing="east" height="6" width="6" x="347" y="47"/> </appear> <wire from="(80,870)" to="(140,870)"/> <wire from="(530,540)" to="(900,540)"/> <wire from="(710,90)" to="(710,230)"/> <wire from="(860,450)" to="(920,450)"/> <wire from="(620,60)" to="(810,60)"/> <wire from="(100,780)" to="(100,790)"/> <wire from="(690,160)" to="(690,230)"/> <wire from="(790,470)" to="(790,500)"/> <wire from="(900,580)" to="(900,610)"/> <wire from="(620,230)" to="(620,450)"/> <wire from="(900,540)" to="(900,560)"/> <wire from="(250,310)" to="(250,720)"/> <wire from="(310,470)" to="(310,500)"/> <wire from="(160,700)" to="(520,700)"/> <wire from="(990,630)" to="(990,650)"/> <wire from="(990,240)" to="(990,450)"/> <wire from="(420,470)" to="(460,470)"/> <wire from="(1080,120)" to="(1080,390)"/> <wire from="(500,470)" to="(540,470)"/> <wire from="(860,250)" to="(880,250)"/> <wire from="(900,250)" to="(920,250)"/> <wire from="(1160,120)" to="(1160,170)"/> <wire from="(690,520)" to="(900,520)"/> <wire from="(690,470)" to="(720,470)"/> <wire from="(440,550)" to="(460,550)"/> <wire from="(440,230)" to="(460,230)"/> <wire from="(500,570)" to="(520,570)"/> <wire from="(440,60)" to="(440,230)"/> <wire from="(990,450)" to="(1020,450)"/> <wire from="(1160,680)" to="(1160,740)"/> <wire from="(790,250)" to="(820,250)"/> <wire from="(140,820)" to="(140,870)"/> <wire from="(100,800)" to="(180,800)"/> <wire from="(170,310)" to="(250,310)"/> <wire from="(690,670)" to="(820,670)"/> <wire from="(360,480)" to="(360,530)"/> <wire from="(690,250)" to="(690,300)"/> <wire from="(290,250)" to="(290,310)"/> <wire from="(260,790)" to="(1160,790)"/> <wire from="(810,450)" to="(820,450)"/> <wire from="(810,650)" to="(820,650)"/> <wire from="(710,230)" to="(720,230)"/> <wire from="(330,90)" to="(530,90)"/> <wire from="(530,450)" to="(540,450)"/> <wire from="(320,240)" to="(380,240)"/> <wire from="(80,720)" to="(140,720)"/> <wire from="(960,390)" to="(1080,390)"/> <wire from="(600,380)" to="(920,380)"/> <wire from="(440,60)" to="(620,60)"/> <wire from="(330,60)" to="(330,70)"/> <wire from="(810,230)" to="(810,450)"/> <wire from="(530,450)" to="(530,540)"/> <wire from="(530,230)" to="(530,450)"/> <wire from="(1160,680)" to="(1220,680)"/> <wire from="(880,180)" to="(920,180)"/> <wire from="(1160,120)" to="(1220,120)"/> <wire from="(1160,600)" to="(1220,600)"/> <wire from="(1060,460)" to="(1310,460)"/> <wire from="(1250,730)" to="(1310,730)"/> <wire from="(1250,610)" to="(1310,610)"/> <wire from="(250,720)" to="(1180,720)"/> <wire from="(250,310)" to="(290,310)"/> <wire from="(80,60)" to="(310,60)"/> <wire from="(120,810)" to="(120,840)"/> <wire from="(1260,670)" to="(1310,670)"/> <wire from="(900,580)" to="(920,580)"/> <wire from="(310,280)" to="(790,280)"/> <wire from="(670,470)" to="(690,470)"/> <wire from="(670,230)" to="(690,230)"/> <wire from="(360,480)" to="(380,480)"/> <wire from="(760,470)" to="(790,470)"/> <wire from="(600,470)" to="(630,470)"/> <wire from="(990,470)" to="(990,570)"/> <wire from="(440,570)" to="(440,610)"/> <wire from="(690,570)" to="(690,670)"/> <wire from="(160,760)" to="(180,760)"/> <wire from="(860,650)" to="(990,650)"/> <wire from="(960,170)" to="(1160,170)"/> <wire from="(1160,170)" to="(1310,170)"/> <wire from="(1080,120)" to="(1100,120)"/> <wire from="(1200,720)" to="(1220,720)"/> <wire from="(290,530)" to="(360,530)"/> <wire from="(790,400)" to="(790,450)"/> <wire from="(900,470)" to="(900,520)"/> <wire from="(620,230)" to="(630,230)"/> <wire from="(530,90)" to="(530,230)"/> <wire from="(120,810)" to="(180,810)"/> <wire from="(860,230)" to="(920,230)"/> <wire from="(960,610)" to="(1020,610)"/> <wire from="(1080,390)" to="(1310,390)"/> <wire from="(170,530)" to="(290,530)"/> <wire from="(100,800)" to="(100,810)"/> <wire from="(1080,660)" to="(1180,660)"/> <wire from="(80,540)" to="(130,540)"/> <wire from="(80,300)" to="(130,300)"/> <wire from="(690,160)" to="(920,160)"/> <wire from="(790,250)" to="(790,280)"/> <wire from="(900,610)" to="(940,610)"/> <wire from="(330,60)" to="(440,60)"/> <wire from="(80,750)" to="(120,750)"/> <wire from="(440,230)" to="(440,450)"/> <wire from="(310,250)" to="(310,280)"/> <wire from="(140,770)" to="(180,770)"/> <wire from="(110,320)" to="(110,410)"/> <wire from="(420,250)" to="(460,250)"/> <wire from="(80,670)" to="(690,670)"/> <wire from="(500,250)" to="(540,250)"/> <wire from="(900,470)" to="(920,470)"/> <wire from="(1140,100)" to="(1220,100)"/> <wire from="(440,450)" to="(440,550)"/> <wire from="(620,60)" to="(620,230)"/> <wire from="(1160,740)" to="(1160,790)"/> <wire from="(690,300)" to="(900,300)"/> <wire from="(580,470)" to="(600,470)"/> <wire from="(690,250)" to="(720,250)"/> <wire from="(440,570)" to="(460,570)"/> <wire from="(440,450)" to="(460,450)"/> <wire from="(960,240)" to="(990,240)"/> <wire from="(990,470)" to="(1020,470)"/> <wire from="(990,630)" to="(1020,630)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(110,320)" to="(130,320)"/> <wire from="(80,810)" to="(100,810)"/> <wire from="(790,470)" to="(820,470)"/> <wire from="(140,720)" to="(140,770)"/> <wire from="(360,260)" to="(360,310)"/> <wire from="(690,470)" to="(690,520)"/> <wire from="(1080,60)" to="(1080,100)"/> <wire from="(290,470)" to="(290,530)"/> <wire from="(810,230)" to="(820,230)"/> <wire from="(710,450)" to="(720,450)"/> <wire from="(530,230)" to="(540,230)"/> <wire from="(160,700)" to="(160,760)"/> <wire from="(320,460)" to="(380,460)"/> <wire from="(530,90)" to="(710,90)"/> <wire from="(810,450)" to="(810,650)"/> <wire from="(580,250)" to="(630,250)"/> <wire from="(1050,620)" to="(1220,620)"/> <wire from="(120,780)" to="(180,780)"/> <wire from="(960,460)" to="(1020,460)"/> <wire from="(520,570)" to="(520,700)"/> <wire from="(880,180)" to="(880,250)"/> <wire from="(330,80)" to="(330,90)"/> <wire from="(690,570)" to="(920,570)"/> <wire from="(600,380)" to="(600,470)"/> <wire from="(1160,740)" to="(1220,740)"/> <wire from="(710,230)" to="(710,450)"/> <wire from="(1250,110)" to="(1310,110)"/> <wire from="(80,610)" to="(440,610)"/> <wire from="(80,840)" to="(120,840)"/> <wire from="(140,820)" to="(180,820)"/> <wire from="(120,750)" to="(120,780)"/> <wire from="(1080,390)" to="(1080,660)"/> <wire from="(900,560)" to="(920,560)"/> <wire from="(80,410)" to="(110,410)"/> <wire from="(310,500)" to="(790,500)"/> <wire from="(810,60)" to="(810,230)"/> <wire from="(670,250)" to="(690,250)"/> <wire from="(760,250)" to="(790,250)"/> <wire from="(360,260)" to="(380,260)"/> <wire from="(760,450)" to="(790,450)"/> <wire from="(960,570)" to="(990,570)"/> <wire from="(80,780)" to="(100,780)"/> <wire from="(110,410)" to="(110,520)"/> <wire from="(100,790)" to="(180,790)"/> <wire from="(790,400)" to="(920,400)"/> <wire from="(440,610)" to="(900,610)"/> <wire from="(1160,790)" to="(1310,790)"/> <wire from="(1080,100)" to="(1100,100)"/> <wire from="(1200,660)" to="(1220,660)"/> <wire from="(810,60)" to="(1080,60)"/> <wire from="(290,310)" to="(360,310)"/> <wire from="(620,450)" to="(630,450)"/> <wire from="(1160,170)" to="(1160,600)"/> <wire from="(900,250)" to="(900,300)"/> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/R7"/> </comp> <comp lib="0" loc="(80,720)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA8"/> </comp> <comp loc="(760,460)" name="D-latch"/> <comp lib="4" loc="(320,220)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(1034,435)" name="Text"> <a name="text" val="/ALE"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1060,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(580,240)" name="D-latch"/> <comp lib="6" loc="(869,565)" name="Text"> <a name="text" val="H0'"/> </comp> <comp lib="1" loc="(1200,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(887,644)" name="Text"> <a name="text" val="H0''"/> </comp> <comp loc="(670,240)" name="D-latch"/> <comp lib="0" loc="(1310,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/ALE"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(420,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0'"/> </comp> <comp lib="0" loc="(1310,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="XRB"/> <a name="labelloc" val="east"/> </comp> <comp loc="(860,660)" name="D-latch"/> <comp lib="1" loc="(420,470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(310,60)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(80,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(80,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA13"/> </comp> <comp lib="0" loc="(1310,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="WR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(670,460)" name="D-latch"/> <comp lib="6" loc="(208,302)" name="Text"> <a name="text" val="R7_EN"/> </comp> <comp lib="1" loc="(960,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1250,730)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(80,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA12"/> </comp> <comp lib="4" loc="(500,230)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA11"/> </comp> <comp lib="1" loc="(1250,610)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1050,620)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(480,200)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp loc="(860,240)" name="D-latch"/> <comp lib="0" loc="(80,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(780,665)" name="Text"> <a name="text" val="H0'"/> </comp> <comp lib="0" loc="(80,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA9"/> </comp> <comp lib="0" loc="(1310,610)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="RD"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1310,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TH/MUX"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(740,198)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="6" loc="(398,54)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/PA10"/> </comp> <comp lib="4" loc="(320,440)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W7"/> </comp> <comp lib="1" loc="(170,530)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1310,110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TSTEP"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(960,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(207,522)" name="Text"> <a name="text" val="W7_EN"/> </comp> <comp lib="1" loc="(260,790)" name="NOR Gate"> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="6" loc="(874,604)" name="Text"> <a name="text" val="BLNK"/> </comp> <comp lib="1" loc="(960,570)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="6" loc="(397,85)" name="Text"> <a name="text" val="/PCLK"/> </comp> <comp lib="1" loc="(960,460)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(839,199)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="1" loc="(1250,110)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1260,670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(500,450)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1200,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1310,170)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD/RB"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1032,162)" name="Text"> <a name="text" val="PD/RB"/> </comp> <comp lib="1" loc="(960,170)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1310,390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1140,110)" name="D-latch"/> <comp lib="6" loc="(653,198)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="6" loc="(1030,384)" name="Text"> <a name="text" val="DB/PAR"/> </comp> <comp loc="(860,460)" name="D-latch"/> <comp lib="1" loc="(960,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(580,460)" name="D-latch"/> <comp lib="1" loc="(170,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(760,240)" name="D-latch"/> <comp loc="(500,560)" name="D-latch"/> <comp lib="6" loc="(560,197)" name="Text"> <a name="text" val="/PCLK"/> </comp> </circuit> <circuit name="READ_$2007"> <a name="circuit" val="READ_$2007"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#dcff12" height="270" stroke="#000000" stroke-width="2" width="80" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="233">DB7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="94">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="155">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="215">PD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="154">DB3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="94">DB0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="254">PD/RB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="174">DB4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="114">PD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="175">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="294">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="194">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="134">DB2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="234">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="214">DB6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="194">DB5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="274">XRB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="114">DB1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="134">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="33">READ $2007</text> <circ-port height="8" pin="80,50" width="8" x="46" y="266"/> <circ-port height="8" pin="80,100" width="8" x="46" y="286"/> <circ-port height="8" pin="80,150" width="8" x="46" y="246"/> <circ-port height="8" pin="80,220" width="8" x="46" y="86"/> <circ-port height="8" pin="80,300" width="8" x="46" y="106"/> <circ-port height="8" pin="80,380" width="8" x="46" y="126"/> <circ-port height="8" pin="80,460" width="8" x="46" y="146"/> <circ-port height="8" pin="80,540" width="8" x="46" y="166"/> <circ-port height="8" pin="80,620" width="8" x="46" y="186"/> <circ-port height="8" pin="80,700" width="8" x="46" y="206"/> <circ-port height="8" pin="80,780" width="8" x="46" y="226"/> <circ-port height="10" pin="280,240" width="10" x="125" y="85"/> <circ-port height="10" pin="280,320" width="10" x="125" y="105"/> <circ-port height="10" pin="280,400" width="10" x="125" y="125"/> <circ-port height="10" pin="280,480" width="10" x="125" y="145"/> <circ-port height="10" pin="280,560" width="10" x="125" y="165"/> <circ-port height="10" pin="280,640" width="10" x="125" y="185"/> <circ-port height="10" pin="280,720" width="10" x="125" y="205"/> <circ-port height="10" pin="280,800" width="10" x="125" y="225"/> <circ-anchor facing="east" height="6" width="6" x="127" y="37"/> </appear> <wire from="(170,790)" to="(170,800)"/> <wire from="(140,50)" to="(250,50)"/> <wire from="(240,760)" to="(240,780)"/> <wire from="(250,300)" to="(250,380)"/> <wire from="(250,380)" to="(250,460)"/> <wire from="(250,220)" to="(250,300)"/> <wire from="(250,460)" to="(250,540)"/> <wire from="(250,620)" to="(250,700)"/> <wire from="(250,540)" to="(250,620)"/> <wire from="(250,700)" to="(250,780)"/> <wire from="(240,520)" to="(240,540)"/> <wire from="(240,680)" to="(240,700)"/> <wire from="(240,600)" to="(240,620)"/> <wire from="(240,200)" to="(240,220)"/> <wire from="(240,360)" to="(240,380)"/> <wire from="(240,280)" to="(240,300)"/> <wire from="(240,440)" to="(240,460)"/> <wire from="(80,50)" to="(120,50)"/> <wire from="(80,150)" to="(120,150)"/> <wire from="(250,50)" to="(250,220)"/> <wire from="(170,100)" to="(170,230)"/> <wire from="(80,300)" to="(140,300)"/> <wire from="(80,460)" to="(140,460)"/> <wire from="(80,620)" to="(140,620)"/> <wire from="(80,780)" to="(140,780)"/> <wire from="(80,220)" to="(140,220)"/> <wire from="(80,380)" to="(140,380)"/> <wire from="(80,540)" to="(140,540)"/> <wire from="(80,700)" to="(140,700)"/> <wire from="(180,200)" to="(240,200)"/> <wire from="(180,360)" to="(240,360)"/> <wire from="(180,280)" to="(240,280)"/> <wire from="(180,440)" to="(240,440)"/> <wire from="(180,680)" to="(240,680)"/> <wire from="(180,520)" to="(240,520)"/> <wire from="(180,760)" to="(240,760)"/> <wire from="(180,600)" to="(240,600)"/> <wire from="(120,360)" to="(120,440)"/> <wire from="(120,200)" to="(120,280)"/> <wire from="(120,280)" to="(120,360)"/> <wire from="(120,680)" to="(120,760)"/> <wire from="(120,520)" to="(120,600)"/> <wire from="(120,440)" to="(120,520)"/> <wire from="(120,600)" to="(120,680)"/> <wire from="(170,550)" to="(170,630)"/> <wire from="(170,630)" to="(170,710)"/> <wire from="(170,710)" to="(170,790)"/> <wire from="(170,470)" to="(170,550)"/> <wire from="(170,390)" to="(170,470)"/> <wire from="(170,230)" to="(170,310)"/> <wire from="(170,310)" to="(170,390)"/> <wire from="(80,100)" to="(170,100)"/> <wire from="(260,320)" to="(280,320)"/> <wire from="(260,480)" to="(280,480)"/> <wire from="(260,640)" to="(280,640)"/> <wire from="(260,800)" to="(280,800)"/> <wire from="(260,240)" to="(280,240)"/> <wire from="(260,400)" to="(280,400)"/> <wire from="(260,560)" to="(280,560)"/> <wire from="(260,720)" to="(280,720)"/> <wire from="(120,280)" to="(140,280)"/> <wire from="(120,200)" to="(140,200)"/> <wire from="(120,440)" to="(140,440)"/> <wire from="(120,600)" to="(140,600)"/> <wire from="(120,760)" to="(140,760)"/> <wire from="(120,360)" to="(140,360)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(120,150)" to="(120,200)"/> <wire from="(220,650)" to="(230,650)"/> <wire from="(220,550)" to="(230,550)"/> <wire from="(220,710)" to="(230,710)"/> <wire from="(220,730)" to="(230,730)"/> <wire from="(220,790)" to="(230,790)"/> <wire from="(220,810)" to="(230,810)"/> <wire from="(220,630)" to="(230,630)"/> <wire from="(220,570)" to="(230,570)"/> <wire from="(220,490)" to="(230,490)"/> <wire from="(220,470)" to="(230,470)"/> <wire from="(220,410)" to="(230,410)"/> <wire from="(220,390)" to="(230,390)"/> <wire from="(220,330)" to="(230,330)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(220,230)" to="(230,230)"/> <wire from="(220,250)" to="(230,250)"/> <comp lib="4" loc="(180,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="2" loc="(260,560)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(260,400)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(180,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(180,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD/RB"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(220,470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(260,640)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(180,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="4" loc="(180,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,780)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="2" loc="(260,240)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(220,250)" name="Constant"/> <comp lib="0" loc="(80,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(80,620)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(280,800)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,490)" name="Constant"/> <comp lib="0" loc="(220,550)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="XRB"/> </comp> <comp lib="4" loc="(180,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(280,320)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(180,760)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(80,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="2" loc="(260,720)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(220,790)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="2" loc="(260,320)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(80,220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(280,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,310)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(140,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(220,570)" name="Constant"/> <comp lib="2" loc="(260,800)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="0" loc="(220,390)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,650)" name="Constant"/> <comp lib="0" loc="(220,330)" name="Constant"/> <comp lib="0" loc="(280,560)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,730)" name="Constant"/> <comp lib="0" loc="(280,640)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,630)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,710)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(280,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,810)" name="Constant"/> <comp lib="0" loc="(280,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(280,480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="DB3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(220,410)" name="Constant"/> <comp lib="4" loc="(180,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(260,480)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> </circuit> <circuit name="PICTURE_ADDRESS_GEN"> <a name="circuit" val="PICTURE_ADDRESS_GEN"/> <a name="clabel" val="PICTURE ADDRESS GEN"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M126,51 Q130,61 134,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ba16ff" height="600" stroke="#000000" stroke-width="2" width="410" x="40" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="314">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="250" y="639">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="234">/PA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="154">l1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="314">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="330" y="69">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="178" y="627">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="334">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="515">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="254">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="135">O8/16</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="94">/PA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="434">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="114">/PA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="427" y="594">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="194">/PA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="474">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="615">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="421" y="254">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="275">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="174">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="394">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="214">/PA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="494">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="474">SC/CNT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="76">PPU DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="633">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="110" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="114">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="294">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="190" y="69">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="358" y="234">PPU ADDRESS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="154">/PA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="194">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="134">/PA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="454">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="420" y="174">/PA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="334">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="424" y="354">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="438" y="394">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="294">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="355">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="50" y="594">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="215">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="50" y="534">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="234">/W6.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="421" y="274">/PA9</text> <polyline fill="none" points="40,66 46,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="40,74 46,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="46,66 46,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="564">OBJ TILE V. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="514">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="534">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="431" y="554">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="400" y="434">TILE H. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="419" y="640">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="279" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="349" y="626">OBJ DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="131" y="70">DB/PAR</text> <circ-port height="8" pin="120,110" width="8" x="36" y="66"/> <circ-port height="8" pin="120,240" width="8" x="36" y="466"/> <circ-port height="8" pin="120,300" width="8" x="36" y="626"/> <circ-port height="8" pin="120,430" width="8" x="36" y="386"/> <circ-port height="8" pin="120,490" width="8" x="36" y="606"/> <circ-port height="8" pin="120,570" width="8" x="36" y="486"/> <circ-port height="8" pin="120,650" width="8" x="36" y="306"/> <circ-port height="8" pin="120,750" width="8" x="36" y="366"/> <circ-port height="8" pin="120,800" width="8" x="36" y="146"/> <circ-port height="8" pin="120,850" width="8" x="186" y="46"/> <circ-port height="8" pin="120,900" width="8" x="206" y="46"/> <circ-port height="8" pin="120,950" width="8" x="226" y="46"/> <circ-port height="8" pin="120,1000" width="8" x="246" y="46"/> <circ-port height="8" pin="120,1050" width="8" x="266" y="46"/> <circ-port height="8" pin="120,1100" width="8" x="286" y="46"/> <circ-port height="8" pin="120,1150" width="8" x="306" y="46"/> <circ-port height="8" pin="120,1200" width="8" x="326" y="46"/> <circ-port height="8" pin="120,1290" width="8" x="276" y="646"/> <circ-port height="8" pin="120,1340" width="8" x="296" y="646"/> <circ-port height="8" pin="120,1390" width="8" x="316" y="646"/> <circ-port height="8" pin="120,1440" width="8" x="336" y="646"/> <circ-port height="8" pin="120,1490" width="8" x="356" y="646"/> <circ-port height="8" pin="120,1540" width="8" x="376" y="646"/> <circ-port height="8" pin="120,1590" width="8" x="396" y="646"/> <circ-port height="8" pin="120,1640" width="8" x="416" y="646"/> <circ-port height="8" pin="120,1740" width="8" x="36" y="526"/> <circ-port height="8" pin="120,1770" width="8" x="36" y="546"/> <circ-port height="8" pin="120,1800" width="8" x="36" y="566"/> <circ-port height="8" pin="120,1830" width="8" x="36" y="586"/> <circ-port height="8" pin="120,1940" width="8" x="106" y="646"/> <circ-port height="8" pin="120,1990" width="8" x="126" y="646"/> <circ-port height="8" pin="120,2040" width="8" x="146" y="646"/> <circ-port height="8" pin="120,2090" width="8" x="166" y="646"/> <circ-port height="8" pin="120,2140" width="8" x="186" y="646"/> <circ-port height="8" pin="120,2190" width="8" x="206" y="646"/> <circ-port height="8" pin="120,2240" width="8" x="226" y="646"/> <circ-port height="8" pin="120,2290" width="8" x="246" y="646"/> <circ-port height="8" pin="120,2380" width="8" x="36" y="286"/> <circ-port height="8" pin="120,2440" width="8" x="36" y="266"/> <circ-port height="8" pin="120,2500" width="8" x="36" y="206"/> <circ-port height="8" pin="120,2570" width="8" x="36" y="246"/> <circ-port height="8" pin="120,2630" width="8" x="36" y="226"/> <circ-port height="8" pin="120,2690" width="8" x="36" y="86"/> <circ-port height="8" pin="120,2750" width="8" x="36" y="106"/> <circ-port height="10" pin="2110,730" width="10" x="445" y="85"/> <circ-port height="10" pin="2110,930" width="10" x="445" y="105"/> <circ-port height="10" pin="2110,1130" width="10" x="445" y="125"/> <circ-port height="10" pin="2110,1330" width="10" x="445" y="145"/> <circ-port height="10" pin="2110,1530" width="10" x="445" y="165"/> <circ-port height="10" pin="2110,1930" width="10" x="445" y="185"/> <circ-port height="10" pin="2110,2130" width="10" x="445" y="205"/> <circ-port height="10" pin="2110,2330" width="10" x="445" y="225"/> <circ-port height="10" pin="2110,2520" width="10" x="445" y="245"/> <circ-port height="10" pin="2110,2720" width="10" x="445" y="265"/> <circ-port height="10" pin="2110,2920" width="10" x="445" y="285"/> <circ-port height="10" pin="2110,3110" width="10" x="445" y="305"/> <circ-port height="10" pin="2110,3310" width="10" x="445" y="325"/> <circ-port height="10" pin="340,2900" width="10" x="445" y="505"/> <circ-port height="10" pin="2110,3510" width="10" x="445" y="345"/> <circ-port height="10" pin="340,3050" width="10" x="445" y="525"/> <circ-port height="10" pin="340,3200" width="10" x="445" y="545"/> <circ-port height="10" pin="1200,80" width="10" x="445" y="385"/> <circ-port height="10" pin="1240,80" width="10" x="445" y="405"/> <circ-port height="10" pin="1280,80" width="10" x="445" y="425"/> <circ-port height="10" pin="1320,80" width="10" x="445" y="445"/> <circ-port height="10" pin="1360,80" width="10" x="445" y="465"/> <circ-port height="10" pin="1410,80" width="10" x="445" y="585"/> <circ-port height="8" pin="1670,80" width="8" x="36" y="446"/> <circ-port height="8" pin="1950,80" width="8" x="36" y="426"/> <circ-port height="8" pin="2000,80" width="8" x="36" y="406"/> <circ-port height="8" pin="2050,80" width="8" x="36" y="506"/> <circ-port height="8" pin="2100,80" width="8" x="36" y="126"/> <circ-port height="8" pin="2150,80" width="8" x="36" y="166"/> <circ-port height="8" pin="2200,80" width="8" x="36" y="186"/> <circ-port height="8" pin="1780,80" width="8" x="36" y="346"/> <circ-port height="8" pin="2250,80" width="8" x="36" y="326"/> <circ-port height="8" pin="1900,80" width="8" x="126" y="46"/> <circ-anchor facing="east" height="6" width="6" x="447" y="47"/> </appear> <wire from="(760,1330)" to="(760,1530)"/> <wire from="(120,1150)" to="(180,1150)"/> <wire from="(230,1510)" to="(230,1530)"/> <wire from="(310,2930)" to="(310,3080)"/> <wire from="(620,2860)" to="(620,2890)"/> <wire from="(570,730)" to="(670,730)"/> <wire from="(570,2330)" to="(670,2330)"/> <wire from="(570,2650)" to="(670,2650)"/> <wire from="(2660,3620)" to="(2660,3680)"/> <wire from="(1920,1350)" to="(1980,1350)"/> <wire from="(820,3530)" to="(930,3530)"/> <wire from="(200,1800)" to="(200,1830)"/> <wire from="(820,1930)" to="(930,1930)"/> <wire from="(710,1350)" to="(710,1370)"/> <wire from="(2600,3680)" to="(2610,3680)"/> <wire from="(120,2140)" to="(150,2140)"/> <wire from="(1810,2390)" to="(1940,2390)"/> <wire from="(1160,3580)" to="(1240,3580)"/> <wire from="(1950,80)" to="(1950,590)"/> <wire from="(1740,3340)" to="(1740,3400)"/> <wire from="(1160,2320)" to="(1550,2320)"/> <wire from="(2020,2130)" to="(2040,2130)"/> <wire from="(1220,3570)" to="(1240,3570)"/> <wire from="(920,3280)" to="(930,3280)"/> <wire from="(920,2960)" to="(930,2960)"/> <wire from="(2000,2540)" to="(2040,2540)"/> <wire from="(2200,80)" to="(2200,440)"/> <wire from="(160,1010)" to="(210,1010)"/> <wire from="(570,770)" to="(630,770)"/> <wire from="(570,2370)" to="(630,2370)"/> <wire from="(570,2690)" to="(630,2690)"/> <wire from="(650,1170)" to="(710,1170)"/> <wire from="(2760,3720)" to="(2760,3820)"/> <wire from="(2290,110)" to="(2290,350)"/> <wire from="(1770,3110)" to="(1770,3310)"/> <wire from="(2020,2720)" to="(2020,2920)"/> <wire from="(2810,3700)" to="(2820,3700)"/> <wire from="(820,3340)" to="(930,3340)"/> <wire from="(1690,2330)" to="(1760,2330)"/> <wire from="(180,1050)" to="(210,1050)"/> <wire from="(640,3390)" to="(640,3560)"/> <wire from="(1770,2920)" to="(1770,3110)"/> <wire from="(2600,3690)" to="(2600,3700)"/> <wire from="(1690,730)" to="(1760,730)"/> <wire from="(1160,3330)" to="(1170,3330)"/> <wire from="(690,930)" to="(710,930)"/> <wire from="(690,2530)" to="(710,2530)"/> <wire from="(1740,1550)" to="(1740,1610)"/> <wire from="(620,2770)" to="(650,2770)"/> <wire from="(350,590)" to="(370,590)"/> <wire from="(1650,2540)" to="(1660,2540)"/> <wire from="(120,1000)" to="(140,1000)"/> <wire from="(710,1350)" to="(780,1350)"/> <wire from="(640,2560)" to="(640,2680)"/> <wire from="(200,3070)" to="(280,3070)"/> <wire from="(790,1750)" to="(860,1750)"/> <wire from="(920,1810)" to="(930,1810)"/> <wire from="(700,2750)" to="(700,2800)"/> <wire from="(150,2520)" to="(150,2590)"/> <wire from="(810,1960)" to="(810,2160)"/> <wire from="(810,3560)" to="(810,3760)"/> <wire from="(2000,750)" to="(2040,750)"/> <wire from="(2000,2350)" to="(2040,2350)"/> <wire from="(1770,1320)" to="(1770,1520)"/> <wire from="(1900,1130)" to="(1900,1330)"/> <wire from="(2020,930)" to="(2020,1130)"/> <wire from="(710,3530)" to="(710,3550)"/> <wire from="(140,110)" to="(2290,110)"/> <wire from="(2400,3620)" to="(2400,3680)"/> <wire from="(200,1740)" to="(200,1770)"/> <wire from="(2310,3720)" to="(2380,3720)"/> <wire from="(1790,3530)" to="(1980,3530)"/> <wire from="(710,1930)" to="(710,1950)"/> <wire from="(760,1130)" to="(780,1130)"/> <wire from="(150,3070)" to="(180,3070)"/> <wire from="(2790,3690)" to="(2790,3700)"/> <wire from="(220,2510)" to="(240,2510)"/> <wire from="(150,2650)" to="(150,2690)"/> <wire from="(2020,680)" to="(2020,730)"/> <wire from="(1870,960)" to="(1890,960)"/> <wire from="(120,1200)" to="(200,1200)"/> <wire from="(810,3370)" to="(810,3560)"/> <wire from="(1740,1150)" to="(1760,1150)"/> <wire from="(1740,2750)" to="(1760,2750)"/> <wire from="(920,660)" to="(930,660)"/> <wire from="(1180,2080)" to="(1180,2120)"/> <wire from="(1790,2340)" to="(1890,2340)"/> <wire from="(640,960)" to="(640,1160)"/> <wire from="(680,1320)" to="(680,1520)"/> <wire from="(2080,1930)" to="(2110,1930)"/> <wire from="(1040,1750)" to="(1040,1770)"/> <wire from="(120,900)" to="(180,900)"/> <wire from="(120,2500)" to="(180,2500)"/> <wire from="(1790,740)" to="(1890,740)"/> <wire from="(200,1290)" to="(200,1430)"/> <wire from="(1670,710)" to="(1670,910)"/> <wire from="(1670,2310)" to="(1670,2510)"/> <wire from="(200,140)" to="(200,220)"/> <wire from="(1610,2720)" to="(1660,2720)"/> <wire from="(710,3340)" to="(710,3360)"/> <wire from="(270,430)" to="(310,430)"/> <wire from="(1520,1520)" to="(1660,1520)"/> <wire from="(1740,2210)" to="(2320,2210)"/> <wire from="(220,2640)" to="(240,2640)"/> <wire from="(1220,3590)" to="(1220,3780)"/> <wire from="(1750,3540)" to="(1760,3540)"/> <wire from="(460,320)" to="(480,320)"/> <wire from="(500,1830)" to="(720,1830)"/> <wire from="(150,650)" to="(170,650)"/> <wire from="(190,370)" to="(210,370)"/> <wire from="(680,2540)" to="(680,2640)"/> <wire from="(2020,2520)" to="(2040,2520)"/> <wire from="(750,1900)" to="(760,1900)"/> <wire from="(150,2460)" to="(150,2520)"/> <wire from="(2290,350)" to="(2320,350)"/> <wire from="(120,2630)" to="(180,2630)"/> <wire from="(230,1070)" to="(230,1090)"/> <wire from="(2400,3680)" to="(2410,3680)"/> <wire from="(810,3760)" to="(810,3850)"/> <wire from="(570,930)" to="(670,930)"/> <wire from="(570,2530)" to="(670,2530)"/> <wire from="(710,3150)" to="(710,3170)"/> <wire from="(1920,1550)" to="(1980,1550)"/> <wire from="(2560,3720)" to="(2560,3770)"/> <wire from="(2460,3620)" to="(2460,3680)"/> <wire from="(820,3730)" to="(930,3730)"/> <wire from="(2760,3720)" to="(2770,3720)"/> <wire from="(2020,2920)" to="(2020,3110)"/> <wire from="(820,2130)" to="(930,2130)"/> <wire from="(710,1550)" to="(710,1570)"/> <wire from="(760,3130)" to="(760,3340)"/> <wire from="(180,1440)" to="(210,1440)"/> <wire from="(1030,380)" to="(1050,380)"/> <wire from="(120,490)" to="(210,490)"/> <wire from="(1270,3390)" to="(1270,3440)"/> <wire from="(1160,3530)" to="(1300,3530)"/> <wire from="(220,2450)" to="(240,2450)"/> <wire from="(220,1810)" to="(240,1810)"/> <wire from="(2020,3110)" to="(2020,3310)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(2020,730)" to="(2040,730)"/> <wire from="(760,2940)" to="(760,3130)"/> <wire from="(2020,2330)" to="(2040,2330)"/> <wire from="(140,140)" to="(150,140)"/> <wire from="(400,210)" to="(400,450)"/> <wire from="(150,2590)" to="(150,2650)"/> <wire from="(1760,490)" to="(1760,520)"/> <wire from="(120,1800)" to="(180,1800)"/> <wire from="(120,2440)" to="(180,2440)"/> <wire from="(2000,2740)" to="(2040,2740)"/> <wire from="(1180,2120)" to="(1410,2120)"/> <wire from="(180,1790)" to="(180,1800)"/> <wire from="(1080,1600)" to="(1080,1690)"/> <wire from="(570,970)" to="(630,970)"/> <wire from="(570,2570)" to="(630,2570)"/> <wire from="(650,1370)" to="(710,1370)"/> <wire from="(1770,3310)" to="(1770,3510)"/> <wire from="(710,2960)" to="(710,2980)"/> <wire from="(1690,930)" to="(1760,930)"/> <wire from="(1690,2530)" to="(1760,2530)"/> <wire from="(1520,1140)" to="(1660,1140)"/> <wire from="(690,1130)" to="(710,1130)"/> <wire from="(180,1340)" to="(180,1440)"/> <wire from="(290,410)" to="(310,410)"/> <wire from="(220,2580)" to="(240,2580)"/> <wire from="(2400,3690)" to="(2400,3700)"/> <wire from="(1650,2740)" to="(1660,2740)"/> <wire from="(2780,3620)" to="(2780,3690)"/> <wire from="(1160,2720)" to="(1610,2720)"/> <wire from="(710,1550)" to="(780,1550)"/> <wire from="(710,3150)" to="(780,3150)"/> <wire from="(1740,3140)" to="(1760,3140)"/> <wire from="(720,1690)" to="(720,1740)"/> <wire from="(1770,560)" to="(1770,720)"/> <wire from="(1090,250)" to="(1110,250)"/> <wire from="(1160,960)" to="(1180,960)"/> <wire from="(150,2400)" to="(150,2460)"/> <wire from="(810,2160)" to="(810,2360)"/> <wire from="(2000,950)" to="(2040,950)"/> <wire from="(120,2570)" to="(180,2570)"/> <wire from="(1550,1340)" to="(1550,2320)"/> <wire from="(1900,1330)" to="(1900,1530)"/> <wire from="(2020,1130)" to="(2020,1330)"/> <wire from="(710,3730)" to="(710,3750)"/> <wire from="(1160,1120)" to="(1280,1120)"/> <wire from="(1710,630)" to="(1710,2810)"/> <wire from="(710,2130)" to="(710,2150)"/> <wire from="(760,1330)" to="(780,1330)"/> <wire from="(920,530)" to="(940,530)"/> <wire from="(120,430)" to="(210,430)"/> <wire from="(210,2690)" to="(240,2690)"/> <wire from="(1270,3330)" to="(1270,3390)"/> <wire from="(220,2390)" to="(240,2390)"/> <wire from="(1410,80)" to="(1410,2120)"/> <wire from="(1870,1160)" to="(1890,1160)"/> <wire from="(710,2960)" to="(780,2960)"/> <wire from="(860,1830)" to="(930,1830)"/> <wire from="(1740,1350)" to="(1760,1350)"/> <wire from="(1740,2950)" to="(1760,2950)"/> <wire from="(1280,2810)" to="(1300,2810)"/> <wire from="(750,690)" to="(760,690)"/> <wire from="(640,1160)" to="(640,1360)"/> <wire from="(2080,2130)" to="(2110,2130)"/> <wire from="(190,3080)" to="(190,3210)"/> <wire from="(120,2380)" to="(180,2380)"/> <wire from="(1790,940)" to="(1890,940)"/> <wire from="(810,2680)" to="(810,2690)"/> <wire from="(1320,80)" to="(1320,1320)"/> <wire from="(200,850)" to="(200,990)"/> <wire from="(560,280)" to="(600,280)"/> <wire from="(1670,910)" to="(1670,1110)"/> <wire from="(1670,2510)" to="(1670,2710)"/> <wire from="(1280,1120)" to="(1460,1120)"/> <wire from="(680,3120)" to="(680,3330)"/> <wire from="(120,2090)" to="(150,2090)"/> <wire from="(1740,2410)" to="(2320,2410)"/> <wire from="(1740,810)" to="(2320,810)"/> <wire from="(260,3200)" to="(280,3200)"/> <wire from="(1520,1140)" to="(1520,1520)"/> <wire from="(2280,3510)" to="(2280,3520)"/> <wire from="(860,270)" to="(890,270)"/> <wire from="(210,590)" to="(230,590)"/> <wire from="(2020,2720)" to="(2040,2720)"/> <wire from="(970,210)" to="(970,450)"/> <wire from="(2000,80)" to="(2000,560)"/> <wire from="(160,1390)" to="(160,1450)"/> <wire from="(2000,3130)" to="(2040,3130)"/> <wire from="(750,1860)" to="(810,1860)"/> <wire from="(1010,1600)" to="(1010,1690)"/> <wire from="(2560,3700)" to="(2590,3700)"/> <wire from="(570,1130)" to="(670,1130)"/> <wire from="(820,730)" to="(930,730)"/> <wire from="(820,2330)" to="(930,2330)"/> <wire from="(530,290)" to="(530,330)"/> <wire from="(180,1000)" to="(210,1000)"/> <wire from="(740,3810)" to="(760,3810)"/> <wire from="(2650,3690)" to="(2650,3700)"/> <wire from="(2250,80)" to="(2250,410)"/> <wire from="(2020,3310)" to="(2020,3510)"/> <wire from="(290,370)" to="(290,410)"/> <wire from="(2020,930)" to="(2040,930)"/> <wire from="(2630,3670)" to="(2630,3700)"/> <wire from="(2640,3680)" to="(2640,3700)"/> <wire from="(270,220)" to="(340,220)"/> <wire from="(640,780)" to="(640,960)"/> <wire from="(2000,2940)" to="(2040,2940)"/> <wire from="(1340,3320)" to="(1760,3320)"/> <wire from="(1770,1520)" to="(1770,1920)"/> <wire from="(570,1170)" to="(630,1170)"/> <wire from="(720,1760)" to="(720,1830)"/> <wire from="(650,1570)" to="(710,1570)"/> <wire from="(2300,380)" to="(2320,380)"/> <wire from="(650,3170)" to="(710,3170)"/> <wire from="(2250,410)" to="(2320,410)"/> <wire from="(1240,80)" to="(1240,920)"/> <wire from="(150,2690)" to="(190,2690)"/> <wire from="(1690,1130)" to="(1760,1130)"/> <wire from="(1690,2730)" to="(1760,2730)"/> <wire from="(890,250)" to="(910,250)"/> <wire from="(1160,3730)" to="(1170,3730)"/> <wire from="(620,2860)" to="(640,2860)"/> <wire from="(180,900)" to="(180,1000)"/> <wire from="(690,1330)" to="(710,1330)"/> <wire from="(1740,1950)" to="(1740,2010)"/> <wire from="(610,2840)" to="(640,2840)"/> <wire from="(320,3200)" to="(340,3200)"/> <wire from="(290,500)" to="(290,540)"/> <wire from="(2580,3620)" to="(2580,3690)"/> <wire from="(180,1780)" to="(200,1780)"/> <wire from="(570,3210)" to="(640,3210)"/> <wire from="(1740,3340)" to="(1760,3340)"/> <wire from="(920,610)" to="(930,610)"/> <wire from="(920,1890)" to="(930,1890)"/> <wire from="(920,3170)" to="(930,3170)"/> <wire from="(1160,2120)" to="(1180,2120)"/> <wire from="(2080,2520)" to="(2110,2520)"/> <wire from="(810,760)" to="(810,960)"/> <wire from="(2100,500)" to="(2320,500)"/> <wire from="(810,2360)" to="(810,2560)"/> <wire from="(2000,1150)" to="(2040,1150)"/> <wire from="(2020,3110)" to="(2040,3110)"/> <wire from="(700,1750)" to="(760,1750)"/> <wire from="(650,2980)" to="(710,2980)"/> <wire from="(260,2900)" to="(260,3050)"/> <wire from="(140,1440)" to="(140,1460)"/> <wire from="(2020,1330)" to="(2020,1530)"/> <wire from="(710,2650)" to="(710,2670)"/> <wire from="(2640,3620)" to="(2640,3670)"/> <wire from="(710,2330)" to="(710,2350)"/> <wire from="(710,730)" to="(710,750)"/> <wire from="(760,1530)" to="(780,1530)"/> <wire from="(160,2840)" to="(190,2840)"/> <wire from="(760,3130)" to="(780,3130)"/> <wire from="(1010,180)" to="(1030,180)"/> <wire from="(650,1740)" to="(670,1740)"/> <wire from="(700,2750)" to="(720,2750)"/> <wire from="(2200,440)" to="(2320,440)"/> <wire from="(2050,530)" to="(2320,530)"/> <wire from="(150,600)" to="(170,600)"/> <wire from="(1870,1360)" to="(1890,1360)"/> <wire from="(2150,470)" to="(2320,470)"/> <wire from="(1740,1550)" to="(1760,1550)"/> <wire from="(1220,3590)" to="(1240,3590)"/> <wire from="(920,3300)" to="(930,3300)"/> <wire from="(920,2980)" to="(930,2980)"/> <wire from="(1180,880)" to="(1180,960)"/> <wire from="(640,1360)" to="(640,1560)"/> <wire from="(2080,2330)" to="(2110,2330)"/> <wire from="(1370,2990)" to="(1370,3070)"/> <wire from="(1790,1140)" to="(1890,1140)"/> <wire from="(2020,2920)" to="(2040,2920)"/> <wire from="(1240,920)" to="(1660,920)"/> <wire from="(310,3080)" to="(310,3230)"/> <wire from="(1670,1110)" to="(1670,1310)"/> <wire from="(1950,590)" to="(2320,590)"/> <wire from="(890,2730)" to="(930,2730)"/> <wire from="(150,620)" to="(150,650)"/> <wire from="(2780,3690)" to="(2790,3690)"/> <wire from="(2000,560)" to="(2320,560)"/> <wire from="(760,270)" to="(760,290)"/> <wire from="(120,2290)" to="(150,2290)"/> <wire from="(760,2940)" to="(780,2940)"/> <wire from="(310,240)" to="(340,240)"/> <wire from="(1040,3240)" to="(1370,3240)"/> <wire from="(1740,1010)" to="(2320,1010)"/> <wire from="(1740,2610)" to="(2320,2610)"/> <wire from="(1270,3210)" to="(1270,3330)"/> <wire from="(210,470)" to="(230,470)"/> <wire from="(170,180)" to="(250,180)"/> <wire from="(2020,680)" to="(2040,680)"/> <wire from="(890,270)" to="(890,390)"/> <wire from="(200,1430)" to="(210,1430)"/> <wire from="(920,3110)" to="(930,3110)"/> <wire from="(2280,3480)" to="(2320,3480)"/> <wire from="(1090,390)" to="(1110,390)"/> <wire from="(2080,730)" to="(2110,730)"/> <wire from="(160,950)" to="(160,1010)"/> <wire from="(850,2780)" to="(930,2780)"/> <wire from="(760,1930)" to="(760,2130)"/> <wire from="(1040,3240)" to="(1040,3260)"/> <wire from="(760,3530)" to="(760,3730)"/> <wire from="(2360,3700)" to="(2390,3700)"/> <wire from="(2000,3330)" to="(2040,3330)"/> <wire from="(1550,1340)" to="(1660,1340)"/> <wire from="(120,800)" to="(170,800)"/> <wire from="(160,1480)" to="(210,1480)"/> <wire from="(580,3810)" to="(640,3810)"/> <wire from="(200,1500)" to="(200,1640)"/> <wire from="(1030,350)" to="(1030,380)"/> <wire from="(570,1330)" to="(670,1330)"/> <wire from="(710,3550)" to="(710,3570)"/> <wire from="(1920,1950)" to="(1980,1950)"/> <wire from="(2310,3820)" to="(2760,3820)"/> <wire from="(820,930)" to="(930,930)"/> <wire from="(820,2530)" to="(930,2530)"/> <wire from="(710,1950)" to="(710,1970)"/> <wire from="(2630,3670)" to="(2640,3670)"/> <wire from="(760,2750)" to="(780,2750)"/> <wire from="(580,330)" to="(600,330)"/> <wire from="(2450,3690)" to="(2450,3700)"/> <wire from="(2440,3680)" to="(2440,3700)"/> <wire from="(760,3340)" to="(760,3530)"/> <wire from="(2020,1130)" to="(2040,1130)"/> <wire from="(810,640)" to="(810,760)"/> <wire from="(200,3220)" to="(280,3220)"/> <wire from="(810,2560)" to="(810,2680)"/> <wire from="(2430,3670)" to="(2430,3700)"/> <wire from="(640,3160)" to="(640,3210)"/> <wire from="(920,2920)" to="(930,2920)"/> <wire from="(1940,630)" to="(1940,2390)"/> <wire from="(400,450)" to="(970,450)"/> <wire from="(1270,3600)" to="(1270,3620)"/> <wire from="(2560,3720)" to="(2580,3720)"/> <wire from="(570,1370)" to="(630,1370)"/> <wire from="(580,2020)" to="(640,2020)"/> <wire from="(1900,1530)" to="(1900,1930)"/> <wire from="(460,390)" to="(890,390)"/> <wire from="(710,3360)" to="(710,3380)"/> <wire from="(680,640)" to="(680,720)"/> <wire from="(1690,1330)" to="(1760,1330)"/> <wire from="(150,3220)" to="(180,3220)"/> <wire from="(350,430)" to="(890,430)"/> <wire from="(2380,3620)" to="(2380,3690)"/> <wire from="(690,1530)" to="(710,1530)"/> <wire from="(680,2800)" to="(700,2800)"/> <wire from="(690,3130)" to="(710,3130)"/> <wire from="(1740,2150)" to="(1740,2210)"/> <wire from="(210,490)" to="(210,590)"/> <wire from="(210,410)" to="(230,410)"/> <wire from="(710,1950)" to="(780,1950)"/> <wire from="(710,3550)" to="(780,3550)"/> <wire from="(2700,3620)" to="(2700,3700)"/> <wire from="(1810,630)" to="(1810,2390)"/> <wire from="(780,2790)" to="(780,2840)"/> <wire from="(2080,2720)" to="(2110,2720)"/> <wire from="(810,960)" to="(810,1160)"/> <wire from="(2000,1350)" to="(2040,1350)"/> <wire from="(2020,3310)" to="(2040,3310)"/> <wire from="(640,290)" to="(700,290)"/> <wire from="(1770,1920)" to="(1770,2120)"/> <wire from="(2440,3620)" to="(2440,3670)"/> <wire from="(580,640)" to="(680,640)"/> <wire from="(140,1000)" to="(140,1020)"/> <wire from="(120,1390)" to="(160,1390)"/> <wire from="(760,3730)" to="(760,3810)"/> <wire from="(2050,80)" to="(2050,530)"/> <wire from="(190,2840)" to="(190,2930)"/> <wire from="(1160,1920)" to="(1660,1920)"/> <wire from="(710,2530)" to="(710,2550)"/> <wire from="(710,930)" to="(710,950)"/> <wire from="(120,2040)" to="(150,2040)"/> <wire from="(1160,920)" to="(1240,920)"/> <wire from="(1200,720)" to="(1660,720)"/> <wire from="(690,2940)" to="(710,2940)"/> <wire from="(810,1860)" to="(810,1960)"/> <wire from="(210,430)" to="(210,470)"/> <wire from="(180,1790)" to="(200,1790)"/> <wire from="(1670,80)" to="(1670,710)"/> <wire from="(1870,1560)" to="(1890,1560)"/> <wire from="(200,1500)" to="(210,1500)"/> <wire from="(1270,3510)" to="(1300,3510)"/> <wire from="(710,3360)" to="(780,3360)"/> <wire from="(920,1580)" to="(930,1580)"/> <wire from="(520,2720)" to="(520,2900)"/> <wire from="(680,3520)" to="(680,3720)"/> <wire from="(1790,1340)" to="(1890,1340)"/> <wire from="(1670,1310)" to="(1670,1510)"/> <wire from="(510,310)" to="(550,310)"/> <wire from="(120,570)" to="(150,570)"/> <wire from="(150,2520)" to="(180,2520)"/> <wire from="(890,390)" to="(910,390)"/> <wire from="(1740,2810)" to="(2320,2810)"/> <wire from="(1740,1210)" to="(2320,1210)"/> <wire from="(350,490)" to="(370,490)"/> <wire from="(240,3260)" to="(260,3260)"/> <wire from="(520,2900)" to="(870,2900)"/> <wire from="(740,640)" to="(810,640)"/> <wire from="(120,1290)" to="(200,1290)"/> <wire from="(200,990)" to="(210,990)"/> <wire from="(680,3330)" to="(680,3520)"/> <wire from="(2760,3620)" to="(2760,3700)"/> <wire from="(2080,930)" to="(2110,930)"/> <wire from="(760,2130)" to="(760,2330)"/> <wire from="(160,1040)" to="(210,1040)"/> <wire from="(890,2850)" to="(1080,2850)"/> <wire from="(200,1060)" to="(200,1200)"/> <wire from="(2430,3670)" to="(2440,3670)"/> <wire from="(570,1530)" to="(670,1530)"/> <wire from="(570,3130)" to="(670,3130)"/> <wire from="(710,3750)" to="(710,3770)"/> <wire from="(890,410)" to="(890,430)"/> <wire from="(1920,2150)" to="(1980,2150)"/> <wire from="(820,1130)" to="(930,1130)"/> <wire from="(710,2150)" to="(710,2170)"/> <wire from="(150,2650)" to="(180,2650)"/> <wire from="(1810,630)" to="(1940,630)"/> <wire from="(180,1490)" to="(180,1590)"/> <wire from="(270,540)" to="(290,540)"/> <wire from="(210,370)" to="(210,410)"/> <wire from="(120,1740)" to="(200,1740)"/> <wire from="(2020,1330)" to="(2040,1330)"/> <wire from="(1340,3200)" to="(1370,3200)"/> <wire from="(2000,3530)" to="(2040,3530)"/> <wire from="(2080,3110)" to="(2110,3110)"/> <wire from="(2640,3680)" to="(2660,3680)"/> <wire from="(170,140)" to="(170,150)"/> <wire from="(570,1570)" to="(630,1570)"/> <wire from="(1330,2990)" to="(1370,2990)"/> <wire from="(570,3170)" to="(630,3170)"/> <wire from="(650,1970)" to="(710,1970)"/> <wire from="(650,3570)" to="(710,3570)"/> <wire from="(2020,1530)" to="(2020,1930)"/> <wire from="(120,240)" to="(230,240)"/> <wire from="(720,1740)" to="(760,1740)"/> <wire from="(720,1690)" to="(1010,1690)"/> <wire from="(1610,1940)" to="(1610,2720)"/> <wire from="(570,2940)" to="(670,2940)"/> <wire from="(140,110)" to="(140,140)"/> <wire from="(890,2650)" to="(890,2730)"/> <wire from="(1690,1530)" to="(1760,1530)"/> <wire from="(150,2460)" to="(180,2460)"/> <wire from="(680,2950)" to="(680,3120)"/> <wire from="(1740,750)" to="(1740,810)"/> <wire from="(1740,2350)" to="(1740,2410)"/> <wire from="(1080,1690)" to="(1280,1690)"/> <wire from="(260,2900)" to="(280,2900)"/> <wire from="(780,2770)" to="(810,2770)"/> <wire from="(710,2150)" to="(780,2150)"/> <wire from="(710,3750)" to="(780,3750)"/> <wire from="(2500,3620)" to="(2500,3700)"/> <wire from="(920,690)" to="(930,690)"/> <wire from="(620,2890)" to="(890,2890)"/> <wire from="(2820,3620)" to="(2820,3700)"/> <wire from="(2080,2920)" to="(2110,2920)"/> <wire from="(1320,1320)" to="(1490,1320)"/> <wire from="(810,1160)" to="(810,1360)"/> <wire from="(670,2770)" to="(720,2770)"/> <wire from="(2000,1550)" to="(2040,1550)"/> <wire from="(2020,3510)" to="(2040,3510)"/> <wire from="(680,3720)" to="(680,3850)"/> <wire from="(570,2980)" to="(630,2980)"/> <wire from="(760,290)" to="(820,290)"/> <wire from="(650,3380)" to="(710,3380)"/> <wire from="(1430,630)" to="(1430,2810)"/> <wire from="(1770,2120)" to="(1770,2320)"/> <wire from="(1900,1930)" to="(1900,2130)"/> <wire from="(120,950)" to="(160,950)"/> <wire from="(150,570)" to="(150,600)"/> <wire from="(710,1130)" to="(710,1150)"/> <wire from="(120,2240)" to="(150,2240)"/> <wire from="(760,1930)" to="(780,1930)"/> <wire from="(1740,3200)" to="(2320,3200)"/> <wire from="(150,2590)" to="(180,2590)"/> <wire from="(760,3530)" to="(780,3530)"/> <wire from="(1040,2870)" to="(1370,2870)"/> <wire from="(290,500)" to="(310,500)"/> <wire from="(1580,1540)" to="(1660,1540)"/> <wire from="(1490,940)" to="(1490,1320)"/> <wire from="(200,1060)" to="(210,1060)"/> <wire from="(1270,3390)" to="(1300,3390)"/> <wire from="(1740,1950)" to="(1760,1950)"/> <wire from="(690,270)" to="(700,270)"/> <wire from="(2080,1130)" to="(2110,1130)"/> <wire from="(680,2120)" to="(680,2320)"/> <wire from="(1790,1540)" to="(1890,1540)"/> <wire from="(120,750)" to="(170,750)"/> <wire from="(1160,2520)" to="(1580,2520)"/> <wire from="(1040,2870)" to="(1040,2900)"/> <wire from="(580,3850)" to="(680,3850)"/> <wire from="(1280,2850)" to="(1280,2980)"/> <wire from="(1160,3380)" to="(1220,3380)"/> <wire from="(1790,2540)" to="(1980,2540)"/> <wire from="(1740,3010)" to="(2320,3010)"/> <wire from="(120,2690)" to="(150,2690)"/> <wire from="(150,2400)" to="(180,2400)"/> <wire from="(890,270)" to="(910,270)"/> <wire from="(760,3340)" to="(780,3340)"/> <wire from="(2310,3770)" to="(2560,3770)"/> <wire from="(1040,3830)" to="(1040,3880)"/> <wire from="(1740,1410)" to="(2320,1410)"/> <wire from="(230,1530)" to="(250,1530)"/> <wire from="(320,2900)" to="(340,2900)"/> <wire from="(120,850)" to="(200,850)"/> <wire from="(920,630)" to="(930,630)"/> <wire from="(2560,3620)" to="(2560,3700)"/> <wire from="(920,3190)" to="(930,3190)"/> <wire from="(1370,3200)" to="(1370,3240)"/> <wire from="(860,1750)" to="(1040,1750)"/> <wire from="(760,730)" to="(760,930)"/> <wire from="(2580,3690)" to="(2600,3690)"/> <wire from="(760,2330)" to="(760,2530)"/> <wire from="(640,2020)" to="(640,2160)"/> <wire from="(530,330)" to="(580,330)"/> <wire from="(580,690)" to="(640,690)"/> <wire from="(580,300)" to="(580,330)"/> <wire from="(710,2670)" to="(710,2690)"/> <wire from="(1920,750)" to="(1980,750)"/> <wire from="(1920,2350)" to="(1980,2350)"/> <wire from="(820,1330)" to="(930,1330)"/> <wire from="(710,2350)" to="(710,2370)"/> <wire from="(710,750)" to="(710,770)"/> <wire from="(1780,80)" to="(1780,520)"/> <wire from="(890,2850)" to="(890,2890)"/> <wire from="(650,1760)" to="(670,1760)"/> <wire from="(180,1050)" to="(180,1150)"/> <wire from="(1160,1520)" to="(1360,1520)"/> <wire from="(150,620)" to="(170,620)"/> <wire from="(2020,1530)" to="(2040,1530)"/> <wire from="(1270,3330)" to="(1300,3330)"/> <wire from="(740,3850)" to="(810,3850)"/> <wire from="(820,2650)" to="(890,2650)"/> <wire from="(1320,3390)" to="(1340,3390)"/> <wire from="(920,3320)" to="(930,3320)"/> <wire from="(920,3000)" to="(930,3000)"/> <wire from="(310,3230)" to="(310,3290)"/> <wire from="(2100,80)" to="(2100,500)"/> <wire from="(160,1480)" to="(160,1540)"/> <wire from="(400,210)" to="(970,210)"/> <wire from="(2080,3310)" to="(2110,3310)"/> <wire from="(2440,3680)" to="(2460,3680)"/> <wire from="(650,2170)" to="(710,2170)"/> <wire from="(650,3770)" to="(710,3770)"/> <wire from="(610,3730)" to="(670,3730)"/> <wire from="(680,2860)" to="(720,2860)"/> <wire from="(260,3050)" to="(260,3200)"/> <wire from="(120,1990)" to="(150,1990)"/> <wire from="(690,3530)" to="(710,3530)"/> <wire from="(1370,2820)" to="(1370,2870)"/> <wire from="(1740,950)" to="(1740,1010)"/> <wire from="(690,1930)" to="(710,1930)"/> <wire from="(1740,2550)" to="(1740,2610)"/> <wire from="(1080,2850)" to="(1280,2850)"/> <wire from="(520,2720)" to="(870,2720)"/> <wire from="(210,490)" to="(230,490)"/> <wire from="(710,2350)" to="(780,2350)"/> <wire from="(710,750)" to="(780,750)"/> <wire from="(710,2670)" to="(780,2670)"/> <wire from="(140,1460)" to="(210,1460)"/> <wire from="(920,3770)" to="(930,3770)"/> <wire from="(1020,350)" to="(1030,350)"/> <wire from="(2620,3620)" to="(2620,3700)"/> <wire from="(2280,3500)" to="(2320,3500)"/> <wire from="(370,230)" to="(890,230)"/> <wire from="(1160,2080)" to="(1180,2080)"/> <wire from="(120,300)" to="(310,300)"/> <wire from="(810,1360)" to="(810,1560)"/> <wire from="(120,1770)" to="(180,1770)"/> <wire from="(1670,1510)" to="(1670,1910)"/> <wire from="(1550,2320)" to="(1660,2320)"/> <wire from="(2650,3690)" to="(2680,3690)"/> <wire from="(680,2450)" to="(680,2540)"/> <wire from="(1220,3310)" to="(1220,3380)"/> <wire from="(1770,2320)" to="(1770,2520)"/> <wire from="(1770,720)" to="(1770,920)"/> <wire from="(1900,2130)" to="(1900,2330)"/> <wire from="(2020,1930)" to="(2020,2130)"/> <wire from="(890,230)" to="(890,250)"/> <wire from="(710,1330)" to="(710,1350)"/> <wire from="(760,2130)" to="(780,2130)"/> <wire from="(690,3340)" to="(710,3340)"/> <wire from="(1740,3400)" to="(2320,3400)"/> <wire from="(760,3730)" to="(780,3730)"/> <wire from="(1260,3600)" to="(1270,3600)"/> <wire from="(1040,3070)" to="(1370,3070)"/> <wire from="(120,1490)" to="(140,1490)"/> <wire from="(1460,1120)" to="(1660,1120)"/> <wire from="(1870,1960)" to="(1890,1960)"/> <wire from="(1360,80)" to="(1360,1520)"/> <wire from="(200,2920)" to="(280,2920)"/> <wire from="(760,2530)" to="(760,2650)"/> <wire from="(1270,3620)" to="(2260,3620)"/> <wire from="(1740,2150)" to="(1760,2150)"/> <wire from="(810,270)" to="(820,270)"/> <wire from="(1160,3120)" to="(1760,3120)"/> <wire from="(240,3290)" to="(310,3290)"/> <wire from="(680,720)" to="(680,920)"/> <wire from="(2080,1330)" to="(2110,1330)"/> <wire from="(640,3560)" to="(640,3760)"/> <wire from="(1330,3520)" to="(1760,3520)"/> <wire from="(1040,3070)" to="(1040,3090)"/> <wire from="(2260,3520)" to="(2260,3620)"/> <wire from="(810,1560)" to="(810,1570)"/> <wire from="(1160,720)" to="(1200,720)"/> <wire from="(980,520)" to="(1040,520)"/> <wire from="(950,260)" to="(1050,260)"/> <wire from="(580,2450)" to="(680,2450)"/> <wire from="(1790,2740)" to="(1980,2740)"/> <wire from="(120,650)" to="(150,650)"/> <wire from="(150,2920)" to="(180,2920)"/> <wire from="(700,2840)" to="(720,2840)"/> <wire from="(1740,1610)" to="(2320,1610)"/> <wire from="(230,1090)" to="(250,1090)"/> <wire from="(2680,3620)" to="(2680,3690)"/> <wire from="(210,430)" to="(230,430)"/> <wire from="(1030,180)" to="(1030,240)"/> <wire from="(2360,3620)" to="(2360,3700)"/> <wire from="(920,1790)" to="(930,1790)"/> <wire from="(1160,2930)" to="(1760,2930)"/> <wire from="(2610,3680)" to="(2610,3700)"/> <wire from="(1430,630)" to="(1710,630)"/> <wire from="(1280,80)" to="(1280,1120)"/> <wire from="(760,930)" to="(760,1130)"/> <wire from="(2380,3690)" to="(2400,3690)"/> <wire from="(570,1930)" to="(670,1930)"/> <wire from="(570,3530)" to="(670,3530)"/> <wire from="(1920,950)" to="(1980,950)"/> <wire from="(270,600)" to="(310,600)"/> <wire from="(820,3130)" to="(930,3130)"/> <wire from="(820,1530)" to="(930,1530)"/> <wire from="(710,2550)" to="(710,2570)"/> <wire from="(710,950)" to="(710,970)"/> <wire from="(200,220)" to="(230,220)"/> <wire from="(1160,2160)" to="(1170,2160)"/> <wire from="(2280,3480)" to="(2280,3490)"/> <wire from="(1460,740)" to="(1660,740)"/> <wire from="(1270,3210)" to="(1300,3210)"/> <wire from="(1740,490)" to="(1760,490)"/> <wire from="(680,1880)" to="(680,1940)"/> <wire from="(640,3760)" to="(640,3810)"/> <wire from="(160,1040)" to="(160,1100)"/> <wire from="(680,1940)" to="(680,2120)"/> <wire from="(2080,3510)" to="(2110,3510)"/> <wire from="(500,1830)" to="(500,3880)"/> <wire from="(570,1970)" to="(630,1970)"/> <wire from="(650,770)" to="(710,770)"/> <wire from="(570,3570)" to="(630,3570)"/> <wire from="(650,2370)" to="(710,2370)"/> <wire from="(650,2690)" to="(710,2690)"/> <wire from="(140,1470)" to="(140,1490)"/> <wire from="(570,3340)" to="(670,3340)"/> <wire from="(780,2750)" to="(780,2770)"/> <wire from="(120,1540)" to="(160,1540)"/> <wire from="(820,2940)" to="(930,2940)"/> <wire from="(120,2190)" to="(150,2190)"/> <wire from="(690,3730)" to="(710,3730)"/> <wire from="(1690,1930)" to="(1760,1930)"/> <wire from="(760,2840)" to="(780,2840)"/> <wire from="(890,410)" to="(910,410)"/> <wire from="(640,2990)" to="(640,3160)"/> <wire from="(1740,1150)" to="(1740,1210)"/> <wire from="(690,2130)" to="(710,2130)"/> <wire from="(1740,2750)" to="(1740,2810)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(1650,2140)" to="(1660,2140)"/> <wire from="(710,950)" to="(780,950)"/> <wire from="(710,2550)" to="(780,2550)"/> <wire from="(2420,3620)" to="(2420,3700)"/> <wire from="(140,1020)" to="(210,1020)"/> <wire from="(1430,2810)" to="(1710,2810)"/> <wire from="(2450,3690)" to="(2480,3690)"/> <wire from="(2000,1950)" to="(2040,1950)"/> <wire from="(200,140)" to="(250,140)"/> <wire from="(1010,2830)" to="(1300,2830)"/> <wire from="(570,3380)" to="(630,3380)"/> <wire from="(640,690)" to="(640,780)"/> <wire from="(1200,80)" to="(1200,720)"/> <wire from="(760,1900)" to="(760,1930)"/> <wire from="(1770,920)" to="(1770,1120)"/> <wire from="(1770,2520)" to="(1770,2720)"/> <wire from="(580,1880)" to="(680,1880)"/> <wire from="(1900,730)" to="(1900,930)"/> <wire from="(2020,2130)" to="(2020,2330)"/> <wire from="(710,3130)" to="(710,3150)"/> <wire from="(1790,3130)" to="(1980,3130)"/> <wire from="(710,1530)" to="(710,1550)"/> <wire from="(810,3160)" to="(810,3370)"/> <wire from="(760,2330)" to="(780,2330)"/> <wire from="(760,2650)" to="(780,2650)"/> <wire from="(700,2800)" to="(700,2840)"/> <wire from="(1160,3190)" to="(1300,3190)"/> <wire from="(760,730)" to="(780,730)"/> <wire from="(290,580)" to="(310,580)"/> <wire from="(1220,3380)" to="(1220,3570)"/> <wire from="(120,1050)" to="(140,1050)"/> <wire from="(1870,2160)" to="(1890,2160)"/> <wire from="(810,2970)" to="(810,3160)"/> <wire from="(1740,750)" to="(1760,750)"/> <wire from="(1740,2350)" to="(1760,2350)"/> <wire from="(140,1470)" to="(210,1470)"/> <wire from="(920,1860)" to="(930,1860)"/> <wire from="(1790,1940)" to="(1890,1940)"/> <wire from="(460,320)" to="(460,390)"/> <wire from="(680,920)" to="(680,1120)"/> <wire from="(640,2160)" to="(640,2360)"/> <wire from="(2080,1530)" to="(2110,1530)"/> <wire from="(180,1770)" to="(180,1780)"/> <wire from="(1580,1540)" to="(1580,2520)"/> <wire from="(1670,1910)" to="(1670,2110)"/> <wire from="(720,1760)" to="(760,1760)"/> <wire from="(170,160)" to="(170,180)"/> <wire from="(1160,3780)" to="(1220,3780)"/> <wire from="(710,2940)" to="(710,2960)"/> <wire from="(1790,2940)" to="(1980,2940)"/> <wire from="(2480,3620)" to="(2480,3690)"/> <wire from="(200,610)" to="(230,610)"/> <wire from="(1220,3310)" to="(1300,3310)"/> <wire from="(2150,80)" to="(2150,470)"/> <wire from="(1160,3000)" to="(1300,3000)"/> <wire from="(270,370)" to="(290,370)"/> <wire from="(780,2790)" to="(810,2790)"/> <wire from="(2660,3700)" to="(2700,3700)"/> <wire from="(2410,3680)" to="(2410,3700)"/> <wire from="(1280,2980)" to="(1300,2980)"/> <wire from="(2800,3620)" to="(2800,3700)"/> <wire from="(760,1130)" to="(760,1330)"/> <wire from="(120,1590)" to="(180,1590)"/> <wire from="(1330,2820)" to="(1370,2820)"/> <wire from="(1410,2120)" to="(1660,2120)"/> <wire from="(190,2930)" to="(190,3080)"/> <wire from="(570,2130)" to="(670,2130)"/> <wire from="(1900,80)" to="(1900,730)"/> <wire from="(1920,1150)" to="(1980,1150)"/> <wire from="(270,480)" to="(310,480)"/> <wire from="(710,1150)" to="(710,1170)"/> <wire from="(120,1940)" to="(150,1940)"/> <wire from="(920,510)" to="(940,510)"/> <wire from="(1080,2800)" to="(1080,2850)"/> <wire from="(1740,3140)" to="(1740,3200)"/> <wire from="(260,3050)" to="(280,3050)"/> <wire from="(1580,2520)" to="(1660,2520)"/> <wire from="(2020,1930)" to="(2040,1930)"/> <wire from="(1040,520)" to="(1040,570)"/> <wire from="(1490,1320)" to="(1660,1320)"/> <wire from="(120,2750)" to="(240,2750)"/> <wire from="(160,1450)" to="(210,1450)"/> <wire from="(570,2170)" to="(630,2170)"/> <wire from="(570,3770)" to="(630,3770)"/> <wire from="(650,970)" to="(710,970)"/> <wire from="(650,2570)" to="(710,2570)"/> <wire from="(950,400)" to="(1050,400)"/> <wire from="(140,1030)" to="(140,1050)"/> <wire from="(2020,2520)" to="(2020,2720)"/> <wire from="(1610,1940)" to="(1660,1940)"/> <wire from="(120,1100)" to="(160,1100)"/> <wire from="(1690,2130)" to="(1760,2130)"/> <wire from="(180,1490)" to="(210,1490)"/> <wire from="(2020,2330)" to="(2020,2520)"/> <wire from="(760,690)" to="(760,730)"/> <wire from="(580,300)" to="(600,300)"/> <wire from="(690,730)" to="(710,730)"/> <wire from="(1740,1350)" to="(1740,1410)"/> <wire from="(690,2330)" to="(710,2330)"/> <wire from="(690,2650)" to="(710,2650)"/> <wire from="(1740,2950)" to="(1740,3010)"/> <wire from="(1460,740)" to="(1460,1120)"/> <wire from="(1650,2340)" to="(1660,2340)"/> <wire from="(290,540)" to="(290,580)"/> <wire from="(120,1440)" to="(140,1440)"/> <wire from="(710,1150)" to="(780,1150)"/> <wire from="(1160,1320)" to="(1320,1320)"/> <wire from="(120,1830)" to="(200,1830)"/> <wire from="(1360,1520)" to="(1520,1520)"/> <wire from="(310,240)" to="(310,300)"/> <wire from="(1160,880)" to="(1180,880)"/> <wire from="(2000,2150)" to="(2040,2150)"/> <wire from="(1270,3440)" to="(1270,3510)"/> <wire from="(1770,1120)" to="(1770,1320)"/> <wire from="(1770,2720)" to="(1770,2920)"/> <wire from="(2600,3620)" to="(2600,3680)"/> <wire from="(1900,930)" to="(1900,1130)"/> <wire from="(2020,730)" to="(2020,930)"/> <wire from="(550,290)" to="(550,310)"/> <wire from="(860,1750)" to="(860,1830)"/> <wire from="(1790,3330)" to="(1980,3330)"/> <wire from="(760,2530)" to="(780,2530)"/> <wire from="(640,1980)" to="(640,2020)"/> <wire from="(970,180)" to="(990,180)"/> <wire from="(1030,240)" to="(1050,240)"/> <wire from="(760,930)" to="(780,930)"/> <wire from="(740,270)" to="(760,270)"/> <wire from="(320,3050)" to="(340,3050)"/> <wire from="(1270,3440)" to="(1340,3440)"/> <wire from="(1870,760)" to="(1890,760)"/> <wire from="(1870,2360)" to="(1890,2360)"/> <wire from="(120,1640)" to="(200,1640)"/> <wire from="(1280,1690)" to="(1280,2810)"/> <wire from="(1740,950)" to="(1760,950)"/> <wire from="(1740,2550)" to="(1760,2550)"/> <wire from="(140,1030)" to="(210,1030)"/> <wire from="(260,3200)" to="(260,3260)"/> <wire from="(1790,2140)" to="(1890,2140)"/> <wire from="(1490,940)" to="(1660,940)"/> <wire from="(680,1120)" to="(680,1320)"/> <wire from="(640,2360)" to="(640,2560)"/> <wire from="(120,1340)" to="(180,1340)"/> <wire from="(2760,3700)" to="(2780,3700)"/> <wire from="(1010,2800)" to="(1010,2830)"/> <wire from="(1670,2110)" to="(1670,2310)"/> <wire from="(170,140)" to="(200,140)"/> <wire from="(1740,2010)" to="(2320,2010)"/> <wire from="(500,3880)" to="(1040,3880)"/> <wire from="(920,590)" to="(930,590)"/> <wire from="(920,3150)" to="(930,3150)"/> <wire from="(870,2720)" to="(870,2900)"/> <wire from="(2280,3520)" to="(2320,3520)"/> <wire from="(2460,3700)" to="(2500,3700)"/> <comp lib="0" loc="(150,2290)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(150,2240)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp lib="2" loc="(1790,2940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1360,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO4"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(735,1781)" name="Text"> <a name="text" val="FVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1750,3540)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(120,950)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(1870,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(570,3340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(120,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV0"/> </comp> <comp lib="1" loc="(1340,3200)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(690,2650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(580,2020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp loc="(860,280)" name="D-latch"/> <comp lib="1" loc="(950,260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,2570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/1"/> </comp> <comp lib="6" loc="(841,3522)" name="Text"> <a name="text" val="FV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(690,930)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2110,3110)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(570,2570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(120,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp loc="(2080,3320)" name="D-latch"/> <comp lib="0" loc="(2200,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(920,1810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(570,2980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(1670,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(920,2960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="1" loc="(370,230)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,3200)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(690,2330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(610,3730)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(970,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(2000,1550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(980,520)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(841,2523)" name="Text"> <a name="text" val="TV3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,3130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="2" loc="(1690,1130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(570,3210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W0'"/> </comp> <comp lib="4" loc="(820,2130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(560,260)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1650,2540)" name="Constant"/> <comp lib="0" loc="(250,140)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(170,800)" name="Tunnel"> <a name="label" val="l1/32"/> </comp> <comp lib="1" loc="(1330,2990)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(270,480)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1260,3600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="right"/> </comp> <comp loc="(2080,940)" name="D-latch"/> <comp lib="4" loc="(820,2650)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(908,2773)" name="Text"> <a name="text" val="0/TV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1870,1960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp loc="(2080,3520)" name="D-latch"/> <comp lib="6" loc="(841,2323)" name="Text"> <a name="text" val="TV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1872,704)" name="Text"> <a name="text" val="DB/PAR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(350,420)" name="D-latch"/> <comp lib="0" loc="(240,2750)" name="Tunnel"> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(2310,3820)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="4"/> <a name="label" val="OV DATA"/> </comp> <comp lib="0" loc="(1870,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(620,2770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,2140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1320,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO3"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(650,970)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(2080,2730)" name="D-latch"/> <comp lib="0" loc="(120,1940)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="6" loc="(841,3124)" name="Text"> <a name="text" val="NTV"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(240,2450)" name="Tunnel"> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(150,2090)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(2040,680)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1770,560)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,3570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(1950,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(920,3300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="2" loc="(1790,1940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2080,3120)" name="D-latch"/> <comp lib="4" loc="(820,1130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(841,3333)" name="Text"> <a name="text" val="FV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1410,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1340,3440)" name="Tunnel"> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(1790,2740)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2000,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(580,3850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(340,2900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(841,2935)" name="Text"> <a name="text" val="NTH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(670,2770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1790,740)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1090,250)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,2130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="2" loc="(1790,2140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(986,1682)" name="Text"> <a name="text" val="THZB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(2000,2940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(2080,2340)" name="D-latch"/> <comp loc="(270,230)" name="D-latch"/> <comp lib="4" loc="(820,2530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,2190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="1" loc="(220,2390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1240,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO1"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2080,2530)" name="D-latch"/> <comp lib="0" loc="(120,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(920,1860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(750,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="2" loc="(1790,1140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1920,1150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2000,750)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(920,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(580,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(740,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="2" loc="(1690,1330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(240,1810)" name="Tunnel"> <a name="width" val="4"/> <a name="label" val="OV DATA"/> </comp> <comp lib="0" loc="(570,1930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(750,1860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="6" loc="(648,417)" name="Text"> <a name="text" val="W6.2 LOADER"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="0" loc="(190,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(240,2640)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp loc="(1160,3260)" name="PAR_3BIT_COUNTER"/> <comp lib="0" loc="(580,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="1" loc="(650,2570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,1640)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(2000,2740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,2240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(340,3050)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1295,3476)" name="Text"> <a name="text" val="/BLNK"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(845,1324)" name="Text"> <a name="text" val="TH3"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,2530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(650,3770)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(150,2040)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(570,1970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="1" loc="(690,3730)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(1185,3774)" name="Text"> <a name="text" val="/FVO2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,730)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1650,2140)" name="Constant"/> <comp lib="0" loc="(120,1000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(120,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(150,2190)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp lib="1" loc="(2000,1350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1039,1742)" name="Text"> <a name="text" val="TVIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1097,2818)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(920,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(2080,1540)" name="D-latch"/> <comp lib="0" loc="(580,3810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="6" loc="(1548,664)" name="Text"> <a name="text" val="ATTRIBUTE ADDRESS"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp lib="1" loc="(220,2580)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(150,1940)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(570,1530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(570,3530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(170,750)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(270,600)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1830)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV3"/> </comp> <comp lib="6" loc="(1791,3480)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(920,630)" name="Constant"/> <comp lib="0" loc="(920,2980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(2110,3310)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1650,2340)" name="Constant"/> <comp lib="2" loc="(1790,1540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(200,610)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(920,2920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(570,2170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(150,140)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(650,3380)" name="Controlled Buffer"/> <comp lib="2" loc="(1690,1930)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1010,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(920,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(120,1340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(580,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(2110,1330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1160,2900)" name="PAR_1BIT_COUNTER"/> <comp lib="2" loc="(1790,1340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2000,3530)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(600,330)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp lib="6" loc="(847,1123)" name="Text"> <a name="text" val="TH2"/> </comp> <comp lib="2" loc="(1790,2540)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(230,1070)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(120,1770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV1"/> </comp> <comp lib="0" loc="(240,2580)" name="Tunnel"> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(570,2370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp loc="(1160,1780)" name="PAR_5BIT_COUNTER"/> <comp lib="0" loc="(120,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="1" loc="(690,1530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2580,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="2" loc="(1920,1950)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2110,3510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1186,3575)" name="Text"> <a name="text" val="/FVO1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(150,1990)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="6" loc="(1854,658)" name="Text"> <a name="text" val="$2007W"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="0" loc="(370,490)" name="Tunnel"> <a name="label" val="TVSTEP"/> </comp> <comp lib="4" loc="(820,930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2250,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1009,2890)" name="Text"> <a name="text" val="NTHIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(2000,2150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1900,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(740,3850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="1" loc="(220,2510)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1183,2993)" name="Text"> <a name="text" val="NTH0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(2000,2540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2770,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> </comp> <comp lib="1" loc="(690,3340)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2000,1950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,3570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(840,3723)" name="Text"> <a name="text" val="FV2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(920,3280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="4" loc="(820,3530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1110,250)" name="Tunnel"> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(2110,2130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(350,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(150,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(250,180)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(220,2450)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(640,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="label" val="11"/> </comp> <comp lib="0" loc="(570,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp loc="(2080,1140)" name="D-latch"/> <comp lib="1" loc="(650,2370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(1870,2360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="6" loc="(840,2643)" name="Text"> <a name="text" val="TV4"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,2330)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(250,1090)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> </comp> <comp lib="6" loc="(1247,3219)" name="Text"> <a name="text" val="/BLNK"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1690,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1690,2530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(1099,1678)" name="Text"> <a name="text" val="THZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(1920,1350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(350,490)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(845,924)" name="Text"> <a name="text" val="TH1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(200,3220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1690,2730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(920,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(920,3190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(920,3320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(120,1540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp lib="0" loc="(570,2940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="6" loc="(845,724)" name="Text"> <a name="text" val="TH0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2050,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(787,2857)" name="Text"> <a name="text" val="/TVZ''"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(2080,1340)" name="D-latch"/> <comp loc="(2080,740)" name="D-latch"/> <comp lib="0" loc="(1740,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(220,2640)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1110,390)" name="Tunnel"> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(680,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(120,570)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp lib="0" loc="(570,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="4" loc="(820,2330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(240,2510)" name="Tunnel"> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(920,3150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(460,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(650,770)" name="Controlled Buffer"/> <comp lib="4" loc="(820,3340)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(2000,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(570,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(570,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(150,2920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(2000,2350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(120,1050)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="4" loc="(320,2900)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2310,3720)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="PPU DATA"/> </comp> <comp lib="0" loc="(650,1760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="2" loc="(1920,2150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1020,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(920,1580)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(1090,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(370,590)" name="Tunnel"> <a name="label" val="THSTEP"/> </comp> <comp lib="4" loc="(320,3200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(160,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(570,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(570,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(820,1530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(240,3290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(920,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="1" loc="(2000,3130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2000,3330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1790,3130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(650,2170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,900)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(120,2440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/2"/> </comp> <comp lib="1" loc="(650,1970)" name="Controlled Buffer"/> <comp lib="0" loc="(920,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(650,2980)" name="Controlled Buffer"/> <comp lib="0" loc="(270,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(1920,2350)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1920,1550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(690,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(987,2820)" name="Text"> <a name="text" val="TVZB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(650,1740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(920,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(570,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(920,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(760,2760)" name="D-latch"/> <comp lib="1" loc="(850,2780)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,1390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(570,2330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="6" loc="(1185,3371)" name="Text"> <a name="text" val="/FVO0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,2380)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp loc="(2080,2140)" name="D-latch"/> <comp lib="1" loc="(690,3130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,2690)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,1170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2000,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(820,730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2110,2720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1650,2740)" name="Constant"/> <comp lib="6" loc="(1039,511)" name="Text"> <a name="text" val="THIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(760,2850)" name="D-latch"/> <comp lib="0" loc="(270,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(2080,2930)" name="D-latch"/> <comp lib="6" loc="(1012,3081)" name="Text"> <a name="text" val="NTVIN"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,2630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/2"/> </comp> <comp lib="0" loc="(240,2690)" name="Tunnel"> <a name="label" val="DBE"/> </comp> <comp loc="(1160,3090)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(2110,2920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> </comp> <comp lib="6" loc="(1260,2805)" name="Text"> <a name="text" val="THZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(750,1900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(2110,2520)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(1330,3520)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(690,1930)" name="Controlled Buffer"/> <comp lib="0" loc="(120,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1870,2160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(2150,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(920,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="1" loc="(200,2920)" name="Controlled Buffer"/> <comp lib="0" loc="(570,1170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="4" loc="(820,1330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2110,930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(2080,1940)" name="D-latch"/> <comp lib="0" loc="(120,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TSTEP"/> </comp> <comp lib="6" loc="(1182,3183)" name="Text"> <a name="text" val="NTV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,2750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(150,3220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(920,3000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(690,2530)" name="Controlled Buffer"/> <comp lib="1" loc="(950,400)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(580,1880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="6" loc="(1261,2978)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> </comp> <comp lib="0" loc="(120,2690)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="1" loc="(690,730)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(690,1130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1920,950)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(570,3380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(120,1490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(570,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="1" loc="(700,1750)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(570,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="2" loc="(1790,940)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(820,1930)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,2500)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/1"/> </comp> <comp lib="1" loc="(1300,3390)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="6" loc="(583,2745)" name="Text"> <a name="text" val="TV NULLER"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="6" loc="(1647,2651)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="4" loc="(820,3130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="1" loc="(510,310)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(170,650)" name="Tunnel"> <a name="label" val="H0''"/> </comp> <comp lib="0" loc="(120,2290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp loc="(270,420)" name="D-latch"/> <comp lib="0" loc="(230,1510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="2" loc="(1690,2130)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(240,3260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="1" loc="(690,3530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1780,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(1690,930)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(840,1921)" name="Text"> <a name="text" val="TV0"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2110,1530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(841,2124)" name="Text"> <a name="text" val="TV1"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1340,3390)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="1" loc="(1340,3320)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1280,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2260,3520)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(2110,1930)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(120,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(570,1570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(920,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(810,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(200,3070)" name="Controlled Buffer"/> <comp lib="0" loc="(570,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(650,1370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(250,1530)" name="Tunnel"> <a name="width" val="8"/> <a name="label" val="OBJ DATA"/> </comp> <comp lib="1" loc="(650,1570)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1200,80)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO0"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1870,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(1330,2820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(843,1524)" name="Text"> <a name="text" val="TH4"/> </comp> <comp lib="4" loc="(820,2940)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(220,1810)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(120,1200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="2" loc="(1790,3330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2880,330)" name="PATTERN_ADDRESS_GENERATOR"/> <comp lib="2" loc="(1690,1530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(740,3810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(1870,1560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(2100,80)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(240,2390)" name="Tunnel"> <a name="label" val="/W0'"/> </comp> <comp loc="(680,2850)" name="D-latch"/> <comp lib="0" loc="(2380,3720)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> </comp> <comp lib="0" loc="(1870,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="6" loc="(594,2873)" name="Text"> <a name="text" val="TVZ"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(372,425)" name="Text"> <a name="text" val="E/EV''"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="1" loc="(650,3170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(610,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(1790,2340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(650,2690)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2110,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(1920,750)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(1690,2330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(120,2040)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp lib="1" loc="(790,1750)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(690,2130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(1790,3530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="4" loc="(740,270)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(820,3730)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(150,2140)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp loc="(1160,580)" name="PAR_5BIT_COUNTER"/> <comp lib="6" loc="(1747,703)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2300,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0''"/> </comp> <comp lib="6" loc="(1646,699)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(690,1330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(320,3050)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(690,2940)" name="Controlled Buffer"/> <comp lib="0" loc="(920,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="6" loc="(1058,186)" name="Text"> <a name="text" val="PCLK2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2310,3770)" name="Tunnel"> <a name="facing" val="east"/> <a name="width" val="8"/> <a name="label" val="OBJ DATA"/> </comp> </circuit> <circuit name="PATTERN_ADDRESS_GENERATOR"> <a name="circuit" val="PATTERN_ADDRESS_GENERATOR"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M80,51 Q84,61 88,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#9290ff" height="3290" stroke="#000000" stroke-width="2" width="560" x="50" y="50"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="430" y="3330">7</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="291" y="3330">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="83" y="226">O8/16</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="209" y="3329">6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3206">/FVO0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="76" y="255">/SH2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="88" y="196">OBSEL</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="85" y="2735">PAD10</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="79" y="1736">PAD5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="549" y="3330">3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="409" y="3330">6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="315">#F/NT</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="190" y="3329">5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="361" y="3309">OBJ DATA</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="83" y="735">PAD1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="489" y="3330">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="1335">PAD4</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="84" y="285">PAR/O</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="369" y="3330">4</text> <polyline fill="none" points="57,73 57,66" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="349" y="3330">3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="936">PAD2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3247">/FVO2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="130" y="3329">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="77" y="135">/H1'</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="1135">PAD3</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="1936">PAD6</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="86" y="3126">PAD12</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="89" y="165">BGSEL</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="508" y="3330">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2335">PAD8</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2136">PAD7</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="73" y="106">H0''</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="76">PCLK</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="90" y="3329">0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="519" y="3309">OBJ V INDEX</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="229" y="3329">7</text> <text font-family="SansSerif" font-size="32" font-weight="bold" text-anchor="middle" x="338" y="1557">PATTERN_ADDRESS</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="165" y="3308">PPU DATA</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="3227">/FVO1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="86" y="2926">PAD11</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="529" y="3330">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="309" y="3330">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="109" y="3329">1</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="390" y="3330">5</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="169" y="3329">4</text> <text font-family="SansSerif" font-size="32" font-weight="bold" text-anchor="middle" x="322" y="1617">GENERATOR</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="82" y="536">PAD0</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="330" y="3330">2</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="80" y="2536">PAD9</text> <text font-family="SansSerif" font-size="16" text-anchor="middle" x="150" y="3329">3</text> <polyline fill="none" points="51,65 57,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 57,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="130,40" width="8" x="46" y="66"/> <circ-port height="8" pin="130,100" width="8" x="46" y="126"/> <circ-port height="8" pin="130,150" width="8" x="46" y="276"/> <circ-port height="8" pin="130,200" width="8" x="46" y="306"/> <circ-port height="8" pin="130,260" width="8" x="46" y="96"/> <circ-port height="8" pin="130,320" width="8" x="46" y="246"/> <circ-port height="8" pin="130,390" width="8" x="46" y="3196"/> <circ-port height="8" pin="130,450" width="8" x="486" y="3336"/> <circ-port height="8" pin="130,490" width="8" x="46" y="3216"/> <circ-port height="8" pin="130,550" width="8" x="506" y="3336"/> <circ-port height="8" pin="130,590" width="8" x="46" y="3236"/> <circ-port height="8" pin="130,650" width="8" x="526" y="3336"/> <circ-port height="8" pin="130,740" width="8" x="546" y="3336"/> <circ-port height="8" pin="130,840" width="8" x="86" y="3336"/> <circ-port height="8" pin="130,910" width="8" x="286" y="3336"/> <circ-port height="8" pin="130,990" width="8" x="106" y="3336"/> <circ-port height="8" pin="130,1060" width="8" x="306" y="3336"/> <circ-port height="8" pin="130,1140" width="8" x="126" y="3336"/> <circ-port height="8" pin="130,1210" width="8" x="326" y="3336"/> <circ-port height="8" pin="130,1290" width="8" x="146" y="3336"/> <circ-port height="8" pin="130,1360" width="8" x="346" y="3336"/> <circ-port height="8" pin="130,1440" width="8" x="166" y="3336"/> <circ-port height="8" pin="130,1510" width="8" x="366" y="3336"/> <circ-port height="8" pin="130,1590" width="8" x="186" y="3336"/> <circ-port height="8" pin="130,1660" width="8" x="386" y="3336"/> <circ-port height="8" pin="130,1740" width="8" x="206" y="3336"/> <circ-port height="8" pin="130,1810" width="8" x="406" y="3336"/> <circ-port height="8" pin="130,1890" width="8" x="226" y="3336"/> <circ-port height="8" pin="130,1960" width="8" x="426" y="3336"/> <circ-port height="8" pin="130,2090" width="8" x="46" y="186"/> <circ-port height="8" pin="130,2140" width="8" x="46" y="216"/> <circ-port height="8" pin="130,2190" width="8" x="46" y="156"/> <circ-port height="10" pin="830,430" width="10" x="45" y="525"/> <circ-port height="10" pin="830,530" width="10" x="45" y="725"/> <circ-port height="10" pin="830,630" width="10" x="45" y="925"/> <circ-port height="10" pin="830,720" width="10" x="45" y="1125"/> <circ-port height="10" pin="830,850" width="10" x="45" y="1325"/> <circ-port height="10" pin="830,1000" width="10" x="45" y="1725"/> <circ-port height="10" pin="830,1150" width="10" x="45" y="1925"/> <circ-port height="10" pin="830,1300" width="10" x="45" y="2125"/> <circ-port height="10" pin="830,1450" width="10" x="45" y="2325"/> <circ-port height="10" pin="830,1600" width="10" x="45" y="2525"/> <circ-port height="10" pin="830,1750" width="10" x="45" y="2725"/> <circ-port height="10" pin="830,1900" width="10" x="45" y="2915"/> <circ-port height="10" pin="830,2020" width="10" x="45" y="3115"/> <circ-anchor facing="east" height="6" width="6" x="607" y="47"/> </appear> <wire from="(440,1270)" to="(440,1340)"/> <wire from="(280,230)" to="(280,300)"/> <wire from="(130,40)" to="(190,40)"/> <wire from="(500,740)" to="(550,740)"/> <wire from="(260,1440)" to="(380,1440)"/> <wire from="(250,250)" to="(300,250)"/> <wire from="(130,840)" to="(240,840)"/> <wire from="(360,820)" to="(360,970)"/> <wire from="(680,610)" to="(680,830)"/> <wire from="(440,1190)" to="(440,1270)"/> <wire from="(440,630)" to="(440,720)"/> <wire from="(260,280)" to="(620,280)"/> <wire from="(680,980)" to="(680,1130)"/> <wire from="(750,1130)" to="(750,1280)"/> <wire from="(420,990)" to="(460,990)"/> <wire from="(500,1440)" to="(670,1440)"/> <wire from="(360,630)" to="(360,720)"/> <wire from="(810,1000)" to="(830,1000)"/> <wire from="(750,1580)" to="(770,1580)"/> <wire from="(530,720)" to="(550,720)"/> <wire from="(280,230)" to="(300,230)"/> <wire from="(640,1460)" to="(670,1460)"/> <wire from="(360,630)" to="(380,630)"/> <wire from="(440,630)" to="(460,630)"/> <wire from="(360,1270)" to="(380,1270)"/> <wire from="(640,420)" to="(670,420)"/> <wire from="(200,200)" to="(200,240)"/> <wire from="(440,1190)" to="(460,1190)"/> <wire from="(440,1270)" to="(460,1270)"/> <wire from="(700,1450)" to="(770,1450)"/> <wire from="(370,330)" to="(380,330)"/> <wire from="(130,1060)" to="(460,1060)"/> <wire from="(640,1760)" to="(640,1810)"/> <wire from="(130,390)" to="(640,390)"/> <wire from="(440,1720)" to="(440,1790)"/> <wire from="(130,450)" to="(380,450)"/> <wire from="(230,40)" to="(230,50)"/> <wire from="(500,550)" to="(550,550)"/> <wire from="(260,1890)" to="(380,1890)"/> <wire from="(130,1290)" to="(240,1290)"/> <wire from="(360,1270)" to="(360,1420)"/> <wire from="(360,410)" to="(360,430)"/> <wire from="(130,320)" to="(300,320)"/> <wire from="(440,1640)" to="(440,1720)"/> <wire from="(530,810)" to="(640,810)"/> <wire from="(750,1580)" to="(750,1730)"/> <wire from="(680,1430)" to="(680,1580)"/> <wire from="(500,1890)" to="(670,1890)"/> <wire from="(420,1440)" to="(460,1440)"/> <wire from="(810,1450)" to="(830,1450)"/> <wire from="(530,530)" to="(550,530)"/> <wire from="(750,510)" to="(770,510)"/> <wire from="(750,830)" to="(770,830)"/> <wire from="(640,1910)" to="(670,1910)"/> <wire from="(360,1720)" to="(380,1720)"/> <wire from="(440,1640)" to="(460,1640)"/> <wire from="(440,1720)" to="(460,1720)"/> <wire from="(530,530)" to="(530,630)"/> <wire from="(210,50)" to="(230,50)"/> <wire from="(750,510)" to="(750,610)"/> <wire from="(260,280)" to="(260,780)"/> <wire from="(700,1900)" to="(770,1900)"/> <wire from="(370,300)" to="(380,300)"/> <wire from="(680,1880)" to="(680,2000)"/> <wire from="(280,190)" to="(360,190)"/> <wire from="(130,1510)" to="(460,1510)"/> <wire from="(640,1010)" to="(640,1060)"/> <wire from="(500,1360)" to="(640,1360)"/> <wire from="(440,970)" to="(440,1040)"/> <wire from="(130,740)" to="(380,740)"/> <wire from="(350,370)" to="(400,370)"/> <wire from="(330,350)" to="(380,350)"/> <wire from="(130,2140)" to="(570,2140)"/> <wire from="(500,910)" to="(560,910)"/> <wire from="(260,1140)" to="(380,1140)"/> <wire from="(530,2020)" to="(530,2090)"/> <wire from="(130,1740)" to="(240,1740)"/> <wire from="(360,1720)" to="(360,1870)"/> <wire from="(750,320)" to="(750,410)"/> <wire from="(420,350)" to="(530,350)"/> <wire from="(440,890)" to="(440,970)"/> <wire from="(380,880)" to="(380,910)"/> <wire from="(260,780)" to="(620,780)"/> <wire from="(750,830)" to="(750,980)"/> <wire from="(420,450)" to="(460,450)"/> <wire from="(500,1140)" to="(670,1140)"/> <wire from="(420,1890)" to="(460,1890)"/> <wire from="(570,940)" to="(570,2050)"/> <wire from="(750,2000)" to="(770,2000)"/> <wire from="(810,1900)" to="(830,1900)"/> <wire from="(750,1280)" to="(770,1280)"/> <wire from="(640,1160)" to="(670,1160)"/> <wire from="(360,970)" to="(380,970)"/> <wire from="(640,520)" to="(670,520)"/> <wire from="(440,890)" to="(460,890)"/> <wire from="(440,970)" to="(460,970)"/> <wire from="(680,410)" to="(680,510)"/> <wire from="(700,430)" to="(770,430)"/> <wire from="(700,1150)" to="(770,1150)"/> <wire from="(640,1460)" to="(640,1510)"/> <wire from="(500,1810)" to="(640,1810)"/> <wire from="(130,490)" to="(640,490)"/> <wire from="(440,1420)" to="(440,1490)"/> <wire from="(130,550)" to="(380,550)"/> <wire from="(230,60)" to="(230,70)"/> <wire from="(500,650)" to="(550,650)"/> <wire from="(260,1590)" to="(380,1590)"/> <wire from="(680,150)" to="(680,410)"/> <wire from="(130,990)" to="(240,990)"/> <wire from="(360,190)" to="(360,210)"/> <wire from="(530,630)" to="(530,720)"/> <wire from="(360,970)" to="(360,1120)"/> <wire from="(640,390)" to="(640,420)"/> <wire from="(440,1340)" to="(440,1420)"/> <wire from="(180,260)" to="(220,260)"/> <wire from="(680,1130)" to="(680,1280)"/> <wire from="(750,1280)" to="(750,1430)"/> <wire from="(420,740)" to="(460,740)"/> <wire from="(420,1140)" to="(460,1140)"/> <wire from="(500,1590)" to="(670,1590)"/> <wire from="(810,430)" to="(830,430)"/> <wire from="(810,1150)" to="(830,1150)"/> <wire from="(750,1730)" to="(770,1730)"/> <wire from="(530,630)" to="(550,630)"/> <wire from="(430,2040)" to="(460,2040)"/> <wire from="(720,100)" to="(720,720)"/> <wire from="(750,610)" to="(770,610)"/> <wire from="(280,300)" to="(300,300)"/> <wire from="(640,1610)" to="(670,1610)"/> <wire from="(640,2010)" to="(670,2010)"/> <wire from="(360,1420)" to="(380,1420)"/> <wire from="(440,1340)" to="(460,1340)"/> <wire from="(440,1420)" to="(460,1420)"/> <wire from="(280,190)" to="(280,230)"/> <wire from="(380,1930)" to="(390,1930)"/> <wire from="(700,1600)" to="(770,1600)"/> <wire from="(130,1210)" to="(460,1210)"/> <wire from="(640,1910)" to="(640,1960)"/> <wire from="(590,440)" to="(670,440)"/> <wire from="(500,1060)" to="(640,1060)"/> <wire from="(440,1870)" to="(440,1940)"/> <wire from="(130,1960)" to="(380,1960)"/> <wire from="(400,360)" to="(400,370)"/> <wire from="(260,840)" to="(380,840)"/> <wire from="(130,1440)" to="(240,1440)"/> <wire from="(360,1420)" to="(360,1570)"/> <wire from="(440,1790)" to="(440,1870)"/> <wire from="(130,150)" to="(680,150)"/> <wire from="(750,1730)" to="(750,1880)"/> <wire from="(340,230)" to="(380,230)"/> <wire from="(680,1580)" to="(680,1730)"/> <wire from="(500,840)" to="(670,840)"/> <wire from="(420,550)" to="(460,550)"/> <wire from="(420,1590)" to="(460,1590)"/> <wire from="(360,430)" to="(360,530)"/> <wire from="(810,1600)" to="(830,1600)"/> <wire from="(440,430)" to="(440,530)"/> <wire from="(750,980)" to="(770,980)"/> <wire from="(640,860)" to="(670,860)"/> <wire from="(640,620)" to="(670,620)"/> <wire from="(360,430)" to="(380,430)"/> <wire from="(340,410)" to="(360,410)"/> <wire from="(440,430)" to="(460,430)"/> <wire from="(360,1870)" to="(380,1870)"/> <wire from="(440,1790)" to="(460,1790)"/> <wire from="(440,1870)" to="(460,1870)"/> <wire from="(680,510)" to="(680,610)"/> <wire from="(700,530)" to="(770,530)"/> <wire from="(700,850)" to="(770,850)"/> <wire from="(130,1660)" to="(460,1660)"/> <wire from="(380,1960)" to="(460,1960)"/> <wire from="(130,200)" to="(200,200)"/> <wire from="(640,1160)" to="(640,1210)"/> <wire from="(350,310)" to="(350,370)"/> <wire from="(500,1510)" to="(640,1510)"/> <wire from="(130,590)" to="(640,590)"/> <wire from="(440,1120)" to="(440,1190)"/> <wire from="(130,2190)" to="(640,2190)"/> <wire from="(130,650)" to="(380,650)"/> <wire from="(590,920)" to="(640,920)"/> <wire from="(260,1290)" to="(380,1290)"/> <wire from="(720,720)" to="(780,720)"/> <wire from="(130,1890)" to="(240,1890)"/> <wire from="(570,2050)" to="(570,2140)"/> <wire from="(440,220)" to="(440,430)"/> <wire from="(640,490)" to="(640,520)"/> <wire from="(750,610)" to="(750,830)"/> <wire from="(440,1040)" to="(440,1120)"/> <wire from="(370,300)" to="(370,330)"/> <wire from="(680,830)" to="(680,980)"/> <wire from="(750,980)" to="(750,1130)"/> <wire from="(420,840)" to="(460,840)"/> <wire from="(500,1290)" to="(670,1290)"/> <wire from="(810,530)" to="(830,530)"/> <wire from="(810,850)" to="(830,850)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(360,720)" to="(360,820)"/> <wire from="(440,720)" to="(440,820)"/> <wire from="(640,1310)" to="(670,1310)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(420,220)" to="(440,220)"/> <wire from="(360,1120)" to="(380,1120)"/> <wire from="(440,720)" to="(460,720)"/> <wire from="(440,1040)" to="(460,1040)"/> <wire from="(440,1120)" to="(460,1120)"/> <wire from="(200,240)" to="(220,240)"/> <wire from="(530,810)" to="(530,930)"/> <wire from="(700,1300)" to="(770,1300)"/> <wire from="(700,2020)" to="(770,2020)"/> <wire from="(340,310)" to="(350,310)"/> <wire from="(130,2090)" to="(530,2090)"/> <wire from="(640,1610)" to="(640,1660)"/> <wire from="(590,540)" to="(670,540)"/> <wire from="(500,1960)" to="(640,1960)"/> <wire from="(750,320)" to="(760,320)"/> <wire from="(620,280)" to="(620,780)"/> <wire from="(440,1570)" to="(440,1640)"/> <wire from="(590,730)" to="(640,730)"/> <wire from="(260,1740)" to="(380,1740)"/> <wire from="(130,1140)" to="(240,1140)"/> <wire from="(360,1120)" to="(360,1270)"/> <wire from="(440,1490)" to="(440,1570)"/> <wire from="(640,730)" to="(640,810)"/> <wire from="(750,1430)" to="(750,1580)"/> <wire from="(680,1280)" to="(680,1430)"/> <wire from="(420,650)" to="(460,650)"/> <wire from="(500,1740)" to="(670,1740)"/> <wire from="(420,1290)" to="(460,1290)"/> <wire from="(810,1300)" to="(830,1300)"/> <wire from="(750,1880)" to="(770,1880)"/> <wire from="(230,70)" to="(260,70)"/> <wire from="(360,530)" to="(360,630)"/> <wire from="(810,2020)" to="(830,2020)"/> <wire from="(440,530)" to="(440,630)"/> <wire from="(260,190)" to="(280,190)"/> <wire from="(640,1760)" to="(670,1760)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,210)" to="(380,210)"/> <wire from="(440,530)" to="(460,530)"/> <wire from="(530,930)" to="(560,930)"/> <wire from="(360,1570)" to="(380,1570)"/> <wire from="(440,1490)" to="(460,1490)"/> <wire from="(440,1570)" to="(460,1570)"/> <wire from="(800,720)" to="(830,720)"/> <wire from="(210,60)" to="(230,60)"/> <wire from="(700,630)" to="(770,630)"/> <wire from="(130,100)" to="(720,100)"/> <wire from="(380,880)" to="(390,880)"/> <wire from="(700,1750)" to="(770,1750)"/> <wire from="(130,1360)" to="(460,1360)"/> <wire from="(750,1880)" to="(750,2000)"/> <wire from="(640,860)" to="(640,920)"/> <wire from="(590,2030)" to="(670,2030)"/> <wire from="(500,1210)" to="(640,1210)"/> <wire from="(440,820)" to="(440,890)"/> <wire from="(130,910)" to="(380,910)"/> <wire from="(500,450)" to="(550,450)"/> <wire from="(260,990)" to="(380,990)"/> <wire from="(500,2040)" to="(560,2040)"/> <wire from="(130,1590)" to="(240,1590)"/> <wire from="(360,1570)" to="(360,1720)"/> <wire from="(640,590)" to="(640,620)"/> <wire from="(440,1940)" to="(440,2020)"/> <wire from="(530,350)" to="(530,430)"/> <wire from="(380,1930)" to="(380,1960)"/> <wire from="(680,1730)" to="(680,1880)"/> <wire from="(500,990)" to="(670,990)"/> <wire from="(420,1740)" to="(460,1740)"/> <wire from="(130,260)" to="(160,260)"/> <wire from="(810,630)" to="(830,630)"/> <wire from="(230,40)" to="(260,40)"/> <wire from="(810,1750)" to="(830,1750)"/> <wire from="(530,430)" to="(550,430)"/> <wire from="(750,410)" to="(770,410)"/> <wire from="(750,1130)" to="(770,1130)"/> <wire from="(640,1010)" to="(670,1010)"/> <wire from="(360,820)" to="(380,820)"/> <wire from="(440,820)" to="(460,820)"/> <wire from="(440,1940)" to="(460,1940)"/> <wire from="(530,2020)" to="(560,2020)"/> <wire from="(440,2020)" to="(460,2020)"/> <wire from="(530,430)" to="(530,530)"/> <wire from="(750,410)" to="(750,510)"/> <wire from="(700,1000)" to="(770,1000)"/> <wire from="(130,1810)" to="(460,1810)"/> <wire from="(380,910)" to="(460,910)"/> <wire from="(640,1310)" to="(640,1360)"/> <wire from="(590,640)" to="(670,640)"/> <wire from="(500,1660)" to="(640,1660)"/> <wire from="(640,2010)" to="(640,2190)"/> <comp lib="4" loc="(420,330)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,990)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(130,1060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp loc="(500,830)" name="D-latch"/> <comp lib="0" loc="(830,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,980)" name="D-latch"/> <comp lib="0" loc="(330,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(130,1440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="1" loc="(260,1740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> </comp> <comp lib="0" loc="(130,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV1"/> </comp> <comp lib="1" loc="(260,1890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(830,530)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(810,1590)" name="D-latch"/> <comp lib="0" loc="(130,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV0"/> </comp> <comp lib="2" loc="(700,530)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(810,1140)" name="D-latch"/> <comp loc="(500,1500)" name="D-latch"/> <comp lib="0" loc="(830,720)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,1000)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD5"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(240,2182)" name="Text"> <a name="text" val="CHR generator number for BG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1050)" name="D-latch"/> <comp loc="(420,640)" name="D-latch"/> <comp loc="(810,1740)" name="D-latch"/> <comp lib="0" loc="(260,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="2" loc="(590,920)" name="Multiplexer"> <a name="disabled" val="0"/> <a name="enable" val="false"/> </comp> <comp loc="(500,1580)" name="D-latch"/> <comp lib="0" loc="(380,300)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(700,850)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO0"/> </comp> <comp loc="(340,240)" name="D-latch"/> <comp lib="0" loc="(130,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO2"/> </comp> <comp loc="(810,420)" name="D-latch"/> <comp lib="0" loc="(130,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(130,1960)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(830,1600)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD9"/> <a name="labelloc" val="east"/> </comp> <comp loc="(420,440)" name="D-latch"/> <comp lib="6" loc="(511,364)" name="Text"> <a name="text" val="VDIR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(250,250)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(810,1890)" name="D-latch"/> <comp lib="6" loc="(827,693)" name="Text"> <a name="text" val="A/B byte string tiles"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(260,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(772,2066)" name="Text"> <a name="text" val="PA12 - CHR generator number for OB or BG"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(260,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,1440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,730)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(420,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(420,1430)" name="D-latch"/> <comp lib="1" loc="(800,720)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(830,1900)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(830,850)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1430)" name="D-latch"/> <comp loc="(810,520)" name="D-latch"/> <comp lib="2" loc="(700,1000)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,40)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(430,2040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp lib="6" loc="(442,213)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(700,1900)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FVO1"/> </comp> <comp loc="(810,990)" name="D-latch"/> <comp lib="6" loc="(663,145)" name="Text"> <a name="text" val="PAR/O"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(864,791)" name="Text"> <a name="text" val="PA4 - PA11 - tile number in CHR ROM"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,900)" name="D-latch"/> <comp lib="6" loc="(326,145)" name="Text"> <a name="text" val="fetch sprite tile byte"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(500,1880)" name="D-latch"/> <comp lib="1" loc="(260,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,310)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(700,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(130,1210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp loc="(500,1200)" name="D-latch"/> <comp lib="1" loc="(260,1140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(700,1150)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(420,540)" name="D-latch"/> <comp lib="0" loc="(830,2020)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD12"/> <a name="labelloc" val="east"/> </comp> <comp loc="(810,840)" name="D-latch"/> <comp lib="0" loc="(130,840)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="6" loc="(840,373)" name="Text"> <a name="text" val="PA0 - PA2 - tile line number"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(700,430)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(420,1580)" name="D-latch"/> <comp lib="0" loc="(130,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> </comp> <comp loc="(810,620)" name="D-latch"/> <comp lib="6" loc="(234,2129)" name="Text"> <a name="text" val="regular or double sprite size"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(590,440)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(810,1290)" name="D-latch"/> <comp lib="0" loc="(830,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(239,2082)" name="Text"> <a name="text" val="CHR generator number for OB"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(545,329)" name="Text"> <a name="text" val="V. INVERSION"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp lib="0" loc="(830,1150)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(130,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp loc="(500,440)" name="D-latch"/> <comp lib="0" loc="(340,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,2140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp lib="2" loc="(700,1300)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(700,2020)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="2" loc="(700,1600)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(420,1880)" name="D-latch"/> <comp lib="0" loc="(130,1890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(260,70)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp loc="(500,1280)" name="D-latch"/> <comp loc="(420,730)" name="D-latch"/> <comp loc="(500,2030)" name="D-latch"/> <comp lib="0" loc="(130,2190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGBSEL"/> </comp> <comp lib="2" loc="(700,1750)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(830,430)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(420,1280)" name="D-latch"/> <comp lib="1" loc="(260,1590)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(130,1140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp loc="(500,640)" name="D-latch"/> <comp lib="0" loc="(130,1590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp loc="(420,1730)" name="D-latch"/> <comp lib="0" loc="(390,1930)" name="Tunnel"> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(760,320)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,650)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV2"/> </comp> <comp lib="1" loc="(260,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(420,980)" name="D-latch"/> <comp lib="6" loc="(518,303)" name="Text"> <a name="text" val="SPRITE"/> <a name="font" val="SansSerif plain 20"/> </comp> <comp loc="(500,1350)" name="D-latch"/> <comp lib="2" loc="(700,1450)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(495,2084)" name="Text"> <a name="text" val="OBSEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(810,2010)" name="D-latch"/> <comp loc="(500,730)" name="D-latch"/> <comp lib="0" loc="(130,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp loc="(500,1650)" name="D-latch"/> <comp loc="(500,1950)" name="D-latch"/> <comp loc="(500,1130)" name="D-latch"/> <comp lib="6" loc="(610,2181)" name="Text"> <a name="text" val="BGSEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(130,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(130,740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OV3"/> </comp> <comp loc="(420,1130)" name="D-latch"/> <comp lib="0" loc="(390,880)" name="Tunnel"> <a name="label" val="OB0"/> </comp> <comp lib="1" loc="(590,540)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(500,540)" name="D-latch"/> <comp loc="(810,1440)" name="D-latch"/> <comp lib="0" loc="(130,1290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(830,1450)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD8"/> <a name="labelloc" val="east"/> </comp> <comp loc="(500,1800)" name="D-latch"/> <comp lib="0" loc="(130,1360)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(830,1750)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PAD10"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(546,2130)" name="Text"> <a name="text" val="O8/16"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="2" loc="(590,2030)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp loc="(500,1730)" name="D-latch"/> <comp loc="(420,830)" name="D-latch"/> <comp lib="1" loc="(590,640)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(593,954)" name="Text"> <a name="text" val="O8/16"/> <a name="font" val="SansSerif bold 12"/> </comp> </circuit> <circuit name="WRITE_$2007"> <a name="circuit" val="WRITE_$2007"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M86,51 Q90,61 94,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#4efffb" height="271" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="224">D4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="204">PD3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="204">D3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="284">PD7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="165">D1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="164">PD1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="144">PD0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="184">PD2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="45">WRITE $2007</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="84">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="264">PD6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="104">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="244">PD5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="264">D6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="112" y="224">PD4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="144">D0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="244">D5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="284">D7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="184">D2</text> <polyline fill="none" points="50,84 56,84" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,76 55,76" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,83 56,76" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="80,60" width="8" x="46" y="76"/> <circ-port height="8" pin="80,110" width="8" x="46" y="96"/> <circ-port height="8" pin="80,180" width="8" x="46" y="136"/> <circ-port height="8" pin="80,250" width="8" x="46" y="156"/> <circ-port height="8" pin="80,320" width="8" x="46" y="176"/> <circ-port height="8" pin="80,390" width="8" x="46" y="196"/> <circ-port height="8" pin="80,460" width="8" x="46" y="216"/> <circ-port height="8" pin="80,530" width="8" x="46" y="236"/> <circ-port height="8" pin="80,600" width="8" x="46" y="256"/> <circ-port height="8" pin="80,670" width="8" x="46" y="276"/> <circ-port height="10" pin="260,160" width="10" x="125" y="135"/> <circ-port height="10" pin="260,230" width="10" x="125" y="155"/> <circ-port height="10" pin="260,300" width="10" x="125" y="175"/> <circ-port height="10" pin="260,370" width="10" x="125" y="195"/> <circ-port height="10" pin="260,440" width="10" x="125" y="215"/> <circ-port height="10" pin="260,510" width="10" x="125" y="235"/> <circ-port height="10" pin="260,580" width="10" x="125" y="255"/> <circ-port height="10" pin="260,650" width="10" x="125" y="275"/> <circ-anchor facing="east" height="6" width="6" x="127" y="47"/> </appear> <wire from="(130,160)" to="(130,230)"/> <wire from="(130,580)" to="(130,650)"/> <wire from="(130,300)" to="(130,370)"/> <wire from="(130,440)" to="(130,510)"/> <wire from="(230,360)" to="(230,430)"/> <wire from="(230,500)" to="(230,570)"/> <wire from="(230,220)" to="(230,290)"/> <wire from="(190,230)" to="(220,230)"/> <wire from="(190,650)" to="(220,650)"/> <wire from="(190,370)" to="(220,370)"/> <wire from="(190,510)" to="(220,510)"/> <wire from="(130,60)" to="(130,160)"/> <wire from="(230,110)" to="(230,150)"/> <wire from="(130,440)" to="(150,440)"/> <wire from="(130,160)" to="(150,160)"/> <wire from="(130,580)" to="(150,580)"/> <wire from="(130,300)" to="(150,300)"/> <wire from="(240,510)" to="(260,510)"/> <wire from="(240,230)" to="(260,230)"/> <wire from="(240,650)" to="(260,650)"/> <wire from="(240,370)" to="(260,370)"/> <wire from="(120,60)" to="(130,60)"/> <wire from="(80,530)" to="(150,530)"/> <wire from="(80,250)" to="(150,250)"/> <wire from="(80,670)" to="(150,670)"/> <wire from="(80,390)" to="(150,390)"/> <wire from="(130,230)" to="(130,300)"/> <wire from="(130,370)" to="(130,440)"/> <wire from="(130,510)" to="(130,580)"/> <wire from="(230,430)" to="(230,500)"/> <wire from="(230,150)" to="(230,220)"/> <wire from="(230,570)" to="(230,640)"/> <wire from="(230,290)" to="(230,360)"/> <wire from="(190,160)" to="(220,160)"/> <wire from="(190,580)" to="(220,580)"/> <wire from="(190,300)" to="(220,300)"/> <wire from="(190,440)" to="(220,440)"/> <wire from="(80,110)" to="(230,110)"/> <wire from="(80,60)" to="(100,60)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(130,510)" to="(150,510)"/> <wire from="(130,230)" to="(150,230)"/> <wire from="(130,650)" to="(150,650)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(240,580)" to="(260,580)"/> <wire from="(240,300)" to="(260,300)"/> <wire from="(240,440)" to="(260,440)"/> <wire from="(80,180)" to="(150,180)"/> <wire from="(80,600)" to="(150,600)"/> <wire from="(80,320)" to="(150,320)"/> <wire from="(80,460)" to="(150,460)"/> <comp lib="0" loc="(260,370)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(190,520)" name="D-latch"/> <comp loc="(190,590)" name="D-latch"/> <comp lib="0" loc="(80,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(240,440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,370)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(190,660)" name="D-latch"/> <comp lib="0" loc="(80,320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(260,440)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(190,170)" name="D-latch"/> <comp lib="0" loc="(260,160)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD0"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(154,71)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="0" loc="(80,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D1"/> </comp> <comp loc="(190,310)" name="D-latch"/> <comp lib="0" loc="(260,580)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD6"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,580)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(80,530)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(80,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(80,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D0"/> </comp> <comp loc="(190,240)" name="D-latch"/> <comp lib="1" loc="(240,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(260,230)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(190,380)" name="D-latch"/> <comp lib="0" loc="(80,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(80,110)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> </comp> <comp loc="(190,450)" name="D-latch"/> <comp lib="0" loc="(260,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,510)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(80,600)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(100,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit1" val="none"/> </comp> <comp lib="1" loc="(240,650)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(260,650)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD7"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(240,300)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(260,510)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="PD5"/> <a name="labelloc" val="east"/> </comp> </circuit> <circuit name="PAR_5BIT_COUNTER"> <a name="circuit" val="PAR_5BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M140,50 Q144,60 148,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="1030" stroke="#000000" stroke-width="2" width="230" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="1054">RES</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="355">CFG</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="804">IN3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="164">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="200" y="1058">TxZ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="129" y="1058">TxZB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="994">Q4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="204">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="604">IN2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="135">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="104">IN_NOR7_1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="195">Q0</text> <polyline fill="none" points="56,63 56,56" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="434">/Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="794">Q3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="1004">IN4</text> <text font-family="SansSerif" font-size="22" text-anchor="middle" x="169" y="500">5 BIT COUNTER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="404">IN1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="394">Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="594">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="57">CARRY_IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="84">BLNK</text> <polyline fill="none" points="56,64 51,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="55,56 50,56" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,70" width="8" x="46" y="96"/> <circ-port height="8" pin="100,260" width="8" x="46" y="76"/> <circ-port height="8" pin="100,490" width="8" x="46" y="156"/> <circ-port height="8" pin="100,630" width="8" x="46" y="126"/> <circ-port height="8" pin="100,390" width="8" x="46" y="56"/> <circ-port height="8" pin="100,590" width="8" x="46" y="196"/> <circ-port height="8" pin="100,540" width="8" x="46" y="1046"/> <circ-port height="8" pin="100,440" width="8" x="156" y="36"/> <circ-port height="8" pin="100,800" width="8" x="46" y="396"/> <circ-port height="8" pin="100,1010" width="8" x="46" y="596"/> <circ-port height="8" pin="100,1220" width="8" x="46" y="796"/> <circ-port height="8" pin="100,1430" width="8" x="46" y="996"/> <circ-port height="10" pin="640,100" width="10" x="195" y="1065"/> <circ-port height="10" pin="640,140" width="10" x="125" y="1065"/> <circ-port height="8" pin="640,360" width="8" x="276" y="346"/> <circ-port height="10" pin="640,500" width="10" x="275" y="185"/> <circ-port height="10" pin="640,710" width="10" x="275" y="385"/> <circ-port height="10" pin="640,880" width="10" x="275" y="425"/> <circ-port height="10" pin="640,920" width="10" x="275" y="585"/> <circ-port height="10" pin="640,1130" width="10" x="275" y="785"/> <circ-port height="10" pin="640,1340" width="10" x="275" y="985"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(390,100)" to="(640,100)"/> <wire from="(360,1510)" to="(610,1510)"/> <wire from="(600,330)" to="(600,1300)"/> <wire from="(440,760)" to="(490,760)"/> <wire from="(140,630)" to="(140,840)"/> <wire from="(210,1020)" to="(210,1230)"/> <wire from="(360,1190)" to="(360,1270)"/> <wire from="(180,1220)" to="(180,1240)"/> <wire from="(360,1480)" to="(360,1510)"/> <wire from="(290,770)" to="(290,800)"/> <wire from="(360,770)" to="(400,770)"/> <wire from="(360,850)" to="(400,850)"/> <wire from="(490,260)" to="(530,260)"/> <wire from="(600,180)" to="(600,330)"/> <wire from="(550,550)" to="(550,590)"/> <wire from="(570,370)" to="(570,670)"/> <wire from="(270,1170)" to="(300,1170)"/> <wire from="(340,770)" to="(360,770)"/> <wire from="(340,1170)" to="(360,1170)"/> <wire from="(470,740)" to="(490,740)"/> <wire from="(360,670)" to="(570,670)"/> <wire from="(330,570)" to="(330,610)"/> <wire from="(360,920)" to="(360,960)"/> <wire from="(140,1050)" to="(160,1050)"/> <wire from="(360,1130)" to="(640,1130)"/> <wire from="(210,1440)" to="(230,1440)"/> <wire from="(380,1460)" to="(390,1460)"/> <wire from="(260,610)" to="(330,610)"/> <wire from="(440,970)" to="(490,970)"/> <wire from="(140,840)" to="(140,1050)"/> <wire from="(210,1230)" to="(210,1440)"/> <wire from="(100,540)" to="(210,540)"/> <wire from="(470,530)" to="(470,740)"/> <wire from="(380,540)" to="(380,620)"/> <wire from="(360,1400)" to="(360,1480)"/> <wire from="(580,210)" to="(580,880)"/> <wire from="(180,1430)" to="(180,1450)"/> <wire from="(290,980)" to="(290,1010)"/> <wire from="(360,980)" to="(400,980)"/> <wire from="(360,1060)" to="(400,1060)"/> <wire from="(550,760)" to="(550,800)"/> <wire from="(270,1380)" to="(300,1380)"/> <wire from="(340,980)" to="(360,980)"/> <wire from="(340,1380)" to="(360,1380)"/> <wire from="(100,440)" to="(380,440)"/> <wire from="(380,540)" to="(400,540)"/> <wire from="(470,950)" to="(490,950)"/> <wire from="(330,780)" to="(330,820)"/> <wire from="(360,1130)" to="(360,1170)"/> <wire from="(140,1260)" to="(160,1260)"/> <wire from="(360,1340)" to="(640,1340)"/> <wire from="(610,320)" to="(610,1510)"/> <wire from="(260,820)" to="(330,820)"/> <wire from="(520,360)" to="(640,360)"/> <wire from="(520,220)" to="(570,220)"/> <wire from="(440,1180)" to="(490,1180)"/> <wire from="(550,70)" to="(550,200)"/> <wire from="(470,390)" to="(470,530)"/> <wire from="(520,210)" to="(580,210)"/> <wire from="(140,1050)" to="(140,1260)"/> <wire from="(470,740)" to="(470,950)"/> <wire from="(380,750)" to="(380,830)"/> <wire from="(270,540)" to="(270,750)"/> <wire from="(530,230)" to="(530,260)"/> <wire from="(360,1300)" to="(600,1300)"/> <wire from="(290,1190)" to="(290,1220)"/> <wire from="(190,620)" to="(230,620)"/> <wire from="(360,1190)" to="(400,1190)"/> <wire from="(360,1270)" to="(400,1270)"/> <wire from="(550,970)" to="(550,1010)"/> <wire from="(340,1190)" to="(360,1190)"/> <wire from="(590,190)" to="(590,350)"/> <wire from="(380,750)" to="(400,750)"/> <wire from="(470,1160)" to="(490,1160)"/> <wire from="(330,990)" to="(330,1030)"/> <wire from="(360,1340)" to="(360,1380)"/> <wire from="(140,1470)" to="(160,1470)"/> <wire from="(390,100)" to="(390,340)"/> <wire from="(450,630)" to="(450,690)"/> <wire from="(260,1030)" to="(330,1030)"/> <wire from="(310,570)" to="(310,640)"/> <wire from="(490,70)" to="(550,70)"/> <wire from="(550,200)" to="(550,340)"/> <wire from="(440,1390)" to="(490,1390)"/> <wire from="(190,640)" to="(310,640)"/> <wire from="(580,880)" to="(640,880)"/> <wire from="(140,1260)" to="(140,1470)"/> <wire from="(430,260)" to="(430,280)"/> <wire from="(470,950)" to="(470,1160)"/> <wire from="(380,960)" to="(380,1040)"/> <wire from="(270,750)" to="(270,960)"/> <wire from="(530,280)" to="(530,310)"/> <wire from="(190,830)" to="(230,830)"/> <wire from="(290,1400)" to="(290,1430)"/> <wire from="(360,1400)" to="(400,1400)"/> <wire from="(360,1480)" to="(400,1480)"/> <wire from="(570,220)" to="(570,370)"/> <wire from="(550,1180)" to="(550,1220)"/> <wire from="(530,550)" to="(550,550)"/> <wire from="(340,1400)" to="(360,1400)"/> <wire from="(380,960)" to="(400,960)"/> <wire from="(420,200)" to="(440,200)"/> <wire from="(470,1370)" to="(490,1370)"/> <wire from="(330,1200)" to="(330,1240)"/> <wire from="(590,350)" to="(590,1090)"/> <wire from="(440,630)" to="(450,630)"/> <wire from="(100,590)" to="(180,590)"/> <wire from="(520,230)" to="(530,230)"/> <wire from="(290,560)" to="(300,560)"/> <wire from="(290,590)" to="(550,590)"/> <wire from="(380,690)" to="(380,750)"/> <wire from="(450,840)" to="(450,900)"/> <wire from="(260,1240)" to="(330,1240)"/> <wire from="(520,310)" to="(530,310)"/> <wire from="(310,780)" to="(310,850)"/> <wire from="(190,850)" to="(310,850)"/> <wire from="(100,70)" to="(470,70)"/> <wire from="(100,390)" to="(470,390)"/> <wire from="(470,1160)" to="(470,1370)"/> <wire from="(380,1170)" to="(380,1250)"/> <wire from="(270,960)" to="(270,1170)"/> <wire from="(100,630)" to="(140,630)"/> <wire from="(360,640)" to="(360,670)"/> <wire from="(190,1040)" to="(230,1040)"/> <wire from="(360,1090)" to="(590,1090)"/> <wire from="(550,1390)" to="(550,1430)"/> <wire from="(520,170)" to="(610,170)"/> <wire from="(530,760)" to="(550,760)"/> <wire from="(380,1170)" to="(400,1170)"/> <wire from="(520,340)" to="(550,340)"/> <wire from="(330,1410)" to="(330,1450)"/> <wire from="(210,600)" to="(230,600)"/> <wire from="(380,620)" to="(390,620)"/> <wire from="(100,800)" to="(180,800)"/> <wire from="(440,840)" to="(450,840)"/> <wire from="(290,770)" to="(300,770)"/> <wire from="(520,350)" to="(590,350)"/> <wire from="(520,180)" to="(600,180)"/> <wire from="(290,800)" to="(550,800)"/> <wire from="(380,900)" to="(380,960)"/> <wire from="(420,140)" to="(420,200)"/> <wire from="(450,1050)" to="(450,1110)"/> <wire from="(380,690)" to="(450,690)"/> <wire from="(520,190)" to="(590,190)"/> <wire from="(260,1450)" to="(330,1450)"/> <wire from="(310,990)" to="(310,1060)"/> <wire from="(520,370)" to="(570,370)"/> <wire from="(190,1060)" to="(310,1060)"/> <wire from="(360,560)" to="(360,640)"/> <wire from="(380,1380)" to="(380,1460)"/> <wire from="(270,1170)" to="(270,1380)"/> <wire from="(180,590)" to="(180,610)"/> <wire from="(100,490)" to="(270,490)"/> <wire from="(430,280)" to="(530,280)"/> <wire from="(360,850)" to="(360,880)"/> <wire from="(190,1250)" to="(230,1250)"/> <wire from="(530,970)" to="(550,970)"/> <wire from="(270,540)" to="(300,540)"/> <wire from="(340,540)" to="(360,540)"/> <wire from="(380,1380)" to="(400,1380)"/> <wire from="(360,500)" to="(640,500)"/> <wire from="(210,810)" to="(230,810)"/> <wire from="(380,830)" to="(390,830)"/> <wire from="(440,1050)" to="(450,1050)"/> <wire from="(100,1010)" to="(180,1010)"/> <wire from="(290,980)" to="(300,980)"/> <wire from="(290,1010)" to="(550,1010)"/> <wire from="(380,1110)" to="(380,1170)"/> <wire from="(450,1260)" to="(450,1320)"/> <wire from="(380,900)" to="(450,900)"/> <wire from="(210,540)" to="(210,600)"/> <wire from="(310,1200)" to="(310,1270)"/> <wire from="(190,1270)" to="(310,1270)"/> <wire from="(210,600)" to="(210,810)"/> <wire from="(360,770)" to="(360,850)"/> <wire from="(180,800)" to="(180,820)"/> <wire from="(360,1060)" to="(360,1090)"/> <wire from="(190,1460)" to="(230,1460)"/> <wire from="(430,260)" to="(470,260)"/> <wire from="(610,170)" to="(610,320)"/> <wire from="(360,880)" to="(580,880)"/> <wire from="(420,140)" to="(640,140)"/> <wire from="(530,1180)" to="(550,1180)"/> <wire from="(520,200)" to="(550,200)"/> <wire from="(270,750)" to="(300,750)"/> <wire from="(340,750)" to="(360,750)"/> <wire from="(360,500)" to="(360,540)"/> <wire from="(360,710)" to="(640,710)"/> <wire from="(140,630)" to="(160,630)"/> <wire from="(210,1020)" to="(230,1020)"/> <wire from="(380,1040)" to="(390,1040)"/> <wire from="(440,1260)" to="(450,1260)"/> <wire from="(100,1220)" to="(180,1220)"/> <wire from="(290,1190)" to="(300,1190)"/> <wire from="(270,490)" to="(270,540)"/> <wire from="(290,1220)" to="(550,1220)"/> <wire from="(380,1320)" to="(380,1380)"/> <wire from="(380,1110)" to="(450,1110)"/> <wire from="(310,1410)" to="(310,1480)"/> <wire from="(440,550)" to="(490,550)"/> <wire from="(390,340)" to="(440,340)"/> <wire from="(190,1480)" to="(310,1480)"/> <wire from="(210,810)" to="(210,1020)"/> <wire from="(360,980)" to="(360,1060)"/> <wire from="(180,1010)" to="(180,1030)"/> <wire from="(360,1270)" to="(360,1300)"/> <wire from="(290,560)" to="(290,590)"/> <wire from="(360,560)" to="(400,560)"/> <wire from="(360,640)" to="(400,640)"/> <wire from="(380,440)" to="(380,540)"/> <wire from="(530,1390)" to="(550,1390)"/> <wire from="(270,960)" to="(300,960)"/> <wire from="(340,560)" to="(360,560)"/> <wire from="(340,960)" to="(360,960)"/> <wire from="(470,530)" to="(490,530)"/> <wire from="(360,710)" to="(360,750)"/> <wire from="(140,840)" to="(160,840)"/> <wire from="(520,320)" to="(610,320)"/> <wire from="(360,920)" to="(640,920)"/> <wire from="(210,1230)" to="(230,1230)"/> <wire from="(380,1250)" to="(390,1250)"/> <wire from="(440,1470)" to="(450,1470)"/> <wire from="(100,1430)" to="(180,1430)"/> <wire from="(290,1400)" to="(300,1400)"/> <wire from="(100,260)" to="(430,260)"/> <wire from="(520,330)" to="(600,330)"/> <wire from="(290,1430)" to="(550,1430)"/> <wire from="(380,1320)" to="(450,1320)"/> <comp lib="0" loc="(100,440)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CARRY IN"/> </comp> <comp lib="1" loc="(440,550)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,740)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,1430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN4"/> </comp> <comp lib="0" loc="(640,1130)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,1340)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN_NOR7_1"/> </comp> <comp lib="1" loc="(260,820)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,950)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(260,1030)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(640,500)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,200)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="1" loc="(440,1180)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(440,1470)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="1" loc="(260,1450)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,530)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,630)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="4" loc="(340,750)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(340,960)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="0" loc="(640,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TxZB"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(260,610)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,630)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="6" loc="(486,1475)" name="Text"> <a name="text" val="Not used"/> </comp> <comp lib="0" loc="(640,360)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="CFG"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,1470)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,1390)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(530,1370)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(100,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(440,840)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="4" loc="(530,1160)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(640,710)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(440,340)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> <a name="inputs" val="7"/> </comp> <comp lib="4" loc="(340,1170)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(640,920)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(673,331)" name="Text"> <a name="text" val="CARRY CONFIG"/> </comp> <comp lib="2" loc="(160,840)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,760)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(490,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(160,1260)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN3"/> </comp> <comp lib="1" loc="(260,1240)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="2" loc="(160,630)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(490,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(340,540)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(440,1260)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="4" loc="(340,1380)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,590)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="1" loc="(440,1050)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(100,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="0" loc="(640,880)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(640,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="TxZ"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(160,1050)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(440,970)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> </circuit> <circuit name="PAR_3BIT_COUNTER"> <a name="circuit" val="PAR_3BIT_COUNTER"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M76,41 Q80,51 84,41" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="570" stroke="#000000" stroke-width="2" width="230" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="314">IN1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="160" y="598">FVZ</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="515">Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="565">/Q2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="124">IN0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="260" y="365">/Q1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="84">STEP</text> <text font-family="SansSerif" font-size="20" text-anchor="middle" x="163" y="300">3BIT COUNTER</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="165">/Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="514">IN2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="104">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="115">Q0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="65">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="554">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="59">#FV C IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="262" y="315">Q1</text> <polyline fill="none" points="50,55 56,55" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,65 55,65" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,55 56,65" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,170" width="8" x="156" y="36"/> <circ-port height="8" pin="100,30" width="8" x="46" y="546"/> <circ-port height="8" pin="100,290" width="8" x="46" y="76"/> <circ-port height="8" pin="100,370" width="8" x="46" y="96"/> <circ-port height="8" pin="100,200" width="8" x="46" y="56"/> <circ-port height="8" pin="100,330" width="8" x="46" y="116"/> <circ-port height="8" pin="100,540" width="8" x="46" y="306"/> <circ-port height="8" pin="100,750" width="8" x="46" y="506"/> <circ-port height="10" pin="540,30" width="10" x="155" y="605"/> <circ-port height="10" pin="540,250" width="10" x="275" y="105"/> <circ-port height="10" pin="540,420" width="10" x="275" y="155"/> <circ-port height="10" pin="540,460" width="10" x="275" y="305"/> <circ-port height="10" pin="540,630" width="10" x="275" y="355"/> <circ-port height="10" pin="540,670" width="10" x="275" y="505"/> <circ-port height="10" pin="540,840" width="10" x="275" y="555"/> <circ-anchor facing="east" height="6" width="6" x="277" y="37"/> </appear> <wire from="(500,90)" to="(500,420)"/> <wire from="(130,580)" to="(130,790)"/> <wire from="(200,290)" to="(200,500)"/> <wire from="(400,490)" to="(400,700)"/> <wire from="(290,520)" to="(290,600)"/> <wire from="(310,500)" to="(310,580)"/> <wire from="(170,330)" to="(170,350)"/> <wire from="(290,810)" to="(290,840)"/> <wire from="(290,630)" to="(510,630)"/> <wire from="(200,500)" to="(230,500)"/> <wire from="(270,500)" to="(290,500)"/> <wire from="(310,500)" to="(330,500)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(260,740)" to="(260,780)"/> <wire from="(290,250)" to="(290,290)"/> <wire from="(480,720)" to="(480,760)"/> <wire from="(180,360)" to="(260,360)"/> <wire from="(310,790)" to="(320,790)"/> <wire from="(310,230)" to="(310,290)"/> <wire from="(380,380)" to="(380,440)"/> <wire from="(100,330)" to="(170,330)"/> <wire from="(490,170)" to="(490,230)"/> <wire from="(240,320)" to="(240,380)"/> <wire from="(290,250)" to="(540,250)"/> <wire from="(180,380)" to="(240,380)"/> <wire from="(370,300)" to="(420,300)"/> <wire from="(200,500)" to="(200,710)"/> <wire from="(290,730)" to="(290,810)"/> <wire from="(310,710)" to="(310,790)"/> <wire from="(170,540)" to="(170,560)"/> <wire from="(400,200)" to="(400,280)"/> <wire from="(290,310)" to="(330,310)"/> <wire from="(290,390)" to="(330,390)"/> <wire from="(220,310)" to="(220,340)"/> <wire from="(200,710)" to="(230,710)"/> <wire from="(510,80)" to="(510,630)"/> <wire from="(100,370)" to="(130,370)"/> <wire from="(520,840)" to="(540,840)"/> <wire from="(270,310)" to="(290,310)"/> <wire from="(270,710)" to="(290,710)"/> <wire from="(310,710)" to="(330,710)"/> <wire from="(400,280)" to="(420,280)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(290,460)" to="(290,500)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(370,380)" to="(380,380)"/> <wire from="(180,570)" to="(260,570)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(440,70)" to="(520,70)"/> <wire from="(310,440)" to="(310,500)"/> <wire from="(340,30)" to="(340,90)"/> <wire from="(380,590)" to="(380,650)"/> <wire from="(100,540)" to="(170,540)"/> <wire from="(360,230)" to="(490,230)"/> <wire from="(310,30)" to="(310,150)"/> <wire from="(440,80)" to="(510,80)"/> <wire from="(340,30)" to="(540,30)"/> <wire from="(240,530)" to="(240,590)"/> <wire from="(220,340)" to="(480,340)"/> <wire from="(490,100)" to="(490,170)"/> <wire from="(440,90)" to="(500,90)"/> <wire from="(290,460)" to="(540,460)"/> <wire from="(180,590)" to="(240,590)"/> <wire from="(440,100)" to="(490,100)"/> <wire from="(370,510)" to="(420,510)"/> <wire from="(310,150)" to="(480,150)"/> <wire from="(170,750)" to="(170,770)"/> <wire from="(290,390)" to="(290,420)"/> <wire from="(290,520)" to="(330,520)"/> <wire from="(290,600)" to="(330,600)"/> <wire from="(220,520)" to="(220,550)"/> <wire from="(290,840)" to="(520,840)"/> <wire from="(440,110)" to="(480,110)"/> <wire from="(310,230)" to="(340,230)"/> <wire from="(270,520)" to="(290,520)"/> <wire from="(400,490)" to="(420,490)"/> <wire from="(510,630)" to="(540,630)"/> <wire from="(290,420)" to="(500,420)"/> <wire from="(460,510)" to="(480,510)"/> <wire from="(260,320)" to="(260,360)"/> <wire from="(290,670)" to="(290,710)"/> <wire from="(130,580)" to="(150,580)"/> <wire from="(480,300)" to="(480,340)"/> <wire from="(100,30)" to="(310,30)"/> <wire from="(310,370)" to="(320,370)"/> <wire from="(370,590)" to="(380,590)"/> <wire from="(180,780)" to="(260,780)"/> <wire from="(220,520)" to="(230,520)"/> <wire from="(310,650)" to="(310,710)"/> <wire from="(100,750)" to="(170,750)"/> <wire from="(310,440)" to="(380,440)"/> <wire from="(240,740)" to="(240,800)"/> <wire from="(220,550)" to="(480,550)"/> <wire from="(290,670)" to="(540,670)"/> <wire from="(520,70)" to="(520,840)"/> <wire from="(180,800)" to="(240,800)"/> <wire from="(370,720)" to="(420,720)"/> <wire from="(130,370)" to="(130,580)"/> <wire from="(400,280)" to="(400,490)"/> <wire from="(310,290)" to="(310,370)"/> <wire from="(290,310)" to="(290,390)"/> <wire from="(100,200)" to="(400,200)"/> <wire from="(290,600)" to="(290,630)"/> <wire from="(290,730)" to="(330,730)"/> <wire from="(290,810)" to="(330,810)"/> <wire from="(220,730)" to="(220,760)"/> <wire from="(100,290)" to="(200,290)"/> <wire from="(500,420)" to="(540,420)"/> <wire from="(200,290)" to="(230,290)"/> <wire from="(270,730)" to="(290,730)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(270,290)" to="(290,290)"/> <wire from="(400,700)" to="(420,700)"/> <wire from="(460,720)" to="(480,720)"/> <wire from="(260,530)" to="(260,570)"/> <wire from="(130,790)" to="(150,790)"/> <wire from="(480,510)" to="(480,550)"/> <wire from="(480,110)" to="(480,150)"/> <wire from="(310,580)" to="(320,580)"/> <wire from="(370,800)" to="(380,800)"/> <wire from="(220,730)" to="(230,730)"/> <wire from="(100,170)" to="(490,170)"/> <wire from="(220,760)" to="(480,760)"/> <wire from="(310,650)" to="(380,650)"/> <comp lib="1" loc="(370,720)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(460,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(270,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(370,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="0" loc="(540,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,630)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="4" loc="(270,500)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(540,250)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#FVZ C_IN"/> </comp> <comp lib="1" loc="(370,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(540,30)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="FVZ"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(150,790)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="6" loc="(310,223)" name="Text"> <a name="text" val="Carry_in"/> </comp> <comp lib="1" loc="(370,590)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="4" loc="(270,710)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(540,670)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(540,420)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q0"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(360,90)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="70"/> </comp> <comp lib="0" loc="(100,750)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN2"/> </comp> <comp lib="1" loc="(370,300)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="2" loc="(150,370)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(100,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN0"/> </comp> <comp lib="4" loc="(460,700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(460,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN1"/> </comp> <comp lib="2" loc="(150,580)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(540,840)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/Q2"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(414,805)" name="Text"> <a name="text" val="not used"/> </comp> <comp lib="1" loc="(370,800)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> <a name="negate0" val="true"/> </comp> <comp lib="1" loc="(340,230)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> </circuit> <circuit name="PAR_1BIT_COUNTER"> <a name="circuit" val="PAR_1BIT_COUNTER"/> <a name="clabel" val="PAR 1BIT COUNTER"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M106,51 Q110,61 114,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffbf61" height="120" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="223" y="154">CARRY OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="75">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="263" y="84">Q</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="94">IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="134">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="70">CARRY IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="154">#BLNK</text> <polyline fill="none" points="50,66 55,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,66 56,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="51,75 56,75" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="100,140" width="8" x="46" y="106"/> <circ-port height="8" pin="100,230" width="8" x="46" y="126"/> <circ-port height="8" pin="100,40" width="8" x="46" y="66"/> <circ-port height="8" pin="100,190" width="8" x="46" y="86"/> <circ-port height="8" pin="100,80" width="8" x="156" y="46"/> <circ-port height="8" pin="100,270" width="8" x="46" y="146"/> <circ-port height="10" pin="440,100" width="10" x="275" y="75"/> <circ-port height="10" pin="440,240" width="10" x="275" y="145"/> <circ-anchor facing="east" height="6" width="6" x="277" y="47"/> </appear> <wire from="(250,100)" to="(440,100)"/> <wire from="(270,140)" to="(270,210)"/> <wire from="(180,190)" to="(430,190)"/> <wire from="(200,170)" to="(200,240)"/> <wire from="(160,220)" to="(220,220)"/> <wire from="(100,40)" to="(350,40)"/> <wire from="(390,240)" to="(440,240)"/> <wire from="(100,190)" to="(150,190)"/> <wire from="(330,250)" to="(330,270)"/> <wire from="(330,210)" to="(330,230)"/> <wire from="(250,160)" to="(250,240)"/> <wire from="(150,190)" to="(150,210)"/> <wire from="(100,80)" to="(270,80)"/> <wire from="(160,240)" to="(200,240)"/> <wire from="(250,160)" to="(290,160)"/> <wire from="(100,270)" to="(330,270)"/> <wire from="(180,160)" to="(180,190)"/> <wire from="(330,150)" to="(370,150)"/> <wire from="(250,240)" to="(350,240)"/> <wire from="(350,40)" to="(350,130)"/> <wire from="(100,230)" to="(130,230)"/> <wire from="(100,140)" to="(190,140)"/> <wire from="(270,210)" to="(290,210)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(310,210)" to="(330,210)"/> <wire from="(330,230)" to="(350,230)"/> <wire from="(330,250)" to="(350,250)"/> <wire from="(350,130)" to="(370,130)"/> <wire from="(410,150)" to="(430,150)"/> <wire from="(250,100)" to="(250,140)"/> <wire from="(430,150)" to="(430,190)"/> <wire from="(230,140)" to="(250,140)"/> <wire from="(230,160)" to="(250,160)"/> <wire from="(220,170)" to="(220,220)"/> <wire from="(180,160)" to="(190,160)"/> <wire from="(270,80)" to="(270,140)"/> <comp lib="1" loc="(390,240)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(440,100)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="Q"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="IN"/> </comp> <comp lib="4" loc="(410,130)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="2" loc="(130,230)" name="Demultiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(330,150)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(230,140)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="CARRY IN"/> </comp> <comp lib="0" loc="(440,240)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="CARRY OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#BLNK"/> </comp> </circuit> <circuit name="BG_COLOR"> <a name="circuit" val="BG_COLOR"/> <a name="clabel" val="BG COLOR"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M61,56 Q65,66 69,56" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff8b00" height="460" stroke="#000000" stroke-width="2" width="350" x="50" y="40"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="474">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="454">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="434">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="294">BGC3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="394">THO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="94">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="194">/CLPB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="174">/FO</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="234">BGC0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="254">BGC1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="294">PPU DATA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="374" y="275">BGC2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="414">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="154">F/TA</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="134">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="114">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="224">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="364">7</text> <polyline fill="none" points="51,64 56,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,56 56,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,63 56,57" stroke="#000000" stroke-width="2"/> <circ-port height="8" pin="110,80" width="8" x="46" y="56"/> <circ-port height="8" pin="110,160" width="8" x="46" y="186"/> <circ-port height="8" pin="110,250" width="8" x="46" y="406"/> <circ-port height="8" pin="110,290" width="8" x="46" y="426"/> <circ-port height="8" pin="110,330" width="8" x="46" y="446"/> <circ-port height="8" pin="110,400" width="8" x="46" y="216"/> <circ-port height="8" pin="110,430" width="8" x="46" y="236"/> <circ-port height="8" pin="110,460" width="8" x="46" y="256"/> <circ-port height="8" pin="110,490" width="8" x="46" y="276"/> <circ-port height="8" pin="110,520" width="8" x="46" y="296"/> <circ-port height="8" pin="110,550" width="8" x="46" y="316"/> <circ-port height="8" pin="110,580" width="8" x="46" y="336"/> <circ-port height="8" pin="110,610" width="8" x="46" y="356"/> <circ-port height="8" pin="110,870" width="8" x="46" y="386"/> <circ-port height="8" pin="110,910" width="8" x="46" y="466"/> <circ-port height="8" pin="110,1610" width="8" x="46" y="106"/> <circ-port height="8" pin="110,1660" width="8" x="46" y="86"/> <circ-port height="8" pin="110,1710" width="8" x="46" y="146"/> <circ-port height="8" pin="110,1760" width="8" x="46" y="126"/> <circ-port height="8" pin="110,1810" width="8" x="46" y="166"/> <circ-port height="10" pin="1440,360" width="10" x="395" y="225"/> <circ-port height="10" pin="1440,700" width="10" x="395" y="245"/> <circ-port height="10" pin="1440,1040" width="10" x="395" y="265"/> <circ-port height="10" pin="1440,1300" width="10" x="395" y="285"/> <circ-anchor facing="east" height="6" width="6" x="397" y="47"/> </appear> <wire from="(1040,320)" to="(1090,320)"/> <wire from="(490,1020)" to="(670,1020)"/> <wire from="(570,650)" to="(620,650)"/> <wire from="(400,1280)" to="(450,1280)"/> <wire from="(480,600)" to="(480,870)"/> <wire from="(1260,390)" to="(1300,390)"/> <wire from="(580,670)" to="(620,670)"/> <wire from="(850,1260)" to="(890,1260)"/> <wire from="(580,740)" to="(580,770)"/> <wire from="(460,810)" to="(460,890)"/> <wire from="(870,700)" to="(870,1040)"/> <wire from="(270,1070)" to="(270,1100)"/> <wire from="(420,1540)" to="(520,1540)"/> <wire from="(140,460)" to="(140,490)"/> <wire from="(1040,800)" to="(1090,800)"/> <wire from="(170,490)" to="(270,490)"/> <wire from="(570,410)" to="(570,450)"/> <wire from="(160,100)" to="(190,100)"/> <wire from="(870,1300)" to="(890,1300)"/> <wire from="(740,1540)" to="(740,1580)"/> <wire from="(420,1000)" to="(450,1000)"/> <wire from="(570,360)" to="(590,360)"/> <wire from="(380,480)" to="(410,480)"/> <wire from="(600,390)" to="(620,390)"/> <wire from="(290,720)" to="(310,720)"/> <wire from="(250,1320)" to="(270,1320)"/> <wire from="(590,690)" to="(620,690)"/> <wire from="(1080,700)" to="(1110,700)"/> <wire from="(1040,1300)" to="(1070,1300)"/> <wire from="(160,280)" to="(170,280)"/> <wire from="(1360,350)" to="(1380,350)"/> <wire from="(1090,1360)" to="(1110,1360)"/> <wire from="(720,1640)" to="(730,1640)"/> <wire from="(570,690)" to="(580,690)"/> <wire from="(1200,670)" to="(1220,670)"/> <wire from="(1200,1310)" to="(1220,1310)"/> <wire from="(410,930)" to="(470,930)"/> <wire from="(1070,400)" to="(1070,420)"/> <wire from="(1040,780)" to="(1080,780)"/> <wire from="(850,1260)" to="(850,1520)"/> <wire from="(350,1360)" to="(400,1360)"/> <wire from="(1080,410)" to="(1080,440)"/> <wire from="(270,1040)" to="(270,1060)"/> <wire from="(750,1520)" to="(850,1520)"/> <wire from="(1060,390)" to="(1060,400)"/> <wire from="(1070,1040)" to="(1070,1050)"/> <wire from="(130,510)" to="(170,510)"/> <wire from="(730,1500)" to="(730,1520)"/> <wire from="(380,380)" to="(380,480)"/> <wire from="(420,1290)" to="(450,1290)"/> <wire from="(390,470)" to="(410,470)"/> <wire from="(1040,720)" to="(1110,720)"/> <wire from="(230,1190)" to="(230,1300)"/> <wire from="(520,890)" to="(520,1460)"/> <wire from="(170,480)" to="(250,480)"/> <wire from="(290,1560)" to="(370,1560)"/> <wire from="(1090,420)" to="(1090,460)"/> <wire from="(290,420)" to="(290,480)"/> <wire from="(110,1710)" to="(180,1710)"/> <wire from="(1420,700)" to="(1440,700)"/> <wire from="(1200,1010)" to="(1200,1050)"/> <wire from="(1090,690)" to="(1110,690)"/> <wire from="(630,1520)" to="(640,1520)"/> <wire from="(1150,1070)" to="(1170,1070)"/> <wire from="(420,1540)" to="(420,1660)"/> <wire from="(600,380)" to="(600,390)"/> <wire from="(590,690)" to="(590,700)"/> <wire from="(1080,1020)" to="(1080,1040)"/> <wire from="(490,1280)" to="(670,1280)"/> <wire from="(1340,1050)" to="(1380,1050)"/> <wire from="(500,580)" to="(620,580)"/> <wire from="(110,610)" to="(160,610)"/> <wire from="(280,1500)" to="(280,1520)"/> <wire from="(580,770)" to="(620,770)"/> <wire from="(520,620)" to="(620,620)"/> <wire from="(1130,1030)" to="(1130,1290)"/> <wire from="(270,1330)" to="(270,1360)"/> <wire from="(270,1100)" to="(310,1100)"/> <wire from="(420,1260)" to="(450,1260)"/> <wire from="(250,380)" to="(250,480)"/> <wire from="(290,1140)" to="(310,1140)"/> <wire from="(290,660)" to="(310,660)"/> <wire from="(350,560)" to="(370,560)"/> <wire from="(1190,1070)" to="(1220,1070)"/> <wire from="(1040,760)" to="(1070,760)"/> <wire from="(200,1710)" to="(530,1710)"/> <wire from="(160,540)" to="(170,540)"/> <wire from="(730,1750)" to="(740,1750)"/> <wire from="(500,1520)" to="(510,1520)"/> <wire from="(1280,1010)" to="(1300,1010)"/> <wire from="(1280,370)" to="(1300,370)"/> <wire from="(420,1030)" to="(420,1160)"/> <wire from="(710,1020)" to="(760,1020)"/> <wire from="(1090,1000)" to="(1090,1030)"/> <wire from="(650,1000)" to="(650,1260)"/> <wire from="(270,1300)" to="(270,1320)"/> <wire from="(500,240)" to="(500,580)"/> <wire from="(420,970)" to="(420,1000)"/> <wire from="(370,1560)" to="(370,1590)"/> <wire from="(110,430)" to="(150,430)"/> <wire from="(1070,1300)" to="(1070,1310)"/> <wire from="(480,870)" to="(580,870)"/> <wire from="(870,360)" to="(870,510)"/> <wire from="(580,330)" to="(580,350)"/> <wire from="(190,100)" to="(190,130)"/> <wire from="(1060,730)" to="(1110,730)"/> <wire from="(260,520)" to="(260,620)"/> <wire from="(250,190)" to="(250,290)"/> <wire from="(290,950)" to="(310,950)"/> <wire from="(250,1070)" to="(270,1070)"/> <wire from="(190,50)" to="(210,50)"/> <wire from="(210,1190)" to="(230,1190)"/> <wire from="(1080,1090)" to="(1110,1090)"/> <wire from="(250,1080)" to="(260,1080)"/> <wire from="(370,440)" to="(370,490)"/> <wire from="(290,360)" to="(290,420)"/> <wire from="(110,1810)" to="(180,1810)"/> <wire from="(1200,1270)" to="(1200,1310)"/> <wire from="(1040,740)" to="(1060,740)"/> <wire from="(1150,1330)" to="(1170,1330)"/> <wire from="(250,680)" to="(310,680)"/> <wire from="(650,1260)" to="(650,1460)"/> <wire from="(460,890)" to="(520,890)"/> <wire from="(1080,1280)" to="(1080,1300)"/> <wire from="(570,370)" to="(620,370)"/> <wire from="(1070,400)" to="(1110,400)"/> <wire from="(130,490)" to="(130,500)"/> <wire from="(1260,1070)" to="(1300,1070)"/> <wire from="(1340,1310)" to="(1380,1310)"/> <wire from="(650,1740)" to="(690,1740)"/> <wire from="(260,970)" to="(260,1050)"/> <wire from="(850,660)" to="(890,660)"/> <wire from="(270,560)" to="(310,560)"/> <wire from="(270,1040)" to="(310,1040)"/> <wire from="(270,1360)" to="(310,1360)"/> <wire from="(350,320)" to="(390,320)"/> <wire from="(1040,1000)" to="(1090,1000)"/> <wire from="(870,700)" to="(890,700)"/> <wire from="(380,520)" to="(410,520)"/> <wire from="(200,1660)" to="(420,1660)"/> <wire from="(290,1080)" to="(310,1080)"/> <wire from="(290,600)" to="(310,600)"/> <wire from="(660,1760)" to="(690,1760)"/> <wire from="(290,1400)" to="(310,1400)"/> <wire from="(520,510)" to="(870,510)"/> <wire from="(590,410)" to="(620,410)"/> <wire from="(1190,1330)" to="(1220,1330)"/> <wire from="(1040,700)" to="(1070,700)"/> <wire from="(250,1050)" to="(260,1050)"/> <wire from="(740,1360)" to="(870,1360)"/> <wire from="(1280,1270)" to="(1300,1270)"/> <wire from="(1360,1030)" to="(1380,1030)"/> <wire from="(1090,760)" to="(1110,760)"/> <wire from="(720,1520)" to="(730,1520)"/> <wire from="(1200,710)" to="(1220,710)"/> <wire from="(1070,1080)" to="(1070,1100)"/> <wire from="(420,1290)" to="(420,1420)"/> <wire from="(710,1280)" to="(760,1280)"/> <wire from="(1070,370)" to="(1110,370)"/> <wire from="(1080,1090)" to="(1080,1120)"/> <wire from="(1090,1260)" to="(1090,1290)"/> <wire from="(430,440)" to="(430,460)"/> <wire from="(1040,340)" to="(1080,340)"/> <wire from="(410,900)" to="(410,930)"/> <wire from="(420,1230)" to="(420,1260)"/> <wire from="(1060,1070)" to="(1060,1080)"/> <wire from="(190,780)" to="(550,780)"/> <wire from="(1290,140)" to="(1300,140)"/> <wire from="(350,620)" to="(380,620)"/> <wire from="(290,1210)" to="(310,1210)"/> <wire from="(250,1330)" to="(270,1330)"/> <wire from="(800,340)" to="(890,340)"/> <wire from="(350,1590)" to="(370,1590)"/> <wire from="(740,1260)" to="(740,1360)"/> <wire from="(270,1520)" to="(280,1520)"/> <wire from="(750,1620)" to="(750,1810)"/> <wire from="(250,1340)" to="(260,1340)"/> <wire from="(480,260)" to="(620,260)"/> <wire from="(1080,1350)" to="(1110,1350)"/> <wire from="(270,440)" to="(270,490)"/> <wire from="(290,300)" to="(290,360)"/> <wire from="(1090,1100)" to="(1090,1140)"/> <wire from="(1280,330)" to="(1280,370)"/> <wire from="(1360,690)" to="(1360,1030)"/> <wire from="(1040,460)" to="(1090,460)"/> <wire from="(570,310)" to="(620,310)"/> <wire from="(570,790)" to="(620,790)"/> <wire from="(1260,1330)" to="(1300,1330)"/> <wire from="(300,1540)" to="(420,1540)"/> <wire from="(740,1000)" to="(740,1260)"/> <wire from="(110,330)" to="(160,330)"/> <wire from="(580,330)" to="(620,330)"/> <wire from="(200,1610)" to="(310,1610)"/> <wire from="(290,810)" to="(460,810)"/> <wire from="(260,1230)" to="(260,1310)"/> <wire from="(580,400)" to="(580,430)"/> <wire from="(390,850)" to="(390,880)"/> <wire from="(850,660)" to="(850,1000)"/> <wire from="(840,1620)" to="(840,1640)"/> <wire from="(650,850)" to="(650,1000)"/> <wire from="(270,1300)" to="(310,1300)"/> <wire from="(160,300)" to="(160,330)"/> <wire from="(590,730)" to="(590,750)"/> <wire from="(1040,1260)" to="(1090,1260)"/> <wire from="(290,1020)" to="(310,1020)"/> <wire from="(290,540)" to="(310,540)"/> <wire from="(350,440)" to="(370,440)"/> <wire from="(290,1340)" to="(310,1340)"/> <wire from="(590,350)" to="(620,350)"/> <wire from="(110,520)" to="(130,520)"/> <wire from="(1080,360)" to="(1110,360)"/> <wire from="(250,1310)" to="(260,1310)"/> <wire from="(370,510)" to="(370,560)"/> <wire from="(1360,1290)" to="(1380,1290)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(1200,330)" to="(1220,330)"/> <wire from="(350,1160)" to="(420,1160)"/> <wire from="(1280,1050)" to="(1300,1050)"/> <wire from="(470,930)" to="(470,1000)"/> <wire from="(1070,1340)" to="(1070,1360)"/> <wire from="(110,290)" to="(170,290)"/> <wire from="(1080,1350)" to="(1080,1380)"/> <wire from="(480,260)" to="(480,600)"/> <wire from="(400,1020)" to="(400,1100)"/> <wire from="(1040,440)" to="(1080,440)"/> <wire from="(750,1500)" to="(750,1520)"/> <wire from="(1070,700)" to="(1070,710)"/> <wire from="(1060,1330)" to="(1060,1340)"/> <wire from="(750,1810)" to="(860,1810)"/> <wire from="(380,520)" to="(380,620)"/> <wire from="(500,850)" to="(650,850)"/> <wire from="(190,550)" to="(190,780)"/> <wire from="(350,1040)" to="(380,1040)"/> <wire from="(110,910)" to="(390,910)"/> <wire from="(110,490)" to="(130,490)"/> <wire from="(150,530)" to="(170,530)"/> <wire from="(740,1360)" to="(740,1460)"/> <wire from="(870,1300)" to="(870,1360)"/> <wire from="(300,850)" to="(310,850)"/> <wire from="(1040,380)" to="(1110,380)"/> <wire from="(170,470)" to="(240,470)"/> <wire from="(1420,360)" to="(1440,360)"/> <wire from="(1090,1360)" to="(1090,1400)"/> <wire from="(1200,670)" to="(1200,710)"/> <wire from="(1090,350)" to="(1110,350)"/> <wire from="(350,970)" to="(420,970)"/> <wire from="(350,500)" to="(410,500)"/> <wire from="(590,350)" to="(590,360)"/> <wire from="(1080,680)" to="(1080,700)"/> <wire from="(1070,1080)" to="(1110,1080)"/> <wire from="(1340,710)" to="(1380,710)"/> <wire from="(660,1500)" to="(660,1760)"/> <wire from="(500,240)" to="(620,240)"/> <wire from="(390,530)" to="(390,680)"/> <wire from="(580,430)" to="(620,430)"/> <wire from="(520,280)" to="(620,280)"/> <wire from="(570,650)" to="(570,680)"/> <wire from="(530,1500)" to="(530,1710)"/> <wire from="(270,440)" to="(310,440)"/> <wire from="(350,680)" to="(390,680)"/> <wire from="(290,720)" to="(290,810)"/> <wire from="(650,1000)" to="(670,1000)"/> <wire from="(290,480)" to="(310,480)"/> <wire from="(290,1280)" to="(310,1280)"/> <wire from="(1040,420)" to="(1070,420)"/> <wire from="(300,1500)" to="(300,1540)"/> <wire from="(270,510)" to="(270,560)"/> <wire from="(170,500)" to="(310,500)"/> <wire from="(1280,1310)" to="(1300,1310)"/> <wire from="(110,1660)" to="(180,1660)"/> <wire from="(350,1420)" to="(420,1420)"/> <wire from="(1280,670)" to="(1300,670)"/> <wire from="(160,400)" to="(160,470)"/> <wire from="(1130,690)" to="(1130,1030)"/> <wire from="(1040,1020)" to="(1080,1020)"/> <wire from="(1070,1050)" to="(1110,1050)"/> <wire from="(870,1040)" to="(870,1300)"/> <wire from="(240,540)" to="(240,740)"/> <wire from="(1090,660)" to="(1090,690)"/> <wire from="(400,540)" to="(400,740)"/> <wire from="(110,400)" to="(160,400)"/> <wire from="(400,1280)" to="(400,1360)"/> <wire from="(110,160)" to="(1300,160)"/> <wire from="(550,760)" to="(550,780)"/> <wire from="(370,510)" to="(410,510)"/> <wire from="(1060,390)" to="(1110,390)"/> <wire from="(1040,400)" to="(1060,400)"/> <wire from="(570,730)" to="(590,730)"/> <wire from="(350,1300)" to="(380,1300)"/> <wire from="(570,720)" to="(600,720)"/> <wire from="(800,1020)" to="(890,1020)"/> <wire from="(1080,750)" to="(1110,750)"/> <wire from="(300,1590)" to="(310,1590)"/> <wire from="(290,660)" to="(290,720)"/> <wire from="(240,320)" to="(310,320)"/> <wire from="(1280,1010)" to="(1280,1050)"/> <wire from="(830,1640)" to="(840,1640)"/> <wire from="(570,740)" to="(580,740)"/> <wire from="(350,1230)" to="(420,1230)"/> <wire from="(290,1140)" to="(290,1210)"/> <wire from="(1070,1340)" to="(1110,1340)"/> <wire from="(740,1620)" to="(740,1750)"/> <wire from="(260,1160)" to="(310,1160)"/> <wire from="(1260,730)" to="(1300,730)"/> <wire from="(390,890)" to="(390,910)"/> <wire from="(850,320)" to="(890,320)"/> <wire from="(240,320)" to="(240,470)"/> <wire from="(650,1660)" to="(650,1740)"/> <wire from="(1040,660)" to="(1090,660)"/> <wire from="(1040,1140)" to="(1090,1140)"/> <wire from="(170,510)" to="(270,510)"/> <wire from="(570,750)" to="(570,790)"/> <wire from="(520,1500)" to="(520,1540)"/> <wire from="(870,360)" to="(890,360)"/> <wire from="(110,550)" to="(140,550)"/> <wire from="(570,700)" to="(590,700)"/> <wire from="(170,520)" to="(260,520)"/> <wire from="(600,730)" to="(620,730)"/> <wire from="(650,1260)" to="(670,1260)"/> <wire from="(290,420)" to="(310,420)"/> <wire from="(1360,160)" to="(1360,350)"/> <wire from="(190,50)" to="(190,90)"/> <wire from="(1040,360)" to="(1070,360)"/> <wire from="(400,540)" to="(410,540)"/> <wire from="(200,1760)" to="(660,1760)"/> <wire from="(1080,1040)" to="(1110,1040)"/> <wire from="(170,530)" to="(250,530)"/> <wire from="(160,300)" to="(170,300)"/> <wire from="(1360,690)" to="(1380,690)"/> <wire from="(170,540)" to="(240,540)"/> <wire from="(110,1760)" to="(180,1760)"/> <wire from="(1090,420)" to="(1110,420)"/> <wire from="(1200,1010)" to="(1220,1010)"/> <wire from="(1200,370)" to="(1220,370)"/> <wire from="(290,950)" to="(290,1020)"/> <wire from="(1070,740)" to="(1070,760)"/> <wire from="(190,90)" to="(250,90)"/> <wire from="(1040,1120)" to="(1080,1120)"/> <wire from="(1040,1280)" to="(1080,1280)"/> <wire from="(1070,1310)" to="(1110,1310)"/> <wire from="(260,970)" to="(310,970)"/> <wire from="(350,740)" to="(400,740)"/> <wire from="(1080,750)" to="(1080,780)"/> <wire from="(260,1080)" to="(260,1160)"/> <wire from="(580,870)" to="(580,1540)"/> <wire from="(380,1010)" to="(380,1040)"/> <wire from="(1060,730)" to="(1060,740)"/> <wire from="(420,1660)" to="(650,1660)"/> <wire from="(160,90)" to="(190,90)"/> <wire from="(740,1000)" to="(760,1000)"/> <wire from="(1040,1060)" to="(1110,1060)"/> <wire from="(800,1280)" to="(890,1280)"/> <wire from="(650,1500)" to="(650,1660)"/> <wire from="(520,280)" to="(520,510)"/> <wire from="(290,600)" to="(290,660)"/> <wire from="(1090,760)" to="(1090,800)"/> <wire from="(290,1080)" to="(290,1140)"/> <wire from="(1340,160)" to="(1360,160)"/> <wire from="(290,1400)" to="(290,1460)"/> <wire from="(1420,1040)" to="(1440,1040)"/> <wire from="(1280,1270)" to="(1280,1310)"/> <wire from="(1090,1030)" to="(1110,1030)"/> <wire from="(240,740)" to="(310,740)"/> <wire from="(1360,350)" to="(1360,690)"/> <wire from="(600,720)" to="(600,730)"/> <wire from="(570,450)" to="(620,450)"/> <wire from="(500,580)" to="(500,850)"/> <wire from="(260,620)" to="(310,620)"/> <wire from="(260,1420)" to="(310,1420)"/> <wire from="(250,190)" to="(1130,190)"/> <wire from="(850,320)" to="(850,660)"/> <wire from="(130,500)" to="(170,500)"/> <wire from="(590,390)" to="(590,410)"/> <wire from="(1040,1400)" to="(1090,1400)"/> <wire from="(140,520)" to="(170,520)"/> <wire from="(740,1500)" to="(740,1540)"/> <wire from="(520,510)" to="(520,620)"/> <wire from="(290,360)" to="(310,360)"/> <wire from="(150,430)" to="(150,480)"/> <wire from="(1130,190)" to="(1130,350)"/> <wire from="(1040,1100)" to="(1070,1100)"/> <wire from="(1080,1300)" to="(1110,1300)"/> <wire from="(110,870)" to="(310,870)"/> <wire from="(380,1010)" to="(450,1010)"/> <wire from="(1200,1270)" to="(1220,1270)"/> <wire from="(1280,710)" to="(1300,710)"/> <wire from="(290,1210)" to="(290,1280)"/> <wire from="(470,1000)" to="(470,1260)"/> <wire from="(190,780)" to="(190,1170)"/> <wire from="(1040,1380)" to="(1080,1380)"/> <wire from="(260,1230)" to="(310,1230)"/> <wire from="(260,1340)" to="(260,1420)"/> <wire from="(380,1270)" to="(380,1300)"/> <wire from="(1070,360)" to="(1070,370)"/> <wire from="(160,250)" to="(160,280)"/> <wire from="(580,670)" to="(580,690)"/> <wire from="(350,850)" to="(390,850)"/> <wire from="(1060,1070)" to="(1110,1070)"/> <wire from="(730,1620)" to="(730,1640)"/> <wire from="(140,490)" to="(170,490)"/> <wire from="(110,460)" to="(140,460)"/> <wire from="(350,380)" to="(380,380)"/> <wire from="(740,1260)" to="(760,1260)"/> <wire from="(580,1540)" to="(740,1540)"/> <wire from="(1040,1320)" to="(1110,1320)"/> <wire from="(290,540)" to="(290,600)"/> <wire from="(290,1020)" to="(290,1080)"/> <wire from="(290,1500)" to="(290,1560)"/> <wire from="(290,1340)" to="(290,1400)"/> <wire from="(1200,330)" to="(1200,370)"/> <wire from="(1420,1300)" to="(1440,1300)"/> <wire from="(1040,1080)" to="(1060,1080)"/> <wire from="(1150,390)" to="(1170,390)"/> <wire from="(1090,1290)" to="(1110,1290)"/> <wire from="(1080,340)" to="(1080,360)"/> <wire from="(570,710)" to="(620,710)"/> <wire from="(250,380)" to="(310,380)"/> <wire from="(400,1020)" to="(450,1020)"/> <wire from="(1070,740)" to="(1110,740)"/> <wire from="(130,510)" to="(130,520)"/> <wire from="(1340,370)" to="(1380,370)"/> <wire from="(110,250)" to="(160,250)"/> <wire from="(250,530)" to="(250,680)"/> <wire from="(850,1000)" to="(890,1000)"/> <wire from="(570,310)" to="(570,340)"/> <wire from="(110,580)" to="(150,580)"/> <wire from="(140,520)" to="(140,550)"/> <wire from="(640,1500)" to="(640,1520)"/> <wire from="(870,1040)" to="(890,1040)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(250,1060)" to="(270,1060)"/> <wire from="(590,750)" to="(620,750)"/> <wire from="(150,480)" to="(170,480)"/> <wire from="(210,1180)" to="(230,1180)"/> <wire from="(1190,390)" to="(1220,390)"/> <wire from="(150,530)" to="(150,580)"/> <wire from="(1040,1040)" to="(1070,1040)"/> <wire from="(1040,1360)" to="(1070,1360)"/> <wire from="(870,510)" to="(870,700)"/> <wire from="(860,1620)" to="(860,1810)"/> <wire from="(380,1270)" to="(450,1270)"/> <wire from="(1090,1100)" to="(1110,1100)"/> <wire from="(1200,1050)" to="(1220,1050)"/> <wire from="(1280,330)" to="(1300,330)"/> <wire from="(160,540)" to="(160,610)"/> <wire from="(1130,350)" to="(1130,690)"/> <wire from="(190,130)" to="(250,130)"/> <wire from="(190,290)" to="(250,290)"/> <wire from="(1070,710)" to="(1110,710)"/> <wire from="(1040,680)" to="(1080,680)"/> <wire from="(850,1000)" to="(850,1260)"/> <wire from="(350,1100)" to="(400,1100)"/> <wire from="(430,440)" to="(550,440)"/> <wire from="(1090,320)" to="(1090,350)"/> <wire from="(390,320)" to="(390,470)"/> <wire from="(1360,1030)" to="(1360,1290)"/> <wire from="(550,420)" to="(550,440)"/> <wire from="(510,1500)" to="(510,1520)"/> <wire from="(370,490)" to="(410,490)"/> <wire from="(1060,1330)" to="(1110,1330)"/> <wire from="(200,1810)" to="(750,1810)"/> <wire from="(230,1090)" to="(230,1180)"/> <wire from="(110,80)" to="(140,80)"/> <wire from="(570,390)" to="(590,390)"/> <wire from="(420,1030)" to="(450,1030)"/> <wire from="(390,530)" to="(410,530)"/> <wire from="(570,380)" to="(600,380)"/> <wire from="(800,680)" to="(890,680)"/> <wire from="(1150,730)" to="(1220,730)"/> <wire from="(230,50)" to="(250,50)"/> <wire from="(850,1520)" to="(850,1580)"/> <wire from="(1080,410)" to="(1110,410)"/> <wire from="(480,600)" to="(620,600)"/> <wire from="(160,470)" to="(170,470)"/> <wire from="(290,480)" to="(290,540)"/> <wire from="(110,1610)" to="(180,1610)"/> <wire from="(290,1280)" to="(290,1340)"/> <wire from="(1280,670)" to="(1280,710)"/> <wire from="(1040,1340)" to="(1060,1340)"/> <wire from="(570,400)" to="(580,400)"/> <comp loc="(1040,1240)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp loc="(350,310)" name="D-latch"/> <comp loc="(350,610)" name="D-latch"/> <comp loc="(350,1410)" name="D-latch"/> <comp lib="1" loc="(1420,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(350,730)" name="D-latch"/> <comp lib="0" loc="(720,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(110,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp loc="(350,1350)" name="D-latch"/> <comp lib="6" loc="(496,1449)" name="Text"> <a name="text" val="PD/SR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1018,842)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="6" loc="(556,1449)" name="Text"> <a name="text" val="STEP"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(800,220)" name="SHIFT_REG_LOAD"/> <comp lib="1" loc="(1420,1300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(110,1660)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0''"/> </comp> <comp loc="(1040,640)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp loc="(350,1600)" name="D-latch"/> <comp lib="0" loc="(110,1760)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp loc="(350,670)" name="D-latch"/> <comp lib="1" loc="(520,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(1190,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,1710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(350,430)" name="D-latch"/> <comp loc="(1340,380)" name="D-latch"/> <comp loc="(350,550)" name="D-latch"/> <comp lib="1" loc="(730,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1440,1040)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1300,330)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp loc="(1260,1320)" name="D-latch"/> <comp lib="0" loc="(110,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH1"/> </comp> <comp loc="(350,1030)" name="D-latch"/> <comp lib="0" loc="(1300,1010)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1220,670)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="0" loc="(830,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(222,1361)" name="Text"> <a name="text" val="odd bits"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,1810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/FO"/> </comp> <comp lib="0" loc="(270,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(350,1090)" name="D-latch"/> <comp lib="0" loc="(110,330)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH2"/> </comp> <comp lib="0" loc="(140,80)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp loc="(1040,300)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="1" loc="(740,1580)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp loc="(800,1010)" name="D-latch"/> <comp lib="0" loc="(720,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(1440,360)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC0"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(490,1020)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(200,1610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(300,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,460)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="2" loc="(1150,730)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp loc="(350,1220)" name="D-latch"/> <comp lib="0" loc="(230,1300)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(650,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1220,330)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp loc="(710,1270)" name="D-latch"/> <comp loc="(1340,1060)" name="D-latch"/> <comp lib="0" loc="(110,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> </comp> <comp lib="0" loc="(250,50)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/CLPB"/> </comp> <comp loc="(800,560)" name="SHIFT_REG_LOAD"/> <comp lib="0" loc="(110,250)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="FH0"/> </comp> <comp lib="0" loc="(1220,1270)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> <comp lib="0" loc="(190,1170)" name="Splitter"> <a name="incoming" val="8"/> <a name="appear" val="right"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> </comp> <comp lib="1" loc="(200,1810)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(430,460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp loc="(710,1010)" name="D-latch"/> <comp lib="0" loc="(500,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(1022,1180)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(190,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> <a name="appear" val="center"/> </comp> <comp lib="0" loc="(110,1710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TA"/> </comp> <comp lib="2" loc="(1150,1070)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp loc="(350,490)" name="D-latch"/> <comp lib="0" loc="(1300,670)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(716,1450)" name="Text"> <a name="text" val="NEXT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(821,1449)" name="Text"> <a name="text" val="STEP2"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1260,1060)" name="D-latch"/> <comp lib="0" loc="(300,1590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(200,1760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1190,1070)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(550,760)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(350,370)" name="D-latch"/> <comp lib="0" loc="(250,90)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(225,1036)" name="Text"> <a name="text" val="even bits"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,420)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="2" loc="(490,1280)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="2"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(190,550)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> <a name="appear" val="right"/> </comp> <comp lib="1" loc="(1190,1330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> </comp> <comp lib="0" loc="(110,490)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="2" loc="(1150,1330)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp loc="(1260,720)" name="D-latch"/> <comp lib="1" loc="(1420,1040)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1420,700)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(290,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(630,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(250,130)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(265,1450)" name="Text"> <a name="text" val="PD/SEL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(1340,720)" name="D-latch"/> <comp lib="1" loc="(740,1460)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="0" loc="(1440,1300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(1300,1270)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(619,1450)" name="Text"> <a name="text" val="SRLOAD"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(350,860)" name="D-latch"/> <comp loc="(1340,1320)" name="D-latch"/> <comp lib="2" loc="(1150,390)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="select" val="3"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(200,1660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(350,960)" name="D-latch"/> <comp loc="(1040,980)" name="SHIFT_REG"> <a name="label" val="SHIFT REGISTER"/> </comp> <comp lib="0" loc="(110,430)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(230,1090)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="1" loc="(230,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1290,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(350,1290)" name="D-latch"/> <comp loc="(350,1150)" name="D-latch"/> <comp loc="(1340,150)" name="D-latch"/> <comp lib="6" loc="(1034,1439)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(410,900)" name="Splitter"> <a name="facing" val="west"/> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(110,870)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="THO1"/> </comp> <comp lib="0" loc="(110,520)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp loc="(800,1270)" name="D-latch"/> <comp loc="(1260,380)" name="D-latch"/> <comp lib="1" loc="(850,1580)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1440,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="BGC1"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(1022,499)" name="Text"> <a name="text" val="reverse order of register outputs"/> </comp> <comp lib="0" loc="(1220,1010)" name="Tunnel"> <a name="label" val="/PCLK2"/> </comp> </circuit> <circuit name="SHIFT_REG"> <a name="circuit" val="SHIFT_REG"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M91,51 Q95,61 99,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff590e" height="181" stroke="#000000" stroke-width="2" width="150" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="74">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="114">NEXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="94">IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="159" y="144">DATA OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="74">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="214">0</text> <circ-port height="8" pin="90,90" width="8" x="46" y="66"/> <circ-port height="8" pin="90,140" width="8" x="46" y="86"/> <circ-port height="8" pin="90,40" width="8" x="46" y="106"/> <circ-port height="10" pin="320,140" width="10" x="195" y="205"/> <circ-port height="10" pin="320,220" width="10" x="195" y="185"/> <circ-port height="10" pin="320,300" width="10" x="195" y="165"/> <circ-port height="10" pin="320,380" width="10" x="195" y="145"/> <circ-port height="10" pin="320,460" width="10" x="195" y="125"/> <circ-port height="10" pin="320,540" width="10" x="195" y="105"/> <circ-port height="10" pin="320,620" width="10" x="195" y="85"/> <circ-port height="10" pin="320,700" width="10" x="195" y="65"/> <circ-anchor facing="east" height="6" width="6" x="197" y="47"/> </appear> <wire from="(200,220)" to="(250,220)"/> <wire from="(200,140)" to="(250,140)"/> <wire from="(200,380)" to="(250,380)"/> <wire from="(200,540)" to="(250,540)"/> <wire from="(200,700)" to="(250,700)"/> <wire from="(200,300)" to="(250,300)"/> <wire from="(200,460)" to="(250,460)"/> <wire from="(200,620)" to="(250,620)"/> <wire from="(230,40)" to="(230,120)"/> <wire from="(230,200)" to="(230,280)"/> <wire from="(230,360)" to="(230,440)"/> <wire from="(230,120)" to="(230,200)"/> <wire from="(230,280)" to="(230,360)"/> <wire from="(230,600)" to="(230,680)"/> <wire from="(230,440)" to="(230,520)"/> <wire from="(230,520)" to="(230,600)"/> <wire from="(90,90)" to="(120,90)"/> <wire from="(290,460)" to="(310,460)"/> <wire from="(290,620)" to="(310,620)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(290,540)" to="(310,540)"/> <wire from="(290,220)" to="(310,220)"/> <wire from="(290,380)" to="(310,380)"/> <wire from="(230,120)" to="(250,120)"/> <wire from="(230,600)" to="(250,600)"/> <wire from="(230,280)" to="(250,280)"/> <wire from="(230,440)" to="(250,440)"/> <wire from="(230,200)" to="(250,200)"/> <wire from="(230,360)" to="(250,360)"/> <wire from="(230,680)" to="(250,680)"/> <wire from="(230,520)" to="(250,520)"/> <wire from="(90,40)" to="(230,40)"/> <wire from="(90,140)" to="(160,140)"/> <wire from="(120,120)" to="(120,200)"/> <wire from="(120,200)" to="(120,280)"/> <wire from="(120,280)" to="(120,360)"/> <wire from="(120,360)" to="(120,440)"/> <wire from="(120,440)" to="(120,520)"/> <wire from="(120,520)" to="(120,600)"/> <wire from="(120,600)" to="(120,680)"/> <wire from="(140,170)" to="(310,170)"/> <wire from="(140,490)" to="(310,490)"/> <wire from="(140,410)" to="(310,410)"/> <wire from="(140,250)" to="(310,250)"/> <wire from="(140,330)" to="(310,330)"/> <wire from="(140,650)" to="(310,650)"/> <wire from="(140,570)" to="(310,570)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,280)" to="(160,280)"/> <wire from="(120,200)" to="(160,200)"/> <wire from="(310,300)" to="(310,330)"/> <wire from="(310,140)" to="(310,170)"/> <wire from="(310,460)" to="(310,490)"/> <wire from="(310,620)" to="(310,650)"/> <wire from="(310,380)" to="(310,410)"/> <wire from="(310,220)" to="(310,250)"/> <wire from="(310,540)" to="(310,570)"/> <wire from="(120,680)" to="(160,680)"/> <wire from="(120,600)" to="(160,600)"/> <wire from="(120,520)" to="(160,520)"/> <wire from="(120,440)" to="(160,440)"/> <wire from="(120,360)" to="(160,360)"/> <wire from="(120,90)" to="(120,120)"/> <wire from="(290,700)" to="(320,700)"/> <wire from="(140,220)" to="(160,220)"/> <wire from="(140,300)" to="(160,300)"/> <wire from="(140,380)" to="(160,380)"/> <wire from="(140,620)" to="(160,620)"/> <wire from="(140,540)" to="(160,540)"/> <wire from="(140,460)" to="(160,460)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(140,570)" to="(140,620)"/> <wire from="(140,410)" to="(140,460)"/> <wire from="(140,250)" to="(140,300)"/> <wire from="(140,650)" to="(140,700)"/> <wire from="(140,490)" to="(140,540)"/> <wire from="(140,330)" to="(140,380)"/> <wire from="(140,170)" to="(140,220)"/> <wire from="(310,140)" to="(320,140)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(310,460)" to="(320,460)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(310,220)" to="(320,220)"/> <wire from="(310,380)" to="(320,380)"/> <wire from="(310,540)" to="(320,540)"/> <comp lib="4" loc="(200,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,440)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(320,460)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 4"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(320,300)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 2"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,220)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(200,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,620)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 6"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(320,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DATA IN"/> </comp> <comp lib="4" loc="(290,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(290,600)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,140)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 0"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(200,280)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,380)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT 3"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(290,680)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NEXT"/> </comp> <comp lib="4" loc="(200,520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,360)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,200)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(200,120)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> </circuit> <circuit name="SHIFT_REG_LOAD"> <a name="circuit" val="SHIFT_REG_LOAD"/> <a name="clabel" val=""/> <a name="clabelup" val="east"/> <a name="clabelfont" val="SansSerif plain 12"/> <appear> <path d="M91,51 Q95,61 99,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff7510" height="250" stroke="#000000" stroke-width="2" width="180" x="50" y="50"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="144">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="74">LOAD</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="94" y="213">DATA INPUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="209" y="174">OUT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="285">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="95">STEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="114">NEXT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="141" y="46">SHIFT REGISTER LOADABLE</text> <circ-port height="8" pin="100,150" width="8" x="46" y="66"/> <circ-port height="8" pin="100,100" width="8" x="46" y="86"/> <circ-port height="8" pin="100,50" width="8" x="46" y="106"/> <circ-port height="10" pin="400,910" width="10" x="225" y="165"/> <circ-port height="8" pin="100,210" width="8" x="46" y="136"/> <circ-port height="8" pin="100,310" width="8" x="46" y="156"/> <circ-port height="8" pin="100,410" width="8" x="46" y="176"/> <circ-port height="8" pin="100,510" width="8" x="46" y="196"/> <circ-port height="8" pin="100,610" width="8" x="46" y="216"/> <circ-port height="8" pin="100,710" width="8" x="46" y="236"/> <circ-port height="8" pin="100,810" width="8" x="46" y="256"/> <circ-port height="8" pin="100,910" width="8" x="46" y="276"/> <circ-anchor facing="east" height="6" width="6" x="227" y="47"/> </appear> <wire from="(310,50)" to="(310,190)"/> <wire from="(290,450)" to="(390,450)"/> <wire from="(290,250)" to="(390,250)"/> <wire from="(290,650)" to="(390,650)"/> <wire from="(290,850)" to="(390,850)"/> <wire from="(100,150)" to="(140,150)"/> <wire from="(170,450)" to="(270,450)"/> <wire from="(170,250)" to="(270,250)"/> <wire from="(170,650)" to="(270,650)"/> <wire from="(170,850)" to="(270,850)"/> <wire from="(370,910)" to="(400,910)"/> <wire from="(390,310)" to="(390,350)"/> <wire from="(390,710)" to="(390,750)"/> <wire from="(390,510)" to="(390,550)"/> <wire from="(100,50)" to="(310,50)"/> <wire from="(250,310)" to="(330,310)"/> <wire from="(250,510)" to="(330,510)"/> <wire from="(250,910)" to="(330,910)"/> <wire from="(250,710)" to="(330,710)"/> <wire from="(170,250)" to="(170,310)"/> <wire from="(170,450)" to="(170,510)"/> <wire from="(170,650)" to="(170,710)"/> <wire from="(170,850)" to="(170,910)"/> <wire from="(170,510)" to="(210,510)"/> <wire from="(170,310)" to="(210,310)"/> <wire from="(170,710)" to="(210,710)"/> <wire from="(390,120)" to="(390,150)"/> <wire from="(170,910)" to="(210,910)"/> <wire from="(280,640)" to="(280,740)"/> <wire from="(280,240)" to="(280,340)"/> <wire from="(310,190)" to="(310,290)"/> <wire from="(280,440)" to="(280,540)"/> <wire from="(310,590)" to="(310,690)"/> <wire from="(310,390)" to="(310,490)"/> <wire from="(310,790)" to="(310,890)"/> <wire from="(100,810)" to="(130,810)"/> <wire from="(100,410)" to="(130,410)"/> <wire from="(100,210)" to="(130,210)"/> <wire from="(100,610)" to="(130,610)"/> <wire from="(140,300)" to="(140,400)"/> <wire from="(140,700)" to="(140,800)"/> <wire from="(140,500)" to="(140,600)"/> <wire from="(310,590)" to="(330,590)"/> <wire from="(310,390)" to="(330,390)"/> <wire from="(310,190)" to="(330,190)"/> <wire from="(370,410)" to="(390,410)"/> <wire from="(310,790)" to="(330,790)"/> <wire from="(370,610)" to="(390,610)"/> <wire from="(370,210)" to="(390,210)"/> <wire from="(370,810)" to="(390,810)"/> <wire from="(150,510)" to="(170,510)"/> <wire from="(150,910)" to="(170,910)"/> <wire from="(150,310)" to="(170,310)"/> <wire from="(150,710)" to="(170,710)"/> <wire from="(140,150)" to="(140,200)"/> <wire from="(200,890)" to="(210,890)"/> <wire from="(200,490)" to="(210,490)"/> <wire from="(200,690)" to="(210,690)"/> <wire from="(200,290)" to="(210,290)"/> <wire from="(290,350)" to="(390,350)"/> <wire from="(290,750)" to="(390,750)"/> <wire from="(290,150)" to="(390,150)"/> <wire from="(290,550)" to="(390,550)"/> <wire from="(170,350)" to="(270,350)"/> <wire from="(170,150)" to="(270,150)"/> <wire from="(170,550)" to="(270,550)"/> <wire from="(170,750)" to="(270,750)"/> <wire from="(280,100)" to="(280,140)"/> <wire from="(390,610)" to="(390,650)"/> <wire from="(390,810)" to="(390,850)"/> <wire from="(390,410)" to="(390,450)"/> <wire from="(390,210)" to="(390,250)"/> <wire from="(250,210)" to="(330,210)"/> <wire from="(250,810)" to="(330,810)"/> <wire from="(250,410)" to="(330,410)"/> <wire from="(250,610)" to="(330,610)"/> <wire from="(170,350)" to="(170,410)"/> <wire from="(170,550)" to="(170,610)"/> <wire from="(170,150)" to="(170,210)"/> <wire from="(170,750)" to="(170,810)"/> <wire from="(100,100)" to="(280,100)"/> <wire from="(170,210)" to="(210,210)"/> <wire from="(170,410)" to="(210,410)"/> <wire from="(170,610)" to="(210,610)"/> <wire from="(170,810)" to="(210,810)"/> <wire from="(280,740)" to="(280,840)"/> <wire from="(280,340)" to="(280,440)"/> <wire from="(310,490)" to="(310,590)"/> <wire from="(280,140)" to="(280,240)"/> <wire from="(310,290)" to="(310,390)"/> <wire from="(280,540)" to="(280,640)"/> <wire from="(310,690)" to="(310,790)"/> <wire from="(100,910)" to="(130,910)"/> <wire from="(100,510)" to="(130,510)"/> <wire from="(100,710)" to="(130,710)"/> <wire from="(100,310)" to="(130,310)"/> <wire from="(140,400)" to="(140,500)"/> <wire from="(140,800)" to="(140,900)"/> <wire from="(140,200)" to="(140,300)"/> <wire from="(140,600)" to="(140,700)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(310,490)" to="(330,490)"/> <wire from="(310,690)" to="(330,690)"/> <wire from="(310,890)" to="(330,890)"/> <wire from="(370,310)" to="(390,310)"/> <wire from="(370,510)" to="(390,510)"/> <wire from="(370,710)" to="(390,710)"/> <wire from="(150,610)" to="(170,610)"/> <wire from="(150,210)" to="(170,210)"/> <wire from="(150,410)" to="(170,410)"/> <wire from="(150,810)" to="(170,810)"/> <wire from="(200,590)" to="(210,590)"/> <wire from="(200,190)" to="(210,190)"/> <wire from="(200,790)" to="(210,790)"/> <wire from="(200,390)" to="(210,390)"/> <comp lib="1" loc="(150,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,550)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(200,490)" name="Constant"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="STEP"/> </comp> <comp lib="1" loc="(150,310)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(200,890)" name="Constant"/> <comp lib="0" loc="(100,910)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="7"/> </comp> <comp lib="4" loc="(250,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="6"/> </comp> <comp lib="4" loc="(250,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(250,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="2"/> </comp> <comp lib="1" loc="(150,510)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,750)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(150,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(370,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,910)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(370,390)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(200,290)" name="Constant"/> <comp lib="4" loc="(370,490)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,610)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(370,190)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(390,120)" name="Constant"> <a name="facing" val="south"/> </comp> <comp lib="4" loc="(370,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(370,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(270,350)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="3"/> </comp> <comp lib="0" loc="(100,710)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="5"/> </comp> <comp lib="0" loc="(200,690)" name="Constant"/> <comp lib="4" loc="(250,790)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(250,690)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(250,290)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(150,710)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(200,190)" name="Constant"/> <comp lib="1" loc="(150,810)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="4" loc="(250,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(270,450)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(200,390)" name="Constant"/> <comp lib="0" loc="(400,910)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="OUT"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="1"/> </comp> <comp lib="0" loc="(200,790)" name="Constant"/> <comp lib="4" loc="(370,890)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="0"/> </comp> <comp lib="1" loc="(270,150)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(270,850)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="4" loc="(250,590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="NEXT"/> </comp> <comp lib="1" loc="(270,650)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="4"/> </comp> <comp lib="1" loc="(270,250)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(200,590)" name="Constant"/> </circuit> <circuit name="PAR_OLD"> <a name="circuit" val="PAR_OLD"/> <a name="clabel" val="PICTURE ADDRESS GEN"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 22"/> <appear> <path d="M81,52 Q76,64 72,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ba16ff" height="600" stroke="#000000" stroke-width="2" width="410" x="70" y="50"/> <polyline fill="none" points="70,74 75,74" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="70,66 76,66" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="76,67 76,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="161" y="71">DB/PAR</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="114">RC</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="394">E/EV</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="234">/W6.2</text> <polyline fill="none" points="76,66 76,74" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="254">/W5.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="135">O8/16</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="334">/PA12</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="594">3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="314">H0''</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="615">TSTEP</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="174">OBSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="474">SC/CNT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="154">l1/32</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="254">/PA8</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="288" y="76">PPU DATA IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="130" y="564">OBJ TILE V. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="280" y="639">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="461" y="554">FH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="388" y="234">PPU ADDRESS</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="208" y="627">CPU DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="215">/W6.1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="515">/SH2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="468" y="394">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="454">F/AT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="374">BLNK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="354">/H2'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="460" y="514">FH0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="294">/W0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="360" y="69">7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="334">/H1'</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="430" y="434">TILE H. INDEX</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="140" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="451" y="274">/PA9</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="114">/PA1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="294">/PA10</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="354">/PA13</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="414">PAR/O</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="220" y="69">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="379" y="626">OBJ DATA BUS IN</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="94">/DBE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="494">F/TB</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="154">/PA3</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="309" y="639">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="214">/PA6</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="275">/W5.2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="234">/PA7</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="633">RESCL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="314">/PA11</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="174">/PA4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="457" y="594">TVO1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="100" y="194">BGSEL</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="534">0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="194">/PA5</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="468" y="474">4</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="134">/PA2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="450" y="94">/PA0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="434">#F/NT</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="461" y="534">FH1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="97" y="74">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="449" y="640">7</text> <circ-port height="8" pin="100,50" width="8" x="66" y="66"/> <circ-port height="8" pin="100,140" width="8" x="66" y="466"/> <circ-port height="8" pin="100,180" width="8" x="66" y="626"/> <circ-port height="8" pin="100,240" width="8" x="66" y="386"/> <circ-port height="8" pin="100,290" width="8" x="66" y="146"/> <circ-port height="8" pin="100,340" width="8" x="66" y="606"/> <circ-port height="8" pin="100,390" width="8" x="66" y="486"/> <circ-port height="8" pin="100,450" width="8" x="66" y="306"/> <circ-port height="8" pin="100,510" width="8" x="66" y="426"/> <circ-port height="8" pin="100,580" width="8" x="66" y="366"/> <circ-port height="8" pin="100,670" width="8" x="66" y="126"/> <circ-port height="8" pin="100,730" width="8" x="306" y="646"/> <circ-port height="8" pin="100,770" width="8" x="326" y="646"/> <circ-port height="8" pin="100,810" width="8" x="346" y="646"/> <circ-port height="8" pin="100,850" width="8" x="366" y="646"/> <circ-port height="8" pin="100,890" width="8" x="386" y="646"/> <circ-port height="8" pin="100,930" width="8" x="406" y="646"/> <circ-port height="8" pin="100,970" width="8" x="426" y="646"/> <circ-port height="8" pin="100,1010" width="8" x="446" y="646"/> <circ-port height="8" pin="100,1120" width="8" x="136" y="646"/> <circ-port height="8" pin="100,1170" width="8" x="156" y="646"/> <circ-port height="8" pin="100,1220" width="8" x="176" y="646"/> <circ-port height="8" pin="100,1270" width="8" x="196" y="646"/> <circ-port height="8" pin="100,1320" width="8" x="216" y="646"/> <circ-port height="8" pin="100,1370" width="8" x="236" y="646"/> <circ-port height="8" pin="100,1420" width="8" x="256" y="646"/> <circ-port height="8" pin="100,1470" width="8" x="276" y="646"/> <circ-port height="8" pin="100,1610" width="8" x="66" y="266"/> <circ-port height="8" pin="100,1670" width="8" x="66" y="206"/> <circ-port height="8" pin="100,1740" width="8" x="66" y="246"/> <circ-port height="8" pin="100,1800" width="8" x="66" y="226"/> <circ-port height="8" pin="100,1860" width="8" x="66" y="86"/> <circ-port height="8" pin="100,1920" width="8" x="66" y="106"/> <circ-port height="8" pin="100,2000" width="8" x="216" y="46"/> <circ-port height="8" pin="100,2030" width="8" x="236" y="46"/> <circ-port height="8" pin="100,2060" width="8" x="256" y="46"/> <circ-port height="8" pin="100,2090" width="8" x="276" y="46"/> <circ-port height="8" pin="100,2120" width="8" x="296" y="46"/> <circ-port height="8" pin="100,2150" width="8" x="316" y="46"/> <circ-port height="8" pin="100,2180" width="8" x="336" y="46"/> <circ-port height="8" pin="100,2210" width="8" x="356" y="46"/> <circ-port height="8" pin="100,2270" width="8" x="66" y="166"/> <circ-port height="8" pin="100,2310" width="8" x="66" y="186"/> <circ-port height="8" pin="100,2350" width="8" x="66" y="406"/> <circ-port height="10" pin="3100,590" width="10" x="475" y="85"/> <circ-port height="10" pin="3100,790" width="10" x="475" y="105"/> <circ-port height="10" pin="3100,990" width="10" x="475" y="125"/> <circ-port height="10" pin="3100,1190" width="10" x="475" y="145"/> <circ-port height="10" pin="3100,1390" width="10" x="475" y="165"/> <circ-port height="10" pin="3100,1790" width="10" x="475" y="185"/> <circ-port height="10" pin="3100,1990" width="10" x="475" y="205"/> <circ-port height="10" pin="3100,2190" width="10" x="475" y="225"/> <circ-port height="10" pin="3100,2390" width="10" x="475" y="245"/> <circ-port height="10" pin="3100,2590" width="10" x="475" y="265"/> <circ-port height="10" pin="3100,2790" width="10" x="475" y="285"/> <circ-port height="10" pin="3100,2990" width="10" x="475" y="305"/> <circ-port height="10" pin="320,2480" width="10" x="475" y="505"/> <circ-port height="10" pin="3100,3190" width="10" x="475" y="325"/> <circ-port height="10" pin="320,2590" width="10" x="475" y="525"/> <circ-port height="10" pin="320,2700" width="10" x="475" y="545"/> <circ-port height="10" pin="3100,3390" width="10" x="475" y="345"/> <circ-port height="10" pin="1300,70" width="10" x="475" y="385"/> <circ-port height="10" pin="1340,70" width="10" x="475" y="405"/> <circ-port height="10" pin="1380,70" width="10" x="475" y="425"/> <circ-port height="10" pin="1420,70" width="10" x="475" y="445"/> <circ-port height="10" pin="1460,70" width="10" x="475" y="465"/> <circ-port height="10" pin="1500,70" width="10" x="475" y="585"/> <circ-port height="8" pin="1850,70" width="8" x="66" y="446"/> <circ-port height="8" pin="1930,70" width="8" x="156" y="46"/> <circ-port height="8" pin="2060,70" width="8" x="66" y="326"/> <circ-port height="8" pin="2140,70" width="8" x="66" y="506"/> <circ-port height="8" pin="1610,70" width="8" x="66" y="586"/> <circ-port height="8" pin="1640,70" width="8" x="66" y="566"/> <circ-port height="8" pin="1670,70" width="8" x="66" y="546"/> <circ-port height="8" pin="1700,70" width="8" x="66" y="526"/> <circ-port height="8" pin="2660,70" width="8" x="66" y="346"/> <circ-port height="8" pin="100,1550" width="8" x="66" y="286"/> <circ-anchor facing="east" height="6" width="6" x="477" y="47"/> </appear> <wire from="(1890,610)" to="(1890,640)"/> <wire from="(620,3430)" to="(620,3630)"/> <wire from="(810,2020)" to="(810,2220)"/> <wire from="(2580,1720)" to="(2610,1720)"/> <wire from="(2840,2710)" to="(2840,2810)"/> <wire from="(770,2440)" to="(830,2440)"/> <wire from="(770,840)" to="(830,840)"/> <wire from="(2190,1660)" to="(2210,1660)"/> <wire from="(1090,2690)" to="(1090,2720)"/> <wire from="(1910,2630)" to="(1960,2630)"/> <wire from="(1010,50)" to="(1010,80)"/> <wire from="(2640,910)" to="(2710,910)"/> <wire from="(1610,70)" to="(1610,200)"/> <wire from="(1670,140)" to="(1730,140)"/> <wire from="(100,2120)" to="(130,2120)"/> <wire from="(750,3420)" to="(770,3420)"/> <wire from="(810,2520)" to="(830,2520)"/> <wire from="(2750,910)" to="(2800,910)"/> <wire from="(1000,3040)" to="(1010,3040)"/> <wire from="(2250,730)" to="(2300,730)"/> <wire from="(100,850)" to="(120,850)"/> <wire from="(100,1170)" to="(120,1170)"/> <wire from="(190,300)" to="(210,300)"/> <wire from="(1370,3390)" to="(1400,3390)"/> <wire from="(2340,2940)" to="(2580,2940)"/> <wire from="(1240,3260)" to="(1270,3260)"/> <wire from="(3060,590)" to="(3100,590)"/> <wire from="(3060,2190)" to="(3100,2190)"/> <wire from="(1000,480)" to="(1010,480)"/> <wire from="(810,1770)" to="(810,1820)"/> <wire from="(630,3440)" to="(770,3440)"/> <wire from="(1910,2200)" to="(2010,2200)"/> <wire from="(2700,380)" to="(2720,380)"/> <wire from="(160,40)" to="(220,40)"/> <wire from="(2820,500)" to="(2840,500)"/> <wire from="(1300,70)" to="(1300,610)"/> <wire from="(2280,2520)" to="(2300,2520)"/> <wire from="(620,2860)" to="(620,2950)"/> <wire from="(2340,730)" to="(2420,730)"/> <wire from="(2290,300)" to="(2300,300)"/> <wire from="(1930,1030)" to="(1930,1230)"/> <wire from="(2640,2310)" to="(2720,2310)"/> <wire from="(2940,1010)" to="(3020,1010)"/> <wire from="(2940,2610)" to="(3020,2610)"/> <wire from="(1670,70)" to="(1670,140)"/> <wire from="(750,3230)" to="(770,3230)"/> <wire from="(810,3610)" to="(830,3610)"/> <wire from="(1370,3280)" to="(1450,3280)"/> <wire from="(2250,2140)" to="(2300,2140)"/> <wire from="(1830,2280)" to="(1830,2320)"/> <wire from="(1240,2880)" to="(1400,2880)"/> <wire from="(2170,1110)" to="(2210,1110)"/> <wire from="(1890,840)" to="(1920,840)"/> <wire from="(630,3250)" to="(770,3250)"/> <wire from="(2060,1160)" to="(2730,1160)"/> <wire from="(860,1050)" to="(860,1250)"/> <wire from="(700,2640)" to="(750,2640)"/> <wire from="(770,1030)" to="(770,1040)"/> <wire from="(1740,1840)" to="(1840,1840)"/> <wire from="(2820,1910)" to="(2840,1910)"/> <wire from="(2580,2300)" to="(2610,2300)"/> <wire from="(2190,1280)" to="(2210,1280)"/> <wire from="(2150,1880)" to="(2170,1880)"/> <wire from="(1460,2870)" to="(1460,2960)"/> <wire from="(2190,2880)" to="(2210,2880)"/> <wire from="(2460,720)" to="(2610,720)"/> <wire from="(1850,1850)" to="(1850,1990)"/> <wire from="(100,510)" to="(210,510)"/> <wire from="(1240,610)" to="(1300,610)"/> <wire from="(3010,1790)" to="(3020,1790)"/> <wire from="(3010,3390)" to="(3020,3390)"/> <wire from="(2890,1990)" to="(2900,1990)"/> <wire from="(2710,3090)" to="(2720,3090)"/> <wire from="(2280,2920)" to="(2280,3110)"/> <wire from="(2280,1260)" to="(2280,1320)"/> <wire from="(2280,2860)" to="(2280,2920)"/> <wire from="(100,2060)" to="(130,2060)"/> <wire from="(2620,2490)" to="(2620,2690)"/> <wire from="(810,1820)" to="(830,1820)"/> <wire from="(1010,100)" to="(1030,100)"/> <wire from="(2810,1720)" to="(2810,1920)"/> <wire from="(720,130)" to="(740,130)"/> <wire from="(2190,2450)" to="(2190,2460)"/> <wire from="(2840,2210)" to="(2900,2210)"/> <wire from="(400,450)" to="(420,450)"/> <wire from="(1370,3100)" to="(1370,3220)"/> <wire from="(190,240)" to="(210,240)"/> <wire from="(2840,610)" to="(2900,610)"/> <wire from="(2760,3110)" to="(2800,3110)"/> <wire from="(2580,1880)" to="(2580,1900)"/> <wire from="(2340,1280)" to="(2580,1280)"/> <wire from="(2340,2880)" to="(2580,2880)"/> <wire from="(1000,1700)" to="(1010,1700)"/> <wire from="(870,2020)" to="(1010,2020)"/> <wire from="(1440,3090)" to="(1460,3090)"/> <wire from="(1940,1980)" to="(1970,1980)"/> <wire from="(2580,2520)" to="(2580,2540)"/> <wire from="(2700,400)" to="(2700,420)"/> <wire from="(2160,2650)" to="(2190,2650)"/> <wire from="(740,2020)" to="(740,2220)"/> <wire from="(680,830)" to="(730,830)"/> <wire from="(680,2430)" to="(730,2430)"/> <wire from="(770,2440)" to="(770,2450)"/> <wire from="(770,840)" to="(770,850)"/> <wire from="(2190,1090)" to="(2210,1090)"/> <wire from="(1910,520)" to="(1910,2200)"/> <wire from="(2280,2460)" to="(2300,2460)"/> <wire from="(1820,1820)" to="(1820,2020)"/> <wire from="(1460,1410)" to="(1650,1410)"/> <wire from="(2830,3410)" to="(2900,3410)"/> <wire from="(1830,1010)" to="(1890,1010)"/> <wire from="(1830,2610)" to="(1890,2610)"/> <wire from="(690,120)" to="(690,140)"/> <wire from="(750,2530)" to="(770,2530)"/> <wire from="(590,130)" to="(610,130)"/> <wire from="(590,2050)" to="(610,2050)"/> <wire from="(290,2700)" to="(320,2700)"/> <wire from="(100,340)" to="(190,340)"/> <wire from="(1270,3200)" to="(1400,3200)"/> <wire from="(2250,2080)" to="(2300,2080)"/> <wire from="(710,3120)" to="(740,3120)"/> <wire from="(1160,2740)" to="(1320,2740)"/> <wire from="(1000,550)" to="(1010,550)"/> <wire from="(2170,730)" to="(2210,730)"/> <wire from="(1260,1970)" to="(1260,2010)"/> <wire from="(630,2550)" to="(770,2550)"/> <wire from="(1890,810)" to="(1890,840)"/> <wire from="(810,620)" to="(810,820)"/> <wire from="(810,2220)" to="(810,2420)"/> <wire from="(2390,1090)" to="(2420,1090)"/> <wire from="(1810,2330)" to="(1810,2350)"/> <wire from="(2840,2910)" to="(2840,3010)"/> <wire from="(770,1040)" to="(830,1040)"/> <wire from="(2580,1920)" to="(2610,1920)"/> <wire from="(2480,3110)" to="(2500,3110)"/> <wire from="(2190,1860)" to="(2210,1860)"/> <wire from="(2840,1310)" to="(2840,1410)"/> <wire from="(160,40)" to="(160,60)"/> <wire from="(1890,1810)" to="(2840,1810)"/> <wire from="(100,2000)" to="(130,2000)"/> <wire from="(750,3620)" to="(770,3620)"/> <wire from="(870,2520)" to="(960,2520)"/> <wire from="(780,120)" to="(810,120)"/> <wire from="(2250,930)" to="(2300,930)"/> <wire from="(100,730)" to="(120,730)"/> <wire from="(100,1370)" to="(120,1370)"/> <wire from="(1840,2680)" to="(1840,2730)"/> <wire from="(1420,3320)" to="(1450,3320)"/> <wire from="(3060,790)" to="(3100,790)"/> <wire from="(3060,2390)" to="(3100,2390)"/> <wire from="(730,1570)" to="(730,1620)"/> <wire from="(1620,840)" to="(1840,840)"/> <wire from="(1860,1840)" to="(1890,1840)"/> <wire from="(1940,640)" to="(1970,640)"/> <wire from="(630,3640)" to="(770,3640)"/> <wire from="(1830,2320)" to="(1930,2320)"/> <wire from="(2190,710)" to="(2210,710)"/> <wire from="(2280,2720)" to="(2300,2720)"/> <wire from="(590,150)" to="(590,220)"/> <wire from="(2340,930)" to="(2420,930)"/> <wire from="(710,2730)" to="(750,2730)"/> <wire from="(1930,1230)" to="(1930,1430)"/> <wire from="(2640,2510)" to="(2720,2510)"/> <wire from="(810,2740)" to="(810,2760)"/> <wire from="(1090,2720)" to="(1400,2720)"/> <wire from="(2940,1210)" to="(3020,1210)"/> <wire from="(2940,2810)" to="(3020,2810)"/> <wire from="(750,1830)" to="(770,1830)"/> <wire from="(1240,3610)" to="(1250,3610)"/> <wire from="(1110,160)" to="(1110,210)"/> <wire from="(230,2590)" to="(250,2590)"/> <wire from="(1270,3200)" to="(1270,3260)"/> <wire from="(120,450)" to="(120,490)"/> <wire from="(1850,2680)" to="(1930,2680)"/> <wire from="(2250,2340)" to="(2300,2340)"/> <wire from="(1240,3080)" to="(1400,3080)"/> <wire from="(2280,1320)" to="(2280,1660)"/> <wire from="(930,100)" to="(940,100)"/> <wire from="(2620,890)" to="(2620,1290)"/> <wire from="(2810,510)" to="(2810,720)"/> <wire from="(660,2710)" to="(670,2710)"/> <wire from="(630,1850)" to="(770,1850)"/> <wire from="(1890,1040)" to="(1920,1040)"/> <wire from="(1160,1490)" to="(1160,1570)"/> <wire from="(860,1250)" to="(860,1450)"/> <wire from="(860,2850)" to="(860,3050)"/> <wire from="(770,1230)" to="(770,1240)"/> <wire from="(2390,710)" to="(2420,710)"/> <wire from="(2820,2110)" to="(2840,2110)"/> <wire from="(2460,1100)" to="(2490,1100)"/> <wire from="(770,2830)" to="(770,2840)"/> <wire from="(2580,2500)" to="(2610,2500)"/> <wire from="(2150,2080)" to="(2170,2080)"/> <wire from="(2460,920)" to="(2610,920)"/> <wire from="(3010,1990)" to="(3020,1990)"/> <wire from="(2890,2190)" to="(2900,2190)"/> <wire from="(2890,590)" to="(2900,590)"/> <wire from="(2710,1690)" to="(2720,1690)"/> <wire from="(2620,2690)" to="(2620,2890)"/> <wire from="(810,2020)" to="(830,2020)"/> <wire from="(2810,1920)" to="(2810,2120)"/> <wire from="(250,240)" to="(340,240)"/> <wire from="(1000,2860)" to="(1010,2860)"/> <wire from="(1000,3180)" to="(1010,3180)"/> <wire from="(730,1620)" to="(750,1620)"/> <wire from="(2190,2650)" to="(2190,2660)"/> <wire from="(2840,2410)" to="(2900,2410)"/> <wire from="(810,2420)" to="(810,2520)"/> <wire from="(230,2480)" to="(230,2590)"/> <wire from="(100,670)" to="(120,670)"/> <wire from="(2340,320)" to="(2390,320)"/> <wire from="(1930,70)" to="(1930,630)"/> <wire from="(2840,810)" to="(2900,810)"/> <wire from="(2760,1710)" to="(2800,1710)"/> <wire from="(850,3670)" to="(860,3670)"/> <wire from="(870,620)" to="(1010,620)"/> <wire from="(870,2220)" to="(1010,2220)"/> <wire from="(1940,2180)" to="(1970,2180)"/> <wire from="(2580,2080)" to="(2580,2100)"/> <wire from="(2580,2720)" to="(2580,2740)"/> <wire from="(1240,850)" to="(1260,850)"/> <wire from="(2160,2850)" to="(2190,2850)"/> <wire from="(2160,1250)" to="(2190,1250)"/> <wire from="(680,1030)" to="(730,1030)"/> <wire from="(770,1040)" to="(770,1050)"/> <wire from="(860,1450)" to="(860,1460)"/> <wire from="(2280,2660)" to="(2300,2660)"/> <wire from="(2810,390)" to="(2810,510)"/> <wire from="(810,2680)" to="(810,2710)"/> <wire from="(1820,2020)" to="(1820,2220)"/> <wire from="(1830,1210)" to="(1890,1210)"/> <wire from="(320,430)" to="(420,430)"/> <wire from="(740,1840)" to="(740,1920)"/> <wire from="(120,490)" to="(150,490)"/> <wire from="(730,2710)" to="(750,2710)"/> <wire from="(110,2720)" to="(140,2720)"/> <wire from="(1680,2210)" to="(1810,2210)"/> <wire from="(590,650)" to="(610,650)"/> <wire from="(590,2250)" to="(610,2250)"/> <wire from="(660,2640)" to="(680,2640)"/> <wire from="(740,3120)" to="(740,3220)"/> <wire from="(400,140)" to="(420,140)"/> <wire from="(590,1920)" to="(620,1920)"/> <wire from="(460,440)" to="(2280,440)"/> <wire from="(1320,2740)" to="(1320,2860)"/> <wire from="(2250,2280)" to="(2300,2280)"/> <wire from="(100,1120)" to="(120,1120)"/> <wire from="(200,1860)" to="(220,1860)"/> <wire from="(940,1720)" to="(1010,1720)"/> <wire from="(730,1640)" to="(730,1700)"/> <wire from="(2170,930)" to="(2210,930)"/> <wire from="(1110,210)" to="(1130,210)"/> <wire from="(1930,2650)" to="(1930,2680)"/> <wire from="(1890,1010)" to="(1890,1040)"/> <wire from="(810,820)" to="(810,1020)"/> <wire from="(2590,3100)" to="(2610,3100)"/> <wire from="(1120,3120)" to="(1120,3140)"/> <wire from="(1820,2220)" to="(1820,2240)"/> <wire from="(2280,3110)" to="(2300,3110)"/> <wire from="(2840,3110)" to="(2840,3210)"/> <wire from="(770,1240)" to="(830,1240)"/> <wire from="(770,2840)" to="(830,2840)"/> <wire from="(2580,2120)" to="(2610,2120)"/> <wire from="(2620,520)" to="(2620,690)"/> <wire from="(2190,2060)" to="(2210,2060)"/> <wire from="(1710,1440)" to="(1710,2410)"/> <wire from="(100,140)" to="(340,140)"/> <wire from="(1890,2010)" to="(2840,2010)"/> <wire from="(860,1770)" to="(860,1850)"/> <wire from="(2280,440)" to="(2280,500)"/> <wire from="(1240,1210)" to="(1420,1210)"/> <wire from="(1320,2860)" to="(1400,2860)"/> <wire from="(1000,2800)" to="(1010,2800)"/> <wire from="(2340,1340)" to="(2530,1340)"/> <wire from="(1840,2680)" to="(1850,2680)"/> <wire from="(100,930)" to="(120,930)"/> <wire from="(100,290)" to="(120,290)"/> <wire from="(190,380)" to="(210,380)"/> <wire from="(2340,1740)" to="(2580,1740)"/> <wire from="(3060,990)" to="(3100,990)"/> <wire from="(3060,2590)" to="(3100,2590)"/> <wire from="(1590,1010)" to="(1810,1010)"/> <wire from="(1940,840)" to="(1970,840)"/> <wire from="(1090,1490)" to="(1090,1570)"/> <wire from="(620,2040)" to="(620,2240)"/> <wire from="(1840,2810)" to="(2840,2810)"/> <wire from="(2190,910)" to="(2210,910)"/> <wire from="(280,2730)" to="(280,2740)"/> <wire from="(100,390)" to="(150,390)"/> <wire from="(2280,2920)" to="(2300,2920)"/> <wire from="(2280,1320)" to="(2300,1320)"/> <wire from="(1850,1990)" to="(1850,2190)"/> <wire from="(2640,2710)" to="(2720,2710)"/> <wire from="(620,3260)" to="(620,3340)"/> <wire from="(2940,1410)" to="(3020,1410)"/> <wire from="(2940,3010)" to="(3020,3010)"/> <wire from="(750,2030)" to="(770,2030)"/> <wire from="(790,3670)" to="(810,3670)"/> <wire from="(790,2710)" to="(810,2710)"/> <wire from="(810,2620)" to="(810,2660)"/> <wire from="(1240,2810)" to="(1820,2810)"/> <wire from="(450,130)" to="(470,130)"/> <wire from="(2250,2540)" to="(2300,2540)"/> <wire from="(2280,500)" to="(2280,710)"/> <wire from="(2190,480)" to="(2190,500)"/> <wire from="(1040,410)" to="(1050,410)"/> <wire from="(650,1620)" to="(660,1620)"/> <wire from="(630,2050)" to="(770,2050)"/> <wire from="(1890,1240)" to="(1920,1240)"/> <wire from="(860,3050)" to="(860,3250)"/> <wire from="(770,1430)" to="(770,1440)"/> <wire from="(2390,910)" to="(2420,910)"/> <wire from="(2820,2310)" to="(2840,2310)"/> <wire from="(2820,710)" to="(2840,710)"/> <wire from="(770,3030)" to="(770,3040)"/> <wire from="(2580,2700)" to="(2610,2700)"/> <wire from="(2540,1390)" to="(2560,1390)"/> <wire from="(2150,2280)" to="(2170,2280)"/> <wire from="(2190,1680)" to="(2210,1680)"/> <wire from="(3010,2190)" to="(3020,2190)"/> <wire from="(1820,2350)" to="(1820,2420)"/> <wire from="(2890,2390)" to="(2900,2390)"/> <wire from="(2890,790)" to="(2900,790)"/> <wire from="(3010,590)" to="(3020,590)"/> <wire from="(2280,1660)" to="(2280,1720)"/> <wire from="(2710,1890)" to="(2720,1890)"/> <wire from="(810,620)" to="(830,620)"/> <wire from="(810,2220)" to="(830,2220)"/> <wire from="(2620,2890)" to="(2620,3090)"/> <wire from="(2810,2120)" to="(2810,2320)"/> <wire from="(730,2670)" to="(730,2710)"/> <wire from="(1000,1780)" to="(1010,1780)"/> <wire from="(1000,3060)" to="(1010,3060)"/> <wire from="(300,430)" to="(320,430)"/> <wire from="(2190,2850)" to="(2190,2860)"/> <wire from="(590,2950)" to="(620,2950)"/> <wire from="(2840,2610)" to="(2900,2610)"/> <wire from="(1590,640)" to="(1590,1010)"/> <wire from="(2190,1250)" to="(2190,1260)"/> <wire from="(2280,1720)" to="(2280,1860)"/> <wire from="(2840,1010)" to="(2900,1010)"/> <wire from="(910,2590)" to="(910,2780)"/> <wire from="(2760,1910)" to="(2800,1910)"/> <wire from="(1240,3410)" to="(1400,3410)"/> <wire from="(2340,1680)" to="(2580,1680)"/> <wire from="(2250,350)" to="(2250,370)"/> <wire from="(870,120)" to="(940,120)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(870,820)" to="(1010,820)"/> <wire from="(2580,1320)" to="(2580,1350)"/> <wire from="(870,2420)" to="(1010,2420)"/> <wire from="(2580,2280)" to="(2580,2300)"/> <wire from="(2580,2920)" to="(2580,2940)"/> <wire from="(1240,2010)" to="(1260,2010)"/> <wire from="(1860,1980)" to="(1890,1980)"/> <wire from="(1810,2280)" to="(1810,2310)"/> <wire from="(740,820)" to="(740,1020)"/> <wire from="(1260,2010)" to="(1500,2010)"/> <wire from="(680,1230)" to="(730,1230)"/> <wire from="(2700,400)" to="(2720,400)"/> <wire from="(680,2830)" to="(730,2830)"/> <wire from="(770,1240)" to="(770,1250)"/> <wire from="(2820,1160)" to="(2840,1160)"/> <wire from="(770,2840)" to="(770,2850)"/> <wire from="(2280,2860)" to="(2300,2860)"/> <wire from="(2280,1260)" to="(2300,1260)"/> <wire from="(1820,620)" to="(1820,820)"/> <wire from="(1850,650)" to="(1850,850)"/> <wire from="(1830,1410)" to="(1890,1410)"/> <wire from="(1650,1040)" to="(1840,1040)"/> <wire from="(740,2360)" to="(740,2440)"/> <wire from="(100,2270)" to="(130,2270)"/> <wire from="(160,2720)" to="(250,2720)"/> <wire from="(590,850)" to="(610,850)"/> <wire from="(590,2450)" to="(610,2450)"/> <wire from="(190,340)" to="(190,380)"/> <wire from="(2250,2480)" to="(2300,2480)"/> <wire from="(100,1320)" to="(120,1320)"/> <wire from="(810,2660)" to="(840,2660)"/> <wire from="(620,1920)" to="(620,2040)"/> <wire from="(1370,3220)" to="(1400,3220)"/> <wire from="(580,2780)" to="(910,2780)"/> <wire from="(1890,1210)" to="(1890,1240)"/> <wire from="(1260,770)" to="(1260,850)"/> <wire from="(810,1020)" to="(810,1220)"/> <wire from="(770,1440)" to="(830,1440)"/> <wire from="(770,3040)" to="(830,3040)"/> <wire from="(2580,2320)" to="(2610,2320)"/> <wire from="(2560,1350)" to="(2580,1350)"/> <wire from="(250,290)" to="(300,290)"/> <wire from="(1930,1430)" to="(1930,1830)"/> <wire from="(2190,2260)" to="(2210,2260)"/> <wire from="(2840,1710)" to="(2840,1810)"/> <wire from="(700,110)" to="(740,110)"/> <wire from="(1890,2210)" to="(2840,2210)"/> <wire from="(1890,610)" to="(2840,610)"/> <wire from="(520,3740)" to="(1120,3740)"/> <wire from="(1110,110)" to="(1110,160)"/> <wire from="(1000,3000)" to="(1010,3000)"/> <wire from="(290,2590)" to="(320,2590)"/> <wire from="(650,2760)" to="(810,2760)"/> <wire from="(100,810)" to="(120,810)"/> <wire from="(2340,1940)" to="(2580,1940)"/> <wire from="(230,2430)" to="(230,2480)"/> <wire from="(620,1860)" to="(620,1920)"/> <wire from="(3060,1190)" to="(3100,1190)"/> <wire from="(3060,2790)" to="(3100,2790)"/> <wire from="(1270,3260)" to="(1290,3260)"/> <wire from="(2620,3090)" to="(2620,3170)"/> <wire from="(1380,1010)" to="(1590,1010)"/> <wire from="(580,2590)" to="(910,2590)"/> <wire from="(1860,640)" to="(1890,640)"/> <wire from="(1640,170)" to="(1730,170)"/> <wire from="(1120,3120)" to="(1460,3120)"/> <wire from="(1240,2410)" to="(1710,2410)"/> <wire from="(1940,1040)" to="(1970,1040)"/> <wire from="(620,2240)" to="(620,2440)"/> <wire from="(1890,1980)" to="(1890,2010)"/> <wire from="(1800,1980)" to="(1840,1980)"/> <wire from="(130,1690)" to="(130,1760)"/> <wire from="(860,2550)" to="(860,2560)"/> <wire from="(1840,3010)" to="(2840,3010)"/> <wire from="(860,3440)" to="(860,3640)"/> <wire from="(770,3420)" to="(770,3430)"/> <wire from="(1440,3210)" to="(1820,3210)"/> <wire from="(1850,2190)" to="(1850,2390)"/> <wire from="(2530,3120)" to="(2610,3120)"/> <wire from="(2640,1310)" to="(2720,1310)"/> <wire from="(2640,2910)" to="(2720,2910)"/> <wire from="(2030,100)" to="(2860,100)"/> <wire from="(2940,3210)" to="(3020,3210)"/> <wire from="(100,2210)" to="(130,2210)"/> <wire from="(750,2230)" to="(770,2230)"/> <wire from="(2490,1100)" to="(2490,1360)"/> <wire from="(810,580)" to="(810,620)"/> <wire from="(590,150)" to="(610,150)"/> <wire from="(750,630)" to="(770,630)"/> <wire from="(1240,3010)" to="(1820,3010)"/> <wire from="(590,3340)" to="(620,3340)"/> <wire from="(130,1820)" to="(130,1860)"/> <wire from="(960,2520)" to="(960,2620)"/> <wire from="(2250,2740)" to="(2300,2740)"/> <wire from="(200,1680)" to="(220,1680)"/> <wire from="(860,3250)" to="(860,3440)"/> <wire from="(520,1700)" to="(520,3740)"/> <wire from="(330,220)" to="(340,220)"/> <wire from="(2620,1290)" to="(2620,1690)"/> <wire from="(670,120)" to="(670,170)"/> <wire from="(630,650)" to="(770,650)"/> <wire from="(630,2250)" to="(770,2250)"/> <wire from="(1890,1440)" to="(1920,1440)"/> <wire from="(2580,1300)" to="(2610,1300)"/> <wire from="(100,1670)" to="(160,1670)"/> <wire from="(2820,2510)" to="(2840,2510)"/> <wire from="(2820,910)" to="(2840,910)"/> <wire from="(770,3230)" to="(770,3240)"/> <wire from="(1710,2410)" to="(1810,2410)"/> <wire from="(2580,2900)" to="(2610,2900)"/> <wire from="(2150,2480)" to="(2170,2480)"/> <wire from="(2190,1880)" to="(2210,1880)"/> <wire from="(860,3640)" to="(860,3670)"/> <wire from="(620,2950)" to="(620,3040)"/> <wire from="(3010,2390)" to="(3020,2390)"/> <wire from="(1240,3460)" to="(1290,3460)"/> <wire from="(2890,990)" to="(2900,990)"/> <wire from="(2890,2590)" to="(2900,2590)"/> <wire from="(3010,790)" to="(3020,790)"/> <wire from="(2710,2090)" to="(2720,2090)"/> <wire from="(2060,70)" to="(2060,1160)"/> <wire from="(2280,1860)" to="(2280,1920)"/> <wire from="(2700,480)" to="(2710,480)"/> <wire from="(810,820)" to="(830,820)"/> <wire from="(810,2420)" to="(830,2420)"/> <wire from="(1420,70)" to="(1420,1210)"/> <wire from="(2810,720)" to="(2810,920)"/> <wire from="(2810,2320)" to="(2810,2520)"/> <wire from="(230,2480)" to="(250,2480)"/> <wire from="(2840,2810)" to="(2900,2810)"/> <wire from="(2280,1920)" to="(2280,2060)"/> <wire from="(200,1810)" to="(220,1810)"/> <wire from="(2840,1210)" to="(2900,1210)"/> <wire from="(810,2740)" to="(1160,2740)"/> <wire from="(660,2670)" to="(730,2670)"/> <wire from="(2760,2110)" to="(2800,2110)"/> <wire from="(2340,1880)" to="(2580,1880)"/> <wire from="(1430,2710)" to="(1460,2710)"/> <wire from="(200,220)" to="(210,220)"/> <wire from="(870,1020)" to="(1010,1020)"/> <wire from="(2580,2480)" to="(2580,2500)"/> <wire from="(2810,1170)" to="(2810,1320)"/> <wire from="(2810,2770)" to="(2810,2920)"/> <wire from="(2700,360)" to="(2700,380)"/> <wire from="(1170,220)" to="(1190,220)"/> <wire from="(1320,1570)" to="(1320,2700)"/> <wire from="(130,1630)" to="(130,1690)"/> <wire from="(1860,2180)" to="(1890,2180)"/> <wire from="(2160,1650)" to="(2190,1650)"/> <wire from="(740,1020)" to="(740,1220)"/> <wire from="(2840,500)" to="(2840,610)"/> <wire from="(680,3030)" to="(730,3030)"/> <wire from="(680,1430)" to="(730,1430)"/> <wire from="(100,1800)" to="(160,1800)"/> <wire from="(770,1440)" to="(770,1450)"/> <wire from="(770,3040)" to="(770,3050)"/> <wire from="(2280,1090)" to="(2280,1260)"/> <wire from="(1460,3090)" to="(1460,3120)"/> <wire from="(770,3430)" to="(830,3430)"/> <wire from="(2590,490)" to="(2610,490)"/> <wire from="(1120,3710)" to="(1120,3740)"/> <wire from="(2280,500)" to="(2300,500)"/> <wire from="(1820,820)" to="(1820,1020)"/> <wire from="(1850,850)" to="(1850,1050)"/> <wire from="(1820,2420)" to="(1820,2620)"/> <wire from="(470,50)" to="(470,130)"/> <wire from="(1850,70)" to="(1850,650)"/> <wire from="(280,310)" to="(280,340)"/> <wire from="(1620,1210)" to="(1810,1210)"/> <wire from="(100,2150)" to="(130,2150)"/> <wire from="(570,70)" to="(590,70)"/> <wire from="(590,1050)" to="(610,1050)"/> <wire from="(740,1920)" to="(740,2020)"/> <wire from="(2250,2680)" to="(2300,2680)"/> <wire from="(620,2440)" to="(620,2540)"/> <wire from="(200,1620)" to="(220,1620)"/> <wire from="(1370,3100)" to="(1400,3100)"/> <wire from="(580,2590)" to="(580,2780)"/> <wire from="(1000,1470)" to="(1010,1470)"/> <wire from="(130,1760)" to="(130,1820)"/> <wire from="(2030,100)" to="(2030,3460)"/> <wire from="(1890,1410)" to="(1890,1440)"/> <wire from="(940,1630)" to="(1120,1630)"/> <wire from="(810,1220)" to="(810,1420)"/> <wire from="(810,2820)" to="(810,3020)"/> <wire from="(100,1610)" to="(160,1610)"/> <wire from="(770,2530)" to="(770,2540)"/> <wire from="(1820,2620)" to="(1820,2640)"/> <wire from="(770,3240)" to="(830,3240)"/> <wire from="(2580,2520)" to="(2610,2520)"/> <wire from="(2860,100)" to="(2860,3460)"/> <wire from="(2190,2460)" to="(2210,2460)"/> <wire from="(2840,1910)" to="(2840,2010)"/> <wire from="(1370,3320)" to="(1370,3390)"/> <wire from="(1930,1830)" to="(1930,1970)"/> <wire from="(1890,2410)" to="(2840,2410)"/> <wire from="(650,2730)" to="(650,2760)"/> <wire from="(1890,810)" to="(2840,810)"/> <wire from="(110,2610)" to="(140,2610)"/> <wire from="(790,100)" to="(810,100)"/> <wire from="(1000,2880)" to="(1010,2880)"/> <wire from="(1000,3200)" to="(1010,3200)"/> <wire from="(1240,1010)" to="(1380,1010)"/> <wire from="(730,1640)" to="(750,1640)"/> <wire from="(2250,3130)" to="(2300,3130)"/> <wire from="(100,1010)" to="(120,1010)"/> <wire from="(200,1750)" to="(220,1750)"/> <wire from="(1340,70)" to="(1340,810)"/> <wire from="(1960,2770)" to="(2810,2770)"/> <wire from="(2340,2140)" to="(2580,2140)"/> <wire from="(2190,1070)" to="(2190,1090)"/> <wire from="(3060,1390)" to="(3100,1390)"/> <wire from="(3060,2990)" to="(3100,2990)"/> <wire from="(850,1770)" to="(860,1770)"/> <wire from="(1640,70)" to="(1640,170)"/> <wire from="(1860,840)" to="(1890,840)"/> <wire from="(130,1570)" to="(130,1630)"/> <wire from="(1940,1240)" to="(1970,1240)"/> <wire from="(740,640)" to="(740,820)"/> <wire from="(620,840)" to="(620,1040)"/> <wire from="(1890,2180)" to="(1890,2210)"/> <wire from="(1800,2180)" to="(1840,2180)"/> <wire from="(1840,3210)" to="(2840,3210)"/> <wire from="(100,1740)" to="(160,1740)"/> <wire from="(770,3620)" to="(770,3630)"/> <wire from="(2010,520)" to="(2010,2200)"/> <wire from="(2280,1720)" to="(2300,1720)"/> <wire from="(2080,230)" to="(2080,1140)"/> <wire from="(620,3340)" to="(620,3430)"/> <wire from="(1960,2630)" to="(1960,2770)"/> <wire from="(700,2360)" to="(740,2360)"/> <wire from="(1240,1810)" to="(1810,1810)"/> <wire from="(1850,2390)" to="(1850,2590)"/> <wire from="(2640,3110)" to="(2720,3110)"/> <wire from="(2940,1810)" to="(3020,1810)"/> <wire from="(380,120)" to="(420,120)"/> <wire from="(2940,3410)" to="(3020,3410)"/> <wire from="(100,2090)" to="(130,2090)"/> <wire from="(750,2430)" to="(770,2430)"/> <wire from="(120,2430)" to="(150,2430)"/> <wire from="(1830,2760)" to="(1830,2820)"/> <wire from="(1460,2710)" to="(1460,2760)"/> <wire from="(600,1320)" to="(620,1320)"/> <wire from="(1000,3650)" to="(1010,3650)"/> <wire from="(100,240)" to="(190,240)"/> <wire from="(750,830)" to="(770,830)"/> <wire from="(260,340)" to="(280,340)"/> <wire from="(120,410)" to="(120,450)"/> <wire from="(2250,1340)" to="(2300,1340)"/> <wire from="(2250,2940)" to="(2300,2940)"/> <wire from="(200,1560)" to="(220,1560)"/> <wire from="(1700,70)" to="(1700,110)"/> <wire from="(1680,1240)" to="(1840,1240)"/> <wire from="(630,2450)" to="(770,2450)"/> <wire from="(630,850)" to="(770,850)"/> <wire from="(730,2620)" to="(730,2670)"/> <wire from="(2820,2710)" to="(2840,2710)"/> <wire from="(860,1850)" to="(860,2050)"/> <wire from="(680,3420)" to="(730,3420)"/> <wire from="(100,1550)" to="(160,1550)"/> <wire from="(770,1830)" to="(770,1840)"/> <wire from="(770,3430)" to="(770,3440)"/> <wire from="(740,1220)" to="(740,1360)"/> <wire from="(770,2540)" to="(830,2540)"/> <wire from="(2150,2680)" to="(2170,2680)"/> <wire from="(2190,2080)" to="(2210,2080)"/> <wire from="(2810,920)" to="(2810,1170)"/> <wire from="(1820,2640)" to="(1870,2640)"/> <wire from="(730,1570)" to="(1090,1570)"/> <wire from="(1830,2820)" to="(1830,3020)"/> <wire from="(590,220)" to="(1010,220)"/> <wire from="(2180,480)" to="(2190,480)"/> <wire from="(3010,2590)" to="(3020,2590)"/> <wire from="(3010,990)" to="(3020,990)"/> <wire from="(1240,3660)" to="(1290,3660)"/> <wire from="(2890,1190)" to="(2900,1190)"/> <wire from="(2890,2790)" to="(2900,2790)"/> <wire from="(2710,2290)" to="(2720,2290)"/> <wire from="(1090,30)" to="(1090,300)"/> <wire from="(2280,2060)" to="(2280,2120)"/> <wire from="(240,500)" to="(340,500)"/> <wire from="(810,1020)" to="(830,1020)"/> <wire from="(2620,1690)" to="(2620,1890)"/> <wire from="(850,100)" to="(870,100)"/> <wire from="(2810,2520)" to="(2810,2720)"/> <wire from="(2840,3010)" to="(2900,3010)"/> <wire from="(1810,2350)" to="(1820,2350)"/> <wire from="(2280,710)" to="(2280,910)"/> <wire from="(2190,1650)" to="(2190,1660)"/> <wire from="(100,1270)" to="(120,1270)"/> <wire from="(2280,2120)" to="(2280,2260)"/> <wire from="(2840,1410)" to="(2900,1410)"/> <wire from="(2760,2310)" to="(2800,2310)"/> <wire from="(2580,1720)" to="(2580,1740)"/> <wire from="(2340,2080)" to="(2580,2080)"/> <wire from="(2190,690)" to="(2190,710)"/> <wire from="(500,30)" to="(1090,30)"/> <wire from="(2390,500)" to="(2390,710)"/> <wire from="(870,1220)" to="(1010,1220)"/> <wire from="(1000,580)" to="(1010,580)"/> <wire from="(870,2820)" to="(1010,2820)"/> <wire from="(2580,2680)" to="(2580,2700)"/> <wire from="(1170,100)" to="(1190,100)"/> <wire from="(1860,2380)" to="(1890,2380)"/> <wire from="(1500,70)" to="(1500,2010)"/> <wire from="(2160,1850)" to="(2190,1850)"/> <wire from="(680,3230)" to="(730,3230)"/> <wire from="(1850,2590)" to="(1850,2680)"/> <wire from="(770,3240)" to="(770,3250)"/> <wire from="(770,3630)" to="(830,3630)"/> <wire from="(2280,1660)" to="(2300,1660)"/> <wire from="(690,1630)" to="(750,1630)"/> <wire from="(1680,1240)" to="(1680,2210)"/> <wire from="(2640,500)" to="(2710,500)"/> <wire from="(1850,1050)" to="(1850,1250)"/> <wire from="(1820,1020)" to="(1820,1220)"/> <wire from="(1070,90)" to="(1130,90)"/> <wire from="(160,70)" to="(160,90)"/> <wire from="(1830,1810)" to="(1890,1810)"/> <wire from="(2810,2720)" to="(2810,2770)"/> <wire from="(170,490)" to="(210,490)"/> <wire from="(740,2440)" to="(740,2520)"/> <wire from="(790,1770)" to="(810,1770)"/> <wire from="(100,2030)" to="(130,2030)"/> <wire from="(100,2350)" to="(130,2350)"/> <wire from="(470,50)" to="(1010,50)"/> <wire from="(590,1250)" to="(610,1250)"/> <wire from="(590,2850)" to="(610,2850)"/> <wire from="(520,1700)" to="(730,1700)"/> <wire from="(2750,500)" to="(2800,500)"/> <wire from="(710,1360)" to="(740,1360)"/> <wire from="(280,2620)" to="(280,2730)"/> <wire from="(2250,1280)" to="(2300,1280)"/> <wire from="(2250,2880)" to="(2300,2880)"/> <wire from="(1110,160)" to="(1140,160)"/> <wire from="(2290,280)" to="(2290,300)"/> <wire from="(1700,110)" to="(1730,110)"/> <wire from="(650,1640)" to="(660,1640)"/> <wire from="(810,3020)" to="(810,3220)"/> <wire from="(1120,2760)" to="(1120,2780)"/> <wire from="(2840,2110)" to="(2840,2210)"/> <wire from="(770,1840)" to="(830,1840)"/> <wire from="(2580,2720)" to="(2610,2720)"/> <wire from="(2190,2660)" to="(2210,2660)"/> <wire from="(1890,2610)" to="(2840,2610)"/> <wire from="(280,2430)" to="(280,2510)"/> <wire from="(1890,1010)" to="(2840,1010)"/> <wire from="(150,2620)" to="(150,2710)"/> <wire from="(1740,2610)" to="(1810,2610)"/> <wire from="(160,2610)" to="(250,2610)"/> <wire from="(1000,3080)" to="(1010,3080)"/> <wire from="(1650,1040)" to="(1650,1410)"/> <wire from="(100,890)" to="(120,890)"/> <wire from="(380,240)" to="(1030,240)"/> <wire from="(2340,2340)" to="(2580,2340)"/> <wire from="(3060,3190)" to="(3100,3190)"/> <wire from="(1000,520)" to="(1010,520)"/> <wire from="(1940,1440)" to="(1970,1440)"/> <wire from="(1860,1040)" to="(1890,1040)"/> <wire from="(620,1040)" to="(620,1240)"/> <wire from="(1890,2380)" to="(1890,2410)"/> <wire from="(1800,2380)" to="(1840,2380)"/> <wire from="(680,2530)" to="(730,2530)"/> <wire from="(770,2540)" to="(770,2550)"/> <wire from="(2660,70)" to="(2660,360)"/> <wire from="(860,580)" to="(860,650)"/> <wire from="(2280,1920)" to="(2300,1920)"/> <wire from="(150,2430)" to="(150,2510)"/> <wire from="(2280,910)" to="(2280,1090)"/> <wire from="(2640,1710)" to="(2720,1710)"/> <wire from="(1500,2010)" to="(1810,2010)"/> <wire from="(2940,2010)" to="(3020,2010)"/> <wire from="(100,50)" to="(130,50)"/> <wire from="(290,2480)" to="(320,2480)"/> <wire from="(750,1030)" to="(770,1030)"/> <wire from="(2520,230)" to="(2520,1140)"/> <wire from="(740,3020)" to="(740,3120)"/> <wire from="(340,300)" to="(360,300)"/> <wire from="(1430,3400)" to="(1820,3400)"/> <wire from="(810,2680)" to="(840,2680)"/> <wire from="(2660,360)" to="(2700,360)"/> <wire from="(1090,400)" to="(1120,400)"/> <wire from="(1650,1410)" to="(1810,1410)"/> <wire from="(1110,110)" to="(1130,110)"/> <wire from="(630,1050)" to="(770,1050)"/> <wire from="(1890,1840)" to="(1920,1840)"/> <wire from="(2820,2910)" to="(2840,2910)"/> <wire from="(960,2620)" to="(1010,2620)"/> <wire from="(2580,1700)" to="(2610,1700)"/> <wire from="(860,2050)" to="(860,2250)"/> <wire from="(770,2030)" to="(770,2040)"/> <wire from="(2820,1310)" to="(2840,1310)"/> <wire from="(770,3630)" to="(770,3640)"/> <wire from="(2150,1280)" to="(2170,1280)"/> <wire from="(2150,2880)" to="(2170,2880)"/> <wire from="(2190,2280)" to="(2210,2280)"/> <wire from="(2280,1090)" to="(2300,1090)"/> <wire from="(1830,3020)" to="(1830,3220)"/> <wire from="(3010,2790)" to="(3020,2790)"/> <wire from="(3010,1190)" to="(3020,1190)"/> <wire from="(2890,1390)" to="(2900,1390)"/> <wire from="(2890,2990)" to="(2900,2990)"/> <wire from="(2710,2490)" to="(2720,2490)"/> <wire from="(2280,2260)" to="(2280,2320)"/> <wire from="(810,1220)" to="(830,1220)"/> <wire from="(2620,1890)" to="(2620,2090)"/> <wire from="(810,2820)" to="(830,2820)"/> <wire from="(280,370)" to="(300,370)"/> <wire from="(2190,1850)" to="(2190,1860)"/> <wire from="(2840,3210)" to="(2900,3210)"/> <wire from="(980,100)" to="(1010,100)"/> <wire from="(780,1630)" to="(940,1630)"/> <wire from="(100,1470)" to="(120,1470)"/> <wire from="(190,280)" to="(210,280)"/> <wire from="(2280,2320)" to="(2280,2460)"/> <wire from="(2140,350)" to="(2250,350)"/> <wire from="(2760,2510)" to="(2800,2510)"/> <wire from="(2580,1280)" to="(2580,1300)"/> <wire from="(2580,1920)" to="(2580,1940)"/> <wire from="(2340,2280)" to="(2580,2280)"/> <wire from="(2190,890)" to="(2190,910)"/> <wire from="(740,1360)" to="(740,1420)"/> <wire from="(870,1420)" to="(1010,1420)"/> <wire from="(870,3020)" to="(1010,3020)"/> <wire from="(800,580)" to="(810,580)"/> <wire from="(2580,2880)" to="(2580,2900)"/> <wire from="(620,660)" to="(620,840)"/> <wire from="(1240,1970)" to="(1260,1970)"/> <wire from="(1860,2580)" to="(1890,2580)"/> <wire from="(2160,2050)" to="(2190,2050)"/> <wire from="(810,3410)" to="(810,3610)"/> <wire from="(680,1830)" to="(730,1830)"/> <wire from="(770,1840)" to="(770,1850)"/> <wire from="(2280,1860)" to="(2300,1860)"/> <wire from="(2390,320)" to="(2390,500)"/> <wire from="(1820,1220)" to="(1820,1420)"/> <wire from="(1850,1250)" to="(1850,1450)"/> <wire from="(1930,1970)" to="(1930,2170)"/> <wire from="(1830,2010)" to="(1890,2010)"/> <wire from="(620,1240)" to="(620,1320)"/> <wire from="(2700,690)" to="(2710,690)"/> <wire from="(1710,1440)" to="(1840,1440)"/> <wire from="(590,1450)" to="(610,1450)"/> <wire from="(590,3050)" to="(610,3050)"/> <wire from="(2760,390)" to="(2810,390)"/> <wire from="(190,300)" to="(190,340)"/> <wire from="(2250,520)" to="(2300,520)"/> <wire from="(1420,1210)" to="(1620,1210)"/> <wire from="(2540,1370)" to="(2540,1390)"/> <wire from="(810,3220)" to="(810,3410)"/> <wire from="(150,60)" to="(160,60)"/> <wire from="(320,430)" to="(320,480)"/> <wire from="(1890,1810)" to="(1890,1840)"/> <wire from="(2340,3130)" to="(2500,3130)"/> <wire from="(2580,1320)" to="(2610,1320)"/> <wire from="(1120,2960)" to="(1120,2980)"/> <wire from="(2840,2310)" to="(2840,2410)"/> <wire from="(770,2040)" to="(830,2040)"/> <wire from="(2580,2920)" to="(2610,2920)"/> <wire from="(2590,700)" to="(2610,700)"/> <wire from="(2190,1260)" to="(2210,1260)"/> <wire from="(2280,710)" to="(2300,710)"/> <wire from="(2190,2860)" to="(2210,2860)"/> <wire from="(2840,710)" to="(2840,810)"/> <wire from="(2340,520)" to="(2420,520)"/> <wire from="(790,70)" to="(790,100)"/> <wire from="(2080,230)" to="(2520,230)"/> <wire from="(1890,1210)" to="(2840,1210)"/> <wire from="(2840,1160)" to="(2840,1210)"/> <wire from="(710,3620)" to="(730,3620)"/> <wire from="(1010,80)" to="(1030,80)"/> <wire from="(1320,2700)" to="(1400,2700)"/> <wire from="(280,310)" to="(300,310)"/> <wire from="(100,770)" to="(120,770)"/> <wire from="(100,450)" to="(120,450)"/> <wire from="(1120,400)" to="(1120,460)"/> <wire from="(810,3610)" to="(810,3670)"/> <wire from="(2340,2540)" to="(2580,2540)"/> <wire from="(3060,1790)" to="(3100,1790)"/> <wire from="(3060,3390)" to="(3100,3390)"/> <wire from="(1000,1680)" to="(1010,1680)"/> <wire from="(2510,3070)" to="(2510,3100)"/> <wire from="(1860,1240)" to="(1890,1240)"/> <wire from="(1120,2760)" to="(1460,2760)"/> <wire from="(1910,520)" to="(2010,520)"/> <wire from="(1890,2580)" to="(1890,2610)"/> <wire from="(1800,2580)" to="(1840,2580)"/> <wire from="(500,30)" to="(500,300)"/> <wire from="(130,1860)" to="(180,1860)"/> <wire from="(1240,810)" to="(1340,810)"/> <wire from="(2280,2120)" to="(2300,2120)"/> <wire from="(2460,510)" to="(2610,510)"/> <wire from="(1610,200)" to="(1730,200)"/> <wire from="(1070,230)" to="(1130,230)"/> <wire from="(1930,630)" to="(1930,830)"/> <wire from="(100,180)" to="(400,180)"/> <wire from="(2180,1070)" to="(2190,1070)"/> <wire from="(400,450)" to="(400,480)"/> <wire from="(2640,1910)" to="(2720,1910)"/> <wire from="(2940,610)" to="(3020,610)"/> <wire from="(2940,2210)" to="(3020,2210)"/> <wire from="(110,2500)" to="(140,2500)"/> <wire from="(750,2830)" to="(770,2830)"/> <wire from="(720,130)" to="(720,170)"/> <wire from="(1240,2050)" to="(1250,2050)"/> <wire from="(750,1230)" to="(770,1230)"/> <wire from="(650,2730)" to="(670,2730)"/> <wire from="(320,480)" to="(340,480)"/> <wire from="(190,240)" to="(190,280)"/> <wire from="(2250,1740)" to="(2300,1740)"/> <wire from="(100,580)" to="(120,580)"/> <wire from="(100,1220)" to="(120,1220)"/> <wire from="(500,300)" to="(1090,300)"/> <wire from="(1830,3220)" to="(1830,3390)"/> <wire from="(2140,70)" to="(2140,350)"/> <wire from="(870,3410)" to="(1010,3410)"/> <wire from="(630,2850)" to="(770,2850)"/> <wire from="(630,1250)" to="(770,1250)"/> <wire from="(2820,3110)" to="(2840,3110)"/> <wire from="(770,630)" to="(770,640)"/> <wire from="(740,3410)" to="(740,3610)"/> <wire from="(860,650)" to="(860,850)"/> <wire from="(2580,1900)" to="(2610,1900)"/> <wire from="(160,90)" to="(220,90)"/> <wire from="(860,2250)" to="(860,2450)"/> <wire from="(770,2230)" to="(770,2240)"/> <wire from="(1930,2170)" to="(1930,2320)"/> <wire from="(2190,2480)" to="(2210,2480)"/> <wire from="(940,1630)" to="(940,1720)"/> <wire from="(3010,1390)" to="(3020,1390)"/> <wire from="(3010,2990)" to="(3020,2990)"/> <wire from="(2890,3190)" to="(2900,3190)"/> <wire from="(2710,2690)" to="(2720,2690)"/> <wire from="(1240,2210)" to="(1680,2210)"/> <wire from="(2280,2460)" to="(2280,2520)"/> <wire from="(810,1420)" to="(830,1420)"/> <wire from="(2620,2090)" to="(2620,2290)"/> <wire from="(130,1690)" to="(160,1690)"/> <wire from="(730,2620)" to="(750,2620)"/> <wire from="(810,3020)" to="(830,3020)"/> <wire from="(2810,2920)" to="(2810,3120)"/> <wire from="(590,3440)" to="(610,3440)"/> <wire from="(2190,2050)" to="(2190,2060)"/> <wire from="(2280,2520)" to="(2280,2660)"/> <wire from="(2840,1810)" to="(2900,1810)"/> <wire from="(2580,3170)" to="(2620,3170)"/> <wire from="(1160,1570)" to="(1320,1570)"/> <wire from="(740,3220)" to="(740,3410)"/> <wire from="(2760,2710)" to="(2800,2710)"/> <wire from="(2340,2480)" to="(2580,2480)"/> <wire from="(1010,100)" to="(1010,220)"/> <wire from="(2170,520)" to="(2210,520)"/> <wire from="(870,3220)" to="(1010,3220)"/> <wire from="(2580,2120)" to="(2580,2140)"/> <wire from="(1340,810)" to="(1810,810)"/> <wire from="(2160,2250)" to="(2190,2250)"/> <wire from="(680,2030)" to="(730,2030)"/> <wire from="(1820,2640)" to="(1820,2730)"/> <wire from="(770,2040)" to="(770,2050)"/> <wire from="(2280,2060)" to="(2300,2060)"/> <wire from="(2180,690)" to="(2190,690)"/> <wire from="(1830,610)" to="(1890,610)"/> <wire from="(1830,2210)" to="(1890,2210)"/> <wire from="(2700,890)" to="(2710,890)"/> <wire from="(130,1820)" to="(160,1820)"/> <wire from="(590,3250)" to="(610,3250)"/> <wire from="(720,170)" to="(750,170)"/> <wire from="(380,480)" to="(400,480)"/> <wire from="(2390,710)" to="(2390,910)"/> <wire from="(2250,1680)" to="(2300,1680)"/> <wire from="(1910,2650)" to="(1930,2650)"/> <wire from="(330,120)" to="(340,120)"/> <wire from="(1000,1750)" to="(1010,1750)"/> <wire from="(2230,390)" to="(2270,390)"/> <wire from="(1370,3280)" to="(1370,3320)"/> <wire from="(1890,1980)" to="(1920,1980)"/> <wire from="(810,1820)" to="(810,2020)"/> <wire from="(2840,2510)" to="(2840,2610)"/> <wire from="(770,2240)" to="(830,2240)"/> <wire from="(2590,900)" to="(2610,900)"/> <wire from="(2190,500)" to="(2210,500)"/> <wire from="(2280,910)" to="(2300,910)"/> <wire from="(2840,910)" to="(2840,1010)"/> <wire from="(770,640)" to="(830,640)"/> <wire from="(2640,710)" to="(2710,710)"/> <wire from="(2280,280)" to="(2290,280)"/> <wire from="(1890,1410)" to="(2840,1410)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(100,1920)" to="(130,1920)"/> <wire from="(130,1630)" to="(160,1630)"/> <wire from="(790,2620)" to="(810,2620)"/> <wire from="(1000,2840)" to="(1010,2840)"/> <wire from="(1000,3160)" to="(1010,3160)"/> <wire from="(2750,710)" to="(2800,710)"/> <wire from="(230,2700)" to="(250,2700)"/> <wire from="(860,2450)" to="(860,2550)"/> <wire from="(280,2510)" to="(280,2620)"/> <wire from="(100,970)" to="(120,970)"/> <wire from="(590,70)" to="(790,70)"/> <wire from="(270,2430)" to="(280,2430)"/> <wire from="(150,70)" to="(160,70)"/> <wire from="(2340,2740)" to="(2580,2740)"/> <wire from="(590,70)" to="(590,130)"/> <wire from="(3060,1990)" to="(3100,1990)"/> <wire from="(740,2840)" to="(740,3020)"/> <wire from="(1940,1840)" to="(1970,1840)"/> <wire from="(1860,1440)" to="(1890,1440)"/> <wire from="(1120,2960)" to="(1460,2960)"/> <wire from="(2390,500)" to="(2420,500)"/> <wire from="(2250,370)" to="(2270,370)"/> <wire from="(2280,2320)" to="(2300,2320)"/> <wire from="(2320,330)" to="(2320,380)"/> <wire from="(1930,830)" to="(1930,1030)"/> <wire from="(2640,2110)" to="(2720,2110)"/> <wire from="(2940,810)" to="(3020,810)"/> <wire from="(1840,3400)" to="(2800,3400)"/> <wire from="(2940,2410)" to="(3020,2410)"/> <wire from="(1160,2690)" to="(1160,2740)"/> <wire from="(130,1760)" to="(160,1760)"/> <wire from="(750,3030)" to="(770,3030)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(810,3410)" to="(830,3410)"/> <wire from="(1240,3210)" to="(1250,3210)"/> <wire from="(2030,3460)" to="(2860,3460)"/> <wire from="(2750,1160)" to="(2800,1160)"/> <wire from="(160,2500)" to="(250,2500)"/> <wire from="(590,2550)" to="(610,2550)"/> <wire from="(340,380)" to="(360,380)"/> <wire from="(1460,70)" to="(1460,1410)"/> <wire from="(230,2590)" to="(230,2700)"/> <wire from="(1370,3220)" to="(1370,3280)"/> <wire from="(150,2510)" to="(150,2620)"/> <wire from="(2250,1940)" to="(2300,1940)"/> <wire from="(100,1420)" to="(120,1420)"/> <wire from="(880,2670)" to="(1010,2670)"/> <wire from="(1370,3320)" to="(1400,3320)"/> <wire from="(870,3610)" to="(1010,3610)"/> <wire from="(850,580)" to="(860,580)"/> <wire from="(2810,1320)" to="(2810,1720)"/> <wire from="(1890,640)" to="(1920,640)"/> <wire from="(630,1450)" to="(770,1450)"/> <wire from="(630,3050)" to="(770,3050)"/> <wire from="(670,170)" to="(720,170)"/> <wire from="(860,850)" to="(860,1050)"/> <wire from="(770,2430)" to="(770,2440)"/> <wire from="(770,830)" to="(770,840)"/> <wire from="(2820,1710)" to="(2840,1710)"/> <wire from="(640,140)" to="(690,140)"/> <wire from="(2580,2100)" to="(2610,2100)"/> <wire from="(1850,1450)" to="(1850,1850)"/> <wire from="(1820,1420)" to="(1820,1820)"/> <wire from="(250,390)" to="(300,390)"/> <wire from="(2150,1680)" to="(2170,1680)"/> <wire from="(2190,2680)" to="(2210,2680)"/> <wire from="(2390,910)" to="(2390,1090)"/> <wire from="(1300,610)" to="(1810,610)"/> <wire from="(1740,1840)" to="(1740,2610)"/> <wire from="(3010,3190)" to="(3020,3190)"/> <wire from="(280,340)" to="(280,370)"/> <wire from="(2890,1790)" to="(2900,1790)"/> <wire from="(2890,3390)" to="(2900,3390)"/> <wire from="(2710,2890)" to="(2720,2890)"/> <wire from="(1590,640)" to="(1840,640)"/> <wire from="(2280,2660)" to="(2280,2720)"/> <wire from="(2710,1290)" to="(2720,1290)"/> <wire from="(100,2180)" to="(130,2180)"/> <wire from="(2620,2290)" to="(2620,2490)"/> <wire from="(100,1860)" to="(130,1860)"/> <wire from="(130,1570)" to="(160,1570)"/> <wire from="(810,3220)" to="(830,3220)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(590,3640)" to="(610,3640)"/> <wire from="(2190,2250)" to="(2190,2260)"/> <wire from="(2250,1110)" to="(2300,1110)"/> <wire from="(400,140)" to="(400,180)"/> <wire from="(2620,690)" to="(2620,890)"/> <wire from="(2280,2720)" to="(2280,2860)"/> <wire from="(2840,2010)" to="(2900,2010)"/> <wire from="(2760,1310)" to="(2800,1310)"/> <wire from="(2760,2910)" to="(2800,2910)"/> <wire from="(2580,1680)" to="(2580,1700)"/> <wire from="(2340,2680)" to="(2580,2680)"/> <wire from="(1430,2870)" to="(1460,2870)"/> <wire from="(870,1820)" to="(1010,1820)"/> <wire from="(2580,2320)" to="(2580,2340)"/> <wire from="(2490,1360)" to="(2530,1360)"/> <wire from="(1240,770)" to="(1260,770)"/> <wire from="(2270,320)" to="(2300,320)"/> <wire from="(770,640)" to="(770,650)"/> <wire from="(2160,2450)" to="(2190,2450)"/> <wire from="(2680,420)" to="(2700,420)"/> <wire from="(680,630)" to="(730,630)"/> <wire from="(690,1920)" to="(740,1920)"/> <wire from="(680,2230)" to="(730,2230)"/> <wire from="(770,2240)" to="(770,2250)"/> <wire from="(2280,2260)" to="(2300,2260)"/> <wire from="(1120,1630)" to="(1120,1660)"/> <wire from="(2340,1110)" to="(2420,1110)"/> <wire from="(2310,380)" to="(2320,380)"/> <wire from="(2180,890)" to="(2190,890)"/> <wire from="(1240,2610)" to="(1740,2610)"/> <wire from="(1830,2410)" to="(1890,2410)"/> <wire from="(1830,810)" to="(1890,810)"/> <wire from="(870,100)" to="(870,120)"/> <wire from="(2790,3420)" to="(2800,3420)"/> <wire from="(120,410)" to="(150,410)"/> <wire from="(100,2310)" to="(130,2310)"/> <wire from="(2810,3120)" to="(2810,3390)"/> <wire from="(590,1850)" to="(610,1850)"/> <wire from="(210,2430)" to="(230,2430)"/> <wire from="(2080,1140)" to="(2520,1140)"/> <wire from="(1620,840)" to="(1620,1210)"/> <wire from="(2250,1880)" to="(2300,1880)"/> <wire from="(620,1320)" to="(620,1440)"/> <wire from="(1240,1410)" to="(1460,1410)"/> <wire from="(1380,70)" to="(1380,1010)"/> <wire from="(1040,390)" to="(1050,390)"/> <wire from="(2470,3070)" to="(2510,3070)"/> <wire from="(1890,2180)" to="(1920,2180)"/> <comp lib="0" loc="(3100,790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA1"/> <a name="labelloc" val="east"/> </comp> <comp lib="4" loc="(870,3610)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(380,130)" name="D-latch"/> <comp lib="4" loc="(2340,300)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(3100,2190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA7"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB2"/> </comp> <comp loc="(2340,2870)" name="D-latch"/> <comp loc="(2250,2270)" name="D-latch"/> <comp lib="0" loc="(1000,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(750,1430)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(340,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2940,3200)" name="D-latch"/> <comp lib="1" loc="(1170,100)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(170,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2250,1940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB2"/> </comp> <comp lib="0" loc="(590,2950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W0'"/> </comp> <comp lib="0" loc="(1730,140)" name="Tunnel"> <a name="label" val="OV1"/> </comp> <comp lib="6" loc="(2277,435)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,1370)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp loc="(2760,1300)" name="D-latch"/> <comp loc="(2340,2530)" name="D-latch"/> <comp lib="0" loc="(100,770)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB1"/> </comp> <comp loc="(2250,2870)" name="D-latch"/> <comp lib="0" loc="(2150,2880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD7"/> </comp> <comp loc="(2340,1330)" name="D-latch"/> <comp lib="0" loc="(220,1620)" name="Tunnel"> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(2250,1740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB1"/> </comp> <comp loc="(2340,720)" name="D-latch"/> <comp lib="0" loc="(700,2360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(100,390)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="F/TB"/> </comp> <comp lib="1" loc="(750,630)" name="Controlled Buffer"/> <comp lib="0" loc="(100,140)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="SC/CNT"/> </comp> <comp lib="1" loc="(1920,1840)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(1440,3210)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2820,1160)" name="Controlled Buffer"/> <comp lib="0" loc="(1140,160)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1000,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp loc="(2760,2300)" name="D-latch"/> <comp lib="0" loc="(1190,220)" name="Tunnel"> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(710,1360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(1000,3200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(3010,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2890,3190)" name="Constant"/> <comp lib="0" loc="(1290,3260)" name="Tunnel"> <a name="label" val="/FVO0"/> </comp> <comp lib="0" loc="(1800,2580)" name="Constant"/> <comp lib="0" loc="(1300,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO0"/> <a name="labelloc" val="north"/> </comp> <comp loc="(2340,1870)" name="D-latch"/> <comp loc="(2750,490)" name="D-latch"/> <comp lib="1" loc="(630,1250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(919,3015)" name="Text"> <a name="text" val="NTV"/> </comp> <comp lib="0" loc="(100,1740)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/1"/> </comp> <comp lib="0" loc="(590,3250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp loc="(3060,2600)" name="D-latch"/> <comp lib="0" loc="(220,40)" name="Tunnel"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2890,1190)" name="Constant"/> <comp lib="1" loc="(200,1620)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1000,2840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THSTEP"/> </comp> <comp lib="1" loc="(1860,1840)" name="Controlled Buffer"/> <comp lib="4" loc="(870,3410)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1000,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(630,1050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(380,490)" name="D-latch"/> <comp lib="0" loc="(590,1450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="1" loc="(1070,90)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,1030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(3100,990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA2"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(2820,2910)" name="Controlled Buffer"/> <comp lib="0" loc="(1640,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(1000,3040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,730)" name="Tunnel"> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(100,1800)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/2"/> </comp> <comp lib="0" loc="(2230,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1830,1810)" name="Controlled Buffer"/> <comp lib="0" loc="(3010,3190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(220,1810)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(650,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(600,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(100,2030)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(1290,3460)" name="Tunnel"> <a name="label" val="/FVO1"/> </comp> <comp lib="0" loc="(1000,3160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="4" loc="(870,620)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(2340,2270)" name="D-latch"/> <comp loc="(2760,1900)" name="D-latch"/> <comp lib="4" loc="(870,820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(320,2590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(3060,1200)" name="D-latch"/> <comp lib="1" loc="(640,140)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(220,1750)" name="Tunnel"> <a name="label" val="/W5.1'"/> </comp> <comp lib="4" loc="(870,2820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1920,1240)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(2190,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2160,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(3010,2990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(320,2480)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(590,3640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="4" loc="(290,2590)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(930,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1800,2380)" name="Constant"/> <comp lib="0" loc="(100,50)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,1270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(590,3050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(660,2710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(3060,2000)" name="D-latch"/> <comp lib="0" loc="(680,2830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(710,3620)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(130,2060)" name="Tunnel"> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(100,1860)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/DBE"/> </comp> <comp lib="6" loc="(1870,2674)" name="Text"> <a name="text" val="F/AT"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1430,3400)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1430,2870)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(120,670)" name="Tunnel"> <a name="label" val="O8/16"/> </comp> <comp lib="1" loc="(2190,2680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(870,1820)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,970)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB6"/> </comp> <comp lib="6" loc="(1902,2314)" name="Text"> <a name="text" val="DB/PAR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(2760,2700)" name="D-latch"/> <comp lib="6" loc="(1177,2709)" name="Text"> <a name="text" val="TVZ"/> </comp> <comp lib="0" loc="(2250,2740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB6"/> </comp> <comp lib="1" loc="(750,2430)" name="Controlled Buffer"/> <comp lib="1" loc="(750,3420)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(1340,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="4" loc="(870,2520)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(1860,2380)" name="Controlled Buffer"/> <comp lib="0" loc="(1190,100)" name="Tunnel"> <a name="label" val="TVLOAD"/> </comp> <comp loc="(2940,600)" name="D-latch"/> <comp lib="0" loc="(100,2120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD4"/> </comp> <comp lib="6" loc="(990,1218)" name="Text"> <a name="text" val="TH3"/> </comp> <comp lib="0" loc="(300,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1610,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV3"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RESCL"/> </comp> <comp loc="(3060,1800)" name="D-latch"/> <comp lib="2" loc="(2640,1310)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(590,2250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(130,2270)" name="Tunnel"> <a name="label" val="OBSEL"/> </comp> <comp lib="6" loc="(987,1016)" name="Text"> <a name="text" val="TH2"/> </comp> <comp lib="0" loc="(120,810)" name="Tunnel"> <a name="label" val="OB2"/> </comp> <comp lib="1" loc="(630,3640)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(680,2030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="4" loc="(870,2020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(590,3440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(710,3120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(2150,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD0"/> </comp> <comp lib="1" loc="(2820,500)" name="Controlled Buffer"/> <comp loc="(2760,2500)" name="D-latch"/> <comp lib="0" loc="(2590,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO0"/> </comp> <comp lib="1" loc="(630,650)" name="Controlled Buffer"/> <comp lib="0" loc="(100,890)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(2710,1690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="6" loc="(994,3625)" name="Text"> <a name="text" val="FV2"/> </comp> <comp lib="0" loc="(1000,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(590,2550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="4" loc="(870,2420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(3100,3190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA12"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="E/EV"/> </comp> <comp lib="0" loc="(130,2030)" name="Tunnel"> <a name="label" val="PD1"/> </comp> <comp lib="1" loc="(2190,2480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2460,1100)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="4" loc="(850,100)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(2590,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO1"/> </comp> <comp lib="0" loc="(1000,1470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="4" loc="(290,2700)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(830,2711)" name="Text"> <a name="text" val="/TVZ''"/> </comp> <comp lib="1" loc="(1920,1440)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1450,3280)" name="Tunnel"> <a name="label" val="#BLNK"/> </comp> <comp lib="6" loc="(474,432)" name="Text"> <a name="text" val="TAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(680,1830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(110,2720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1970,1840)" name="Tunnel"> <a name="label" val="DB5"/> </comp> <comp loc="(2250,2470)" name="D-latch"/> <comp lib="1" loc="(1430,2710)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2820,2510)" name="Controlled Buffer"/> <comp lib="0" loc="(680,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(1380,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(850,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp loc="(2940,2000)" name="D-latch"/> <comp lib="6" loc="(992,1815)" name="Text"> <a name="text" val="TV0"/> </comp> <comp lib="0" loc="(3010,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(1860,1040)" name="Controlled Buffer"/> <comp lib="1" loc="(630,2450)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(750,1230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2660,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H2'"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(1170,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,1470)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB7"/> </comp> <comp lib="6" loc="(1988,2758)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="6" loc="(1260,2872)" name="Text"> <a name="text" val="NTH0"/> </comp> <comp lib="2" loc="(2640,910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1290,3660)" name="Tunnel"> <a name="label" val="/FVO2"/> </comp> <comp lib="1" loc="(1830,1010)" name="Controlled Buffer"/> <comp lib="6" loc="(1820,597)" name="Text"> <a name="text" val="PAL"/> </comp> <comp lib="0" loc="(3100,2590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA9"/> <a name="labelloc" val="east"/> </comp> <comp lib="6" loc="(990,615)" name="Text"> <a name="text" val="TH0"/> </comp> <comp lib="0" loc="(100,1670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W6/1"/> </comp> <comp lib="1" loc="(1830,1410)" name="Controlled Buffer"/> <comp lib="6" loc="(994,3237)" name="Text"> <a name="text" val="FV0"/> </comp> <comp lib="0" loc="(2160,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="2" loc="(2640,2110)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(2180,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1450,3320)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="1" loc="(1810,2310)" name="NOT Gate"> <a name="facing" val="north"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(3100,2790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA10"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(660,2640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,1120)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(2710,2290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1800,2180)" name="Constant"/> <comp lib="0" loc="(120,1220)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(360,300)" name="Tunnel"> <a name="label" val="TVSTEP"/> </comp> <comp lib="1" loc="(690,1630)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(1094,2969)" name="Text"> <a name="text" val="NTVIN"/> </comp> <comp lib="0" loc="(590,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(3010,2190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(750,2530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2150,2680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(650,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(220,1680)" name="Tunnel"> <a name="label" val="/W6.1'"/> </comp> <comp lib="0" loc="(2710,2890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(250,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2940,2200)" name="D-latch"/> <comp lib="0" loc="(790,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="4" loc="(870,2220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp loc="(3060,2800)" name="D-latch"/> <comp loc="(2340,920)" name="D-latch"/> <comp lib="0" loc="(120,890)" name="Tunnel"> <a name="label" val="OB4"/> </comp> <comp lib="1" loc="(1840,3010)" name="Controlled Buffer"/> <comp lib="6" loc="(642,2614)" name="Text"> <a name="text" val="TV NULLER"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="2" loc="(2640,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(2190,2880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(2340,3120)" name="D-latch"/> <comp lib="0" loc="(2150,1880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD2"/> </comp> <comp lib="0" loc="(2250,2340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB4"/> </comp> <comp lib="0" loc="(100,1120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(1970,840)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(630,3440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,1270)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(2160,2650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="2" loc="(2830,3410)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2340,1270)" name="D-latch"/> <comp lib="6" loc="(2406,150)" name="Text"> <a name="text" val="PATTERN ADDRESS GENERATOR"/> <a name="font" val="SansSerif plain 26"/> </comp> <comp lib="0" loc="(2250,2140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB3"/> </comp> <comp loc="(3060,3000)" name="D-latch"/> <comp lib="0" loc="(120,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.1'"/> </comp> <comp lib="0" loc="(2710,2690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,450)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="H0&quot;"/> </comp> <comp lib="2" loc="(2640,2310)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2340,2670)" name="D-latch"/> <comp lib="0" loc="(100,1170)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(3010,3390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="O8/16"/> </comp> <comp lib="4" loc="(870,1020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(130,2000)" name="Tunnel"> <a name="label" val="PD0"/> </comp> <comp lib="0" loc="(3010,2390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(750,3030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(690,1920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(680,3030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(130,2310)" name="Tunnel"> <a name="label" val="BGSEL"/> </comp> <comp lib="1" loc="(1090,400)" name="NAND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1860,2180)" name="Controlled Buffer"/> <comp lib="0" loc="(660,2670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2710,2090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(2310,380)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1920,2180)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(1830,610)" name="Controlled Buffer"/> <comp lib="0" loc="(3100,1390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA4"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(2820,1910)" name="Controlled Buffer"/> <comp lib="6" loc="(630,2741)" name="Text"> <a name="text" val="TVZ"/> </comp> <comp lib="1" loc="(630,850)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(130,1920)" name="Tunnel"> <a name="label" val="RC"/> </comp> <comp lib="1" loc="(1400,3320)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(1000,1750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(1000,1780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="1" loc="(1860,1980)" name="Controlled Buffer"/> <comp lib="0" loc="(3010,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="2" loc="(2640,2510)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1970,1040)" name="Tunnel"> <a name="label" val="DB2"/> </comp> <comp lib="6" loc="(1259,3072)" name="Text"> <a name="text" val="NTV0"/> </comp> <comp lib="1" loc="(1860,840)" name="Controlled Buffer"/> <comp lib="0" loc="(790,3670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="0" loc="(680,3420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(120,1170)" name="Tunnel"> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(2170,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV1"/> </comp> <comp lib="0" loc="(2590,3100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BGSEL"/> </comp> <comp lib="1" loc="(2460,720)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1970,2180)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp lib="4" loc="(870,1420)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(850,3670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp loc="(2250,1100)" name="D-latch"/> <comp lib="0" loc="(120,580)" name="Tunnel"> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(2890,1790)" name="Constant"/> <comp loc="(2340,2130)" name="D-latch"/> <comp lib="6" loc="(996,3429)" name="Text"> <a name="text" val="FV1"/> </comp> <comp lib="0" loc="(2680,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(100,1420)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB6"/> </comp> <comp lib="2" loc="(2530,3120)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1000,2880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> </comp> <comp lib="4" loc="(700,90)" name="S-R Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(870,3220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(1700,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV0"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(1920,1040)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(2150,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD1"/> </comp> <comp lib="0" loc="(3010,1390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(2190,1280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,3230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(2710,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,2350)" name="Tunnel"> <a name="label" val="PAR/O"/> </comp> <comp lib="1" loc="(200,1860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1969,542)" name="Text"> <a name="text" val="$2007W"/> <a name="font" val="SansSerif bold 18"/> </comp> <comp lib="0" loc="(2140,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/SH2"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2710,1890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(2940,2600)" name="D-latch"/> <comp lib="0" loc="(1800,1980)" name="Constant"/> <comp lib="0" loc="(2170,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV3"/> </comp> <comp lib="0" loc="(2470,3070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="O8/16"/> </comp> <comp loc="(2250,2070)" name="D-latch"/> <comp lib="0" loc="(220,1560)" name="Tunnel"> <a name="label" val="/W0'"/> </comp> <comp lib="0" loc="(3010,2590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(2460,510)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2250,2940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(2190,2080)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2890,2790)" name="Constant"/> <comp lib="0" loc="(2160,2850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(680,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(120,850)" name="Tunnel"> <a name="label" val="OB3"/> </comp> <comp lib="0" loc="(850,1770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp loc="(2940,2800)" name="D-latch"/> <comp loc="(2340,2470)" name="D-latch"/> <comp lib="0" loc="(590,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(630,1450)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(1067,1561)" name="Text"> <a name="text" val="THZB"/> </comp> <comp loc="(2760,2900)" name="D-latch"/> <comp lib="6" loc="(777,285)" name="Text"> <a name="text" val="W6.2 LOADER"/> <a name="font" val="SansSerif bold 22"/> </comp> <comp lib="0" loc="(2890,2390)" name="Constant"/> <comp lib="0" loc="(100,1010)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB7"/> </comp> <comp lib="1" loc="(1920,1980)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1000,3000)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2270,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB7"/> </comp> <comp lib="0" loc="(3010,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(680,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(1730,110)" name="Tunnel"> <a name="label" val="OV0"/> </comp> <comp loc="(790,2720)" name="D-latch"/> <comp lib="1" loc="(1830,1210)" name="Controlled Buffer"/> <comp lib="0" loc="(2700,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2890,3390)" name="Constant"/> <comp loc="(980,110)" name="D-latch"/> <comp lib="1" loc="(1830,810)" name="Controlled Buffer"/> <comp lib="1" loc="(1920,640)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp loc="(2940,1000)" name="D-latch"/> <comp lib="1" loc="(1840,3400)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(2370,312)" name="Text"> <a name="text" val="VDIR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(2940,1200)" name="D-latch"/> <comp lib="6" loc="(993,2414)" name="Text"> <a name="text" val="TV3"/> </comp> <comp lib="0" loc="(680,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="1" loc="(2820,2110)" name="Controlled Buffer"/> <comp loc="(2940,2400)" name="D-latch"/> <comp lib="1" loc="(1440,3090)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(590,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> </comp> <comp lib="1" loc="(780,1630)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(240,500)" name="OR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(880,2670)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2940,3000)" name="D-latch"/> <comp lib="0" loc="(120,930)" name="Tunnel"> <a name="label" val="OB5"/> </comp> <comp loc="(2940,800)" name="D-latch"/> <comp lib="0" loc="(1970,640)" name="Tunnel"> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(2150,2080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(680,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(2890,790)" name="Constant"/> <comp lib="0" loc="(330,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="6" loc="(1094,2769)" name="Text"> <a name="text" val="NTHIN"/> </comp> <comp lib="0" loc="(2580,3170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(680,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(2890,990)" name="Constant"/> <comp lib="0" loc="(1000,3650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(2590,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/FVO2"/> </comp> <comp lib="1" loc="(630,3250)" name="Controlled Buffer"/> <comp lib="1" loc="(1870,2640)" name="NOR Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(1240,3140)" name="PAR_3BIT_COUNTER"/> <comp loc="(3060,600)" name="D-latch"/> <comp lib="0" loc="(1000,3080)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="#BLNK"/> </comp> <comp lib="0" loc="(3100,2990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA11"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,930)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB5"/> </comp> <comp loc="(1240,2980)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(1930,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="DB/PAR"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(2640,2910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1000,1700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(100,850)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB3"/> </comp> <comp loc="(2940,1400)" name="D-latch"/> <comp lib="0" loc="(2160,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1000,2860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(2790,3420)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="1" loc="(1860,1440)" name="Controlled Buffer"/> <comp lib="2" loc="(2640,500)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(1070,230)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(210,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="1" loc="(200,1810)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2820,1710)" name="Controlled Buffer"/> <comp loc="(3060,800)" name="D-latch"/> <comp lib="2" loc="(2560,1350)" name="Multiplexer"> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(3100,590)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(2250,510)" name="D-latch"/> <comp lib="1" loc="(780,120)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1840,2810)" name="Controlled Buffer"/> <comp lib="1" loc="(2760,390)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2340,2070)" name="D-latch"/> <comp lib="0" loc="(2700,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(110,2500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> </comp> <comp lib="1" loc="(1830,2760)" name="OR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(3060,1400)" name="D-latch"/> <comp lib="6" loc="(2788,377)" name="Text"> <a name="text" val="PARR"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2710,3090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(130,2150)" name="Tunnel"> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(120,1010)" name="Tunnel"> <a name="label" val="OB7"/> </comp> <comp loc="(3060,3400)" name="D-latch"/> <comp lib="0" loc="(590,1850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(590,3340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(270,2430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> </comp> <comp lib="6" loc="(712,1672)" name="Text"> <a name="text" val="FVZ"/> </comp> <comp lib="0" loc="(800,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBE"/> </comp> <comp lib="1" loc="(630,2850)" name="Controlled Buffer"/> <comp lib="6" loc="(1104,1623)" name="Text"> <a name="text" val="TVIN"/> </comp> <comp lib="0" loc="(2180,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,1920)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="RC"/> </comp> <comp loc="(2250,1270)" name="D-latch"/> <comp loc="(3060,1000)" name="D-latch"/> <comp lib="0" loc="(2060,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="/H1'"/> <a name="labelloc" val="north"/> </comp> <comp lib="2" loc="(2640,1710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(750,830)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(710,1592)" name="Text"> <a name="text" val="THZB"/> </comp> <comp lib="6" loc="(993,2215)" name="Text"> <a name="text" val="TV2"/> </comp> <comp lib="0" loc="(120,970)" name="Tunnel"> <a name="label" val="OB6"/> </comp> <comp loc="(2750,700)" name="D-latch"/> <comp lib="0" loc="(200,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2250,2540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB5"/> </comp> <comp loc="(2250,920)" name="D-latch"/> <comp lib="0" loc="(2160,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2890,1390)" name="Constant"/> <comp lib="1" loc="(160,2720)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(918,2816)" name="Text"> <a name="text" val="NTH"/> </comp> <comp loc="(2760,1700)" name="D-latch"/> <comp lib="1" loc="(200,1750)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(110,2610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="4" loc="(870,1220)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(120,1470)" name="Tunnel"> <a name="label" val="DB7"/> </comp> <comp loc="(3060,2200)" name="D-latch"/> <comp loc="(2760,3100)" name="D-latch"/> <comp lib="0" loc="(3100,3390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA13"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(460,440)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(130,2090)" name="Tunnel"> <a name="label" val="PD3"/> </comp> <comp lib="1" loc="(2820,910)" name="Controlled Buffer"/> <comp lib="0" loc="(100,2210)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD7"/> </comp> <comp loc="(250,230)" name="D-latch"/> <comp lib="0" loc="(130,2180)" name="Tunnel"> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(1500,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="TVO1"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1178,1561)" name="Text"> <a name="text" val="THZ"/> </comp> <comp lib="0" loc="(100,580)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(1970,1980)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(1000,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(2820,1310)" name="Controlled Buffer"/> <comp lib="0" loc="(2710,2490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="4" loc="(870,3020)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="1" loc="(630,1850)" name="Controlled Buffer"/> <comp lib="0" loc="(680,3230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="6" loc="(1800,2235)" name="Text"> <a name="text" val="PAL"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2560,1390)" name="Tunnel"> <a name="label" val="O8/16"/> </comp> <comp lib="0" loc="(120,290)" name="Tunnel"> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(1730,170)" name="Tunnel"> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(2890,2590)" name="Constant"/> <comp lib="6" loc="(1099,3130)" name="Text"> <a name="text" val="FVIN"/> </comp> <comp lib="0" loc="(680,2530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> </comp> <comp lib="6" loc="(1802,2675)" name="Text"> <a name="text" val="PAH"/> <a name="font" val="SansSerif bold 12"/> </comp> <comp loc="(2340,1670)" name="D-latch"/> <comp lib="0" loc="(3010,2790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(2150,2280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(570,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(100,2310)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="BGSEL"/> </comp> <comp lib="2" loc="(2640,2710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="1" loc="(250,290)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(2820,710)" name="Controlled Buffer"/> <comp loc="(2340,2730)" name="D-latch"/> <comp lib="0" loc="(2150,2480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD5"/> </comp> <comp lib="0" loc="(1000,3060)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="6" loc="(1116,394)" name="Text"> <a name="text" val="THIN"/> </comp> <comp lib="0" loc="(3100,1990)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA6"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,2000)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD0"/> </comp> <comp lib="6" loc="(991,2665)" name="Text"> <a name="text" val="0/TV"/> </comp> <comp lib="1" loc="(1830,2610)" name="Controlled Buffer"/> <comp lib="1" loc="(2460,920)" name="XOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(750,3620)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(3060,2400)" name="D-latch"/> <comp lib="1" loc="(1860,1240)" name="Controlled Buffer"/> <comp lib="1" loc="(2820,2310)" name="Controlled Buffer"/> <comp loc="(2340,1100)" name="D-latch"/> <comp lib="0" loc="(590,1920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/W5.2'"/> </comp> <comp lib="0" loc="(100,2150)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD5"/> </comp> <comp lib="1" loc="(2750,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1920,840)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(120,770)" name="Tunnel"> <a name="label" val="OB1"/> </comp> <comp lib="0" loc="(100,1320)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(260,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1240,2780)" name="PAR_1BIT_COUNTER"/> <comp lib="0" loc="(130,2120)" name="Tunnel"> <a name="label" val="PD4"/> </comp> <comp lib="0" loc="(2890,590)" name="Constant"/> <comp lib="0" loc="(1000,520)" name="Constant"/> <comp loc="(2760,2100)" name="D-latch"/> <comp lib="0" loc="(680,2230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="#F/NT"/> </comp> <comp lib="0" loc="(130,50)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp loc="(2940,3400)" name="D-latch"/> <comp lib="0" loc="(100,340)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="TSTEP"/> </comp> <comp loc="(2340,2930)" name="D-latch"/> <comp lib="0" loc="(100,730)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OB0"/> </comp> <comp loc="(1240,1670)" name="PAR_5BIT_COUNTER"/> <comp lib="1" loc="(1840,3210)" name="Controlled Buffer"/> <comp lib="0" loc="(220,1860)" name="Tunnel"> <a name="label" val="DBE"/> </comp> <comp lib="1" loc="(1860,640)" name="Controlled Buffer"/> <comp loc="(2250,2670)" name="D-latch"/> <comp lib="1" loc="(2190,1680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(995,2614)" name="Text"> <a name="text" val="TV4"/> </comp> <comp lib="1" loc="(630,2550)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(750,2230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(120,1420)" name="Tunnel"> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(220,90)" name="Tunnel"> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(2190,2280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="0" loc="(2280,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(3100,1790)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA5"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,1550)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W0"/> </comp> <comp lib="0" loc="(100,2270)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="OBSEL"/> </comp> <comp lib="6" loc="(988,1416)" name="Text"> <a name="text" val="TH4"/> </comp> <comp lib="0" loc="(2890,2990)" name="Constant"/> <comp lib="0" loc="(130,2210)" name="Tunnel"> <a name="label" val="PD7"/> </comp> <comp lib="0" loc="(1970,1240)" name="Tunnel"> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(1670,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="OV1"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(100,2350)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PAR/O"/> </comp> <comp lib="0" loc="(3100,2390)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA8"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(160,2610)" name="Controlled Buffer"/> <comp lib="1" loc="(2820,2710)" name="Controlled Buffer"/> <comp lib="0" loc="(360,380)" name="Tunnel"> <a name="label" val="THSTEP"/> </comp> <comp lib="1" loc="(200,1680)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(2404,259)" name="Text"> <a name="text" val="SPRITE V. INVERSION"/> <a name="font" val="SansSerif bold 20"/> </comp> <comp loc="(2750,900)" name="D-latch"/> <comp lib="0" loc="(3010,1990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp loc="(1240,470)" name="PAR_5BIT_COUNTER"/> <comp lib="0" loc="(2160,1650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1830,2010)" name="Controlled Buffer"/> <comp lib="1" loc="(630,2050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(710,2720)" name="D-latch"/> <comp lib="0" loc="(320,2700)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="FH2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(3010,1790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,1320)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp lib="6" loc="(993,817)" name="Text"> <a name="text" val="TH1"/> </comp> <comp lib="0" loc="(2170,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV0"/> </comp> <comp lib="0" loc="(100,2060)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD2"/> </comp> <comp lib="6" loc="(1344,2693)" name="Text"> <a name="text" val="THZ"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="l1/32"/> </comp> <comp loc="(380,230)" name="D-latch"/> <comp lib="0" loc="(590,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> </comp> <comp lib="6" loc="(992,2016)" name="Text"> <a name="text" val="TV1"/> </comp> <comp lib="1" loc="(2820,3110)" name="Controlled Buffer"/> <comp lib="1" loc="(630,3050)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,2180)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD6"/> </comp> <comp lib="0" loc="(100,1220)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB2"/> </comp> <comp loc="(2340,510)" name="D-latch"/> <comp lib="0" loc="(1730,200)" name="Tunnel"> <a name="label" val="OV3"/> </comp> <comp lib="1" loc="(1830,2210)" name="Controlled Buffer"/> <comp lib="1" loc="(450,130)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(1460,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO4"/> <a name="labelloc" val="north"/> </comp> <comp lib="0" loc="(2180,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp loc="(2250,1870)" name="D-latch"/> <comp lib="1" loc="(750,2830)" name="Controlled Buffer"/> <comp lib="0" loc="(590,2050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(2170,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OV2"/> </comp> <comp lib="0" loc="(1040,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> </comp> <comp loc="(790,2630)" name="D-latch"/> <comp loc="(2340,1730)" name="D-latch"/> <comp lib="2" loc="(2640,3110)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp lib="0" loc="(1040,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="l1/32"/> </comp> <comp lib="0" loc="(1000,2800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1000,3180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(2890,2190)" name="Constant"/> <comp loc="(2340,1930)" name="D-latch"/> <comp lib="0" loc="(1850,70)" name="Pin"> <a name="facing" val="south"/> <a name="tristate" val="false"/> <a name="label" val="F/AT"/> <a name="labelloc" val="north"/> </comp> <comp lib="1" loc="(180,400)" name="AND Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2180,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="1" loc="(1830,2410)" name="Controlled Buffer"/> <comp lib="0" loc="(3100,1190)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="/PA3"/> <a name="labelloc" val="east"/> </comp> <comp lib="2" loc="(2640,1910)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="enable" val="false"/> </comp> <comp loc="(2340,2330)" name="D-latch"/> <comp lib="1" loc="(630,2250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="0" loc="(100,1370)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(590,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> </comp> <comp loc="(2940,1800)" name="D-latch"/> <comp lib="0" loc="(590,2450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> </comp> <comp lib="1" loc="(340,300)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="1" loc="(1820,2240)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(2480,3110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(2250,3130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp lib="0" loc="(330,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(750,170)" name="Tunnel"> <a name="label" val="/W6.2'"/> </comp> <comp lib="0" loc="(2250,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB0"/> </comp> <comp loc="(3060,3200)" name="D-latch"/> <comp lib="0" loc="(2160,2250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(2890,1990)" name="Constant"/> <comp lib="1" loc="(750,1830)" name="Controlled Buffer"/> <comp lib="1" loc="(160,2500)" name="Controlled Buffer"/> <comp loc="(2250,720)" name="D-latch"/> <comp lib="1" loc="(200,1560)" name="NOR Gate"> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(2250,1670)" name="D-latch"/> <comp lib="1" loc="(1860,2580)" name="Controlled Buffer"/> <comp lib="4" loc="(290,2480)" name="D Flip-Flop"> <a name="trigger" val="high"/> </comp> <comp lib="0" loc="(100,2090)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="PD3"/> </comp> <comp lib="0" loc="(1970,1440)" name="Tunnel"> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(100,1610)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/W5/2"/> </comp> <comp lib="0" loc="(2700,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="/PCLK"/> </comp> <comp lib="0" loc="(1420,70)" name="Pin"> <a name="facing" val="south"/> <a name="output" val="true"/> <a name="tristate" val="false"/> <a name="label" val="THO3"/> <a name="labelloc" val="north"/> </comp> <comp lib="6" loc="(1066,2712)" name="Text"> <a name="text" val="TVZB"/> </comp> <comp lib="1" loc="(700,2640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,2030)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> </circuit> <circuit name="EXT_IO"> <a name="circuit" val="EXT_IO"/> <a name="clabel" val="EXT IO"/> <a name="clabelup" val="north"/> <a name="clabelfont" val="SansSerif plain 18"/> <appear> <path d="M185,40 Q189,50 193,40" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#e8ffee" height="70" stroke="#000000" stroke-width="2" width="250" x="50" y="40"/> <polyline fill="none" points="50,56 55,56" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="50,64 55,64" stroke="#000000" stroke-width="2"/> <polyline fill="none" points="56,56 56,64" stroke="#000000" stroke-width="2"/> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="64">PCLK</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="94">/SLAVE</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="140" y="58">EXT0</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="181" y="58">EXT1</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="219" y="58">EXT2</text> <text font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="58">EXT3</text> <circ-port height="8" pin="100,60" width="8" x="46" y="56"/> <circ-port height="8" pin="100,120" width="8" x="126" y="106"/> <circ-port height="10" pin="100,180" width="10" x="145" y="105"/> <circ-port height="8" pin="100,260" width="8" x="166" y="106"/> <circ-port height="10" pin="100,320" width="10" x="185" y="105"/> <circ-port height="8" pin="100,400" width="8" x="206" y="106"/> <circ-port height="10" pin="100,460" width="10" x="225" y="105"/> <circ-port height="8" pin="100,540" width="8" x="246" y="106"/> <circ-port height="10" pin="100,600" width="10" x="265" y="105"/> <circ-port height="8" pin="100,670" width="8" x="46" y="86"/> <circ-port height="10" pin="340,120" width="10" x="125" y="35"/> <circ-port height="8" pin="340,190" width="8" x="146" y="36"/> <circ-port height="10" pin="340,260" width="10" x="165" y="35"/> <circ-port height="8" pin="340,330" width="8" x="186" y="36"/> <circ-port height="10" pin="340,400" width="10" x="205" y="35"/> <circ-port height="8" pin="340,470" width="8" x="226" y="36"/> <circ-port height="10" pin="340,540" width="10" x="245" y="35"/> <circ-port height="8" pin="340,610" width="8" x="266" y="36"/> <circ-anchor facing="east" height="6" width="6" x="297" y="37"/> </appear> <wire from="(220,190)" to="(340,190)"/> <wire from="(220,330)" to="(340,330)"/> <wire from="(220,470)" to="(340,470)"/> <wire from="(220,610)" to="(340,610)"/> <wire from="(160,100)" to="(160,240)"/> <wire from="(160,240)" to="(160,380)"/> <wire from="(160,380)" to="(160,520)"/> <wire from="(300,590)" to="(300,670)"/> <wire from="(300,170)" to="(300,270)"/> <wire from="(300,310)" to="(300,410)"/> <wire from="(300,450)" to="(300,550)"/> <wire from="(220,170)" to="(250,170)"/> <wire from="(220,310)" to="(250,310)"/> <wire from="(220,450)" to="(250,450)"/> <wire from="(220,590)" to="(250,590)"/> <wire from="(100,60)" to="(130,60)"/> <wire from="(270,170)" to="(300,170)"/> <wire from="(270,310)" to="(300,310)"/> <wire from="(270,450)" to="(300,450)"/> <wire from="(270,590)" to="(300,590)"/> <wire from="(310,120)" to="(340,120)"/> <wire from="(310,260)" to="(340,260)"/> <wire from="(310,400)" to="(340,400)"/> <wire from="(310,540)" to="(340,540)"/> <wire from="(100,180)" to="(190,180)"/> <wire from="(100,320)" to="(190,320)"/> <wire from="(100,460)" to="(190,460)"/> <wire from="(100,600)" to="(190,600)"/> <wire from="(160,60)" to="(160,100)"/> <wire from="(300,130)" to="(300,170)"/> <wire from="(300,270)" to="(300,310)"/> <wire from="(300,410)" to="(300,450)"/> <wire from="(300,550)" to="(300,590)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(160,520)" to="(180,520)"/> <wire from="(100,120)" to="(180,120)"/> <wire from="(100,260)" to="(180,260)"/> <wire from="(100,400)" to="(180,400)"/> <wire from="(100,540)" to="(180,540)"/> <wire from="(150,60)" to="(160,60)"/> <wire from="(220,120)" to="(290,120)"/> <wire from="(220,260)" to="(290,260)"/> <wire from="(220,400)" to="(290,400)"/> <wire from="(220,540)" to="(290,540)"/> <wire from="(100,670)" to="(300,670)"/> <comp loc="(220,530)" name="D-latch"/> <comp lib="0" loc="(130,60)" name="Splitter"> <a name="fanout" val="1"/> <a name="appear" val="center"/> <a name="bit0" val="none"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="/SLAVE"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT0_OUT"/> </comp> <comp lib="1" loc="(250,450)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(340,540)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT3"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,330)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,460)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT2_IN"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT0_IN"/> </comp> <comp lib="0" loc="(100,400)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT2_OUT"/> </comp> <comp lib="1" loc="(310,120)" name="Controlled Buffer"/> <comp lib="0" loc="(340,470)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(340,190)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT0"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,600)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT3_IN"/> </comp> <comp lib="0" loc="(340,610)" name="Pin"> <a name="facing" val="west"/> <a name="tristate" val="false"/> <a name="label" val="EXT3"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(190,460)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="output" val="true"/> <a name="label" val="EXT1_IN"/> </comp> <comp lib="0" loc="(340,120)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(220,390)" name="D-latch"/> <comp lib="1" loc="(250,170)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="width" val="2"/> <a name="tristate" val="false"/> <a name="label" val="PCLK"/> </comp> <comp lib="1" loc="(310,400)" name="Controlled Buffer"/> <comp lib="0" loc="(100,540)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT3_OUT"/> </comp> <comp loc="(220,250)" name="D-latch"/> <comp lib="1" loc="(250,590)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,260)" name="Controlled Buffer"/> <comp lib="1" loc="(190,320)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp loc="(220,110)" name="D-latch"/> <comp lib="1" loc="(250,310)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,600)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="0" loc="(340,260)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT1"/> <a name="labelloc" val="east"/> </comp> <comp lib="1" loc="(310,540)" name="Controlled Buffer"/> <comp lib="0" loc="(340,400)" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="label" val="EXT2"/> <a name="labelloc" val="east"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="tristate" val="false"/> <a name="label" val="EXT1_OUT"/> </comp> <comp lib="1" loc="(190,180)" name="AND Gate"> <a name="facing" val="west"/> <a name="size" val="30"/> <a name="inputs" val="2"/> </comp> <comp lib="6" loc="(186,65)" name="Text"> <a name="text" val="/PCLK"/> </comp> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
# Logisim All sorts of general documentation and schematics of the general outline for Logisim. ## NMOS Cheat Sheet Typical NMOS circuits. (Logisim Evolution) ## PPUPlayer Standalone PPU test circuit. (Logisim 2.7.1) ![PPUPlayer_All.png](PPUPlayer_All.png) ### Как подготовить PPU Player Сделать следующие дампы: - Дамп CHR (например mario_chr.bin) - Дамп VRAM (например mario_vram.bin) - Дамп CRAM (например mario_cram.bin) - Дамп OAM (например mario_oam.bin) Сделать дампы можно в любом эмуляторе или через PPU Player в меню PPU Dumps. Конвертировать дампы в формат Logisim: ``` c:\Work\breaks\Docs\6502\6502_logisim>py -3 bin2hex.py mario_chr.bin mario_chr.hex c:\Work\breaks\Docs\6502\6502_logisim>py -3 bin2hex.py mario_vram.bin mario_vram.hex c:\Work\breaks\Docs\6502\6502_logisim>py -3 bin2hex.py mario_cram.bin mario_cram.hex c:\Work\breaks\Docs\6502\6502_logisim>py -3 bin2hex.py mario_oam.bin mario_oam.hex ``` Загрузить HEX дампы в соответствующие блоки памяти: ![ppu_dumps.png](ppu_dumps.png) Сделать /DBE = 1 (отключить CPU I/F). Сделать /RES = 0, выполнить несколько циклов (сбросить PPU). Сделать /RES = 1 (отменить сброс) Зайти внутрь PPU и нажать кнопку рядом с сигналом RC для мануального сброса Reset_FF, чтобы не ждать целый кадр сигнала RESCL. Через CPU I/F установить: R/W = 0, DB = 0b00011000, /DBE = 0, RS = 0b001. Выполнить несколько циклов. Это включит рендеринг PPU ($2001 = 0x18). По аналогии можно дополнительно установить регистр $2000 для выбора банка CHR, как этого требует игра (биты OBSEL / BGSEL). Сделать снова /DBE = 1 (отключить CPU I/F). Теперь PPU готов к прожарке. ### Как дампить композитный видеосигнал Запускаем PPU на симуляцию и ждём пока память VideoDumper не заполнится примерно до адреса 9E000 (это примерно 1 кадр). Сохраняем дамп памяти VideoDumper (как например `mario_ntsc_dump.hex`). Открываем сохраненный .hex в PPUPlayer, в меню Misc -> Load Composite Dump... PS. Можно дампить больше одного кадра, выбирать их можно с помощью Combo Box. Если сдампится меньше кадра - то покажется "огрызок". ## APU Player Standalone APU test circuit. (Logisim 2.7.1) ![APUPlayer.jpg](APUPlayer.jpg) ![Fake6502.jpg](Fake6502.jpg) ![RegDumpProcessor.jpg](RegDumpProcessor.jpg)
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
Generated by `Scripts/APU_DAC_Generator.py` (normalized to [0.0;1.0])
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="3.8.0" version="1.0"> This file is intended to be loaded by Logisim-evolution v3.8.0(https://github.com/logisim-evolution/). <lib desc="#Wiring" name="0"> <tool name="Pin"> <a name="appearance" val="classic"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"/> <lib desc="#I/O" name="5"/> <lib desc="#TTL" name="6"/> <lib desc="#TCL" name="7"/> <lib desc="#Base" name="8"> <tool name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> </lib> <lib desc="#BFH-Praktika" name="9"/> <lib desc="#Input/Output-Extra" name="10"/> <lib desc="#Soc" name="11"/> <lib desc="file#6502_Evo.circ" name="12"/> <main name="APU"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="8" map="Button2" name="Menu Tool"/> <tool lib="8" map="Button3" name="Menu Tool"/> <tool lib="8" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="8" name="Poke Tool"/> <tool lib="8" name="Edit Tool"/> <tool lib="8" name="Wiring Tool"/> <tool lib="8" name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> <sep/> <tool lib="0" name="Pin"/> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> </tool> <sep/> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> <tool lib="1" name="XOR Gate"/> <tool lib="1" name="NAND Gate"/> <tool lib="1" name="NOR Gate"/> <sep/> <tool lib="4" name="D Flip-Flop"/> <tool lib="4" name="Register"/> </toolbar> <circuit name="APU"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="APU"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(190,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2030,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RnW"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN0"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN1"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_0"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_1"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_2"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2030,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="tristate" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(2030,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2030,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="M2"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2040,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_A"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2040,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_B"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(810,160)" name="NoConnect"/> <comp lib="0" loc="(950,560)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="29"/> <a name="incoming" val="29"/> </comp> <comp lib="1" loc="(150,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1570,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1760,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1810,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,360)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1810,510)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1810,70)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1820,530)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(400,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(160,100)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="RES"/> </comp> <comp lib="8" loc="(1605,340)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="NotDBG_RES"/> </comp> <comp loc="(1210,100)" name="SoftCLK"> <a name="label" val="soft_clk"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1340,570)" name="SoundGenerators"> <a name="label" val="sound_gen"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1670,440)" name="DebugLock"> <a name="label" val="lock"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1670,80)" name="OUT_Ports"> <a name="label" val="io"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1670,840)" name="RWDecode"> <a name="label" val="rw_decoder"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(2010,560)" name="DataBusPads"> <a name="label" val="dbus"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,100)" name="DIV"> <a name="label" val="clk_div"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(490,490)" name="RegPredecode"> <a name="label" val="regs_predecode"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,450)" name="RegSel"> <a name="label" val="regops"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(800,100)" name="Core"> <a name="label" val="m6502"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1020,560)" to="(1020,710)"/> <wire from="(1020,710)" to="(1120,710)"/> <wire from="(1030,400)" to="(1030,750)"/> <wire from="(1030,750)" to="(1120,750)"/> <wire from="(1040,390)" to="(1040,770)"/> <wire from="(1040,770)" to="(1120,770)"/> <wire from="(1060,1010)" to="(2020,1010)"/> <wire from="(1060,370)" to="(1060,570)"/> <wire from="(1060,570)" to="(1120,570)"/> <wire from="(1060,730)" to="(1060,1010)"/> <wire from="(1060,730)" to="(1120,730)"/> <wire from="(1070,360)" to="(1070,590)"/> <wire from="(1070,590)" to="(1120,590)"/> <wire from="(1070,950)" to="(1070,960)"/> <wire from="(1070,960)" to="(1720,960)"/> <wire from="(1080,480)" to="(1080,670)"/> <wire from="(1080,480)" to="(1240,480)"/> <wire from="(1080,670)" to="(1120,670)"/> <wire from="(1090,490)" to="(1090,650)"/> <wire from="(1090,490)" to="(1250,490)"/> <wire from="(1090,650)" to="(1120,650)"/> <wire from="(1090,790)" to="(1090,950)"/> <wire from="(1090,790)" to="(1120,790)"/> <wire from="(1090,950)" to="(1690,950)"/> <wire from="(110,70)" to="(130,70)"/> <wire from="(1100,500)" to="(1100,630)"/> <wire from="(1100,500)" to="(1260,500)"/> <wire from="(1100,630)" to="(1120,630)"/> <wire from="(1110,510)" to="(1110,610)"/> <wire from="(1110,510)" to="(1270,510)"/> <wire from="(1110,610)" to="(1120,610)"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,140)" to="(220,140)"/> <wire from="(120,170)" to="(500,170)"/> <wire from="(120,230)" to="(250,230)"/> <wire from="(1210,100)" to="(1270,100)"/> <wire from="(1210,120)" to="(1260,120)"/> <wire from="(1210,140)" to="(1250,140)"/> <wire from="(1210,160)" to="(1240,160)"/> <wire from="(1210,180)" to="(1230,180)"/> <wire from="(1210,200)" to="(1320,200)"/> <wire from="(1230,180)" to="(1230,340)"/> <wire from="(1240,160)" to="(1240,480)"/> <wire from="(1250,140)" to="(1250,490)"/> <wire from="(1260,120)" to="(1260,500)"/> <wire from="(1260,120)" to="(1440,120)"/> <wire from="(1270,100)" to="(1270,510)"/> <wire from="(1270,100)" to="(1450,100)"/> <wire from="(1290,310)" to="(1290,500)"/> <wire from="(1290,310)" to="(1390,310)"/> <wire from="(1290,500)" to="(1450,500)"/> <wire from="(1320,200)" to="(1320,270)"/> <wire from="(1320,270)" to="(1320,540)"/> <wire from="(1320,540)" to="(1450,540)"/> <wire from="(1340,570)" to="(1360,570)"/> <wire from="(1340,590)" to="(1370,590)"/> <wire from="(1340,610)" to="(1410,610)"/> <wire from="(1340,630)" to="(1380,630)"/> <wire from="(1340,650)" to="(1450,650)"/> <wire from="(1340,670)" to="(2040,670)"/> <wire from="(1340,690)" to="(2040,690)"/> <wire from="(1350,80)" to="(1350,990)"/> <wire from="(1350,80)" to="(1450,80)"/> <wire from="(1360,280)" to="(1360,570)"/> <wire from="(1370,300)" to="(1370,590)"/> <wire from="(1380,630)" to="(1380,1080)"/> <wire from="(1380,630)" to="(1750,630)"/> <wire from="(1390,140)" to="(1390,310)"/> <wire from="(1390,140)" to="(1450,140)"/> <wire from="(1390,360)" to="(1390,420)"/> <wire from="(1390,360)" to="(1530,360)"/> <wire from="(1390,420)" to="(1390,880)"/> <wire from="(1390,880)" to="(1450,880)"/> <wire from="(1390,900)" to="(1390,1090)"/> <wire from="(1390,900)" to="(1450,900)"/> <wire from="(1400,330)" to="(1400,860)"/> <wire from="(1400,860)" to="(1450,860)"/> <wire from="(1410,60)" to="(1410,610)"/> <wire from="(1410,60)" to="(1700,60)"/> <wire from="(1410,610)" to="(1410,840)"/> <wire from="(1410,840)" to="(1450,840)"/> <wire from="(1420,440)" to="(1420,1030)"/> <wire from="(1420,440)" to="(1450,440)"/> <wire from="(1430,340)" to="(1430,480)"/> <wire from="(1430,340)" to="(1490,340)"/> <wire from="(1430,40)" to="(1430,340)"/> <wire from="(1430,40)" to="(1770,40)"/> <wire from="(1430,480)" to="(1450,480)"/> <wire from="(1440,120)" to="(1440,460)"/> <wire from="(1440,120)" to="(1450,120)"/> <wire from="(1440,460)" to="(1450,460)"/> <wire from="(1450,540)" to="(1450,650)"/> <wire from="(1450,650)" to="(1620,650)"/> <wire from="(150,110)" to="(200,110)"/> <wire from="(150,70)" to="(220,70)"/> <wire from="(1510,340)" to="(1530,340)"/> <wire from="(1570,350)" to="(1710,350)"/> <wire from="(1620,580)" to="(1620,650)"/> <wire from="(1620,580)" to="(1790,580)"/> <wire from="(1670,100)" to="(1680,100)"/> <wire from="(1670,120)" to="(1670,360)"/> <wire from="(1670,360)" to="(1790,360)"/> <wire from="(1670,440)" to="(1690,440)"/> <wire from="(1670,80)" to="(1690,80)"/> <wire from="(1670,840)" to="(1770,840)"/> <wire from="(1670,860)" to="(1760,860)"/> <wire from="(1680,100)" to="(1680,320)"/> <wire from="(1680,320)" to="(1790,320)"/> <wire from="(1690,280)" to="(1790,280)"/> <wire from="(1690,440)" to="(1690,950)"/> <wire from="(1690,80)" to="(1690,280)"/> <wire from="(1700,120)" to="(1790,120)"/> <wire from="(1700,60)" to="(1700,120)"/> <wire from="(1710,50)" to="(1710,350)"/> <wire from="(1710,50)" to="(1780,50)"/> <wire from="(1710,560)" to="(1710,1100)"/> <wire from="(1710,560)" to="(1790,560)"/> <wire from="(1720,230)" to="(1720,960)"/> <wire from="(1720,230)" to="(1790,230)"/> <wire from="(1720,30)" to="(1720,70)"/> <wire from="(1720,70)" to="(1740,70)"/> <wire from="(1730,180)" to="(1730,970)"/> <wire from="(1730,180)" to="(1790,180)"/> <wire from="(1750,530)" to="(1750,630)"/> <wire from="(1750,530)" to="(1800,530)"/> <wire from="(1760,600)" to="(1760,860)"/> <wire from="(1760,600)" to="(1790,600)"/> <wire from="(1760,70)" to="(1790,70)"/> <wire from="(1770,100)" to="(1770,160)"/> <wire from="(1770,100)" to="(1780,100)"/> <wire from="(1770,160)" to="(1770,210)"/> <wire from="(1770,160)" to="(1780,160)"/> <wire from="(1770,210)" to="(1770,260)"/> <wire from="(1770,210)" to="(1780,210)"/> <wire from="(1770,260)" to="(1770,300)"/> <wire from="(1770,260)" to="(1780,260)"/> <wire from="(1770,300)" to="(1770,340)"/> <wire from="(1770,300)" to="(1780,300)"/> <wire from="(1770,340)" to="(1770,510)"/> <wire from="(1770,340)" to="(1780,340)"/> <wire from="(1770,40)" to="(1770,100)"/> <wire from="(1770,510)" to="(1790,510)"/> <wire from="(1770,620)" to="(1770,840)"/> <wire from="(1770,620)" to="(1790,620)"/> <wire from="(1800,100)" to="(1800,110)"/> <wire from="(1800,160)" to="(1800,170)"/> <wire from="(1800,210)" to="(1800,220)"/> <wire from="(1800,260)" to="(1800,270)"/> <wire from="(1800,300)" to="(1800,310)"/> <wire from="(1800,340)" to="(1800,350)"/> <wire from="(1800,50)" to="(1800,60)"/> <wire from="(1810,120)" to="(2030,120)"/> <wire from="(1810,180)" to="(2030,180)"/> <wire from="(1810,230)" to="(2030,230)"/> <wire from="(1810,280)" to="(2030,280)"/> <wire from="(1810,320)" to="(2030,320)"/> <wire from="(1810,360)" to="(2030,360)"/> <wire from="(1810,510)" to="(1810,520)"/> <wire from="(1810,70)" to="(2030,70)"/> <wire from="(1820,530)" to="(2030,530)"/> <wire from="(190,590)" to="(430,590)"/> <wire from="(200,40)" to="(200,110)"/> <wire from="(200,40)" to="(540,40)"/> <wire from="(2010,560)" to="(2020,560)"/> <wire from="(2010,580)" to="(2030,580)"/> <wire from="(2020,560)" to="(2020,1010)"/> <wire from="(210,390)" to="(210,510)"/> <wire from="(210,390)" to="(850,390)"/> <wire from="(210,510)" to="(270,510)"/> <wire from="(220,100)" to="(260,100)"/> <wire from="(220,140)" to="(220,210)"/> <wire from="(220,210)" to="(380,210)"/> <wire from="(220,400)" to="(220,490)"/> <wire from="(220,400)" to="(840,400)"/> <wire from="(220,490)" to="(270,490)"/> <wire from="(220,70)" to="(220,100)"/> <wire from="(250,120)" to="(260,120)"/> <wire from="(250,230)" to="(250,420)"/> <wire from="(250,420)" to="(1390,420)"/> <wire from="(250,420)" to="(250,470)"/> <wire from="(250,470)" to="(540,470)"/> <wire from="(250,70)" to="(250,120)"/> <wire from="(250,70)" to="(810,70)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(400,230)" to="(400,340)"/> <wire from="(400,230)" to="(420,230)"/> <wire from="(400,340)" to="(1230,340)"/> <wire from="(430,1100)" to="(1710,1100)"/> <wire from="(430,590)" to="(430,1100)"/> <wire from="(460,220)" to="(520,220)"/> <wire from="(480,100)" to="(580,100)"/> <wire from="(480,120)" to="(490,120)"/> <wire from="(490,30)" to="(1720,30)"/> <wire from="(490,30)" to="(490,120)"/> <wire from="(490,490)" to="(510,490)"/> <wire from="(490,510)" to="(540,510)"/> <wire from="(500,120)" to="(500,170)"/> <wire from="(500,120)" to="(580,120)"/> <wire from="(510,1090)" to="(1390,1090)"/> <wire from="(510,490)" to="(510,1090)"/> <wire from="(510,490)" to="(540,490)"/> <wire from="(520,1080)" to="(1380,1080)"/> <wire from="(520,140)" to="(520,220)"/> <wire from="(520,140)" to="(580,140)"/> <wire from="(520,370)" to="(520,450)"/> <wire from="(520,370)" to="(870,370)"/> <wire from="(520,450)" to="(540,450)"/> <wire from="(520,530)" to="(520,1080)"/> <wire from="(520,530)" to="(540,530)"/> <wire from="(540,160)" to="(550,160)"/> <wire from="(540,200)" to="(540,310)"/> <wire from="(540,200)" to="(580,200)"/> <wire from="(540,310)" to="(980,310)"/> <wire from="(540,40)" to="(540,160)"/> <wire from="(540,40)" to="(970,40)"/> <wire from="(560,180)" to="(560,300)"/> <wire from="(560,180)" to="(580,180)"/> <wire from="(560,300)" to="(1370,300)"/> <wire from="(570,160)" to="(580,160)"/> <wire from="(760,1010)" to="(930,1010)"/> <wire from="(760,450)" to="(930,450)"/> <wire from="(760,470)" to="(920,470)"/> <wire from="(760,490)" to="(890,490)"/> <wire from="(760,510)" to="(900,510)"/> <wire from="(760,530)" to="(890,530)"/> <wire from="(760,550)" to="(880,550)"/> <wire from="(760,570)" to="(870,570)"/> <wire from="(760,590)" to="(860,590)"/> <wire from="(760,610)" to="(850,610)"/> <wire from="(760,630)" to="(840,630)"/> <wire from="(760,650)" to="(830,650)"/> <wire from="(760,670)" to="(820,670)"/> <wire from="(760,690)" to="(930,690)"/> <wire from="(760,710)" to="(780,710)"/> <wire from="(760,730)" to="(790,730)"/> <wire from="(760,750)" to="(800,750)"/> <wire from="(760,770)" to="(810,770)"/> <wire from="(760,790)" to="(820,790)"/> <wire from="(760,810)" to="(830,810)"/> <wire from="(760,830)" to="(840,830)"/> <wire from="(760,850)" to="(850,850)"/> <wire from="(760,870)" to="(860,870)"/> <wire from="(760,890)" to="(870,890)"/> <wire from="(760,910)" to="(880,910)"/> <wire from="(760,930)" to="(890,930)"/> <wire from="(760,950)" to="(900,950)"/> <wire from="(760,970)" to="(910,970)"/> <wire from="(760,990)" to="(920,990)"/> <wire from="(780,700)" to="(780,710)"/> <wire from="(780,700)" to="(930,700)"/> <wire from="(790,710)" to="(790,730)"/> <wire from="(790,710)" to="(930,710)"/> <wire from="(800,100)" to="(870,100)"/> <wire from="(800,120)" to="(810,120)"/> <wire from="(800,140)" to="(850,140)"/> <wire from="(800,160)" to="(810,160)"/> <wire from="(800,180)" to="(840,180)"/> <wire from="(800,200)" to="(810,200)"/> <wire from="(800,720)" to="(800,750)"/> <wire from="(800,720)" to="(930,720)"/> <wire from="(810,1030)" to="(1420,1030)"/> <wire from="(810,120)" to="(880,120)"/> <wire from="(810,200)" to="(810,270)"/> <wire from="(810,270)" to="(1320,270)"/> <wire from="(810,70)" to="(810,120)"/> <wire from="(810,730)" to="(810,770)"/> <wire from="(810,730)" to="(930,730)"/> <wire from="(810,770)" to="(810,1030)"/> <wire from="(820,670)" to="(820,680)"/> <wire from="(820,680)" to="(930,680)"/> <wire from="(820,740)" to="(820,790)"/> <wire from="(820,740)" to="(930,740)"/> <wire from="(830,650)" to="(830,670)"/> <wire from="(830,670)" to="(930,670)"/> <wire from="(830,750)" to="(830,810)"/> <wire from="(830,750)" to="(930,750)"/> <wire from="(840,180)" to="(840,400)"/> <wire from="(840,400)" to="(1030,400)"/> <wire from="(840,630)" to="(840,660)"/> <wire from="(840,660)" to="(930,660)"/> <wire from="(840,760)" to="(840,830)"/> <wire from="(840,760)" to="(930,760)"/> <wire from="(850,140)" to="(850,390)"/> <wire from="(850,390)" to="(1040,390)"/> <wire from="(850,610)" to="(850,650)"/> <wire from="(850,650)" to="(930,650)"/> <wire from="(850,770)" to="(850,850)"/> <wire from="(850,770)" to="(930,770)"/> <wire from="(860,590)" to="(860,640)"/> <wire from="(860,640)" to="(930,640)"/> <wire from="(860,780)" to="(860,870)"/> <wire from="(860,780)" to="(930,780)"/> <wire from="(870,100)" to="(870,370)"/> <wire from="(870,100)" to="(990,100)"/> <wire from="(870,370)" to="(1060,370)"/> <wire from="(870,570)" to="(870,630)"/> <wire from="(870,630)" to="(930,630)"/> <wire from="(870,790)" to="(870,890)"/> <wire from="(870,790)" to="(930,790)"/> <wire from="(880,120)" to="(880,360)"/> <wire from="(880,120)" to="(990,120)"/> <wire from="(880,360)" to="(1070,360)"/> <wire from="(880,550)" to="(880,620)"/> <wire from="(880,620)" to="(930,620)"/> <wire from="(880,800)" to="(880,910)"/> <wire from="(880,800)" to="(930,800)"/> <wire from="(890,180)" to="(890,330)"/> <wire from="(890,180)" to="(990,180)"/> <wire from="(890,330)" to="(1400,330)"/> <wire from="(890,330)" to="(890,490)"/> <wire from="(890,490)" to="(910,490)"/> <wire from="(890,530)" to="(890,610)"/> <wire from="(890,610)" to="(930,610)"/> <wire from="(890,810)" to="(890,930)"/> <wire from="(890,810)" to="(930,810)"/> <wire from="(900,510)" to="(900,600)"/> <wire from="(900,600)" to="(930,600)"/> <wire from="(900,820)" to="(900,950)"/> <wire from="(900,820)" to="(930,820)"/> <wire from="(900,950)" to="(1070,950)"/> <wire from="(910,490)" to="(910,590)"/> <wire from="(910,590)" to="(930,590)"/> <wire from="(910,830)" to="(910,970)"/> <wire from="(910,830)" to="(930,830)"/> <wire from="(910,970)" to="(1730,970)"/> <wire from="(920,160)" to="(920,280)"/> <wire from="(920,160)" to="(990,160)"/> <wire from="(920,280)" to="(1360,280)"/> <wire from="(920,470)" to="(920,580)"/> <wire from="(920,580)" to="(930,580)"/> <wire from="(920,840)" to="(920,990)"/> <wire from="(920,840)" to="(930,840)"/> <wire from="(920,990)" to="(1350,990)"/> <wire from="(930,1010)" to="(960,1010)"/> <wire from="(930,450)" to="(930,570)"/> <wire from="(930,850)" to="(930,1010)"/> <wire from="(950,560)" to="(1020,560)"/> <wire from="(960,200)" to="(960,1010)"/> <wire from="(960,200)" to="(990,200)"/> <wire from="(970,140)" to="(970,690)"/> <wire from="(970,140)" to="(990,140)"/> <wire from="(970,40)" to="(1430,40)"/> <wire from="(970,40)" to="(970,140)"/> <wire from="(970,690)" to="(1120,690)"/> <wire from="(980,220)" to="(980,310)"/> <wire from="(980,220)" to="(990,220)"/> <wire from="(980,310)" to="(1290,310)"/> <wire from="(980,310)" to="(980,730)"/> <wire from="(980,730)" to="(1060,730)"/> </circuit> <circuit name="APU_NoCore"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="APU_NoCore"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1180,670)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="29"/> <a name="incoming" val="29"/> </comp> <comp lib="0" loc="(2260,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PHI0_ToCore"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2260,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="M2"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RnW"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN0"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN1"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_0"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_1"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_2"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(2260,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RDY_ToCore"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2260,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IRQ_ToCore"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2260,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="tristate" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(2260,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_ToCore"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2260,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2270,780)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_A"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2270,800)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_B"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(340,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(350,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(350,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(350,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1_FromCore"/> </comp> <comp lib="0" loc="(350,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2_FromCore"/> </comp> <comp lib="0" loc="(350,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RnW_FromCore"/> </comp> <comp lib="0" loc="(350,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(370,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Addr_FromCore"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(420,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_FromCore"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(420,700)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(1740,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1800,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1990,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2030,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2040,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,340)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,390)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,430)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,470)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(2040,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(2050,640)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(380,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(1835,450)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="NotDBG_RES"/> </comp> <comp lib="8" loc="(390,210)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="RES"/> </comp> <comp loc="(1440,210)" name="SoftCLK"> <a name="label" val="soft_clk"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1570,680)" name="SoundGenerators"> <a name="label" val="sound_gen"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1900,190)" name="OUT_Ports"> <a name="label" val="io"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1900,550)" name="DebugLock"> <a name="label" val="lock"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1900,950)" name="RWDecode"> <a name="label" val="rw_decoder"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(2240,670)" name="DataBusPads"> <a name="label" val="dbus"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,210)" name="DIV"> <a name="label" val="clk_div"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,600)" name="RegPredecode"> <a name="label" val="regs_predecode"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(990,560)" name="RegSel"> <a name="label" val="regops"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,810)" to="(1010,820)"/> <wire from="(1010,810)" to="(1160,810)"/> <wire from="(1020,820)" to="(1020,840)"/> <wire from="(1020,820)" to="(1160,820)"/> <wire from="(1030,830)" to="(1030,860)"/> <wire from="(1030,830)" to="(1160,830)"/> <wire from="(1040,1140)" to="(1650,1140)"/> <wire from="(1040,840)" to="(1040,880)"/> <wire from="(1040,840)" to="(1160,840)"/> <wire from="(1040,880)" to="(1040,1140)"/> <wire from="(1050,780)" to="(1050,790)"/> <wire from="(1050,790)" to="(1160,790)"/> <wire from="(1050,850)" to="(1050,900)"/> <wire from="(1050,850)" to="(1160,850)"/> <wire from="(1060,760)" to="(1060,780)"/> <wire from="(1060,780)" to="(1160,780)"/> <wire from="(1060,860)" to="(1060,920)"/> <wire from="(1060,860)" to="(1160,860)"/> <wire from="(1070,740)" to="(1070,770)"/> <wire from="(1070,770)" to="(1160,770)"/> <wire from="(1070,870)" to="(1070,940)"/> <wire from="(1070,870)" to="(1160,870)"/> <wire from="(1080,230)" to="(1080,420)"/> <wire from="(1080,230)" to="(1220,230)"/> <wire from="(1080,420)" to="(1110,420)"/> <wire from="(1080,720)" to="(1080,760)"/> <wire from="(1080,760)" to="(1160,760)"/> <wire from="(1080,880)" to="(1080,960)"/> <wire from="(1080,880)" to="(1160,880)"/> <wire from="(1090,700)" to="(1090,750)"/> <wire from="(1090,750)" to="(1160,750)"/> <wire from="(1090,890)" to="(1090,980)"/> <wire from="(1090,890)" to="(1160,890)"/> <wire from="(1100,210)" to="(1100,480)"/> <wire from="(1100,210)" to="(1220,210)"/> <wire from="(1100,480)" to="(1290,480)"/> <wire from="(1100,680)" to="(1100,740)"/> <wire from="(1100,740)" to="(1160,740)"/> <wire from="(1100,900)" to="(1100,1000)"/> <wire from="(1100,900)" to="(1160,900)"/> <wire from="(1110,420)" to="(1110,470)"/> <wire from="(1110,470)" to="(1300,470)"/> <wire from="(1110,660)" to="(1110,730)"/> <wire from="(1110,730)" to="(1160,730)"/> <wire from="(1110,910)" to="(1110,1020)"/> <wire from="(1110,910)" to="(1160,910)"/> <wire from="(1120,290)" to="(1120,440)"/> <wire from="(1120,290)" to="(1220,290)"/> <wire from="(1120,440)" to="(1120,600)"/> <wire from="(1120,440)" to="(1630,440)"/> <wire from="(1120,600)" to="(1140,600)"/> <wire from="(1120,640)" to="(1120,720)"/> <wire from="(1120,720)" to="(1160,720)"/> <wire from="(1120,920)" to="(1120,1040)"/> <wire from="(1120,920)" to="(1160,920)"/> <wire from="(1130,1060)" to="(1300,1060)"/> <wire from="(1130,620)" to="(1130,710)"/> <wire from="(1130,710)" to="(1160,710)"/> <wire from="(1130,930)" to="(1130,1060)"/> <wire from="(1130,930)" to="(1160,930)"/> <wire from="(1140,1080)" to="(1960,1080)"/> <wire from="(1140,600)" to="(1140,700)"/> <wire from="(1140,700)" to="(1160,700)"/> <wire from="(1140,940)" to="(1140,1080)"/> <wire from="(1140,940)" to="(1160,940)"/> <wire from="(1150,1100)" to="(1580,1100)"/> <wire from="(1150,270)" to="(1150,390)"/> <wire from="(1150,270)" to="(1220,270)"/> <wire from="(1150,390)" to="(1590,390)"/> <wire from="(1150,580)" to="(1150,690)"/> <wire from="(1150,690)" to="(1160,690)"/> <wire from="(1150,950)" to="(1150,1100)"/> <wire from="(1150,950)" to="(1160,950)"/> <wire from="(1160,1120)" to="(1190,1120)"/> <wire from="(1160,560)" to="(1160,680)"/> <wire from="(1160,960)" to="(1160,1120)"/> <wire from="(1180,670)" to="(1250,670)"/> <wire from="(1190,310)" to="(1190,1120)"/> <wire from="(1190,310)" to="(1220,310)"/> <wire from="(1200,150)" to="(1200,250)"/> <wire from="(1200,150)" to="(1660,150)"/> <wire from="(1200,250)" to="(1200,800)"/> <wire from="(1200,250)" to="(1220,250)"/> <wire from="(1200,800)" to="(1350,800)"/> <wire from="(1210,330)" to="(1210,420)"/> <wire from="(1210,330)" to="(1220,330)"/> <wire from="(1210,420)" to="(1210,840)"/> <wire from="(1210,420)" to="(1520,420)"/> <wire from="(1210,840)" to="(1290,840)"/> <wire from="(1250,670)" to="(1250,820)"/> <wire from="(1250,820)" to="(1350,820)"/> <wire from="(1260,510)" to="(1260,860)"/> <wire from="(1260,860)" to="(1350,860)"/> <wire from="(1270,500)" to="(1270,880)"/> <wire from="(1270,880)" to="(1350,880)"/> <wire from="(1290,1120)" to="(2250,1120)"/> <wire from="(1290,480)" to="(1290,680)"/> <wire from="(1290,680)" to="(1350,680)"/> <wire from="(1290,840)" to="(1290,1120)"/> <wire from="(1290,840)" to="(1350,840)"/> <wire from="(1300,1060)" to="(1300,1070)"/> <wire from="(1300,1070)" to="(1950,1070)"/> <wire from="(1300,470)" to="(1300,700)"/> <wire from="(1300,700)" to="(1350,700)"/> <wire from="(1310,590)" to="(1310,780)"/> <wire from="(1310,590)" to="(1470,590)"/> <wire from="(1310,780)" to="(1350,780)"/> <wire from="(1320,1060)" to="(1920,1060)"/> <wire from="(1320,600)" to="(1320,760)"/> <wire from="(1320,600)" to="(1480,600)"/> <wire from="(1320,760)" to="(1350,760)"/> <wire from="(1320,900)" to="(1320,1060)"/> <wire from="(1320,900)" to="(1350,900)"/> <wire from="(1330,610)" to="(1330,740)"/> <wire from="(1330,610)" to="(1490,610)"/> <wire from="(1330,740)" to="(1350,740)"/> <wire from="(1340,620)" to="(1340,720)"/> <wire from="(1340,620)" to="(1500,620)"/> <wire from="(1340,720)" to="(1350,720)"/> <wire from="(1440,210)" to="(1500,210)"/> <wire from="(1440,230)" to="(1490,230)"/> <wire from="(1440,250)" to="(1480,250)"/> <wire from="(1440,270)" to="(1470,270)"/> <wire from="(1440,290)" to="(1460,290)"/> <wire from="(1440,310)" to="(1550,310)"/> <wire from="(1460,290)" to="(1460,450)"/> <wire from="(1470,270)" to="(1470,590)"/> <wire from="(1480,250)" to="(1480,600)"/> <wire from="(1490,230)" to="(1490,610)"/> <wire from="(1490,230)" to="(1670,230)"/> <wire from="(1500,210)" to="(1500,620)"/> <wire from="(1500,210)" to="(1680,210)"/> <wire from="(1520,420)" to="(1520,610)"/> <wire from="(1520,420)" to="(1620,420)"/> <wire from="(1520,610)" to="(1680,610)"/> <wire from="(1550,310)" to="(1550,380)"/> <wire from="(1550,380)" to="(1550,650)"/> <wire from="(1550,650)" to="(1680,650)"/> <wire from="(1570,680)" to="(1590,680)"/> <wire from="(1570,700)" to="(1600,700)"/> <wire from="(1570,720)" to="(1640,720)"/> <wire from="(1570,740)" to="(1610,740)"/> <wire from="(1570,760)" to="(1680,760)"/> <wire from="(1570,780)" to="(2270,780)"/> <wire from="(1570,800)" to="(2270,800)"/> <wire from="(1580,190)" to="(1580,1100)"/> <wire from="(1580,190)" to="(1680,190)"/> <wire from="(1590,390)" to="(1590,680)"/> <wire from="(1600,500)" to="(1600,700)"/> <wire from="(1600,500)" to="(2180,500)"/> <wire from="(1610,740)" to="(1610,1190)"/> <wire from="(1610,740)" to="(1980,740)"/> <wire from="(1620,1010)" to="(1620,1200)"/> <wire from="(1620,1010)" to="(1680,1010)"/> <wire from="(1620,250)" to="(1620,420)"/> <wire from="(1620,250)" to="(1680,250)"/> <wire from="(1620,470)" to="(1620,530)"/> <wire from="(1620,470)" to="(1760,470)"/> <wire from="(1620,530)" to="(1620,990)"/> <wire from="(1620,990)" to="(1680,990)"/> <wire from="(1630,440)" to="(1630,970)"/> <wire from="(1630,970)" to="(1680,970)"/> <wire from="(1640,170)" to="(1640,720)"/> <wire from="(1640,170)" to="(1930,170)"/> <wire from="(1640,720)" to="(1640,950)"/> <wire from="(1640,950)" to="(1680,950)"/> <wire from="(1650,550)" to="(1650,1140)"/> <wire from="(1650,550)" to="(1680,550)"/> <wire from="(1660,150)" to="(1660,450)"/> <wire from="(1660,150)" to="(2000,150)"/> <wire from="(1660,450)" to="(1660,590)"/> <wire from="(1660,450)" to="(1720,450)"/> <wire from="(1660,590)" to="(1680,590)"/> <wire from="(1670,230)" to="(1670,570)"/> <wire from="(1670,230)" to="(1680,230)"/> <wire from="(1670,570)" to="(1680,570)"/> <wire from="(1680,400)" to="(1680,520)"/> <wire from="(1680,520)" to="(2160,520)"/> <wire from="(1680,650)" to="(1680,760)"/> <wire from="(1680,760)" to="(1850,760)"/> <wire from="(1740,450)" to="(1760,450)"/> <wire from="(1800,460)" to="(1940,460)"/> <wire from="(1850,690)" to="(1850,760)"/> <wire from="(1850,690)" to="(2020,690)"/> <wire from="(1900,190)" to="(1920,190)"/> <wire from="(1900,210)" to="(1910,210)"/> <wire from="(1900,230)" to="(1900,470)"/> <wire from="(1900,470)" to="(2020,470)"/> <wire from="(1900,550)" to="(1920,550)"/> <wire from="(1900,950)" to="(2000,950)"/> <wire from="(1900,970)" to="(1990,970)"/> <wire from="(1910,210)" to="(1910,430)"/> <wire from="(1910,430)" to="(2020,430)"/> <wire from="(1920,190)" to="(1920,390)"/> <wire from="(1920,390)" to="(2020,390)"/> <wire from="(1920,550)" to="(1920,1060)"/> <wire from="(1930,170)" to="(1930,230)"/> <wire from="(1930,230)" to="(2020,230)"/> <wire from="(1940,160)" to="(1940,460)"/> <wire from="(1940,160)" to="(2010,160)"/> <wire from="(1940,670)" to="(1940,1210)"/> <wire from="(1940,670)" to="(2020,670)"/> <wire from="(1950,140)" to="(1950,180)"/> <wire from="(1950,180)" to="(1970,180)"/> <wire from="(1950,340)" to="(1950,1070)"/> <wire from="(1950,340)" to="(2020,340)"/> <wire from="(1960,290)" to="(1960,1080)"/> <wire from="(1960,290)" to="(2020,290)"/> <wire from="(1980,640)" to="(1980,740)"/> <wire from="(1980,640)" to="(2030,640)"/> <wire from="(1990,180)" to="(2020,180)"/> <wire from="(1990,710)" to="(1990,970)"/> <wire from="(1990,710)" to="(2020,710)"/> <wire from="(2000,150)" to="(2000,210)"/> <wire from="(2000,210)" to="(2000,270)"/> <wire from="(2000,210)" to="(2010,210)"/> <wire from="(2000,270)" to="(2000,320)"/> <wire from="(2000,270)" to="(2010,270)"/> <wire from="(2000,320)" to="(2000,370)"/> <wire from="(2000,320)" to="(2010,320)"/> <wire from="(2000,370)" to="(2000,410)"/> <wire from="(2000,370)" to="(2010,370)"/> <wire from="(2000,410)" to="(2000,450)"/> <wire from="(2000,410)" to="(2010,410)"/> <wire from="(2000,450)" to="(2000,620)"/> <wire from="(2000,450)" to="(2010,450)"/> <wire from="(2000,620)" to="(2020,620)"/> <wire from="(2000,730)" to="(2000,950)"/> <wire from="(2000,730)" to="(2020,730)"/> <wire from="(2030,160)" to="(2030,170)"/> <wire from="(2030,210)" to="(2030,220)"/> <wire from="(2030,270)" to="(2030,280)"/> <wire from="(2030,320)" to="(2030,330)"/> <wire from="(2030,370)" to="(2030,380)"/> <wire from="(2030,410)" to="(2030,420)"/> <wire from="(2030,450)" to="(2030,460)"/> <wire from="(2040,180)" to="(2260,180)"/> <wire from="(2040,230)" to="(2260,230)"/> <wire from="(2040,290)" to="(2260,290)"/> <wire from="(2040,340)" to="(2260,340)"/> <wire from="(2040,390)" to="(2260,390)"/> <wire from="(2040,430)" to="(2260,430)"/> <wire from="(2040,470)" to="(2260,470)"/> <wire from="(2040,620)" to="(2040,630)"/> <wire from="(2050,640)" to="(2260,640)"/> <wire from="(2160,520)" to="(2160,580)"/> <wire from="(2160,580)" to="(2260,580)"/> <wire from="(2180,500)" to="(2180,520)"/> <wire from="(2180,520)" to="(2260,520)"/> <wire from="(2240,670)" to="(2250,670)"/> <wire from="(2240,690)" to="(2260,690)"/> <wire from="(2250,670)" to="(2250,1120)"/> <wire from="(2250,670)" to="(2260,670)"/> <wire from="(340,180)" to="(360,180)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,320)" to="(610,320)"/> <wire from="(350,360)" to="(530,360)"/> <wire from="(350,390)" to="(480,390)"/> <wire from="(350,480)" to="(420,480)"/> <wire from="(350,530)" to="(480,530)"/> <wire from="(370,420)" to="(450,420)"/> <wire from="(380,180)" to="(450,180)"/> <wire from="(380,220)" to="(430,220)"/> <wire from="(420,450)" to="(570,450)"/> <wire from="(420,480)" to="(420,500)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,700)" to="(660,700)"/> <wire from="(430,150)" to="(1200,150)"/> <wire from="(430,150)" to="(430,220)"/> <wire from="(440,500)" to="(1270,500)"/> <wire from="(440,500)" to="(440,620)"/> <wire from="(440,620)" to="(500,620)"/> <wire from="(450,180)" to="(450,210)"/> <wire from="(450,210)" to="(490,210)"/> <wire from="(450,420)" to="(450,510)"/> <wire from="(450,510)" to="(1260,510)"/> <wire from="(450,510)" to="(450,600)"/> <wire from="(450,600)" to="(500,600)"/> <wire from="(480,230)" to="(480,390)"/> <wire from="(480,230)" to="(490,230)"/> <wire from="(480,390)" to="(480,420)"/> <wire from="(480,420)" to="(1080,420)"/> <wire from="(480,530)" to="(1620,530)"/> <wire from="(480,530)" to="(480,580)"/> <wire from="(480,580)" to="(770,580)"/> <wire from="(530,360)" to="(530,480)"/> <wire from="(530,480)" to="(750,480)"/> <wire from="(570,380)" to="(1550,380)"/> <wire from="(570,380)" to="(570,450)"/> <wire from="(630,320)" to="(650,320)"/> <wire from="(630,340)" to="(630,450)"/> <wire from="(630,340)" to="(650,340)"/> <wire from="(630,450)" to="(1460,450)"/> <wire from="(660,1210)" to="(1940,1210)"/> <wire from="(660,700)" to="(660,1210)"/> <wire from="(690,330)" to="(770,330)"/> <wire from="(710,210)" to="(790,210)"/> <wire from="(710,230)" to="(720,230)"/> <wire from="(720,140)" to="(1950,140)"/> <wire from="(720,140)" to="(720,230)"/> <wire from="(720,600)" to="(740,600)"/> <wire from="(720,620)" to="(770,620)"/> <wire from="(740,1200)" to="(1620,1200)"/> <wire from="(740,600)" to="(740,1200)"/> <wire from="(740,600)" to="(770,600)"/> <wire from="(750,1190)" to="(1610,1190)"/> <wire from="(750,480)" to="(1100,480)"/> <wire from="(750,480)" to="(750,560)"/> <wire from="(750,560)" to="(770,560)"/> <wire from="(750,640)" to="(750,1190)"/> <wire from="(750,640)" to="(770,640)"/> <wire from="(770,330)" to="(770,400)"/> <wire from="(770,400)" to="(1680,400)"/> <wire from="(790,120)" to="(2260,120)"/> <wire from="(790,120)" to="(790,210)"/> <wire from="(990,1000)" to="(1100,1000)"/> <wire from="(990,1020)" to="(1110,1020)"/> <wire from="(990,1040)" to="(1120,1040)"/> <wire from="(990,1060)" to="(1130,1060)"/> <wire from="(990,1080)" to="(1140,1080)"/> <wire from="(990,1100)" to="(1150,1100)"/> <wire from="(990,1120)" to="(1160,1120)"/> <wire from="(990,560)" to="(1160,560)"/> <wire from="(990,580)" to="(1150,580)"/> <wire from="(990,600)" to="(1120,600)"/> <wire from="(990,620)" to="(1130,620)"/> <wire from="(990,640)" to="(1120,640)"/> <wire from="(990,660)" to="(1110,660)"/> <wire from="(990,680)" to="(1100,680)"/> <wire from="(990,700)" to="(1090,700)"/> <wire from="(990,720)" to="(1080,720)"/> <wire from="(990,740)" to="(1070,740)"/> <wire from="(990,760)" to="(1060,760)"/> <wire from="(990,780)" to="(1050,780)"/> <wire from="(990,800)" to="(1160,800)"/> <wire from="(990,820)" to="(1010,820)"/> <wire from="(990,840)" to="(1020,840)"/> <wire from="(990,860)" to="(1030,860)"/> <wire from="(990,880)" to="(1040,880)"/> <wire from="(990,900)" to="(1050,900)"/> <wire from="(990,920)" to="(1060,920)"/> <wire from="(990,940)" to="(1070,940)"/> <wire from="(990,960)" to="(1080,960)"/> <wire from="(990,980)" to="(1090,980)"/> </circuit> <circuit name="DMC"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DMC"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(100,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(100,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(100,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(100,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(100,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(100,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(1000,350)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1010,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Dx_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1170,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4013"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,210)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,240)" name="Tunnel"> <a name="label" val="RnW"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,270)" name="Tunnel"> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,340)" name="Tunnel"> <a name="label" val="W4010"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,370)" name="Tunnel"> <a name="label" val="W4011"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,400)" name="Tunnel"> <a name="label" val="W4012"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,430)" name="Tunnel"> <a name="label" val="W4013"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,460)" name="Tunnel"> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(120,490)" name="Tunnel"> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1390,340)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1420,630)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(1450,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1460,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1460,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1470,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1500,800)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC_Out"/> <a name="output" val="true"/> <a name="width" val="7"/> </comp> <comp lib="0" loc="(1500,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC_Addr"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(160,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1770,370)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="2"/> <a name="bit2" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(260,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4012"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(400,410)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(420,820)" name="Splitter"> <a name="appear" val="right"/> </comp> <comp lib="0" loc="(430,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(430,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4011"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RnW"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(480,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(750,260)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(780,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DMCAB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RUNDMC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCRDY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCINT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,300)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(950,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4010"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp loc="(1190,210)" name="DPCM_ControlReg"> <a name="label" val="ctrl_reg"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1440,210)" name="DPCM_Decoder"> <a name="label" val="decoder"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1460,390)" name="DPCM_SampleCounterReg"> <a name="label" val="scnt_in"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1710,150)" name="DPCM_FreqLFSR"> <a name="label" val="lfsr"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1710,310)" name="DPCM_SampleCounter"> <a name="label" val="scnt"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1710,480)" name="DPCM_SampleBitCounter"> <a name="label" val="sbcnt"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1710,600)" name="DPCM_SampleBuffer"> <a name="label" val="sbuf"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(490,870)" name="DPCM_AddressReg"> <a name="label" val="addr_reg"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,160)" name="DPCM_Control"> <a name="label" val="dpcm_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,570)" name="DPCM_Output"> <a name="label" val="dpcm_out"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,790)" name="DPCM_AddressCounter"> <a name="label" val="dpcm_addr_cnt"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,100)" to="(470,100)"/> <wire from="(100,130)" to="(460,130)"/> <wire from="(100,210)" to="(120,210)"/> <wire from="(100,240)" to="(120,240)"/> <wire from="(100,270)" to="(120,270)"/> <wire from="(100,340)" to="(120,340)"/> <wire from="(100,370)" to="(120,370)"/> <wire from="(100,400)" to="(120,400)"/> <wire from="(100,430)" to="(120,430)"/> <wire from="(100,460)" to="(120,460)"/> <wire from="(100,490)" to="(120,490)"/> <wire from="(100,70)" to="(480,70)"/> <wire from="(1000,350)" to="(1010,350)"/> <wire from="(1170,410)" to="(1240,410)"/> <wire from="(1190,210)" to="(1220,210)"/> <wire from="(1190,230)" to="(1200,230)"/> <wire from="(1190,250)" to="(1190,490)"/> <wire from="(1200,230)" to="(1200,500)"/> <wire from="(1210,100)" to="(1210,390)"/> <wire from="(1210,100)" to="(1470,100)"/> <wire from="(1210,390)" to="(1240,390)"/> <wire from="(1230,430)" to="(1230,610)"/> <wire from="(1230,430)" to="(1240,430)"/> <wire from="(1230,610)" to="(1230,700)"/> <wire from="(1230,700)" to="(1490,700)"/> <wire from="(1390,300)" to="(1390,340)"/> <wire from="(1410,350)" to="(1490,350)"/> <wire from="(1410,360)" to="(1460,360)"/> <wire from="(1440,210)" to="(1490,210)"/> <wire from="(1440,640)" to="(1490,640)"/> <wire from="(1440,650)" to="(1460,650)"/> <wire from="(1450,330)" to="(1490,330)"/> <wire from="(1460,190)" to="(1490,190)"/> <wire from="(1460,360)" to="(1460,370)"/> <wire from="(1460,370)" to="(1490,370)"/> <wire from="(1460,390)" to="(1490,390)"/> <wire from="(1460,500)" to="(1490,500)"/> <wire from="(1460,650)" to="(1460,660)"/> <wire from="(1460,660)" to="(1490,660)"/> <wire from="(1470,100)" to="(1470,170)"/> <wire from="(1470,100)" to="(1720,100)"/> <wire from="(1470,170)" to="(1470,310)"/> <wire from="(1470,170)" to="(1490,170)"/> <wire from="(1470,310)" to="(1470,480)"/> <wire from="(1470,310)" to="(1490,310)"/> <wire from="(1470,480)" to="(1470,600)"/> <wire from="(1470,480)" to="(1490,480)"/> <wire from="(1470,600)" to="(1490,600)"/> <wire from="(1470,620)" to="(1490,620)"/> <wire from="(1480,150)" to="(1490,150)"/> <wire from="(1480,70)" to="(1480,150)"/> <wire from="(1480,70)" to="(1720,70)"/> <wire from="(160,670)" to="(190,670)"/> <wire from="(1710,150)" to="(1730,150)"/> <wire from="(1710,310)" to="(1710,350)"/> <wire from="(1710,350)" to="(1750,350)"/> <wire from="(1710,480)" to="(1730,480)"/> <wire from="(1710,600)" to="(1710,750)"/> <wire from="(1730,150)" to="(1730,340)"/> <wire from="(1730,340)" to="(1750,340)"/> <wire from="(1730,360)" to="(1730,480)"/> <wire from="(1730,360)" to="(1750,360)"/> <wire from="(1770,370)" to="(1770,570)"/> <wire from="(190,670)" to="(190,730)"/> <wire from="(190,670)" to="(240,670)"/> <wire from="(190,730)" to="(190,910)"/> <wire from="(190,730)" to="(930,730)"/> <wire from="(190,910)" to="(270,910)"/> <wire from="(240,440)" to="(240,670)"/> <wire from="(240,440)" to="(490,440)"/> <wire from="(240,670)" to="(490,670)"/> <wire from="(250,790)" to="(250,870)"/> <wire from="(250,790)" to="(480,790)"/> <wire from="(250,870)" to="(270,870)"/> <wire from="(260,890)" to="(270,890)"/> <wire from="(360,510)" to="(360,820)"/> <wire from="(360,510)" to="(810,510)"/> <wire from="(360,820)" to="(420,820)"/> <wire from="(400,410)" to="(400,520)"/> <wire from="(400,520)" to="(900,520)"/> <wire from="(420,380)" to="(490,380)"/> <wire from="(420,390)" to="(430,390)"/> <wire from="(420,400)" to="(420,420)"/> <wire from="(420,420)" to="(490,420)"/> <wire from="(430,390)" to="(430,400)"/> <wire from="(430,400)" to="(490,400)"/> <wire from="(430,590)" to="(490,590)"/> <wire from="(430,610)" to="(490,610)"/> <wire from="(440,360)" to="(440,550)"/> <wire from="(440,360)" to="(490,360)"/> <wire from="(440,550)" to="(720,550)"/> <wire from="(440,830)" to="(490,830)"/> <wire from="(440,840)" to="(460,840)"/> <wire from="(450,320)" to="(450,500)"/> <wire from="(450,320)" to="(490,320)"/> <wire from="(450,500)" to="(1200,500)"/> <wire from="(460,130)" to="(460,200)"/> <wire from="(460,200)" to="(490,200)"/> <wire from="(460,340)" to="(460,490)"/> <wire from="(460,340)" to="(490,340)"/> <wire from="(460,490)" to="(1190,490)"/> <wire from="(460,530)" to="(460,650)"/> <wire from="(460,530)" to="(750,530)"/> <wire from="(460,650)" to="(490,650)"/> <wire from="(460,840)" to="(460,850)"/> <wire from="(460,850)" to="(490,850)"/> <wire from="(470,100)" to="(470,180)"/> <wire from="(470,100)" to="(970,100)"/> <wire from="(470,180)" to="(480,180)"/> <wire from="(470,220)" to="(490,220)"/> <wire from="(470,240)" to="(490,240)"/> <wire from="(470,260)" to="(490,260)"/> <wire from="(470,280)" to="(490,280)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(470,630)" to="(470,750)"/> <wire from="(470,630)" to="(490,630)"/> <wire from="(470,750)" to="(1710,750)"/> <wire from="(480,160)" to="(490,160)"/> <wire from="(480,180)" to="(480,570)"/> <wire from="(480,180)" to="(490,180)"/> <wire from="(480,570)" to="(480,790)"/> <wire from="(480,570)" to="(490,570)"/> <wire from="(480,70)" to="(1480,70)"/> <wire from="(480,70)" to="(480,160)"/> <wire from="(480,790)" to="(490,790)"/> <wire from="(480,810)" to="(490,810)"/> <wire from="(710,160)" to="(730,160)"/> <wire from="(710,180)" to="(740,180)"/> <wire from="(710,200)" to="(780,200)"/> <wire from="(710,220)" to="(770,220)"/> <wire from="(710,240)" to="(730,240)"/> <wire from="(710,260)" to="(720,260)"/> <wire from="(710,280)" to="(760,280)"/> <wire from="(710,300)" to="(720,300)"/> <wire from="(710,320)" to="(910,320)"/> <wire from="(710,340)" to="(750,340)"/> <wire from="(710,360)" to="(920,360)"/> <wire from="(710,380)" to="(960,380)"/> <wire from="(710,400)" to="(950,400)"/> <wire from="(710,570)" to="(820,570)"/> <wire from="(710,590)" to="(720,590)"/> <wire from="(710,790)" to="(780,790)"/> <wire from="(720,250)" to="(720,260)"/> <wire from="(720,250)" to="(730,250)"/> <wire from="(720,290)" to="(720,300)"/> <wire from="(720,290)" to="(760,290)"/> <wire from="(720,550)" to="(720,590)"/> <wire from="(730,140)" to="(730,160)"/> <wire from="(730,140)" to="(780,140)"/> <wire from="(740,170)" to="(740,180)"/> <wire from="(740,170)" to="(780,170)"/> <wire from="(750,260)" to="(810,260)"/> <wire from="(750,340)" to="(750,530)"/> <wire from="(770,220)" to="(770,230)"/> <wire from="(770,230)" to="(780,230)"/> <wire from="(780,300)" to="(890,300)"/> <wire from="(780,790)" to="(780,860)"/> <wire from="(780,860)" to="(1500,860)"/> <wire from="(810,260)" to="(810,510)"/> <wire from="(810,260)" to="(910,260)"/> <wire from="(820,570)" to="(820,800)"/> <wire from="(820,800)" to="(1500,800)"/> <wire from="(890,300)" to="(890,630)"/> <wire from="(890,630)" to="(1420,630)"/> <wire from="(900,520)" to="(900,570)"/> <wire from="(900,570)" to="(1770,570)"/> <wire from="(910,260)" to="(910,300)"/> <wire from="(910,300)" to="(1390,300)"/> <wire from="(910,320)" to="(910,520)"/> <wire from="(910,520)" to="(1490,520)"/> <wire from="(920,360)" to="(920,680)"/> <wire from="(920,680)" to="(1490,680)"/> <wire from="(930,250)" to="(930,610)"/> <wire from="(930,250)" to="(970,250)"/> <wire from="(930,610)" to="(1230,610)"/> <wire from="(930,610)" to="(930,730)"/> <wire from="(950,230)" to="(970,230)"/> <wire from="(950,400)" to="(950,430)"/> <wire from="(950,430)" to="(980,430)"/> <wire from="(960,380)" to="(960,400)"/> <wire from="(960,400)" to="(980,400)"/> <wire from="(970,100)" to="(1210,100)"/> <wire from="(970,100)" to="(970,210)"/> </circuit> <circuit name="DMA"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DMA"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(130,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="0" loc="(130,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DMC_AB"/> </comp> <comp lib="0" loc="(130,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMCRDY"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(190,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMC_Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(190,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CPU_Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(330,210)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(630,280)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(940,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(940,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Dx_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(940,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(940,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RDY"/> <a name="output" val="true"/> </comp> <comp loc="(550,130)" name="SPRDMA_AddrLowCounter"> <a name="label" val="addr_lo"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,270)" name="SPRDMA_AddrHigh"> <a name="label" val="addr_hi"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,420)" name="SPRDMA_Control"> <a name="label" val="dma_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,170)" name="Addr_MUX"> <a name="label" val="mux"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,360)" name="SPRDMA_Buffer"> <a name="label" val="dma_buf"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,100)" to="(240,100)"/> <wire from="(130,130)" to="(310,130)"/> <wire from="(130,220)" to="(220,220)"/> <wire from="(130,260)" to="(250,260)"/> <wire from="(130,310)" to="(210,310)"/> <wire from="(130,40)" to="(280,40)"/> <wire from="(130,400)" to="(200,400)"/> <wire from="(130,430)" to="(230,430)"/> <wire from="(130,460)" to="(190,460)"/> <wire from="(130,70)" to="(270,70)"/> <wire from="(190,340)" to="(260,340)"/> <wire from="(190,460)" to="(190,500)"/> <wire from="(190,500)" to="(220,500)"/> <wire from="(190,530)" to="(210,530)"/> <wire from="(190,590)" to="(200,590)"/> <wire from="(200,400)" to="(200,480)"/> <wire from="(200,480)" to="(260,480)"/> <wire from="(200,590)" to="(200,640)"/> <wire from="(200,640)" to="(660,640)"/> <wire from="(210,190)" to="(210,290)"/> <wire from="(210,190)" to="(330,190)"/> <wire from="(210,290)" to="(210,310)"/> <wire from="(210,290)" to="(330,290)"/> <wire from="(210,310)" to="(210,460)"/> <wire from="(210,460)" to="(270,460)"/> <wire from="(210,530)" to="(210,650)"/> <wire from="(210,650)" to="(670,650)"/> <wire from="(220,150)" to="(220,220)"/> <wire from="(220,150)" to="(330,150)"/> <wire from="(220,220)" to="(220,440)"/> <wire from="(220,440)" to="(280,440)"/> <wire from="(220,500)" to="(220,580)"/> <wire from="(220,580)" to="(330,580)"/> <wire from="(230,140)" to="(230,430)"/> <wire from="(230,140)" to="(300,140)"/> <wire from="(240,100)" to="(240,540)"/> <wire from="(240,540)" to="(330,540)"/> <wire from="(250,260)" to="(250,560)"/> <wire from="(250,560)" to="(250,630)"/> <wire from="(250,560)" to="(330,560)"/> <wire from="(250,630)" to="(650,630)"/> <wire from="(260,310)" to="(260,340)"/> <wire from="(260,310)" to="(320,310)"/> <wire from="(260,480)" to="(260,500)"/> <wire from="(260,500)" to="(330,500)"/> <wire from="(270,110)" to="(270,270)"/> <wire from="(270,110)" to="(330,110)"/> <wire from="(270,270)" to="(270,430)"/> <wire from="(270,270)" to="(330,270)"/> <wire from="(270,430)" to="(290,430)"/> <wire from="(270,460)" to="(270,480)"/> <wire from="(270,480)" to="(330,480)"/> <wire from="(270,70)" to="(270,110)"/> <wire from="(280,40)" to="(280,420)"/> <wire from="(280,420)" to="(330,420)"/> <wire from="(280,440)" to="(280,460)"/> <wire from="(280,460)" to="(330,460)"/> <wire from="(290,170)" to="(290,390)"/> <wire from="(290,170)" to="(330,170)"/> <wire from="(290,390)" to="(570,390)"/> <wire from="(290,430)" to="(290,440)"/> <wire from="(290,440)" to="(330,440)"/> <wire from="(300,400)" to="(300,520)"/> <wire from="(300,400)" to="(560,400)"/> <wire from="(300,520)" to="(330,520)"/> <wire from="(300,80)" to="(300,140)"/> <wire from="(300,80)" to="(670,80)"/> <wire from="(310,60)" to="(310,130)"/> <wire from="(310,60)" to="(570,60)"/> <wire from="(320,310)" to="(320,370)"/> <wire from="(320,310)" to="(330,310)"/> <wire from="(320,370)" to="(590,370)"/> <wire from="(330,110)" to="(330,130)"/> <wire from="(550,130)" to="(560,130)"/> <wire from="(550,150)" to="(600,150)"/> <wire from="(550,270)" to="(580,270)"/> <wire from="(550,420)" to="(570,420)"/> <wire from="(550,440)" to="(630,440)"/> <wire from="(550,460)" to="(610,460)"/> <wire from="(550,480)" to="(640,480)"/> <wire from="(560,130)" to="(560,400)"/> <wire from="(570,380)" to="(680,380)"/> <wire from="(570,390)" to="(570,420)"/> <wire from="(570,60)" to="(570,380)"/> <wire from="(580,270)" to="(580,300)"/> <wire from="(580,300)" to="(610,300)"/> <wire from="(590,370)" to="(590,400)"/> <wire from="(590,400)" to="(680,400)"/> <wire from="(600,150)" to="(600,290)"/> <wire from="(600,290)" to="(610,290)"/> <wire from="(610,360)" to="(610,460)"/> <wire from="(610,360)" to="(650,360)"/> <wire from="(630,250)" to="(630,280)"/> <wire from="(630,250)" to="(680,250)"/> <wire from="(630,440)" to="(630,490)"/> <wire from="(630,490)" to="(940,490)"/> <wire from="(640,170)" to="(640,480)"/> <wire from="(640,170)" to="(680,170)"/> <wire from="(650,190)" to="(650,360)"/> <wire from="(650,190)" to="(680,190)"/> <wire from="(650,360)" to="(680,360)"/> <wire from="(650,420)" to="(650,630)"/> <wire from="(650,420)" to="(680,420)"/> <wire from="(660,270)" to="(660,640)"/> <wire from="(660,270)" to="(680,270)"/> <wire from="(670,210)" to="(680,210)"/> <wire from="(670,230)" to="(670,650)"/> <wire from="(670,230)" to="(680,230)"/> <wire from="(670,80)" to="(670,210)"/> <wire from="(900,170)" to="(940,170)"/> <wire from="(900,360)" to="(920,360)"/> <wire from="(900,380)" to="(940,380)"/> <wire from="(920,340)" to="(920,360)"/> <wire from="(920,340)" to="(940,340)"/> </circuit> <circuit name="CounterBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(160,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,200)" name="Constant"/> <comp lib="0" loc="(640,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_CntOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CntOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,120)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(440,210)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(280,150)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(265,270)" name="Text"> <a name="text" val="q"/> </comp> <comp lib="8" loc="(355,150)" name="Text"> <a name="text" val="~q"/> </comp> <comp loc="(480,190)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,180)" to="(200,180)"/> <wire from="(120,230)" to="(130,230)"/> <wire from="(120,40)" to="(170,40)"/> <wire from="(120,80)" to="(200,80)"/> <wire from="(130,230)" to="(130,330)"/> <wire from="(130,330)" to="(380,330)"/> <wire from="(140,110)" to="(140,120)"/> <wire from="(140,120)" to="(190,120)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(150,200)" to="(190,200)"/> <wire from="(150,310)" to="(560,310)"/> <wire from="(160,160)" to="(190,160)"/> <wire from="(170,220)" to="(200,220)"/> <wire from="(170,240)" to="(170,280)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,280)" to="(280,280)"/> <wire from="(170,40)" to="(170,220)"/> <wire from="(170,40)" to="(470,40)"/> <wire from="(200,140)" to="(200,150)"/> <wire from="(200,180)" to="(200,190)"/> <wire from="(200,220)" to="(200,230)"/> <wire from="(200,80)" to="(200,110)"/> <wire from="(210,120)" to="(240,120)"/> <wire from="(210,160)" to="(240,160)"/> <wire from="(210,200)" to="(240,200)"/> <wire from="(210,240)" to="(240,240)"/> <wire from="(240,120)" to="(240,160)"/> <wire from="(240,160)" to="(240,200)"/> <wire from="(240,160)" to="(270,160)"/> <wire from="(240,200)" to="(240,240)"/> <wire from="(280,100)" to="(280,120)"/> <wire from="(280,100)" to="(290,100)"/> <wire from="(280,120)" to="(290,120)"/> <wire from="(280,240)" to="(280,280)"/> <wire from="(280,240)" to="(340,240)"/> <wire from="(280,280)" to="(390,280)"/> <wire from="(310,100)" to="(320,100)"/> <wire from="(310,120)" to="(320,120)"/> <wire from="(320,100)" to="(320,120)"/> <wire from="(330,160)" to="(340,160)"/> <wire from="(330,200)" to="(350,200)"/> <wire from="(340,160)" to="(340,240)"/> <wire from="(350,160)" to="(350,200)"/> <wire from="(350,160)" to="(390,160)"/> <wire from="(350,200)" to="(350,240)"/> <wire from="(350,240)" to="(640,240)"/> <wire from="(380,140)" to="(380,330)"/> <wire from="(380,140)" to="(420,140)"/> <wire from="(390,160)" to="(390,200)"/> <wire from="(390,160)" to="(580,160)"/> <wire from="(390,200)" to="(410,200)"/> <wire from="(390,220)" to="(390,280)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(390,280)" to="(640,280)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(420,140)" to="(550,140)"/> <wire from="(440,210)" to="(480,210)"/> <wire from="(470,190)" to="(480,190)"/> <wire from="(470,40)" to="(470,190)"/> <wire from="(520,210)" to="(560,210)"/> <wire from="(560,210)" to="(560,310)"/> <wire from="(570,140)" to="(580,140)"/> <wire from="(620,150)" to="(640,150)"/> </circuit> <circuit name="DownCounterBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DownCounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(160,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,200)" name="Constant"/> <comp lib="0" loc="(640,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_CntOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CntOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,120)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(440,210)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(280,150)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(265,270)" name="Text"> <a name="text" val="q"/> </comp> <comp lib="8" loc="(355,150)" name="Text"> <a name="text" val="~q"/> </comp> <comp lib="8" loc="(405,85)" name="Text"> <a name="text" val="!!!"/> </comp> <comp loc="(480,190)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,180)" to="(200,180)"/> <wire from="(120,230)" to="(130,230)"/> <wire from="(120,40)" to="(170,40)"/> <wire from="(120,80)" to="(200,80)"/> <wire from="(130,230)" to="(130,330)"/> <wire from="(130,330)" to="(380,330)"/> <wire from="(140,110)" to="(140,120)"/> <wire from="(140,120)" to="(190,120)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(150,200)" to="(190,200)"/> <wire from="(150,310)" to="(560,310)"/> <wire from="(160,160)" to="(190,160)"/> <wire from="(170,220)" to="(200,220)"/> <wire from="(170,240)" to="(170,280)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,280)" to="(280,280)"/> <wire from="(170,40)" to="(170,220)"/> <wire from="(170,40)" to="(470,40)"/> <wire from="(200,140)" to="(200,150)"/> <wire from="(200,180)" to="(200,190)"/> <wire from="(200,220)" to="(200,230)"/> <wire from="(200,80)" to="(200,110)"/> <wire from="(210,120)" to="(240,120)"/> <wire from="(210,160)" to="(240,160)"/> <wire from="(210,200)" to="(240,200)"/> <wire from="(210,240)" to="(240,240)"/> <wire from="(240,120)" to="(240,160)"/> <wire from="(240,160)" to="(240,200)"/> <wire from="(240,160)" to="(270,160)"/> <wire from="(240,200)" to="(240,240)"/> <wire from="(280,100)" to="(280,120)"/> <wire from="(280,100)" to="(290,100)"/> <wire from="(280,120)" to="(290,120)"/> <wire from="(280,240)" to="(280,280)"/> <wire from="(280,240)" to="(340,240)"/> <wire from="(280,280)" to="(390,280)"/> <wire from="(310,100)" to="(320,100)"/> <wire from="(310,120)" to="(320,120)"/> <wire from="(320,100)" to="(320,120)"/> <wire from="(330,160)" to="(340,160)"/> <wire from="(330,200)" to="(350,200)"/> <wire from="(340,160)" to="(340,240)"/> <wire from="(340,90)" to="(340,160)"/> <wire from="(340,90)" to="(500,90)"/> <wire from="(350,160)" to="(350,200)"/> <wire from="(350,160)" to="(390,160)"/> <wire from="(350,200)" to="(350,240)"/> <wire from="(350,240)" to="(640,240)"/> <wire from="(380,140)" to="(380,330)"/> <wire from="(380,140)" to="(420,140)"/> <wire from="(390,160)" to="(390,200)"/> <wire from="(390,200)" to="(410,200)"/> <wire from="(390,220)" to="(390,280)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(390,280)" to="(640,280)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(420,140)" to="(550,140)"/> <wire from="(440,210)" to="(480,210)"/> <wire from="(470,190)" to="(480,190)"/> <wire from="(470,40)" to="(470,190)"/> <wire from="(500,160)" to="(580,160)"/> <wire from="(500,90)" to="(500,160)"/> <wire from="(520,210)" to="(560,210)"/> <wire from="(560,210)" to="(560,310)"/> <wire from="(570,140)" to="(580,140)"/> <wire from="(620,150)" to="(640,150)"/> </circuit> <circuit name="RevCounterBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RevCounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dec"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(160,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,200)" name="Constant"/> <comp lib="0" loc="(640,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_CntOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CntOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(710,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(210,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,120)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(440,210)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(620,170)" name="Multiplexer"/> <comp lib="4" loc="(280,150)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(265,270)" name="Text"> <a name="text" val="q"/> </comp> <comp lib="8" loc="(355,150)" name="Text"> <a name="text" val="~q"/> </comp> <comp loc="(480,190)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,180)" to="(200,180)"/> <wire from="(120,230)" to="(130,230)"/> <wire from="(120,360)" to="(600,360)"/> <wire from="(120,40)" to="(170,40)"/> <wire from="(120,80)" to="(200,80)"/> <wire from="(130,230)" to="(130,330)"/> <wire from="(130,330)" to="(380,330)"/> <wire from="(140,110)" to="(140,120)"/> <wire from="(140,120)" to="(190,120)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(150,200)" to="(190,200)"/> <wire from="(150,310)" to="(560,310)"/> <wire from="(160,160)" to="(190,160)"/> <wire from="(170,220)" to="(200,220)"/> <wire from="(170,240)" to="(170,280)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,280)" to="(280,280)"/> <wire from="(170,40)" to="(170,220)"/> <wire from="(170,40)" to="(470,40)"/> <wire from="(200,140)" to="(200,150)"/> <wire from="(200,180)" to="(200,190)"/> <wire from="(200,220)" to="(200,230)"/> <wire from="(200,80)" to="(200,110)"/> <wire from="(210,120)" to="(240,120)"/> <wire from="(210,160)" to="(240,160)"/> <wire from="(210,200)" to="(240,200)"/> <wire from="(210,240)" to="(240,240)"/> <wire from="(240,120)" to="(240,160)"/> <wire from="(240,160)" to="(240,200)"/> <wire from="(240,160)" to="(270,160)"/> <wire from="(240,200)" to="(240,240)"/> <wire from="(280,100)" to="(280,120)"/> <wire from="(280,100)" to="(290,100)"/> <wire from="(280,120)" to="(290,120)"/> <wire from="(280,240)" to="(280,280)"/> <wire from="(280,240)" to="(340,240)"/> <wire from="(280,280)" to="(390,280)"/> <wire from="(310,100)" to="(320,100)"/> <wire from="(310,120)" to="(320,120)"/> <wire from="(320,100)" to="(320,120)"/> <wire from="(330,160)" to="(340,160)"/> <wire from="(330,200)" to="(350,200)"/> <wire from="(340,160)" to="(340,240)"/> <wire from="(350,160)" to="(350,200)"/> <wire from="(350,160)" to="(390,160)"/> <wire from="(350,200)" to="(350,240)"/> <wire from="(350,240)" to="(640,240)"/> <wire from="(380,140)" to="(380,330)"/> <wire from="(380,140)" to="(420,140)"/> <wire from="(390,160)" to="(390,200)"/> <wire from="(390,160)" to="(590,160)"/> <wire from="(390,200)" to="(410,200)"/> <wire from="(390,220)" to="(390,280)"/> <wire from="(390,220)" to="(410,220)"/> <wire from="(390,280)" to="(580,280)"/> <wire from="(420,140)" to="(420,190)"/> <wire from="(420,140)" to="(510,140)"/> <wire from="(440,210)" to="(480,210)"/> <wire from="(470,190)" to="(480,190)"/> <wire from="(470,40)" to="(470,190)"/> <wire from="(510,90)" to="(510,140)"/> <wire from="(510,90)" to="(610,90)"/> <wire from="(520,210)" to="(560,210)"/> <wire from="(560,210)" to="(560,310)"/> <wire from="(580,180)" to="(580,280)"/> <wire from="(580,180)" to="(590,180)"/> <wire from="(580,280)" to="(640,280)"/> <wire from="(600,190)" to="(600,360)"/> <wire from="(620,170)" to="(630,170)"/> <wire from="(630,110)" to="(630,170)"/> <wire from="(630,110)" to="(650,110)"/> <wire from="(630,90)" to="(650,90)"/> <wire from="(690,100)" to="(710,100)"/> </circuit> <circuit name="SPRDMA_AddrLowCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SPRDMA_AddrLowCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(180,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(280,200)" name="Constant"/> <comp lib="0" loc="(570,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="EndCount"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SPR_AddrLo"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(500,120)" name="Counter8"> <a name="label" val="cnt"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,160)" to="(220,160)"/> <wire from="(120,40)" to="(280,40)"/> <wire from="(120,80)" to="(230,80)"/> <wire from="(160,120)" to="(160,180)"/> <wire from="(160,180)" to="(280,180)"/> <wire from="(180,220)" to="(280,220)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,140)" to="(280,140)"/> <wire from="(230,160)" to="(280,160)"/> <wire from="(230,80)" to="(230,160)"/> <wire from="(280,40)" to="(280,120)"/> <wire from="(500,120)" to="(530,120)"/> <wire from="(500,160)" to="(570,160)"/> <wire from="(530,120)" to="(530,220)"/> <wire from="(530,220)" to="(570,220)"/> </circuit> <circuit name="SPRDMA_AddrHigh"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SPRDMA_AddrHigh"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(220,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SetAddr"/> </comp> <comp lib="0" loc="(220,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(220,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(400,100)" name="Constant"/> <comp lib="0" loc="(670,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SPR_AddrHi"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(320,120)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(320,240)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(500,220)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> <a name="width" val="8"/> </comp> <comp lib="8" loc="(390,215)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="8" loc="(505,190)" name="Text"> <a name="text" val="FFx8"/> </comp> <comp loc="(620,100)" name="DLatch_x8"/> <wire from="(220,200)" to="(310,200)"/> <wire from="(220,240)" to="(300,240)"/> <wire from="(220,90)" to="(310,90)"/> <wire from="(280,120)" to="(280,180)"/> <wire from="(280,120)" to="(300,120)"/> <wire from="(280,180)" to="(370,180)"/> <wire from="(310,200)" to="(310,230)"/> <wire from="(310,90)" to="(310,110)"/> <wire from="(320,120)" to="(350,120)"/> <wire from="(320,240)" to="(350,240)"/> <wire from="(350,120)" to="(350,240)"/> <wire from="(350,120)" to="(400,120)"/> <wire from="(370,180)" to="(370,220)"/> <wire from="(370,220)" to="(500,220)"/> <wire from="(520,220)" to="(640,220)"/> <wire from="(620,100)" to="(670,100)"/> <wire from="(620,120)" to="(640,120)"/> <wire from="(640,120)" to="(640,220)"/> </circuit> <circuit name="SPRDMA_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SPRDMA_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(110,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(110,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMCReady"/> </comp> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4014"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RUNDMC"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SPRE"/> </comp> <comp lib="0" loc="(120,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(780,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SPR_PPU"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SPR_CPU"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SPRS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RDY"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(170,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,380)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,450)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,280)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,620)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,690)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(410,100)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,500)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,160)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,610)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,680)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,360)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(190,675)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="ACLK1"/> </comp> <comp lib="8" loc="(215,125)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="SPRE"/> </comp> <comp lib="8" loc="(220,435)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="W4014"/> </comp> <comp lib="8" loc="(225,375)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RES"/> </comp> <comp lib="8" loc="(225,605)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="ACLK2"/> </comp> <comp lib="8" loc="(230,275)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RUNDMC"/> </comp> <comp lib="8" loc="(295,355)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="StartDMA"/> </comp> <comp lib="8" loc="(340,600)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="DMADirToggle"/> </comp> <comp lib="8" loc="(355,500)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="PHI1"/> </comp> <comp lib="8" loc="(360,85)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="SPRS"/> </comp> <comp lib="8" loc="(390,570)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RUNDMC"/> </comp> <comp lib="8" loc="(395,155)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RES"/> </comp> <comp lib="8" loc="(395,520)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="R/W"/> </comp> <comp lib="8" loc="(400,215)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="DOSPR"/> </comp> <comp lib="8" loc="(405,425)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="ACLK2"/> </comp> <comp lib="8" loc="(450,545)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="NOSPR"/> </comp> <comp lib="8" loc="(465,135)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="StopDMA"/> </comp> <comp lib="8" loc="(560,270)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Increment DMA Addr"/> </comp> <comp lib="8" loc="(580,605)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="DMA Buffer -&gt; PPU"/> </comp> <comp lib="8" loc="(580,675)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RAM -&gt; DMA Buffer"/> </comp> <comp lib="8" loc="(590,480)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="DOSPR"/> </comp> <comp lib="8" loc="(625,155)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="NOSPR"/> </comp> <comp lib="8" loc="(660,400)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="DMCRDY"/> </comp> <comp lib="8" loc="(690,350)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RDY"/> </comp> <comp loc="(260,110)" name="DLatch"> <a name="label" val="spre_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,430)" name="DLatch"> <a name="label" val="dospr_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,140)" name="DLatch"> <a name="label" val="nospr_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,490)" to="(370,490)"/> <wire from="(110,510)" to="(410,510)"/> <wire from="(110,720)" to="(690,720)"/> <wire from="(120,100)" to="(160,100)"/> <wire from="(120,130)" to="(150,130)"/> <wire from="(120,160)" to="(140,160)"/> <wire from="(120,220)" to="(190,220)"/> <wire from="(120,30)" to="(150,30)"/> <wire from="(120,60)" to="(170,60)"/> <wire from="(140,160)" to="(140,280)"/> <wire from="(140,280)" to="(140,560)"/> <wire from="(140,280)" to="(280,280)"/> <wire from="(140,560)" to="(430,560)"/> <wire from="(150,130)" to="(150,440)"/> <wire from="(150,440)" to="(260,440)"/> <wire from="(160,100)" to="(160,160)"/> <wire from="(160,160)" to="(160,380)"/> <wire from="(160,160)" to="(440,160)"/> <wire from="(160,380)" to="(260,380)"/> <wire from="(170,30)" to="(180,30)"/> <wire from="(170,60)" to="(170,680)"/> <wire from="(170,60)" to="(250,60)"/> <wire from="(170,680)" to="(310,680)"/> <wire from="(180,290)" to="(180,610)"/> <wire from="(180,290)" to="(250,290)"/> <wire from="(180,30)" to="(180,290)"/> <wire from="(180,30)" to="(340,30)"/> <wire from="(180,610)" to="(310,610)"/> <wire from="(190,130)" to="(190,220)"/> <wire from="(190,130)" to="(260,130)"/> <wire from="(200,250)" to="(200,330)"/> <wire from="(200,250)" to="(270,250)"/> <wire from="(200,330)" to="(200,550)"/> <wire from="(200,330)" to="(220,330)"/> <wire from="(200,550)" to="(440,550)"/> <wire from="(240,330)" to="(250,330)"/> <wire from="(240,390)" to="(240,410)"/> <wire from="(240,390)" to="(260,390)"/> <wire from="(240,410)" to="(320,410)"/> <wire from="(240,420)" to="(240,460)"/> <wire from="(240,420)" to="(330,420)"/> <wire from="(240,460)" to="(260,460)"/> <wire from="(250,110)" to="(260,110)"/> <wire from="(250,330)" to="(250,370)"/> <wire from="(250,330)" to="(500,330)"/> <wire from="(250,370)" to="(260,370)"/> <wire from="(250,60)" to="(250,110)"/> <wire from="(250,60)" to="(540,60)"/> <wire from="(270,250)" to="(270,270)"/> <wire from="(270,250)" to="(640,250)"/> <wire from="(270,270)" to="(280,270)"/> <wire from="(270,290)" to="(280,290)"/> <wire from="(290,630)" to="(290,650)"/> <wire from="(290,630)" to="(310,630)"/> <wire from="(290,650)" to="(370,650)"/> <wire from="(290,660)" to="(290,700)"/> <wire from="(290,660)" to="(380,660)"/> <wire from="(290,700)" to="(310,700)"/> <wire from="(300,110)" to="(380,110)"/> <wire from="(300,380)" to="(330,380)"/> <wire from="(300,450)" to="(320,450)"/> <wire from="(320,280)" to="(360,280)"/> <wire from="(320,410)" to="(320,450)"/> <wire from="(320,450)" to="(450,450)"/> <wire from="(330,380)" to="(330,420)"/> <wire from="(330,380)" to="(500,380)"/> <wire from="(340,30)" to="(340,430)"/> <wire from="(340,430)" to="(450,430)"/> <wire from="(350,620)" to="(380,620)"/> <wire from="(350,690)" to="(370,690)"/> <wire from="(360,280)" to="(680,280)"/> <wire from="(360,90)" to="(360,280)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(370,650)" to="(370,690)"/> <wire from="(370,690)" to="(390,690)"/> <wire from="(380,620)" to="(380,660)"/> <wire from="(390,490)" to="(410,490)"/> <wire from="(390,620)" to="(390,690)"/> <wire from="(390,620)" to="(400,620)"/> <wire from="(390,690)" to="(450,690)"/> <wire from="(400,220)" to="(400,400)"/> <wire from="(400,220)" to="(440,220)"/> <wire from="(400,400)" to="(620,400)"/> <wire from="(410,100)" to="(420,100)"/> <wire from="(420,100)" to="(420,150)"/> <wire from="(420,150)" to="(440,150)"/> <wire from="(420,170)" to="(420,190)"/> <wire from="(420,170)" to="(440,170)"/> <wire from="(420,190)" to="(500,190)"/> <wire from="(420,200)" to="(420,240)"/> <wire from="(420,200)" to="(510,200)"/> <wire from="(420,240)" to="(440,240)"/> <wire from="(420,620)" to="(450,620)"/> <wire from="(430,560)" to="(430,610)"/> <wire from="(430,610)" to="(430,680)"/> <wire from="(430,610)" to="(450,610)"/> <wire from="(430,680)" to="(450,680)"/> <wire from="(440,550)" to="(440,600)"/> <wire from="(440,600)" to="(440,670)"/> <wire from="(440,600)" to="(450,600)"/> <wire from="(440,670)" to="(450,670)"/> <wire from="(450,500)" to="(530,500)"/> <wire from="(480,160)" to="(510,160)"/> <wire from="(480,230)" to="(500,230)"/> <wire from="(490,430)" to="(510,430)"/> <wire from="(490,610)" to="(730,610)"/> <wire from="(490,680)" to="(750,680)"/> <wire from="(500,190)" to="(500,230)"/> <wire from="(500,330)" to="(500,340)"/> <wire from="(500,340)" to="(540,340)"/> <wire from="(500,360)" to="(500,380)"/> <wire from="(500,360)" to="(540,360)"/> <wire from="(510,160)" to="(510,200)"/> <wire from="(510,160)" to="(550,160)"/> <wire from="(510,430)" to="(510,480)"/> <wire from="(510,480)" to="(530,480)"/> <wire from="(540,140)" to="(550,140)"/> <wire from="(540,60)" to="(540,140)"/> <wire from="(540,60)" to="(660,60)"/> <wire from="(570,490)" to="(620,490)"/> <wire from="(580,350)" to="(620,350)"/> <wire from="(590,160)" to="(640,160)"/> <wire from="(610,370)" to="(610,390)"/> <wire from="(610,370)" to="(620,370)"/> <wire from="(610,390)" to="(690,390)"/> <wire from="(620,400)" to="(620,490)"/> <wire from="(640,160)" to="(640,250)"/> <wire from="(660,360)" to="(670,360)"/> <wire from="(680,60)" to="(680,280)"/> <wire from="(680,60)" to="(780,60)"/> <wire from="(690,360)" to="(710,360)"/> <wire from="(690,390)" to="(690,720)"/> <wire from="(710,90)" to="(710,360)"/> <wire from="(710,90)" to="(780,90)"/> <wire from="(730,120)" to="(730,610)"/> <wire from="(730,120)" to="(780,120)"/> <wire from="(750,150)" to="(750,680)"/> <wire from="(750,150)" to="(780,150)"/> </circuit> <circuit name="SPRDMA_Buffer"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SPRDMA_Buffer"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SPR_PPU"/> </comp> <comp lib="0" loc="(130,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(190,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(560,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Dx_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(620,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RW"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(170,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,40)" name="NOT Gate"/> <comp lib="1" loc="(500,110)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(530,100)" name="NOT Gate"> <a name="facing" val="south"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,110)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="8" loc="(390,30)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="PPU/SPR"/> </comp> <comp loc="(470,90)" name="DLatch_x8"/> <wire from="(130,230)" to="(150,230)"/> <wire from="(130,40)" to="(210,40)"/> <wire from="(130,90)" to="(250,90)"/> <wire from="(170,230)" to="(220,230)"/> <wire from="(190,130)" to="(240,130)"/> <wire from="(210,210)" to="(220,210)"/> <wire from="(210,40)" to="(210,210)"/> <wire from="(210,40)" to="(330,40)"/> <wire from="(240,110)" to="(240,130)"/> <wire from="(240,110)" to="(250,110)"/> <wire from="(260,220)" to="(620,220)"/> <wire from="(360,40)" to="(530,40)"/> <wire from="(470,110)" to="(480,110)"/> <wire from="(500,110)" to="(520,110)"/> <wire from="(530,40)" to="(530,80)"/> <wire from="(540,110)" to="(560,110)"/> </circuit> <circuit name="Addr_MUX"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Addr_MUX"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SPR_CPU"/> </comp> <comp lib="0" loc="(130,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SPR_PPU"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DMC_AB"/> </comp> <comp lib="0" loc="(190,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMC_Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SPR_Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(190,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CPU_Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(190,500)" name="Constant"> <a name="value" val="0x2004"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(420,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(180,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,200)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,350)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(290,400)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(290,450)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(290,500)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(390,400)" name="Buffer"> <a name="width" val="16"/> </comp> <comp lib="8" loc="(245,255)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="DMC_AB"/> </comp> <comp lib="8" loc="(325,190)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="CPU_AB (default)"/> </comp> <wire from="(130,160)" to="(190,160)"/> <wire from="(130,200)" to="(150,200)"/> <wire from="(130,240)" to="(160,240)"/> <wire from="(150,200)" to="(150,310)"/> <wire from="(150,200)" to="(230,200)"/> <wire from="(150,310)" to="(230,310)"/> <wire from="(180,240)" to="(200,240)"/> <wire from="(190,160)" to="(190,300)"/> <wire from="(190,160)" to="(200,160)"/> <wire from="(190,300)" to="(250,300)"/> <wire from="(190,350)" to="(270,350)"/> <wire from="(190,400)" to="(270,400)"/> <wire from="(190,450)" to="(270,450)"/> <wire from="(190,500)" to="(270,500)"/> <wire from="(200,160)" to="(200,190)"/> <wire from="(200,190)" to="(230,190)"/> <wire from="(200,210)" to="(200,240)"/> <wire from="(200,210)" to="(230,210)"/> <wire from="(200,240)" to="(280,240)"/> <wire from="(230,310)" to="(230,470)"/> <wire from="(230,470)" to="(280,470)"/> <wire from="(250,300)" to="(250,370)"/> <wire from="(250,370)" to="(280,370)"/> <wire from="(270,200)" to="(310,200)"/> <wire from="(280,240)" to="(280,340)"/> <wire from="(280,370)" to="(280,390)"/> <wire from="(280,420)" to="(280,440)"/> <wire from="(280,420)" to="(310,420)"/> <wire from="(280,470)" to="(280,490)"/> <wire from="(290,350)" to="(340,350)"/> <wire from="(290,400)" to="(340,400)"/> <wire from="(290,450)" to="(340,450)"/> <wire from="(290,500)" to="(340,500)"/> <wire from="(310,200)" to="(310,420)"/> <wire from="(340,350)" to="(340,400)"/> <wire from="(340,400)" to="(340,450)"/> <wire from="(340,400)" to="(370,400)"/> <wire from="(340,450)" to="(340,500)"/> <wire from="(390,400)" to="(420,400)"/> </circuit> <circuit name="DLatch"> <a name="appearance" val="custom"/> <a name="circuit" val="DLatch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#2cff4e" height="40" stroke="#000000" width="40" x="50" y="50"/> <ellipse cx="90" cy="80" fill="none" rx="5" ry="5" stroke="#000000" stroke-width="2"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="42">DL</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,130" x="50" y="60"/> <circ-port dir="in" pin="120,210" x="50" y="80"/> <circ-port dir="out" pin="370,130" x="90" y="60"/> <circ-port dir="out" pin="370,210" x="90" y="80"/> </appear> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(370,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(230,140)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <wire from="(120,130)" to="(170,130)"/> <wire from="(120,210)" to="(190,210)"/> <wire from="(170,130)" to="(170,190)"/> <wire from="(170,190)" to="(220,190)"/> <wire from="(190,150)" to="(190,210)"/> <wire from="(190,150)" to="(220,150)"/> <wire from="(280,150)" to="(330,150)"/> <wire from="(280,190)" to="(330,190)"/> <wire from="(330,130)" to="(330,150)"/> <wire from="(330,130)" to="(370,130)"/> <wire from="(330,190)" to="(330,210)"/> <wire from="(330,210)" to="(370,210)"/> </circuit> <circuit name="DLatch_x8"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DLatch_x8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#2cff4e" height="40" stroke="#000000" width="40" x="50" y="50"/> <ellipse cx="90" cy="80" fill="none" rx="5" ry="5" stroke="#000000" stroke-width="2"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="42">DL x8</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="190,140" x="50" y="80"/> <circ-port dir="in" pin="190,60" x="50" y="60"/> <circ-port dir="out" pin="440,140" x="90" y="80"/> <circ-port dir="out" pin="440,60" x="90" y="60"/> </appear> <comp lib="0" loc="(190,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(290,100)" name="Constant"/> <comp lib="0" loc="(440,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(440,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(390,120)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="8"/> </comp> <comp lib="4" loc="(290,50)" name="Register"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <wire from="(190,140)" to="(260,140)"/> <wire from="(190,60)" to="(240,60)"/> <wire from="(240,120)" to="(290,120)"/> <wire from="(240,60)" to="(240,120)"/> <wire from="(260,80)" to="(260,140)"/> <wire from="(260,80)" to="(290,80)"/> <wire from="(350,80)" to="(360,80)"/> <wire from="(360,120)" to="(370,120)"/> <wire from="(360,80)" to="(360,120)"/> <wire from="(360,80)" to="(400,80)"/> <wire from="(390,120)" to="(400,120)"/> <wire from="(400,120)" to="(400,140)"/> <wire from="(400,140)" to="(440,140)"/> <wire from="(400,60)" to="(400,80)"/> <wire from="(400,60)" to="(440,60)"/> </circuit> <circuit name="DPCM_ControlReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_ControlReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4010"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,240)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(610,130)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(620,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="F_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(620,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_IRQEN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(620,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="LOOPMode"/> <a name="output" val="true"/> </comp> <comp loc="(490,190)" name="RegisterBit"/> <comp loc="(490,290)" name="RegisterBit"/> <comp loc="(490,390)" name="RegisterBit"/> <comp loc="(490,490)" name="RegisterBit"/> <comp loc="(490,590)" name="RegisterBit"/> <comp loc="(490,90)" name="RegisterBit"/> <wire from="(100,110)" to="(250,110)"/> <wire from="(100,70)" to="(260,70)"/> <wire from="(160,240)" to="(170,240)"/> <wire from="(190,160)" to="(220,160)"/> <wire from="(190,170)" to="(230,170)"/> <wire from="(190,180)" to="(220,180)"/> <wire from="(190,190)" to="(210,190)"/> <wire from="(190,220)" to="(200,220)"/> <wire from="(190,230)" to="(190,630)"/> <wire from="(190,630)" to="(270,630)"/> <wire from="(200,220)" to="(200,530)"/> <wire from="(200,530)" to="(270,530)"/> <wire from="(210,190)" to="(210,430)"/> <wire from="(210,430)" to="(270,430)"/> <wire from="(220,130)" to="(220,160)"/> <wire from="(220,130)" to="(270,130)"/> <wire from="(220,180)" to="(220,330)"/> <wire from="(220,330)" to="(270,330)"/> <wire from="(230,170)" to="(230,230)"/> <wire from="(230,230)" to="(270,230)"/> <wire from="(250,110)" to="(250,210)"/> <wire from="(250,110)" to="(270,110)"/> <wire from="(250,210)" to="(250,310)"/> <wire from="(250,210)" to="(270,210)"/> <wire from="(250,310)" to="(250,410)"/> <wire from="(250,310)" to="(270,310)"/> <wire from="(250,410)" to="(250,510)"/> <wire from="(250,410)" to="(270,410)"/> <wire from="(250,510)" to="(250,610)"/> <wire from="(250,510)" to="(270,510)"/> <wire from="(250,610)" to="(270,610)"/> <wire from="(260,190)" to="(260,290)"/> <wire from="(260,190)" to="(270,190)"/> <wire from="(260,290)" to="(260,390)"/> <wire from="(260,290)" to="(270,290)"/> <wire from="(260,390)" to="(260,490)"/> <wire from="(260,390)" to="(270,390)"/> <wire from="(260,490)" to="(260,590)"/> <wire from="(260,490)" to="(270,490)"/> <wire from="(260,590)" to="(270,590)"/> <wire from="(260,70)" to="(260,90)"/> <wire from="(260,90)" to="(260,190)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(490,190)" to="(520,190)"/> <wire from="(490,290)" to="(530,290)"/> <wire from="(490,390)" to="(540,390)"/> <wire from="(490,490)" to="(570,490)"/> <wire from="(490,610)" to="(580,610)"/> <wire from="(490,90)" to="(590,90)"/> <wire from="(520,100)" to="(520,190)"/> <wire from="(520,100)" to="(590,100)"/> <wire from="(530,110)" to="(530,290)"/> <wire from="(530,110)" to="(590,110)"/> <wire from="(540,120)" to="(540,390)"/> <wire from="(540,120)" to="(590,120)"/> <wire from="(570,250)" to="(570,490)"/> <wire from="(570,250)" to="(620,250)"/> <wire from="(580,210)" to="(580,610)"/> <wire from="(580,210)" to="(620,210)"/> <wire from="(610,130)" to="(620,130)"/> </circuit> <circuit name="DPCM_IntControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_IntControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(100,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(100,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQEN"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AssertInt"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(520,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCINT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D7_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(310,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,200)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(440,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,80)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(245,90)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(250,235)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(310,140)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="INT_FF"/> </comp> <comp lib="8" loc="(355,100)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp lib="8" loc="(355,215)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <wire from="(100,110)" to="(190,110)"/> <wire from="(100,150)" to="(170,150)"/> <wire from="(100,190)" to="(180,190)"/> <wire from="(100,230)" to="(210,230)"/> <wire from="(100,70)" to="(160,70)"/> <wire from="(160,220)" to="(270,220)"/> <wire from="(160,70)" to="(160,220)"/> <wire from="(170,50)" to="(170,150)"/> <wire from="(170,50)" to="(420,50)"/> <wire from="(180,190)" to="(180,210)"/> <wire from="(180,210)" to="(180,240)"/> <wire from="(180,210)" to="(270,210)"/> <wire from="(180,240)" to="(390,240)"/> <wire from="(190,110)" to="(190,190)"/> <wire from="(190,190)" to="(270,190)"/> <wire from="(210,100)" to="(210,230)"/> <wire from="(210,100)" to="(270,100)"/> <wire from="(250,120)" to="(250,150)"/> <wire from="(250,120)" to="(270,120)"/> <wire from="(250,150)" to="(360,150)"/> <wire from="(250,160)" to="(250,180)"/> <wire from="(250,160)" to="(350,160)"/> <wire from="(250,180)" to="(270,180)"/> <wire from="(310,110)" to="(350,110)"/> <wire from="(330,200)" to="(360,200)"/> <wire from="(350,110)" to="(350,160)"/> <wire from="(350,110)" to="(390,110)"/> <wire from="(360,150)" to="(360,200)"/> <wire from="(390,110)" to="(420,110)"/> <wire from="(390,130)" to="(390,240)"/> <wire from="(390,130)" to="(420,130)"/> <wire from="(390,80)" to="(390,110)"/> <wire from="(390,80)" to="(460,80)"/> <wire from="(440,50)" to="(470,50)"/> <wire from="(460,120)" to="(520,120)"/> <wire from="(470,50)" to="(470,70)"/> <wire from="(490,80)" to="(520,80)"/> </circuit> <circuit name="DPCM_EnableControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_EnableControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="LOOPMode"/> </comp> <comp lib="0" loc="(120,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCMDone"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SOUT"/> </comp> <comp lib="0" loc="(120,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D4_In"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(210,430)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(210,470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(360,320)" name="Constant"/> <comp lib="0" loc="(610,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D4_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(610,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ED1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(610,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(610,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ED2"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(240,330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,390)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,430)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(240,470)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,400)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,150)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,340)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(140,245)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMC1"/> </comp> <comp lib="8" loc="(390,380)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="ENA_FF"/> </comp> <comp lib="8" loc="(480,140)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ClearEnable"/> </comp> <comp lib="8" loc="(515,95)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMCFinish"/> </comp> <comp lib="8" loc="(550,410)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMCEnable"/> </comp> <comp loc="(270,100)" name="DLatch"> <a name="label" val="sout_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(370,320)" name="DLatch"> <a name="label" val="ff_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,130)" to="(180,130)"/> <wire from="(120,170)" to="(270,170)"/> <wire from="(120,210)" to="(360,210)"/> <wire from="(120,250)" to="(310,250)"/> <wire from="(120,290)" to="(190,290)"/> <wire from="(120,340)" to="(140,340)"/> <wire from="(120,50)" to="(230,50)"/> <wire from="(120,90)" to="(160,90)"/> <wire from="(140,340)" to="(140,390)"/> <wire from="(140,390)" to="(220,390)"/> <wire from="(160,450)" to="(230,450)"/> <wire from="(160,90)" to="(160,450)"/> <wire from="(170,310)" to="(170,410)"/> <wire from="(170,310)" to="(210,310)"/> <wire from="(170,410)" to="(230,410)"/> <wire from="(180,130)" to="(180,360)"/> <wire from="(180,360)" to="(230,360)"/> <wire from="(190,120)" to="(190,290)"/> <wire from="(190,120)" to="(270,120)"/> <wire from="(210,280)" to="(210,310)"/> <wire from="(210,280)" to="(510,280)"/> <wire from="(210,330)" to="(210,350)"/> <wire from="(210,330)" to="(220,330)"/> <wire from="(210,350)" to="(340,350)"/> <wire from="(210,430)" to="(220,430)"/> <wire from="(210,470)" to="(220,470)"/> <wire from="(230,360)" to="(230,380)"/> <wire from="(230,410)" to="(230,420)"/> <wire from="(230,450)" to="(230,460)"/> <wire from="(230,50)" to="(230,320)"/> <wire from="(230,50)" to="(260,50)"/> <wire from="(240,330)" to="(260,330)"/> <wire from="(240,390)" to="(260,390)"/> <wire from="(240,430)" to="(260,430)"/> <wire from="(240,470)" to="(260,470)"/> <wire from="(260,100)" to="(270,100)"/> <wire from="(260,330)" to="(260,390)"/> <wire from="(260,390)" to="(260,430)"/> <wire from="(260,390)" to="(320,390)"/> <wire from="(260,430)" to="(260,470)"/> <wire from="(260,50)" to="(260,100)"/> <wire from="(270,170)" to="(270,270)"/> <wire from="(270,270)" to="(480,270)"/> <wire from="(310,100)" to="(560,100)"/> <wire from="(310,120)" to="(350,120)"/> <wire from="(320,340)" to="(320,390)"/> <wire from="(320,340)" to="(370,340)"/> <wire from="(330,250)" to="(370,250)"/> <wire from="(340,350)" to="(340,400)"/> <wire from="(340,400)" to="(340,420)"/> <wire from="(340,400)" to="(380,400)"/> <wire from="(340,420)" to="(600,420)"/> <wire from="(350,120)" to="(350,150)"/> <wire from="(350,150)" to="(400,150)"/> <wire from="(360,140)" to="(360,210)"/> <wire from="(360,140)" to="(400,140)"/> <wire from="(360,320)" to="(370,320)"/> <wire from="(370,160)" to="(370,250)"/> <wire from="(370,160)" to="(400,160)"/> <wire from="(400,400)" to="(450,400)"/> <wire from="(410,340)" to="(450,340)"/> <wire from="(440,150)" to="(510,150)"/> <wire from="(450,340)" to="(450,400)"/> <wire from="(450,340)" to="(520,340)"/> <wire from="(480,270)" to="(480,310)"/> <wire from="(480,310)" to="(490,310)"/> <wire from="(510,150)" to="(510,280)"/> <wire from="(510,150)" to="(610,150)"/> <wire from="(510,310)" to="(530,310)"/> <wire from="(530,310)" to="(530,330)"/> <wire from="(550,340)" to="(580,340)"/> <wire from="(560,100)" to="(560,190)"/> <wire from="(560,190)" to="(610,190)"/> <wire from="(580,110)" to="(580,340)"/> <wire from="(580,110)" to="(610,110)"/> <wire from="(600,230)" to="(600,420)"/> <wire from="(600,230)" to="(610,230)"/> </circuit> <circuit name="DPCM_DMAControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_DMAControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(170,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(170,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(170,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nDMAStop"/> </comp> <comp lib="0" loc="(170,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nDMCEnableDelay"/> </comp> <comp lib="0" loc="(170,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(740,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RUNDMC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(740,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DMCAB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(740,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCRDY"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,270)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,250)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,390)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(570,230)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,260)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,260)" name="Buffer"/> <comp lib="1" loc="(720,70)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(190,390)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="CTRL1"/> </comp> <comp lib="8" loc="(190,435)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="CTRL2"/> </comp> <comp lib="8" loc="(305,20)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ACLK2"/> </comp> <comp lib="8" loc="(400,295)" name="Text"> <a name="font" val="SansSerif bold 13"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(400,430)" name="Text"> <a name="font" val="SansSerif bold 13"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(445,360)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="START_FF"/> </comp> <comp lib="8" loc="(465,410)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(475,315)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp lib="8" loc="(510,405)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="DMAStart"/> </comp> <comp lib="8" loc="(585,350)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(590,240)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(625,285)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="RDY_FF"/> </comp> <comp lib="8" loc="(655,250)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(665,335)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp loc="(260,120)" name="DLatch"> <a name="label" val="run_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(360,120)" name="DLatch"> <a name="label" val="run_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,280)" to="(230,280)"/> <wire from="(170,30)" to="(190,30)"/> <wire from="(170,320)" to="(250,320)"/> <wire from="(170,360)" to="(310,360)"/> <wire from="(170,400)" to="(210,400)"/> <wire from="(170,440)" to="(280,440)"/> <wire from="(170,70)" to="(350,70)"/> <wire from="(210,30)" to="(250,30)"/> <wire from="(230,140)" to="(230,200)"/> <wire from="(230,140)" to="(260,140)"/> <wire from="(230,200)" to="(500,200)"/> <wire from="(230,260)" to="(230,280)"/> <wire from="(230,260)" to="(260,260)"/> <wire from="(230,400)" to="(290,400)"/> <wire from="(250,120)" to="(260,120)"/> <wire from="(250,280)" to="(250,320)"/> <wire from="(250,280)" to="(290,280)"/> <wire from="(250,30)" to="(250,120)"/> <wire from="(250,30)" to="(510,30)"/> <wire from="(280,260)" to="(290,260)"/> <wire from="(280,340)" to="(280,440)"/> <wire from="(280,340)" to="(360,340)"/> <wire from="(290,400)" to="(290,410)"/> <wire from="(290,410)" to="(370,410)"/> <wire from="(300,120)" to="(330,120)"/> <wire from="(300,140)" to="(360,140)"/> <wire from="(310,360)" to="(310,400)"/> <wire from="(310,400)" to="(400,400)"/> <wire from="(330,120)" to="(330,180)"/> <wire from="(330,180)" to="(530,180)"/> <wire from="(330,270)" to="(350,270)"/> <wire from="(350,120)" to="(360,120)"/> <wire from="(350,240)" to="(350,270)"/> <wire from="(350,240)" to="(400,240)"/> <wire from="(350,70)" to="(350,120)"/> <wire from="(350,70)" to="(520,70)"/> <wire from="(360,250)" to="(360,340)"/> <wire from="(360,250)" to="(400,250)"/> <wire from="(360,340)" to="(360,380)"/> <wire from="(360,380)" to="(400,380)"/> <wire from="(370,260)" to="(370,410)"/> <wire from="(370,260)" to="(400,260)"/> <wire from="(370,410)" to="(400,410)"/> <wire from="(390,280)" to="(390,310)"/> <wire from="(390,280)" to="(470,280)"/> <wire from="(390,310)" to="(400,310)"/> <wire from="(390,330)" to="(390,340)"/> <wire from="(390,330)" to="(400,330)"/> <wire from="(390,340)" to="(480,340)"/> <wire from="(390,350)" to="(390,370)"/> <wire from="(390,350)" to="(470,350)"/> <wire from="(390,370)" to="(400,370)"/> <wire from="(400,140)" to="(630,140)"/> <wire from="(440,250)" to="(470,250)"/> <wire from="(440,320)" to="(470,320)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(470,250)" to="(470,280)"/> <wire from="(470,320)" to="(470,350)"/> <wire from="(480,340)" to="(480,390)"/> <wire from="(480,390)" to="(500,390)"/> <wire from="(500,200)" to="(500,390)"/> <wire from="(500,90)" to="(500,200)"/> <wire from="(500,90)" to="(630,90)"/> <wire from="(510,30)" to="(510,330)"/> <wire from="(510,30)" to="(540,30)"/> <wire from="(510,330)" to="(600,330)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(520,70)" to="(520,240)"/> <wire from="(520,70)" to="(540,70)"/> <wire from="(530,180)" to="(530,220)"/> <wire from="(530,220)" to="(540,220)"/> <wire from="(570,230)" to="(580,230)"/> <wire from="(580,230)" to="(580,250)"/> <wire from="(580,250)" to="(600,250)"/> <wire from="(590,270)" to="(590,290)"/> <wire from="(590,270)" to="(600,270)"/> <wire from="(590,290)" to="(660,290)"/> <wire from="(590,300)" to="(590,310)"/> <wire from="(590,300)" to="(650,300)"/> <wire from="(590,310)" to="(600,310)"/> <wire from="(630,110)" to="(630,140)"/> <wire from="(630,110)" to="(740,110)"/> <wire from="(630,60)" to="(630,90)"/> <wire from="(630,60)" to="(680,60)"/> <wire from="(640,260)" to="(650,260)"/> <wire from="(640,320)" to="(660,320)"/> <wire from="(650,260)" to="(650,300)"/> <wire from="(650,260)" to="(670,260)"/> <wire from="(660,150)" to="(700,150)"/> <wire from="(660,290)" to="(660,320)"/> <wire from="(660,320)" to="(700,320)"/> <wire from="(660,80)" to="(660,150)"/> <wire from="(660,80)" to="(680,80)"/> <wire from="(690,260)" to="(740,260)"/> <wire from="(700,150)" to="(700,320)"/> <wire from="(720,70)" to="(740,70)"/> </circuit> <circuit name="DPCM_SampleCounterControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleCounterControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCMDone"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMCFinish"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DMCEnable"/> </comp> <comp lib="0" loc="(130,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DFLOAD"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(730,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CTRL2"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,210)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,130)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,360)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(170,255)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMC2"/> </comp> <comp lib="8" loc="(170,300)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="ED2"/> </comp> <comp lib="8" loc="(175,130)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMC1"/> </comp> <comp lib="8" loc="(365,260)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="Edge detector"/> </comp> <comp lib="8" loc="(525,200)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="DMC3"/> </comp> <comp lib="8" loc="(645,300)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="#DMCEnableDelay"/> </comp> <comp loc="(220,290)" name="DLatch"> <a name="label" val="en_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,290)" name="DLatch"> <a name="label" val="en_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,290)" name="DLatch"> <a name="label" val="en_latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,220)" to="(150,220)"/> <wire from="(130,260)" to="(200,260)"/> <wire from="(130,310)" to="(220,310)"/> <wire from="(130,380)" to="(170,380)"/> <wire from="(130,40)" to="(310,40)"/> <wire from="(130,80)" to="(210,80)"/> <wire from="(150,220)" to="(150,350)"/> <wire from="(150,220)" to="(170,220)"/> <wire from="(150,350)" to="(590,350)"/> <wire from="(170,140)" to="(170,220)"/> <wire from="(170,140)" to="(510,140)"/> <wire from="(190,380)" to="(550,380)"/> <wire from="(200,190)" to="(200,260)"/> <wire from="(200,190)" to="(370,190)"/> <wire from="(200,260)" to="(200,370)"/> <wire from="(200,370)" to="(630,370)"/> <wire from="(210,290)" to="(220,290)"/> <wire from="(210,80)" to="(210,290)"/> <wire from="(210,80)" to="(430,80)"/> <wire from="(260,310)" to="(290,310)"/> <wire from="(290,240)" to="(290,310)"/> <wire from="(290,240)" to="(390,240)"/> <wire from="(290,310)" to="(350,310)"/> <wire from="(310,290)" to="(320,290)"/> <wire from="(310,40)" to="(310,290)"/> <wire from="(310,40)" to="(450,40)"/> <wire from="(340,290)" to="(350,290)"/> <wire from="(370,120)" to="(370,190)"/> <wire from="(370,120)" to="(510,120)"/> <wire from="(390,210)" to="(390,240)"/> <wire from="(390,210)" to="(470,210)"/> <wire from="(390,310)" to="(440,310)"/> <wire from="(430,290)" to="(440,290)"/> <wire from="(430,80)" to="(430,290)"/> <wire from="(430,80)" to="(630,80)"/> <wire from="(450,200)" to="(470,200)"/> <wire from="(450,220)" to="(450,250)"/> <wire from="(450,220)" to="(470,220)"/> <wire from="(450,250)" to="(500,250)"/> <wire from="(450,40)" to="(450,200)"/> <wire from="(450,40)" to="(630,40)"/> <wire from="(480,290)" to="(500,290)"/> <wire from="(480,310)" to="(730,310)"/> <wire from="(500,250)" to="(500,290)"/> <wire from="(510,210)" to="(530,210)"/> <wire from="(530,210)" to="(530,360)"/> <wire from="(530,210)" to="(550,210)"/> <wire from="(530,360)" to="(630,360)"/> <wire from="(540,130)" to="(550,130)"/> <wire from="(550,130)" to="(550,170)"/> <wire from="(550,170)" to="(570,170)"/> <wire from="(550,190)" to="(550,210)"/> <wire from="(550,190)" to="(570,190)"/> <wire from="(550,240)" to="(550,380)"/> <wire from="(550,240)" to="(630,240)"/> <wire from="(610,180)" to="(630,180)"/> <wire from="(610,350)" to="(630,350)"/> <wire from="(650,180)" to="(680,180)"/> <wire from="(650,240)" to="(730,240)"/> <wire from="(670,360)" to="(700,360)"/> <wire from="(680,130)" to="(680,180)"/> <wire from="(680,130)" to="(730,130)"/> <wire from="(700,170)" to="(700,360)"/> <wire from="(700,170)" to="(730,170)"/> </circuit> <circuit name="DPCM_SampleBufferControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleBufferControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(100,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DFLOAD"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DOUT"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(100,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NOUT"/> </comp> <comp lib="0" loc="(100,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DMCAB"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(110,230)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,70)" name="Tunnel"> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(220,40)" name="Tunnel"> <a name="label" val="ACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(240,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(280,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(440,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(560,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(690,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCM"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CTRL1"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(140,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(140,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,590)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,290)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,290)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,500)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,560)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,400)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,180)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(700,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,130)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(750,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(230,480)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="PCM"/> </comp> <comp lib="8" loc="(355,205)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(360,320)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(380,255)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="STEP_FF"/> </comp> <comp lib="8" loc="(420,245)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp lib="8" loc="(425,305)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(435,505)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(460,590)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(480,525)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="PCM_FF"/> </comp> <comp lib="8" loc="(530,500)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp lib="8" loc="(530,570)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(560,340)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(575,430)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(600,365)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="STOP_FF"/> </comp> <comp lib="8" loc="(640,330)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp lib="8" loc="(645,415)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(720,330)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="nDMAStop"/> </comp> <comp lib="8" loc="(785,605)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="PCMDone"/> </comp> <comp loc="(280,530)" name="DLatch"> <a name="label" val="pcm_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,140)" name="DLatch"> <a name="label" val="dout_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,210)" name="DLatch"> <a name="label" val="dstep_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(700,380)" name="DLatch"> <a name="label" val="stop_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,190)" to="(170,190)"/> <wire from="(100,230)" to="(110,230)"/> <wire from="(100,270)" to="(160,270)"/> <wire from="(100,340)" to="(120,340)"/> <wire from="(100,380)" to="(200,380)"/> <wire from="(100,40)" to="(120,40)"/> <wire from="(100,420)" to="(180,420)"/> <wire from="(100,500)" to="(180,500)"/> <wire from="(100,70)" to="(140,70)"/> <wire from="(140,340)" to="(150,340)"/> <wire from="(140,40)" to="(220,40)"/> <wire from="(150,110)" to="(150,340)"/> <wire from="(150,110)" to="(570,110)"/> <wire from="(150,340)" to="(260,340)"/> <wire from="(160,100)" to="(160,270)"/> <wire from="(160,100)" to="(560,100)"/> <wire from="(170,190)" to="(170,480)"/> <wire from="(170,480)" to="(180,480)"/> <wire from="(180,420)" to="(270,420)"/> <wire from="(180,90)" to="(180,420)"/> <wire from="(180,90)" to="(670,90)"/> <wire from="(200,160)" to="(200,380)"/> <wire from="(200,160)" to="(480,160)"/> <wire from="(220,220)" to="(220,360)"/> <wire from="(220,220)" to="(360,220)"/> <wire from="(220,360)" to="(540,360)"/> <wire from="(220,490)" to="(450,490)"/> <wire from="(240,280)" to="(240,440)"/> <wire from="(240,280)" to="(260,280)"/> <wire from="(240,440)" to="(760,440)"/> <wire from="(240,530)" to="(280,530)"/> <wire from="(260,290)" to="(260,340)"/> <wire from="(260,290)" to="(290,290)"/> <wire from="(260,470)" to="(260,550)"/> <wire from="(260,470)" to="(520,470)"/> <wire from="(260,550)" to="(280,550)"/> <wire from="(270,300)" to="(270,420)"/> <wire from="(270,300)" to="(290,300)"/> <wire from="(280,280)" to="(290,280)"/> <wire from="(280,590)" to="(300,590)"/> <wire from="(320,530)" to="(340,530)"/> <wire from="(320,590)" to="(340,590)"/> <wire from="(330,290)" to="(360,290)"/> <wire from="(340,320)" to="(350,320)"/> <wire from="(340,530)" to="(340,550)"/> <wire from="(340,550)" to="(350,550)"/> <wire from="(340,570)" to="(340,590)"/> <wire from="(340,570)" to="(350,570)"/> <wire from="(350,240)" to="(350,260)"/> <wire from="(350,240)" to="(360,240)"/> <wire from="(350,260)" to="(420,260)"/> <wire from="(350,270)" to="(350,280)"/> <wire from="(350,270)" to="(410,270)"/> <wire from="(350,280)" to="(360,280)"/> <wire from="(350,300)" to="(350,320)"/> <wire from="(350,300)" to="(360,300)"/> <wire from="(390,560)" to="(400,560)"/> <wire from="(400,230)" to="(410,230)"/> <wire from="(400,290)" to="(420,290)"/> <wire from="(400,560)" to="(400,620)"/> <wire from="(400,560)" to="(460,560)"/> <wire from="(400,620)" to="(830,620)"/> <wire from="(410,230)" to="(410,270)"/> <wire from="(410,230)" to="(480,230)"/> <wire from="(420,260)" to="(420,290)"/> <wire from="(440,590)" to="(450,590)"/> <wire from="(450,330)" to="(450,490)"/> <wire from="(450,330)" to="(570,330)"/> <wire from="(450,490)" to="(460,490)"/> <wire from="(450,510)" to="(450,530)"/> <wire from="(450,510)" to="(460,510)"/> <wire from="(450,530)" to="(520,530)"/> <wire from="(450,540)" to="(450,550)"/> <wire from="(450,540)" to="(510,540)"/> <wire from="(450,550)" to="(460,550)"/> <wire from="(450,570)" to="(450,590)"/> <wire from="(450,570)" to="(460,570)"/> <wire from="(470,140)" to="(480,140)"/> <wire from="(470,210)" to="(480,210)"/> <wire from="(500,500)" to="(510,500)"/> <wire from="(500,560)" to="(520,560)"/> <wire from="(510,500)" to="(510,540)"/> <wire from="(510,500)" to="(520,500)"/> <wire from="(520,140)" to="(550,140)"/> <wire from="(520,210)" to="(550,210)"/> <wire from="(520,470)" to="(520,500)"/> <wire from="(520,530)" to="(520,560)"/> <wire from="(540,310)" to="(540,360)"/> <wire from="(540,310)" to="(780,310)"/> <wire from="(540,360)" to="(540,400)"/> <wire from="(540,400)" to="(580,400)"/> <wire from="(550,140)" to="(550,160)"/> <wire from="(550,160)" to="(580,160)"/> <wire from="(550,170)" to="(550,210)"/> <wire from="(550,170)" to="(580,170)"/> <wire from="(560,100)" to="(560,200)"/> <wire from="(560,200)" to="(580,200)"/> <wire from="(560,420)" to="(570,420)"/> <wire from="(570,110)" to="(570,190)"/> <wire from="(570,110)" to="(680,110)"/> <wire from="(570,190)" to="(580,190)"/> <wire from="(570,280)" to="(570,330)"/> <wire from="(570,280)" to="(800,280)"/> <wire from="(570,330)" to="(580,330)"/> <wire from="(570,350)" to="(570,370)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(570,370)" to="(640,370)"/> <wire from="(570,380)" to="(570,390)"/> <wire from="(570,380)" to="(630,380)"/> <wire from="(570,390)" to="(580,390)"/> <wire from="(570,410)" to="(570,420)"/> <wire from="(570,410)" to="(580,410)"/> <wire from="(620,340)" to="(630,340)"/> <wire from="(620,400)" to="(640,400)"/> <wire from="(630,340)" to="(630,380)"/> <wire from="(630,340)" to="(780,340)"/> <wire from="(640,180)" to="(650,180)"/> <wire from="(640,370)" to="(640,400)"/> <wire from="(640,400)" to="(700,400)"/> <wire from="(650,180)" to="(650,250)"/> <wire from="(650,250)" to="(840,250)"/> <wire from="(660,120)" to="(660,210)"/> <wire from="(660,120)" to="(710,120)"/> <wire from="(660,210)" to="(760,210)"/> <wire from="(670,140)" to="(670,180)"/> <wire from="(670,140)" to="(710,140)"/> <wire from="(670,180)" to="(680,180)"/> <wire from="(670,90)" to="(670,140)"/> <wire from="(680,110)" to="(680,130)"/> <wire from="(680,130)" to="(680,160)"/> <wire from="(680,130)" to="(710,130)"/> <wire from="(680,160)" to="(710,160)"/> <wire from="(690,380)" to="(700,380)"/> <wire from="(700,180)" to="(710,180)"/> <wire from="(740,400)" to="(760,400)"/> <wire from="(750,130)" to="(780,130)"/> <wire from="(750,170)" to="(840,170)"/> <wire from="(760,210)" to="(760,400)"/> <wire from="(760,400)" to="(760,440)"/> <wire from="(780,130)" to="(780,310)"/> <wire from="(780,130)" to="(840,130)"/> <wire from="(780,340)" to="(780,360)"/> <wire from="(780,360)" to="(840,360)"/> <wire from="(800,210)" to="(800,280)"/> <wire from="(800,210)" to="(840,210)"/> <wire from="(830,320)" to="(830,620)"/> <wire from="(830,320)" to="(840,320)"/> </circuit> <circuit name="DPCM_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQEN"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="LOOPMode"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DOUT"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NOUT"/> </comp> <comp lib="0" loc="(120,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SOUT"/> </comp> <comp lib="0" loc="(120,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DFLOAD"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(1220,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RUNDMC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCRDY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMCINT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCM"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D4_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(1220,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D7_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(1220,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DMCAB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(180,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(200,640)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(570,120)" name="DPCM_IntControl"> <a name="label" val="int_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,350)" name="DPCM_EnableControl"> <a name="label" val="enable_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(960,120)" name="DPCM_DMAControl"> <a name="label" val="dma_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(960,350)" name="DPCM_SampleCounterControl"> <a name="label" val="scnt_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(960,570)" name="DPCM_SampleBufferControl"> <a name="label" val="sbuf_ctrl"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,530)" to="(1000,670)"/> <wire from="(1130,100)" to="(1130,530)"/> <wire from="(1130,530)" to="(1220,530)"/> <wire from="(1140,240)" to="(1140,350)"/> <wire from="(1140,240)" to="(1220,240)"/> <wire from="(1150,170)" to="(1220,170)"/> <wire from="(1150,270)" to="(1150,370)"/> <wire from="(1150,270)" to="(1220,270)"/> <wire from="(1150,90)" to="(1150,170)"/> <wire from="(1160,300)" to="(1160,570)"/> <wire from="(1160,300)" to="(1220,300)"/> <wire from="(1160,80)" to="(1160,160)"/> <wire from="(1160,80)" to="(1220,80)"/> <wire from="(1170,110)" to="(1170,140)"/> <wire from="(1170,110)" to="(1220,110)"/> <wire from="(1170,330)" to="(1170,590)"/> <wire from="(1170,330)" to="(1220,330)"/> <wire from="(1180,120)" to="(1180,140)"/> <wire from="(1180,140)" to="(1220,140)"/> <wire from="(1180,360)" to="(1180,390)"/> <wire from="(1180,360)" to="(1220,360)"/> <wire from="(1180,420)" to="(1180,610)"/> <wire from="(1180,420)" to="(1220,420)"/> <wire from="(1190,390)" to="(1190,630)"/> <wire from="(1190,390)" to="(1220,390)"/> <wire from="(120,140)" to="(180,140)"/> <wire from="(120,170)" to="(200,170)"/> <wire from="(120,200)" to="(210,200)"/> <wire from="(120,230)" to="(200,230)"/> <wire from="(120,290)" to="(300,290)"/> <wire from="(120,320)" to="(280,320)"/> <wire from="(120,380)" to="(240,380)"/> <wire from="(120,40)" to="(730,40)"/> <wire from="(120,410)" to="(240,410)"/> <wire from="(120,470)" to="(290,470)"/> <wire from="(120,500)" to="(270,500)"/> <wire from="(120,530)" to="(240,530)"/> <wire from="(120,560)" to="(150,560)"/> <wire from="(120,70)" to="(330,70)"/> <wire from="(150,540)" to="(150,560)"/> <wire from="(150,540)" to="(280,540)"/> <wire from="(180,640)" to="(200,640)"/> <wire from="(180,80)" to="(180,140)"/> <wire from="(180,80)" to="(710,80)"/> <wire from="(200,120)" to="(200,170)"/> <wire from="(200,120)" to="(320,120)"/> <wire from="(200,230)" to="(200,280)"/> <wire from="(200,280)" to="(610,280)"/> <wire from="(210,200)" to="(210,250)"/> <wire from="(210,250)" to="(630,250)"/> <wire from="(220,600)" to="(320,600)"/> <wire from="(240,180)" to="(240,380)"/> <wire from="(240,180)" to="(350,180)"/> <wire from="(240,410)" to="(240,430)"/> <wire from="(240,430)" to="(350,430)"/> <wire from="(240,490)" to="(240,530)"/> <wire from="(240,490)" to="(310,490)"/> <wire from="(270,500)" to="(270,710)"/> <wire from="(270,710)" to="(740,710)"/> <wire from="(280,160)" to="(280,320)"/> <wire from="(280,160)" to="(350,160)"/> <wire from="(280,320)" to="(280,410)"/> <wire from="(280,410)" to="(350,410)"/> <wire from="(280,540)" to="(280,670)"/> <wire from="(280,670)" to="(620,670)"/> <wire from="(290,470)" to="(290,690)"/> <wire from="(290,690)" to="(740,690)"/> <wire from="(300,140)" to="(300,290)"/> <wire from="(300,140)" to="(350,140)"/> <wire from="(300,290)" to="(300,390)"/> <wire from="(300,390)" to="(350,390)"/> <wire from="(310,470)" to="(310,490)"/> <wire from="(310,470)" to="(350,470)"/> <wire from="(320,120)" to="(320,320)"/> <wire from="(320,120)" to="(350,120)"/> <wire from="(320,320)" to="(320,370)"/> <wire from="(320,320)" to="(700,320)"/> <wire from="(320,370)" to="(350,370)"/> <wire from="(320,490)" to="(320,600)"/> <wire from="(320,490)" to="(350,490)"/> <wire from="(330,350)" to="(350,350)"/> <wire from="(330,450)" to="(330,570)"/> <wire from="(330,450)" to="(350,450)"/> <wire from="(330,570)" to="(600,570)"/> <wire from="(330,70)" to="(330,350)"/> <wire from="(330,70)" to="(720,70)"/> <wire from="(340,200)" to="(340,270)"/> <wire from="(340,200)" to="(350,200)"/> <wire from="(340,270)" to="(590,270)"/> <wire from="(570,120)" to="(630,120)"/> <wire from="(570,140)" to="(620,140)"/> <wire from="(570,350)" to="(640,350)"/> <wire from="(570,370)" to="(590,370)"/> <wire from="(570,390)" to="(630,390)"/> <wire from="(570,410)" to="(600,410)"/> <wire from="(590,270)" to="(590,370)"/> <wire from="(600,410)" to="(600,430)"/> <wire from="(600,430)" to="(740,430)"/> <wire from="(600,540)" to="(600,570)"/> <wire from="(600,540)" to="(680,540)"/> <wire from="(610,280)" to="(610,650)"/> <wire from="(610,650)" to="(740,650)"/> <wire from="(620,450)" to="(620,670)"/> <wire from="(620,450)" to="(740,450)"/> <wire from="(620,670)" to="(740,670)"/> <wire from="(620,90)" to="(1150,90)"/> <wire from="(620,90)" to="(620,140)"/> <wire from="(630,100)" to="(1130,100)"/> <wire from="(630,100)" to="(630,120)"/> <wire from="(630,180)" to="(630,250)"/> <wire from="(630,180)" to="(740,180)"/> <wire from="(630,390)" to="(630,410)"/> <wire from="(630,410)" to="(740,410)"/> <wire from="(640,350)" to="(640,500)"/> <wire from="(640,500)" to="(1220,500)"/> <wire from="(650,220)" to="(650,530)"/> <wire from="(650,220)" to="(740,220)"/> <wire from="(650,530)" to="(1000,530)"/> <wire from="(660,240)" to="(660,330)"/> <wire from="(660,240)" to="(740,240)"/> <wire from="(660,330)" to="(980,330)"/> <wire from="(670,300)" to="(670,730)"/> <wire from="(670,300)" to="(990,300)"/> <wire from="(670,730)" to="(740,730)"/> <wire from="(680,390)" to="(680,540)"/> <wire from="(680,390)" to="(740,390)"/> <wire from="(680,540)" to="(980,540)"/> <wire from="(700,200)" to="(700,320)"/> <wire from="(700,200)" to="(740,200)"/> <wire from="(700,320)" to="(700,630)"/> <wire from="(700,630)" to="(740,630)"/> <wire from="(710,160)" to="(710,610)"/> <wire from="(710,160)" to="(740,160)"/> <wire from="(710,610)" to="(740,610)"/> <wire from="(710,80)" to="(710,160)"/> <wire from="(720,140)" to="(720,370)"/> <wire from="(720,140)" to="(740,140)"/> <wire from="(720,370)" to="(720,590)"/> <wire from="(720,370)" to="(740,370)"/> <wire from="(720,590)" to="(740,590)"/> <wire from="(720,70)" to="(1000,70)"/> <wire from="(720,70)" to="(720,140)"/> <wire from="(730,120)" to="(730,350)"/> <wire from="(730,120)" to="(740,120)"/> <wire from="(730,350)" to="(730,570)"/> <wire from="(730,350)" to="(740,350)"/> <wire from="(730,40)" to="(1000,40)"/> <wire from="(730,40)" to="(730,120)"/> <wire from="(730,570)" to="(740,570)"/> <wire from="(960,120)" to="(1180,120)"/> <wire from="(960,140)" to="(1170,140)"/> <wire from="(960,160)" to="(990,160)"/> <wire from="(960,350)" to="(1140,350)"/> <wire from="(960,370)" to="(1150,370)"/> <wire from="(960,390)" to="(1180,390)"/> <wire from="(960,410)" to="(980,410)"/> <wire from="(960,570)" to="(1160,570)"/> <wire from="(960,590)" to="(1170,590)"/> <wire from="(960,610)" to="(1180,610)"/> <wire from="(960,630)" to="(1190,630)"/> <wire from="(960,650)" to="(980,650)"/> <wire from="(960,670)" to="(1000,670)"/> <wire from="(980,330)" to="(980,410)"/> <wire from="(980,540)" to="(980,650)"/> <wire from="(990,160)" to="(1160,160)"/> <wire from="(990,160)" to="(990,300)"/> </circuit> <circuit name="DPCM_SampleCounterReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleCounterReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4013"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(470,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Cnt_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(420,90)" name="RegisterBit_x8"> <a name="label" val="cnt_reg"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,110)" to="(200,110)"/> <wire from="(100,70)" to="(200,70)"/> <wire from="(160,160)" to="(180,160)"/> <wire from="(180,130)" to="(180,160)"/> <wire from="(180,130)" to="(200,130)"/> <wire from="(200,70)" to="(200,90)"/> <wire from="(420,90)" to="(470,90)"/> </circuit> <circuit name="DPCM_SampleCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Cnt_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,310)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(180,190)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,180)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="12"/> <a name="incoming" val="12"/> </comp> <comp lib="0" loc="(270,130)" name="Constant"/> <comp lib="0" loc="(530,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp loc="(490,50)" name="DownCounter12_NoOut"> <a name="label" val="scnt"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,110)" to="(130,190)"/> <wire from="(130,110)" to="(270,110)"/> <wire from="(140,70)" to="(140,160)"/> <wire from="(140,70)" to="(270,70)"/> <wire from="(150,310)" to="(160,310)"/> <wire from="(180,190)" to="(190,190)"/> <wire from="(180,230)" to="(200,230)"/> <wire from="(180,240)" to="(200,240)"/> <wire from="(180,250)" to="(200,250)"/> <wire from="(180,260)" to="(200,260)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(180,280)" to="(200,280)"/> <wire from="(180,290)" to="(200,290)"/> <wire from="(180,300)" to="(200,300)"/> <wire from="(190,190)" to="(190,200)"/> <wire from="(190,190)" to="(200,190)"/> <wire from="(190,200)" to="(190,210)"/> <wire from="(190,200)" to="(200,200)"/> <wire from="(190,210)" to="(190,220)"/> <wire from="(190,210)" to="(200,210)"/> <wire from="(190,220)" to="(200,220)"/> <wire from="(220,180)" to="(230,180)"/> <wire from="(230,150)" to="(230,180)"/> <wire from="(230,150)" to="(270,150)"/> <wire from="(240,80)" to="(240,90)"/> <wire from="(240,90)" to="(270,90)"/> <wire from="(270,40)" to="(270,50)"/> <wire from="(490,50)" to="(530,50)"/> <wire from="(90,160)" to="(140,160)"/> <wire from="(90,190)" to="(130,190)"/> <wire from="(90,40)" to="(270,40)"/> <wire from="(90,80)" to="(240,80)"/> </circuit> <circuit name="DPCM_SampleBuffer"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleBuffer"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(750,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_BOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BLOAD"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BSTEP"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCM"/> </comp> <comp lib="0" loc="(90,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(740,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(475,305)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="The shift register is loaded with an inverse value, but pushes out the bits in the direct value."/> </comp> <comp loc="(430,210)" name="RegisterBit_x8"/> <comp loc="(710,130)" name="ShiftReg8"/> <wire from="(150,310)" to="(180,310)"/> <wire from="(160,180)" to="(160,200)"/> <wire from="(160,180)" to="(470,180)"/> <wire from="(180,250)" to="(180,310)"/> <wire from="(180,250)" to="(210,250)"/> <wire from="(200,210)" to="(210,210)"/> <wire from="(200,50)" to="(200,210)"/> <wire from="(200,50)" to="(480,50)"/> <wire from="(430,230)" to="(470,230)"/> <wire from="(470,150)" to="(490,150)"/> <wire from="(470,180)" to="(470,190)"/> <wire from="(470,190)" to="(490,190)"/> <wire from="(470,210)" to="(470,230)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,90)" to="(470,150)"/> <wire from="(480,130)" to="(490,130)"/> <wire from="(480,50)" to="(480,130)"/> <wire from="(710,130)" to="(720,130)"/> <wire from="(740,130)" to="(750,130)"/> <wire from="(90,170)" to="(490,170)"/> <wire from="(90,200)" to="(160,200)"/> <wire from="(90,230)" to="(210,230)"/> <wire from="(90,50)" to="(200,50)"/> <wire from="(90,90)" to="(470,90)"/> </circuit> <circuit name="DPCM_SampleBitCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_SampleBitCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(220,250)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(220,420)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(230,140)" name="Constant"/> <comp lib="0" loc="(230,80)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(610,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_NOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="NSTEP"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp loc="(470,210)" name="CounterBit"/> <comp loc="(470,380)" name="CounterBit"/> <comp loc="(470,40)" name="CounterBit"/> <comp loc="(540,360)" name="DLatch"> <a name="label" val="nout_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,10)" to="(150,40)"/> <wire from="(150,10)" to="(520,10)"/> <wire from="(150,40)" to="(240,40)"/> <wire from="(190,100)" to="(190,230)"/> <wire from="(190,100)" to="(250,100)"/> <wire from="(190,230)" to="(190,270)"/> <wire from="(190,230)" to="(250,230)"/> <wire from="(190,270)" to="(190,400)"/> <wire from="(190,270)" to="(250,270)"/> <wire from="(190,400)" to="(190,440)"/> <wire from="(190,400)" to="(250,400)"/> <wire from="(190,440)" to="(250,440)"/> <wire from="(190,60)" to="(190,100)"/> <wire from="(190,60)" to="(250,60)"/> <wire from="(200,120)" to="(200,140)"/> <wire from="(200,120)" to="(250,120)"/> <wire from="(200,140)" to="(200,290)"/> <wire from="(200,290)" to="(200,460)"/> <wire from="(200,290)" to="(250,290)"/> <wire from="(200,460)" to="(250,460)"/> <wire from="(220,250)" to="(250,250)"/> <wire from="(220,420)" to="(250,420)"/> <wire from="(230,140)" to="(250,140)"/> <wire from="(230,190)" to="(230,310)"/> <wire from="(230,190)" to="(490,190)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(230,360)" to="(230,480)"/> <wire from="(230,360)" to="(490,360)"/> <wire from="(230,480)" to="(250,480)"/> <wire from="(230,80)" to="(250,80)"/> <wire from="(240,210)" to="(240,380)"/> <wire from="(240,210)" to="(250,210)"/> <wire from="(240,380)" to="(250,380)"/> <wire from="(240,40)" to="(240,210)"/> <wire from="(240,40)" to="(250,40)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,380)" to="(540,380)"/> <wire from="(470,40)" to="(490,40)"/> <wire from="(490,210)" to="(490,360)"/> <wire from="(490,40)" to="(490,190)"/> <wire from="(520,10)" to="(520,360)"/> <wire from="(520,360)" to="(540,360)"/> <wire from="(580,380)" to="(610,380)"/> <wire from="(90,100)" to="(190,100)"/> <wire from="(90,140)" to="(200,140)"/> <wire from="(90,40)" to="(150,40)"/> </circuit> <circuit name="DPCM_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Fx"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(580,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="FR_Out"/> <a name="output" val="true"/> <a name="width" val="9"/> </comp> <comp loc="(350,100)" name="PLA1"> <a name="label" val="pla_4_to_16"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,100)" name="PLA2"> <a name="label" val="pla_16_to_9"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,100)" to="(130,100)"/> <wire from="(570,100)" to="(580,100)"/> </circuit> <circuit name="DPCM_FreqLFSR"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_FreqLFSR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="FR_In"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(630,250)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(810,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DFLOAD"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(140,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,180)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,240)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,400)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,220)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(380,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(770,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(860,200)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(860,320)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(180,20)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ACLK2"/> </comp> <comp loc="(620,160)" name="LFSR9"> <a name="label" val="lfsr_9"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,110)" to="(160,110)"/> <wire from="(100,30)" to="(120,30)"/> <wire from="(100,70)" to="(400,70)"/> <wire from="(130,300)" to="(340,300)"/> <wire from="(140,30)" to="(180,30)"/> <wire from="(160,110)" to="(160,220)"/> <wire from="(160,220)" to="(160,390)"/> <wire from="(160,220)" to="(280,220)"/> <wire from="(160,390)" to="(240,390)"/> <wire from="(180,30)" to="(180,370)"/> <wire from="(180,370)" to="(250,370)"/> <wire from="(190,100)" to="(190,190)"/> <wire from="(190,100)" to="(680,100)"/> <wire from="(190,190)" to="(190,240)"/> <wire from="(190,190)" to="(220,190)"/> <wire from="(190,240)" to="(220,240)"/> <wire from="(190,250)" to="(190,450)"/> <wire from="(190,250)" to="(220,250)"/> <wire from="(190,450)" to="(880,450)"/> <wire from="(200,120)" to="(200,170)"/> <wire from="(200,120)" to="(660,120)"/> <wire from="(200,170)" to="(200,230)"/> <wire from="(200,170)" to="(220,170)"/> <wire from="(200,230)" to="(220,230)"/> <wire from="(200,410)" to="(200,440)"/> <wire from="(200,410)" to="(210,410)"/> <wire from="(200,440)" to="(870,440)"/> <wire from="(230,410)" to="(240,410)"/> <wire from="(250,180)" to="(270,180)"/> <wire from="(260,240)" to="(270,240)"/> <wire from="(270,180)" to="(270,210)"/> <wire from="(270,210)" to="(280,210)"/> <wire from="(270,230)" to="(270,240)"/> <wire from="(270,230)" to="(280,230)"/> <wire from="(270,370)" to="(280,370)"/> <wire from="(280,330)" to="(280,370)"/> <wire from="(280,330)" to="(330,330)"/> <wire from="(280,370)" to="(340,370)"/> <wire from="(280,400)" to="(290,400)"/> <wire from="(290,350)" to="(290,390)"/> <wire from="(290,350)" to="(300,350)"/> <wire from="(290,390)" to="(290,400)"/> <wire from="(290,390)" to="(340,390)"/> <wire from="(320,220)" to="(400,220)"/> <wire from="(320,350)" to="(330,350)"/> <wire from="(340,240)" to="(340,300)"/> <wire from="(340,240)" to="(400,240)"/> <wire from="(370,340)" to="(380,340)"/> <wire from="(380,180)" to="(380,340)"/> <wire from="(380,180)" to="(400,180)"/> <wire from="(380,380)" to="(390,380)"/> <wire from="(380,80)" to="(380,180)"/> <wire from="(380,80)" to="(810,80)"/> <wire from="(390,200)" to="(390,380)"/> <wire from="(390,200)" to="(400,200)"/> <wire from="(400,70)" to="(400,160)"/> <wire from="(620,160)" to="(620,250)"/> <wire from="(620,250)" to="(630,250)"/> <wire from="(650,160)" to="(660,160)"/> <wire from="(650,170)" to="(730,170)"/> <wire from="(650,180)" to="(720,180)"/> <wire from="(650,190)" to="(710,190)"/> <wire from="(650,200)" to="(680,200)"/> <wire from="(650,210)" to="(690,210)"/> <wire from="(650,220)" to="(680,220)"/> <wire from="(650,230)" to="(670,230)"/> <wire from="(650,240)" to="(660,240)"/> <wire from="(660,120)" to="(660,160)"/> <wire from="(660,160)" to="(740,160)"/> <wire from="(660,240)" to="(660,360)"/> <wire from="(660,240)" to="(780,240)"/> <wire from="(660,360)" to="(780,360)"/> <wire from="(670,230)" to="(670,350)"/> <wire from="(670,230)" to="(780,230)"/> <wire from="(670,350)" to="(780,350)"/> <wire from="(680,100)" to="(680,200)"/> <wire from="(680,200)" to="(700,200)"/> <wire from="(680,220)" to="(680,340)"/> <wire from="(680,220)" to="(780,220)"/> <wire from="(680,340)" to="(780,340)"/> <wire from="(690,210)" to="(690,330)"/> <wire from="(690,210)" to="(780,210)"/> <wire from="(690,330)" to="(780,330)"/> <wire from="(700,200)" to="(700,320)"/> <wire from="(700,200)" to="(780,200)"/> <wire from="(700,320)" to="(780,320)"/> <wire from="(710,190)" to="(710,310)"/> <wire from="(710,190)" to="(780,190)"/> <wire from="(710,310)" to="(780,310)"/> <wire from="(720,180)" to="(720,300)"/> <wire from="(720,180)" to="(780,180)"/> <wire from="(720,300)" to="(780,300)"/> <wire from="(730,170)" to="(730,290)"/> <wire from="(730,170)" to="(780,170)"/> <wire from="(730,290)" to="(780,290)"/> <wire from="(740,160)" to="(740,280)"/> <wire from="(740,160)" to="(780,160)"/> <wire from="(740,280)" to="(750,280)"/> <wire from="(770,280)" to="(780,280)"/> <wire from="(860,200)" to="(880,200)"/> <wire from="(860,320)" to="(870,320)"/> <wire from="(870,320)" to="(870,440)"/> <wire from="(880,200)" to="(880,450)"/> </circuit> <circuit name="DPCM_AddressReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_AddressReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4012"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(470,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Addr_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(430,90)" name="RegisterBit_x8"> <a name="label" val="addr_reg"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,110)" to="(210,110)"/> <wire from="(100,70)" to="(190,70)"/> <wire from="(140,170)" to="(190,170)"/> <wire from="(190,130)" to="(190,170)"/> <wire from="(190,130)" to="(210,130)"/> <wire from="(190,70)" to="(190,90)"/> <wire from="(190,90)" to="(210,90)"/> <wire from="(430,90)" to="(470,90)"/> </circuit> <circuit name="DPCM_AddressCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_AddressCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DSLOAD"/> </comp> <comp lib="0" loc="(100,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DSSTEP"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Addr_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,420)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(200,270)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(240,260)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(240,480)" name="Constant"/> <comp lib="0" loc="(270,150)" name="Constant"/> <comp lib="0" loc="(270,410)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp lib="0" loc="(650,160)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(650,230)" name="Splitter"> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp lib="0" loc="(690,230)" name="Constant"/> <comp lib="0" loc="(720,70)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(740,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC_Addr"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp loc="(550,260)" name="Counter7"> <a name="label" val="addr_hi"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,70)" name="Counter8"> <a name="label" val="addr_lo"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,110)" to="(300,110)"/> <wire from="(100,180)" to="(310,180)"/> <wire from="(100,220)" to="(290,220)"/> <wire from="(100,70)" to="(320,70)"/> <wire from="(150,420)" to="(160,420)"/> <wire from="(180,340)" to="(190,340)"/> <wire from="(180,350)" to="(200,350)"/> <wire from="(180,360)" to="(250,360)"/> <wire from="(180,370)" to="(240,370)"/> <wire from="(180,380)" to="(230,380)"/> <wire from="(180,390)" to="(220,390)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(190,330)" to="(190,340)"/> <wire from="(190,330)" to="(220,330)"/> <wire from="(200,270)" to="(210,270)"/> <wire from="(200,340)" to="(200,350)"/> <wire from="(200,340)" to="(220,340)"/> <wire from="(200,410)" to="(200,470)"/> <wire from="(200,470)" to="(250,470)"/> <wire from="(210,270)" to="(210,280)"/> <wire from="(210,270)" to="(220,270)"/> <wire from="(210,280)" to="(210,290)"/> <wire from="(210,280)" to="(220,280)"/> <wire from="(210,290)" to="(210,300)"/> <wire from="(210,290)" to="(220,290)"/> <wire from="(210,300)" to="(210,310)"/> <wire from="(210,300)" to="(220,300)"/> <wire from="(210,310)" to="(210,320)"/> <wire from="(210,310)" to="(220,310)"/> <wire from="(210,320)" to="(220,320)"/> <wire from="(210,400)" to="(210,460)"/> <wire from="(210,460)" to="(250,460)"/> <wire from="(220,390)" to="(220,450)"/> <wire from="(220,450)" to="(250,450)"/> <wire from="(230,380)" to="(230,440)"/> <wire from="(230,440)" to="(250,440)"/> <wire from="(240,260)" to="(250,260)"/> <wire from="(240,370)" to="(240,430)"/> <wire from="(240,430)" to="(250,430)"/> <wire from="(240,480)" to="(250,480)"/> <wire from="(250,170)" to="(250,260)"/> <wire from="(250,170)" to="(330,170)"/> <wire from="(250,360)" to="(250,420)"/> <wire from="(270,150)" to="(330,150)"/> <wire from="(270,410)" to="(290,410)"/> <wire from="(280,230)" to="(280,340)"/> <wire from="(280,230)" to="(560,230)"/> <wire from="(280,340)" to="(330,340)"/> <wire from="(290,130)" to="(290,220)"/> <wire from="(290,130)" to="(330,130)"/> <wire from="(290,220)" to="(290,320)"/> <wire from="(290,320)" to="(330,320)"/> <wire from="(290,360)" to="(290,410)"/> <wire from="(290,360)" to="(330,360)"/> <wire from="(300,110)" to="(300,300)"/> <wire from="(300,110)" to="(330,110)"/> <wire from="(300,300)" to="(330,300)"/> <wire from="(310,180)" to="(310,280)"/> <wire from="(310,280)" to="(330,280)"/> <wire from="(310,90)" to="(310,180)"/> <wire from="(310,90)" to="(330,90)"/> <wire from="(320,260)" to="(330,260)"/> <wire from="(320,70)" to="(320,260)"/> <wire from="(320,70)" to="(330,70)"/> <wire from="(550,110)" to="(560,110)"/> <wire from="(550,260)" to="(590,260)"/> <wire from="(550,70)" to="(610,70)"/> <wire from="(560,110)" to="(560,230)"/> <wire from="(590,230)" to="(590,260)"/> <wire from="(590,230)" to="(650,230)"/> <wire from="(610,160)" to="(650,160)"/> <wire from="(610,70)" to="(610,160)"/> <wire from="(670,100)" to="(700,100)"/> <wire from="(670,110)" to="(700,110)"/> <wire from="(670,120)" to="(700,120)"/> <wire from="(670,130)" to="(700,130)"/> <wire from="(670,140)" to="(700,140)"/> <wire from="(670,150)" to="(700,150)"/> <wire from="(670,160)" to="(700,160)"/> <wire from="(670,170)" to="(700,170)"/> <wire from="(670,180)" to="(700,180)"/> <wire from="(670,190)" to="(700,190)"/> <wire from="(670,200)" to="(700,200)"/> <wire from="(670,210)" to="(700,210)"/> <wire from="(670,220)" to="(700,220)"/> <wire from="(670,80)" to="(700,80)"/> <wire from="(670,90)" to="(700,90)"/> <wire from="(690,230)" to="(700,230)"/> <wire from="(720,70)" to="(740,70)"/> </circuit> <circuit name="DPCM_Output"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DPCM_Output"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="W4011"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CountDown"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DSTEP"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(180,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,290)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(240,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(310,170)" name="Constant"/> <comp lib="0" loc="(650,170)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(710,90)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp lib="0" loc="(720,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(720,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DMC_Out"/> <a name="output" val="true"/> <a name="width" val="7"/> </comp> <comp lib="8" loc="(195,170)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="n_BOUT"/> </comp> <comp loc="(570,290)" name="RegisterBit"/> <comp loc="(570,90)" name="RevCounter6"/> <wire from="(120,120)" to="(320,120)"/> <wire from="(120,180)" to="(330,180)"/> <wire from="(120,220)" to="(160,220)"/> <wire from="(120,40)" to="(340,40)"/> <wire from="(120,80)" to="(330,80)"/> <wire from="(160,150)" to="(160,220)"/> <wire from="(160,150)" to="(350,150)"/> <wire from="(180,290)" to="(190,290)"/> <wire from="(210,200)" to="(210,210)"/> <wire from="(210,200)" to="(310,200)"/> <wire from="(210,220)" to="(220,220)"/> <wire from="(210,230)" to="(220,230)"/> <wire from="(210,240)" to="(220,240)"/> <wire from="(210,250)" to="(220,250)"/> <wire from="(210,260)" to="(220,260)"/> <wire from="(210,270)" to="(220,270)"/> <wire from="(240,210)" to="(350,210)"/> <wire from="(310,170)" to="(350,170)"/> <wire from="(310,200)" to="(310,330)"/> <wire from="(310,330)" to="(350,330)"/> <wire from="(320,110)" to="(320,120)"/> <wire from="(320,110)" to="(350,110)"/> <wire from="(320,120)" to="(320,310)"/> <wire from="(320,310)" to="(350,310)"/> <wire from="(330,130)" to="(350,130)"/> <wire from="(330,180)" to="(330,190)"/> <wire from="(330,190)" to="(350,190)"/> <wire from="(330,80)" to="(330,130)"/> <wire from="(340,290)" to="(350,290)"/> <wire from="(340,40)" to="(340,90)"/> <wire from="(340,90)" to="(340,290)"/> <wire from="(340,90)" to="(350,90)"/> <wire from="(570,130)" to="(590,130)"/> <wire from="(570,290)" to="(620,290)"/> <wire from="(570,90)" to="(600,90)"/> <wire from="(590,130)" to="(590,190)"/> <wire from="(590,190)" to="(720,190)"/> <wire from="(600,170)" to="(650,170)"/> <wire from="(600,90)" to="(600,170)"/> <wire from="(620,100)" to="(620,290)"/> <wire from="(620,100)" to="(690,100)"/> <wire from="(670,110)" to="(690,110)"/> <wire from="(670,120)" to="(690,120)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(670,140)" to="(690,140)"/> <wire from="(670,150)" to="(690,150)"/> <wire from="(670,160)" to="(690,160)"/> <wire from="(710,90)" to="(720,90)"/> </circuit> <circuit name="Counter8"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Counter8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1070,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1090,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(150,470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,960)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(700,960)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(500,140)" name="CounterBit"/> <comp loc="(500,310)" name="CounterBit"/> <comp loc="(500,480)" name="CounterBit"/> <comp loc="(500,650)" name="CounterBit"/> <comp loc="(880,140)" name="CounterBit"/> <comp loc="(880,310)" name="CounterBit"/> <comp loc="(880,480)" name="CounterBit"/> <comp loc="(880,650)" name="CounterBit"/> <wire from="(1010,500)" to="(1010,650)"/> <wire from="(1010,500)" to="(1090,500)"/> <wire from="(1040,360)" to="(1040,980)"/> <wire from="(1040,360)" to="(1070,360)"/> <wire from="(1060,410)" to="(1060,960)"/> <wire from="(1060,410)" to="(1070,410)"/> <wire from="(120,120)" to="(150,120)"/> <wire from="(120,160)" to="(170,160)"/> <wire from="(120,200)" to="(150,200)"/> <wire from="(120,40)" to="(270,40)"/> <wire from="(120,80)" to="(260,80)"/> <wire from="(140,470)" to="(150,470)"/> <wire from="(150,100)" to="(150,120)"/> <wire from="(150,100)" to="(250,100)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(150,240)" to="(280,240)"/> <wire from="(170,110)" to="(170,160)"/> <wire from="(170,110)" to="(240,110)"/> <wire from="(170,390)" to="(180,390)"/> <wire from="(170,400)" to="(190,400)"/> <wire from="(170,410)" to="(200,410)"/> <wire from="(170,420)" to="(190,420)"/> <wire from="(170,430)" to="(210,430)"/> <wire from="(170,440)" to="(280,440)"/> <wire from="(170,450)" to="(210,450)"/> <wire from="(170,460)" to="(170,790)"/> <wire from="(170,790)" to="(510,790)"/> <wire from="(180,180)" to="(180,390)"/> <wire from="(180,180)" to="(280,180)"/> <wire from="(190,350)" to="(190,400)"/> <wire from="(190,350)" to="(280,350)"/> <wire from="(190,420)" to="(190,690)"/> <wire from="(190,690)" to="(280,690)"/> <wire from="(200,410)" to="(200,520)"/> <wire from="(200,520)" to="(280,520)"/> <wire from="(210,280)" to="(210,430)"/> <wire from="(210,280)" to="(570,280)"/> <wire from="(210,450)" to="(210,620)"/> <wire from="(210,620)" to="(580,620)"/> <wire from="(230,290)" to="(230,410)"/> <wire from="(230,290)" to="(510,290)"/> <wire from="(230,410)" to="(280,410)"/> <wire from="(230,460)" to="(230,580)"/> <wire from="(230,460)" to="(510,460)"/> <wire from="(230,580)" to="(280,580)"/> <wire from="(230,630)" to="(230,750)"/> <wire from="(230,630)" to="(510,630)"/> <wire from="(230,750)" to="(280,750)"/> <wire from="(240,110)" to="(240,220)"/> <wire from="(240,110)" to="(620,110)"/> <wire from="(240,220)" to="(240,390)"/> <wire from="(240,220)" to="(280,220)"/> <wire from="(240,390)" to="(240,560)"/> <wire from="(240,390)" to="(280,390)"/> <wire from="(240,560)" to="(240,730)"/> <wire from="(240,560)" to="(280,560)"/> <wire from="(240,730)" to="(280,730)"/> <wire from="(250,100)" to="(250,200)"/> <wire from="(250,100)" to="(630,100)"/> <wire from="(250,200)" to="(250,370)"/> <wire from="(250,200)" to="(280,200)"/> <wire from="(250,370)" to="(250,540)"/> <wire from="(250,370)" to="(280,370)"/> <wire from="(250,540)" to="(250,710)"/> <wire from="(250,540)" to="(280,540)"/> <wire from="(250,710)" to="(280,710)"/> <wire from="(260,160)" to="(260,330)"/> <wire from="(260,160)" to="(280,160)"/> <wire from="(260,330)" to="(260,500)"/> <wire from="(260,330)" to="(280,330)"/> <wire from="(260,500)" to="(260,670)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(260,670)" to="(280,670)"/> <wire from="(260,80)" to="(260,160)"/> <wire from="(260,80)" to="(640,80)"/> <wire from="(270,140)" to="(270,310)"/> <wire from="(270,140)" to="(280,140)"/> <wire from="(270,310)" to="(270,480)"/> <wire from="(270,310)" to="(280,310)"/> <wire from="(270,40)" to="(270,140)"/> <wire from="(270,40)" to="(650,40)"/> <wire from="(270,480)" to="(270,650)"/> <wire from="(270,480)" to="(280,480)"/> <wire from="(270,650)" to="(280,650)"/> <wire from="(280,440)" to="(280,450)"/> <wire from="(280,450)" to="(570,450)"/> <wire from="(500,140)" to="(510,140)"/> <wire from="(500,160)" to="(530,160)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(500,310)" to="(510,310)"/> <wire from="(500,330)" to="(550,330)"/> <wire from="(500,350)" to="(540,350)"/> <wire from="(500,480)" to="(510,480)"/> <wire from="(500,500)" to="(570,500)"/> <wire from="(500,520)" to="(560,520)"/> <wire from="(500,650)" to="(610,650)"/> <wire from="(500,670)" to="(590,670)"/> <wire from="(500,690)" to="(580,690)"/> <wire from="(500,820)" to="(500,940)"/> <wire from="(500,820)" to="(520,820)"/> <wire from="(510,140)" to="(510,290)"/> <wire from="(510,310)" to="(510,460)"/> <wire from="(510,480)" to="(510,630)"/> <wire from="(510,710)" to="(510,790)"/> <wire from="(510,710)" to="(610,710)"/> <wire from="(510,840)" to="(510,940)"/> <wire from="(510,840)" to="(540,840)"/> <wire from="(520,180)" to="(520,820)"/> <wire from="(520,860)" to="(520,940)"/> <wire from="(520,860)" to="(560,860)"/> <wire from="(530,160)" to="(530,830)"/> <wire from="(530,830)" to="(620,830)"/> <wire from="(530,870)" to="(530,940)"/> <wire from="(530,870)" to="(580,870)"/> <wire from="(540,350)" to="(540,840)"/> <wire from="(540,880)" to="(540,940)"/> <wire from="(540,880)" to="(900,880)"/> <wire from="(550,330)" to="(550,820)"/> <wire from="(550,820)" to="(630,820)"/> <wire from="(550,890)" to="(550,940)"/> <wire from="(550,890)" to="(920,890)"/> <wire from="(560,520)" to="(560,860)"/> <wire from="(560,900)" to="(560,940)"/> <wire from="(560,900)" to="(940,900)"/> <wire from="(570,180)" to="(570,280)"/> <wire from="(570,180)" to="(660,180)"/> <wire from="(570,350)" to="(570,450)"/> <wire from="(570,350)" to="(660,350)"/> <wire from="(570,500)" to="(570,810)"/> <wire from="(570,810)" to="(640,810)"/> <wire from="(570,910)" to="(570,940)"/> <wire from="(570,910)" to="(960,910)"/> <wire from="(580,520)" to="(580,620)"/> <wire from="(580,520)" to="(660,520)"/> <wire from="(580,690)" to="(580,870)"/> <wire from="(580,960)" to="(580,980)"/> <wire from="(580,980)" to="(1040,980)"/> <wire from="(590,670)" to="(590,800)"/> <wire from="(590,800)" to="(650,800)"/> <wire from="(600,290)" to="(600,410)"/> <wire from="(600,290)" to="(890,290)"/> <wire from="(600,410)" to="(660,410)"/> <wire from="(600,460)" to="(600,580)"/> <wire from="(600,460)" to="(890,460)"/> <wire from="(600,580)" to="(660,580)"/> <wire from="(600,630)" to="(600,750)"/> <wire from="(600,630)" to="(890,630)"/> <wire from="(600,750)" to="(660,750)"/> <wire from="(610,240)" to="(610,650)"/> <wire from="(610,240)" to="(660,240)"/> <wire from="(610,690)" to="(610,710)"/> <wire from="(610,690)" to="(660,690)"/> <wire from="(620,110)" to="(620,220)"/> <wire from="(620,220)" to="(620,390)"/> <wire from="(620,220)" to="(660,220)"/> <wire from="(620,390)" to="(620,560)"/> <wire from="(620,390)" to="(660,390)"/> <wire from="(620,560)" to="(620,730)"/> <wire from="(620,560)" to="(660,560)"/> <wire from="(620,730)" to="(660,730)"/> <wire from="(620,830)" to="(620,940)"/> <wire from="(630,100)" to="(630,200)"/> <wire from="(630,200)" to="(630,370)"/> <wire from="(630,200)" to="(660,200)"/> <wire from="(630,370)" to="(630,540)"/> <wire from="(630,370)" to="(660,370)"/> <wire from="(630,540)" to="(630,710)"/> <wire from="(630,540)" to="(660,540)"/> <wire from="(630,710)" to="(660,710)"/> <wire from="(630,820)" to="(630,940)"/> <wire from="(640,160)" to="(640,330)"/> <wire from="(640,160)" to="(660,160)"/> <wire from="(640,330)" to="(640,500)"/> <wire from="(640,330)" to="(660,330)"/> <wire from="(640,500)" to="(640,670)"/> <wire from="(640,500)" to="(660,500)"/> <wire from="(640,670)" to="(660,670)"/> <wire from="(640,80)" to="(640,160)"/> <wire from="(640,810)" to="(640,940)"/> <wire from="(650,140)" to="(650,310)"/> <wire from="(650,140)" to="(660,140)"/> <wire from="(650,310)" to="(650,480)"/> <wire from="(650,310)" to="(660,310)"/> <wire from="(650,40)" to="(650,140)"/> <wire from="(650,480)" to="(650,650)"/> <wire from="(650,480)" to="(660,480)"/> <wire from="(650,650)" to="(660,650)"/> <wire from="(650,800)" to="(650,940)"/> <wire from="(660,810)" to="(660,940)"/> <wire from="(660,810)" to="(910,810)"/> <wire from="(670,820)" to="(670,940)"/> <wire from="(670,820)" to="(930,820)"/> <wire from="(680,830)" to="(680,940)"/> <wire from="(680,830)" to="(950,830)"/> <wire from="(690,840)" to="(690,940)"/> <wire from="(690,840)" to="(970,840)"/> <wire from="(700,960)" to="(1060,960)"/> <wire from="(880,140)" to="(890,140)"/> <wire from="(880,160)" to="(910,160)"/> <wire from="(880,180)" to="(900,180)"/> <wire from="(880,310)" to="(890,310)"/> <wire from="(880,330)" to="(930,330)"/> <wire from="(880,350)" to="(920,350)"/> <wire from="(880,480)" to="(890,480)"/> <wire from="(880,500)" to="(950,500)"/> <wire from="(880,520)" to="(940,520)"/> <wire from="(880,650)" to="(1010,650)"/> <wire from="(880,670)" to="(970,670)"/> <wire from="(880,690)" to="(960,690)"/> <wire from="(890,140)" to="(890,290)"/> <wire from="(890,310)" to="(890,460)"/> <wire from="(890,480)" to="(890,630)"/> <wire from="(900,180)" to="(900,880)"/> <wire from="(910,160)" to="(910,810)"/> <wire from="(920,350)" to="(920,890)"/> <wire from="(930,330)" to="(930,820)"/> <wire from="(940,520)" to="(940,900)"/> <wire from="(950,500)" to="(950,830)"/> <wire from="(960,690)" to="(960,910)"/> <wire from="(970,670)" to="(970,840)"/> </circuit> <circuit name="Counter7"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Counter7"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> <a name="width" val="7"/> </comp> <comp lib="0" loc="(1070,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> <a name="width" val="7"/> </comp> <comp lib="0" loc="(1090,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="7"/> </comp> <comp lib="0" loc="(150,460)" name="Splitter"> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp lib="0" loc="(570,960)" name="Splitter"> <a name="bit0" val="6"/> <a name="bit1" val="5"/> <a name="bit2" val="4"/> <a name="bit4" val="2"/> <a name="bit5" val="1"/> <a name="bit6" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp lib="0" loc="(690,960)" name="Splitter"> <a name="bit0" val="6"/> <a name="bit1" val="5"/> <a name="bit2" val="4"/> <a name="bit4" val="2"/> <a name="bit5" val="1"/> <a name="bit6" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="7"/> <a name="incoming" val="7"/> </comp> <comp loc="(500,140)" name="CounterBit"/> <comp loc="(500,310)" name="CounterBit"/> <comp loc="(500,480)" name="CounterBit"/> <comp loc="(500,650)" name="CounterBit"/> <comp loc="(880,140)" name="CounterBit"/> <comp loc="(880,310)" name="CounterBit"/> <comp loc="(880,480)" name="CounterBit"/> <wire from="(1040,360)" to="(1040,980)"/> <wire from="(1040,360)" to="(1070,360)"/> <wire from="(1060,410)" to="(1060,960)"/> <wire from="(1060,410)" to="(1070,410)"/> <wire from="(120,120)" to="(150,120)"/> <wire from="(120,160)" to="(170,160)"/> <wire from="(120,200)" to="(150,200)"/> <wire from="(120,40)" to="(270,40)"/> <wire from="(120,80)" to="(260,80)"/> <wire from="(140,470)" to="(150,470)"/> <wire from="(150,100)" to="(150,120)"/> <wire from="(150,100)" to="(250,100)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(150,240)" to="(280,240)"/> <wire from="(150,460)" to="(150,470)"/> <wire from="(170,110)" to="(170,160)"/> <wire from="(170,110)" to="(240,110)"/> <wire from="(170,390)" to="(180,390)"/> <wire from="(170,400)" to="(190,400)"/> <wire from="(170,410)" to="(200,410)"/> <wire from="(170,420)" to="(190,420)"/> <wire from="(170,430)" to="(210,430)"/> <wire from="(170,440)" to="(280,440)"/> <wire from="(170,450)" to="(210,450)"/> <wire from="(180,180)" to="(180,390)"/> <wire from="(180,180)" to="(280,180)"/> <wire from="(190,350)" to="(190,400)"/> <wire from="(190,350)" to="(280,350)"/> <wire from="(190,420)" to="(190,690)"/> <wire from="(190,690)" to="(280,690)"/> <wire from="(200,410)" to="(200,520)"/> <wire from="(200,520)" to="(280,520)"/> <wire from="(210,280)" to="(210,430)"/> <wire from="(210,280)" to="(570,280)"/> <wire from="(210,450)" to="(210,620)"/> <wire from="(210,620)" to="(580,620)"/> <wire from="(230,290)" to="(230,410)"/> <wire from="(230,290)" to="(510,290)"/> <wire from="(230,410)" to="(280,410)"/> <wire from="(230,460)" to="(230,580)"/> <wire from="(230,460)" to="(510,460)"/> <wire from="(230,580)" to="(280,580)"/> <wire from="(230,630)" to="(230,750)"/> <wire from="(230,630)" to="(510,630)"/> <wire from="(230,750)" to="(280,750)"/> <wire from="(240,110)" to="(240,220)"/> <wire from="(240,110)" to="(620,110)"/> <wire from="(240,220)" to="(240,390)"/> <wire from="(240,220)" to="(280,220)"/> <wire from="(240,390)" to="(240,560)"/> <wire from="(240,390)" to="(280,390)"/> <wire from="(240,560)" to="(240,730)"/> <wire from="(240,560)" to="(280,560)"/> <wire from="(240,730)" to="(280,730)"/> <wire from="(250,100)" to="(250,200)"/> <wire from="(250,100)" to="(630,100)"/> <wire from="(250,200)" to="(250,370)"/> <wire from="(250,200)" to="(280,200)"/> <wire from="(250,370)" to="(250,540)"/> <wire from="(250,370)" to="(280,370)"/> <wire from="(250,540)" to="(250,710)"/> <wire from="(250,540)" to="(280,540)"/> <wire from="(250,710)" to="(280,710)"/> <wire from="(260,160)" to="(260,330)"/> <wire from="(260,160)" to="(280,160)"/> <wire from="(260,330)" to="(260,500)"/> <wire from="(260,330)" to="(280,330)"/> <wire from="(260,500)" to="(260,670)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(260,670)" to="(280,670)"/> <wire from="(260,80)" to="(260,160)"/> <wire from="(260,80)" to="(640,80)"/> <wire from="(270,140)" to="(270,310)"/> <wire from="(270,140)" to="(280,140)"/> <wire from="(270,310)" to="(270,480)"/> <wire from="(270,310)" to="(280,310)"/> <wire from="(270,40)" to="(270,140)"/> <wire from="(270,40)" to="(650,40)"/> <wire from="(270,480)" to="(270,650)"/> <wire from="(270,480)" to="(280,480)"/> <wire from="(270,650)" to="(280,650)"/> <wire from="(280,440)" to="(280,450)"/> <wire from="(280,450)" to="(570,450)"/> <wire from="(500,140)" to="(510,140)"/> <wire from="(500,160)" to="(530,160)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(500,310)" to="(510,310)"/> <wire from="(500,330)" to="(550,330)"/> <wire from="(500,350)" to="(540,350)"/> <wire from="(500,480)" to="(510,480)"/> <wire from="(500,500)" to="(570,500)"/> <wire from="(500,520)" to="(560,520)"/> <wire from="(500,650)" to="(610,650)"/> <wire from="(500,670)" to="(590,670)"/> <wire from="(500,690)" to="(580,690)"/> <wire from="(500,820)" to="(500,940)"/> <wire from="(500,820)" to="(520,820)"/> <wire from="(510,140)" to="(510,290)"/> <wire from="(510,310)" to="(510,460)"/> <wire from="(510,480)" to="(510,630)"/> <wire from="(510,840)" to="(510,940)"/> <wire from="(510,840)" to="(540,840)"/> <wire from="(520,180)" to="(520,820)"/> <wire from="(520,860)" to="(520,940)"/> <wire from="(520,860)" to="(560,860)"/> <wire from="(530,160)" to="(530,830)"/> <wire from="(530,830)" to="(620,830)"/> <wire from="(530,870)" to="(530,940)"/> <wire from="(530,870)" to="(580,870)"/> <wire from="(540,350)" to="(540,840)"/> <wire from="(540,880)" to="(540,940)"/> <wire from="(540,880)" to="(900,880)"/> <wire from="(550,330)" to="(550,820)"/> <wire from="(550,820)" to="(630,820)"/> <wire from="(550,890)" to="(550,940)"/> <wire from="(550,890)" to="(920,890)"/> <wire from="(560,520)" to="(560,860)"/> <wire from="(560,900)" to="(560,940)"/> <wire from="(560,900)" to="(940,900)"/> <wire from="(570,180)" to="(570,280)"/> <wire from="(570,180)" to="(660,180)"/> <wire from="(570,350)" to="(570,450)"/> <wire from="(570,350)" to="(660,350)"/> <wire from="(570,500)" to="(570,810)"/> <wire from="(570,810)" to="(640,810)"/> <wire from="(570,960)" to="(580,960)"/> <wire from="(580,520)" to="(580,620)"/> <wire from="(580,520)" to="(660,520)"/> <wire from="(580,690)" to="(580,870)"/> <wire from="(580,960)" to="(580,980)"/> <wire from="(580,980)" to="(1040,980)"/> <wire from="(590,670)" to="(590,800)"/> <wire from="(590,800)" to="(650,800)"/> <wire from="(600,290)" to="(600,410)"/> <wire from="(600,290)" to="(890,290)"/> <wire from="(600,410)" to="(660,410)"/> <wire from="(600,460)" to="(600,580)"/> <wire from="(600,460)" to="(890,460)"/> <wire from="(600,580)" to="(660,580)"/> <wire from="(610,240)" to="(610,650)"/> <wire from="(610,240)" to="(660,240)"/> <wire from="(620,110)" to="(620,220)"/> <wire from="(620,220)" to="(620,390)"/> <wire from="(620,220)" to="(660,220)"/> <wire from="(620,390)" to="(620,560)"/> <wire from="(620,390)" to="(660,390)"/> <wire from="(620,560)" to="(660,560)"/> <wire from="(620,830)" to="(620,940)"/> <wire from="(630,100)" to="(630,200)"/> <wire from="(630,200)" to="(630,370)"/> <wire from="(630,200)" to="(660,200)"/> <wire from="(630,370)" to="(630,540)"/> <wire from="(630,370)" to="(660,370)"/> <wire from="(630,540)" to="(660,540)"/> <wire from="(630,820)" to="(630,940)"/> <wire from="(640,160)" to="(640,330)"/> <wire from="(640,160)" to="(660,160)"/> <wire from="(640,330)" to="(640,500)"/> <wire from="(640,330)" to="(660,330)"/> <wire from="(640,500)" to="(660,500)"/> <wire from="(640,80)" to="(640,160)"/> <wire from="(640,810)" to="(640,940)"/> <wire from="(650,140)" to="(650,310)"/> <wire from="(650,140)" to="(660,140)"/> <wire from="(650,310)" to="(650,480)"/> <wire from="(650,310)" to="(660,310)"/> <wire from="(650,40)" to="(650,140)"/> <wire from="(650,480)" to="(660,480)"/> <wire from="(650,800)" to="(650,940)"/> <wire from="(660,810)" to="(660,940)"/> <wire from="(660,810)" to="(910,810)"/> <wire from="(670,820)" to="(670,940)"/> <wire from="(670,820)" to="(930,820)"/> <wire from="(680,830)" to="(680,940)"/> <wire from="(680,830)" to="(950,830)"/> <wire from="(690,960)" to="(1060,960)"/> <wire from="(880,140)" to="(890,140)"/> <wire from="(880,160)" to="(910,160)"/> <wire from="(880,180)" to="(900,180)"/> <wire from="(880,310)" to="(890,310)"/> <wire from="(880,330)" to="(930,330)"/> <wire from="(880,350)" to="(920,350)"/> <wire from="(880,480)" to="(1090,480)"/> <wire from="(880,500)" to="(950,500)"/> <wire from="(880,520)" to="(940,520)"/> <wire from="(890,140)" to="(890,290)"/> <wire from="(890,310)" to="(890,460)"/> <wire from="(900,180)" to="(900,880)"/> <wire from="(910,160)" to="(910,810)"/> <wire from="(920,350)" to="(920,890)"/> <wire from="(930,330)" to="(930,820)"/> <wire from="(940,520)" to="(940,900)"/> <wire from="(950,500)" to="(950,830)"/> </circuit> <circuit name="DownCounter12_NoOut"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DownCounter12_NoOut"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(1320,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(140,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="12"/> </comp> <comp lib="0" loc="(80,510)" name="Splitter"> <a name="fanout" val="12"/> <a name="incoming" val="12"/> </comp> <comp loc="(1240,140)" name="DownCounterBit"/> <comp loc="(1240,310)" name="DownCounterBit"/> <comp loc="(1240,480)" name="DownCounterBit"/> <comp loc="(1240,650)" name="DownCounterBit"/> <comp loc="(500,140)" name="DownCounterBit"/> <comp loc="(500,310)" name="DownCounterBit"/> <comp loc="(500,480)" name="DownCounterBit"/> <comp loc="(500,650)" name="DownCounterBit"/> <comp loc="(880,140)" name="DownCounterBit"/> <comp loc="(880,310)" name="DownCounterBit"/> <comp loc="(880,480)" name="DownCounterBit"/> <comp loc="(880,650)" name="DownCounterBit"/> <wire from="(100,390)" to="(180,390)"/> <wire from="(100,400)" to="(190,400)"/> <wire from="(100,410)" to="(200,410)"/> <wire from="(100,420)" to="(190,420)"/> <wire from="(100,430)" to="(210,430)"/> <wire from="(100,440)" to="(280,440)"/> <wire from="(100,450)" to="(210,450)"/> <wire from="(100,460)" to="(170,460)"/> <wire from="(100,470)" to="(160,470)"/> <wire from="(100,480)" to="(150,480)"/> <wire from="(100,490)" to="(140,490)"/> <wire from="(100,500)" to="(130,500)"/> <wire from="(1000,160)" to="(1000,330)"/> <wire from="(1000,160)" to="(1020,160)"/> <wire from="(1000,330)" to="(1000,500)"/> <wire from="(1000,330)" to="(1020,330)"/> <wire from="(1000,500)" to="(1000,670)"/> <wire from="(1000,500)" to="(1020,500)"/> <wire from="(1000,670)" to="(1020,670)"/> <wire from="(1000,80)" to="(1000,160)"/> <wire from="(1010,140)" to="(1010,310)"/> <wire from="(1010,140)" to="(1020,140)"/> <wire from="(1010,310)" to="(1010,480)"/> <wire from="(1010,310)" to="(1020,310)"/> <wire from="(1010,40)" to="(1010,140)"/> <wire from="(1010,480)" to="(1010,650)"/> <wire from="(1010,480)" to="(1020,480)"/> <wire from="(1010,650)" to="(1020,650)"/> <wire from="(120,120)" to="(150,120)"/> <wire from="(120,160)" to="(170,160)"/> <wire from="(120,200)" to="(150,200)"/> <wire from="(120,40)" to="(270,40)"/> <wire from="(120,80)" to="(260,80)"/> <wire from="(1240,140)" to="(1250,140)"/> <wire from="(1240,310)" to="(1250,310)"/> <wire from="(1240,480)" to="(1250,480)"/> <wire from="(1240,650)" to="(1320,650)"/> <wire from="(1250,140)" to="(1250,290)"/> <wire from="(1250,310)" to="(1250,460)"/> <wire from="(1250,480)" to="(1250,630)"/> <wire from="(130,500)" to="(130,840)"/> <wire from="(130,840)" to="(940,840)"/> <wire from="(140,320)" to="(150,320)"/> <wire from="(140,490)" to="(140,830)"/> <wire from="(140,830)" to="(930,830)"/> <wire from="(150,100)" to="(150,120)"/> <wire from="(150,100)" to="(250,100)"/> <wire from="(150,200)" to="(150,240)"/> <wire from="(150,240)" to="(280,240)"/> <wire from="(150,320)" to="(150,370)"/> <wire from="(150,480)" to="(150,820)"/> <wire from="(150,820)" to="(920,820)"/> <wire from="(160,470)" to="(160,810)"/> <wire from="(160,810)" to="(910,810)"/> <wire from="(170,110)" to="(170,160)"/> <wire from="(170,110)" to="(240,110)"/> <wire from="(170,460)" to="(170,790)"/> <wire from="(170,790)" to="(510,790)"/> <wire from="(180,180)" to="(180,390)"/> <wire from="(180,180)" to="(280,180)"/> <wire from="(190,350)" to="(190,400)"/> <wire from="(190,350)" to="(280,350)"/> <wire from="(190,420)" to="(190,690)"/> <wire from="(190,690)" to="(280,690)"/> <wire from="(200,410)" to="(200,520)"/> <wire from="(200,520)" to="(280,520)"/> <wire from="(210,280)" to="(210,430)"/> <wire from="(210,280)" to="(570,280)"/> <wire from="(210,450)" to="(210,620)"/> <wire from="(210,620)" to="(580,620)"/> <wire from="(230,290)" to="(230,410)"/> <wire from="(230,290)" to="(510,290)"/> <wire from="(230,410)" to="(280,410)"/> <wire from="(230,460)" to="(230,580)"/> <wire from="(230,460)" to="(510,460)"/> <wire from="(230,580)" to="(280,580)"/> <wire from="(230,630)" to="(230,750)"/> <wire from="(230,630)" to="(510,630)"/> <wire from="(230,750)" to="(280,750)"/> <wire from="(240,110)" to="(240,220)"/> <wire from="(240,110)" to="(620,110)"/> <wire from="(240,220)" to="(240,390)"/> <wire from="(240,220)" to="(280,220)"/> <wire from="(240,390)" to="(240,560)"/> <wire from="(240,390)" to="(280,390)"/> <wire from="(240,560)" to="(240,730)"/> <wire from="(240,560)" to="(280,560)"/> <wire from="(240,730)" to="(280,730)"/> <wire from="(250,100)" to="(250,200)"/> <wire from="(250,100)" to="(630,100)"/> <wire from="(250,200)" to="(250,370)"/> <wire from="(250,200)" to="(280,200)"/> <wire from="(250,370)" to="(250,540)"/> <wire from="(250,370)" to="(280,370)"/> <wire from="(250,540)" to="(250,710)"/> <wire from="(250,540)" to="(280,540)"/> <wire from="(250,710)" to="(280,710)"/> <wire from="(260,160)" to="(260,330)"/> <wire from="(260,160)" to="(280,160)"/> <wire from="(260,330)" to="(260,500)"/> <wire from="(260,330)" to="(280,330)"/> <wire from="(260,500)" to="(260,670)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(260,670)" to="(280,670)"/> <wire from="(260,80)" to="(260,160)"/> <wire from="(260,80)" to="(640,80)"/> <wire from="(270,140)" to="(270,310)"/> <wire from="(270,140)" to="(280,140)"/> <wire from="(270,310)" to="(270,480)"/> <wire from="(270,310)" to="(280,310)"/> <wire from="(270,40)" to="(270,140)"/> <wire from="(270,40)" to="(650,40)"/> <wire from="(270,480)" to="(270,650)"/> <wire from="(270,480)" to="(280,480)"/> <wire from="(270,650)" to="(280,650)"/> <wire from="(280,440)" to="(280,450)"/> <wire from="(280,450)" to="(570,450)"/> <wire from="(500,140)" to="(510,140)"/> <wire from="(500,310)" to="(510,310)"/> <wire from="(500,480)" to="(510,480)"/> <wire from="(500,650)" to="(610,650)"/> <wire from="(510,140)" to="(510,290)"/> <wire from="(510,310)" to="(510,460)"/> <wire from="(510,480)" to="(510,630)"/> <wire from="(510,710)" to="(510,790)"/> <wire from="(510,710)" to="(610,710)"/> <wire from="(570,180)" to="(570,280)"/> <wire from="(570,180)" to="(660,180)"/> <wire from="(570,350)" to="(570,450)"/> <wire from="(570,350)" to="(660,350)"/> <wire from="(580,520)" to="(580,620)"/> <wire from="(580,520)" to="(660,520)"/> <wire from="(60,370)" to="(150,370)"/> <wire from="(60,370)" to="(60,510)"/> <wire from="(60,510)" to="(80,510)"/> <wire from="(600,290)" to="(600,410)"/> <wire from="(600,290)" to="(890,290)"/> <wire from="(600,410)" to="(660,410)"/> <wire from="(600,460)" to="(600,580)"/> <wire from="(600,460)" to="(890,460)"/> <wire from="(600,580)" to="(660,580)"/> <wire from="(600,630)" to="(600,750)"/> <wire from="(600,630)" to="(890,630)"/> <wire from="(600,750)" to="(660,750)"/> <wire from="(610,240)" to="(610,650)"/> <wire from="(610,240)" to="(660,240)"/> <wire from="(610,690)" to="(610,710)"/> <wire from="(610,690)" to="(660,690)"/> <wire from="(620,110)" to="(620,220)"/> <wire from="(620,110)" to="(980,110)"/> <wire from="(620,220)" to="(620,390)"/> <wire from="(620,220)" to="(660,220)"/> <wire from="(620,390)" to="(620,560)"/> <wire from="(620,390)" to="(660,390)"/> <wire from="(620,560)" to="(620,730)"/> <wire from="(620,560)" to="(660,560)"/> <wire from="(620,730)" to="(660,730)"/> <wire from="(630,100)" to="(630,200)"/> <wire from="(630,100)" to="(990,100)"/> <wire from="(630,200)" to="(630,370)"/> <wire from="(630,200)" to="(660,200)"/> <wire from="(630,370)" to="(630,540)"/> <wire from="(630,370)" to="(660,370)"/> <wire from="(630,540)" to="(630,710)"/> <wire from="(630,540)" to="(660,540)"/> <wire from="(630,710)" to="(660,710)"/> <wire from="(640,160)" to="(640,330)"/> <wire from="(640,160)" to="(660,160)"/> <wire from="(640,330)" to="(640,500)"/> <wire from="(640,330)" to="(660,330)"/> <wire from="(640,500)" to="(640,670)"/> <wire from="(640,500)" to="(660,500)"/> <wire from="(640,670)" to="(660,670)"/> <wire from="(640,80)" to="(1000,80)"/> <wire from="(640,80)" to="(640,160)"/> <wire from="(650,140)" to="(650,310)"/> <wire from="(650,140)" to="(660,140)"/> <wire from="(650,310)" to="(650,480)"/> <wire from="(650,310)" to="(660,310)"/> <wire from="(650,40)" to="(1010,40)"/> <wire from="(650,40)" to="(650,140)"/> <wire from="(650,480)" to="(650,650)"/> <wire from="(650,480)" to="(660,480)"/> <wire from="(650,650)" to="(660,650)"/> <wire from="(880,140)" to="(890,140)"/> <wire from="(880,310)" to="(890,310)"/> <wire from="(880,480)" to="(890,480)"/> <wire from="(880,650)" to="(900,650)"/> <wire from="(890,140)" to="(890,290)"/> <wire from="(890,310)" to="(890,460)"/> <wire from="(890,480)" to="(890,630)"/> <wire from="(900,240)" to="(1020,240)"/> <wire from="(900,240)" to="(900,650)"/> <wire from="(910,180)" to="(1020,180)"/> <wire from="(910,180)" to="(910,810)"/> <wire from="(920,350)" to="(1020,350)"/> <wire from="(920,350)" to="(920,820)"/> <wire from="(930,520)" to="(1020,520)"/> <wire from="(930,520)" to="(930,830)"/> <wire from="(940,690)" to="(1020,690)"/> <wire from="(940,690)" to="(940,840)"/> <wire from="(970,290)" to="(1250,290)"/> <wire from="(970,290)" to="(970,410)"/> <wire from="(970,410)" to="(1020,410)"/> <wire from="(970,460)" to="(1250,460)"/> <wire from="(970,460)" to="(970,580)"/> <wire from="(970,580)" to="(1020,580)"/> <wire from="(970,630)" to="(1250,630)"/> <wire from="(970,630)" to="(970,750)"/> <wire from="(970,750)" to="(1020,750)"/> <wire from="(980,110)" to="(980,220)"/> <wire from="(980,220)" to="(1020,220)"/> <wire from="(980,220)" to="(980,390)"/> <wire from="(980,390)" to="(1020,390)"/> <wire from="(980,390)" to="(980,560)"/> <wire from="(980,560)" to="(1020,560)"/> <wire from="(980,560)" to="(980,730)"/> <wire from="(980,730)" to="(1020,730)"/> <wire from="(990,100)" to="(990,200)"/> <wire from="(990,200)" to="(1020,200)"/> <wire from="(990,200)" to="(990,370)"/> <wire from="(990,370)" to="(1020,370)"/> <wire from="(990,370)" to="(990,540)"/> <wire from="(990,540)" to="(1020,540)"/> <wire from="(990,540)" to="(990,710)"/> <wire from="(990,710)" to="(1020,710)"/> </circuit> <circuit name="RegisterBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegisterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(250,160)" name="Constant"/> <comp lib="0" loc="(410,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(410,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="1" loc="(190,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(190,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,260)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(260,160)" name="DLatch"> <a name="label" val="ff_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,140)" to="(130,160)"/> <wire from="(130,160)" to="(180,160)"/> <wire from="(150,140)" to="(150,260)"/> <wire from="(150,140)" to="(170,140)"/> <wire from="(150,260)" to="(240,260)"/> <wire from="(180,160)" to="(180,170)"/> <wire from="(180,70)" to="(180,130)"/> <wire from="(190,140)" to="(220,140)"/> <wire from="(190,180)" to="(220,180)"/> <wire from="(220,140)" to="(220,180)"/> <wire from="(220,180)" to="(260,180)"/> <wire from="(240,260)" to="(240,290)"/> <wire from="(240,260)" to="(270,260)"/> <wire from="(240,290)" to="(380,290)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(290,260)" to="(340,260)"/> <wire from="(300,180)" to="(340,180)"/> <wire from="(340,180)" to="(340,260)"/> <wire from="(340,180)" to="(410,180)"/> <wire from="(380,110)" to="(380,290)"/> <wire from="(380,110)" to="(410,110)"/> <wire from="(90,140)" to="(130,140)"/> <wire from="(90,180)" to="(170,180)"/> <wire from="(90,70)" to="(180,70)"/> </circuit> <circuit name="RegisterBit_x8"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegisterBit_x8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,260)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(660,180)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(700,430)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(720,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(510,190)" name="RegisterBit"/> <comp loc="(510,290)" name="RegisterBit"/> <comp loc="(510,390)" name="RegisterBit"/> <comp loc="(510,490)" name="RegisterBit"/> <comp loc="(510,590)" name="RegisterBit"/> <comp loc="(510,690)" name="RegisterBit"/> <comp loc="(510,790)" name="RegisterBit"/> <comp loc="(510,90)" name="RegisterBit"/> <wire from="(130,150)" to="(250,150)"/> <wire from="(130,260)" to="(150,260)"/> <wire from="(130,80)" to="(280,80)"/> <wire from="(170,180)" to="(180,180)"/> <wire from="(170,190)" to="(240,190)"/> <wire from="(170,200)" to="(230,200)"/> <wire from="(170,210)" to="(220,210)"/> <wire from="(170,220)" to="(210,220)"/> <wire from="(170,230)" to="(200,230)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,250)" to="(180,250)"/> <wire from="(180,130)" to="(180,180)"/> <wire from="(180,130)" to="(290,130)"/> <wire from="(180,250)" to="(180,830)"/> <wire from="(180,830)" to="(290,830)"/> <wire from="(190,240)" to="(190,730)"/> <wire from="(190,730)" to="(290,730)"/> <wire from="(200,230)" to="(200,630)"/> <wire from="(200,630)" to="(290,630)"/> <wire from="(210,220)" to="(210,530)"/> <wire from="(210,530)" to="(290,530)"/> <wire from="(220,210)" to="(220,430)"/> <wire from="(220,430)" to="(290,430)"/> <wire from="(230,200)" to="(230,330)"/> <wire from="(230,330)" to="(290,330)"/> <wire from="(240,190)" to="(240,230)"/> <wire from="(240,230)" to="(290,230)"/> <wire from="(250,110)" to="(250,150)"/> <wire from="(250,110)" to="(290,110)"/> <wire from="(250,150)" to="(250,210)"/> <wire from="(250,210)" to="(250,310)"/> <wire from="(250,210)" to="(290,210)"/> <wire from="(250,310)" to="(250,410)"/> <wire from="(250,310)" to="(290,310)"/> <wire from="(250,410)" to="(250,510)"/> <wire from="(250,410)" to="(290,410)"/> <wire from="(250,510)" to="(250,610)"/> <wire from="(250,510)" to="(290,510)"/> <wire from="(250,610)" to="(250,710)"/> <wire from="(250,610)" to="(290,610)"/> <wire from="(250,710)" to="(250,810)"/> <wire from="(250,710)" to="(290,710)"/> <wire from="(250,810)" to="(290,810)"/> <wire from="(280,190)" to="(280,290)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(280,290)" to="(280,390)"/> <wire from="(280,290)" to="(290,290)"/> <wire from="(280,390)" to="(280,490)"/> <wire from="(280,390)" to="(290,390)"/> <wire from="(280,490)" to="(280,590)"/> <wire from="(280,490)" to="(290,490)"/> <wire from="(280,590)" to="(280,690)"/> <wire from="(280,590)" to="(290,590)"/> <wire from="(280,690)" to="(280,790)"/> <wire from="(280,690)" to="(290,690)"/> <wire from="(280,790)" to="(290,790)"/> <wire from="(280,80)" to="(280,90)"/> <wire from="(280,90)" to="(280,190)"/> <wire from="(280,90)" to="(290,90)"/> <wire from="(510,110)" to="(540,110)"/> <wire from="(510,190)" to="(550,190)"/> <wire from="(510,210)" to="(510,230)"/> <wire from="(510,230)" to="(640,230)"/> <wire from="(510,290)" to="(560,290)"/> <wire from="(510,310)" to="(630,310)"/> <wire from="(510,390)" to="(570,390)"/> <wire from="(510,410)" to="(620,410)"/> <wire from="(510,490)" to="(580,490)"/> <wire from="(510,510)" to="(630,510)"/> <wire from="(510,590)" to="(590,590)"/> <wire from="(510,610)" to="(640,610)"/> <wire from="(510,690)" to="(600,690)"/> <wire from="(510,710)" to="(650,710)"/> <wire from="(510,790)" to="(610,790)"/> <wire from="(510,810)" to="(660,810)"/> <wire from="(510,90)" to="(620,90)"/> <wire from="(540,110)" to="(540,220)"/> <wire from="(540,220)" to="(650,220)"/> <wire from="(550,110)" to="(550,190)"/> <wire from="(550,110)" to="(640,110)"/> <wire from="(560,120)" to="(560,290)"/> <wire from="(560,120)" to="(640,120)"/> <wire from="(570,130)" to="(570,390)"/> <wire from="(570,130)" to="(640,130)"/> <wire from="(580,140)" to="(580,490)"/> <wire from="(580,140)" to="(640,140)"/> <wire from="(590,150)" to="(590,590)"/> <wire from="(590,150)" to="(640,150)"/> <wire from="(600,160)" to="(600,690)"/> <wire from="(600,160)" to="(640,160)"/> <wire from="(610,170)" to="(610,790)"/> <wire from="(610,170)" to="(640,170)"/> <wire from="(620,100)" to="(640,100)"/> <wire from="(620,380)" to="(620,410)"/> <wire from="(620,380)" to="(680,380)"/> <wire from="(620,90)" to="(620,100)"/> <wire from="(630,310)" to="(630,370)"/> <wire from="(630,370)" to="(680,370)"/> <wire from="(630,390)" to="(630,510)"/> <wire from="(630,390)" to="(680,390)"/> <wire from="(640,230)" to="(640,360)"/> <wire from="(640,360)" to="(680,360)"/> <wire from="(640,400)" to="(640,610)"/> <wire from="(640,400)" to="(680,400)"/> <wire from="(650,220)" to="(650,350)"/> <wire from="(650,350)" to="(680,350)"/> <wire from="(650,410)" to="(650,710)"/> <wire from="(650,410)" to="(680,410)"/> <wire from="(660,180)" to="(690,180)"/> <wire from="(660,420)" to="(660,810)"/> <wire from="(660,420)" to="(680,420)"/> <wire from="(700,430)" to="(720,430)"/> </circuit> <circuit name="RegisterBitRes"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegisterBitRes"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,80)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(250,160)" name="Constant"/> <comp lib="0" loc="(410,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(410,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Res"/> </comp> <comp lib="1" loc="(190,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(190,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(190,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(270,260)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(260,160)" name="DLatch"> <a name="label" val="ff_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,140)" to="(130,160)"/> <wire from="(130,160)" to="(180,160)"/> <wire from="(150,140)" to="(150,260)"/> <wire from="(150,140)" to="(170,140)"/> <wire from="(150,260)" to="(240,260)"/> <wire from="(150,80)" to="(170,80)"/> <wire from="(180,100)" to="(180,130)"/> <wire from="(180,160)" to="(180,170)"/> <wire from="(180,60)" to="(180,70)"/> <wire from="(190,140)" to="(220,140)"/> <wire from="(190,180)" to="(220,180)"/> <wire from="(190,80)" to="(220,80)"/> <wire from="(220,140)" to="(220,180)"/> <wire from="(220,180)" to="(260,180)"/> <wire from="(220,80)" to="(220,140)"/> <wire from="(240,260)" to="(240,290)"/> <wire from="(240,260)" to="(270,260)"/> <wire from="(240,290)" to="(380,290)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(290,260)" to="(340,260)"/> <wire from="(300,180)" to="(340,180)"/> <wire from="(340,180)" to="(340,260)"/> <wire from="(340,180)" to="(410,180)"/> <wire from="(380,110)" to="(380,290)"/> <wire from="(380,110)" to="(410,110)"/> <wire from="(90,100)" to="(180,100)"/> <wire from="(90,140)" to="(130,140)"/> <wire from="(90,180)" to="(170,180)"/> <wire from="(90,60)" to="(180,60)"/> </circuit> <circuit name="SRBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(130,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(130,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(130,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ValueIn"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ShiftIn"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(260,100)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(350,160)" name="Constant"/> <comp lib="0" loc="(490,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ShiftOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(290,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(370,270)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp loc="(170,280)" name="DLatch"/> <comp loc="(360,160)" name="DLatch"/> <wire from="(130,130)" to="(190,130)"/> <wire from="(130,170)" to="(200,170)"/> <wire from="(130,210)" to="(210,210)"/> <wire from="(130,270)" to="(150,270)"/> <wire from="(130,300)" to="(170,300)"/> <wire from="(130,80)" to="(160,80)"/> <wire from="(150,150)" to="(150,270)"/> <wire from="(150,150)" to="(270,150)"/> <wire from="(160,280)" to="(170,280)"/> <wire from="(160,80)" to="(160,280)"/> <wire from="(160,80)" to="(230,80)"/> <wire from="(190,60)" to="(190,130)"/> <wire from="(190,60)" to="(280,60)"/> <wire from="(200,120)" to="(200,170)"/> <wire from="(200,120)" to="(280,120)"/> <wire from="(210,170)" to="(210,210)"/> <wire from="(210,170)" to="(280,170)"/> <wire from="(210,300)" to="(240,300)"/> <wire from="(230,220)" to="(280,220)"/> <wire from="(230,80)" to="(230,220)"/> <wire from="(240,200)" to="(240,300)"/> <wire from="(240,200)" to="(270,200)"/> <wire from="(250,250)" to="(250,270)"/> <wire from="(250,250)" to="(270,250)"/> <wire from="(250,270)" to="(370,270)"/> <wire from="(260,100)" to="(270,100)"/> <wire from="(280,120)" to="(280,140)"/> <wire from="(280,170)" to="(280,190)"/> <wire from="(280,220)" to="(280,240)"/> <wire from="(280,60)" to="(280,90)"/> <wire from="(290,100)" to="(310,100)"/> <wire from="(290,150)" to="(310,150)"/> <wire from="(290,200)" to="(310,200)"/> <wire from="(290,250)" to="(310,250)"/> <wire from="(310,100)" to="(310,150)"/> <wire from="(310,150)" to="(310,180)"/> <wire from="(310,180)" to="(310,200)"/> <wire from="(310,180)" to="(360,180)"/> <wire from="(310,200)" to="(310,250)"/> <wire from="(350,160)" to="(360,160)"/> <wire from="(390,270)" to="(430,270)"/> <wire from="(400,180)" to="(430,180)"/> <wire from="(430,180)" to="(430,270)"/> <wire from="(430,180)" to="(450,180)"/> <wire from="(450,80)" to="(450,180)"/> <wire from="(450,80)" to="(490,80)"/> </circuit> <circuit name="ShiftReg8"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ShiftReg8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(150,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(150,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(160,310)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(180,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ValueIn"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,200)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(960,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ShiftOut"/> <a name="output" val="true"/> </comp> <comp loc="(530,150)" name="SRBit"/> <comp loc="(530,320)" name="SRBit"/> <comp loc="(530,490)" name="SRBit"/> <comp loc="(530,660)" name="SRBit"/> <comp loc="(910,150)" name="SRBit"/> <comp loc="(910,320)" name="SRBit"/> <comp loc="(910,490)" name="SRBit"/> <comp loc="(910,660)" name="SRBit"/> <wire from="(150,120)" to="(190,120)"/> <wire from="(150,160)" to="(200,160)"/> <wire from="(150,40)" to="(300,40)"/> <wire from="(150,80)" to="(290,80)"/> <wire from="(160,310)" to="(160,350)"/> <wire from="(160,350)" to="(190,350)"/> <wire from="(180,230)" to="(310,230)"/> <wire from="(180,240)" to="(250,240)"/> <wire from="(180,250)" to="(240,250)"/> <wire from="(180,260)" to="(230,260)"/> <wire from="(180,270)" to="(310,270)"/> <wire from="(180,280)" to="(220,280)"/> <wire from="(180,290)" to="(210,290)"/> <wire from="(180,300)" to="(200,300)"/> <wire from="(180,370)" to="(190,370)"/> <wire from="(190,100)" to="(190,120)"/> <wire from="(190,100)" to="(280,100)"/> <wire from="(190,350)" to="(190,370)"/> <wire from="(200,120)" to="(200,160)"/> <wire from="(200,120)" to="(270,120)"/> <wire from="(200,300)" to="(200,810)"/> <wire from="(200,810)" to="(600,810)"/> <wire from="(210,290)" to="(210,630)"/> <wire from="(210,630)" to="(580,630)"/> <wire from="(220,280)" to="(220,460)"/> <wire from="(220,460)" to="(590,460)"/> <wire from="(230,200)" to="(260,200)"/> <wire from="(230,260)" to="(230,740)"/> <wire from="(230,740)" to="(310,740)"/> <wire from="(240,250)" to="(240,570)"/> <wire from="(240,570)" to="(310,570)"/> <wire from="(250,240)" to="(250,400)"/> <wire from="(250,400)" to="(310,400)"/> <wire from="(260,200)" to="(260,250)"/> <wire from="(260,250)" to="(310,250)"/> <wire from="(260,300)" to="(260,420)"/> <wire from="(260,300)" to="(540,300)"/> <wire from="(260,420)" to="(310,420)"/> <wire from="(260,470)" to="(260,590)"/> <wire from="(260,470)" to="(540,470)"/> <wire from="(260,590)" to="(310,590)"/> <wire from="(260,640)" to="(260,760)"/> <wire from="(260,640)" to="(540,640)"/> <wire from="(260,760)" to="(310,760)"/> <wire from="(270,120)" to="(270,210)"/> <wire from="(270,120)" to="(650,120)"/> <wire from="(270,210)" to="(270,380)"/> <wire from="(270,210)" to="(310,210)"/> <wire from="(270,380)" to="(270,550)"/> <wire from="(270,380)" to="(310,380)"/> <wire from="(270,550)" to="(270,720)"/> <wire from="(270,550)" to="(310,550)"/> <wire from="(270,720)" to="(310,720)"/> <wire from="(280,100)" to="(280,190)"/> <wire from="(280,100)" to="(660,100)"/> <wire from="(280,190)" to="(280,360)"/> <wire from="(280,190)" to="(310,190)"/> <wire from="(280,360)" to="(280,530)"/> <wire from="(280,360)" to="(310,360)"/> <wire from="(280,530)" to="(280,700)"/> <wire from="(280,530)" to="(310,530)"/> <wire from="(280,700)" to="(310,700)"/> <wire from="(290,170)" to="(290,340)"/> <wire from="(290,170)" to="(310,170)"/> <wire from="(290,340)" to="(290,510)"/> <wire from="(290,340)" to="(310,340)"/> <wire from="(290,510)" to="(290,680)"/> <wire from="(290,510)" to="(310,510)"/> <wire from="(290,680)" to="(310,680)"/> <wire from="(290,80)" to="(290,170)"/> <wire from="(290,80)" to="(670,80)"/> <wire from="(300,150)" to="(300,320)"/> <wire from="(300,150)" to="(310,150)"/> <wire from="(300,320)" to="(300,490)"/> <wire from="(300,320)" to="(310,320)"/> <wire from="(300,40)" to="(300,150)"/> <wire from="(300,40)" to="(680,40)"/> <wire from="(300,490)" to="(300,660)"/> <wire from="(300,490)" to="(310,490)"/> <wire from="(300,660)" to="(310,660)"/> <wire from="(310,270)" to="(310,290)"/> <wire from="(310,290)" to="(570,290)"/> <wire from="(530,150)" to="(540,150)"/> <wire from="(530,320)" to="(540,320)"/> <wire from="(530,490)" to="(540,490)"/> <wire from="(530,660)" to="(550,660)"/> <wire from="(540,150)" to="(540,300)"/> <wire from="(540,320)" to="(540,470)"/> <wire from="(540,490)" to="(540,640)"/> <wire from="(550,250)" to="(550,660)"/> <wire from="(550,250)" to="(690,250)"/> <wire from="(570,230)" to="(570,290)"/> <wire from="(570,230)" to="(690,230)"/> <wire from="(580,570)" to="(580,630)"/> <wire from="(580,570)" to="(690,570)"/> <wire from="(590,400)" to="(590,460)"/> <wire from="(590,400)" to="(690,400)"/> <wire from="(600,740)" to="(600,810)"/> <wire from="(600,740)" to="(690,740)"/> <wire from="(640,300)" to="(640,420)"/> <wire from="(640,300)" to="(920,300)"/> <wire from="(640,420)" to="(690,420)"/> <wire from="(640,470)" to="(640,590)"/> <wire from="(640,470)" to="(920,470)"/> <wire from="(640,590)" to="(690,590)"/> <wire from="(640,640)" to="(640,760)"/> <wire from="(640,640)" to="(920,640)"/> <wire from="(640,760)" to="(690,760)"/> <wire from="(650,120)" to="(650,210)"/> <wire from="(650,120)" to="(890,120)"/> <wire from="(650,210)" to="(650,380)"/> <wire from="(650,210)" to="(690,210)"/> <wire from="(650,380)" to="(650,550)"/> <wire from="(650,380)" to="(690,380)"/> <wire from="(650,550)" to="(650,720)"/> <wire from="(650,550)" to="(690,550)"/> <wire from="(650,720)" to="(690,720)"/> <wire from="(660,100)" to="(660,190)"/> <wire from="(660,100)" to="(890,100)"/> <wire from="(660,190)" to="(660,360)"/> <wire from="(660,190)" to="(690,190)"/> <wire from="(660,360)" to="(660,530)"/> <wire from="(660,360)" to="(690,360)"/> <wire from="(660,530)" to="(660,700)"/> <wire from="(660,530)" to="(690,530)"/> <wire from="(660,700)" to="(690,700)"/> <wire from="(670,170)" to="(670,340)"/> <wire from="(670,170)" to="(690,170)"/> <wire from="(670,340)" to="(670,510)"/> <wire from="(670,340)" to="(690,340)"/> <wire from="(670,510)" to="(670,680)"/> <wire from="(670,510)" to="(690,510)"/> <wire from="(670,680)" to="(690,680)"/> <wire from="(670,80)" to="(670,170)"/> <wire from="(670,80)" to="(890,80)"/> <wire from="(680,150)" to="(680,320)"/> <wire from="(680,150)" to="(690,150)"/> <wire from="(680,320)" to="(680,490)"/> <wire from="(680,320)" to="(690,320)"/> <wire from="(680,40)" to="(680,150)"/> <wire from="(680,40)" to="(890,40)"/> <wire from="(680,490)" to="(680,660)"/> <wire from="(680,490)" to="(690,490)"/> <wire from="(680,660)" to="(690,660)"/> <wire from="(910,150)" to="(920,150)"/> <wire from="(910,320)" to="(920,320)"/> <wire from="(910,490)" to="(920,490)"/> <wire from="(910,660)" to="(960,660)"/> <wire from="(920,150)" to="(920,300)"/> <wire from="(920,320)" to="(920,470)"/> <wire from="(920,490)" to="(920,640)"/> </circuit> <circuit name="PLA1"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PLA1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Fx"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(100,320)" name="Constant"/> <comp lib="0" loc="(120,100)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(660,90)" name="Splitter"> <a name="bit0" val="15"/> <a name="bit1" val="14"/> <a name="bit10" val="5"/> <a name="bit11" val="4"/> <a name="bit12" val="3"/> <a name="bit13" val="2"/> <a name="bit14" val="1"/> <a name="bit15" val="0"/> <a name="bit2" val="13"/> <a name="bit3" val="12"/> <a name="bit4" val="11"/> <a name="bit5" val="10"/> <a name="bit6" val="9"/> <a name="bit7" val="8"/> <a name="bit8" val="7"/> <a name="bit9" val="6"/> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(670,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PLA1_Out"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(190,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,100)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,1030)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,160)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,220)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,280)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,340)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,400)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,460)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,520)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,610)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,670)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,730)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,790)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,850)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,910)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,970)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="2" loc="(110,320)" name="Demultiplexer"> <a name="select" val="4"/> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(425,55)" name="Text"> <a name="text" val="DMX 4-to-16"/> </comp> <wire from="(100,100)" to="(110,100)"/> <wire from="(100,320)" to="(110,320)"/> <wire from="(110,100)" to="(110,210)"/> <wire from="(110,100)" to="(120,100)"/> <wire from="(110,210)" to="(130,210)"/> <wire from="(130,210)" to="(130,240)"/> <wire from="(140,110)" to="(160,110)"/> <wire from="(140,120)" to="(160,120)"/> <wire from="(140,130)" to="(150,130)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(150,130)" to="(150,140)"/> <wire from="(150,140)" to="(160,140)"/> <wire from="(160,100)" to="(160,110)"/> <wire from="(160,100)" to="(220,100)"/> <wire from="(160,110)" to="(170,110)"/> <wire from="(160,120)" to="(160,130)"/> <wire from="(160,120)" to="(270,120)"/> <wire from="(160,130)" to="(170,130)"/> <wire from="(160,140)" to="(160,150)"/> <wire from="(160,140)" to="(280,140)"/> <wire from="(160,150)" to="(170,150)"/> <wire from="(160,160)" to="(160,170)"/> <wire from="(160,160)" to="(320,160)"/> <wire from="(160,170)" to="(170,170)"/> <wire from="(190,110)" to="(310,110)"/> <wire from="(190,130)" to="(290,130)"/> <wire from="(190,150)" to="(330,150)"/> <wire from="(190,170)" to="(310,170)"/> <wire from="(220,100)" to="(220,590)"/> <wire from="(220,1010)" to="(410,1010)"/> <wire from="(220,590)" to="(220,650)"/> <wire from="(220,590)" to="(410,590)"/> <wire from="(220,650)" to="(220,710)"/> <wire from="(220,650)" to="(410,650)"/> <wire from="(220,710)" to="(220,770)"/> <wire from="(220,710)" to="(410,710)"/> <wire from="(220,770)" to="(220,830)"/> <wire from="(220,770)" to="(410,770)"/> <wire from="(220,830)" to="(220,890)"/> <wire from="(220,830)" to="(410,830)"/> <wire from="(220,890)" to="(220,950)"/> <wire from="(220,890)" to="(410,890)"/> <wire from="(220,950)" to="(220,1010)"/> <wire from="(220,950)" to="(410,950)"/> <wire from="(270,1020)" to="(410,1020)"/> <wire from="(270,120)" to="(270,330)"/> <wire from="(270,330)" to="(270,840)"/> <wire from="(270,330)" to="(390,330)"/> <wire from="(270,840)" to="(270,900)"/> <wire from="(270,840)" to="(410,840)"/> <wire from="(270,900)" to="(270,960)"/> <wire from="(270,900)" to="(410,900)"/> <wire from="(270,960)" to="(270,1020)"/> <wire from="(270,960)" to="(410,960)"/> <wire from="(280,1040)" to="(410,1040)"/> <wire from="(280,140)" to="(280,230)"/> <wire from="(280,230)" to="(280,470)"/> <wire from="(280,230)" to="(390,230)"/> <wire from="(280,470)" to="(280,740)"/> <wire from="(280,470)" to="(380,470)"/> <wire from="(280,740)" to="(280,800)"/> <wire from="(280,740)" to="(410,740)"/> <wire from="(280,800)" to="(280,980)"/> <wire from="(280,800)" to="(410,800)"/> <wire from="(280,980)" to="(280,1040)"/> <wire from="(280,980)" to="(410,980)"/> <wire from="(290,130)" to="(290,600)"/> <wire from="(290,130)" to="(320,130)"/> <wire from="(290,600)" to="(290,660)"/> <wire from="(290,600)" to="(410,600)"/> <wire from="(290,660)" to="(290,720)"/> <wire from="(290,660)" to="(410,660)"/> <wire from="(290,720)" to="(290,780)"/> <wire from="(290,720)" to="(410,720)"/> <wire from="(290,780)" to="(410,780)"/> <wire from="(310,170)" to="(310,630)"/> <wire from="(310,170)" to="(340,170)"/> <wire from="(310,630)" to="(310,750)"/> <wire from="(310,630)" to="(410,630)"/> <wire from="(310,750)" to="(310,870)"/> <wire from="(310,750)" to="(410,750)"/> <wire from="(310,80)" to="(310,110)"/> <wire from="(310,80)" to="(360,80)"/> <wire from="(310,870)" to="(310,990)"/> <wire from="(310,870)" to="(410,870)"/> <wire from="(310,990)" to="(410,990)"/> <wire from="(320,1050)" to="(410,1050)"/> <wire from="(320,160)" to="(320,690)"/> <wire from="(320,160)" to="(370,160)"/> <wire from="(320,690)" to="(320,810)"/> <wire from="(320,690)" to="(410,690)"/> <wire from="(320,810)" to="(320,930)"/> <wire from="(320,810)" to="(410,810)"/> <wire from="(320,90)" to="(320,130)"/> <wire from="(320,90)" to="(380,90)"/> <wire from="(320,930)" to="(320,1050)"/> <wire from="(320,930)" to="(410,930)"/> <wire from="(330,110)" to="(330,150)"/> <wire from="(330,110)" to="(390,110)"/> <wire from="(330,150)" to="(330,350)"/> <wire from="(330,350)" to="(330,620)"/> <wire from="(330,350)" to="(380,350)"/> <wire from="(330,620)" to="(330,680)"/> <wire from="(330,620)" to="(410,620)"/> <wire from="(330,680)" to="(330,860)"/> <wire from="(330,680)" to="(410,680)"/> <wire from="(330,860)" to="(330,920)"/> <wire from="(330,860)" to="(410,860)"/> <wire from="(330,920)" to="(410,920)"/> <wire from="(340,120)" to="(340,170)"/> <wire from="(340,120)" to="(410,120)"/> <wire from="(340,170)" to="(340,240)"/> <wire from="(340,240)" to="(340,360)"/> <wire from="(340,240)" to="(410,240)"/> <wire from="(340,360)" to="(340,480)"/> <wire from="(340,360)" to="(410,360)"/> <wire from="(340,480)" to="(410,480)"/> <wire from="(360,140)" to="(360,200)"/> <wire from="(360,140)" to="(410,140)"/> <wire from="(360,200)" to="(360,260)"/> <wire from="(360,200)" to="(410,200)"/> <wire from="(360,260)" to="(360,320)"/> <wire from="(360,260)" to="(410,260)"/> <wire from="(360,320)" to="(360,380)"/> <wire from="(360,320)" to="(410,320)"/> <wire from="(360,380)" to="(360,440)"/> <wire from="(360,380)" to="(410,380)"/> <wire from="(360,440)" to="(360,500)"/> <wire from="(360,440)" to="(410,440)"/> <wire from="(360,500)" to="(410,500)"/> <wire from="(360,80)" to="(360,140)"/> <wire from="(360,80)" to="(410,80)"/> <wire from="(370,160)" to="(370,180)"/> <wire from="(370,180)" to="(370,300)"/> <wire from="(370,180)" to="(410,180)"/> <wire from="(370,300)" to="(370,420)"/> <wire from="(370,300)" to="(410,300)"/> <wire from="(370,420)" to="(370,540)"/> <wire from="(370,420)" to="(410,420)"/> <wire from="(370,540)" to="(410,540)"/> <wire from="(380,150)" to="(380,210)"/> <wire from="(380,150)" to="(410,150)"/> <wire from="(380,210)" to="(380,270)"/> <wire from="(380,210)" to="(410,210)"/> <wire from="(380,270)" to="(410,270)"/> <wire from="(380,350)" to="(380,410)"/> <wire from="(380,350)" to="(410,350)"/> <wire from="(380,410)" to="(410,410)"/> <wire from="(380,470)" to="(380,530)"/> <wire from="(380,470)" to="(410,470)"/> <wire from="(380,530)" to="(410,530)"/> <wire from="(380,90)" to="(380,150)"/> <wire from="(380,90)" to="(410,90)"/> <wire from="(390,110)" to="(390,170)"/> <wire from="(390,110)" to="(410,110)"/> <wire from="(390,170)" to="(410,170)"/> <wire from="(390,230)" to="(390,290)"/> <wire from="(390,230)" to="(410,230)"/> <wire from="(390,290)" to="(410,290)"/> <wire from="(390,330)" to="(390,390)"/> <wire from="(390,330)" to="(410,330)"/> <wire from="(390,390)" to="(390,450)"/> <wire from="(390,390)" to="(410,390)"/> <wire from="(390,450)" to="(390,510)"/> <wire from="(390,450)" to="(410,450)"/> <wire from="(390,510)" to="(410,510)"/> <wire from="(470,100)" to="(640,100)"/> <wire from="(470,1030)" to="(620,1030)"/> <wire from="(470,160)" to="(480,160)"/> <wire from="(470,220)" to="(490,220)"/> <wire from="(470,280)" to="(500,280)"/> <wire from="(470,340)" to="(510,340)"/> <wire from="(470,400)" to="(520,400)"/> <wire from="(470,460)" to="(530,460)"/> <wire from="(470,520)" to="(540,520)"/> <wire from="(470,610)" to="(550,610)"/> <wire from="(470,670)" to="(560,670)"/> <wire from="(470,730)" to="(570,730)"/> <wire from="(470,790)" to="(580,790)"/> <wire from="(470,850)" to="(590,850)"/> <wire from="(470,910)" to="(600,910)"/> <wire from="(470,970)" to="(610,970)"/> <wire from="(480,110)" to="(480,160)"/> <wire from="(480,110)" to="(640,110)"/> <wire from="(490,120)" to="(490,220)"/> <wire from="(490,120)" to="(640,120)"/> <wire from="(500,130)" to="(500,280)"/> <wire from="(500,130)" to="(640,130)"/> <wire from="(510,140)" to="(510,340)"/> <wire from="(510,140)" to="(640,140)"/> <wire from="(520,150)" to="(520,400)"/> <wire from="(520,150)" to="(640,150)"/> <wire from="(530,160)" to="(530,460)"/> <wire from="(530,160)" to="(640,160)"/> <wire from="(540,170)" to="(540,520)"/> <wire from="(540,170)" to="(640,170)"/> <wire from="(550,180)" to="(550,610)"/> <wire from="(550,180)" to="(640,180)"/> <wire from="(560,190)" to="(560,670)"/> <wire from="(560,190)" to="(640,190)"/> <wire from="(570,200)" to="(570,730)"/> <wire from="(570,200)" to="(640,200)"/> <wire from="(580,210)" to="(580,790)"/> <wire from="(580,210)" to="(640,210)"/> <wire from="(590,220)" to="(590,850)"/> <wire from="(590,220)" to="(640,220)"/> <wire from="(600,230)" to="(600,910)"/> <wire from="(600,230)" to="(640,230)"/> <wire from="(610,240)" to="(610,970)"/> <wire from="(610,240)" to="(640,240)"/> <wire from="(620,250)" to="(620,1030)"/> <wire from="(620,250)" to="(640,250)"/> <wire from="(660,90)" to="(670,90)"/> </circuit> <circuit name="PLA2"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PLA2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PLA2_In"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(160,100)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="15"/> <a name="bit1" val="14"/> <a name="bit10" val="5"/> <a name="bit11" val="4"/> <a name="bit12" val="3"/> <a name="bit13" val="2"/> <a name="bit14" val="1"/> <a name="bit15" val="0"/> <a name="bit2" val="13"/> <a name="bit3" val="12"/> <a name="bit4" val="11"/> <a name="bit5" val="10"/> <a name="bit6" val="9"/> <a name="bit7" val="8"/> <a name="bit8" val="7"/> <a name="bit9" val="6"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(660,100)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(670,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PLA2_Out"/> <a name="output" val="true"/> <a name="width" val="9"/> </comp> <comp lib="1" loc="(440,170)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,270)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,360)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,450)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,550)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,660)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,70)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,750)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(440,850)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <wire from="(150,100)" to="(160,100)"/> <wire from="(180,120)" to="(190,120)"/> <wire from="(180,130)" to="(320,130)"/> <wire from="(180,140)" to="(310,140)"/> <wire from="(180,150)" to="(300,150)"/> <wire from="(180,160)" to="(290,160)"/> <wire from="(180,170)" to="(280,170)"/> <wire from="(180,180)" to="(270,180)"/> <wire from="(180,190)" to="(260,190)"/> <wire from="(180,200)" to="(250,200)"/> <wire from="(180,210)" to="(240,210)"/> <wire from="(180,220)" to="(230,220)"/> <wire from="(180,230)" to="(220,230)"/> <wire from="(180,240)" to="(210,240)"/> <wire from="(180,250)" to="(200,250)"/> <wire from="(180,260)" to="(190,260)"/> <wire from="(180,50)" to="(180,110)"/> <wire from="(180,50)" to="(340,50)"/> <wire from="(190,260)" to="(190,310)"/> <wire from="(190,310)" to="(190,380)"/> <wire from="(190,310)" to="(360,310)"/> <wire from="(190,380)" to="(190,780)"/> <wire from="(190,380)" to="(360,380)"/> <wire from="(190,60)" to="(190,120)"/> <wire from="(190,60)" to="(330,60)"/> <wire from="(190,780)" to="(360,780)"/> <wire from="(200,250)" to="(200,300)"/> <wire from="(200,300)" to="(200,480)"/> <wire from="(200,300)" to="(360,300)"/> <wire from="(200,480)" to="(200,600)"/> <wire from="(200,480)" to="(360,480)"/> <wire from="(200,600)" to="(200,690)"/> <wire from="(200,600)" to="(360,600)"/> <wire from="(200,690)" to="(200,890)"/> <wire from="(200,690)" to="(360,690)"/> <wire from="(200,890)" to="(360,890)"/> <wire from="(200,90)" to="(200,250)"/> <wire from="(200,90)" to="(360,90)"/> <wire from="(210,240)" to="(210,290)"/> <wire from="(210,290)" to="(210,370)"/> <wire from="(210,290)" to="(360,290)"/> <wire from="(210,370)" to="(210,470)"/> <wire from="(210,370)" to="(360,370)"/> <wire from="(210,470)" to="(210,590)"/> <wire from="(210,470)" to="(360,470)"/> <wire from="(210,590)" to="(210,770)"/> <wire from="(210,590)" to="(360,590)"/> <wire from="(210,770)" to="(360,770)"/> <wire from="(220,230)" to="(220,280)"/> <wire from="(220,280)" to="(220,580)"/> <wire from="(220,280)" to="(360,280)"/> <wire from="(220,580)" to="(220,880)"/> <wire from="(220,580)" to="(360,580)"/> <wire from="(220,880)" to="(360,880)"/> <wire from="(230,220)" to="(230,460)"/> <wire from="(230,460)" to="(360,460)"/> <wire from="(230,80)" to="(230,220)"/> <wire from="(230,80)" to="(360,80)"/> <wire from="(240,210)" to="(240,680)"/> <wire from="(240,680)" to="(240,760)"/> <wire from="(240,680)" to="(360,680)"/> <wire from="(240,760)" to="(240,870)"/> <wire from="(240,760)" to="(360,760)"/> <wire from="(240,870)" to="(360,870)"/> <wire from="(250,200)" to="(250,210)"/> <wire from="(250,210)" to="(250,740)"/> <wire from="(250,210)" to="(360,210)"/> <wire from="(250,740)" to="(250,860)"/> <wire from="(250,740)" to="(360,740)"/> <wire from="(250,860)" to="(360,860)"/> <wire from="(260,190)" to="(260,200)"/> <wire from="(260,200)" to="(260,270)"/> <wire from="(260,200)" to="(360,200)"/> <wire from="(260,270)" to="(260,360)"/> <wire from="(260,270)" to="(360,270)"/> <wire from="(260,360)" to="(260,570)"/> <wire from="(260,360)" to="(360,360)"/> <wire from="(260,570)" to="(360,570)"/> <wire from="(270,180)" to="(270,190)"/> <wire from="(270,190)" to="(270,260)"/> <wire from="(270,190)" to="(360,190)"/> <wire from="(270,260)" to="(270,450)"/> <wire from="(270,260)" to="(360,260)"/> <wire from="(270,450)" to="(270,560)"/> <wire from="(270,450)" to="(360,450)"/> <wire from="(270,560)" to="(270,670)"/> <wire from="(270,560)" to="(360,560)"/> <wire from="(270,670)" to="(270,730)"/> <wire from="(270,670)" to="(360,670)"/> <wire from="(270,730)" to="(270,850)"/> <wire from="(270,730)" to="(360,730)"/> <wire from="(270,850)" to="(360,850)"/> <wire from="(280,170)" to="(280,180)"/> <wire from="(280,180)" to="(280,540)"/> <wire from="(280,180)" to="(360,180)"/> <wire from="(280,540)" to="(280,840)"/> <wire from="(280,540)" to="(360,540)"/> <wire from="(280,70)" to="(280,170)"/> <wire from="(280,70)" to="(360,70)"/> <wire from="(280,840)" to="(360,840)"/> <wire from="(290,160)" to="(290,250)"/> <wire from="(290,160)" to="(360,160)"/> <wire from="(290,250)" to="(290,350)"/> <wire from="(290,250)" to="(360,250)"/> <wire from="(290,350)" to="(290,830)"/> <wire from="(290,350)" to="(360,350)"/> <wire from="(290,830)" to="(360,830)"/> <wire from="(300,150)" to="(300,240)"/> <wire from="(300,150)" to="(360,150)"/> <wire from="(300,240)" to="(300,820)"/> <wire from="(300,240)" to="(360,240)"/> <wire from="(300,820)" to="(360,820)"/> <wire from="(310,140)" to="(310,440)"/> <wire from="(310,140)" to="(360,140)"/> <wire from="(310,440)" to="(310,530)"/> <wire from="(310,440)" to="(360,440)"/> <wire from="(310,530)" to="(310,650)"/> <wire from="(310,530)" to="(360,530)"/> <wire from="(310,650)" to="(310,810)"/> <wire from="(310,650)" to="(360,650)"/> <wire from="(310,810)" to="(360,810)"/> <wire from="(320,130)" to="(320,230)"/> <wire from="(320,130)" to="(360,130)"/> <wire from="(320,230)" to="(320,430)"/> <wire from="(320,230)" to="(360,230)"/> <wire from="(320,430)" to="(320,520)"/> <wire from="(320,430)" to="(360,430)"/> <wire from="(320,520)" to="(320,640)"/> <wire from="(320,520)" to="(360,520)"/> <wire from="(320,640)" to="(360,640)"/> <wire from="(330,420)" to="(330,510)"/> <wire from="(330,420)" to="(360,420)"/> <wire from="(330,510)" to="(330,630)"/> <wire from="(330,510)" to="(360,510)"/> <wire from="(330,60)" to="(330,420)"/> <wire from="(330,60)" to="(360,60)"/> <wire from="(330,630)" to="(360,630)"/> <wire from="(340,340)" to="(340,500)"/> <wire from="(340,340)" to="(360,340)"/> <wire from="(340,50)" to="(340,340)"/> <wire from="(340,50)" to="(360,50)"/> <wire from="(340,500)" to="(340,720)"/> <wire from="(340,500)" to="(360,500)"/> <wire from="(340,720)" to="(360,720)"/> <wire from="(440,170)" to="(500,170)"/> <wire from="(440,270)" to="(510,270)"/> <wire from="(440,360)" to="(450,360)"/> <wire from="(440,450)" to="(530,450)"/> <wire from="(440,550)" to="(450,550)"/> <wire from="(440,660)" to="(450,660)"/> <wire from="(440,70)" to="(450,70)"/> <wire from="(440,750)" to="(450,750)"/> <wire from="(440,850)" to="(450,850)"/> <wire from="(450,110)" to="(640,110)"/> <wire from="(450,360)" to="(450,370)"/> <wire from="(450,370)" to="(520,370)"/> <wire from="(450,530)" to="(450,550)"/> <wire from="(450,530)" to="(540,530)"/> <wire from="(450,610)" to="(450,660)"/> <wire from="(450,610)" to="(550,610)"/> <wire from="(450,690)" to="(450,750)"/> <wire from="(450,690)" to="(560,690)"/> <wire from="(450,70)" to="(450,110)"/> <wire from="(450,770)" to="(450,850)"/> <wire from="(450,770)" to="(570,770)"/> <wire from="(500,120)" to="(500,170)"/> <wire from="(500,120)" to="(640,120)"/> <wire from="(510,130)" to="(510,270)"/> <wire from="(510,130)" to="(640,130)"/> <wire from="(520,140)" to="(520,370)"/> <wire from="(520,140)" to="(640,140)"/> <wire from="(530,150)" to="(530,450)"/> <wire from="(530,150)" to="(640,150)"/> <wire from="(540,160)" to="(540,530)"/> <wire from="(540,160)" to="(640,160)"/> <wire from="(550,170)" to="(550,610)"/> <wire from="(550,170)" to="(640,170)"/> <wire from="(560,180)" to="(560,690)"/> <wire from="(560,180)" to="(640,180)"/> <wire from="(570,190)" to="(570,770)"/> <wire from="(570,190)" to="(640,190)"/> <wire from="(660,100)" to="(670,100)"/> </circuit> <circuit name="LFSRBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="LFSRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(430,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ShiftOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ValueIn"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ShiftIn"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="1" loc="(180,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(180,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(220,60)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="4" loc="(250,110)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> </comp> <comp lib="4" loc="(340,110)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> </comp> <wire from="(120,120)" to="(120,180)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,50)" to="(120,80)"/> <wire from="(120,50)" to="(190,50)"/> <wire from="(120,80)" to="(170,80)"/> <wire from="(140,140)" to="(170,140)"/> <wire from="(140,160)" to="(140,220)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(140,70)" to="(140,140)"/> <wire from="(140,70)" to="(190,70)"/> <wire from="(170,140)" to="(170,150)"/> <wire from="(170,80)" to="(170,110)"/> <wire from="(180,120)" to="(200,120)"/> <wire from="(180,160)" to="(200,160)"/> <wire from="(200,120)" to="(200,160)"/> <wire from="(200,120)" to="(240,120)"/> <wire from="(220,60)" to="(230,60)"/> <wire from="(230,160)" to="(240,160)"/> <wire from="(230,60)" to="(230,160)"/> <wire from="(300,160)" to="(310,160)"/> <wire from="(310,120)" to="(310,160)"/> <wire from="(310,120)" to="(330,120)"/> <wire from="(320,160)" to="(330,160)"/> <wire from="(320,30)" to="(320,160)"/> <wire from="(390,160)" to="(410,160)"/> <wire from="(410,120)" to="(410,160)"/> <wire from="(410,120)" to="(430,120)"/> <wire from="(90,140)" to="(140,140)"/> <wire from="(90,180)" to="(120,180)"/> <wire from="(90,220)" to="(140,220)"/> <wire from="(90,30)" to="(320,30)"/> <wire from="(90,80)" to="(120,80)"/> </circuit> <circuit name="LFSR9"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="LFSR9"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ValueIn"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(160,340)" name="Splitter"> <a name="bit0" val="8"/> <a name="bit1" val="7"/> <a name="bit2" val="6"/> <a name="bit3" val="5"/> <a name="bit5" val="3"/> <a name="bit6" val="2"/> <a name="bit7" val="1"/> <a name="bit8" val="0"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(730,200)" name="Splitter"> <a name="bit0" val="8"/> <a name="bit1" val="7"/> <a name="bit2" val="6"/> <a name="bit3" val="5"/> <a name="bit5" val="3"/> <a name="bit6" val="2"/> <a name="bit7" val="1"/> <a name="bit8" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(750,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ShiftOut"/> <a name="output" val="true"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ShiftIn"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp loc="(560,1060)" name="LFSRBit"/> <comp loc="(560,1200)" name="LFSRBit"> <a name="label" val="lsb"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,220)" name="LFSRBit"/> <comp loc="(560,360)" name="LFSRBit"/> <comp loc="(560,500)" name="LFSRBit"/> <comp loc="(560,640)" name="LFSRBit"/> <comp loc="(560,780)" name="LFSRBit"/> <comp loc="(560,80)" name="LFSRBit"> <a name="label" val="msb"/> </comp> <comp loc="(560,920)" name="LFSRBit"/> <wire from="(150,340)" to="(160,340)"/> <wire from="(180,250)" to="(220,250)"/> <wire from="(180,260)" to="(290,260)"/> <wire from="(180,270)" to="(280,270)"/> <wire from="(180,280)" to="(270,280)"/> <wire from="(180,290)" to="(260,290)"/> <wire from="(180,300)" to="(250,300)"/> <wire from="(180,310)" to="(240,310)"/> <wire from="(180,320)" to="(230,320)"/> <wire from="(180,330)" to="(220,330)"/> <wire from="(220,1260)" to="(340,1260)"/> <wire from="(220,140)" to="(220,250)"/> <wire from="(220,140)" to="(340,140)"/> <wire from="(220,330)" to="(220,1260)"/> <wire from="(230,1120)" to="(340,1120)"/> <wire from="(230,320)" to="(230,1120)"/> <wire from="(240,310)" to="(240,980)"/> <wire from="(240,980)" to="(340,980)"/> <wire from="(250,300)" to="(250,840)"/> <wire from="(250,840)" to="(340,840)"/> <wire from="(260,290)" to="(260,700)"/> <wire from="(260,700)" to="(340,700)"/> <wire from="(270,280)" to="(270,560)"/> <wire from="(270,560)" to="(340,560)"/> <wire from="(280,270)" to="(280,420)"/> <wire from="(280,420)" to="(340,420)"/> <wire from="(290,260)" to="(290,280)"/> <wire from="(290,280)" to="(340,280)"/> <wire from="(300,1000)" to="(340,1000)"/> <wire from="(300,1040)" to="(300,1140)"/> <wire from="(300,1040)" to="(570,1040)"/> <wire from="(300,1140)" to="(340,1140)"/> <wire from="(300,1180)" to="(300,1280)"/> <wire from="(300,1180)" to="(570,1180)"/> <wire from="(300,1280)" to="(340,1280)"/> <wire from="(300,200)" to="(300,300)"/> <wire from="(300,200)" to="(570,200)"/> <wire from="(300,300)" to="(340,300)"/> <wire from="(300,340)" to="(300,440)"/> <wire from="(300,340)" to="(570,340)"/> <wire from="(300,440)" to="(340,440)"/> <wire from="(300,480)" to="(300,580)"/> <wire from="(300,480)" to="(570,480)"/> <wire from="(300,580)" to="(340,580)"/> <wire from="(300,620)" to="(300,720)"/> <wire from="(300,620)" to="(570,620)"/> <wire from="(300,720)" to="(340,720)"/> <wire from="(300,760)" to="(300,860)"/> <wire from="(300,760)" to="(570,760)"/> <wire from="(300,860)" to="(340,860)"/> <wire from="(300,900)" to="(300,1000)"/> <wire from="(300,900)" to="(570,900)"/> <wire from="(310,1100)" to="(310,1240)"/> <wire from="(310,1100)" to="(340,1100)"/> <wire from="(310,120)" to="(310,260)"/> <wire from="(310,120)" to="(340,120)"/> <wire from="(310,1240)" to="(340,1240)"/> <wire from="(310,260)" to="(310,400)"/> <wire from="(310,260)" to="(340,260)"/> <wire from="(310,400)" to="(310,540)"/> <wire from="(310,400)" to="(340,400)"/> <wire from="(310,540)" to="(310,680)"/> <wire from="(310,540)" to="(340,540)"/> <wire from="(310,680)" to="(310,820)"/> <wire from="(310,680)" to="(340,680)"/> <wire from="(310,820)" to="(310,960)"/> <wire from="(310,820)" to="(340,820)"/> <wire from="(310,960)" to="(310,1100)"/> <wire from="(310,960)" to="(340,960)"/> <wire from="(320,100)" to="(320,240)"/> <wire from="(320,100)" to="(340,100)"/> <wire from="(320,1080)" to="(320,1220)"/> <wire from="(320,1080)" to="(340,1080)"/> <wire from="(320,1220)" to="(340,1220)"/> <wire from="(320,240)" to="(320,380)"/> <wire from="(320,240)" to="(340,240)"/> <wire from="(320,380)" to="(320,520)"/> <wire from="(320,380)" to="(340,380)"/> <wire from="(320,520)" to="(320,660)"/> <wire from="(320,520)" to="(340,520)"/> <wire from="(320,660)" to="(320,800)"/> <wire from="(320,660)" to="(340,660)"/> <wire from="(320,80)" to="(320,100)"/> <wire from="(320,800)" to="(320,940)"/> <wire from="(320,800)" to="(340,800)"/> <wire from="(320,940)" to="(320,1080)"/> <wire from="(320,940)" to="(340,940)"/> <wire from="(330,1060)" to="(330,1200)"/> <wire from="(330,1060)" to="(340,1060)"/> <wire from="(330,1200)" to="(340,1200)"/> <wire from="(330,220)" to="(330,360)"/> <wire from="(330,220)" to="(340,220)"/> <wire from="(330,30)" to="(330,80)"/> <wire from="(330,360)" to="(330,500)"/> <wire from="(330,360)" to="(340,360)"/> <wire from="(330,500)" to="(330,640)"/> <wire from="(330,500)" to="(340,500)"/> <wire from="(330,640)" to="(330,780)"/> <wire from="(330,640)" to="(340,640)"/> <wire from="(330,780)" to="(330,920)"/> <wire from="(330,780)" to="(340,780)"/> <wire from="(330,80)" to="(330,220)"/> <wire from="(330,80)" to="(340,80)"/> <wire from="(330,920)" to="(330,1060)"/> <wire from="(330,920)" to="(340,920)"/> <wire from="(560,1060)" to="(570,1060)"/> <wire from="(560,1200)" to="(650,1200)"/> <wire from="(560,220)" to="(570,220)"/> <wire from="(560,360)" to="(570,360)"/> <wire from="(560,500)" to="(570,500)"/> <wire from="(560,640)" to="(570,640)"/> <wire from="(560,780)" to="(570,780)"/> <wire from="(560,80)" to="(570,80)"/> <wire from="(560,920)" to="(570,920)"/> <wire from="(570,1060)" to="(570,1180)"/> <wire from="(570,1060)" to="(640,1060)"/> <wire from="(570,220)" to="(570,340)"/> <wire from="(570,220)" to="(710,220)"/> <wire from="(570,360)" to="(570,480)"/> <wire from="(570,360)" to="(590,360)"/> <wire from="(570,500)" to="(570,620)"/> <wire from="(570,500)" to="(600,500)"/> <wire from="(570,640)" to="(570,760)"/> <wire from="(570,640)" to="(610,640)"/> <wire from="(570,780)" to="(570,900)"/> <wire from="(570,780)" to="(620,780)"/> <wire from="(570,80)" to="(570,200)"/> <wire from="(570,80)" to="(700,80)"/> <wire from="(570,920)" to="(570,1040)"/> <wire from="(570,920)" to="(630,920)"/> <wire from="(590,230)" to="(590,360)"/> <wire from="(590,230)" to="(710,230)"/> <wire from="(600,240)" to="(600,500)"/> <wire from="(600,240)" to="(710,240)"/> <wire from="(610,250)" to="(610,640)"/> <wire from="(610,250)" to="(710,250)"/> <wire from="(620,260)" to="(620,780)"/> <wire from="(620,260)" to="(710,260)"/> <wire from="(630,270)" to="(630,920)"/> <wire from="(630,270)" to="(710,270)"/> <wire from="(640,280)" to="(640,1060)"/> <wire from="(640,280)" to="(710,280)"/> <wire from="(650,290)" to="(650,1200)"/> <wire from="(650,290)" to="(710,290)"/> <wire from="(700,210)" to="(710,210)"/> <wire from="(700,80)" to="(700,210)"/> <wire from="(730,200)" to="(750,200)"/> <wire from="(90,120)" to="(310,120)"/> <wire from="(90,160)" to="(340,160)"/> <wire from="(90,30)" to="(330,30)"/> <wire from="(90,80)" to="(320,80)"/> </circuit> <circuit name="RevCounter6"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RevCounter6"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1080,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1100,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1130,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Clear"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dec"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(150,470)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(670,800)" name="Splitter"> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,770)" name="Splitter"> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp loc="(580,280)" name="RevCounterBit"/> <comp loc="(580,470)" name="RevCounterBit"/> <comp loc="(580,90)" name="RevCounterBit"/> <comp loc="(970,280)" name="RevCounterBit"/> <comp loc="(970,470)" name="RevCounterBit"/> <comp loc="(970,90)" name="RevCounterBit"/> <wire from="(1000,130)" to="(1000,680)"/> <wire from="(1010,110)" to="(1010,650)"/> <wire from="(1020,320)" to="(1020,690)"/> <wire from="(1030,300)" to="(1030,660)"/> <wire from="(1040,510)" to="(1040,700)"/> <wire from="(1050,490)" to="(1050,670)"/> <wire from="(1070,360)" to="(1070,800)"/> <wire from="(1070,360)" to="(1080,360)"/> <wire from="(1100,410)" to="(1100,770)"/> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,160)" to="(170,160)"/> <wire from="(120,200)" to="(140,200)"/> <wire from="(120,240)" to="(160,240)"/> <wire from="(120,40)" to="(350,40)"/> <wire from="(120,80)" to="(150,80)"/> <wire from="(140,190)" to="(140,200)"/> <wire from="(140,190)" to="(360,190)"/> <wire from="(140,470)" to="(150,470)"/> <wire from="(150,50)" to="(150,80)"/> <wire from="(150,50)" to="(340,50)"/> <wire from="(160,210)" to="(160,240)"/> <wire from="(160,210)" to="(300,210)"/> <wire from="(160,60)" to="(160,120)"/> <wire from="(160,60)" to="(330,60)"/> <wire from="(170,410)" to="(190,410)"/> <wire from="(170,420)" to="(200,420)"/> <wire from="(170,430)" to="(290,430)"/> <wire from="(170,440)" to="(670,440)"/> <wire from="(170,450)" to="(280,450)"/> <wire from="(170,460)" to="(270,460)"/> <wire from="(170,70)" to="(170,160)"/> <wire from="(170,70)" to="(320,70)"/> <wire from="(190,130)" to="(190,410)"/> <wire from="(190,130)" to="(360,130)"/> <wire from="(200,320)" to="(200,420)"/> <wire from="(200,320)" to="(360,320)"/> <wire from="(270,460)" to="(270,640)"/> <wire from="(270,640)" to="(740,640)"/> <wire from="(280,450)" to="(280,630)"/> <wire from="(280,630)" to="(660,630)"/> <wire from="(290,430)" to="(290,510)"/> <wire from="(290,510)" to="(360,510)"/> <wire from="(300,210)" to="(300,400)"/> <wire from="(300,210)" to="(360,210)"/> <wire from="(300,400)" to="(300,590)"/> <wire from="(300,400)" to="(360,400)"/> <wire from="(300,590)" to="(360,590)"/> <wire from="(310,260)" to="(310,380)"/> <wire from="(310,260)" to="(600,260)"/> <wire from="(310,380)" to="(360,380)"/> <wire from="(310,450)" to="(310,570)"/> <wire from="(310,450)" to="(600,450)"/> <wire from="(310,570)" to="(360,570)"/> <wire from="(320,170)" to="(320,360)"/> <wire from="(320,170)" to="(360,170)"/> <wire from="(320,360)" to="(320,550)"/> <wire from="(320,360)" to="(360,360)"/> <wire from="(320,550)" to="(360,550)"/> <wire from="(320,70)" to="(320,170)"/> <wire from="(320,70)" to="(710,70)"/> <wire from="(330,150)" to="(330,340)"/> <wire from="(330,150)" to="(360,150)"/> <wire from="(330,340)" to="(330,530)"/> <wire from="(330,340)" to="(360,340)"/> <wire from="(330,530)" to="(360,530)"/> <wire from="(330,60)" to="(330,150)"/> <wire from="(330,60)" to="(720,60)"/> <wire from="(340,110)" to="(340,300)"/> <wire from="(340,110)" to="(360,110)"/> <wire from="(340,300)" to="(340,490)"/> <wire from="(340,300)" to="(360,300)"/> <wire from="(340,490)" to="(360,490)"/> <wire from="(340,50)" to="(340,110)"/> <wire from="(340,50)" to="(730,50)"/> <wire from="(350,280)" to="(350,470)"/> <wire from="(350,280)" to="(360,280)"/> <wire from="(350,40)" to="(350,90)"/> <wire from="(350,40)" to="(740,40)"/> <wire from="(350,470)" to="(360,470)"/> <wire from="(350,90)" to="(350,280)"/> <wire from="(350,90)" to="(360,90)"/> <wire from="(360,210)" to="(360,250)"/> <wire from="(360,250)" to="(680,250)"/> <wire from="(580,110)" to="(620,110)"/> <wire from="(580,130)" to="(610,130)"/> <wire from="(580,280)" to="(600,280)"/> <wire from="(580,300)" to="(640,300)"/> <wire from="(580,320)" to="(630,320)"/> <wire from="(580,470)" to="(690,470)"/> <wire from="(580,490)" to="(670,490)"/> <wire from="(580,510)" to="(650,510)"/> <wire from="(580,90)" to="(600,90)"/> <wire from="(600,280)" to="(600,450)"/> <wire from="(600,90)" to="(600,260)"/> <wire from="(610,130)" to="(610,780)"/> <wire from="(620,110)" to="(620,710)"/> <wire from="(620,710)" to="(740,710)"/> <wire from="(620,720)" to="(620,780)"/> <wire from="(620,720)" to="(630,720)"/> <wire from="(630,320)" to="(630,720)"/> <wire from="(630,730)" to="(630,780)"/> <wire from="(630,730)" to="(650,730)"/> <wire from="(640,300)" to="(640,670)"/> <wire from="(640,670)" to="(750,670)"/> <wire from="(640,740)" to="(640,780)"/> <wire from="(640,740)" to="(680,740)"/> <wire from="(650,510)" to="(650,730)"/> <wire from="(650,750)" to="(650,780)"/> <wire from="(650,750)" to="(690,750)"/> <wire from="(660,320)" to="(660,630)"/> <wire from="(660,320)" to="(750,320)"/> <wire from="(660,760)" to="(660,780)"/> <wire from="(660,760)" to="(700,760)"/> <wire from="(670,130)" to="(670,440)"/> <wire from="(670,130)" to="(750,130)"/> <wire from="(670,490)" to="(670,660)"/> <wire from="(670,660)" to="(760,660)"/> <wire from="(670,800)" to="(1070,800)"/> <wire from="(680,210)" to="(680,250)"/> <wire from="(680,210)" to="(750,210)"/> <wire from="(680,250)" to="(680,400)"/> <wire from="(680,400)" to="(680,590)"/> <wire from="(680,400)" to="(750,400)"/> <wire from="(680,590)" to="(750,590)"/> <wire from="(680,680)" to="(1000,680)"/> <wire from="(680,680)" to="(680,740)"/> <wire from="(690,190)" to="(690,470)"/> <wire from="(690,190)" to="(750,190)"/> <wire from="(690,690)" to="(1020,690)"/> <wire from="(690,690)" to="(690,750)"/> <wire from="(700,260)" to="(700,380)"/> <wire from="(700,260)" to="(990,260)"/> <wire from="(700,380)" to="(750,380)"/> <wire from="(700,450)" to="(700,570)"/> <wire from="(700,450)" to="(990,450)"/> <wire from="(700,570)" to="(750,570)"/> <wire from="(700,700)" to="(1040,700)"/> <wire from="(700,700)" to="(700,760)"/> <wire from="(710,170)" to="(710,360)"/> <wire from="(710,170)" to="(750,170)"/> <wire from="(710,360)" to="(710,550)"/> <wire from="(710,360)" to="(750,360)"/> <wire from="(710,550)" to="(750,550)"/> <wire from="(710,70)" to="(710,170)"/> <wire from="(720,150)" to="(720,340)"/> <wire from="(720,150)" to="(750,150)"/> <wire from="(720,340)" to="(720,530)"/> <wire from="(720,340)" to="(750,340)"/> <wire from="(720,530)" to="(750,530)"/> <wire from="(720,60)" to="(720,150)"/> <wire from="(730,110)" to="(730,300)"/> <wire from="(730,110)" to="(750,110)"/> <wire from="(730,300)" to="(730,490)"/> <wire from="(730,300)" to="(750,300)"/> <wire from="(730,490)" to="(750,490)"/> <wire from="(730,50)" to="(730,110)"/> <wire from="(740,280)" to="(740,470)"/> <wire from="(740,280)" to="(750,280)"/> <wire from="(740,40)" to="(740,90)"/> <wire from="(740,470)" to="(750,470)"/> <wire from="(740,510)" to="(740,640)"/> <wire from="(740,510)" to="(750,510)"/> <wire from="(740,710)" to="(740,750)"/> <wire from="(740,90)" to="(740,280)"/> <wire from="(740,90)" to="(750,90)"/> <wire from="(750,670)" to="(750,750)"/> <wire from="(760,660)" to="(760,750)"/> <wire from="(770,650)" to="(1010,650)"/> <wire from="(770,650)" to="(770,750)"/> <wire from="(780,660)" to="(1030,660)"/> <wire from="(780,660)" to="(780,750)"/> <wire from="(790,670)" to="(1050,670)"/> <wire from="(790,670)" to="(790,750)"/> <wire from="(800,770)" to="(1100,770)"/> <wire from="(970,110)" to="(1010,110)"/> <wire from="(970,130)" to="(1000,130)"/> <wire from="(970,280)" to="(990,280)"/> <wire from="(970,300)" to="(1030,300)"/> <wire from="(970,320)" to="(1020,320)"/> <wire from="(970,470)" to="(1130,470)"/> <wire from="(970,490)" to="(1050,490)"/> <wire from="(970,510)" to="(1040,510)"/> <wire from="(970,90)" to="(990,90)"/> <wire from="(990,280)" to="(990,450)"/> <wire from="(990,90)" to="(990,260)"/> </circuit> <circuit name="Core"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Core"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(200,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(320,370)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(330,90)" name="Constant"/> <comp lib="0" loc="(530,110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(530,280)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(700,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RnW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(700,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(700,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PHI1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PHI2"/> <a name="output" val="true"/> </comp> <comp lib="12" loc="(360,60)" name="MOS_6502"> <a name="label" val="core"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,110)" to="(360,110)"/> <wire from="(130,150)" to="(260,150)"/> <wire from="(130,190)" to="(280,190)"/> <wire from="(130,260)" to="(240,260)"/> <wire from="(130,40)" to="(230,40)"/> <wire from="(200,310)" to="(250,310)"/> <wire from="(230,40)" to="(230,60)"/> <wire from="(230,60)" to="(360,60)"/> <wire from="(240,80)" to="(240,260)"/> <wire from="(240,80)" to="(360,80)"/> <wire from="(250,310)" to="(250,370)"/> <wire from="(250,370)" to="(320,370)"/> <wire from="(260,120)" to="(260,150)"/> <wire from="(260,120)" to="(360,120)"/> <wire from="(280,130)" to="(280,190)"/> <wire from="(280,130)" to="(360,130)"/> <wire from="(330,90)" to="(360,90)"/> <wire from="(340,290)" to="(360,290)"/> <wire from="(340,300)" to="(360,300)"/> <wire from="(340,310)" to="(360,310)"/> <wire from="(340,320)" to="(360,320)"/> <wire from="(340,330)" to="(360,330)"/> <wire from="(340,340)" to="(360,340)"/> <wire from="(340,350)" to="(360,350)"/> <wire from="(340,360)" to="(360,360)"/> <wire from="(490,100)" to="(620,100)"/> <wire from="(490,120)" to="(510,120)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(490,140)" to="(510,140)"/> <wire from="(490,150)" to="(510,150)"/> <wire from="(490,160)" to="(510,160)"/> <wire from="(490,170)" to="(510,170)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,200)" to="(510,200)"/> <wire from="(490,210)" to="(510,210)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(490,230)" to="(510,230)"/> <wire from="(490,240)" to="(510,240)"/> <wire from="(490,250)" to="(510,250)"/> <wire from="(490,260)" to="(510,260)"/> <wire from="(490,270)" to="(510,270)"/> <wire from="(490,290)" to="(510,290)"/> <wire from="(490,300)" to="(510,300)"/> <wire from="(490,310)" to="(510,310)"/> <wire from="(490,320)" to="(510,320)"/> <wire from="(490,330)" to="(510,330)"/> <wire from="(490,340)" to="(510,340)"/> <wire from="(490,350)" to="(510,350)"/> <wire from="(490,360)" to="(510,360)"/> <wire from="(490,60)" to="(540,60)"/> <wire from="(490,70)" to="(640,70)"/> <wire from="(490,90)" to="(630,90)"/> <wire from="(530,110)" to="(570,110)"/> <wire from="(530,280)" to="(550,280)"/> <wire from="(540,50)" to="(540,60)"/> <wire from="(540,50)" to="(700,50)"/> <wire from="(550,280)" to="(550,320)"/> <wire from="(550,320)" to="(700,320)"/> <wire from="(570,110)" to="(570,280)"/> <wire from="(570,280)" to="(700,280)"/> <wire from="(620,100)" to="(620,200)"/> <wire from="(620,200)" to="(700,200)"/> <wire from="(630,170)" to="(700,170)"/> <wire from="(630,90)" to="(630,170)"/> <wire from="(640,70)" to="(640,80)"/> <wire from="(640,80)" to="(700,80)"/> </circuit> <circuit name="SoundGenerators"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SoundGenerators"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4010"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4011"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4012"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4013"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1000,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4008"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400A"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W401A"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1200,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(130,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO2"/> </comp> <comp lib="0" loc="(130,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CPU_RnW"/> </comp> <comp lib="0" loc="(130,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(140,280)" name="Tunnel"> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,320)" name="Tunnel"> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,380)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,690)" name="Tunnel"> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1430,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1430,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4014"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(150,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CPU_Ax"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(1540,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1540,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400C"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1540,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1540,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400F"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1540,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1540,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RegOps"/> <a name="radix" val="16"/> <a name="width" val="29"/> </comp> <comp lib="0" loc="(200,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2020,660)" name="Splitter"> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2020,790)" name="Splitter"> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(2040,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DMCINT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2040,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RDY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2040,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="APU_RW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2040,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="APU_Ax"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(2040,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2120,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_A"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2120,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_B"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(230,450)" name="Splitter"> <a name="fanout" val="29"/> <a name="incoming" val="29"/> </comp> <comp lib="0" loc="(260,160)" name="Tunnel"> <a name="label" val="n_R4018"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,180)" name="Tunnel"> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,200)" name="Tunnel"> <a name="label" val="W4001"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,220)" name="Tunnel"> <a name="label" val="W4006"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,240)" name="Tunnel"> <a name="label" val="W400A"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,260)" name="Tunnel"> <a name="label" val="W400E"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,280)" name="Tunnel"> <a name="label" val="W4012"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,300)" name="Tunnel"> <a name="label" val="W4014"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,320)" name="Tunnel"> <a name="label" val="W401A"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,340)" name="Tunnel"> <a name="label" val="W4007"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,360)" name="Tunnel"> <a name="label" val="W400C"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,380)" name="Tunnel"> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,400)" name="Tunnel"> <a name="label" val="W400F"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,420)" name="Tunnel"> <a name="label" val="n_R4016"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,440)" name="Tunnel"> <a name="label" val="W4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,170)" name="Tunnel"> <a name="label" val="n_R401A"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,190)" name="Tunnel"> <a name="label" val="W4002"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,210)" name="Tunnel"> <a name="label" val="W4005"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,230)" name="Tunnel"> <a name="label" val="W4008"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,250)" name="Tunnel"> <a name="label" val="W400B"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,270)" name="Tunnel"> <a name="label" val="W4013"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,290)" name="Tunnel"> <a name="label" val="W4010"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,310)" name="Tunnel"> <a name="label" val="n_R4019"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,330)" name="Tunnel"> <a name="label" val="W4003"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,350)" name="Tunnel"> <a name="label" val="W4004"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,370)" name="Tunnel"> <a name="label" val="W4000"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,390)" name="Tunnel"> <a name="label" val="W4011"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,410)" name="Tunnel"> <a name="label" val="n_R4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,430)" name="Tunnel"> <a name="label" val="W4016"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400B"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400F"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4000"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4001"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4002"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4003"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,910)" name="Constant"/> <comp lib="0" loc="(840,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4004"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4005"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4006"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4007"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(850,910)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp loc="(1070,690)" name="SQUARE"> <a name="label" val="sqb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1230,200)" name="DMC"> <a name="label" val="dpcm"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1430,690)" name="TRIANGLE"> <a name="label" val="tria"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1660,200)" name="DMA"> <a name="label" val="oam_dma"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1770,690)" name="NOISE"> <a name="label" val="rnd"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,190)" name="LengthCounters"> <a name="label" val="lc"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,690)" name="SQUARE"> <a name="label" val="sqa"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,100)" to="(1000,220)"/> <wire from="(1000,100)" to="(1300,100)"/> <wire from="(1000,220)" to="(1010,220)"/> <wire from="(1000,260)" to="(1010,260)"/> <wire from="(1000,300)" to="(1010,300)"/> <wire from="(1000,320)" to="(1010,320)"/> <wire from="(1000,340)" to="(1010,340)"/> <wire from="(1000,360)" to="(1010,360)"/> <wire from="(1000,380)" to="(1010,380)"/> <wire from="(1000,400)" to="(1010,400)"/> <wire from="(1000,420)" to="(1010,420)"/> <wire from="(1010,90)" to="(1010,200)"/> <wire from="(1010,90)" to="(1440,90)"/> <wire from="(1070,1060)" to="(1850,1060)"/> <wire from="(1070,650)" to="(1070,690)"/> <wire from="(1070,710)" to="(1070,1060)"/> <wire from="(1140,540)" to="(1140,850)"/> <wire from="(1140,850)" to="(1210,850)"/> <wire from="(1180,650)" to="(1180,710)"/> <wire from="(1180,650)" to="(1300,650)"/> <wire from="(1180,710)" to="(1210,710)"/> <wire from="(1200,1000)" to="(1530,1000)"/> <wire from="(1200,660)" to="(1200,690)"/> <wire from="(1200,660)" to="(1310,660)"/> <wire from="(1200,690)" to="(1210,690)"/> <wire from="(1200,730)" to="(1210,730)"/> <wire from="(1200,750)" to="(1210,750)"/> <wire from="(1200,770)" to="(1210,770)"/> <wire from="(1200,790)" to="(1210,790)"/> <wire from="(1200,810)" to="(1210,810)"/> <wire from="(1200,830)" to="(1210,830)"/> <wire from="(1200,870)" to="(1210,870)"/> <wire from="(1200,890)" to="(1200,1000)"/> <wire from="(1200,890)" to="(1210,890)"/> <wire from="(1230,200)" to="(1290,200)"/> <wire from="(1230,220)" to="(1330,220)"/> <wire from="(1230,240)" to="(1280,240)"/> <wire from="(1230,260)" to="(1350,260)"/> <wire from="(1230,280)" to="(1260,280)"/> <wire from="(1230,300)" to="(1250,300)"/> <wire from="(1230,320)" to="(1240,320)"/> <wire from="(1240,320)" to="(1240,420)"/> <wire from="(1240,420)" to="(1440,420)"/> <wire from="(1250,300)" to="(1250,530)"/> <wire from="(1250,530)" to="(1800,530)"/> <wire from="(1260,280)" to="(1260,580)"/> <wire from="(1260,580)" to="(1700,580)"/> <wire from="(1280,240)" to="(1280,400)"/> <wire from="(1280,400)" to="(1440,400)"/> <wire from="(1290,200)" to="(1290,380)"/> <wire from="(1290,380)" to="(1440,380)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,170)" to="(170,170)"/> <wire from="(130,210)" to="(180,210)"/> <wire from="(130,280)" to="(140,280)"/> <wire from="(130,320)" to="(140,320)"/> <wire from="(130,380)" to="(140,380)"/> <wire from="(130,60)" to="(980,60)"/> <wire from="(130,640)" to="(300,640)"/> <wire from="(130,690)" to="(140,690)"/> <wire from="(1300,100)" to="(1300,650)"/> <wire from="(1300,100)" to="(1430,100)"/> <wire from="(1310,60)" to="(1310,660)"/> <wire from="(1310,60)" to="(1410,60)"/> <wire from="(1330,220)" to="(1330,360)"/> <wire from="(1330,360)" to="(1440,360)"/> <wire from="(1340,340)" to="(1340,570)"/> <wire from="(1340,340)" to="(1440,340)"/> <wire from="(1350,120)" to="(1350,260)"/> <wire from="(1350,120)" to="(2040,120)"/> <wire from="(1350,300)" to="(1350,600)"/> <wire from="(1350,300)" to="(1440,300)"/> <wire from="(1370,130)" to="(1370,440)"/> <wire from="(1370,440)" to="(1440,440)"/> <wire from="(1400,260)" to="(1440,260)"/> <wire from="(1400,70)" to="(1400,260)"/> <wire from="(1400,70)" to="(1500,70)"/> <wire from="(1410,240)" to="(1440,240)"/> <wire from="(1410,60)" to="(1410,240)"/> <wire from="(1410,60)" to="(1500,60)"/> <wire from="(1430,100)" to="(1430,220)"/> <wire from="(1430,100)" to="(1740,100)"/> <wire from="(1430,1040)" to="(1810,1040)"/> <wire from="(1430,220)" to="(1440,220)"/> <wire from="(1430,280)" to="(1440,280)"/> <wire from="(1430,320)" to="(1440,320)"/> <wire from="(1430,640)" to="(1430,690)"/> <wire from="(1430,710)" to="(1430,1040)"/> <wire from="(1440,90)" to="(1440,200)"/> <wire from="(1440,90)" to="(1750,90)"/> <wire from="(1470,550)" to="(1470,830)"/> <wire from="(1470,830)" to="(1550,830)"/> <wire from="(150,590)" to="(380,590)"/> <wire from="(150,70)" to="(1400,70)"/> <wire from="(150,70)" to="(150,100)"/> <wire from="(1530,870)" to="(1530,1000)"/> <wire from="(1530,870)" to="(1550,870)"/> <wire from="(1540,640)" to="(1540,710)"/> <wire from="(1540,640)" to="(1740,640)"/> <wire from="(1540,710)" to="(1550,710)"/> <wire from="(1540,730)" to="(1550,730)"/> <wire from="(1540,750)" to="(1550,750)"/> <wire from="(1540,770)" to="(1550,770)"/> <wire from="(1540,790)" to="(1550,790)"/> <wire from="(1540,810)" to="(1550,810)"/> <wire from="(1540,850)" to="(1550,850)"/> <wire from="(1550,650)" to="(1550,690)"/> <wire from="(1550,650)" to="(1750,650)"/> <wire from="(1660,200)" to="(1860,200)"/> <wire from="(1660,220)" to="(1700,220)"/> <wire from="(1660,240)" to="(2040,240)"/> <wire from="(1660,260)" to="(1820,260)"/> <wire from="(170,90)" to="(170,170)"/> <wire from="(170,90)" to="(430,90)"/> <wire from="(1700,220)" to="(1700,580)"/> <wire from="(1700,580)" to="(1890,580)"/> <wire from="(1740,100)" to="(1740,640)"/> <wire from="(1740,100)" to="(1770,100)"/> <wire from="(1750,90)" to="(1750,650)"/> <wire from="(1750,90)" to="(1770,90)"/> <wire from="(1770,630)" to="(1770,690)"/> <wire from="(1770,710)" to="(1770,780)"/> <wire from="(1770,780)" to="(1910,780)"/> <wire from="(180,100)" to="(180,210)"/> <wire from="(180,100)" to="(420,100)"/> <wire from="(180,450)" to="(230,450)"/> <wire from="(1800,530)" to="(1800,800)"/> <wire from="(1800,800)" to="(1930,800)"/> <wire from="(1810,760)" to="(1810,1040)"/> <wire from="(1810,760)" to="(2000,760)"/> <wire from="(1820,150)" to="(1820,260)"/> <wire from="(1820,150)" to="(2040,150)"/> <wire from="(1840,640)" to="(1840,1070)"/> <wire from="(1840,640)" to="(2000,640)"/> <wire from="(1850,660)" to="(1850,1060)"/> <wire from="(1850,660)" to="(1940,660)"/> <wire from="(1860,200)" to="(1860,270)"/> <wire from="(1860,270)" to="(2040,270)"/> <wire from="(1890,320)" to="(1890,580)"/> <wire from="(1890,320)" to="(2040,320)"/> <wire from="(1910,770)" to="(1910,780)"/> <wire from="(1910,770)" to="(2000,770)"/> <wire from="(1930,780)" to="(1930,800)"/> <wire from="(1930,780)" to="(2000,780)"/> <wire from="(1940,650)" to="(1940,660)"/> <wire from="(1940,650)" to="(2000,650)"/> <wire from="(200,520)" to="(300,520)"/> <wire from="(2020,660)" to="(2120,660)"/> <wire from="(2020,790)" to="(2120,790)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(250,170)" to="(320,170)"/> <wire from="(250,180)" to="(260,180)"/> <wire from="(250,190)" to="(320,190)"/> <wire from="(250,200)" to="(260,200)"/> <wire from="(250,210)" to="(320,210)"/> <wire from="(250,220)" to="(260,220)"/> <wire from="(250,230)" to="(320,230)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(250,250)" to="(320,250)"/> <wire from="(250,260)" to="(260,260)"/> <wire from="(250,270)" to="(320,270)"/> <wire from="(250,280)" to="(260,280)"/> <wire from="(250,290)" to="(320,290)"/> <wire from="(250,300)" to="(260,300)"/> <wire from="(250,310)" to="(320,310)"/> <wire from="(250,320)" to="(260,320)"/> <wire from="(250,330)" to="(320,330)"/> <wire from="(250,340)" to="(260,340)"/> <wire from="(250,350)" to="(320,350)"/> <wire from="(250,360)" to="(260,360)"/> <wire from="(250,370)" to="(320,370)"/> <wire from="(250,380)" to="(260,380)"/> <wire from="(250,390)" to="(320,390)"/> <wire from="(250,400)" to="(260,400)"/> <wire from="(250,410)" to="(320,410)"/> <wire from="(250,420)" to="(260,420)"/> <wire from="(250,430)" to="(320,430)"/> <wire from="(250,440)" to="(260,440)"/> <wire from="(300,520)" to="(300,570)"/> <wire from="(300,570)" to="(360,570)"/> <wire from="(300,600)" to="(300,640)"/> <wire from="(300,600)" to="(900,600)"/> <wire from="(360,1000)" to="(490,1000)"/> <wire from="(360,570)" to="(360,1000)"/> <wire from="(360,570)" to="(390,570)"/> <wire from="(380,130)" to="(1370,130)"/> <wire from="(380,130)" to="(380,590)"/> <wire from="(390,370)" to="(390,570)"/> <wire from="(390,370)" to="(500,370)"/> <wire from="(390,570)" to="(990,570)"/> <wire from="(390,610)" to="(390,870)"/> <wire from="(390,610)" to="(790,610)"/> <wire from="(390,870)" to="(500,870)"/> <wire from="(420,100)" to="(420,710)"/> <wire from="(420,100)" to="(490,100)"/> <wire from="(420,710)" to="(500,710)"/> <wire from="(430,690)" to="(500,690)"/> <wire from="(430,90)" to="(430,690)"/> <wire from="(430,90)" to="(500,90)"/> <wire from="(440,410)" to="(440,660)"/> <wire from="(440,410)" to="(500,410)"/> <wire from="(440,660)" to="(720,660)"/> <wire from="(450,430)" to="(450,650)"/> <wire from="(450,430)" to="(500,430)"/> <wire from="(450,650)" to="(1070,650)"/> <wire from="(460,450)" to="(460,640)"/> <wire from="(460,450)" to="(500,450)"/> <wire from="(460,640)" to="(1430,640)"/> <wire from="(470,470)" to="(470,630)"/> <wire from="(470,470)" to="(500,470)"/> <wire from="(470,630)" to="(1770,630)"/> <wire from="(490,100)" to="(490,210)"/> <wire from="(490,100)" to="(840,100)"/> <wire from="(490,1000)" to="(840,1000)"/> <wire from="(490,210)" to="(500,210)"/> <wire from="(490,230)" to="(500,230)"/> <wire from="(490,250)" to="(500,250)"/> <wire from="(490,270)" to="(500,270)"/> <wire from="(490,290)" to="(500,290)"/> <wire from="(490,310)" to="(500,310)"/> <wire from="(490,330)" to="(500,330)"/> <wire from="(490,350)" to="(500,350)"/> <wire from="(490,390)" to="(500,390)"/> <wire from="(490,730)" to="(500,730)"/> <wire from="(490,750)" to="(500,750)"/> <wire from="(490,770)" to="(500,770)"/> <wire from="(490,790)" to="(500,790)"/> <wire from="(490,810)" to="(500,810)"/> <wire from="(490,830)" to="(500,830)"/> <wire from="(490,850)" to="(500,850)"/> <wire from="(490,890)" to="(500,890)"/> <wire from="(490,930)" to="(490,1000)"/> <wire from="(490,930)" to="(500,930)"/> <wire from="(500,90)" to="(500,190)"/> <wire from="(500,90)" to="(850,90)"/> <wire from="(720,1070)" to="(1840,1070)"/> <wire from="(720,190)" to="(810,190)"/> <wire from="(720,210)" to="(750,210)"/> <wire from="(720,230)" to="(740,230)"/> <wire from="(720,250)" to="(730,250)"/> <wire from="(720,270)" to="(720,550)"/> <wire from="(720,550)" to="(1470,550)"/> <wire from="(720,660)" to="(720,690)"/> <wire from="(720,710)" to="(720,1070)"/> <wire from="(730,250)" to="(730,540)"/> <wire from="(730,540)" to="(1140,540)"/> <wire from="(740,230)" to="(740,530)"/> <wire from="(740,530)" to="(780,530)"/> <wire from="(750,210)" to="(750,520)"/> <wire from="(750,520)" to="(790,520)"/> <wire from="(780,530)" to="(780,870)"/> <wire from="(780,870)" to="(850,870)"/> <wire from="(790,520)" to="(790,610)"/> <wire from="(810,190)" to="(810,580)"/> <wire from="(810,580)" to="(1260,580)"/> <wire from="(840,100)" to="(1000,100)"/> <wire from="(840,100)" to="(840,710)"/> <wire from="(840,1000)" to="(1200,1000)"/> <wire from="(840,710)" to="(850,710)"/> <wire from="(840,730)" to="(850,730)"/> <wire from="(840,750)" to="(850,750)"/> <wire from="(840,770)" to="(850,770)"/> <wire from="(840,790)" to="(850,790)"/> <wire from="(840,810)" to="(850,810)"/> <wire from="(840,830)" to="(850,830)"/> <wire from="(840,850)" to="(850,850)"/> <wire from="(840,890)" to="(850,890)"/> <wire from="(840,930)" to="(840,1000)"/> <wire from="(840,930)" to="(850,930)"/> <wire from="(850,90)" to="(1010,90)"/> <wire from="(850,90)" to="(850,690)"/> <wire from="(900,280)" to="(1010,280)"/> <wire from="(900,280)" to="(900,600)"/> <wire from="(900,600)" to="(1350,600)"/> <wire from="(980,240)" to="(1010,240)"/> <wire from="(980,60)" to="(1310,60)"/> <wire from="(980,60)" to="(980,240)"/> <wire from="(990,440)" to="(1010,440)"/> <wire from="(990,440)" to="(990,570)"/> <wire from="(990,570)" to="(1340,570)"/> </circuit> <circuit name="DIV"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DIV"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(140,140)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(160,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="rst"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="rst"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(280,250)" name="NoConnect"/> <comp lib="0" loc="(280,390)" name="NoConnect"/> <comp lib="0" loc="(300,150)" name="Tunnel"> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(300,90)" name="Tunnel"> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="rst"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,410)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(460,250)" name="NoConnect"/> <comp lib="0" loc="(500,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nq"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(520,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(520,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="rst"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(520,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="q"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(520,410)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(640,250)" name="NoConnect"/> <comp lib="0" loc="(640,390)" name="NoConnect"/> <comp lib="0" loc="(740,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(750,410)" name="Tunnel"> <a name="label" val="rst"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(790,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_M2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(790,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PHI0"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(740,410)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(770,90)" name="Buffer"/> <comp lib="1" loc="(790,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(260,60)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Phase splitter"/> </comp> <comp lib="8" loc="(265,180)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="CLK_FF"/> </comp> <comp loc="(270,250)" name="DIV_SRBit"> <a name="label" val="SR0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(270,390)" name="DIV_SRBit"> <a name="label" val="SR3"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,250)" name="DIV_SRBit"> <a name="label" val="SR1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,390)" name="DIV_SRBit"> <a name="label" val="SR4"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(630,250)" name="DIV_SRBit"> <a name="label" val="SR2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(630,390)" name="DIV_SRBit"> <a name="label" val="SR5"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,200)" to="(100,280)"/> <wire from="(100,200)" to="(430,200)"/> <wire from="(100,280)" to="(170,280)"/> <wire from="(110,330)" to="(110,420)"/> <wire from="(110,330)" to="(650,330)"/> <wire from="(110,420)" to="(170,420)"/> <wire from="(140,260)" to="(170,260)"/> <wire from="(140,400)" to="(170,400)"/> <wire from="(140,80)" to="(160,80)"/> <wire from="(160,250)" to="(170,250)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(160,390)" to="(170,390)"/> <wire from="(160,410)" to="(170,410)"/> <wire from="(180,80)" to="(190,80)"/> <wire from="(190,160)" to="(200,160)"/> <wire from="(190,80)" to="(190,160)"/> <wire from="(190,80)" to="(230,80)"/> <wire from="(220,100)" to="(220,120)"/> <wire from="(220,100)" to="(230,100)"/> <wire from="(220,120)" to="(290,120)"/> <wire from="(220,130)" to="(220,140)"/> <wire from="(220,130)" to="(280,130)"/> <wire from="(220,140)" to="(230,140)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(270,150)" to="(290,150)"/> <wire from="(270,250)" to="(280,250)"/> <wire from="(270,260)" to="(280,260)"/> <wire from="(270,390)" to="(280,390)"/> <wire from="(270,400)" to="(280,400)"/> <wire from="(270,90)" to="(280,90)"/> <wire from="(280,260)" to="(280,280)"/> <wire from="(280,280)" to="(350,280)"/> <wire from="(280,400)" to="(280,420)"/> <wire from="(280,420)" to="(350,420)"/> <wire from="(280,90)" to="(280,130)"/> <wire from="(280,90)" to="(300,90)"/> <wire from="(290,120)" to="(290,150)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(320,260)" to="(350,260)"/> <wire from="(320,400)" to="(350,400)"/> <wire from="(340,250)" to="(350,250)"/> <wire from="(340,270)" to="(350,270)"/> <wire from="(340,390)" to="(350,390)"/> <wire from="(340,410)" to="(350,410)"/> <wire from="(430,90)" to="(430,200)"/> <wire from="(430,90)" to="(680,90)"/> <wire from="(450,250)" to="(460,250)"/> <wire from="(450,260)" to="(460,260)"/> <wire from="(450,390)" to="(460,390)"/> <wire from="(450,400)" to="(460,400)"/> <wire from="(460,260)" to="(460,280)"/> <wire from="(460,280)" to="(530,280)"/> <wire from="(460,340)" to="(460,390)"/> <wire from="(460,340)" to="(700,340)"/> <wire from="(460,400)" to="(460,420)"/> <wire from="(460,420)" to="(510,420)"/> <wire from="(500,260)" to="(530,260)"/> <wire from="(500,400)" to="(530,400)"/> <wire from="(510,420)" to="(510,460)"/> <wire from="(510,420)" to="(530,420)"/> <wire from="(510,460)" to="(680,460)"/> <wire from="(520,250)" to="(530,250)"/> <wire from="(520,270)" to="(530,270)"/> <wire from="(520,390)" to="(530,390)"/> <wire from="(520,410)" to="(530,410)"/> <wire from="(630,250)" to="(640,250)"/> <wire from="(630,260)" to="(650,260)"/> <wire from="(630,390)" to="(640,390)"/> <wire from="(630,400)" to="(650,400)"/> <wire from="(650,260)" to="(650,330)"/> <wire from="(670,400)" to="(680,400)"/> <wire from="(680,400)" to="(700,400)"/> <wire from="(680,420)" to="(680,460)"/> <wire from="(680,420)" to="(700,420)"/> <wire from="(680,90)" to="(680,400)"/> <wire from="(680,90)" to="(750,90)"/> <wire from="(700,160)" to="(700,340)"/> <wire from="(700,160)" to="(750,160)"/> <wire from="(740,180)" to="(750,180)"/> <wire from="(740,410)" to="(750,410)"/> <wire from="(770,90)" to="(790,90)"/> </circuit> <circuit name="DIV_SRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="DIV_SRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(430,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nval"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(430,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="rst"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="q"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nq"/> </comp> <comp lib="1" loc="(390,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(180,80)" name="DLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(260,80)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,100)" to="(110,150)"/> <wire from="(110,100)" to="(180,100)"/> <wire from="(130,120)" to="(130,140)"/> <wire from="(130,140)" to="(330,140)"/> <wire from="(130,40)" to="(130,90)"/> <wire from="(130,40)" to="(240,40)"/> <wire from="(160,60)" to="(160,80)"/> <wire from="(160,80)" to="(180,80)"/> <wire from="(220,100)" to="(240,100)"/> <wire from="(240,100)" to="(240,160)"/> <wire from="(240,100)" to="(260,100)"/> <wire from="(240,160)" to="(400,160)"/> <wire from="(240,40)" to="(240,80)"/> <wire from="(240,80)" to="(260,80)"/> <wire from="(300,80)" to="(350,80)"/> <wire from="(330,100)" to="(330,140)"/> <wire from="(330,100)" to="(350,100)"/> <wire from="(390,90)" to="(430,90)"/> <wire from="(400,60)" to="(400,160)"/> <wire from="(400,60)" to="(430,60)"/> <wire from="(90,120)" to="(130,120)"/> <wire from="(90,150)" to="(110,150)"/> <wire from="(90,60)" to="(160,60)"/> <wire from="(90,90)" to="(130,90)"/> </circuit> <circuit name="SoftCLK"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SoftCLK"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DMCINT"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4017"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(180,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(300,400)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="0"/> <a name="bit14" val="1"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(330,470)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(850,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ACLK1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(850,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LFO1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(850,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LFO2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(850,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="INT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(850,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(850,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nACLK2"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(400,390)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,450)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(470,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(385,365)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="LFSR feedback"/> </comp> <comp loc="(440,120)" name="ACLKGen"> <a name="label" val="aclk_gen"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,230)" name="SoftCLK_Control"> <a name="label" val="control"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,390)" name="SoftCLK_SR"> <a name="label" val="sr15"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,390)" name="SoftCLK_PLA"> <a name="label" val="pla"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,110)" to="(240,110)"/> <wire from="(130,150)" to="(240,150)"/> <wire from="(130,230)" to="(170,230)"/> <wire from="(130,290)" to="(330,290)"/> <wire from="(130,340)" to="(230,340)"/> <wire from="(130,70)" to="(260,70)"/> <wire from="(170,230)" to="(170,280)"/> <wire from="(170,280)" to="(330,280)"/> <wire from="(180,420)" to="(250,420)"/> <wire from="(230,300)" to="(230,340)"/> <wire from="(230,300)" to="(330,300)"/> <wire from="(240,110)" to="(240,130)"/> <wire from="(240,130)" to="(340,130)"/> <wire from="(240,140)" to="(240,150)"/> <wire from="(240,140)" to="(340,140)"/> <wire from="(240,150)" to="(240,260)"/> <wire from="(240,260)" to="(330,260)"/> <wire from="(250,310)" to="(250,420)"/> <wire from="(250,310)" to="(330,310)"/> <wire from="(260,120)" to="(260,250)"/> <wire from="(260,120)" to="(340,120)"/> <wire from="(260,250)" to="(330,250)"/> <wire from="(260,70)" to="(260,120)"/> <wire from="(280,270)" to="(280,500)"/> <wire from="(280,270)" to="(330,270)"/> <wire from="(280,500)" to="(330,500)"/> <wire from="(300,180)" to="(300,240)"/> <wire from="(300,180)" to="(480,180)"/> <wire from="(300,240)" to="(330,240)"/> <wire from="(300,400)" to="(300,490)"/> <wire from="(300,490)" to="(630,490)"/> <wire from="(320,190)" to="(320,230)"/> <wire from="(320,190)" to="(510,190)"/> <wire from="(320,230)" to="(330,230)"/> <wire from="(320,380)" to="(340,380)"/> <wire from="(320,390)" to="(350,390)"/> <wire from="(330,470)" to="(330,500)"/> <wire from="(330,500)" to="(770,500)"/> <wire from="(340,380)" to="(340,440)"/> <wire from="(340,380)" to="(370,380)"/> <wire from="(340,440)" to="(360,440)"/> <wire from="(350,390)" to="(350,400)"/> <wire from="(350,400)" to="(350,450)"/> <wire from="(350,400)" to="(370,400)"/> <wire from="(350,450)" to="(360,450)"/> <wire from="(350,460)" to="(360,460)"/> <wire from="(400,390)" to="(420,390)"/> <wire from="(400,450)" to="(420,450)"/> <wire from="(420,390)" to="(420,410)"/> <wire from="(420,410)" to="(430,410)"/> <wire from="(420,430)" to="(420,450)"/> <wire from="(420,430)" to="(430,430)"/> <wire from="(440,120)" to="(480,120)"/> <wire from="(440,130)" to="(510,130)"/> <wire from="(450,230)" to="(640,230)"/> <wire from="(450,240)" to="(490,240)"/> <wire from="(450,250)" to="(480,250)"/> <wire from="(450,260)" to="(850,260)"/> <wire from="(450,270)" to="(700,270)"/> <wire from="(450,280)" to="(720,280)"/> <wire from="(450,290)" to="(810,290)"/> <wire from="(470,420)" to="(520,420)"/> <wire from="(480,120)" to="(480,180)"/> <wire from="(480,120)" to="(610,120)"/> <wire from="(480,250)" to="(480,410)"/> <wire from="(480,410)" to="(520,410)"/> <wire from="(490,240)" to="(490,400)"/> <wire from="(490,400)" to="(520,400)"/> <wire from="(510,130)" to="(510,190)"/> <wire from="(510,130)" to="(630,130)"/> <wire from="(510,190)" to="(510,390)"/> <wire from="(510,390)" to="(520,390)"/> <wire from="(610,70)" to="(610,120)"/> <wire from="(610,70)" to="(850,70)"/> <wire from="(620,390)" to="(660,390)"/> <wire from="(620,400)" to="(630,400)"/> <wire from="(630,110)" to="(630,130)"/> <wire from="(630,110)" to="(850,110)"/> <wire from="(630,400)" to="(630,490)"/> <wire from="(630,400)" to="(660,400)"/> <wire from="(640,230)" to="(640,410)"/> <wire from="(640,410)" to="(660,410)"/> <wire from="(700,160)" to="(700,270)"/> <wire from="(700,160)" to="(850,160)"/> <wire from="(720,200)" to="(720,280)"/> <wire from="(720,200)" to="(850,200)"/> <wire from="(760,390)" to="(770,390)"/> <wire from="(770,390)" to="(770,500)"/> <wire from="(810,290)" to="(810,350)"/> <wire from="(810,350)" to="(850,350)"/> </circuit> <circuit name="ACLKGen"> <a name="appearance" val="evolution"/> <a name="circuit" val="ACLKGen"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(180,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(300,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(400,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(480,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nACLK2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(480,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ACLK1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,120)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(90,150)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,90)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="1" loc="(290,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(410,190)" name="Buffer"/> <comp lib="1" loc="(450,60)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(190,50)" name="DLatch"> <a name="label" val="phi1_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(310,50)" name="DLatch"> <a name="label" val="phi2_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,110)" to="(170,150)"/> <wire from="(170,110)" to="(470,110)"/> <wire from="(170,150)" to="(320,150)"/> <wire from="(170,70)" to="(170,110)"/> <wire from="(170,70)" to="(190,70)"/> <wire from="(180,50)" to="(190,50)"/> <wire from="(220,100)" to="(220,200)"/> <wire from="(220,100)" to="(390,100)"/> <wire from="(220,200)" to="(320,200)"/> <wire from="(230,70)" to="(310,70)"/> <wire from="(260,130)" to="(270,130)"/> <wire from="(290,130)" to="(300,130)"/> <wire from="(300,130)" to="(300,180)"/> <wire from="(300,130)" to="(320,130)"/> <wire from="(300,180)" to="(320,180)"/> <wire from="(300,50)" to="(310,50)"/> <wire from="(350,70)" to="(390,70)"/> <wire from="(360,140)" to="(390,140)"/> <wire from="(360,190)" to="(390,190)"/> <wire from="(390,70)" to="(390,100)"/> <wire from="(390,70)" to="(410,70)"/> <wire from="(400,50)" to="(410,50)"/> <wire from="(410,140)" to="(480,140)"/> <wire from="(410,190)" to="(480,190)"/> <wire from="(450,60)" to="(470,60)"/> <wire from="(470,60)" to="(470,110)"/> </circuit> <circuit name="SoftCLK_SR"> <a name="appearance" val="evolution"/> <a name="circuit" val="SoftCLK_SR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1060,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1120,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1160,610)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(1160,680)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(1210,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(1210,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_sout"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(140,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F1_Res"/> </comp> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F2_Step"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(140,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(430,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(490,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(740,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(800,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp loc="(360,110)" name="SoftCLK_SRBit"/> <comp loc="(360,210)" name="SoftCLK_SRBit"/> <comp loc="(360,310)" name="SoftCLK_SRBit"/> <comp loc="(360,410)" name="SoftCLK_SRBit"/> <comp loc="(360,510)" name="SoftCLK_SRBit"/> <comp loc="(670,110)" name="SoftCLK_SRBit"/> <comp loc="(670,210)" name="SoftCLK_SRBit"/> <comp loc="(670,310)" name="SoftCLK_SRBit"/> <comp loc="(670,410)" name="SoftCLK_SRBit"/> <comp loc="(670,510)" name="SoftCLK_SRBit"/> <comp loc="(990,110)" name="SoftCLK_SRBit"/> <comp loc="(990,210)" name="SoftCLK_SRBit"/> <comp loc="(990,310)" name="SoftCLK_SRBit"/> <comp loc="(990,410)" name="SoftCLK_SRBit"/> <comp loc="(990,510)" name="SoftCLK_SRBit"/> <wire from="(1000,120)" to="(1000,170)"/> <wire from="(1000,120)" to="(1100,120)"/> <wire from="(1000,220)" to="(1000,270)"/> <wire from="(1000,220)" to="(1090,220)"/> <wire from="(1000,320)" to="(1000,370)"/> <wire from="(1000,320)" to="(1010,320)"/> <wire from="(1000,420)" to="(1000,470)"/> <wire from="(1000,420)" to="(1090,420)"/> <wire from="(1010,270)" to="(1010,320)"/> <wire from="(1010,270)" to="(1080,270)"/> <wire from="(1020,310)" to="(1020,320)"/> <wire from="(1020,320)" to="(1040,320)"/> <wire from="(1030,210)" to="(1030,310)"/> <wire from="(1030,310)" to="(1040,310)"/> <wire from="(1030,330)" to="(1030,410)"/> <wire from="(1030,330)" to="(1040,330)"/> <wire from="(1040,110)" to="(1040,300)"/> <wire from="(1040,340)" to="(1040,510)"/> <wire from="(1060,290)" to="(1070,290)"/> <wire from="(1070,290)" to="(1070,640)"/> <wire from="(1070,640)" to="(1140,640)"/> <wire from="(1080,270)" to="(1080,320)"/> <wire from="(1080,320)" to="(1100,320)"/> <wire from="(1090,220)" to="(1090,310)"/> <wire from="(1090,310)" to="(1100,310)"/> <wire from="(1090,330)" to="(1090,420)"/> <wire from="(1090,330)" to="(1100,330)"/> <wire from="(1100,120)" to="(1100,300)"/> <wire from="(1100,340)" to="(1100,520)"/> <wire from="(1120,290)" to="(1130,290)"/> <wire from="(1130,290)" to="(1130,710)"/> <wire from="(1130,710)" to="(1140,710)"/> <wire from="(1160,680)" to="(1180,680)"/> <wire from="(1160,70)" to="(1160,610)"/> <wire from="(1160,70)" to="(1210,70)"/> <wire from="(1180,100)" to="(1180,680)"/> <wire from="(1180,100)" to="(1210,100)"/> <wire from="(140,100)" to="(150,100)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,160)" to="(180,160)"/> <wire from="(140,40)" to="(240,40)"/> <wire from="(150,50)" to="(150,100)"/> <wire from="(150,50)" to="(230,50)"/> <wire from="(160,60)" to="(160,130)"/> <wire from="(160,60)" to="(220,60)"/> <wire from="(180,140)" to="(180,160)"/> <wire from="(180,140)" to="(260,140)"/> <wire from="(220,130)" to="(220,230)"/> <wire from="(220,130)" to="(260,130)"/> <wire from="(220,230)" to="(220,330)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(220,330)" to="(220,430)"/> <wire from="(220,330)" to="(260,330)"/> <wire from="(220,430)" to="(220,530)"/> <wire from="(220,430)" to="(260,430)"/> <wire from="(220,530)" to="(260,530)"/> <wire from="(220,60)" to="(220,130)"/> <wire from="(220,60)" to="(530,60)"/> <wire from="(230,120)" to="(230,220)"/> <wire from="(230,120)" to="(260,120)"/> <wire from="(230,220)" to="(230,320)"/> <wire from="(230,220)" to="(260,220)"/> <wire from="(230,320)" to="(230,420)"/> <wire from="(230,320)" to="(260,320)"/> <wire from="(230,420)" to="(230,520)"/> <wire from="(230,420)" to="(260,420)"/> <wire from="(230,50)" to="(230,120)"/> <wire from="(230,50)" to="(540,50)"/> <wire from="(230,520)" to="(260,520)"/> <wire from="(240,110)" to="(240,210)"/> <wire from="(240,110)" to="(260,110)"/> <wire from="(240,210)" to="(240,310)"/> <wire from="(240,210)" to="(260,210)"/> <wire from="(240,310)" to="(240,410)"/> <wire from="(240,310)" to="(260,310)"/> <wire from="(240,40)" to="(240,110)"/> <wire from="(240,40)" to="(550,40)"/> <wire from="(240,410)" to="(240,510)"/> <wire from="(240,410)" to="(260,410)"/> <wire from="(240,510)" to="(260,510)"/> <wire from="(250,170)" to="(250,240)"/> <wire from="(250,170)" to="(370,170)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(250,270)" to="(250,340)"/> <wire from="(250,270)" to="(370,270)"/> <wire from="(250,340)" to="(260,340)"/> <wire from="(250,370)" to="(250,440)"/> <wire from="(250,370)" to="(370,370)"/> <wire from="(250,440)" to="(260,440)"/> <wire from="(250,470)" to="(250,540)"/> <wire from="(250,470)" to="(370,470)"/> <wire from="(250,540)" to="(260,540)"/> <wire from="(360,110)" to="(410,110)"/> <wire from="(360,120)" to="(370,120)"/> <wire from="(360,210)" to="(400,210)"/> <wire from="(360,220)" to="(370,220)"/> <wire from="(360,310)" to="(390,310)"/> <wire from="(360,320)" to="(370,320)"/> <wire from="(360,410)" to="(400,410)"/> <wire from="(360,420)" to="(370,420)"/> <wire from="(360,510)" to="(410,510)"/> <wire from="(360,520)" to="(410,520)"/> <wire from="(370,120)" to="(370,170)"/> <wire from="(370,120)" to="(470,120)"/> <wire from="(370,220)" to="(370,270)"/> <wire from="(370,220)" to="(460,220)"/> <wire from="(370,320)" to="(370,370)"/> <wire from="(370,320)" to="(380,320)"/> <wire from="(370,420)" to="(370,470)"/> <wire from="(370,420)" to="(460,420)"/> <wire from="(380,270)" to="(380,320)"/> <wire from="(380,270)" to="(450,270)"/> <wire from="(390,310)" to="(390,320)"/> <wire from="(390,320)" to="(410,320)"/> <wire from="(400,210)" to="(400,310)"/> <wire from="(400,310)" to="(410,310)"/> <wire from="(400,330)" to="(400,410)"/> <wire from="(400,330)" to="(410,330)"/> <wire from="(410,110)" to="(410,300)"/> <wire from="(410,340)" to="(410,510)"/> <wire from="(410,520)" to="(410,560)"/> <wire from="(410,520)" to="(470,520)"/> <wire from="(410,560)" to="(510,560)"/> <wire from="(430,290)" to="(440,290)"/> <wire from="(440,290)" to="(440,620)"/> <wire from="(440,620)" to="(1140,620)"/> <wire from="(450,270)" to="(450,320)"/> <wire from="(450,320)" to="(470,320)"/> <wire from="(460,220)" to="(460,310)"/> <wire from="(460,310)" to="(470,310)"/> <wire from="(460,330)" to="(460,420)"/> <wire from="(460,330)" to="(470,330)"/> <wire from="(470,120)" to="(470,300)"/> <wire from="(470,340)" to="(470,520)"/> <wire from="(490,290)" to="(500,290)"/> <wire from="(500,290)" to="(500,690)"/> <wire from="(500,690)" to="(1140,690)"/> <wire from="(510,140)" to="(510,560)"/> <wire from="(510,140)" to="(570,140)"/> <wire from="(530,130)" to="(530,230)"/> <wire from="(530,130)" to="(570,130)"/> <wire from="(530,230)" to="(530,330)"/> <wire from="(530,230)" to="(570,230)"/> <wire from="(530,330)" to="(530,430)"/> <wire from="(530,330)" to="(570,330)"/> <wire from="(530,430)" to="(530,530)"/> <wire from="(530,430)" to="(570,430)"/> <wire from="(530,530)" to="(570,530)"/> <wire from="(530,60)" to="(530,130)"/> <wire from="(530,60)" to="(850,60)"/> <wire from="(540,120)" to="(540,220)"/> <wire from="(540,120)" to="(570,120)"/> <wire from="(540,220)" to="(540,320)"/> <wire from="(540,220)" to="(570,220)"/> <wire from="(540,320)" to="(540,420)"/> <wire from="(540,320)" to="(570,320)"/> <wire from="(540,420)" to="(540,520)"/> <wire from="(540,420)" to="(570,420)"/> <wire from="(540,50)" to="(540,120)"/> <wire from="(540,50)" to="(860,50)"/> <wire from="(540,520)" to="(570,520)"/> <wire from="(550,110)" to="(550,210)"/> <wire from="(550,110)" to="(570,110)"/> <wire from="(550,210)" to="(550,310)"/> <wire from="(550,210)" to="(570,210)"/> <wire from="(550,310)" to="(550,410)"/> <wire from="(550,310)" to="(570,310)"/> <wire from="(550,40)" to="(550,110)"/> <wire from="(550,40)" to="(870,40)"/> <wire from="(550,410)" to="(550,510)"/> <wire from="(550,410)" to="(570,410)"/> <wire from="(550,510)" to="(570,510)"/> <wire from="(560,170)" to="(560,240)"/> <wire from="(560,170)" to="(680,170)"/> <wire from="(560,240)" to="(570,240)"/> <wire from="(560,270)" to="(560,340)"/> <wire from="(560,270)" to="(680,270)"/> <wire from="(560,340)" to="(570,340)"/> <wire from="(560,370)" to="(560,440)"/> <wire from="(560,370)" to="(680,370)"/> <wire from="(560,440)" to="(570,440)"/> <wire from="(560,470)" to="(560,540)"/> <wire from="(560,470)" to="(680,470)"/> <wire from="(560,540)" to="(570,540)"/> <wire from="(670,110)" to="(720,110)"/> <wire from="(670,120)" to="(680,120)"/> <wire from="(670,210)" to="(710,210)"/> <wire from="(670,220)" to="(680,220)"/> <wire from="(670,310)" to="(700,310)"/> <wire from="(670,320)" to="(680,320)"/> <wire from="(670,410)" to="(710,410)"/> <wire from="(670,420)" to="(680,420)"/> <wire from="(670,510)" to="(720,510)"/> <wire from="(670,520)" to="(720,520)"/> <wire from="(680,120)" to="(680,170)"/> <wire from="(680,120)" to="(780,120)"/> <wire from="(680,220)" to="(680,270)"/> <wire from="(680,220)" to="(770,220)"/> <wire from="(680,320)" to="(680,370)"/> <wire from="(680,320)" to="(690,320)"/> <wire from="(680,420)" to="(680,470)"/> <wire from="(680,420)" to="(770,420)"/> <wire from="(690,270)" to="(690,320)"/> <wire from="(690,270)" to="(760,270)"/> <wire from="(700,310)" to="(700,320)"/> <wire from="(700,320)" to="(720,320)"/> <wire from="(710,210)" to="(710,310)"/> <wire from="(710,310)" to="(720,310)"/> <wire from="(710,330)" to="(710,410)"/> <wire from="(710,330)" to="(720,330)"/> <wire from="(720,110)" to="(720,300)"/> <wire from="(720,340)" to="(720,510)"/> <wire from="(720,520)" to="(720,560)"/> <wire from="(720,520)" to="(780,520)"/> <wire from="(720,560)" to="(820,560)"/> <wire from="(740,290)" to="(750,290)"/> <wire from="(750,290)" to="(750,630)"/> <wire from="(750,630)" to="(1140,630)"/> <wire from="(760,270)" to="(760,320)"/> <wire from="(760,320)" to="(780,320)"/> <wire from="(770,220)" to="(770,310)"/> <wire from="(770,310)" to="(780,310)"/> <wire from="(770,330)" to="(770,420)"/> <wire from="(770,330)" to="(780,330)"/> <wire from="(780,120)" to="(780,300)"/> <wire from="(780,340)" to="(780,520)"/> <wire from="(800,290)" to="(810,290)"/> <wire from="(810,290)" to="(810,700)"/> <wire from="(810,700)" to="(1140,700)"/> <wire from="(820,140)" to="(820,560)"/> <wire from="(820,140)" to="(890,140)"/> <wire from="(850,130)" to="(850,230)"/> <wire from="(850,130)" to="(890,130)"/> <wire from="(850,230)" to="(850,330)"/> <wire from="(850,230)" to="(890,230)"/> <wire from="(850,330)" to="(850,430)"/> <wire from="(850,330)" to="(890,330)"/> <wire from="(850,430)" to="(850,530)"/> <wire from="(850,430)" to="(890,430)"/> <wire from="(850,530)" to="(890,530)"/> <wire from="(850,60)" to="(1080,60)"/> <wire from="(850,60)" to="(850,130)"/> <wire from="(860,120)" to="(860,220)"/> <wire from="(860,120)" to="(890,120)"/> <wire from="(860,220)" to="(860,320)"/> <wire from="(860,220)" to="(890,220)"/> <wire from="(860,320)" to="(860,420)"/> <wire from="(860,320)" to="(890,320)"/> <wire from="(860,420)" to="(860,520)"/> <wire from="(860,420)" to="(890,420)"/> <wire from="(860,50)" to="(1080,50)"/> <wire from="(860,50)" to="(860,120)"/> <wire from="(860,520)" to="(890,520)"/> <wire from="(870,110)" to="(870,210)"/> <wire from="(870,110)" to="(890,110)"/> <wire from="(870,210)" to="(870,310)"/> <wire from="(870,210)" to="(890,210)"/> <wire from="(870,310)" to="(870,410)"/> <wire from="(870,310)" to="(890,310)"/> <wire from="(870,40)" to="(1080,40)"/> <wire from="(870,40)" to="(870,110)"/> <wire from="(870,410)" to="(870,510)"/> <wire from="(870,410)" to="(890,410)"/> <wire from="(870,510)" to="(890,510)"/> <wire from="(880,170)" to="(1000,170)"/> <wire from="(880,170)" to="(880,240)"/> <wire from="(880,240)" to="(890,240)"/> <wire from="(880,270)" to="(1000,270)"/> <wire from="(880,270)" to="(880,340)"/> <wire from="(880,340)" to="(890,340)"/> <wire from="(880,370)" to="(1000,370)"/> <wire from="(880,370)" to="(880,440)"/> <wire from="(880,440)" to="(890,440)"/> <wire from="(880,470)" to="(1000,470)"/> <wire from="(880,470)" to="(880,540)"/> <wire from="(880,540)" to="(890,540)"/> <wire from="(990,110)" to="(1040,110)"/> <wire from="(990,120)" to="(1000,120)"/> <wire from="(990,210)" to="(1030,210)"/> <wire from="(990,220)" to="(1000,220)"/> <wire from="(990,310)" to="(1020,310)"/> <wire from="(990,320)" to="(1000,320)"/> <wire from="(990,410)" to="(1030,410)"/> <wire from="(990,420)" to="(1000,420)"/> <wire from="(990,510)" to="(1040,510)"/> <wire from="(990,520)" to="(1100,520)"/> </circuit> <circuit name="SoftCLK_SRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="SoftCLK_SRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F2"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(140,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(210,110)" name="Constant"/> <comp lib="0" loc="(210,90)" name="NoConnect"/> <comp lib="0" loc="(560,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(250,100)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(440,130)" name="TranspDLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(490,120)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,100)" to="(150,100)"/> <wire from="(140,130)" to="(180,130)"/> <wire from="(140,160)" to="(220,160)"/> <wire from="(140,40)" to="(480,40)"/> <wire from="(150,60)" to="(150,100)"/> <wire from="(150,60)" to="(230,60)"/> <wire from="(180,50)" to="(180,130)"/> <wire from="(180,50)" to="(290,50)"/> <wire from="(210,110)" to="(220,110)"/> <wire from="(210,90)" to="(220,90)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,140)" to="(280,140)"/> <wire from="(230,60)" to="(230,80)"/> <wire from="(250,100)" to="(270,100)"/> <wire from="(270,100)" to="(270,120)"/> <wire from="(270,120)" to="(280,120)"/> <wire from="(290,50)" to="(290,110)"/> <wire from="(310,130)" to="(340,130)"/> <wire from="(440,140)" to="(490,140)"/> <wire from="(480,120)" to="(490,120)"/> <wire from="(480,40)" to="(480,120)"/> <wire from="(530,120)" to="(560,120)"/> <wire from="(530,140)" to="(560,140)"/> </circuit> <circuit name="SoftCLK_PLA"> <a name="appearance" val="evolution"/> <a name="circuit" val="SoftCLK_PLA"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="s"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ns"/> <a name="radix" val="16"/> <a name="width" val="15"/> </comp> <comp lib="0" loc="(160,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="mode"/> </comp> <comp lib="0" loc="(1750,560)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1760,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="pla"/> <a name="output" val="true"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(220,200)" name="Splitter"> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(220,360)" name="Splitter"> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="1" loc="(1220,450)" name="NOR Gate"> <a name="inputs" val="16"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1470,460)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1720,460)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(470,440)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(720,450)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(970,450)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(1185,400)" name="Text"> <a name="text" val="nor-16"/> </comp> <wire from="(1000,350)" to="(1000,520)"/> <wire from="(1000,350)" to="(1500,350)"/> <wire from="(1000,520)" to="(1140,520)"/> <wire from="(1010,340)" to="(1010,510)"/> <wire from="(1010,340)" to="(1510,340)"/> <wire from="(1010,510)" to="(1140,510)"/> <wire from="(1020,330)" to="(1020,500)"/> <wire from="(1020,330)" to="(1520,330)"/> <wire from="(1020,500)" to="(1140,500)"/> <wire from="(1030,160)" to="(1030,490)"/> <wire from="(1030,160)" to="(1660,160)"/> <wire from="(1030,490)" to="(1140,490)"/> <wire from="(1040,310)" to="(1040,480)"/> <wire from="(1040,310)" to="(1290,310)"/> <wire from="(1040,480)" to="(1140,480)"/> <wire from="(1050,140)" to="(1050,470)"/> <wire from="(1050,140)" to="(1660,140)"/> <wire from="(1050,470)" to="(1140,470)"/> <wire from="(1060,290)" to="(1060,460)"/> <wire from="(1060,290)" to="(1560,290)"/> <wire from="(1060,460)" to="(1140,460)"/> <wire from="(1070,280)" to="(1070,440)"/> <wire from="(1070,280)" to="(1570,280)"/> <wire from="(1070,440)" to="(1140,440)"/> <wire from="(1080,270)" to="(1080,430)"/> <wire from="(1080,270)" to="(1330,270)"/> <wire from="(1080,430)" to="(1140,430)"/> <wire from="(1090,260)" to="(1090,420)"/> <wire from="(1090,260)" to="(1340,260)"/> <wire from="(1090,420)" to="(1140,420)"/> <wire from="(1100,410)" to="(1140,410)"/> <wire from="(1100,90)" to="(1100,410)"/> <wire from="(1100,90)" to="(1660,90)"/> <wire from="(1110,400)" to="(1140,400)"/> <wire from="(1110,80)" to="(1110,400)"/> <wire from="(1110,80)" to="(1660,80)"/> <wire from="(1120,390)" to="(1140,390)"/> <wire from="(1120,70)" to="(1120,390)"/> <wire from="(1120,70)" to="(1370,70)"/> <wire from="(1130,380)" to="(1140,380)"/> <wire from="(1130,60)" to="(1130,380)"/> <wire from="(1130,60)" to="(1660,60)"/> <wire from="(1140,50)" to="(1140,370)"/> <wire from="(1140,50)" to="(1390,50)"/> <wire from="(1220,450)" to="(1220,600)"/> <wire from="(1220,600)" to="(1730,600)"/> <wire from="(1250,190)" to="(1250,530)"/> <wire from="(1250,190)" to="(1660,190)"/> <wire from="(1250,530)" to="(1390,530)"/> <wire from="(1260,180)" to="(1260,520)"/> <wire from="(1260,180)" to="(1660,180)"/> <wire from="(1260,520)" to="(1390,520)"/> <wire from="(1270,170)" to="(1270,510)"/> <wire from="(1270,170)" to="(1660,170)"/> <wire from="(1270,510)" to="(1390,510)"/> <wire from="(1280,320)" to="(1280,500)"/> <wire from="(1280,320)" to="(1530,320)"/> <wire from="(1280,500)" to="(1390,500)"/> <wire from="(1290,310)" to="(1290,490)"/> <wire from="(1290,310)" to="(1540,310)"/> <wire from="(1290,490)" to="(1390,490)"/> <wire from="(1300,300)" to="(1300,480)"/> <wire from="(1300,300)" to="(1550,300)"/> <wire from="(1300,480)" to="(1390,480)"/> <wire from="(1310,130)" to="(1310,470)"/> <wire from="(1310,130)" to="(1660,130)"/> <wire from="(1310,470)" to="(1390,470)"/> <wire from="(1320,120)" to="(1320,460)"/> <wire from="(1320,120)" to="(1660,120)"/> <wire from="(1320,460)" to="(1390,460)"/> <wire from="(1330,270)" to="(1330,450)"/> <wire from="(1330,270)" to="(1580,270)"/> <wire from="(1330,450)" to="(1390,450)"/> <wire from="(1340,260)" to="(1340,440)"/> <wire from="(1340,260)" to="(1590,260)"/> <wire from="(1340,440)" to="(1390,440)"/> <wire from="(1350,250)" to="(1350,430)"/> <wire from="(1350,250)" to="(1600,250)"/> <wire from="(1350,430)" to="(1390,430)"/> <wire from="(1360,240)" to="(1360,420)"/> <wire from="(1360,240)" to="(1610,240)"/> <wire from="(1360,420)" to="(1390,420)"/> <wire from="(1370,410)" to="(1390,410)"/> <wire from="(1370,70)" to="(1370,410)"/> <wire from="(1370,70)" to="(1660,70)"/> <wire from="(1380,220)" to="(1380,400)"/> <wire from="(1380,220)" to="(1630,220)"/> <wire from="(1380,400)" to="(1390,400)"/> <wire from="(1390,50)" to="(1390,390)"/> <wire from="(1390,50)" to="(1660,50)"/> <wire from="(1470,460)" to="(1470,610)"/> <wire from="(1470,610)" to="(1730,610)"/> <wire from="(150,200)" to="(170,200)"/> <wire from="(150,90)" to="(200,90)"/> <wire from="(1500,350)" to="(1500,530)"/> <wire from="(1500,350)" to="(1660,350)"/> <wire from="(1500,530)" to="(1640,530)"/> <wire from="(1510,340)" to="(1510,520)"/> <wire from="(1510,340)" to="(1660,340)"/> <wire from="(1510,520)" to="(1640,520)"/> <wire from="(1520,330)" to="(1520,510)"/> <wire from="(1520,330)" to="(1660,330)"/> <wire from="(1520,510)" to="(1640,510)"/> <wire from="(1530,320)" to="(1530,500)"/> <wire from="(1530,320)" to="(1660,320)"/> <wire from="(1530,500)" to="(1640,500)"/> <wire from="(1540,310)" to="(1540,490)"/> <wire from="(1540,310)" to="(1660,310)"/> <wire from="(1540,490)" to="(1640,490)"/> <wire from="(1550,300)" to="(1550,480)"/> <wire from="(1550,300)" to="(1660,300)"/> <wire from="(1550,480)" to="(1640,480)"/> <wire from="(1560,290)" to="(1560,470)"/> <wire from="(1560,290)" to="(1660,290)"/> <wire from="(1560,470)" to="(1640,470)"/> <wire from="(1570,280)" to="(1570,460)"/> <wire from="(1570,280)" to="(1660,280)"/> <wire from="(1570,460)" to="(1640,460)"/> <wire from="(1580,270)" to="(1580,450)"/> <wire from="(1580,270)" to="(1660,270)"/> <wire from="(1580,450)" to="(1640,450)"/> <wire from="(1590,260)" to="(1590,440)"/> <wire from="(1590,260)" to="(1660,260)"/> <wire from="(1590,440)" to="(1640,440)"/> <wire from="(160,430)" to="(160,610)"/> <wire from="(160,610)" to="(990,610)"/> <wire from="(1600,250)" to="(1600,430)"/> <wire from="(1600,250)" to="(1660,250)"/> <wire from="(1600,430)" to="(1640,430)"/> <wire from="(1610,240)" to="(1610,420)"/> <wire from="(1610,240)" to="(1660,240)"/> <wire from="(1610,420)" to="(1640,420)"/> <wire from="(1620,230)" to="(1620,410)"/> <wire from="(1620,230)" to="(1660,230)"/> <wire from="(1620,410)" to="(1640,410)"/> <wire from="(1630,220)" to="(1630,400)"/> <wire from="(1630,220)" to="(1660,220)"/> <wire from="(1630,400)" to="(1640,400)"/> <wire from="(1640,210)" to="(1640,390)"/> <wire from="(1640,210)" to="(1660,210)"/> <wire from="(170,200)" to="(170,360)"/> <wire from="(170,360)" to="(220,360)"/> <wire from="(1720,460)" to="(1720,620)"/> <wire from="(1720,620)" to="(1730,620)"/> <wire from="(1750,150)" to="(1750,560)"/> <wire from="(1750,150)" to="(1760,150)"/> <wire from="(200,200)" to="(220,200)"/> <wire from="(200,90)" to="(200,200)"/> <wire from="(240,100)" to="(340,100)"/> <wire from="(240,110)" to="(330,110)"/> <wire from="(240,120)" to="(820,120)"/> <wire from="(240,130)" to="(1310,130)"/> <wire from="(240,140)" to="(550,140)"/> <wire from="(240,150)" to="(540,150)"/> <wire from="(240,160)" to="(780,160)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(240,180)" to="(510,180)"/> <wire from="(240,190)" to="(1250,190)"/> <wire from="(240,210)" to="(1640,210)"/> <wire from="(240,220)" to="(380,220)"/> <wire from="(240,230)" to="(370,230)"/> <wire from="(240,240)" to="(360,240)"/> <wire from="(240,250)" to="(350,250)"/> <wire from="(240,260)" to="(590,260)"/> <wire from="(240,270)" to="(580,270)"/> <wire from="(240,280)" to="(320,280)"/> <wire from="(240,290)" to="(310,290)"/> <wire from="(240,300)" to="(300,300)"/> <wire from="(240,310)" to="(290,310)"/> <wire from="(240,320)" to="(280,320)"/> <wire from="(240,330)" to="(770,330)"/> <wire from="(240,340)" to="(260,340)"/> <wire from="(240,350)" to="(250,350)"/> <wire from="(240,50)" to="(390,50)"/> <wire from="(240,60)" to="(630,60)"/> <wire from="(240,70)" to="(1120,70)"/> <wire from="(240,80)" to="(1110,80)"/> <wire from="(240,90)" to="(850,90)"/> <wire from="(250,350)" to="(250,510)"/> <wire from="(250,350)" to="(500,350)"/> <wire from="(250,510)" to="(390,510)"/> <wire from="(260,340)" to="(1010,340)"/> <wire from="(260,340)" to="(260,500)"/> <wire from="(260,500)" to="(390,500)"/> <wire from="(270,170)" to="(270,490)"/> <wire from="(270,170)" to="(520,170)"/> <wire from="(270,490)" to="(390,490)"/> <wire from="(280,320)" to="(280,480)"/> <wire from="(280,320)" to="(530,320)"/> <wire from="(280,480)" to="(390,480)"/> <wire from="(290,310)" to="(1040,310)"/> <wire from="(290,310)" to="(290,470)"/> <wire from="(290,470)" to="(390,470)"/> <wire from="(300,300)" to="(300,460)"/> <wire from="(300,300)" to="(800,300)"/> <wire from="(300,460)" to="(390,460)"/> <wire from="(310,290)" to="(310,450)"/> <wire from="(310,290)" to="(560,290)"/> <wire from="(310,450)" to="(390,450)"/> <wire from="(320,280)" to="(320,440)"/> <wire from="(320,280)" to="(570,280)"/> <wire from="(320,440)" to="(390,440)"/> <wire from="(330,110)" to="(330,430)"/> <wire from="(330,110)" to="(830,110)"/> <wire from="(330,430)" to="(390,430)"/> <wire from="(340,100)" to="(1660,100)"/> <wire from="(340,100)" to="(340,420)"/> <wire from="(340,420)" to="(390,420)"/> <wire from="(350,250)" to="(350,410)"/> <wire from="(350,250)" to="(600,250)"/> <wire from="(350,410)" to="(390,410)"/> <wire from="(360,240)" to="(360,400)"/> <wire from="(360,240)" to="(610,240)"/> <wire from="(360,400)" to="(390,400)"/> <wire from="(370,230)" to="(370,390)"/> <wire from="(370,230)" to="(620,230)"/> <wire from="(370,390)" to="(390,390)"/> <wire from="(380,220)" to="(1380,220)"/> <wire from="(380,220)" to="(380,380)"/> <wire from="(380,380)" to="(390,380)"/> <wire from="(390,50)" to="(390,370)"/> <wire from="(390,50)" to="(640,50)"/> <wire from="(470,440)" to="(470,570)"/> <wire from="(470,570)" to="(1730,570)"/> <wire from="(500,350)" to="(500,520)"/> <wire from="(500,350)" to="(750,350)"/> <wire from="(500,520)" to="(640,520)"/> <wire from="(510,180)" to="(510,510)"/> <wire from="(510,180)" to="(760,180)"/> <wire from="(510,510)" to="(640,510)"/> <wire from="(520,170)" to="(1270,170)"/> <wire from="(520,170)" to="(520,500)"/> <wire from="(520,500)" to="(640,500)"/> <wire from="(530,320)" to="(1280,320)"/> <wire from="(530,320)" to="(530,490)"/> <wire from="(530,490)" to="(640,490)"/> <wire from="(540,150)" to="(540,480)"/> <wire from="(540,150)" to="(790,150)"/> <wire from="(540,480)" to="(640,480)"/> <wire from="(550,140)" to="(1050,140)"/> <wire from="(550,140)" to="(550,470)"/> <wire from="(550,470)" to="(640,470)"/> <wire from="(560,290)" to="(560,460)"/> <wire from="(560,290)" to="(810,290)"/> <wire from="(560,460)" to="(640,460)"/> <wire from="(570,280)" to="(1070,280)"/> <wire from="(570,280)" to="(570,450)"/> <wire from="(570,450)" to="(640,450)"/> <wire from="(580,270)" to="(1080,270)"/> <wire from="(580,270)" to="(580,440)"/> <wire from="(580,440)" to="(640,440)"/> <wire from="(590,260)" to="(590,430)"/> <wire from="(590,260)" to="(840,260)"/> <wire from="(590,430)" to="(640,430)"/> <wire from="(600,250)" to="(1350,250)"/> <wire from="(600,250)" to="(600,420)"/> <wire from="(600,420)" to="(640,420)"/> <wire from="(610,240)" to="(610,410)"/> <wire from="(610,240)" to="(860,240)"/> <wire from="(610,410)" to="(640,410)"/> <wire from="(620,230)" to="(620,400)"/> <wire from="(620,230)" to="(870,230)"/> <wire from="(620,400)" to="(640,400)"/> <wire from="(630,390)" to="(640,390)"/> <wire from="(630,60)" to="(630,390)"/> <wire from="(630,60)" to="(880,60)"/> <wire from="(640,50)" to="(640,380)"/> <wire from="(640,50)" to="(890,50)"/> <wire from="(720,450)" to="(720,580)"/> <wire from="(720,580)" to="(1730,580)"/> <wire from="(750,350)" to="(1000,350)"/> <wire from="(750,350)" to="(750,520)"/> <wire from="(750,520)" to="(890,520)"/> <wire from="(760,180)" to="(1260,180)"/> <wire from="(760,180)" to="(760,510)"/> <wire from="(760,510)" to="(890,510)"/> <wire from="(770,330)" to="(1020,330)"/> <wire from="(770,330)" to="(770,500)"/> <wire from="(770,500)" to="(890,500)"/> <wire from="(780,160)" to="(1030,160)"/> <wire from="(780,160)" to="(780,490)"/> <wire from="(780,490)" to="(890,490)"/> <wire from="(790,150)" to="(1660,150)"/> <wire from="(790,150)" to="(790,480)"/> <wire from="(790,480)" to="(890,480)"/> <wire from="(800,300)" to="(1300,300)"/> <wire from="(800,300)" to="(800,470)"/> <wire from="(800,470)" to="(890,470)"/> <wire from="(810,290)" to="(1060,290)"/> <wire from="(810,290)" to="(810,460)"/> <wire from="(810,460)" to="(890,460)"/> <wire from="(820,120)" to="(1320,120)"/> <wire from="(820,120)" to="(820,450)"/> <wire from="(820,450)" to="(890,450)"/> <wire from="(830,110)" to="(1660,110)"/> <wire from="(830,110)" to="(830,440)"/> <wire from="(830,440)" to="(890,440)"/> <wire from="(840,260)" to="(1090,260)"/> <wire from="(840,260)" to="(840,430)"/> <wire from="(840,430)" to="(890,430)"/> <wire from="(850,420)" to="(890,420)"/> <wire from="(850,90)" to="(1100,90)"/> <wire from="(850,90)" to="(850,420)"/> <wire from="(860,240)" to="(1360,240)"/> <wire from="(860,240)" to="(860,410)"/> <wire from="(860,410)" to="(890,410)"/> <wire from="(870,230)" to="(1620,230)"/> <wire from="(870,230)" to="(870,400)"/> <wire from="(870,400)" to="(890,400)"/> <wire from="(880,390)" to="(890,390)"/> <wire from="(880,60)" to="(1130,60)"/> <wire from="(880,60)" to="(880,390)"/> <wire from="(890,50)" to="(1140,50)"/> <wire from="(890,50)" to="(890,380)"/> <wire from="(970,450)" to="(970,590)"/> <wire from="(970,590)" to="(1730,590)"/> <wire from="(990,530)" to="(1140,530)"/> <wire from="(990,530)" to="(990,610)"/> </circuit> <circuit name="SoftCLK_Control"> <a name="appearance" val="evolution"/> <a name="circuit" val="SoftCLK_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(130,100)" name="Tunnel"> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,130)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,170)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DMCINT"/> </comp> <comp lib="0" loc="(130,390)" name="Tunnel"> <a name="label" val="DMCINT"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(130,440)" name="Tunnel"> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4017"/> </comp> <comp lib="0" loc="(130,480)" name="Tunnel"> <a name="label" val="W4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(130,70)" name="Tunnel"> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(150,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="pla"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(150,710)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(150,710)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(190,230)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(210,220)" name="NoConnect"/> <comp lib="0" loc="(290,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(290,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(410,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(410,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(430,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,560)" name="Tunnel"> <a name="label" val="n_md"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(530,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(560,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(570,520)" name="NoConnect"/> <comp lib="0" loc="(580,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nACLK2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(580,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_md"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4017"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(630,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(720,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(750,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DMCINT"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(770,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(780,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(800,620)" name="NoConnect"/> <comp lib="0" loc="(840,280)" name="Tunnel"> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(850,410)" name="Tunnel"> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(930,640)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(950,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="F1_Reset"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="F2_Step"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="INT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LFO1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LFO2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(950,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="mode"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(370,390)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(390,300)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(460,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,400)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,160)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,620)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,690)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,620)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,690)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(690,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,410)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(800,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(820,280)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(820,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(830,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(850,600)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(405,270)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="LFO Outputs"/> </comp> <comp lib="8" loc="(640,530)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="mode to PLA"/> </comp> <comp lib="8" loc="(640,730)" name="Text"> <a name="text" val="int_ff"/> </comp> <comp lib="8" loc="(665,445)" name="Text"> <a name="text" val="z_ff"/> </comp> <comp lib="8" loc="(725,340)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="self-clear FF"/> </comp> <comp lib="8" loc="(765,250)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="LFSR reload"/> </comp> <comp lib="8" loc="(795,120)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="LFSR operation"/> </comp> <comp lib="8" loc="(865,695)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="to core"/> </comp> <comp loc="(420,520)" name="RegisterBit"> <a name="label" val="reg_mode"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,640)" name="RegisterBit"> <a name="label" val="reg_mask"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,520)" name="DLatch"> <a name="label" val="md_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(650,270)" name="DLatch"> <a name="label" val="z2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,600)" name="DLatch"> <a name="label" val="int_status"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(790,390)" name="DLatch"> <a name="label" val="z1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,540)" to="(200,540)"/> <wire from="(140,520)" to="(200,520)"/> <wire from="(140,640)" to="(200,640)"/> <wire from="(140,660)" to="(200,660)"/> <wire from="(150,230)" to="(190,230)"/> <wire from="(170,690)" to="(190,690)"/> <wire from="(170,700)" to="(180,700)"/> <wire from="(180,560)" to="(180,700)"/> <wire from="(180,560)" to="(200,560)"/> <wire from="(190,680)" to="(190,690)"/> <wire from="(190,680)" to="(200,680)"/> <wire from="(210,170)" to="(300,170)"/> <wire from="(210,180)" to="(260,180)"/> <wire from="(210,190)" to="(250,190)"/> <wire from="(210,200)" to="(230,200)"/> <wire from="(210,210)" to="(220,210)"/> <wire from="(220,210)" to="(220,320)"/> <wire from="(220,210)" to="(340,210)"/> <wire from="(220,320)" to="(220,400)"/> <wire from="(220,320)" to="(310,320)"/> <wire from="(220,400)" to="(310,400)"/> <wire from="(230,200)" to="(230,310)"/> <wire from="(230,200)" to="(330,200)"/> <wire from="(230,310)" to="(230,380)"/> <wire from="(230,310)" to="(310,310)"/> <wire from="(230,380)" to="(230,490)"/> <wire from="(230,380)" to="(310,380)"/> <wire from="(230,490)" to="(440,490)"/> <wire from="(250,190)" to="(250,290)"/> <wire from="(250,290)" to="(310,290)"/> <wire from="(260,180)" to="(260,280)"/> <wire from="(260,280)" to="(260,370)"/> <wire from="(260,280)" to="(310,280)"/> <wire from="(260,370)" to="(310,370)"/> <wire from="(290,350)" to="(300,350)"/> <wire from="(290,430)" to="(300,430)"/> <wire from="(300,170)" to="(300,270)"/> <wire from="(300,270)" to="(310,270)"/> <wire from="(300,330)" to="(300,350)"/> <wire from="(300,330)" to="(310,330)"/> <wire from="(300,410)" to="(300,430)"/> <wire from="(300,410)" to="(310,410)"/> <wire from="(330,160)" to="(330,200)"/> <wire from="(330,160)" to="(460,160)"/> <wire from="(340,170)" to="(340,210)"/> <wire from="(340,170)" to="(460,170)"/> <wire from="(370,390)" to="(420,390)"/> <wire from="(390,300)" to="(420,300)"/> <wire from="(410,320)" to="(420,320)"/> <wire from="(410,410)" to="(420,410)"/> <wire from="(420,540)" to="(460,540)"/> <wire from="(420,640)" to="(430,640)"/> <wire from="(430,140)" to="(450,140)"/> <wire from="(430,640)" to="(430,720)"/> <wire from="(430,720)" to="(580,720)"/> <wire from="(440,490)" to="(440,630)"/> <wire from="(440,630)" to="(530,630)"/> <wire from="(450,140)" to="(450,150)"/> <wire from="(450,150)" to="(460,150)"/> <wire from="(460,310)" to="(470,310)"/> <wire from="(460,400)" to="(470,400)"/> <wire from="(460,540)" to="(460,560)"/> <wire from="(460,540)" to="(520,540)"/> <wire from="(460,560)" to="(460,610)"/> <wire from="(460,560)" to="(470,560)"/> <wire from="(460,610)" to="(530,610)"/> <wire from="(490,310)" to="(510,310)"/> <wire from="(490,400)" to="(500,400)"/> <wire from="(500,160)" to="(520,160)"/> <wire from="(500,400)" to="(500,480)"/> <wire from="(500,480)" to="(950,480)"/> <wire from="(500,500)" to="(510,500)"/> <wire from="(500,680)" to="(520,680)"/> <wire from="(500,700)" to="(520,700)"/> <wire from="(510,310)" to="(510,460)"/> <wire from="(510,460)" to="(950,460)"/> <wire from="(510,500)" to="(510,520)"/> <wire from="(510,520)" to="(520,520)"/> <wire from="(520,150)" to="(520,160)"/> <wire from="(520,150)" to="(550,150)"/> <wire from="(520,160)" to="(520,190)"/> <wire from="(520,190)" to="(540,190)"/> <wire from="(530,210)" to="(540,210)"/> <wire from="(560,350)" to="(580,350)"/> <wire from="(560,520)" to="(570,520)"/> <wire from="(560,540)" to="(930,540)"/> <wire from="(560,620)" to="(580,620)"/> <wire from="(560,690)" to="(570,690)"/> <wire from="(570,150)" to="(600,150)"/> <wire from="(570,320)" to="(570,330)"/> <wire from="(570,320)" to="(760,320)"/> <wire from="(570,330)" to="(580,330)"/> <wire from="(570,680)" to="(570,690)"/> <wire from="(570,680)" to="(610,680)"/> <wire from="(580,130)" to="(600,130)"/> <wire from="(580,200)" to="(680,200)"/> <wire from="(580,610)" to="(580,620)"/> <wire from="(580,610)" to="(630,610)"/> <wire from="(580,700)" to="(580,720)"/> <wire from="(580,700)" to="(610,700)"/> <wire from="(580,740)" to="(600,740)"/> <wire from="(600,630)" to="(600,650)"/> <wire from="(600,630)" to="(630,630)"/> <wire from="(600,650)" to="(680,650)"/> <wire from="(600,660)" to="(600,670)"/> <wire from="(600,660)" to="(690,660)"/> <wire from="(600,670)" to="(610,670)"/> <wire from="(600,710)" to="(600,740)"/> <wire from="(600,710)" to="(610,710)"/> <wire from="(620,290)" to="(650,290)"/> <wire from="(620,340)" to="(650,340)"/> <wire from="(620,410)" to="(650,410)"/> <wire from="(620,430)" to="(640,430)"/> <wire from="(630,250)" to="(640,250)"/> <wire from="(640,140)" to="(660,140)"/> <wire from="(640,250)" to="(640,270)"/> <wire from="(640,270)" to="(650,270)"/> <wire from="(640,360)" to="(640,380)"/> <wire from="(640,360)" to="(650,360)"/> <wire from="(640,380)" to="(700,380)"/> <wire from="(640,390)" to="(640,400)"/> <wire from="(640,390)" to="(710,390)"/> <wire from="(640,400)" to="(650,400)"/> <wire from="(640,420)" to="(640,430)"/> <wire from="(640,420)" to="(650,420)"/> <wire from="(660,140)" to="(660,160)"/> <wire from="(660,160)" to="(950,160)"/> <wire from="(670,620)" to="(690,620)"/> <wire from="(670,690)" to="(680,690)"/> <wire from="(680,130)" to="(680,200)"/> <wire from="(680,130)" to="(950,130)"/> <wire from="(680,650)" to="(680,690)"/> <wire from="(680,690)" to="(760,690)"/> <wire from="(690,270)" to="(780,270)"/> <wire from="(690,350)" to="(710,350)"/> <wire from="(690,410)" to="(700,410)"/> <wire from="(690,620)" to="(690,660)"/> <wire from="(690,620)" to="(740,620)"/> <wire from="(700,380)" to="(700,410)"/> <wire from="(700,410)" to="(790,410)"/> <wire from="(710,350)" to="(710,390)"/> <wire from="(720,590)" to="(730,590)"/> <wire from="(730,590)" to="(730,600)"/> <wire from="(730,600)" to="(740,600)"/> <wire from="(750,710)" to="(760,710)"/> <wire from="(760,290)" to="(760,320)"/> <wire from="(760,290)" to="(780,290)"/> <wire from="(760,320)" to="(850,320)"/> <wire from="(770,370)" to="(780,370)"/> <wire from="(780,370)" to="(780,390)"/> <wire from="(780,390)" to="(790,390)"/> <wire from="(780,560)" to="(790,560)"/> <wire from="(780,600)" to="(820,600)"/> <wire from="(780,620)" to="(800,620)"/> <wire from="(790,560)" to="(790,570)"/> <wire from="(790,570)" to="(800,570)"/> <wire from="(800,700)" to="(810,700)"/> <wire from="(820,280)" to="(840,280)"/> <wire from="(820,570)" to="(830,570)"/> <wire from="(830,390)" to="(850,390)"/> <wire from="(830,410)" to="(850,410)"/> <wire from="(830,570)" to="(830,590)"/> <wire from="(830,700)" to="(890,700)"/> <wire from="(850,320)" to="(850,390)"/> <wire from="(850,600)" to="(910,600)"/> <wire from="(890,360)" to="(890,700)"/> <wire from="(890,360)" to="(950,360)"/> <wire from="(910,600)" to="(910,650)"/> <wire from="(930,640)" to="(950,640)"/> <wire from="(930,90)" to="(930,540)"/> <wire from="(930,90)" to="(950,90)"/> </circuit> <circuit name="RWDecode"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RWDecode"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(150,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_REGRD"/> </comp> <comp lib="0" loc="(150,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="APU_RW"/> </comp> <comp lib="0" loc="(400,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(400,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,190)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,70)" name="NAND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,70)" name="Buffer"/> <comp lib="1" loc="(390,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(70,55)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="from DMA buf"/> </comp> <wire from="(150,120)" to="(190,120)"/> <wire from="(150,170)" to="(200,170)"/> <wire from="(150,220)" to="(170,220)"/> <wire from="(150,70)" to="(240,70)"/> <wire from="(190,220)" to="(200,220)"/> <wire from="(190,60)" to="(190,120)"/> <wire from="(190,60)" to="(280,60)"/> <wire from="(200,170)" to="(200,180)"/> <wire from="(200,180)" to="(210,180)"/> <wire from="(200,200)" to="(200,220)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(240,120)" to="(330,120)"/> <wire from="(240,70)" to="(240,120)"/> <wire from="(240,70)" to="(280,70)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(260,80)" to="(260,190)"/> <wire from="(260,80)" to="(280,80)"/> <wire from="(320,70)" to="(340,70)"/> <wire from="(350,120)" to="(370,120)"/> <wire from="(360,70)" to="(400,70)"/> <wire from="(390,120)" to="(400,120)"/> </circuit> <circuit name="RegPredecode"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegPredecode"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CPU_RnW"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CPU_Ax"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(210,220)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(210,400)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(550,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_REGRD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(550,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_REGWR"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(390,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,130)" name="NOR Gate"> <a name="inputs" val="12"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(490,310)" name="NOR Gate"> <a name="inputs" val="12"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(530,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(445,260)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="nor 12"/> </comp> <comp lib="8" loc="(450,85)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="nor 12"/> </comp> <wire from="(130,260)" to="(160,260)"/> <wire from="(150,220)" to="(190,220)"/> <wire from="(160,230)" to="(160,260)"/> <wire from="(160,230)" to="(370,230)"/> <wire from="(160,260)" to="(160,420)"/> <wire from="(160,420)" to="(370,420)"/> <wire from="(190,220)" to="(190,400)"/> <wire from="(190,220)" to="(210,220)"/> <wire from="(190,400)" to="(210,400)"/> <wire from="(230,110)" to="(260,110)"/> <wire from="(230,120)" to="(270,120)"/> <wire from="(230,130)" to="(280,130)"/> <wire from="(230,140)" to="(290,140)"/> <wire from="(230,150)" to="(300,150)"/> <wire from="(230,160)" to="(310,160)"/> <wire from="(230,170)" to="(320,170)"/> <wire from="(230,180)" to="(330,180)"/> <wire from="(230,190)" to="(340,190)"/> <wire from="(230,200)" to="(350,200)"/> <wire from="(230,210)" to="(360,210)"/> <wire from="(230,290)" to="(260,290)"/> <wire from="(230,300)" to="(270,300)"/> <wire from="(230,310)" to="(280,310)"/> <wire from="(230,320)" to="(290,320)"/> <wire from="(230,330)" to="(300,330)"/> <wire from="(230,340)" to="(310,340)"/> <wire from="(230,350)" to="(320,350)"/> <wire from="(230,360)" to="(330,360)"/> <wire from="(230,370)" to="(340,370)"/> <wire from="(230,380)" to="(350,380)"/> <wire from="(230,390)" to="(360,390)"/> <wire from="(260,250)" to="(260,290)"/> <wire from="(260,250)" to="(410,250)"/> <wire from="(260,70)" to="(260,110)"/> <wire from="(260,70)" to="(410,70)"/> <wire from="(270,260)" to="(270,300)"/> <wire from="(270,260)" to="(410,260)"/> <wire from="(270,80)" to="(270,120)"/> <wire from="(270,80)" to="(410,80)"/> <wire from="(280,270)" to="(280,310)"/> <wire from="(280,270)" to="(410,270)"/> <wire from="(280,90)" to="(280,130)"/> <wire from="(280,90)" to="(410,90)"/> <wire from="(290,100)" to="(290,140)"/> <wire from="(290,100)" to="(410,100)"/> <wire from="(290,280)" to="(290,320)"/> <wire from="(290,280)" to="(410,280)"/> <wire from="(300,110)" to="(300,150)"/> <wire from="(300,110)" to="(410,110)"/> <wire from="(300,290)" to="(300,330)"/> <wire from="(300,290)" to="(410,290)"/> <wire from="(310,120)" to="(310,160)"/> <wire from="(310,120)" to="(410,120)"/> <wire from="(310,300)" to="(310,340)"/> <wire from="(310,300)" to="(410,300)"/> <wire from="(320,140)" to="(320,170)"/> <wire from="(320,140)" to="(410,140)"/> <wire from="(320,320)" to="(320,350)"/> <wire from="(320,320)" to="(410,320)"/> <wire from="(330,150)" to="(330,180)"/> <wire from="(330,150)" to="(410,150)"/> <wire from="(330,330)" to="(330,360)"/> <wire from="(330,330)" to="(410,330)"/> <wire from="(340,160)" to="(340,190)"/> <wire from="(340,160)" to="(410,160)"/> <wire from="(340,340)" to="(340,370)"/> <wire from="(340,340)" to="(410,340)"/> <wire from="(350,170)" to="(350,200)"/> <wire from="(350,170)" to="(370,170)"/> <wire from="(350,350)" to="(350,380)"/> <wire from="(350,350)" to="(370,350)"/> <wire from="(360,180)" to="(360,210)"/> <wire from="(360,180)" to="(410,180)"/> <wire from="(360,360)" to="(360,390)"/> <wire from="(360,360)" to="(410,360)"/> <wire from="(370,200)" to="(370,230)"/> <wire from="(370,200)" to="(380,200)"/> <wire from="(370,370)" to="(370,420)"/> <wire from="(370,370)" to="(410,370)"/> <wire from="(390,170)" to="(410,170)"/> <wire from="(390,350)" to="(410,350)"/> <wire from="(400,190)" to="(400,200)"/> <wire from="(400,190)" to="(410,190)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(490,310)" to="(510,310)"/> <wire from="(530,130)" to="(550,130)"/> <wire from="(530,310)" to="(550,310)"/> </circuit> <circuit name="RegSel"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegSel"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1120,1400)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1160,1500)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="APU_Ax"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(130,320)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(150,380)" name="NoConnect"/> <comp lib="0" loc="(150,390)" name="NoConnect"/> <comp lib="0" loc="(150,400)" name="NoConnect"/> <comp lib="0" loc="(150,410)" name="NoConnect"/> <comp lib="0" loc="(150,420)" name="NoConnect"/> <comp lib="0" loc="(150,430)" name="NoConnect"/> <comp lib="0" loc="(150,440)" name="NoConnect"/> <comp lib="0" loc="(150,450)" name="NoConnect"/> <comp lib="0" loc="(150,460)" name="NoConnect"/> <comp lib="0" loc="(150,470)" name="NoConnect"/> <comp lib="0" loc="(150,480)" name="NoConnect"/> <comp lib="0" loc="(1660,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4018"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R401A"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4015"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4002"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4001"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4005"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4006"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4008"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W400A"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W400B"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W400E"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4013"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4012"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4010"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4014"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1010)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4011"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1040)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W400F"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1070)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4017"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4016"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4016"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,1160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4017"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4019"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,800)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W401A"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,830)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4003"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,860)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4007"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,890)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4004"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,920)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W400C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,950)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4000"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1690,980)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W4015"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(180,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_REGRD"/> </comp> <comp lib="0" loc="(180,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_REGWR"/> </comp> <comp lib="0" loc="(180,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(210,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(210,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBG"/> </comp> <comp lib="0" loc="(230,320)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(270,420)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="1" loc="(1460,1010)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1080)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1150)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1220)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1290)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1360)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1430)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,1500)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,590)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,660)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,730)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,800)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,870)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1460,940)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1510,1010)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1080)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,1500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,800)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,940)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1530,580)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,650)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1000)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1070)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,1490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,720)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,790)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,860)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1580,930)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1610,640)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,420)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="5"/> </comp> <comp lib="1" loc="(850,1060)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,150)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,220)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,290)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,360)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,430)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,500)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,570)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,640)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,710)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,780)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,80)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,850)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,920)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(850,990)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(920,1060)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(920,990)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(980,140)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(980,70)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,1050)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,280)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,630)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,840)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,910)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,980)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(330,440)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="address complement"/> </comp> <wire from="(1000,210)" to="(1000,280)"/> <wire from="(1000,210)" to="(1660,210)"/> <wire from="(1020,240)" to="(1020,350)"/> <wire from="(1020,240)" to="(1660,240)"/> <wire from="(1030,270)" to="(1030,420)"/> <wire from="(1030,270)" to="(1660,270)"/> <wire from="(1040,300)" to="(1040,490)"/> <wire from="(1040,300)" to="(1660,300)"/> <wire from="(1050,330)" to="(1050,560)"/> <wire from="(1050,330)" to="(1660,330)"/> <wire from="(1060,360)" to="(1060,630)"/> <wire from="(1060,360)" to="(1660,360)"/> <wire from="(1070,1140)" to="(1070,1550)"/> <wire from="(1070,1550)" to="(1270,1550)"/> <wire from="(1070,390)" to="(1070,700)"/> <wire from="(1070,390)" to="(1660,390)"/> <wire from="(1080,1170)" to="(1080,1540)"/> <wire from="(1080,1540)" to="(1260,1540)"/> <wire from="(1080,420)" to="(1080,770)"/> <wire from="(1080,420)" to="(1660,420)"/> <wire from="(1090,450)" to="(1090,840)"/> <wire from="(1090,450)" to="(1660,450)"/> <wire from="(1100,480)" to="(1100,910)"/> <wire from="(1100,480)" to="(1660,480)"/> <wire from="(1110,510)" to="(1110,980)"/> <wire from="(1110,510)" to="(1660,510)"/> <wire from="(1120,120)" to="(1660,120)"/> <wire from="(1120,140)" to="(1120,150)"/> <wire from="(1120,150)" to="(1660,150)"/> <wire from="(1120,540)" to="(1120,1050)"/> <wire from="(1120,540)" to="(1660,540)"/> <wire from="(1120,70)" to="(1120,120)"/> <wire from="(1140,1330)" to="(1140,1350)"/> <wire from="(1140,1330)" to="(1190,1330)"/> <wire from="(1140,1360)" to="(1150,1360)"/> <wire from="(1140,1370)" to="(1160,1370)"/> <wire from="(1140,1380)" to="(1170,1380)"/> <wire from="(1140,1390)" to="(1180,1390)"/> <wire from="(1140,560)" to="(1140,630)"/> <wire from="(1140,630)" to="(1140,840)"/> <wire from="(1140,630)" to="(1380,630)"/> <wire from="(1140,840)" to="(1140,910)"/> <wire from="(1140,840)" to="(1380,840)"/> <wire from="(1140,910)" to="(1140,980)"/> <wire from="(1140,910)" to="(1380,910)"/> <wire from="(1140,980)" to="(1140,1330)"/> <wire from="(1140,980)" to="(1380,980)"/> <wire from="(1150,1060)" to="(1150,1130)"/> <wire from="(1150,1060)" to="(1380,1060)"/> <wire from="(1150,1130)" to="(1150,1360)"/> <wire from="(1150,1130)" to="(1380,1130)"/> <wire from="(1150,570)" to="(1150,850)"/> <wire from="(1150,570)" to="(1380,570)"/> <wire from="(1150,850)" to="(1150,920)"/> <wire from="(1150,850)" to="(1380,850)"/> <wire from="(1150,920)" to="(1150,990)"/> <wire from="(1150,920)" to="(1380,920)"/> <wire from="(1150,990)" to="(1150,1060)"/> <wire from="(1150,990)" to="(1380,990)"/> <wire from="(1160,1000)" to="(1160,1140)"/> <wire from="(1160,1000)" to="(1380,1000)"/> <wire from="(1160,1140)" to="(1160,1370)"/> <wire from="(1160,1140)" to="(1380,1140)"/> <wire from="(1160,580)" to="(1160,650)"/> <wire from="(1160,580)" to="(1380,580)"/> <wire from="(1160,650)" to="(1160,720)"/> <wire from="(1160,650)" to="(1380,650)"/> <wire from="(1160,720)" to="(1160,1000)"/> <wire from="(1160,720)" to="(1380,720)"/> <wire from="(1170,1020)" to="(1170,1090)"/> <wire from="(1170,1020)" to="(1380,1020)"/> <wire from="(1170,1090)" to="(1170,1160)"/> <wire from="(1170,1090)" to="(1380,1090)"/> <wire from="(1170,1160)" to="(1170,1300)"/> <wire from="(1170,1160)" to="(1380,1160)"/> <wire from="(1170,1300)" to="(1170,1370)"/> <wire from="(1170,1300)" to="(1330,1300)"/> <wire from="(1170,1370)" to="(1170,1380)"/> <wire from="(1170,1370)" to="(1290,1370)"/> <wire from="(1170,590)" to="(1170,740)"/> <wire from="(1170,740)" to="(1170,810)"/> <wire from="(1170,740)" to="(1380,740)"/> <wire from="(1170,810)" to="(1170,880)"/> <wire from="(1170,810)" to="(1380,810)"/> <wire from="(1170,880)" to="(1170,1020)"/> <wire from="(1170,880)" to="(1380,880)"/> <wire from="(1180,1030)" to="(1180,1240)"/> <wire from="(1180,1030)" to="(1380,1030)"/> <wire from="(1180,1240)" to="(1180,1390)"/> <wire from="(1180,1240)" to="(1380,1240)"/> <wire from="(1180,1450)" to="(1200,1450)"/> <wire from="(1180,1460)" to="(1210,1460)"/> <wire from="(1180,1470)" to="(1220,1470)"/> <wire from="(1180,1480)" to="(1230,1480)"/> <wire from="(1180,1490)" to="(1240,1490)"/> <wire from="(1180,600)" to="(1180,750)"/> <wire from="(1180,750)" to="(1180,820)"/> <wire from="(1180,750)" to="(1380,750)"/> <wire from="(1180,820)" to="(1180,890)"/> <wire from="(1180,820)" to="(1380,820)"/> <wire from="(1180,890)" to="(1180,960)"/> <wire from="(1180,890)" to="(1380,890)"/> <wire from="(1180,960)" to="(1180,1030)"/> <wire from="(1180,960)" to="(1380,960)"/> <wire from="(1190,1330)" to="(1190,1400)"/> <wire from="(1190,1330)" to="(1380,1330)"/> <wire from="(1190,1400)" to="(1380,1400)"/> <wire from="(1200,1050)" to="(1200,1120)"/> <wire from="(1200,1050)" to="(1380,1050)"/> <wire from="(1200,1120)" to="(1200,1190)"/> <wire from="(1200,1120)" to="(1380,1120)"/> <wire from="(1200,1190)" to="(1200,1260)"/> <wire from="(1200,1190)" to="(1380,1190)"/> <wire from="(1200,1260)" to="(1200,1450)"/> <wire from="(1200,1260)" to="(1300,1260)"/> <wire from="(1200,560)" to="(1200,700)"/> <wire from="(1200,560)" to="(1380,560)"/> <wire from="(1200,700)" to="(1200,770)"/> <wire from="(1200,700)" to="(1380,700)"/> <wire from="(1200,770)" to="(1200,1050)"/> <wire from="(1200,770)" to="(1380,770)"/> <wire from="(1210,1200)" to="(1210,1270)"/> <wire from="(1210,1200)" to="(1380,1200)"/> <wire from="(1210,1270)" to="(1210,1340)"/> <wire from="(1210,1270)" to="(1380,1270)"/> <wire from="(1210,1340)" to="(1210,1410)"/> <wire from="(1210,1340)" to="(1380,1340)"/> <wire from="(1210,1410)" to="(1210,1460)"/> <wire from="(1210,1410)" to="(1310,1410)"/> <wire from="(1210,590)" to="(1210,640)"/> <wire from="(1210,640)" to="(1210,710)"/> <wire from="(1210,640)" to="(1380,640)"/> <wire from="(1210,710)" to="(1210,780)"/> <wire from="(1210,710)" to="(1380,710)"/> <wire from="(1210,780)" to="(1210,1200)"/> <wire from="(1210,780)" to="(1380,780)"/> <wire from="(1220,1070)" to="(1220,1210)"/> <wire from="(1220,1070)" to="(1380,1070)"/> <wire from="(1220,1210)" to="(1220,1280)"/> <wire from="(1220,1210)" to="(1380,1210)"/> <wire from="(1220,1280)" to="(1220,1350)"/> <wire from="(1220,1280)" to="(1380,1280)"/> <wire from="(1220,1350)" to="(1220,1420)"/> <wire from="(1220,1350)" to="(1380,1350)"/> <wire from="(1220,1420)" to="(1220,1470)"/> <wire from="(1220,1420)" to="(1320,1420)"/> <wire from="(1220,590)" to="(1220,790)"/> <wire from="(1220,790)" to="(1220,860)"/> <wire from="(1220,790)" to="(1380,790)"/> <wire from="(1220,860)" to="(1220,930)"/> <wire from="(1220,860)" to="(1380,860)"/> <wire from="(1220,930)" to="(1220,1070)"/> <wire from="(1220,930)" to="(1380,930)"/> <wire from="(1230,1230)" to="(1230,1480)"/> <wire from="(1230,1230)" to="(1380,1230)"/> <wire from="(1230,600)" to="(1230,670)"/> <wire from="(1230,600)" to="(1380,600)"/> <wire from="(1230,670)" to="(1230,950)"/> <wire from="(1230,670)" to="(1380,670)"/> <wire from="(1230,950)" to="(1230,1230)"/> <wire from="(1230,950)" to="(1380,950)"/> <wire from="(1240,1100)" to="(1240,1170)"/> <wire from="(1240,1100)" to="(1380,1100)"/> <wire from="(1240,1170)" to="(1240,1310)"/> <wire from="(1240,1170)" to="(1380,1170)"/> <wire from="(1240,1310)" to="(1240,1380)"/> <wire from="(1240,1310)" to="(1380,1310)"/> <wire from="(1240,1380)" to="(1240,1450)"/> <wire from="(1240,1380)" to="(1380,1380)"/> <wire from="(1240,1450)" to="(1240,1490)"/> <wire from="(1240,1450)" to="(1380,1450)"/> <wire from="(1240,1490)" to="(1240,1520)"/> <wire from="(1240,1520)" to="(1380,1520)"/> <wire from="(1240,610)" to="(1240,680)"/> <wire from="(1240,610)" to="(1380,610)"/> <wire from="(1240,680)" to="(1240,1100)"/> <wire from="(1240,680)" to="(1380,680)"/> <wire from="(1260,1320)" to="(1260,1390)"/> <wire from="(1260,1320)" to="(1380,1320)"/> <wire from="(1260,1390)" to="(1260,1540)"/> <wire from="(1260,1390)" to="(1380,1390)"/> <wire from="(1260,620)" to="(1260,1320)"/> <wire from="(1260,620)" to="(1380,620)"/> <wire from="(1270,1040)" to="(1270,1110)"/> <wire from="(1270,1040)" to="(1380,1040)"/> <wire from="(1270,1110)" to="(1270,1180)"/> <wire from="(1270,1110)" to="(1380,1110)"/> <wire from="(1270,1180)" to="(1270,1250)"/> <wire from="(1270,1180)" to="(1380,1180)"/> <wire from="(1270,1250)" to="(1270,1460)"/> <wire from="(1270,1250)" to="(1380,1250)"/> <wire from="(1270,1460)" to="(1270,1530)"/> <wire from="(1270,1460)" to="(1380,1460)"/> <wire from="(1270,1530)" to="(1270,1550)"/> <wire from="(1270,1530)" to="(1380,1530)"/> <wire from="(1270,690)" to="(1270,760)"/> <wire from="(1270,690)" to="(1380,690)"/> <wire from="(1270,760)" to="(1270,830)"/> <wire from="(1270,760)" to="(1380,760)"/> <wire from="(1270,830)" to="(1270,900)"/> <wire from="(1270,830)" to="(1380,830)"/> <wire from="(1270,900)" to="(1270,970)"/> <wire from="(1270,900)" to="(1380,900)"/> <wire from="(1270,970)" to="(1270,1040)"/> <wire from="(1270,970)" to="(1380,970)"/> <wire from="(1290,1370)" to="(1290,1440)"/> <wire from="(1290,1370)" to="(1380,1370)"/> <wire from="(1290,1440)" to="(1380,1440)"/> <wire from="(1300,1260)" to="(1300,1470)"/> <wire from="(1300,1260)" to="(1380,1260)"/> <wire from="(1300,1470)" to="(1380,1470)"/> <wire from="(1310,1410)" to="(1310,1480)"/> <wire from="(1310,1410)" to="(1380,1410)"/> <wire from="(1310,1480)" to="(1380,1480)"/> <wire from="(1320,1420)" to="(1320,1490)"/> <wire from="(1320,1420)" to="(1380,1420)"/> <wire from="(1320,1490)" to="(1380,1490)"/> <wire from="(1330,1300)" to="(1330,1510)"/> <wire from="(1330,1300)" to="(1380,1300)"/> <wire from="(1330,1510)" to="(1380,1510)"/> <wire from="(1460,1010)" to="(1490,1010)"/> <wire from="(1460,1080)" to="(1490,1080)"/> <wire from="(1460,1150)" to="(1490,1150)"/> <wire from="(1460,1220)" to="(1490,1220)"/> <wire from="(1460,1290)" to="(1490,1290)"/> <wire from="(1460,1360)" to="(1490,1360)"/> <wire from="(1460,1430)" to="(1490,1430)"/> <wire from="(1460,1500)" to="(1490,1500)"/> <wire from="(1460,590)" to="(1490,590)"/> <wire from="(1460,660)" to="(1490,660)"/> <wire from="(1460,730)" to="(1490,730)"/> <wire from="(1460,800)" to="(1490,800)"/> <wire from="(1460,870)" to="(1490,870)"/> <wire from="(1460,940)" to="(1490,940)"/> <wire from="(1470,30)" to="(1470,570)"/> <wire from="(1470,570)" to="(1470,640)"/> <wire from="(1470,570)" to="(1490,570)"/> <wire from="(1470,640)" to="(1490,640)"/> <wire from="(150,330)" to="(160,330)"/> <wire from="(150,340)" to="(160,340)"/> <wire from="(150,350)" to="(160,350)"/> <wire from="(150,360)" to="(160,360)"/> <wire from="(150,370)" to="(160,370)"/> <wire from="(1510,1010)" to="(1540,1010)"/> <wire from="(1510,1080)" to="(1540,1080)"/> <wire from="(1510,1150)" to="(1540,1150)"/> <wire from="(1510,1220)" to="(1540,1220)"/> <wire from="(1510,1290)" to="(1640,1290)"/> <wire from="(1510,1360)" to="(1650,1360)"/> <wire from="(1510,1430)" to="(1540,1430)"/> <wire from="(1510,1500)" to="(1540,1500)"/> <wire from="(1510,730)" to="(1540,730)"/> <wire from="(1510,800)" to="(1540,800)"/> <wire from="(1510,870)" to="(1540,870)"/> <wire from="(1510,940)" to="(1540,940)"/> <wire from="(1520,1060)" to="(1520,1130)"/> <wire from="(1520,1060)" to="(1540,1060)"/> <wire from="(1520,1130)" to="(1520,1200)"/> <wire from="(1520,1130)" to="(1540,1130)"/> <wire from="(1520,1200)" to="(1520,1410)"/> <wire from="(1520,1200)" to="(1540,1200)"/> <wire from="(1520,1410)" to="(1520,1480)"/> <wire from="(1520,1410)" to="(1540,1410)"/> <wire from="(1520,1480)" to="(1540,1480)"/> <wire from="(1520,680)" to="(1520,710)"/> <wire from="(1520,680)" to="(1550,680)"/> <wire from="(1520,710)" to="(1520,780)"/> <wire from="(1520,710)" to="(1540,710)"/> <wire from="(1520,780)" to="(1520,850)"/> <wire from="(1520,780)" to="(1540,780)"/> <wire from="(1520,850)" to="(1520,920)"/> <wire from="(1520,850)" to="(1540,850)"/> <wire from="(1520,920)" to="(1520,990)"/> <wire from="(1520,920)" to="(1540,920)"/> <wire from="(1520,990)" to="(1520,1060)"/> <wire from="(1520,990)" to="(1540,990)"/> <wire from="(1530,580)" to="(1690,580)"/> <wire from="(1530,650)" to="(1570,650)"/> <wire from="(1550,20)" to="(1550,630)"/> <wire from="(1550,630)" to="(1550,680)"/> <wire from="(1550,630)" to="(1570,630)"/> <wire from="(1580,1000)" to="(1600,1000)"/> <wire from="(1580,1070)" to="(1610,1070)"/> <wire from="(1580,1140)" to="(1620,1140)"/> <wire from="(1580,1210)" to="(1630,1210)"/> <wire from="(1580,1420)" to="(1660,1420)"/> <wire from="(1580,1490)" to="(1670,1490)"/> <wire from="(1580,720)" to="(1670,720)"/> <wire from="(1580,790)" to="(1660,790)"/> <wire from="(1580,860)" to="(1650,860)"/> <wire from="(1580,930)" to="(1590,930)"/> <wire from="(1590,920)" to="(1590,930)"/> <wire from="(1590,920)" to="(1690,920)"/> <wire from="(1600,950)" to="(1600,1000)"/> <wire from="(1600,950)" to="(1690,950)"/> <wire from="(1610,640)" to="(1680,640)"/> <wire from="(1610,980)" to="(1610,1070)"/> <wire from="(1610,980)" to="(1690,980)"/> <wire from="(1620,1010)" to="(1620,1140)"/> <wire from="(1620,1010)" to="(1690,1010)"/> <wire from="(1630,1040)" to="(1630,1210)"/> <wire from="(1630,1040)" to="(1690,1040)"/> <wire from="(1640,1070)" to="(1640,1290)"/> <wire from="(1640,1070)" to="(1690,1070)"/> <wire from="(1650,1100)" to="(1650,1360)"/> <wire from="(1650,1100)" to="(1690,1100)"/> <wire from="(1650,860)" to="(1650,890)"/> <wire from="(1650,890)" to="(1690,890)"/> <wire from="(1660,1130)" to="(1660,1420)"/> <wire from="(1660,1130)" to="(1690,1130)"/> <wire from="(1660,790)" to="(1660,860)"/> <wire from="(1660,860)" to="(1690,860)"/> <wire from="(1670,1160)" to="(1670,1490)"/> <wire from="(1670,1160)" to="(1690,1160)"/> <wire from="(1670,720)" to="(1670,830)"/> <wire from="(1670,830)" to="(1690,830)"/> <wire from="(1680,640)" to="(1680,800)"/> <wire from="(1680,800)" to="(1690,800)"/> <wire from="(1690,580)" to="(1690,770)"/> <wire from="(180,230)" to="(320,230)"/> <wire from="(180,270)" to="(210,270)"/> <wire from="(180,320)" to="(200,320)"/> <wire from="(200,1400)" to="(1120,1400)"/> <wire from="(200,320)" to="(200,420)"/> <wire from="(200,320)" to="(230,320)"/> <wire from="(200,420)" to="(200,1400)"/> <wire from="(200,420)" to="(230,420)"/> <wire from="(210,170)" to="(240,170)"/> <wire from="(210,20)" to="(210,130)"/> <wire from="(210,20)" to="(880,20)"/> <wire from="(210,250)" to="(210,270)"/> <wire from="(210,250)" to="(710,250)"/> <wire from="(240,30)" to="(240,170)"/> <wire from="(240,30)" to="(910,30)"/> <wire from="(250,270)" to="(260,270)"/> <wire from="(250,280)" to="(270,280)"/> <wire from="(250,290)" to="(280,290)"/> <wire from="(250,300)" to="(420,300)"/> <wire from="(250,310)" to="(500,310)"/> <wire from="(250,420)" to="(260,420)"/> <wire from="(260,1500)" to="(1160,1500)"/> <wire from="(260,270)" to="(330,270)"/> <wire from="(260,420)" to="(260,1500)"/> <wire from="(260,420)" to="(270,420)"/> <wire from="(260,50)" to="(260,270)"/> <wire from="(260,50)" to="(770,50)"/> <wire from="(270,280)" to="(400,280)"/> <wire from="(270,60)" to="(270,280)"/> <wire from="(270,60)" to="(770,60)"/> <wire from="(280,290)" to="(350,290)"/> <wire from="(280,70)" to="(280,290)"/> <wire from="(280,70)" to="(770,70)"/> <wire from="(290,370)" to="(390,370)"/> <wire from="(290,380)" to="(340,380)"/> <wire from="(290,390)" to="(410,390)"/> <wire from="(290,400)" to="(300,400)"/> <wire from="(290,410)" to="(310,410)"/> <wire from="(300,400)" to="(360,400)"/> <wire from="(300,90)" to="(300,400)"/> <wire from="(300,90)" to="(770,90)"/> <wire from="(310,100)" to="(310,410)"/> <wire from="(310,100)" to="(770,100)"/> <wire from="(310,410)" to="(370,410)"/> <wire from="(320,110)" to="(320,230)"/> <wire from="(320,110)" to="(770,110)"/> <wire from="(320,230)" to="(380,230)"/> <wire from="(330,120)" to="(330,270)"/> <wire from="(330,120)" to="(770,120)"/> <wire from="(330,270)" to="(440,270)"/> <wire from="(340,130)" to="(340,380)"/> <wire from="(340,130)" to="(770,130)"/> <wire from="(340,380)" to="(450,380)"/> <wire from="(350,140)" to="(350,290)"/> <wire from="(350,140)" to="(770,140)"/> <wire from="(350,290)" to="(460,290)"/> <wire from="(360,160)" to="(360,400)"/> <wire from="(360,160)" to="(540,160)"/> <wire from="(370,170)" to="(370,410)"/> <wire from="(370,170)" to="(770,170)"/> <wire from="(370,410)" to="(430,410)"/> <wire from="(380,180)" to="(380,230)"/> <wire from="(380,180)" to="(720,180)"/> <wire from="(390,190)" to="(390,370)"/> <wire from="(390,190)" to="(770,190)"/> <wire from="(390,370)" to="(460,370)"/> <wire from="(400,1040)" to="(770,1040)"/> <wire from="(400,200)" to="(400,280)"/> <wire from="(400,200)" to="(470,200)"/> <wire from="(400,280)" to="(400,550)"/> <wire from="(400,550)" to="(400,970)"/> <wire from="(400,550)" to="(770,550)"/> <wire from="(400,970)" to="(400,1040)"/> <wire from="(400,970)" to="(770,970)"/> <wire from="(410,210)" to="(410,390)"/> <wire from="(410,210)" to="(770,210)"/> <wire from="(410,390)" to="(470,390)"/> <wire from="(420,230)" to="(420,300)"/> <wire from="(420,230)" to="(770,230)"/> <wire from="(420,300)" to="(490,300)"/> <wire from="(430,240)" to="(430,410)"/> <wire from="(430,240)" to="(560,240)"/> <wire from="(440,1030)" to="(770,1030)"/> <wire from="(440,260)" to="(440,270)"/> <wire from="(440,260)" to="(770,260)"/> <wire from="(440,270)" to="(440,470)"/> <wire from="(440,470)" to="(440,540)"/> <wire from="(440,470)" to="(770,470)"/> <wire from="(440,540)" to="(440,610)"/> <wire from="(440,540)" to="(770,540)"/> <wire from="(440,610)" to="(440,750)"/> <wire from="(440,610)" to="(770,610)"/> <wire from="(440,750)" to="(440,890)"/> <wire from="(440,750)" to="(770,750)"/> <wire from="(440,890)" to="(440,960)"/> <wire from="(440,890)" to="(770,890)"/> <wire from="(440,960)" to="(440,1030)"/> <wire from="(440,960)" to="(770,960)"/> <wire from="(450,270)" to="(450,380)"/> <wire from="(450,270)" to="(770,270)"/> <wire from="(450,380)" to="(450,480)"/> <wire from="(450,480)" to="(450,620)"/> <wire from="(450,480)" to="(770,480)"/> <wire from="(450,620)" to="(450,690)"/> <wire from="(450,620)" to="(770,620)"/> <wire from="(450,690)" to="(450,760)"/> <wire from="(450,690)" to="(770,690)"/> <wire from="(450,760)" to="(450,830)"/> <wire from="(450,760)" to="(770,760)"/> <wire from="(450,830)" to="(450,900)"/> <wire from="(450,830)" to="(770,830)"/> <wire from="(450,900)" to="(770,900)"/> <wire from="(460,280)" to="(460,290)"/> <wire from="(460,280)" to="(480,280)"/> <wire from="(460,330)" to="(460,370)"/> <wire from="(460,330)" to="(770,330)"/> <wire from="(460,370)" to="(460,400)"/> <wire from="(460,400)" to="(460,680)"/> <wire from="(460,400)" to="(770,400)"/> <wire from="(460,680)" to="(460,820)"/> <wire from="(460,680)" to="(770,680)"/> <wire from="(460,820)" to="(770,820)"/> <wire from="(470,1050)" to="(770,1050)"/> <wire from="(470,200)" to="(470,340)"/> <wire from="(470,200)" to="(510,200)"/> <wire from="(470,340)" to="(770,340)"/> <wire from="(470,390)" to="(470,420)"/> <wire from="(470,420)" to="(470,490)"/> <wire from="(470,420)" to="(770,420)"/> <wire from="(470,490)" to="(470,770)"/> <wire from="(470,490)" to="(770,490)"/> <wire from="(470,770)" to="(470,1050)"/> <wire from="(470,770)" to="(770,770)"/> <wire from="(480,280)" to="(480,350)"/> <wire from="(480,280)" to="(770,280)"/> <wire from="(480,350)" to="(480,560)"/> <wire from="(480,350)" to="(770,350)"/> <wire from="(480,560)" to="(480,630)"/> <wire from="(480,560)" to="(770,560)"/> <wire from="(480,630)" to="(480,700)"/> <wire from="(480,630)" to="(770,630)"/> <wire from="(480,700)" to="(480,840)"/> <wire from="(480,700)" to="(770,700)"/> <wire from="(480,840)" to="(480,910)"/> <wire from="(480,840)" to="(770,840)"/> <wire from="(480,910)" to="(480,980)"/> <wire from="(480,910)" to="(770,910)"/> <wire from="(480,980)" to="(770,980)"/> <wire from="(490,300)" to="(490,370)"/> <wire from="(490,300)" to="(520,300)"/> <wire from="(490,370)" to="(770,370)"/> <wire from="(500,310)" to="(500,380)"/> <wire from="(500,310)" to="(530,310)"/> <wire from="(500,380)" to="(500,800)"/> <wire from="(500,380)" to="(770,380)"/> <wire from="(500,800)" to="(770,800)"/> <wire from="(510,200)" to="(510,410)"/> <wire from="(510,200)" to="(770,200)"/> <wire from="(510,410)" to="(770,410)"/> <wire from="(520,1000)" to="(520,1070)"/> <wire from="(520,1000)" to="(770,1000)"/> <wire from="(520,1070)" to="(770,1070)"/> <wire from="(520,300)" to="(520,440)"/> <wire from="(520,300)" to="(770,300)"/> <wire from="(520,440)" to="(520,510)"/> <wire from="(520,440)" to="(770,440)"/> <wire from="(520,510)" to="(520,860)"/> <wire from="(520,510)" to="(770,510)"/> <wire from="(520,860)" to="(520,930)"/> <wire from="(520,860)" to="(770,860)"/> <wire from="(520,930)" to="(520,1000)"/> <wire from="(520,930)" to="(770,930)"/> <wire from="(530,310)" to="(530,450)"/> <wire from="(530,310)" to="(770,310)"/> <wire from="(530,450)" to="(530,520)"/> <wire from="(530,450)" to="(770,450)"/> <wire from="(530,520)" to="(530,590)"/> <wire from="(530,520)" to="(770,520)"/> <wire from="(530,590)" to="(530,660)"/> <wire from="(530,590)" to="(770,590)"/> <wire from="(530,660)" to="(530,730)"/> <wire from="(530,660)" to="(770,660)"/> <wire from="(530,730)" to="(770,730)"/> <wire from="(540,160)" to="(540,580)"/> <wire from="(540,160)" to="(770,160)"/> <wire from="(540,580)" to="(540,650)"/> <wire from="(540,580)" to="(770,580)"/> <wire from="(540,650)" to="(540,720)"/> <wire from="(540,650)" to="(770,650)"/> <wire from="(540,720)" to="(540,790)"/> <wire from="(540,720)" to="(770,720)"/> <wire from="(540,790)" to="(770,790)"/> <wire from="(560,1010)" to="(560,1080)"/> <wire from="(560,1010)" to="(770,1010)"/> <wire from="(560,1080)" to="(770,1080)"/> <wire from="(560,240)" to="(560,870)"/> <wire from="(560,240)" to="(770,240)"/> <wire from="(560,870)" to="(560,940)"/> <wire from="(560,870)" to="(770,870)"/> <wire from="(560,940)" to="(560,1010)"/> <wire from="(560,940)" to="(770,940)"/> <wire from="(710,1020)" to="(710,1090)"/> <wire from="(710,1020)" to="(770,1020)"/> <wire from="(710,1090)" to="(710,1140)"/> <wire from="(710,1090)" to="(770,1090)"/> <wire from="(710,1140)" to="(1070,1140)"/> <wire from="(710,250)" to="(710,320)"/> <wire from="(710,320)" to="(710,390)"/> <wire from="(710,320)" to="(770,320)"/> <wire from="(710,390)" to="(710,460)"/> <wire from="(710,390)" to="(770,390)"/> <wire from="(710,460)" to="(710,530)"/> <wire from="(710,460)" to="(770,460)"/> <wire from="(710,530)" to="(710,600)"/> <wire from="(710,530)" to="(770,530)"/> <wire from="(710,600)" to="(710,670)"/> <wire from="(710,600)" to="(770,600)"/> <wire from="(710,670)" to="(710,740)"/> <wire from="(710,670)" to="(770,670)"/> <wire from="(710,740)" to="(710,810)"/> <wire from="(710,740)" to="(770,740)"/> <wire from="(710,810)" to="(710,880)"/> <wire from="(710,810)" to="(770,810)"/> <wire from="(710,880)" to="(710,950)"/> <wire from="(710,880)" to="(770,880)"/> <wire from="(710,950)" to="(710,1020)"/> <wire from="(710,950)" to="(770,950)"/> <wire from="(720,1170)" to="(1080,1170)"/> <wire from="(720,180)" to="(720,250)"/> <wire from="(720,180)" to="(770,180)"/> <wire from="(720,250)" to="(720,1170)"/> <wire from="(720,250)" to="(770,250)"/> <wire from="(850,1060)" to="(900,1060)"/> <wire from="(850,150)" to="(940,150)"/> <wire from="(850,220)" to="(900,220)"/> <wire from="(850,290)" to="(900,290)"/> <wire from="(850,360)" to="(900,360)"/> <wire from="(850,430)" to="(900,430)"/> <wire from="(850,500)" to="(900,500)"/> <wire from="(850,570)" to="(900,570)"/> <wire from="(850,640)" to="(900,640)"/> <wire from="(850,710)" to="(900,710)"/> <wire from="(850,780)" to="(900,780)"/> <wire from="(850,80)" to="(940,80)"/> <wire from="(850,850)" to="(900,850)"/> <wire from="(850,920)" to="(900,920)"/> <wire from="(850,990)" to="(900,990)"/> <wire from="(880,20)" to="(1550,20)"/> <wire from="(880,20)" to="(880,270)"/> <wire from="(880,270)" to="(930,270)"/> <wire from="(910,130)" to="(940,130)"/> <wire from="(910,30)" to="(1470,30)"/> <wire from="(910,30)" to="(910,60)"/> <wire from="(910,60)" to="(910,130)"/> <wire from="(910,60)" to="(940,60)"/> <wire from="(920,1060)" to="(950,1060)"/> <wire from="(920,220)" to="(940,220)"/> <wire from="(920,290)" to="(950,290)"/> <wire from="(920,360)" to="(950,360)"/> <wire from="(920,430)" to="(950,430)"/> <wire from="(920,500)" to="(950,500)"/> <wire from="(920,570)" to="(950,570)"/> <wire from="(920,640)" to="(950,640)"/> <wire from="(920,710)" to="(950,710)"/> <wire from="(920,780)" to="(950,780)"/> <wire from="(920,850)" to="(950,850)"/> <wire from="(920,920)" to="(950,920)"/> <wire from="(920,990)" to="(950,990)"/> <wire from="(930,1040)" to="(950,1040)"/> <wire from="(930,270)" to="(930,340)"/> <wire from="(930,270)" to="(950,270)"/> <wire from="(930,340)" to="(930,410)"/> <wire from="(930,340)" to="(950,340)"/> <wire from="(930,410)" to="(930,480)"/> <wire from="(930,410)" to="(950,410)"/> <wire from="(930,480)" to="(930,550)"/> <wire from="(930,480)" to="(950,480)"/> <wire from="(930,550)" to="(930,620)"/> <wire from="(930,550)" to="(950,550)"/> <wire from="(930,620)" to="(930,690)"/> <wire from="(930,620)" to="(950,620)"/> <wire from="(930,690)" to="(930,760)"/> <wire from="(930,690)" to="(950,690)"/> <wire from="(930,760)" to="(930,830)"/> <wire from="(930,760)" to="(950,760)"/> <wire from="(930,830)" to="(930,900)"/> <wire from="(930,830)" to="(950,830)"/> <wire from="(930,900)" to="(930,970)"/> <wire from="(930,900)" to="(950,900)"/> <wire from="(930,970)" to="(930,1040)"/> <wire from="(930,970)" to="(950,970)"/> <wire from="(940,180)" to="(1660,180)"/> <wire from="(940,180)" to="(940,220)"/> <wire from="(980,140)" to="(1120,140)"/> <wire from="(980,70)" to="(1120,70)"/> <wire from="(990,1050)" to="(1120,1050)"/> <wire from="(990,280)" to="(1000,280)"/> <wire from="(990,350)" to="(1020,350)"/> <wire from="(990,420)" to="(1030,420)"/> <wire from="(990,490)" to="(1040,490)"/> <wire from="(990,560)" to="(1050,560)"/> <wire from="(990,630)" to="(1060,630)"/> <wire from="(990,700)" to="(1070,700)"/> <wire from="(990,770)" to="(1080,770)"/> <wire from="(990,840)" to="(1090,840)"/> <wire from="(990,910)" to="(1100,910)"/> <wire from="(990,980)" to="(1110,980)"/> </circuit> <circuit name="DebugLock"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DebugLock"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,110)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,220)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(220,60)" name="NoConnect"/> <comp lib="0" loc="(300,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(390,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="APU_LOCK"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(350,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(260,70)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,100)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(420,100)" name="TranspDLatch"> <a name="label" val="lock_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,20)" to="(130,50)"/> <wire from="(130,20)" to="(240,20)"/> <wire from="(130,80)" to="(160,80)"/> <wire from="(150,220)" to="(160,220)"/> <wire from="(160,30)" to="(160,80)"/> <wire from="(160,30)" to="(290,30)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(200,80)" to="(200,210)"/> <wire from="(200,80)" to="(230,80)"/> <wire from="(220,60)" to="(230,60)"/> <wire from="(240,20)" to="(240,50)"/> <wire from="(260,70)" to="(270,70)"/> <wire from="(270,110)" to="(270,160)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(270,160)" to="(360,160)"/> <wire from="(270,170)" to="(270,190)"/> <wire from="(270,170)" to="(450,170)"/> <wire from="(270,190)" to="(310,190)"/> <wire from="(270,70)" to="(270,90)"/> <wire from="(270,90)" to="(280,90)"/> <wire from="(290,30)" to="(290,80)"/> <wire from="(300,210)" to="(310,210)"/> <wire from="(310,100)" to="(320,100)"/> <wire from="(350,200)" to="(360,200)"/> <wire from="(360,160)" to="(360,200)"/> <wire from="(360,200)" to="(390,200)"/> <wire from="(420,110)" to="(450,110)"/> <wire from="(450,110)" to="(450,170)"/> </circuit> <circuit name="OUT_Ports"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OUT_Ports"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(110,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(160,110)" name="Tunnel"> <a name="label" val="ACLK5"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,300)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(490,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(490,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(490,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_0"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(140,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(400,170)" name="IORegBit"> <a name="label" val="out1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,270)" name="IORegBit"> <a name="label" val="out2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,70)" name="IORegBit"> <a name="label" val="out0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,110)" to="(120,110)"/> <wire from="(110,140)" to="(220,140)"/> <wire from="(110,60)" to="(270,60)"/> <wire from="(140,110)" to="(150,110)"/> <wire from="(150,110)" to="(160,110)"/> <wire from="(150,70)" to="(150,110)"/> <wire from="(150,70)" to="(260,70)"/> <wire from="(200,220)" to="(230,220)"/> <wire from="(200,230)" to="(240,230)"/> <wire from="(200,240)" to="(230,240)"/> <wire from="(220,80)" to="(220,140)"/> <wire from="(220,80)" to="(250,80)"/> <wire from="(230,100)" to="(230,220)"/> <wire from="(230,100)" to="(280,100)"/> <wire from="(230,240)" to="(230,300)"/> <wire from="(230,300)" to="(280,300)"/> <wire from="(240,200)" to="(240,230)"/> <wire from="(240,200)" to="(280,200)"/> <wire from="(250,190)" to="(250,290)"/> <wire from="(250,190)" to="(280,190)"/> <wire from="(250,290)" to="(280,290)"/> <wire from="(250,80)" to="(250,90)"/> <wire from="(250,90)" to="(250,190)"/> <wire from="(250,90)" to="(280,90)"/> <wire from="(260,180)" to="(260,280)"/> <wire from="(260,180)" to="(280,180)"/> <wire from="(260,280)" to="(280,280)"/> <wire from="(260,70)" to="(260,80)"/> <wire from="(260,80)" to="(260,180)"/> <wire from="(260,80)" to="(280,80)"/> <wire from="(270,170)" to="(270,270)"/> <wire from="(270,170)" to="(280,170)"/> <wire from="(270,270)" to="(280,270)"/> <wire from="(270,60)" to="(270,70)"/> <wire from="(270,70)" to="(270,170)"/> <wire from="(270,70)" to="(280,70)"/> <wire from="(400,170)" to="(430,170)"/> <wire from="(400,270)" to="(460,270)"/> <wire from="(400,70)" to="(490,70)"/> <wire from="(430,110)" to="(430,170)"/> <wire from="(430,110)" to="(490,110)"/> <wire from="(460,150)" to="(460,270)"/> <wire from="(460,150)" to="(490,150)"/> </circuit> <circuit name="IORegBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="IORegBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Other_ACLK"/> </comp> <comp lib="0" loc="(150,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_x"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4016"/> </comp> <comp lib="0" loc="(250,100)" name="NoConnect"/> <comp lib="0" loc="(660,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_x"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(370,200)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(640,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(290,110)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(360,140)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(480,140)" name="TranspDLatch"/> <comp loc="(550,120)" name="DLatch"/> <wire from="(150,100)" to="(190,100)"/> <wire from="(150,130)" to="(200,130)"/> <wire from="(150,190)" to="(220,190)"/> <wire from="(150,50)" to="(270,50)"/> <wire from="(190,70)" to="(190,100)"/> <wire from="(190,70)" to="(540,70)"/> <wire from="(200,80)" to="(200,130)"/> <wire from="(200,80)" to="(340,80)"/> <wire from="(220,120)" to="(220,190)"/> <wire from="(220,120)" to="(260,120)"/> <wire from="(250,100)" to="(260,100)"/> <wire from="(270,50)" to="(270,90)"/> <wire from="(290,110)" to="(310,110)"/> <wire from="(310,110)" to="(310,130)"/> <wire from="(310,130)" to="(330,130)"/> <wire from="(310,150)" to="(310,200)"/> <wire from="(310,150)" to="(330,150)"/> <wire from="(310,200)" to="(340,200)"/> <wire from="(340,200)" to="(340,230)"/> <wire from="(340,200)" to="(370,200)"/> <wire from="(340,230)" to="(530,230)"/> <wire from="(340,80)" to="(340,120)"/> <wire from="(360,140)" to="(380,140)"/> <wire from="(390,200)" to="(510,200)"/> <wire from="(480,150)" to="(510,150)"/> <wire from="(510,150)" to="(510,200)"/> <wire from="(530,140)" to="(530,230)"/> <wire from="(530,140)" to="(550,140)"/> <wire from="(540,120)" to="(550,120)"/> <wire from="(540,70)" to="(540,120)"/> <wire from="(590,140)" to="(620,140)"/> <wire from="(640,140)" to="(660,140)"/> </circuit> <circuit name="TranspDLatch"> <a name="appearance" val="evolution"/> <a name="circuit" val="TranspDLatch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="d"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(160,120)" name="Constant"/> <comp lib="0" loc="(320,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nq"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="q"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(180,70)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <wire from="(100,80)" to="(170,80)"/> <wire from="(160,120)" to="(170,120)"/> <wire from="(230,120)" to="(280,120)"/> <wire from="(230,80)" to="(280,80)"/> <wire from="(280,120)" to="(280,140)"/> <wire from="(280,140)" to="(320,140)"/> <wire from="(280,60)" to="(280,80)"/> <wire from="(280,60)" to="(320,60)"/> </circuit> <circuit name="BIDIR_Pad"> <a name="appearance" val="evolution"/> <a name="circuit" val="BIDIR_Pad"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(310,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="pad_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(310,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="to_pad"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(310,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="rd"/> </comp> <comp lib="0" loc="(310,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="wr"/> </comp> <comp lib="0" loc="(320,180)" name="Ground"/> <comp lib="0" loc="(370,180)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(720,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="from_pad"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(720,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="pad_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(560,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,220)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(660,300)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(345,150)" name="Text"> <a name="text" val="ESD"/> </comp> <comp loc="(500,220)" name="TranspDLatch"/> <comp loc="(500,290)" name="TranspDLatch"/> <wire from="(310,220)" to="(370,220)"/> <wire from="(310,290)" to="(400,290)"/> <wire from="(310,360)" to="(530,360)"/> <wire from="(310,400)" to="(380,400)"/> <wire from="(320,180)" to="(330,180)"/> <wire from="(330,160)" to="(330,180)"/> <wire from="(330,160)" to="(350,160)"/> <wire from="(370,180)" to="(370,220)"/> <wire from="(370,220)" to="(400,220)"/> <wire from="(380,160)" to="(380,400)"/> <wire from="(380,160)" to="(590,160)"/> <wire from="(500,230)" to="(520,230)"/> <wire from="(500,290)" to="(550,290)"/> <wire from="(520,220)" to="(520,230)"/> <wire from="(520,220)" to="(540,220)"/> <wire from="(530,270)" to="(530,310)"/> <wire from="(530,270)" to="(610,270)"/> <wire from="(530,310)" to="(530,360)"/> <wire from="(530,310)" to="(550,310)"/> <wire from="(560,220)" to="(580,220)"/> <wire from="(590,160)" to="(590,190)"/> <wire from="(590,190)" to="(610,190)"/> <wire from="(590,300)" to="(630,300)"/> <wire from="(600,220)" to="(630,220)"/> <wire from="(630,190)" to="(640,190)"/> <wire from="(630,270)" to="(640,270)"/> <wire from="(640,190)" to="(640,210)"/> <wire from="(640,270)" to="(640,290)"/> <wire from="(660,220)" to="(720,220)"/> <wire from="(660,300)" to="(720,300)"/> </circuit> <circuit name="Pads1"> <a name="circuit" val="Pads1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBG_Pad"/> </comp> <comp lib="0" loc="(160,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_M2"/> </comp> <comp lib="0" loc="(160,280)" name="Ground"/> <comp lib="0" loc="(160,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES_Pad"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Ax"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RW"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK_Pad"/> </comp> <comp lib="0" loc="(170,140)" name="Ground"/> <comp lib="0" loc="(170,60)" name="Ground"/> <comp lib="0" loc="(210,280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(220,140)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(220,60)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(240,160)" name="Tunnel"> <a name="label" val="DBG"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(240,310)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(310,80)" name="Tunnel"> <a name="label" val="n_CLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(380,310)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(380,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(380,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(410,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBG"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(410,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(430,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(430,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotDBG_RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(540,160)" name="Tunnel"> <a name="label" val="NotDBG_RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotDBG_RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Ax_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(620,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RnW_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="M2_Pad"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,470)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,390)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(490,470)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(530,160)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(185,250)" name="Text"> <a name="text" val="ESD"/> </comp> <comp lib="8" loc="(195,110)" name="Text"> <a name="text" val="ESD"/> </comp> <comp lib="8" loc="(195,30)" name="Text"> <a name="text" val="ESD"/> </comp> <comp lib="8" loc="(260,400)" name="Text"> <a name="text" val="x6"/> </comp> <comp lib="8" loc="(260,480)" name="Text"> <a name="text" val="x6"/> </comp> <comp lib="8" loc="(375,85)" name="Text"> <a name="text" val="to div"/> </comp> <wire from="(160,160)" to="(220,160)"/> <wire from="(160,210)" to="(420,210)"/> <wire from="(160,280)" to="(170,280)"/> <wire from="(160,310)" to="(210,310)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(160,460)" to="(180,460)"/> <wire from="(160,80)" to="(220,80)"/> <wire from="(170,140)" to="(180,140)"/> <wire from="(170,260)" to="(170,280)"/> <wire from="(170,260)" to="(190,260)"/> <wire from="(170,60)" to="(180,60)"/> <wire from="(180,120)" to="(180,140)"/> <wire from="(180,120)" to="(200,120)"/> <wire from="(180,40)" to="(180,60)"/> <wire from="(180,40)" to="(200,40)"/> <wire from="(200,380)" to="(210,380)"/> <wire from="(200,460)" to="(210,460)"/> <wire from="(210,280)" to="(210,310)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,160)" to="(240,160)"/> <wire from="(220,60)" to="(220,80)"/> <wire from="(220,80)" to="(260,80)"/> <wire from="(230,380)" to="(240,380)"/> <wire from="(230,460)" to="(240,460)"/> <wire from="(240,310)" to="(260,310)"/> <wire from="(260,380)" to="(270,380)"/> <wire from="(260,460)" to="(270,460)"/> <wire from="(280,310)" to="(300,310)"/> <wire from="(280,80)" to="(310,80)"/> <wire from="(290,380)" to="(300,380)"/> <wire from="(290,460)" to="(300,460)"/> <wire from="(320,310)" to="(340,310)"/> <wire from="(320,380)" to="(330,380)"/> <wire from="(320,460)" to="(330,460)"/> <wire from="(350,380)" to="(390,380)"/> <wire from="(350,460)" to="(390,460)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(380,480)" to="(390,480)"/> <wire from="(410,150)" to="(420,150)"/> <wire from="(410,170)" to="(450,170)"/> <wire from="(420,210)" to="(420,230)"/> <wire from="(420,230)" to="(520,230)"/> <wire from="(430,360)" to="(440,360)"/> <wire from="(430,390)" to="(460,390)"/> <wire from="(430,440)" to="(440,440)"/> <wire from="(430,470)" to="(460,470)"/> <wire from="(440,150)" to="(450,150)"/> <wire from="(460,360)" to="(470,360)"/> <wire from="(460,440)" to="(470,440)"/> <wire from="(470,150)" to="(490,150)"/> <wire from="(470,170)" to="(490,170)"/> <wire from="(470,360)" to="(470,380)"/> <wire from="(470,440)" to="(470,460)"/> <wire from="(490,390)" to="(620,390)"/> <wire from="(490,470)" to="(620,470)"/> <wire from="(500,250)" to="(520,250)"/> <wire from="(530,160)" to="(540,160)"/> <wire from="(550,210)" to="(560,210)"/> <wire from="(560,240)" to="(580,240)"/> <wire from="(580,210)" to="(590,210)"/> <wire from="(590,210)" to="(590,230)"/> <wire from="(600,240)" to="(630,240)"/> </circuit> <circuit name="Pads2"> <a name="circuit" val="Pads2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_NMI_Pad"/> </comp> <comp lib="0" loc="(170,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DPad_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(170,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Dx_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(170,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR"/> </comp> <comp lib="0" loc="(170,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4016"/> </comp> <comp lib="0" loc="(170,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4017"/> </comp> <comp lib="0" loc="(170,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OUTx"/> </comp> <comp lib="0" loc="(170,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IRQ_Pad"/> </comp> <comp lib="0" loc="(240,170)" name="Constant"/> <comp lib="0" loc="(240,80)" name="Constant"/> <comp lib="0" loc="(250,160)" name="Constant"/> <comp lib="0" loc="(250,180)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(250,410)" name="NoConnect"/> <comp lib="0" loc="(250,440)" name="Constant"/> <comp lib="0" loc="(250,490)" name="NoConnect"/> <comp lib="0" loc="(250,520)" name="Constant"/> <comp lib="0" loc="(250,580)" name="NoConnect"/> <comp lib="0" loc="(250,610)" name="Constant"/> <comp lib="0" loc="(250,70)" name="Constant"/> <comp lib="0" loc="(250,90)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(380,160)" name="NoConnect"/> <comp lib="0" loc="(380,410)" name="NoConnect"/> <comp lib="0" loc="(380,490)" name="NoConnect"/> <comp lib="0" loc="(380,580)" name="NoConnect"/> <comp lib="0" loc="(380,70)" name="NoConnect"/> <comp lib="0" loc="(410,150)" name="Tunnel"> <a name="label" val="n_NMI"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(410,60)" name="Tunnel"> <a name="label" val="n_IRQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(450,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dx_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(450,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DPad_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(450,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN0_Pad"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(450,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IN1_Pad"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(450,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OUT_Pad"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="8" loc="(315,645)" name="Text"> <a name="text" val="I/O"/> </comp> <comp lib="8" loc="(320,325)" name="Text"> <a name="text" val="Data bus"/> </comp> <comp loc="(370,150)" name="BIDIR_Pad"/> <comp loc="(370,260)" name="BIDIR_Pad"/> <comp loc="(370,410)" name="BIDIR_Pad"/> <comp loc="(370,490)" name="BIDIR_Pad"/> <comp loc="(370,580)" name="BIDIR_Pad"/> <comp loc="(370,60)" name="BIDIR_Pad"/> <wire from="(170,150)" to="(260,150)"/> <wire from="(170,260)" to="(260,260)"/> <wire from="(170,280)" to="(190,280)"/> <wire from="(170,310)" to="(200,310)"/> <wire from="(170,330)" to="(210,330)"/> <wire from="(170,380)" to="(220,380)"/> <wire from="(170,420)" to="(260,420)"/> <wire from="(170,500)" to="(260,500)"/> <wire from="(170,590)" to="(260,590)"/> <wire from="(170,60)" to="(260,60)"/> <wire from="(190,270)" to="(190,280)"/> <wire from="(190,270)" to="(260,270)"/> <wire from="(200,280)" to="(200,310)"/> <wire from="(200,280)" to="(260,280)"/> <wire from="(210,290)" to="(210,330)"/> <wire from="(210,290)" to="(260,290)"/> <wire from="(220,380)" to="(220,430)"/> <wire from="(220,430)" to="(220,510)"/> <wire from="(220,430)" to="(260,430)"/> <wire from="(220,510)" to="(220,600)"/> <wire from="(220,510)" to="(260,510)"/> <wire from="(220,600)" to="(260,600)"/> <wire from="(240,170)" to="(260,170)"/> <wire from="(240,80)" to="(260,80)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(250,180)" to="(260,180)"/> <wire from="(250,410)" to="(260,410)"/> <wire from="(250,440)" to="(260,440)"/> <wire from="(250,490)" to="(260,490)"/> <wire from="(250,520)" to="(260,520)"/> <wire from="(250,580)" to="(260,580)"/> <wire from="(250,610)" to="(260,610)"/> <wire from="(250,70)" to="(260,70)"/> <wire from="(250,90)" to="(260,90)"/> <wire from="(370,150)" to="(410,150)"/> <wire from="(370,160)" to="(380,160)"/> <wire from="(370,260)" to="(450,260)"/> <wire from="(370,270)" to="(390,270)"/> <wire from="(370,410)" to="(380,410)"/> <wire from="(370,420)" to="(450,420)"/> <wire from="(370,490)" to="(380,490)"/> <wire from="(370,500)" to="(450,500)"/> <wire from="(370,580)" to="(380,580)"/> <wire from="(370,590)" to="(450,590)"/> <wire from="(370,60)" to="(410,60)"/> <wire from="(370,70)" to="(380,70)"/> <wire from="(390,270)" to="(390,280)"/> <wire from="(390,280)" to="(450,280)"/> </circuit> <circuit name="DataBusPads"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DataBusPads"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(180,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(180,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR"/> </comp> <comp lib="0" loc="(180,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Pads_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(250,160)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(250,570)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(790,480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(790,70)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(840,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Pads_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(840,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(600,170)" name="BIDIR_Pad"/> <comp loc="(600,260)" name="BIDIR_Pad"/> <comp loc="(600,350)" name="BIDIR_Pad"/> <comp loc="(600,440)" name="BIDIR_Pad"/> <comp loc="(600,530)" name="BIDIR_Pad"/> <comp loc="(600,620)" name="BIDIR_Pad"/> <comp loc="(600,710)" name="BIDIR_Pad"/> <comp loc="(600,80)" name="BIDIR_Pad"/> <wire from="(180,100)" to="(220,100)"/> <wire from="(180,140)" to="(200,140)"/> <wire from="(180,170)" to="(210,170)"/> <wire from="(180,70)" to="(240,70)"/> <wire from="(200,30)" to="(200,140)"/> <wire from="(200,30)" to="(480,30)"/> <wire from="(210,40)" to="(210,170)"/> <wire from="(210,40)" to="(470,40)"/> <wire from="(220,100)" to="(220,570)"/> <wire from="(220,570)" to="(250,570)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(240,70)" to="(240,160)"/> <wire from="(270,100)" to="(430,100)"/> <wire from="(270,110)" to="(420,110)"/> <wire from="(270,120)" to="(410,120)"/> <wire from="(270,130)" to="(400,130)"/> <wire from="(270,140)" to="(380,140)"/> <wire from="(270,150)" to="(360,150)"/> <wire from="(270,490)" to="(450,490)"/> <wire from="(270,500)" to="(440,500)"/> <wire from="(270,510)" to="(430,510)"/> <wire from="(270,520)" to="(420,520)"/> <wire from="(270,530)" to="(410,530)"/> <wire from="(270,540)" to="(390,540)"/> <wire from="(270,550)" to="(370,550)"/> <wire from="(270,560)" to="(350,560)"/> <wire from="(270,80)" to="(490,80)"/> <wire from="(270,90)" to="(440,90)"/> <wire from="(350,560)" to="(350,720)"/> <wire from="(350,720)" to="(490,720)"/> <wire from="(360,150)" to="(360,710)"/> <wire from="(360,710)" to="(490,710)"/> <wire from="(370,550)" to="(370,630)"/> <wire from="(370,630)" to="(490,630)"/> <wire from="(380,140)" to="(380,620)"/> <wire from="(380,620)" to="(490,620)"/> <wire from="(390,540)" to="(390,550)"/> <wire from="(390,550)" to="(440,550)"/> <wire from="(400,130)" to="(400,540)"/> <wire from="(400,540)" to="(430,540)"/> <wire from="(410,120)" to="(410,440)"/> <wire from="(410,440)" to="(490,440)"/> <wire from="(410,450)" to="(410,530)"/> <wire from="(410,450)" to="(490,450)"/> <wire from="(420,110)" to="(420,350)"/> <wire from="(420,350)" to="(490,350)"/> <wire from="(420,360)" to="(420,520)"/> <wire from="(420,360)" to="(490,360)"/> <wire from="(430,100)" to="(430,260)"/> <wire from="(430,260)" to="(490,260)"/> <wire from="(430,270)" to="(430,510)"/> <wire from="(430,270)" to="(490,270)"/> <wire from="(430,530)" to="(430,540)"/> <wire from="(430,530)" to="(490,530)"/> <wire from="(440,170)" to="(490,170)"/> <wire from="(440,180)" to="(440,500)"/> <wire from="(440,180)" to="(490,180)"/> <wire from="(440,540)" to="(440,550)"/> <wire from="(440,540)" to="(490,540)"/> <wire from="(440,90)" to="(440,170)"/> <wire from="(450,90)" to="(450,490)"/> <wire from="(450,90)" to="(490,90)"/> <wire from="(470,110)" to="(470,200)"/> <wire from="(470,110)" to="(490,110)"/> <wire from="(470,200)" to="(470,290)"/> <wire from="(470,200)" to="(490,200)"/> <wire from="(470,290)" to="(470,380)"/> <wire from="(470,290)" to="(490,290)"/> <wire from="(470,380)" to="(470,470)"/> <wire from="(470,380)" to="(490,380)"/> <wire from="(470,40)" to="(470,110)"/> <wire from="(470,470)" to="(470,560)"/> <wire from="(470,470)" to="(490,470)"/> <wire from="(470,560)" to="(470,650)"/> <wire from="(470,560)" to="(490,560)"/> <wire from="(470,650)" to="(470,740)"/> <wire from="(470,650)" to="(490,650)"/> <wire from="(470,740)" to="(490,740)"/> <wire from="(480,100)" to="(480,190)"/> <wire from="(480,100)" to="(490,100)"/> <wire from="(480,190)" to="(480,280)"/> <wire from="(480,190)" to="(490,190)"/> <wire from="(480,280)" to="(480,370)"/> <wire from="(480,280)" to="(490,280)"/> <wire from="(480,30)" to="(480,100)"/> <wire from="(480,370)" to="(480,460)"/> <wire from="(480,370)" to="(490,370)"/> <wire from="(480,460)" to="(480,550)"/> <wire from="(480,460)" to="(490,460)"/> <wire from="(480,550)" to="(480,640)"/> <wire from="(480,550)" to="(490,550)"/> <wire from="(480,640)" to="(480,730)"/> <wire from="(480,640)" to="(490,640)"/> <wire from="(480,730)" to="(490,730)"/> <wire from="(600,170)" to="(630,170)"/> <wire from="(600,180)" to="(630,180)"/> <wire from="(600,260)" to="(640,260)"/> <wire from="(600,270)" to="(640,270)"/> <wire from="(600,350)" to="(650,350)"/> <wire from="(600,360)" to="(650,360)"/> <wire from="(600,440)" to="(660,440)"/> <wire from="(600,450)" to="(660,450)"/> <wire from="(600,530)" to="(620,530)"/> <wire from="(600,540)" to="(610,540)"/> <wire from="(600,620)" to="(690,620)"/> <wire from="(600,630)" to="(700,630)"/> <wire from="(600,710)" to="(710,710)"/> <wire from="(600,720)" to="(720,720)"/> <wire from="(600,80)" to="(770,80)"/> <wire from="(600,90)" to="(620,90)"/> <wire from="(610,540)" to="(610,550)"/> <wire from="(610,550)" to="(680,550)"/> <wire from="(620,490)" to="(770,490)"/> <wire from="(620,530)" to="(620,540)"/> <wire from="(620,540)" to="(670,540)"/> <wire from="(620,90)" to="(620,490)"/> <wire from="(630,180)" to="(630,500)"/> <wire from="(630,500)" to="(770,500)"/> <wire from="(630,90)" to="(630,170)"/> <wire from="(630,90)" to="(770,90)"/> <wire from="(640,100)" to="(640,260)"/> <wire from="(640,100)" to="(770,100)"/> <wire from="(640,270)" to="(640,510)"/> <wire from="(640,510)" to="(770,510)"/> <wire from="(650,110)" to="(650,350)"/> <wire from="(650,110)" to="(770,110)"/> <wire from="(650,360)" to="(650,520)"/> <wire from="(650,520)" to="(770,520)"/> <wire from="(660,120)" to="(660,440)"/> <wire from="(660,120)" to="(770,120)"/> <wire from="(660,450)" to="(660,530)"/> <wire from="(660,530)" to="(770,530)"/> <wire from="(670,130)" to="(670,540)"/> <wire from="(670,130)" to="(770,130)"/> <wire from="(680,540)" to="(680,550)"/> <wire from="(680,540)" to="(770,540)"/> <wire from="(690,140)" to="(690,620)"/> <wire from="(690,140)" to="(770,140)"/> <wire from="(700,550)" to="(700,630)"/> <wire from="(700,550)" to="(770,550)"/> <wire from="(710,150)" to="(710,710)"/> <wire from="(710,150)" to="(770,150)"/> <wire from="(720,560)" to="(720,720)"/> <wire from="(720,560)" to="(770,560)"/> <wire from="(790,480)" to="(810,480)"/> <wire from="(790,70)" to="(840,70)"/> <wire from="(810,100)" to="(810,480)"/> <wire from="(810,100)" to="(840,100)"/> </circuit> <circuit name="DbgReadoutBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DbgReadoutBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_rd"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val"/> </comp> <comp lib="0" loc="(260,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dx"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(180,50)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <wire from="(100,50)" to="(160,50)"/> <wire from="(100,80)" to="(180,80)"/> <wire from="(180,50)" to="(190,50)"/> <wire from="(190,50)" to="(190,70)"/> <wire from="(200,80)" to="(260,80)"/> </circuit> <circuit name="Length_Decoder1"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Length_Decoder1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1110,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1420,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1500,740)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="2"/> <a name="bit17" val="2"/> <a name="bit18" val="2"/> <a name="bit19" val="2"/> <a name="bit2" val="0"/> <a name="bit20" val="2"/> <a name="bit21" val="2"/> <a name="bit22" val="2"/> <a name="bit23" val="2"/> <a name="bit24" val="3"/> <a name="bit25" val="3"/> <a name="bit26" val="3"/> <a name="bit27" val="3"/> <a name="bit28" val="3"/> <a name="bit29" val="3"/> <a name="bit3" val="0"/> <a name="bit30" val="3"/> <a name="bit31" val="3"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="32"/> </comp> <comp lib="0" loc="(1520,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dec1_Out"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(190,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Dec1_In"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(250,130)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(250,200)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(520,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(820,420)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(1040,260)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,320)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,380)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,440)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,500)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,560)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,620)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1040,680)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,260)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,320)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,380)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,440)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,500)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,560)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,620)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1350,680)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(240,200)" name="NOT Gate"> <a name="width" val="5"/> </comp> <comp lib="1" loc="(450,260)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,320)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,380)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,440)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,500)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,560)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,620)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(450,680)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,260)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,320)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,380)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,440)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,500)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,560)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,620)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(750,680)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="8" loc="(1045,520)" name="Text"> <a name="text" val="9"/> </comp> <comp lib="8" loc="(1045,575)" name="Text"> <a name="text" val="11"/> </comp> <comp lib="8" loc="(1050,360)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="8" loc="(1050,420)" name="Text"> <a name="text" val="7"/> </comp> <comp lib="8" loc="(1050,640)" name="Text"> <a name="text" val="13"/> </comp> <comp lib="8" loc="(1050,695)" name="Text"> <a name="text" val="15"/> </comp> <comp lib="8" loc="(1055,245)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="8" loc="(1055,305)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="8" loc="(1350,420)" name="Text"> <a name="text" val="23"/> </comp> <comp lib="8" loc="(1355,245)" name="Text"> <a name="text" val="17"/> </comp> <comp lib="8" loc="(1355,300)" name="Text"> <a name="text" val="19"/> </comp> <comp lib="8" loc="(1355,360)" name="Text"> <a name="text" val="21"/> </comp> <comp lib="8" loc="(1355,520)" name="Text"> <a name="text" val="25"/> </comp> <comp lib="8" loc="(1360,585)" name="Text"> <a name="text" val="27"/> </comp> <comp lib="8" loc="(1360,700)" name="Text"> <a name="text" val="31"/> </comp> <comp lib="8" loc="(1365,640)" name="Text"> <a name="text" val="29"/> </comp> <comp lib="8" loc="(455,420)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="8" loc="(455,525)" name="Text"> <a name="text" val="8"/> </comp> <comp lib="8" loc="(455,585)" name="Text"> <a name="text" val="10"/> </comp> <comp lib="8" loc="(460,365)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="8" loc="(460,640)" name="Text"> <a name="text" val="12"/> </comp> <comp lib="8" loc="(460,695)" name="Text"> <a name="text" val="14"/> </comp> <comp lib="8" loc="(465,245)" name="Text"> <a name="text" val="0"/> </comp> <comp lib="8" loc="(465,305)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="8" loc="(750,425)" name="Text"> <a name="text" val="22"/> </comp> <comp lib="8" loc="(750,520)" name="Text"> <a name="text" val="24"/> </comp> <comp lib="8" loc="(755,305)" name="Text"> <a name="text" val="18"/> </comp> <comp lib="8" loc="(755,365)" name="Text"> <a name="text" val="20"/> </comp> <comp lib="8" loc="(755,635)" name="Text"> <a name="text" val="28"/> </comp> <comp lib="8" loc="(755,695)" name="Text"> <a name="text" val="30"/> </comp> <comp lib="8" loc="(760,245)" name="Text"> <a name="text" val="16"/> </comp> <comp lib="8" loc="(760,580)" name="Text"> <a name="text" val="26"/> </comp> <wire from="(1040,260)" to="(1090,260)"/> <wire from="(1040,320)" to="(1080,320)"/> <wire from="(1040,380)" to="(1070,380)"/> <wire from="(1040,440)" to="(1060,440)"/> <wire from="(1040,500)" to="(1050,500)"/> <wire from="(1040,560)" to="(1070,560)"/> <wire from="(1040,620)" to="(1080,620)"/> <wire from="(1040,680)" to="(1090,680)"/> <wire from="(1050,470)" to="(1050,500)"/> <wire from="(1050,470)" to="(1090,470)"/> <wire from="(1060,440)" to="(1060,460)"/> <wire from="(1060,460)" to="(1090,460)"/> <wire from="(1070,380)" to="(1070,450)"/> <wire from="(1070,450)" to="(1090,450)"/> <wire from="(1070,480)" to="(1070,560)"/> <wire from="(1070,480)" to="(1090,480)"/> <wire from="(1080,320)" to="(1080,440)"/> <wire from="(1080,440)" to="(1090,440)"/> <wire from="(1080,490)" to="(1080,620)"/> <wire from="(1080,490)" to="(1090,490)"/> <wire from="(1090,260)" to="(1090,430)"/> <wire from="(1090,500)" to="(1090,680)"/> <wire from="(1110,420)" to="(1120,420)"/> <wire from="(1120,420)" to="(1120,770)"/> <wire from="(1120,770)" to="(1480,770)"/> <wire from="(1190,190)" to="(1190,280)"/> <wire from="(1190,190)" to="(1310,190)"/> <wire from="(1190,280)" to="(1190,340)"/> <wire from="(1190,280)" to="(1290,280)"/> <wire from="(1190,340)" to="(1190,400)"/> <wire from="(1190,340)" to="(1290,340)"/> <wire from="(1190,400)" to="(1190,460)"/> <wire from="(1190,400)" to="(1290,400)"/> <wire from="(1190,460)" to="(1190,520)"/> <wire from="(1190,460)" to="(1290,460)"/> <wire from="(1190,520)" to="(1190,580)"/> <wire from="(1190,520)" to="(1290,520)"/> <wire from="(1190,580)" to="(1190,640)"/> <wire from="(1190,580)" to="(1290,580)"/> <wire from="(1190,640)" to="(1190,700)"/> <wire from="(1190,640)" to="(1290,640)"/> <wire from="(1190,700)" to="(1290,700)"/> <wire from="(1200,180)" to="(1200,510)"/> <wire from="(1200,180)" to="(1310,180)"/> <wire from="(1200,510)" to="(1200,570)"/> <wire from="(1200,510)" to="(1290,510)"/> <wire from="(1200,570)" to="(1200,630)"/> <wire from="(1200,570)" to="(1290,570)"/> <wire from="(1200,630)" to="(1200,690)"/> <wire from="(1200,630)" to="(1290,630)"/> <wire from="(1200,690)" to="(1290,690)"/> <wire from="(1210,170)" to="(1210,380)"/> <wire from="(1210,170)" to="(1310,170)"/> <wire from="(1210,380)" to="(1210,440)"/> <wire from="(1210,380)" to="(1290,380)"/> <wire from="(1210,440)" to="(1210,620)"/> <wire from="(1210,440)" to="(1290,440)"/> <wire from="(1210,620)" to="(1210,680)"/> <wire from="(1210,620)" to="(1290,620)"/> <wire from="(1210,680)" to="(1290,680)"/> <wire from="(1220,160)" to="(1220,310)"/> <wire from="(1220,160)" to="(1310,160)"/> <wire from="(1220,310)" to="(1220,430)"/> <wire from="(1220,310)" to="(1290,310)"/> <wire from="(1220,430)" to="(1220,550)"/> <wire from="(1220,430)" to="(1290,430)"/> <wire from="(1220,550)" to="(1220,670)"/> <wire from="(1220,550)" to="(1290,550)"/> <wire from="(1220,670)" to="(1290,670)"/> <wire from="(1230,150)" to="(1230,240)"/> <wire from="(1230,150)" to="(1310,150)"/> <wire from="(1230,240)" to="(1230,300)"/> <wire from="(1230,240)" to="(1290,240)"/> <wire from="(1230,300)" to="(1230,360)"/> <wire from="(1230,300)" to="(1290,300)"/> <wire from="(1230,360)" to="(1230,420)"/> <wire from="(1230,360)" to="(1290,360)"/> <wire from="(1230,420)" to="(1230,480)"/> <wire from="(1230,420)" to="(1290,420)"/> <wire from="(1230,480)" to="(1230,540)"/> <wire from="(1230,480)" to="(1290,480)"/> <wire from="(1230,540)" to="(1230,600)"/> <wire from="(1230,540)" to="(1290,540)"/> <wire from="(1230,600)" to="(1230,660)"/> <wire from="(1230,600)" to="(1290,600)"/> <wire from="(1230,660)" to="(1290,660)"/> <wire from="(1250,110)" to="(1250,270)"/> <wire from="(1250,110)" to="(1310,110)"/> <wire from="(1250,270)" to="(1250,330)"/> <wire from="(1250,270)" to="(1290,270)"/> <wire from="(1250,330)" to="(1250,390)"/> <wire from="(1250,330)" to="(1290,330)"/> <wire from="(1250,390)" to="(1250,450)"/> <wire from="(1250,390)" to="(1290,390)"/> <wire from="(1250,450)" to="(1290,450)"/> <wire from="(1260,100)" to="(1260,260)"/> <wire from="(1260,100)" to="(1310,100)"/> <wire from="(1260,260)" to="(1260,320)"/> <wire from="(1260,260)" to="(1290,260)"/> <wire from="(1260,320)" to="(1260,500)"/> <wire from="(1260,320)" to="(1290,320)"/> <wire from="(1260,500)" to="(1260,560)"/> <wire from="(1260,500)" to="(1290,500)"/> <wire from="(1260,560)" to="(1290,560)"/> <wire from="(1270,250)" to="(1270,370)"/> <wire from="(1270,250)" to="(1290,250)"/> <wire from="(1270,370)" to="(1270,490)"/> <wire from="(1270,370)" to="(1290,370)"/> <wire from="(1270,490)" to="(1270,610)"/> <wire from="(1270,490)" to="(1290,490)"/> <wire from="(1270,610)" to="(1290,610)"/> <wire from="(1270,90)" to="(1270,250)"/> <wire from="(1270,90)" to="(1310,90)"/> <wire from="(1350,260)" to="(1400,260)"/> <wire from="(1350,320)" to="(1390,320)"/> <wire from="(1350,380)" to="(1380,380)"/> <wire from="(1350,440)" to="(1370,440)"/> <wire from="(1350,500)" to="(1360,500)"/> <wire from="(1350,560)" to="(1380,560)"/> <wire from="(1350,620)" to="(1390,620)"/> <wire from="(1350,680)" to="(1400,680)"/> <wire from="(1360,470)" to="(1360,500)"/> <wire from="(1360,470)" to="(1400,470)"/> <wire from="(1370,440)" to="(1370,460)"/> <wire from="(1370,460)" to="(1400,460)"/> <wire from="(1380,380)" to="(1380,450)"/> <wire from="(1380,450)" to="(1400,450)"/> <wire from="(1380,480)" to="(1380,560)"/> <wire from="(1380,480)" to="(1400,480)"/> <wire from="(1390,320)" to="(1390,440)"/> <wire from="(1390,440)" to="(1400,440)"/> <wire from="(1390,490)" to="(1390,620)"/> <wire from="(1390,490)" to="(1400,490)"/> <wire from="(1400,260)" to="(1400,430)"/> <wire from="(1400,500)" to="(1400,680)"/> <wire from="(1420,420)" to="(1430,420)"/> <wire from="(1430,420)" to="(1430,780)"/> <wire from="(1430,780)" to="(1480,780)"/> <wire from="(1500,410)" to="(1500,740)"/> <wire from="(1500,410)" to="(1520,410)"/> <wire from="(190,100)" to="(200,100)"/> <wire from="(200,100)" to="(200,130)"/> <wire from="(200,130)" to="(200,200)"/> <wire from="(200,130)" to="(250,130)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(270,100)" to="(360,100)"/> <wire from="(270,110)" to="(350,110)"/> <wire from="(270,120)" to="(340,120)"/> <wire from="(270,150)" to="(920,150)"/> <wire from="(270,160)" to="(320,160)"/> <wire from="(270,170)" to="(310,170)"/> <wire from="(270,180)" to="(300,180)"/> <wire from="(270,190)" to="(590,190)"/> <wire from="(270,80)" to="(380,80)"/> <wire from="(270,90)" to="(370,90)"/> <wire from="(300,180)" to="(300,510)"/> <wire from="(300,180)" to="(600,180)"/> <wire from="(300,510)" to="(300,570)"/> <wire from="(300,510)" to="(390,510)"/> <wire from="(300,570)" to="(300,630)"/> <wire from="(300,570)" to="(390,570)"/> <wire from="(300,630)" to="(300,690)"/> <wire from="(300,630)" to="(390,630)"/> <wire from="(300,690)" to="(390,690)"/> <wire from="(310,170)" to="(310,380)"/> <wire from="(310,170)" to="(610,170)"/> <wire from="(310,380)" to="(310,440)"/> <wire from="(310,380)" to="(390,380)"/> <wire from="(310,440)" to="(310,620)"/> <wire from="(310,440)" to="(390,440)"/> <wire from="(310,620)" to="(310,680)"/> <wire from="(310,620)" to="(390,620)"/> <wire from="(310,680)" to="(390,680)"/> <wire from="(320,160)" to="(320,310)"/> <wire from="(320,160)" to="(620,160)"/> <wire from="(320,310)" to="(320,430)"/> <wire from="(320,310)" to="(390,310)"/> <wire from="(320,430)" to="(320,550)"/> <wire from="(320,430)" to="(390,430)"/> <wire from="(320,550)" to="(320,670)"/> <wire from="(320,550)" to="(390,550)"/> <wire from="(320,670)" to="(390,670)"/> <wire from="(340,120)" to="(340,280)"/> <wire from="(340,120)" to="(930,120)"/> <wire from="(340,280)" to="(340,340)"/> <wire from="(340,280)" to="(390,280)"/> <wire from="(340,340)" to="(340,400)"/> <wire from="(340,340)" to="(390,340)"/> <wire from="(340,400)" to="(340,460)"/> <wire from="(340,400)" to="(390,400)"/> <wire from="(340,460)" to="(340,520)"/> <wire from="(340,460)" to="(390,460)"/> <wire from="(340,520)" to="(340,580)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(340,580)" to="(340,640)"/> <wire from="(340,580)" to="(390,580)"/> <wire from="(340,640)" to="(340,700)"/> <wire from="(340,640)" to="(390,640)"/> <wire from="(340,700)" to="(390,700)"/> <wire from="(350,110)" to="(350,270)"/> <wire from="(350,110)" to="(650,110)"/> <wire from="(350,270)" to="(350,330)"/> <wire from="(350,270)" to="(390,270)"/> <wire from="(350,330)" to="(350,390)"/> <wire from="(350,330)" to="(390,330)"/> <wire from="(350,390)" to="(350,450)"/> <wire from="(350,390)" to="(390,390)"/> <wire from="(350,450)" to="(390,450)"/> <wire from="(360,100)" to="(360,260)"/> <wire from="(360,100)" to="(660,100)"/> <wire from="(360,260)" to="(360,320)"/> <wire from="(360,260)" to="(390,260)"/> <wire from="(360,320)" to="(360,500)"/> <wire from="(360,320)" to="(390,320)"/> <wire from="(360,500)" to="(360,560)"/> <wire from="(360,500)" to="(390,500)"/> <wire from="(360,560)" to="(390,560)"/> <wire from="(370,250)" to="(370,370)"/> <wire from="(370,250)" to="(390,250)"/> <wire from="(370,370)" to="(370,490)"/> <wire from="(370,370)" to="(390,370)"/> <wire from="(370,490)" to="(370,610)"/> <wire from="(370,490)" to="(390,490)"/> <wire from="(370,610)" to="(390,610)"/> <wire from="(370,90)" to="(370,250)"/> <wire from="(370,90)" to="(670,90)"/> <wire from="(380,240)" to="(380,300)"/> <wire from="(380,240)" to="(390,240)"/> <wire from="(380,300)" to="(380,360)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(380,360)" to="(380,420)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(380,420)" to="(380,480)"/> <wire from="(380,420)" to="(390,420)"/> <wire from="(380,480)" to="(380,540)"/> <wire from="(380,480)" to="(390,480)"/> <wire from="(380,540)" to="(380,600)"/> <wire from="(380,540)" to="(390,540)"/> <wire from="(380,600)" to="(380,660)"/> <wire from="(380,600)" to="(390,600)"/> <wire from="(380,660)" to="(390,660)"/> <wire from="(380,80)" to="(380,240)"/> <wire from="(380,80)" to="(680,80)"/> <wire from="(450,260)" to="(500,260)"/> <wire from="(450,320)" to="(490,320)"/> <wire from="(450,380)" to="(480,380)"/> <wire from="(450,440)" to="(470,440)"/> <wire from="(450,500)" to="(460,500)"/> <wire from="(450,560)" to="(480,560)"/> <wire from="(450,620)" to="(490,620)"/> <wire from="(450,680)" to="(500,680)"/> <wire from="(460,470)" to="(460,500)"/> <wire from="(460,470)" to="(500,470)"/> <wire from="(470,440)" to="(470,460)"/> <wire from="(470,460)" to="(500,460)"/> <wire from="(480,380)" to="(480,450)"/> <wire from="(480,450)" to="(500,450)"/> <wire from="(480,480)" to="(480,560)"/> <wire from="(480,480)" to="(500,480)"/> <wire from="(490,320)" to="(490,440)"/> <wire from="(490,440)" to="(500,440)"/> <wire from="(490,490)" to="(490,620)"/> <wire from="(490,490)" to="(500,490)"/> <wire from="(500,260)" to="(500,430)"/> <wire from="(500,500)" to="(500,680)"/> <wire from="(520,420)" to="(530,420)"/> <wire from="(530,420)" to="(530,750)"/> <wire from="(530,750)" to="(1480,750)"/> <wire from="(590,190)" to="(1190,190)"/> <wire from="(590,190)" to="(590,280)"/> <wire from="(590,280)" to="(590,340)"/> <wire from="(590,280)" to="(690,280)"/> <wire from="(590,340)" to="(590,400)"/> <wire from="(590,340)" to="(690,340)"/> <wire from="(590,400)" to="(590,460)"/> <wire from="(590,400)" to="(690,400)"/> <wire from="(590,460)" to="(590,520)"/> <wire from="(590,460)" to="(690,460)"/> <wire from="(590,520)" to="(590,580)"/> <wire from="(590,520)" to="(690,520)"/> <wire from="(590,580)" to="(590,640)"/> <wire from="(590,580)" to="(690,580)"/> <wire from="(590,640)" to="(590,700)"/> <wire from="(590,640)" to="(690,640)"/> <wire from="(590,700)" to="(690,700)"/> <wire from="(600,180)" to="(600,510)"/> <wire from="(600,180)" to="(890,180)"/> <wire from="(600,510)" to="(600,570)"/> <wire from="(600,510)" to="(690,510)"/> <wire from="(600,570)" to="(600,630)"/> <wire from="(600,570)" to="(690,570)"/> <wire from="(600,630)" to="(600,690)"/> <wire from="(600,630)" to="(690,630)"/> <wire from="(600,690)" to="(690,690)"/> <wire from="(610,170)" to="(610,380)"/> <wire from="(610,170)" to="(900,170)"/> <wire from="(610,380)" to="(610,440)"/> <wire from="(610,380)" to="(690,380)"/> <wire from="(610,440)" to="(610,620)"/> <wire from="(610,440)" to="(690,440)"/> <wire from="(610,620)" to="(610,680)"/> <wire from="(610,620)" to="(690,620)"/> <wire from="(610,680)" to="(690,680)"/> <wire from="(620,160)" to="(620,310)"/> <wire from="(620,160)" to="(910,160)"/> <wire from="(620,310)" to="(620,430)"/> <wire from="(620,310)" to="(690,310)"/> <wire from="(620,430)" to="(620,550)"/> <wire from="(620,430)" to="(690,430)"/> <wire from="(620,550)" to="(620,670)"/> <wire from="(620,550)" to="(690,550)"/> <wire from="(620,670)" to="(690,670)"/> <wire from="(650,110)" to="(650,270)"/> <wire from="(650,110)" to="(940,110)"/> <wire from="(650,270)" to="(650,330)"/> <wire from="(650,270)" to="(690,270)"/> <wire from="(650,330)" to="(650,390)"/> <wire from="(650,330)" to="(690,330)"/> <wire from="(650,390)" to="(650,450)"/> <wire from="(650,390)" to="(690,390)"/> <wire from="(650,450)" to="(690,450)"/> <wire from="(660,100)" to="(660,260)"/> <wire from="(660,100)" to="(950,100)"/> <wire from="(660,260)" to="(660,320)"/> <wire from="(660,260)" to="(690,260)"/> <wire from="(660,320)" to="(660,500)"/> <wire from="(660,320)" to="(690,320)"/> <wire from="(660,500)" to="(660,560)"/> <wire from="(660,500)" to="(690,500)"/> <wire from="(660,560)" to="(690,560)"/> <wire from="(670,250)" to="(670,370)"/> <wire from="(670,250)" to="(690,250)"/> <wire from="(670,370)" to="(670,490)"/> <wire from="(670,370)" to="(690,370)"/> <wire from="(670,490)" to="(670,610)"/> <wire from="(670,490)" to="(690,490)"/> <wire from="(670,610)" to="(690,610)"/> <wire from="(670,90)" to="(670,250)"/> <wire from="(670,90)" to="(960,90)"/> <wire from="(680,240)" to="(680,300)"/> <wire from="(680,240)" to="(690,240)"/> <wire from="(680,300)" to="(680,360)"/> <wire from="(680,300)" to="(690,300)"/> <wire from="(680,360)" to="(680,420)"/> <wire from="(680,360)" to="(690,360)"/> <wire from="(680,420)" to="(680,480)"/> <wire from="(680,420)" to="(690,420)"/> <wire from="(680,480)" to="(680,540)"/> <wire from="(680,480)" to="(690,480)"/> <wire from="(680,540)" to="(680,600)"/> <wire from="(680,540)" to="(690,540)"/> <wire from="(680,600)" to="(680,660)"/> <wire from="(680,600)" to="(690,600)"/> <wire from="(680,660)" to="(690,660)"/> <wire from="(680,80)" to="(1310,80)"/> <wire from="(680,80)" to="(680,240)"/> <wire from="(750,260)" to="(800,260)"/> <wire from="(750,320)" to="(790,320)"/> <wire from="(750,380)" to="(780,380)"/> <wire from="(750,440)" to="(770,440)"/> <wire from="(750,500)" to="(760,500)"/> <wire from="(750,560)" to="(780,560)"/> <wire from="(750,620)" to="(790,620)"/> <wire from="(750,680)" to="(800,680)"/> <wire from="(760,470)" to="(760,500)"/> <wire from="(760,470)" to="(800,470)"/> <wire from="(770,440)" to="(770,460)"/> <wire from="(770,460)" to="(800,460)"/> <wire from="(780,380)" to="(780,450)"/> <wire from="(780,450)" to="(800,450)"/> <wire from="(780,480)" to="(780,560)"/> <wire from="(780,480)" to="(800,480)"/> <wire from="(790,320)" to="(790,440)"/> <wire from="(790,440)" to="(800,440)"/> <wire from="(790,490)" to="(790,620)"/> <wire from="(790,490)" to="(800,490)"/> <wire from="(800,260)" to="(800,430)"/> <wire from="(800,500)" to="(800,680)"/> <wire from="(820,420)" to="(830,420)"/> <wire from="(830,420)" to="(830,760)"/> <wire from="(830,760)" to="(1480,760)"/> <wire from="(890,180)" to="(1200,180)"/> <wire from="(890,180)" to="(890,510)"/> <wire from="(890,510)" to="(890,570)"/> <wire from="(890,510)" to="(980,510)"/> <wire from="(890,570)" to="(890,630)"/> <wire from="(890,570)" to="(980,570)"/> <wire from="(890,630)" to="(890,690)"/> <wire from="(890,630)" to="(980,630)"/> <wire from="(890,690)" to="(980,690)"/> <wire from="(900,170)" to="(1210,170)"/> <wire from="(900,170)" to="(900,380)"/> <wire from="(900,380)" to="(900,440)"/> <wire from="(900,380)" to="(980,380)"/> <wire from="(900,440)" to="(900,620)"/> <wire from="(900,440)" to="(980,440)"/> <wire from="(900,620)" to="(900,680)"/> <wire from="(900,620)" to="(980,620)"/> <wire from="(900,680)" to="(980,680)"/> <wire from="(910,160)" to="(1220,160)"/> <wire from="(910,160)" to="(910,310)"/> <wire from="(910,310)" to="(910,430)"/> <wire from="(910,310)" to="(980,310)"/> <wire from="(910,430)" to="(910,550)"/> <wire from="(910,430)" to="(980,430)"/> <wire from="(910,550)" to="(910,670)"/> <wire from="(910,550)" to="(980,550)"/> <wire from="(910,670)" to="(980,670)"/> <wire from="(920,150)" to="(1230,150)"/> <wire from="(920,150)" to="(920,240)"/> <wire from="(920,240)" to="(920,300)"/> <wire from="(920,240)" to="(980,240)"/> <wire from="(920,300)" to="(920,360)"/> <wire from="(920,300)" to="(980,300)"/> <wire from="(920,360)" to="(920,420)"/> <wire from="(920,360)" to="(980,360)"/> <wire from="(920,420)" to="(920,480)"/> <wire from="(920,420)" to="(980,420)"/> <wire from="(920,480)" to="(920,540)"/> <wire from="(920,480)" to="(980,480)"/> <wire from="(920,540)" to="(920,600)"/> <wire from="(920,540)" to="(980,540)"/> <wire from="(920,600)" to="(920,660)"/> <wire from="(920,600)" to="(980,600)"/> <wire from="(920,660)" to="(980,660)"/> <wire from="(930,120)" to="(1310,120)"/> <wire from="(930,120)" to="(930,280)"/> <wire from="(930,280)" to="(930,340)"/> <wire from="(930,280)" to="(980,280)"/> <wire from="(930,340)" to="(930,400)"/> <wire from="(930,340)" to="(980,340)"/> <wire from="(930,400)" to="(930,460)"/> <wire from="(930,400)" to="(980,400)"/> <wire from="(930,460)" to="(930,520)"/> <wire from="(930,460)" to="(980,460)"/> <wire from="(930,520)" to="(930,580)"/> <wire from="(930,520)" to="(980,520)"/> <wire from="(930,580)" to="(930,640)"/> <wire from="(930,580)" to="(980,580)"/> <wire from="(930,640)" to="(930,700)"/> <wire from="(930,640)" to="(980,640)"/> <wire from="(930,700)" to="(980,700)"/> <wire from="(940,110)" to="(1250,110)"/> <wire from="(940,110)" to="(940,270)"/> <wire from="(940,270)" to="(940,330)"/> <wire from="(940,270)" to="(980,270)"/> <wire from="(940,330)" to="(940,390)"/> <wire from="(940,330)" to="(980,330)"/> <wire from="(940,390)" to="(940,450)"/> <wire from="(940,390)" to="(980,390)"/> <wire from="(940,450)" to="(980,450)"/> <wire from="(950,100)" to="(1260,100)"/> <wire from="(950,100)" to="(950,260)"/> <wire from="(950,260)" to="(950,320)"/> <wire from="(950,260)" to="(980,260)"/> <wire from="(950,320)" to="(950,500)"/> <wire from="(950,320)" to="(980,320)"/> <wire from="(950,500)" to="(950,560)"/> <wire from="(950,500)" to="(980,500)"/> <wire from="(950,560)" to="(980,560)"/> <wire from="(960,250)" to="(960,370)"/> <wire from="(960,250)" to="(980,250)"/> <wire from="(960,370)" to="(960,490)"/> <wire from="(960,370)" to="(980,370)"/> <wire from="(960,490)" to="(960,610)"/> <wire from="(960,490)" to="(980,490)"/> <wire from="(960,610)" to="(980,610)"/> <wire from="(960,90)" to="(1270,90)"/> <wire from="(960,90)" to="(960,250)"/> </circuit> <circuit name="Length_Decoder2"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Length_Decoder2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1230,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dec2_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1270,500)" name="Constant"/> <comp lib="0" loc="(1320,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(180,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Dec2_In"/> <a name="radix" val="16"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(210,350)" name="Splitter"> <a name="fanout" val="32"/> <a name="incoming" val="32"/> </comp> <comp lib="1" loc="(1130,1060)" name="NOR Gate"> <a name="inputs" val="12"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1130,520)" name="NOR Gate"> <a name="inputs" val="16"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1130,710)" name="NOR Gate"> <a name="inputs" val="12"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1130,880)" name="NOR Gate"> <a name="inputs" val="13"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(650,1120)" name="NOR Gate"> <a name="inputs" val="27"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(650,520)" name="NOR Gate"> <a name="inputs" val="29"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(650,820)" name="NOR Gate"> <a name="inputs" val="28"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(1090,475)" name="Text"> <a name="text" val="4"/> </comp> <comp lib="8" loc="(1090,665)" name="Text"> <a name="text" val="3"/> </comp> <comp lib="8" loc="(1095,1020)" name="Text"> <a name="text" val="1"/> </comp> <comp lib="8" loc="(1095,835)" name="Text"> <a name="text" val="2"/> </comp> <comp lib="8" loc="(625,1080)" name="Text"> <a name="text" val="5"/> </comp> <comp lib="8" loc="(625,780)" name="Text"> <a name="text" val="6"/> </comp> <comp lib="8" loc="(630,485)" name="Text"> <a name="text" val="7"/> </comp> <wire from="(1130,1060)" to="(1190,1060)"/> <wire from="(1130,520)" to="(1160,520)"/> <wire from="(1130,710)" to="(1170,710)"/> <wire from="(1130,880)" to="(1180,880)"/> <wire from="(1160,520)" to="(1160,540)"/> <wire from="(1160,540)" to="(1300,540)"/> <wire from="(1170,130)" to="(1170,250)"/> <wire from="(1170,130)" to="(1230,130)"/> <wire from="(1170,250)" to="(1320,250)"/> <wire from="(1170,530)" to="(1170,710)"/> <wire from="(1170,530)" to="(1300,530)"/> <wire from="(1180,520)" to="(1180,880)"/> <wire from="(1180,520)" to="(1300,520)"/> <wire from="(1190,510)" to="(1190,1060)"/> <wire from="(1190,510)" to="(1300,510)"/> <wire from="(1210,570)" to="(1210,1270)"/> <wire from="(1210,570)" to="(1300,570)"/> <wire from="(1220,560)" to="(1220,1280)"/> <wire from="(1220,560)" to="(1300,560)"/> <wire from="(1230,550)" to="(1230,1290)"/> <wire from="(1230,550)" to="(1300,550)"/> <wire from="(1270,500)" to="(1300,500)"/> <wire from="(1320,250)" to="(1320,490)"/> <wire from="(180,130)" to="(190,130)"/> <wire from="(190,130)" to="(190,350)"/> <wire from="(190,350)" to="(210,350)"/> <wire from="(230,100)" to="(310,100)"/> <wire from="(230,110)" to="(320,110)"/> <wire from="(230,120)" to="(330,120)"/> <wire from="(230,130)" to="(340,130)"/> <wire from="(230,140)" to="(350,140)"/> <wire from="(230,150)" to="(360,150)"/> <wire from="(230,160)" to="(370,160)"/> <wire from="(230,170)" to="(380,170)"/> <wire from="(230,180)" to="(390,180)"/> <wire from="(230,190)" to="(400,190)"/> <wire from="(230,200)" to="(410,200)"/> <wire from="(230,210)" to="(420,210)"/> <wire from="(230,220)" to="(430,220)"/> <wire from="(230,230)" to="(440,230)"/> <wire from="(230,240)" to="(450,240)"/> <wire from="(230,250)" to="(460,250)"/> <wire from="(230,260)" to="(470,260)"/> <wire from="(230,270)" to="(480,270)"/> <wire from="(230,280)" to="(490,280)"/> <wire from="(230,290)" to="(500,290)"/> <wire from="(230,30)" to="(240,30)"/> <wire from="(230,300)" to="(510,300)"/> <wire from="(230,310)" to="(520,310)"/> <wire from="(230,320)" to="(530,320)"/> <wire from="(230,330)" to="(540,330)"/> <wire from="(230,340)" to="(550,340)"/> <wire from="(230,40)" to="(250,40)"/> <wire from="(230,50)" to="(260,50)"/> <wire from="(230,60)" to="(270,60)"/> <wire from="(230,70)" to="(280,70)"/> <wire from="(230,80)" to="(290,80)"/> <wire from="(230,90)" to="(300,90)"/> <wire from="(240,30)" to="(240,380)"/> <wire from="(240,30)" to="(680,30)"/> <wire from="(240,380)" to="(240,680)"/> <wire from="(240,380)" to="(570,380)"/> <wire from="(240,680)" to="(240,990)"/> <wire from="(240,680)" to="(570,680)"/> <wire from="(240,990)" to="(570,990)"/> <wire from="(250,1000)" to="(570,1000)"/> <wire from="(250,390)" to="(250,690)"/> <wire from="(250,390)" to="(570,390)"/> <wire from="(250,40)" to="(250,390)"/> <wire from="(250,40)" to="(690,40)"/> <wire from="(250,690)" to="(250,1000)"/> <wire from="(250,690)" to="(570,690)"/> <wire from="(260,400)" to="(260,700)"/> <wire from="(260,400)" to="(570,400)"/> <wire from="(260,50)" to="(260,400)"/> <wire from="(260,50)" to="(700,50)"/> <wire from="(260,700)" to="(570,700)"/> <wire from="(270,1010)" to="(570,1010)"/> <wire from="(270,410)" to="(270,1010)"/> <wire from="(270,410)" to="(570,410)"/> <wire from="(270,60)" to="(270,410)"/> <wire from="(270,60)" to="(710,60)"/> <wire from="(280,1020)" to="(570,1020)"/> <wire from="(280,70)" to="(280,710)"/> <wire from="(280,70)" to="(720,70)"/> <wire from="(280,710)" to="(280,1020)"/> <wire from="(280,710)" to="(570,710)"/> <wire from="(290,420)" to="(290,720)"/> <wire from="(290,420)" to="(570,420)"/> <wire from="(290,720)" to="(570,720)"/> <wire from="(290,80)" to="(290,420)"/> <wire from="(290,80)" to="(730,80)"/> <wire from="(300,1030)" to="(570,1030)"/> <wire from="(300,430)" to="(300,730)"/> <wire from="(300,430)" to="(570,430)"/> <wire from="(300,730)" to="(300,1030)"/> <wire from="(300,730)" to="(570,730)"/> <wire from="(300,90)" to="(300,430)"/> <wire from="(300,90)" to="(740,90)"/> <wire from="(310,100)" to="(310,440)"/> <wire from="(310,100)" to="(750,100)"/> <wire from="(310,1040)" to="(570,1040)"/> <wire from="(310,440)" to="(310,740)"/> <wire from="(310,440)" to="(570,440)"/> <wire from="(310,740)" to="(310,1040)"/> <wire from="(310,740)" to="(570,740)"/> <wire from="(320,1050)" to="(570,1050)"/> <wire from="(320,110)" to="(320,450)"/> <wire from="(320,110)" to="(760,110)"/> <wire from="(320,450)" to="(320,750)"/> <wire from="(320,450)" to="(570,450)"/> <wire from="(320,750)" to="(320,1050)"/> <wire from="(320,750)" to="(570,750)"/> <wire from="(330,1060)" to="(570,1060)"/> <wire from="(330,120)" to="(330,460)"/> <wire from="(330,120)" to="(770,120)"/> <wire from="(330,460)" to="(330,760)"/> <wire from="(330,460)" to="(570,460)"/> <wire from="(330,760)" to="(330,1060)"/> <wire from="(330,760)" to="(570,760)"/> <wire from="(340,130)" to="(340,470)"/> <wire from="(340,130)" to="(780,130)"/> <wire from="(340,470)" to="(340,770)"/> <wire from="(340,470)" to="(570,470)"/> <wire from="(340,770)" to="(570,770)"/> <wire from="(350,1070)" to="(570,1070)"/> <wire from="(350,140)" to="(350,480)"/> <wire from="(350,140)" to="(790,140)"/> <wire from="(350,480)" to="(350,1070)"/> <wire from="(350,480)" to="(570,480)"/> <wire from="(360,150)" to="(360,780)"/> <wire from="(360,150)" to="(800,150)"/> <wire from="(360,780)" to="(570,780)"/> <wire from="(370,1080)" to="(570,1080)"/> <wire from="(370,160)" to="(370,490)"/> <wire from="(370,160)" to="(810,160)"/> <wire from="(370,490)" to="(370,1080)"/> <wire from="(370,490)" to="(570,490)"/> <wire from="(380,1090)" to="(570,1090)"/> <wire from="(380,170)" to="(380,500)"/> <wire from="(380,170)" to="(820,170)"/> <wire from="(380,500)" to="(380,790)"/> <wire from="(380,500)" to="(570,500)"/> <wire from="(380,790)" to="(380,1090)"/> <wire from="(380,790)" to="(570,790)"/> <wire from="(390,1100)" to="(570,1100)"/> <wire from="(390,180)" to="(390,510)"/> <wire from="(390,180)" to="(830,180)"/> <wire from="(390,510)" to="(390,800)"/> <wire from="(390,510)" to="(570,510)"/> <wire from="(390,800)" to="(390,1100)"/> <wire from="(390,800)" to="(570,800)"/> <wire from="(400,190)" to="(400,360)"/> <wire from="(400,190)" to="(840,190)"/> <wire from="(410,1110)" to="(570,1110)"/> <wire from="(410,200)" to="(410,520)"/> <wire from="(410,200)" to="(850,200)"/> <wire from="(410,520)" to="(410,810)"/> <wire from="(410,520)" to="(570,520)"/> <wire from="(410,810)" to="(410,1110)"/> <wire from="(410,810)" to="(570,810)"/> <wire from="(420,1120)" to="(570,1120)"/> <wire from="(420,210)" to="(420,530)"/> <wire from="(420,210)" to="(860,210)"/> <wire from="(420,530)" to="(420,830)"/> <wire from="(420,530)" to="(570,530)"/> <wire from="(420,830)" to="(420,1120)"/> <wire from="(420,830)" to="(570,830)"/> <wire from="(430,1130)" to="(570,1130)"/> <wire from="(430,220)" to="(430,540)"/> <wire from="(430,220)" to="(870,220)"/> <wire from="(430,540)" to="(430,840)"/> <wire from="(430,540)" to="(570,540)"/> <wire from="(430,840)" to="(430,1130)"/> <wire from="(430,840)" to="(570,840)"/> <wire from="(440,1140)" to="(570,1140)"/> <wire from="(440,230)" to="(440,550)"/> <wire from="(440,230)" to="(880,230)"/> <wire from="(440,550)" to="(440,850)"/> <wire from="(440,550)" to="(570,550)"/> <wire from="(440,850)" to="(440,1140)"/> <wire from="(440,850)" to="(570,850)"/> <wire from="(450,1150)" to="(570,1150)"/> <wire from="(450,240)" to="(450,560)"/> <wire from="(450,240)" to="(890,240)"/> <wire from="(450,560)" to="(450,860)"/> <wire from="(450,560)" to="(570,560)"/> <wire from="(450,860)" to="(450,1150)"/> <wire from="(450,860)" to="(570,860)"/> <wire from="(460,1160)" to="(570,1160)"/> <wire from="(460,250)" to="(460,570)"/> <wire from="(460,250)" to="(900,250)"/> <wire from="(460,570)" to="(460,870)"/> <wire from="(460,570)" to="(570,570)"/> <wire from="(460,870)" to="(460,1160)"/> <wire from="(460,870)" to="(570,870)"/> <wire from="(470,1170)" to="(570,1170)"/> <wire from="(470,260)" to="(470,580)"/> <wire from="(470,260)" to="(910,260)"/> <wire from="(470,580)" to="(470,880)"/> <wire from="(470,580)" to="(570,580)"/> <wire from="(470,880)" to="(470,1170)"/> <wire from="(470,880)" to="(570,880)"/> <wire from="(480,1180)" to="(570,1180)"/> <wire from="(480,270)" to="(480,590)"/> <wire from="(480,270)" to="(920,270)"/> <wire from="(480,590)" to="(480,890)"/> <wire from="(480,590)" to="(570,590)"/> <wire from="(480,890)" to="(480,1180)"/> <wire from="(480,890)" to="(570,890)"/> <wire from="(490,1190)" to="(570,1190)"/> <wire from="(490,280)" to="(490,600)"/> <wire from="(490,280)" to="(930,280)"/> <wire from="(490,600)" to="(490,900)"/> <wire from="(490,600)" to="(570,600)"/> <wire from="(490,900)" to="(490,1190)"/> <wire from="(490,900)" to="(570,900)"/> <wire from="(500,1200)" to="(570,1200)"/> <wire from="(500,290)" to="(500,610)"/> <wire from="(500,290)" to="(940,290)"/> <wire from="(500,610)" to="(500,910)"/> <wire from="(500,610)" to="(570,610)"/> <wire from="(500,910)" to="(500,1200)"/> <wire from="(500,910)" to="(570,910)"/> <wire from="(510,1210)" to="(570,1210)"/> <wire from="(510,300)" to="(510,620)"/> <wire from="(510,300)" to="(950,300)"/> <wire from="(510,620)" to="(510,920)"/> <wire from="(510,620)" to="(570,620)"/> <wire from="(510,920)" to="(510,1210)"/> <wire from="(510,920)" to="(570,920)"/> <wire from="(520,1220)" to="(570,1220)"/> <wire from="(520,310)" to="(520,630)"/> <wire from="(520,310)" to="(960,310)"/> <wire from="(520,630)" to="(520,930)"/> <wire from="(520,630)" to="(570,630)"/> <wire from="(520,930)" to="(520,1220)"/> <wire from="(520,930)" to="(570,930)"/> <wire from="(530,1230)" to="(570,1230)"/> <wire from="(530,320)" to="(530,640)"/> <wire from="(530,320)" to="(970,320)"/> <wire from="(530,640)" to="(530,940)"/> <wire from="(530,640)" to="(570,640)"/> <wire from="(530,940)" to="(530,1230)"/> <wire from="(530,940)" to="(570,940)"/> <wire from="(540,1240)" to="(570,1240)"/> <wire from="(540,330)" to="(540,650)"/> <wire from="(540,330)" to="(980,330)"/> <wire from="(540,650)" to="(540,950)"/> <wire from="(540,650)" to="(570,650)"/> <wire from="(540,950)" to="(540,1240)"/> <wire from="(540,950)" to="(570,950)"/> <wire from="(550,1250)" to="(570,1250)"/> <wire from="(550,340)" to="(550,660)"/> <wire from="(550,340)" to="(990,340)"/> <wire from="(550,660)" to="(550,960)"/> <wire from="(550,660)" to="(570,660)"/> <wire from="(550,960)" to="(550,1250)"/> <wire from="(550,960)" to="(570,960)"/> <wire from="(650,1120)" to="(650,1290)"/> <wire from="(650,1290)" to="(1230,1290)"/> <wire from="(650,520)" to="(670,520)"/> <wire from="(650,820)" to="(660,820)"/> <wire from="(660,1280)" to="(1220,1280)"/> <wire from="(660,820)" to="(660,1280)"/> <wire from="(670,1270)" to="(1210,1270)"/> <wire from="(670,520)" to="(670,1270)"/> <wire from="(680,1000)" to="(1050,1000)"/> <wire from="(680,30)" to="(1060,30)"/> <wire from="(680,30)" to="(680,440)"/> <wire from="(680,440)" to="(1050,440)"/> <wire from="(680,440)" to="(680,820)"/> <wire from="(680,820)" to="(1050,820)"/> <wire from="(680,820)" to="(680,1000)"/> <wire from="(690,40)" to="(1060,40)"/> <wire from="(690,40)" to="(690,650)"/> <wire from="(690,650)" to="(1050,650)"/> <wire from="(690,650)" to="(690,830)"/> <wire from="(690,830)" to="(1050,830)"/> <wire from="(700,450)" to="(1050,450)"/> <wire from="(700,450)" to="(700,660)"/> <wire from="(700,50)" to="(1060,50)"/> <wire from="(700,50)" to="(700,450)"/> <wire from="(700,660)" to="(1050,660)"/> <wire from="(710,460)" to="(1050,460)"/> <wire from="(710,60)" to="(1060,60)"/> <wire from="(710,60)" to="(710,460)"/> <wire from="(720,70)" to="(1060,70)"/> <wire from="(720,70)" to="(720,360)"/> <wire from="(730,80)" to="(1060,80)"/> <wire from="(730,80)" to="(730,840)"/> <wire from="(730,840)" to="(1050,840)"/> <wire from="(740,1010)" to="(1050,1010)"/> <wire from="(740,470)" to="(1050,470)"/> <wire from="(740,470)" to="(740,1010)"/> <wire from="(740,90)" to="(1060,90)"/> <wire from="(740,90)" to="(740,470)"/> <wire from="(750,100)" to="(1060,100)"/> <wire from="(750,100)" to="(750,850)"/> <wire from="(750,1020)" to="(1050,1020)"/> <wire from="(750,850)" to="(1050,850)"/> <wire from="(750,850)" to="(750,1020)"/> <wire from="(760,110)" to="(1060,110)"/> <wire from="(760,110)" to="(760,480)"/> <wire from="(760,480)" to="(1050,480)"/> <wire from="(760,480)" to="(760,860)"/> <wire from="(760,860)" to="(1050,860)"/> <wire from="(770,120)" to="(1060,120)"/> <wire from="(770,120)" to="(770,670)"/> <wire from="(770,670)" to="(1050,670)"/> <wire from="(780,130)" to="(1060,130)"/> <wire from="(780,130)" to="(780,490)"/> <wire from="(780,490)" to="(1050,490)"/> <wire from="(790,140)" to="(1060,140)"/> <wire from="(790,140)" to="(790,360)"/> <wire from="(800,150)" to="(1060,150)"/> <wire from="(800,150)" to="(800,360)"/> <wire from="(810,160)" to="(1060,160)"/> <wire from="(810,160)" to="(810,500)"/> <wire from="(810,500)" to="(1050,500)"/> <wire from="(810,500)" to="(810,680)"/> <wire from="(810,680)" to="(1050,680)"/> <wire from="(820,170)" to="(1060,170)"/> <wire from="(820,170)" to="(820,510)"/> <wire from="(820,510)" to="(1050,510)"/> <wire from="(830,180)" to="(1060,180)"/> <wire from="(830,180)" to="(830,360)"/> <wire from="(840,1030)" to="(1050,1030)"/> <wire from="(840,190)" to="(1060,190)"/> <wire from="(840,190)" to="(840,1030)"/> <wire from="(850,1040)" to="(1050,1040)"/> <wire from="(850,200)" to="(1060,200)"/> <wire from="(850,200)" to="(850,530)"/> <wire from="(850,530)" to="(1050,530)"/> <wire from="(850,530)" to="(850,690)"/> <wire from="(850,690)" to="(1050,690)"/> <wire from="(850,690)" to="(850,870)"/> <wire from="(850,870)" to="(1050,870)"/> <wire from="(850,870)" to="(850,1040)"/> <wire from="(860,210)" to="(1060,210)"/> <wire from="(860,210)" to="(860,540)"/> <wire from="(860,540)" to="(1050,540)"/> <wire from="(860,540)" to="(860,700)"/> <wire from="(860,700)" to="(1050,700)"/> <wire from="(860,700)" to="(860,880)"/> <wire from="(860,880)" to="(1050,880)"/> <wire from="(870,1050)" to="(1050,1050)"/> <wire from="(870,220)" to="(1060,220)"/> <wire from="(870,220)" to="(870,550)"/> <wire from="(870,550)" to="(1050,550)"/> <wire from="(870,550)" to="(870,720)"/> <wire from="(870,720)" to="(1050,720)"/> <wire from="(870,720)" to="(870,1050)"/> <wire from="(880,230)" to="(1060,230)"/> <wire from="(880,230)" to="(880,560)"/> <wire from="(880,560)" to="(1050,560)"/> <wire from="(880,560)" to="(880,730)"/> <wire from="(880,730)" to="(1050,730)"/> <wire from="(890,1070)" to="(1050,1070)"/> <wire from="(890,240)" to="(1060,240)"/> <wire from="(890,240)" to="(890,570)"/> <wire from="(890,570)" to="(1050,570)"/> <wire from="(890,570)" to="(890,890)"/> <wire from="(890,890)" to="(1050,890)"/> <wire from="(890,890)" to="(890,1070)"/> <wire from="(900,250)" to="(1060,250)"/> <wire from="(900,250)" to="(900,580)"/> <wire from="(900,580)" to="(1050,580)"/> <wire from="(900,580)" to="(900,900)"/> <wire from="(900,900)" to="(1050,900)"/> <wire from="(910,1080)" to="(1050,1080)"/> <wire from="(910,260)" to="(1060,260)"/> <wire from="(910,260)" to="(910,590)"/> <wire from="(910,590)" to="(1050,590)"/> <wire from="(910,590)" to="(910,1080)"/> <wire from="(920,270)" to="(1060,270)"/> <wire from="(920,270)" to="(920,600)"/> <wire from="(920,600)" to="(1050,600)"/> <wire from="(930,1090)" to="(1050,1090)"/> <wire from="(930,280)" to="(1060,280)"/> <wire from="(930,280)" to="(930,740)"/> <wire from="(930,740)" to="(1050,740)"/> <wire from="(930,740)" to="(930,910)"/> <wire from="(930,910)" to="(1050,910)"/> <wire from="(930,910)" to="(930,1090)"/> <wire from="(940,290)" to="(1060,290)"/> <wire from="(940,290)" to="(940,750)"/> <wire from="(940,750)" to="(1050,750)"/> <wire from="(940,750)" to="(940,920)"/> <wire from="(940,920)" to="(1050,920)"/> <wire from="(950,1100)" to="(1050,1100)"/> <wire from="(950,300)" to="(1060,300)"/> <wire from="(950,300)" to="(950,760)"/> <wire from="(950,760)" to="(1050,760)"/> <wire from="(950,760)" to="(950,1100)"/> <wire from="(960,310)" to="(1060,310)"/> <wire from="(960,310)" to="(960,770)"/> <wire from="(960,770)" to="(1050,770)"/> <wire from="(970,1110)" to="(1050,1110)"/> <wire from="(970,320)" to="(1060,320)"/> <wire from="(970,320)" to="(970,930)"/> <wire from="(970,930)" to="(1050,930)"/> <wire from="(970,930)" to="(970,1110)"/> <wire from="(980,330)" to="(1060,330)"/> <wire from="(980,330)" to="(980,940)"/> <wire from="(980,940)" to="(1050,940)"/> <wire from="(990,1120)" to="(1050,1120)"/> <wire from="(990,340)" to="(1060,340)"/> <wire from="(990,340)" to="(990,1120)"/> </circuit> <circuit name="Length_Decoder"> <a name="appearance" val="evolution"/> <a name="circuit" val="Length_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,270)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="2"/> <a name="bit6" val="3"/> <a name="bit7" val="4"/> <a name="fanout" val="5"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,220)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(890,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="LC"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(340,130)" name="TranspDLatch"/> <comp loc="(340,190)" name="TranspDLatch"/> <comp loc="(340,250)" name="TranspDLatch"/> <comp loc="(340,310)" name="TranspDLatch"/> <comp loc="(340,370)" name="TranspDLatch"/> <comp loc="(650,70)" name="Length_Decoder1"/> <comp loc="(880,70)" name="Length_Decoder2"/> <wire from="(150,80)" to="(160,80)"/> <wire from="(160,270)" to="(180,270)"/> <wire from="(160,80)" to="(160,270)"/> <wire from="(200,130)" to="(200,220)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(200,230)" to="(210,230)"/> <wire from="(200,240)" to="(220,240)"/> <wire from="(200,250)" to="(210,250)"/> <wire from="(200,260)" to="(200,370)"/> <wire from="(200,370)" to="(240,370)"/> <wire from="(210,190)" to="(210,230)"/> <wire from="(210,190)" to="(240,190)"/> <wire from="(210,250)" to="(210,310)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(220,240)" to="(220,250)"/> <wire from="(220,250)" to="(240,250)"/> <wire from="(340,130)" to="(380,130)"/> <wire from="(340,190)" to="(370,190)"/> <wire from="(340,250)" to="(380,250)"/> <wire from="(340,310)" to="(370,310)"/> <wire from="(340,370)" to="(380,370)"/> <wire from="(370,190)" to="(370,240)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(370,260)" to="(370,310)"/> <wire from="(370,260)" to="(380,260)"/> <wire from="(380,130)" to="(380,230)"/> <wire from="(380,270)" to="(380,370)"/> <wire from="(400,70)" to="(400,220)"/> <wire from="(400,70)" to="(430,70)"/> <wire from="(650,70)" to="(660,70)"/> <wire from="(880,70)" to="(890,70)"/> </circuit> <circuit name="Length_Control"> <a name="appearance" val="evolution"/> <a name="circuit" val="Length_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1020,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NO_LC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1020,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Bit_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(1020,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="STEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO2"/> </comp> <comp lib="0" loc="(170,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(170,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WriteEn"/> </comp> <comp lib="0" loc="(170,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(170,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_Bit_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(170,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CarryOut"/> </comp> <comp lib="0" loc="(170,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(170,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,100)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,130)" name="Tunnel"> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,200)" name="Tunnel"> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,230)" name="Tunnel"> <a name="label" val="WriteEn"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,260)" name="Tunnel"> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(180,70)" name="Tunnel"> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(300,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(300,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(300,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(310,40)" name="Tunnel"> <a name="label" val="ACLK4"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(330,210)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(580,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(580,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,180)" name="NoConnect"/> <comp lib="0" loc="(650,270)" name="NoConnect"/> <comp lib="0" loc="(750,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACLK1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(780,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(780,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WriteEn"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(820,390)" name="NoConnect"/> <comp lib="0" loc="(900,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(930,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4015"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="1" loc="(210,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,230)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(720,150)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,260)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(850,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,220)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(930,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(950,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(960,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,300)" name="Controlled Inverter"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(430,120)" name="Text"> <a name="text" val="reg_enable"/> </comp> <comp lib="8" loc="(530,190)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="disable"/> </comp> <comp lib="8" loc="(830,175)" name="Text"> <a name="text" val="stat_ff"/> </comp> <comp lib="8" loc="(970,325)" name="Text"> <a name="text" val="notif0"/> </comp> <comp loc="(490,170)" name="TranspDLatch"/> <comp loc="(590,160)" name="DLatch"> <a name="label" val="ena_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(590,250)" name="DLatch"> <a name="label" val="cout_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,370)" name="DLatch"> <a name="label" val="step_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,100)" to="(180,100)"/> <wire from="(170,130)" to="(180,130)"/> <wire from="(170,200)" to="(180,200)"/> <wire from="(170,230)" to="(180,230)"/> <wire from="(170,260)" to="(180,260)"/> <wire from="(170,320)" to="(250,320)"/> <wire from="(170,370)" to="(540,370)"/> <wire from="(170,40)" to="(190,40)"/> <wire from="(170,70)" to="(180,70)"/> <wire from="(210,40)" to="(280,40)"/> <wire from="(250,170)" to="(250,320)"/> <wire from="(250,170)" to="(340,170)"/> <wire from="(280,40)" to="(280,70)"/> <wire from="(280,40)" to="(310,40)"/> <wire from="(280,70)" to="(670,70)"/> <wire from="(300,110)" to="(350,110)"/> <wire from="(300,150)" to="(350,150)"/> <wire from="(300,190)" to="(350,190)"/> <wire from="(310,130)" to="(310,230)"/> <wire from="(310,130)" to="(340,130)"/> <wire from="(310,230)" to="(430,230)"/> <wire from="(330,210)" to="(340,210)"/> <wire from="(350,110)" to="(350,120)"/> <wire from="(350,150)" to="(350,160)"/> <wire from="(350,190)" to="(350,200)"/> <wire from="(360,130)" to="(380,130)"/> <wire from="(360,170)" to="(380,170)"/> <wire from="(360,210)" to="(380,210)"/> <wire from="(380,130)" to="(380,170)"/> <wire from="(380,170)" to="(380,210)"/> <wire from="(380,170)" to="(390,170)"/> <wire from="(450,230)" to="(510,230)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(510,180)" to="(510,230)"/> <wire from="(510,180)" to="(590,180)"/> <wire from="(540,270)" to="(540,370)"/> <wire from="(540,270)" to="(590,270)"/> <wire from="(580,160)" to="(590,160)"/> <wire from="(580,250)" to="(590,250)"/> <wire from="(630,160)" to="(690,160)"/> <wire from="(630,180)" to="(650,180)"/> <wire from="(630,250)" to="(690,250)"/> <wire from="(630,270)" to="(650,270)"/> <wire from="(670,140)" to="(690,140)"/> <wire from="(670,270)" to="(670,430)"/> <wire from="(670,270)" to="(690,270)"/> <wire from="(670,430)" to="(980,430)"/> <wire from="(670,70)" to="(670,140)"/> <wire from="(690,340)" to="(690,390)"/> <wire from="(690,340)" to="(900,340)"/> <wire from="(690,390)" to="(760,390)"/> <wire from="(720,150)" to="(730,150)"/> <wire from="(720,260)" to="(730,260)"/> <wire from="(730,150)" to="(730,200)"/> <wire from="(730,200)" to="(800,200)"/> <wire from="(730,210)" to="(730,260)"/> <wire from="(730,210)" to="(800,210)"/> <wire from="(750,370)" to="(760,370)"/> <wire from="(780,230)" to="(800,230)"/> <wire from="(780,310)" to="(810,310)"/> <wire from="(790,240)" to="(790,270)"/> <wire from="(790,240)" to="(800,240)"/> <wire from="(790,270)" to="(870,270)"/> <wire from="(800,260)" to="(800,290)"/> <wire from="(800,260)" to="(870,260)"/> <wire from="(800,290)" to="(810,290)"/> <wire from="(800,370)" to="(910,370)"/> <wire from="(800,390)" to="(820,390)"/> <wire from="(850,300)" to="(870,300)"/> <wire from="(860,220)" to="(870,220)"/> <wire from="(870,220)" to="(870,260)"/> <wire from="(870,220)" to="(910,220)"/> <wire from="(870,270)" to="(870,300)"/> <wire from="(870,300)" to="(900,300)"/> <wire from="(900,300)" to="(900,340)"/> <wire from="(900,300)" to="(960,300)"/> <wire from="(900,390)" to="(910,390)"/> <wire from="(930,220)" to="(1020,220)"/> <wire from="(930,270)" to="(940,270)"/> <wire from="(950,380)" to="(980,380)"/> <wire from="(960,270)" to="(970,270)"/> <wire from="(970,270)" to="(970,290)"/> <wire from="(980,380)" to="(1020,380)"/> <wire from="(980,380)" to="(980,430)"/> <wire from="(990,300)" to="(1020,300)"/> </circuit> <circuit name="Length_Counter"> <a name="appearance" val="evolution"/> <a name="circuit" val="Length_Counter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WriteEn"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CarryIn"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(150,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LC"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,210)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(950,610)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp loc="(560,100)" name="DownCounterBit"/> <comp loc="(560,270)" name="DownCounterBit"/> <comp loc="(560,440)" name="DownCounterBit"/> <comp loc="(560,610)" name="DownCounterBit"/> <comp loc="(910,100)" name="DownCounterBit"/> <comp loc="(910,270)" name="DownCounterBit"/> <comp loc="(910,440)" name="DownCounterBit"/> <comp loc="(910,610)" name="DownCounterBit"/> <wire from="(120,100)" to="(150,100)"/> <wire from="(120,130)" to="(150,130)"/> <wire from="(120,240)" to="(270,240)"/> <wire from="(120,40)" to="(330,40)"/> <wire from="(120,70)" to="(140,70)"/> <wire from="(140,50)" to="(140,70)"/> <wire from="(140,50)" to="(320,50)"/> <wire from="(150,110)" to="(150,130)"/> <wire from="(150,110)" to="(170,110)"/> <wire from="(150,210)" to="(160,210)"/> <wire from="(150,60)" to="(150,100)"/> <wire from="(150,60)" to="(310,60)"/> <wire from="(170,70)" to="(170,110)"/> <wire from="(170,70)" to="(300,70)"/> <wire from="(180,130)" to="(270,130)"/> <wire from="(180,140)" to="(260,140)"/> <wire from="(180,150)" to="(250,150)"/> <wire from="(180,160)" to="(240,160)"/> <wire from="(180,170)" to="(230,170)"/> <wire from="(180,180)" to="(220,180)"/> <wire from="(180,190)" to="(210,190)"/> <wire from="(180,200)" to="(200,200)"/> <wire from="(200,200)" to="(200,810)"/> <wire from="(200,810)" to="(640,810)"/> <wire from="(210,190)" to="(210,800)"/> <wire from="(210,800)" to="(630,800)"/> <wire from="(220,180)" to="(220,790)"/> <wire from="(220,790)" to="(620,790)"/> <wire from="(230,170)" to="(230,780)"/> <wire from="(230,780)" to="(610,780)"/> <wire from="(240,160)" to="(240,650)"/> <wire from="(240,650)" to="(340,650)"/> <wire from="(250,150)" to="(250,480)"/> <wire from="(250,480)" to="(340,480)"/> <wire from="(260,140)" to="(260,310)"/> <wire from="(260,310)" to="(340,310)"/> <wire from="(270,130)" to="(270,140)"/> <wire from="(270,140)" to="(340,140)"/> <wire from="(270,200)" to="(270,240)"/> <wire from="(270,200)" to="(340,200)"/> <wire from="(290,250)" to="(290,370)"/> <wire from="(290,250)" to="(580,250)"/> <wire from="(290,370)" to="(340,370)"/> <wire from="(290,420)" to="(290,540)"/> <wire from="(290,420)" to="(580,420)"/> <wire from="(290,540)" to="(340,540)"/> <wire from="(290,590)" to="(290,710)"/> <wire from="(290,590)" to="(580,590)"/> <wire from="(290,710)" to="(340,710)"/> <wire from="(300,120)" to="(300,290)"/> <wire from="(300,120)" to="(340,120)"/> <wire from="(300,290)" to="(300,460)"/> <wire from="(300,290)" to="(340,290)"/> <wire from="(300,460)" to="(300,630)"/> <wire from="(300,460)" to="(340,460)"/> <wire from="(300,630)" to="(340,630)"/> <wire from="(300,70)" to="(300,120)"/> <wire from="(300,70)" to="(650,70)"/> <wire from="(310,160)" to="(310,330)"/> <wire from="(310,160)" to="(340,160)"/> <wire from="(310,330)" to="(310,500)"/> <wire from="(310,330)" to="(340,330)"/> <wire from="(310,500)" to="(310,670)"/> <wire from="(310,500)" to="(340,500)"/> <wire from="(310,60)" to="(310,160)"/> <wire from="(310,60)" to="(660,60)"/> <wire from="(310,670)" to="(340,670)"/> <wire from="(320,180)" to="(320,350)"/> <wire from="(320,180)" to="(340,180)"/> <wire from="(320,350)" to="(320,520)"/> <wire from="(320,350)" to="(340,350)"/> <wire from="(320,50)" to="(320,180)"/> <wire from="(320,50)" to="(670,50)"/> <wire from="(320,520)" to="(320,690)"/> <wire from="(320,520)" to="(340,520)"/> <wire from="(320,690)" to="(340,690)"/> <wire from="(330,100)" to="(330,270)"/> <wire from="(330,100)" to="(340,100)"/> <wire from="(330,270)" to="(330,440)"/> <wire from="(330,270)" to="(340,270)"/> <wire from="(330,40)" to="(330,100)"/> <wire from="(330,40)" to="(680,40)"/> <wire from="(330,440)" to="(330,610)"/> <wire from="(330,440)" to="(340,440)"/> <wire from="(330,610)" to="(340,610)"/> <wire from="(560,100)" to="(580,100)"/> <wire from="(560,270)" to="(580,270)"/> <wire from="(560,440)" to="(580,440)"/> <wire from="(560,610)" to="(600,610)"/> <wire from="(580,100)" to="(580,250)"/> <wire from="(580,270)" to="(580,420)"/> <wire from="(580,440)" to="(580,590)"/> <wire from="(600,200)" to="(600,610)"/> <wire from="(600,200)" to="(690,200)"/> <wire from="(610,140)" to="(610,780)"/> <wire from="(610,140)" to="(690,140)"/> <wire from="(620,310)" to="(620,790)"/> <wire from="(620,310)" to="(690,310)"/> <wire from="(630,480)" to="(630,800)"/> <wire from="(630,480)" to="(690,480)"/> <wire from="(640,250)" to="(640,370)"/> <wire from="(640,250)" to="(930,250)"/> <wire from="(640,370)" to="(690,370)"/> <wire from="(640,420)" to="(640,540)"/> <wire from="(640,420)" to="(930,420)"/> <wire from="(640,540)" to="(690,540)"/> <wire from="(640,590)" to="(640,640)"/> <wire from="(640,590)" to="(930,590)"/> <wire from="(640,640)" to="(650,640)"/> <wire from="(640,650)" to="(640,810)"/> <wire from="(640,650)" to="(690,650)"/> <wire from="(650,120)" to="(650,290)"/> <wire from="(650,120)" to="(690,120)"/> <wire from="(650,290)" to="(650,460)"/> <wire from="(650,290)" to="(690,290)"/> <wire from="(650,460)" to="(650,630)"/> <wire from="(650,460)" to="(690,460)"/> <wire from="(650,630)" to="(690,630)"/> <wire from="(650,640)" to="(650,710)"/> <wire from="(650,70)" to="(650,120)"/> <wire from="(650,70)" to="(840,70)"/> <wire from="(650,710)" to="(690,710)"/> <wire from="(660,160)" to="(660,330)"/> <wire from="(660,160)" to="(690,160)"/> <wire from="(660,330)" to="(660,500)"/> <wire from="(660,330)" to="(690,330)"/> <wire from="(660,500)" to="(660,670)"/> <wire from="(660,500)" to="(690,500)"/> <wire from="(660,60)" to="(660,160)"/> <wire from="(660,60)" to="(840,60)"/> <wire from="(660,670)" to="(690,670)"/> <wire from="(670,180)" to="(670,350)"/> <wire from="(670,180)" to="(690,180)"/> <wire from="(670,350)" to="(670,520)"/> <wire from="(670,350)" to="(690,350)"/> <wire from="(670,50)" to="(670,180)"/> <wire from="(670,50)" to="(840,50)"/> <wire from="(670,520)" to="(670,690)"/> <wire from="(670,520)" to="(690,520)"/> <wire from="(670,690)" to="(690,690)"/> <wire from="(680,100)" to="(680,270)"/> <wire from="(680,100)" to="(690,100)"/> <wire from="(680,270)" to="(680,440)"/> <wire from="(680,270)" to="(690,270)"/> <wire from="(680,40)" to="(680,100)"/> <wire from="(680,40)" to="(840,40)"/> <wire from="(680,440)" to="(680,610)"/> <wire from="(680,440)" to="(690,440)"/> <wire from="(680,610)" to="(690,610)"/> <wire from="(910,100)" to="(930,100)"/> <wire from="(910,270)" to="(930,270)"/> <wire from="(910,440)" to="(930,440)"/> <wire from="(910,610)" to="(950,610)"/> <wire from="(930,100)" to="(930,250)"/> <wire from="(930,270)" to="(930,420)"/> <wire from="(930,440)" to="(930,590)"/> </circuit> <circuit name="LengthCounters"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="LengthCounters"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1340,600)" name="Splitter"> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1400,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1400,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NOSQA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NOSQB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NOTRI"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NORND"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(160,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4015"/> </comp> <comp lib="0" loc="(160,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4015"/> </comp> <comp lib="0" loc="(160,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4003"/> </comp> <comp lib="0" loc="(160,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4007"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(160,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(160,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO2"/> </comp> <comp lib="0" loc="(160,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SQA_LC"/> </comp> <comp lib="0" loc="(160,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SQB_LC"/> </comp> <comp lib="0" loc="(160,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TRI_LC"/> </comp> <comp lib="0" loc="(160,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RND_LC"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(190,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,440)" name="Splitter"> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="4"/> <a name="incoming" val="8"/> </comp> <comp lib="8" loc="(105,605)" name="Text"> <a name="text" val="Carries in"/> </comp> <comp lib="8" loc="(120,280)" name="Text"> <a name="text" val="write enablers"/> </comp> <comp loc="(1030,330)" name="Length_Counter"> <a name="label" val="TRI_cnt8"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1050,470)" name="Length_Control"> <a name="label" val="TRI_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1260,330)" name="Length_Counter"> <a name="label" val="RND_cnt8"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1280,470)" name="Length_Control"> <a name="label" val="RND_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,340)" name="Length_Decoder"> <a name="label" val="lc_dec"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,330)" name="Length_Counter"> <a name="label" val="SQA_cnt8"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,470)" name="Length_Control"> <a name="label" val="SQA_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(790,330)" name="Length_Counter"> <a name="label" val="SQB_cnt8"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(810,470)" name="Length_Control"> <a name="label" val="SQB_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1030,330)" to="(1060,330)"/> <wire from="(1050,470)" to="(1080,470)"/> <wire from="(1050,480)" to="(1060,480)"/> <wire from="(1050,490)" to="(1070,490)"/> <wire from="(1060,330)" to="(1060,430)"/> <wire from="(1060,480)" to="(1060,630)"/> <wire from="(1060,630)" to="(1320,630)"/> <wire from="(1070,420)" to="(1070,490)"/> <wire from="(1080,470)" to="(1080,690)"/> <wire from="(1080,690)" to="(1370,690)"/> <wire from="(1090,380)" to="(1090,750)"/> <wire from="(1090,380)" to="(1150,380)"/> <wire from="(1100,250)" to="(1100,360)"/> <wire from="(1100,360)" to="(1100,520)"/> <wire from="(1100,360)" to="(1150,360)"/> <wire from="(1100,520)" to="(1150,520)"/> <wire from="(1110,350)" to="(1110,490)"/> <wire from="(1110,350)" to="(1150,350)"/> <wire from="(1110,490)" to="(1150,490)"/> <wire from="(1110,90)" to="(1110,350)"/> <wire from="(1110,90)" to="(1250,90)"/> <wire from="(1120,340)" to="(1120,420)"/> <wire from="(1120,340)" to="(1150,340)"/> <wire from="(1120,420)" to="(1300,420)"/> <wire from="(1120,430)" to="(1120,550)"/> <wire from="(1120,430)" to="(1290,430)"/> <wire from="(1120,550)" to="(1150,550)"/> <wire from="(1130,30)" to="(1130,470)"/> <wire from="(1130,30)" to="(1250,30)"/> <wire from="(1130,470)" to="(1150,470)"/> <wire from="(1140,330)" to="(1140,480)"/> <wire from="(1140,330)" to="(1150,330)"/> <wire from="(1140,480)" to="(1150,480)"/> <wire from="(1140,540)" to="(1140,710)"/> <wire from="(1140,540)" to="(1150,540)"/> <wire from="(1140,60)" to="(1140,330)"/> <wire from="(1140,60)" to="(1250,60)"/> <wire from="(1260,330)" to="(1290,330)"/> <wire from="(1280,470)" to="(1310,470)"/> <wire from="(1280,480)" to="(1290,480)"/> <wire from="(1280,490)" to="(1300,490)"/> <wire from="(1290,330)" to="(1290,430)"/> <wire from="(1290,480)" to="(1290,640)"/> <wire from="(1290,640)" to="(1320,640)"/> <wire from="(1300,420)" to="(1300,490)"/> <wire from="(1310,470)" to="(1310,700)"/> <wire from="(1310,700)" to="(1380,700)"/> <wire from="(1340,350)" to="(1340,600)"/> <wire from="(1340,350)" to="(1400,350)"/> <wire from="(1350,460)" to="(1350,670)"/> <wire from="(1350,460)" to="(1400,460)"/> <wire from="(1360,490)" to="(1360,680)"/> <wire from="(1360,490)" to="(1400,490)"/> <wire from="(1370,520)" to="(1370,690)"/> <wire from="(1370,520)" to="(1400,520)"/> <wire from="(1380,550)" to="(1380,700)"/> <wire from="(1380,550)" to="(1400,550)"/> <wire from="(160,120)" to="(390,120)"/> <wire from="(160,150)" to="(380,150)"/> <wire from="(160,190)" to="(400,190)"/> <wire from="(160,210)" to="(630,210)"/> <wire from="(160,230)" to="(870,230)"/> <wire from="(160,250)" to="(1100,250)"/> <wire from="(160,30)" to="(430,30)"/> <wire from="(160,460)" to="(360,460)"/> <wire from="(160,510)" to="(340,510)"/> <wire from="(160,530)" to="(220,530)"/> <wire from="(160,550)" to="(200,550)"/> <wire from="(160,570)" to="(190,570)"/> <wire from="(160,60)" to="(440,60)"/> <wire from="(160,90)" to="(410,90)"/> <wire from="(190,340)" to="(200,340)"/> <wire from="(190,570)" to="(190,750)"/> <wire from="(190,750)" to="(1090,750)"/> <wire from="(200,340)" to="(200,440)"/> <wire from="(200,340)" to="(220,340)"/> <wire from="(200,440)" to="(230,440)"/> <wire from="(200,550)" to="(200,740)"/> <wire from="(200,740)" to="(860,740)"/> <wire from="(220,530)" to="(220,730)"/> <wire from="(220,730)" to="(620,730)"/> <wire from="(250,400)" to="(280,400)"/> <wire from="(250,410)" to="(270,410)"/> <wire from="(250,420)" to="(260,420)"/> <wire from="(250,430)" to="(250,710)"/> <wire from="(250,710)" to="(1140,710)"/> <wire from="(260,420)" to="(260,700)"/> <wire from="(260,700)" to="(910,700)"/> <wire from="(270,410)" to="(270,690)"/> <wire from="(270,690)" to="(670,690)"/> <wire from="(280,400)" to="(280,540)"/> <wire from="(280,540)" to="(450,540)"/> <wire from="(320,340)" to="(340,340)"/> <wire from="(340,340)" to="(340,370)"/> <wire from="(340,370)" to="(450,370)"/> <wire from="(340,380)" to="(340,510)"/> <wire from="(340,380)" to="(450,380)"/> <wire from="(360,460)" to="(360,500)"/> <wire from="(360,500)" to="(450,500)"/> <wire from="(380,150)" to="(1250,150)"/> <wire from="(380,150)" to="(380,530)"/> <wire from="(380,530)" to="(450,530)"/> <wire from="(390,120)" to="(1250,120)"/> <wire from="(390,120)" to="(390,510)"/> <wire from="(390,510)" to="(450,510)"/> <wire from="(400,190)" to="(400,360)"/> <wire from="(400,360)" to="(400,520)"/> <wire from="(400,360)" to="(450,360)"/> <wire from="(400,520)" to="(450,520)"/> <wire from="(410,350)" to="(410,490)"/> <wire from="(410,350)" to="(450,350)"/> <wire from="(410,490)" to="(450,490)"/> <wire from="(410,90)" to="(410,350)"/> <wire from="(410,90)" to="(640,90)"/> <wire from="(420,340)" to="(420,420)"/> <wire from="(420,340)" to="(450,340)"/> <wire from="(420,420)" to="(600,420)"/> <wire from="(420,430)" to="(420,550)"/> <wire from="(420,430)" to="(590,430)"/> <wire from="(420,550)" to="(450,550)"/> <wire from="(430,30)" to="(430,470)"/> <wire from="(430,30)" to="(660,30)"/> <wire from="(430,470)" to="(450,470)"/> <wire from="(440,330)" to="(440,480)"/> <wire from="(440,330)" to="(450,330)"/> <wire from="(440,480)" to="(450,480)"/> <wire from="(440,60)" to="(440,330)"/> <wire from="(440,60)" to="(670,60)"/> <wire from="(450,370)" to="(680,370)"/> <wire from="(450,500)" to="(680,500)"/> <wire from="(450,510)" to="(680,510)"/> <wire from="(450,530)" to="(680,530)"/> <wire from="(560,330)" to="(590,330)"/> <wire from="(580,470)" to="(610,470)"/> <wire from="(580,480)" to="(590,480)"/> <wire from="(580,490)" to="(600,490)"/> <wire from="(590,330)" to="(590,430)"/> <wire from="(590,480)" to="(590,610)"/> <wire from="(590,610)" to="(1320,610)"/> <wire from="(600,420)" to="(600,490)"/> <wire from="(610,470)" to="(610,670)"/> <wire from="(610,670)" to="(1350,670)"/> <wire from="(620,380)" to="(620,730)"/> <wire from="(620,380)" to="(680,380)"/> <wire from="(630,210)" to="(630,360)"/> <wire from="(630,360)" to="(630,520)"/> <wire from="(630,360)" to="(680,360)"/> <wire from="(630,520)" to="(680,520)"/> <wire from="(640,350)" to="(640,490)"/> <wire from="(640,350)" to="(680,350)"/> <wire from="(640,490)" to="(680,490)"/> <wire from="(640,90)" to="(640,350)"/> <wire from="(640,90)" to="(880,90)"/> <wire from="(650,340)" to="(650,420)"/> <wire from="(650,340)" to="(680,340)"/> <wire from="(650,420)" to="(830,420)"/> <wire from="(650,430)" to="(650,550)"/> <wire from="(650,430)" to="(820,430)"/> <wire from="(650,550)" to="(680,550)"/> <wire from="(660,30)" to="(660,470)"/> <wire from="(660,30)" to="(900,30)"/> <wire from="(660,470)" to="(680,470)"/> <wire from="(670,330)" to="(670,480)"/> <wire from="(670,330)" to="(680,330)"/> <wire from="(670,480)" to="(680,480)"/> <wire from="(670,540)" to="(670,690)"/> <wire from="(670,540)" to="(680,540)"/> <wire from="(670,60)" to="(670,330)"/> <wire from="(670,60)" to="(910,60)"/> <wire from="(680,370)" to="(920,370)"/> <wire from="(680,500)" to="(920,500)"/> <wire from="(680,510)" to="(920,510)"/> <wire from="(680,530)" to="(920,530)"/> <wire from="(790,330)" to="(820,330)"/> <wire from="(810,470)" to="(840,470)"/> <wire from="(810,480)" to="(820,480)"/> <wire from="(810,490)" to="(830,490)"/> <wire from="(820,330)" to="(820,430)"/> <wire from="(820,480)" to="(820,620)"/> <wire from="(820,620)" to="(1320,620)"/> <wire from="(830,420)" to="(830,490)"/> <wire from="(840,470)" to="(840,680)"/> <wire from="(840,680)" to="(1360,680)"/> <wire from="(860,380)" to="(860,740)"/> <wire from="(860,380)" to="(920,380)"/> <wire from="(870,230)" to="(870,360)"/> <wire from="(870,360)" to="(870,520)"/> <wire from="(870,360)" to="(920,360)"/> <wire from="(870,520)" to="(920,520)"/> <wire from="(880,350)" to="(880,490)"/> <wire from="(880,350)" to="(920,350)"/> <wire from="(880,490)" to="(920,490)"/> <wire from="(880,90)" to="(1110,90)"/> <wire from="(880,90)" to="(880,350)"/> <wire from="(890,340)" to="(890,420)"/> <wire from="(890,340)" to="(920,340)"/> <wire from="(890,420)" to="(1070,420)"/> <wire from="(890,430)" to="(1060,430)"/> <wire from="(890,430)" to="(890,550)"/> <wire from="(890,550)" to="(920,550)"/> <wire from="(900,30)" to="(1130,30)"/> <wire from="(900,30)" to="(900,470)"/> <wire from="(900,470)" to="(920,470)"/> <wire from="(910,330)" to="(910,480)"/> <wire from="(910,330)" to="(920,330)"/> <wire from="(910,480)" to="(920,480)"/> <wire from="(910,540)" to="(910,700)"/> <wire from="(910,540)" to="(920,540)"/> <wire from="(910,60)" to="(1140,60)"/> <wire from="(910,60)" to="(910,330)"/> <wire from="(920,370)" to="(1150,370)"/> <wire from="(920,500)" to="(1150,500)"/> <wire from="(920,510)" to="(1150,510)"/> <wire from="(920,530)" to="(1150,530)"/> </circuit> <circuit name="SQUARE"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1100,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1110,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1110,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR0"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1110,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR3"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1110,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1130,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1130,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR0"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1130,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR3"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1440,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1440,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NOSQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(160,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR0"/> </comp> <comp lib="0" loc="(160,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR1"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR2"/> </comp> <comp lib="0" loc="(160,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR3"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO2"/> </comp> <comp lib="0" loc="(160,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NOSQ"/> </comp> <comp lib="0" loc="(160,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(160,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CarryMode"/> </comp> <comp lib="0" loc="(160,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(170,160)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,210)" name="Tunnel"> <a name="label" val="WR0"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,240)" name="Tunnel"> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,270)" name="Tunnel"> <a name="label" val="WR2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,300)" name="Tunnel"> <a name="label" val="WR3"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,350)" name="Tunnel"> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,380)" name="Tunnel"> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,440)" name="Tunnel"> <a name="label" val="NOSQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,470)" name="Tunnel"> <a name="label" val="LOCK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,510)" name="Tunnel"> <a name="label" val="CarryMode"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1700,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SQ_LC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1700,680)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SQ_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(300,530)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(320,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR3"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(320,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(570,500)" name="NoConnect"/> <comp lib="0" loc="(620,480)" name="Tunnel"> <a name="label" val="DEC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,500)" name="Tunnel"> <a name="label" val="INC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DEC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NOSQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(690,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DEC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(690,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DEC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(730,360)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="facing" val="west"/> <a name="incoming" val="12"/> </comp> <comp lib="0" loc="(750,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="CarryMode"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(750,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="INC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="1" loc="(610,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(680,370)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="11"/> </comp> <comp loc="(1360,140)" name="SQUARE_FreqCounter"> <a name="label" val="freq_cnt"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1360,420)" name="EnvelopeUnit"> <a name="label" val="env_unit"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1360,680)" name="SQUARE_Duty"> <a name="label" val="duty_unit"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1690,680)" name="SQUARE_Output"> <a name="label" val="sqo"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,140)" name="SQUARE_FreqReg"> <a name="label" val="freq_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,350)" name="SQUARE_ShiftReg"> <a name="label" val="shift_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,480)" name="RegisterBit"> <a name="label" val="dir_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(920,680)" name="SQUARE_Sweep"> <a name="label" val="sweep_unit"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,140)" name="SQUARE_Adder"> <a name="label" val="adder"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,360)" name="SQUARE_BarrelShifter"> <a name="label" val="barrel"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,100)" to="(1000,140)"/> <wire from="(1000,300)" to="(1000,360)"/> <wire from="(1020,180)" to="(1020,620)"/> <wire from="(1020,620)" to="(1020,910)"/> <wire from="(1020,910)" to="(1450,910)"/> <wire from="(1030,160)" to="(1030,610)"/> <wire from="(1060,520)" to="(1060,800)"/> <wire from="(1060,520)" to="(1140,520)"/> <wire from="(1060,800)" to="(1060,920)"/> <wire from="(1060,800)" to="(1140,800)"/> <wire from="(1080,600)" to="(1080,740)"/> <wire from="(1080,600)" to="(1420,600)"/> <wire from="(1080,740)" to="(1140,740)"/> <wire from="(1090,610)" to="(1090,720)"/> <wire from="(1090,610)" to="(1410,610)"/> <wire from="(1090,720)" to="(1140,720)"/> <wire from="(1100,180)" to="(1140,180)"/> <wire from="(1110,200)" to="(1110,280)"/> <wire from="(1110,200)" to="(1140,200)"/> <wire from="(1110,440)" to="(1140,440)"/> <wire from="(1110,460)" to="(1140,460)"/> <wire from="(1110,480)" to="(1140,480)"/> <wire from="(1110,500)" to="(1140,500)"/> <wire from="(1120,160)" to="(1120,420)"/> <wire from="(1120,160)" to="(1140,160)"/> <wire from="(1120,420)" to="(1120,640)"/> <wire from="(1120,420)" to="(1140,420)"/> <wire from="(1120,640)" to="(1120,680)"/> <wire from="(1120,640)" to="(1470,640)"/> <wire from="(1120,680)" to="(1140,680)"/> <wire from="(1120,80)" to="(1120,160)"/> <wire from="(1120,80)" to="(1330,80)"/> <wire from="(1130,700)" to="(1140,700)"/> <wire from="(1130,760)" to="(1140,760)"/> <wire from="(1130,780)" to="(1140,780)"/> <wire from="(1140,70)" to="(1140,140)"/> <wire from="(1140,70)" to="(1330,70)"/> <wire from="(1360,140)" to="(1420,140)"/> <wire from="(1360,160)" to="(1410,160)"/> <wire from="(1360,420)" to="(1380,420)"/> <wire from="(1360,440)" to="(1700,440)"/> <wire from="(1360,680)" to="(1370,680)"/> <wire from="(1370,680)" to="(1370,700)"/> <wire from="(1370,700)" to="(1470,700)"/> <wire from="(1380,420)" to="(1380,800)"/> <wire from="(1380,800)" to="(1470,800)"/> <wire from="(1410,160)" to="(1410,610)"/> <wire from="(1410,780)" to="(1410,890)"/> <wire from="(1410,780)" to="(1470,780)"/> <wire from="(1420,140)" to="(1420,600)"/> <wire from="(1440,720)" to="(1470,720)"/> <wire from="(1440,760)" to="(1470,760)"/> <wire from="(1450,740)" to="(1450,910)"/> <wire from="(1450,740)" to="(1470,740)"/> <wire from="(1470,640)" to="(1470,680)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,160)" to="(170,160)"/> <wire from="(160,210)" to="(170,210)"/> <wire from="(160,240)" to="(170,240)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(160,300)" to="(170,300)"/> <wire from="(160,350)" to="(170,350)"/> <wire from="(160,380)" to="(170,380)"/> <wire from="(160,440)" to="(170,440)"/> <wire from="(160,470)" to="(170,470)"/> <wire from="(160,510)" to="(170,510)"/> <wire from="(160,560)" to="(250,560)"/> <wire from="(160,70)" to="(330,70)"/> <wire from="(1690,680)" to="(1700,680)"/> <wire from="(180,80)" to="(180,100)"/> <wire from="(180,80)" to="(340,80)"/> <wire from="(250,220)" to="(250,390)"/> <wire from="(250,220)" to="(350,220)"/> <wire from="(250,390)" to="(250,560)"/> <wire from="(250,390)" to="(350,390)"/> <wire from="(250,560)" to="(270,560)"/> <wire from="(260,100)" to="(1000,100)"/> <wire from="(260,100)" to="(260,260)"/> <wire from="(260,260)" to="(350,260)"/> <wire from="(270,560)" to="(270,860)"/> <wire from="(270,560)" to="(300,560)"/> <wire from="(270,860)" to="(680,860)"/> <wire from="(280,240)" to="(280,630)"/> <wire from="(280,240)" to="(350,240)"/> <wire from="(280,630)" to="(940,630)"/> <wire from="(300,530)" to="(300,560)"/> <wire from="(320,180)" to="(350,180)"/> <wire from="(320,200)" to="(350,200)"/> <wire from="(320,370)" to="(350,370)"/> <wire from="(320,500)" to="(350,500)"/> <wire from="(320,520)" to="(350,520)"/> <wire from="(330,140)" to="(350,140)"/> <wire from="(330,70)" to="(1140,70)"/> <wire from="(330,70)" to="(330,140)"/> <wire from="(340,160)" to="(340,350)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(340,350)" to="(340,480)"/> <wire from="(340,350)" to="(350,350)"/> <wire from="(340,480)" to="(340,680)"/> <wire from="(340,480)" to="(350,480)"/> <wire from="(340,680)" to="(700,680)"/> <wire from="(340,80)" to="(1120,80)"/> <wire from="(340,80)" to="(340,160)"/> <wire from="(570,140)" to="(600,140)"/> <wire from="(570,160)" to="(610,160)"/> <wire from="(570,350)" to="(580,350)"/> <wire from="(570,480)" to="(580,480)"/> <wire from="(580,350)" to="(580,450)"/> <wire from="(580,450)" to="(660,450)"/> <wire from="(580,480)" to="(580,500)"/> <wire from="(580,480)" to="(620,480)"/> <wire from="(580,500)" to="(590,500)"/> <wire from="(590,620)" to="(1020,620)"/> <wire from="(590,620)" to="(590,800)"/> <wire from="(590,800)" to="(700,800)"/> <wire from="(600,140)" to="(600,180)"/> <wire from="(600,180)" to="(600,380)"/> <wire from="(600,180)" to="(760,180)"/> <wire from="(600,380)" to="(650,380)"/> <wire from="(600,610)" to="(1030,610)"/> <wire from="(600,610)" to="(600,780)"/> <wire from="(600,780)" to="(700,780)"/> <wire from="(610,160)" to="(610,200)"/> <wire from="(610,200)" to="(610,280)"/> <wire from="(610,200)" to="(760,200)"/> <wire from="(610,280)" to="(1110,280)"/> <wire from="(610,280)" to="(610,360)"/> <wire from="(610,360)" to="(650,360)"/> <wire from="(610,500)" to="(620,500)"/> <wire from="(650,330)" to="(660,330)"/> <wire from="(650,700)" to="(700,700)"/> <wire from="(650,720)" to="(700,720)"/> <wire from="(650,820)" to="(700,820)"/> <wire from="(650,840)" to="(700,840)"/> <wire from="(660,330)" to="(660,350)"/> <wire from="(660,450)" to="(660,740)"/> <wire from="(660,450)" to="(740,450)"/> <wire from="(660,740)" to="(700,740)"/> <wire from="(680,370)" to="(710,370)"/> <wire from="(680,860)" to="(680,920)"/> <wire from="(680,860)" to="(700,860)"/> <wire from="(680,920)" to="(1060,920)"/> <wire from="(690,410)" to="(710,410)"/> <wire from="(690,760)" to="(700,760)"/> <wire from="(710,380)" to="(710,410)"/> <wire from="(730,360)" to="(760,360)"/> <wire from="(740,220)" to="(740,300)"/> <wire from="(740,220)" to="(760,220)"/> <wire from="(740,300)" to="(1000,300)"/> <wire from="(740,380)" to="(740,450)"/> <wire from="(740,380)" to="(760,380)"/> <wire from="(750,140)" to="(760,140)"/> <wire from="(750,160)" to="(760,160)"/> <wire from="(920,680)" to="(940,680)"/> <wire from="(920,700)" to="(970,700)"/> <wire from="(940,630)" to="(940,680)"/> <wire from="(970,700)" to="(970,890)"/> <wire from="(970,890)" to="(1410,890)"/> <wire from="(980,140)" to="(1000,140)"/> <wire from="(980,160)" to="(1030,160)"/> <wire from="(980,180)" to="(1020,180)"/> <wire from="(980,360)" to="(1000,360)"/> </circuit> <circuit name="TRIANGLE"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TRIANGLE"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(180,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(180,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(180,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(180,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(180,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(180,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NOTRI"/> </comp> <comp lib="0" loc="(180,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(180,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(180,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(930,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRI_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(930,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRI_LC"/> <a name="output" val="true"/> </comp> <comp loc="(530,100)" name="TRIANGLE_Control"> <a name="label" val="ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,100)" name="TRIANGLE_LinearCounter"> <a name="label" val="lin_cnt"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,300)" name="TRIANGLE_FreqCounter"> <a name="label" val="freq_cnt"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,490)" name="TRIANGLE_Output"> <a name="label" val="tria_out"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(180,240)" to="(220,240)"/> <wire from="(180,260)" to="(210,260)"/> <wire from="(180,280)" to="(200,280)"/> <wire from="(180,300)" to="(190,300)"/> <wire from="(180,360)" to="(230,360)"/> <wire from="(180,390)" to="(240,390)"/> <wire from="(180,40)" to="(300,40)"/> <wire from="(180,420)" to="(250,420)"/> <wire from="(180,470)" to="(300,470)"/> <wire from="(180,60)" to="(200,60)"/> <wire from="(180,80)" to="(210,80)"/> <wire from="(190,300)" to="(190,530)"/> <wire from="(190,530)" to="(680,530)"/> <wire from="(200,160)" to="(200,280)"/> <wire from="(200,160)" to="(310,160)"/> <wire from="(200,280)" to="(200,500)"/> <wire from="(200,50)" to="(200,60)"/> <wire from="(200,50)" to="(290,50)"/> <wire from="(200,500)" to="(590,500)"/> <wire from="(210,260)" to="(210,490)"/> <wire from="(210,490)" to="(580,490)"/> <wire from="(210,60)" to="(210,80)"/> <wire from="(210,60)" to="(620,60)"/> <wire from="(220,140)" to="(220,240)"/> <wire from="(220,140)" to="(310,140)"/> <wire from="(220,240)" to="(220,450)"/> <wire from="(220,450)" to="(610,450)"/> <wire from="(230,180)" to="(230,360)"/> <wire from="(230,180)" to="(310,180)"/> <wire from="(240,200)" to="(240,390)"/> <wire from="(240,200)" to="(310,200)"/> <wire from="(250,220)" to="(250,420)"/> <wire from="(250,220)" to="(310,220)"/> <wire from="(260,240)" to="(260,360)"/> <wire from="(260,240)" to="(310,240)"/> <wire from="(260,360)" to="(540,360)"/> <wire from="(280,260)" to="(280,370)"/> <wire from="(280,260)" to="(310,260)"/> <wire from="(280,370)" to="(550,370)"/> <wire from="(290,120)" to="(310,120)"/> <wire from="(290,50)" to="(290,120)"/> <wire from="(290,50)" to="(640,50)"/> <wire from="(300,100)" to="(310,100)"/> <wire from="(300,280)" to="(300,470)"/> <wire from="(300,280)" to="(310,280)"/> <wire from="(300,40)" to="(300,100)"/> <wire from="(300,40)" to="(630,40)"/> <wire from="(300,470)" to="(300,570)"/> <wire from="(300,570)" to="(640,570)"/> <wire from="(530,100)" to="(540,100)"/> <wire from="(530,120)" to="(580,120)"/> <wire from="(530,140)" to="(570,140)"/> <wire from="(530,160)" to="(560,160)"/> <wire from="(530,180)" to="(550,180)"/> <wire from="(530,200)" to="(540,200)"/> <wire from="(540,200)" to="(540,230)"/> <wire from="(540,230)" to="(580,230)"/> <wire from="(540,260)" to="(540,360)"/> <wire from="(540,260)" to="(910,260)"/> <wire from="(540,70)" to="(540,100)"/> <wire from="(540,70)" to="(930,70)"/> <wire from="(550,180)" to="(550,220)"/> <wire from="(550,220)" to="(590,220)"/> <wire from="(550,270)" to="(550,370)"/> <wire from="(550,270)" to="(910,270)"/> <wire from="(560,160)" to="(560,550)"/> <wire from="(560,550)" to="(680,550)"/> <wire from="(570,140)" to="(570,180)"/> <wire from="(570,180)" to="(680,180)"/> <wire from="(580,120)" to="(580,160)"/> <wire from="(580,160)" to="(680,160)"/> <wire from="(580,230)" to="(580,360)"/> <wire from="(580,360)" to="(680,360)"/> <wire from="(580,380)" to="(580,490)"/> <wire from="(580,380)" to="(680,380)"/> <wire from="(590,220)" to="(590,340)"/> <wire from="(590,340)" to="(680,340)"/> <wire from="(590,400)" to="(590,500)"/> <wire from="(590,400)" to="(680,400)"/> <wire from="(610,140)" to="(610,450)"/> <wire from="(610,140)" to="(680,140)"/> <wire from="(620,120)" to="(620,320)"/> <wire from="(620,120)" to="(680,120)"/> <wire from="(620,320)" to="(620,510)"/> <wire from="(620,320)" to="(680,320)"/> <wire from="(620,510)" to="(680,510)"/> <wire from="(620,60)" to="(620,120)"/> <wire from="(630,300)" to="(630,490)"/> <wire from="(630,300)" to="(680,300)"/> <wire from="(630,40)" to="(630,300)"/> <wire from="(630,490)" to="(680,490)"/> <wire from="(640,100)" to="(680,100)"/> <wire from="(640,200)" to="(640,420)"/> <wire from="(640,200)" to="(680,200)"/> <wire from="(640,420)" to="(640,570)"/> <wire from="(640,420)" to="(680,420)"/> <wire from="(640,50)" to="(640,100)"/> <wire from="(640,570)" to="(680,570)"/> <wire from="(900,100)" to="(910,100)"/> <wire from="(900,300)" to="(910,300)"/> <wire from="(900,490)" to="(930,490)"/> <wire from="(910,100)" to="(910,260)"/> <wire from="(910,270)" to="(910,300)"/> </circuit> <circuit name="NOISE"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1100,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RND_LC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1100,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RND_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(180,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(180,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400C"/> </comp> <comp lib="0" loc="(180,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(180,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400F"/> </comp> <comp lib="0" loc="(180,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(180,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NORND"/> </comp> <comp lib="0" loc="(180,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(180,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(180,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(190,130)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,250)" name="Tunnel"> <a name="label" val="W400C"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,280)" name="Tunnel"> <a name="label" val="W400E"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,310)" name="Tunnel"> <a name="label" val="W400F"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(280,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(280,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(340,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400E"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400C"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W400F"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(970,290)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="4"/> <a name="type" val="input"/> </comp> <comp lib="1" loc="(1060,360)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(990,370)" name="NOT Gate"> <a name="width" val="4"/> </comp> <comp loc="(570,110)" name="NOISE_FreqReg"> <a name="label" val="freq_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,290)" name="NOISE_FreqLFSR"> <a name="label" val="freq_lfsr"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(800,110)" name="NOISE_Decoder"> <a name="label" val="dec"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(890,290)" name="NOISE_RandomLFSR"> <a name="label" val="rnd_lfsr"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(890,480)" name="EnvelopeUnit"> <a name="label" val="env_unit"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,290)" to="(1000,350)"/> <wire from="(1000,350)" to="(1020,350)"/> <wire from="(1060,360)" to="(1100,360)"/> <wire from="(1080,290)" to="(1080,500)"/> <wire from="(1080,290)" to="(1100,290)"/> <wire from="(180,130)" to="(190,130)"/> <wire from="(180,250)" to="(190,250)"/> <wire from="(180,280)" to="(190,280)"/> <wire from="(180,310)" to="(190,310)"/> <wire from="(180,400)" to="(330,400)"/> <wire from="(180,430)" to="(580,430)"/> <wire from="(180,460)" to="(590,460)"/> <wire from="(180,50)" to="(330,50)"/> <wire from="(180,510)" to="(270,510)"/> <wire from="(180,80)" to="(300,80)"/> <wire from="(270,170)" to="(270,510)"/> <wire from="(270,170)" to="(350,170)"/> <wire from="(270,510)" to="(270,580)"/> <wire from="(270,580)" to="(600,580)"/> <wire from="(280,130)" to="(350,130)"/> <wire from="(280,150)" to="(350,150)"/> <wire from="(280,220)" to="(280,350)"/> <wire from="(280,220)" to="(830,220)"/> <wire from="(280,350)" to="(350,350)"/> <wire from="(300,110)" to="(300,250)"/> <wire from="(300,110)" to="(350,110)"/> <wire from="(300,250)" to="(300,310)"/> <wire from="(300,250)" to="(660,250)"/> <wire from="(300,310)" to="(350,310)"/> <wire from="(300,80)" to="(300,110)"/> <wire from="(330,290)" to="(350,290)"/> <wire from="(330,400)" to="(330,560)"/> <wire from="(330,50)" to="(330,290)"/> <wire from="(330,560)" to="(670,560)"/> <wire from="(340,330)" to="(350,330)"/> <wire from="(570,110)" to="(580,110)"/> <wire from="(570,290)" to="(590,290)"/> <wire from="(580,330)" to="(580,430)"/> <wire from="(580,330)" to="(670,330)"/> <wire from="(590,290)" to="(590,310)"/> <wire from="(590,310)" to="(670,310)"/> <wire from="(590,350)" to="(590,460)"/> <wire from="(590,350)" to="(670,350)"/> <wire from="(600,390)" to="(600,580)"/> <wire from="(600,390)" to="(670,390)"/> <wire from="(600,580)" to="(670,580)"/> <wire from="(650,370)" to="(670,370)"/> <wire from="(650,500)" to="(670,500)"/> <wire from="(650,520)" to="(670,520)"/> <wire from="(650,540)" to="(670,540)"/> <wire from="(660,250)" to="(660,290)"/> <wire from="(660,290)" to="(660,480)"/> <wire from="(660,290)" to="(670,290)"/> <wire from="(660,480)" to="(670,480)"/> <wire from="(800,110)" to="(830,110)"/> <wire from="(830,110)" to="(830,220)"/> <wire from="(890,290)" to="(920,290)"/> <wire from="(890,480)" to="(920,480)"/> <wire from="(890,500)" to="(1080,500)"/> <wire from="(920,260)" to="(920,290)"/> <wire from="(920,260)" to="(950,260)"/> <wire from="(920,290)" to="(930,290)"/> <wire from="(920,370)" to="(920,480)"/> <wire from="(920,370)" to="(960,370)"/> <wire from="(950,260)" to="(950,270)"/> <wire from="(970,290)" to="(1000,290)"/> <wire from="(990,370)" to="(1020,370)"/> </circuit> <circuit name="DAC_A"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DAC_A"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(180,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SQA"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(180,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SQB"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(240,100)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(530,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_A"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(270,90)" name="ROM"> <a name="appearance" val="classic"/> <a name="contents">addr/data: 8 32 0 </a> <a name="dataWidth" val="32"/> <a name="label" val="auxa_rom"/> </comp> <wire from="(180,100)" to="(220,100)"/> <wire from="(180,140)" to="(220,140)"/> <wire from="(220,100)" to="(220,110)"/> <wire from="(220,120)" to="(220,140)"/> <wire from="(240,100)" to="(270,100)"/> <wire from="(510,150)" to="(530,150)"/> </circuit> <circuit name="DAC_B"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="DAC_B"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TRIA"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RND"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DMC"/> <a name="width" val="7"/> </comp> <comp lib="0" loc="(240,120)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(560,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AUX_B"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(270,80)" name="ROM"> <a name="addrWidth" val="15"/> <a name="appearance" val="classic"/> <a name="contents">addr/data: 15 32 0 </a> <a name="dataWidth" val="32"/> <a name="label" val="auxb_rom"/> </comp> <wire from="(160,140)" to="(180,140)"/> <wire from="(160,180)" to="(190,180)"/> <wire from="(160,230)" to="(200,230)"/> <wire from="(180,130)" to="(180,140)"/> <wire from="(180,130)" to="(220,130)"/> <wire from="(190,140)" to="(190,180)"/> <wire from="(190,140)" to="(220,140)"/> <wire from="(200,150)" to="(200,230)"/> <wire from="(200,150)" to="(220,150)"/> <wire from="(240,90)" to="(240,120)"/> <wire from="(240,90)" to="(270,90)"/> <wire from="(510,140)" to="(560,140)"/> </circuit> <circuit name="SQUARE_FreqReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_FreqReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,330)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1120,370)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1190,570)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(1220,660)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(1230,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nFx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(1230,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Fx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(160,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR2"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR3"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DO_SWEEP"/> </comp> <comp lib="0" loc="(160,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_sum"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,460)" name="Splitter"> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(230,580)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(280,650)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(610,580)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,670)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(750,330)" name="Splitter"> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(790,380)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp loc="(1010,170)" name="SQ_FreqRegBit"> <a name="label" val="f8"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,290)" name="SQ_FreqRegBit"> <a name="label" val="f9"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,410)" name="SQ_FreqRegBit"> <a name="label" val="f10"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,1010)" name="SQ_FreqRegBit"> <a name="label" val="f7"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,170)" name="SQ_FreqRegBit"> <a name="label" val="f0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,290)" name="SQ_FreqRegBit"> <a name="label" val="f1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,410)" name="SQ_FreqRegBit"> <a name="label" val="f2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,530)" name="SQ_FreqRegBit"> <a name="label" val="f3"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,650)" name="SQ_FreqRegBit"> <a name="label" val="f4"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,770)" name="SQ_FreqRegBit"> <a name="label" val="f5"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,890)" name="SQ_FreqRegBit"> <a name="label" val="f6"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,170)" to="(1050,170)"/> <wire from="(1010,180)" to="(1100,180)"/> <wire from="(1010,290)" to="(1030,290)"/> <wire from="(1010,300)" to="(1020,300)"/> <wire from="(1010,410)" to="(1050,410)"/> <wire from="(1010,420)" to="(1100,420)"/> <wire from="(1020,300)" to="(1020,350)"/> <wire from="(1020,350)" to="(1100,350)"/> <wire from="(1030,290)" to="(1030,310)"/> <wire from="(1030,310)" to="(1050,310)"/> <wire from="(1050,170)" to="(1050,300)"/> <wire from="(1050,320)" to="(1050,410)"/> <wire from="(1070,330)" to="(1070,590)"/> <wire from="(1070,590)" to="(1170,590)"/> <wire from="(1100,180)" to="(1100,340)"/> <wire from="(1100,360)" to="(1100,420)"/> <wire from="(1120,370)" to="(1120,680)"/> <wire from="(1120,680)" to="(1200,680)"/> <wire from="(1190,570)" to="(1230,570)"/> <wire from="(1220,660)" to="(1230,660)"/> <wire from="(150,1120)" to="(740,1120)"/> <wire from="(150,580)" to="(150,1120)"/> <wire from="(150,580)" to="(230,580)"/> <wire from="(160,170)" to="(190,170)"/> <wire from="(160,200)" to="(200,200)"/> <wire from="(160,260)" to="(170,260)"/> <wire from="(160,340)" to="(210,340)"/> <wire from="(160,370)" to="(180,370)"/> <wire from="(160,50)" to="(400,50)"/> <wire from="(160,80)" to="(390,80)"/> <wire from="(170,260)" to="(170,300)"/> <wire from="(180,370)" to="(180,460)"/> <wire from="(190,100)" to="(190,170)"/> <wire from="(190,100)" to="(380,100)"/> <wire from="(20,300)" to="(170,300)"/> <wire from="(20,300)" to="(20,580)"/> <wire from="(20,580)" to="(150,580)"/> <wire from="(200,110)" to="(200,200)"/> <wire from="(200,110)" to="(870,110)"/> <wire from="(200,1100)" to="(780,1100)"/> <wire from="(200,470)" to="(210,470)"/> <wire from="(200,480)" to="(200,1100)"/> <wire from="(210,120)" to="(210,340)"/> <wire from="(210,120)" to="(370,120)"/> <wire from="(210,470)" to="(210,650)"/> <wire from="(210,650)" to="(280,650)"/> <wire from="(250,1040)" to="(410,1040)"/> <wire from="(250,200)" to="(250,500)"/> <wire from="(250,200)" to="(410,200)"/> <wire from="(250,510)" to="(260,510)"/> <wire from="(250,520)" to="(270,520)"/> <wire from="(250,530)" to="(350,530)"/> <wire from="(250,540)" to="(340,540)"/> <wire from="(250,550)" to="(270,550)"/> <wire from="(250,560)" to="(260,560)"/> <wire from="(250,570)" to="(250,1040)"/> <wire from="(260,320)" to="(260,510)"/> <wire from="(260,320)" to="(410,320)"/> <wire from="(260,560)" to="(260,920)"/> <wire from="(260,920)" to="(410,920)"/> <wire from="(270,440)" to="(270,520)"/> <wire from="(270,440)" to="(410,440)"/> <wire from="(270,550)" to="(270,800)"/> <wire from="(270,800)" to="(410,800)"/> <wire from="(300,1060)" to="(410,1060)"/> <wire from="(300,220)" to="(300,570)"/> <wire from="(300,220)" to="(410,220)"/> <wire from="(300,580)" to="(310,580)"/> <wire from="(300,590)" to="(320,590)"/> <wire from="(300,600)" to="(330,600)"/> <wire from="(300,610)" to="(330,610)"/> <wire from="(300,620)" to="(320,620)"/> <wire from="(300,630)" to="(310,630)"/> <wire from="(300,640)" to="(300,1060)"/> <wire from="(310,340)" to="(310,580)"/> <wire from="(310,340)" to="(410,340)"/> <wire from="(310,630)" to="(310,940)"/> <wire from="(310,940)" to="(410,940)"/> <wire from="(320,460)" to="(320,590)"/> <wire from="(320,460)" to="(410,460)"/> <wire from="(320,620)" to="(320,820)"/> <wire from="(320,820)" to="(410,820)"/> <wire from="(330,580)" to="(330,600)"/> <wire from="(330,580)" to="(410,580)"/> <wire from="(330,610)" to="(330,700)"/> <wire from="(330,700)" to="(410,700)"/> <wire from="(340,540)" to="(340,680)"/> <wire from="(340,680)" to="(410,680)"/> <wire from="(350,530)" to="(350,560)"/> <wire from="(350,560)" to="(410,560)"/> <wire from="(370,1050)" to="(410,1050)"/> <wire from="(370,120)" to="(370,210)"/> <wire from="(370,120)" to="(860,120)"/> <wire from="(370,210)" to="(370,330)"/> <wire from="(370,210)" to="(410,210)"/> <wire from="(370,330)" to="(370,450)"/> <wire from="(370,330)" to="(410,330)"/> <wire from="(370,450)" to="(370,570)"/> <wire from="(370,450)" to="(410,450)"/> <wire from="(370,570)" to="(370,690)"/> <wire from="(370,570)" to="(410,570)"/> <wire from="(370,690)" to="(370,810)"/> <wire from="(370,690)" to="(410,690)"/> <wire from="(370,810)" to="(370,930)"/> <wire from="(370,810)" to="(410,810)"/> <wire from="(370,930)" to="(370,1050)"/> <wire from="(370,930)" to="(410,930)"/> <wire from="(380,100)" to="(380,190)"/> <wire from="(380,1030)" to="(410,1030)"/> <wire from="(380,190)" to="(380,310)"/> <wire from="(380,190)" to="(410,190)"/> <wire from="(380,310)" to="(380,430)"/> <wire from="(380,310)" to="(410,310)"/> <wire from="(380,430)" to="(380,550)"/> <wire from="(380,430)" to="(410,430)"/> <wire from="(380,550)" to="(380,670)"/> <wire from="(380,550)" to="(410,550)"/> <wire from="(380,670)" to="(380,790)"/> <wire from="(380,670)" to="(410,670)"/> <wire from="(380,790)" to="(380,910)"/> <wire from="(380,790)" to="(410,790)"/> <wire from="(380,910)" to="(380,1030)"/> <wire from="(380,910)" to="(410,910)"/> <wire from="(390,1020)" to="(410,1020)"/> <wire from="(390,180)" to="(390,300)"/> <wire from="(390,180)" to="(410,180)"/> <wire from="(390,300)" to="(390,420)"/> <wire from="(390,300)" to="(410,300)"/> <wire from="(390,420)" to="(390,540)"/> <wire from="(390,420)" to="(410,420)"/> <wire from="(390,540)" to="(390,660)"/> <wire from="(390,540)" to="(410,540)"/> <wire from="(390,660)" to="(390,780)"/> <wire from="(390,660)" to="(410,660)"/> <wire from="(390,780)" to="(390,900)"/> <wire from="(390,780)" to="(410,780)"/> <wire from="(390,80)" to="(390,180)"/> <wire from="(390,80)" to="(880,80)"/> <wire from="(390,900)" to="(390,1020)"/> <wire from="(390,900)" to="(410,900)"/> <wire from="(400,1010)" to="(410,1010)"/> <wire from="(400,170)" to="(400,290)"/> <wire from="(400,170)" to="(410,170)"/> <wire from="(400,290)" to="(400,410)"/> <wire from="(400,290)" to="(410,290)"/> <wire from="(400,410)" to="(400,530)"/> <wire from="(400,410)" to="(410,410)"/> <wire from="(400,50)" to="(400,170)"/> <wire from="(400,50)" to="(890,50)"/> <wire from="(400,530)" to="(400,650)"/> <wire from="(400,530)" to="(410,530)"/> <wire from="(400,650)" to="(400,770)"/> <wire from="(400,650)" to="(410,650)"/> <wire from="(400,770)" to="(400,890)"/> <wire from="(400,770)" to="(410,770)"/> <wire from="(400,890)" to="(400,1010)"/> <wire from="(400,890)" to="(410,890)"/> <wire from="(520,1010)" to="(590,1010)"/> <wire from="(520,1020)" to="(670,1020)"/> <wire from="(520,170)" to="(590,170)"/> <wire from="(520,180)" to="(670,180)"/> <wire from="(520,290)" to="(580,290)"/> <wire from="(520,300)" to="(660,300)"/> <wire from="(520,410)" to="(570,410)"/> <wire from="(520,420)" to="(650,420)"/> <wire from="(520,530)" to="(590,530)"/> <wire from="(520,540)" to="(530,540)"/> <wire from="(520,650)" to="(560,650)"/> <wire from="(520,660)" to="(630,660)"/> <wire from="(520,770)" to="(570,770)"/> <wire from="(520,780)" to="(650,780)"/> <wire from="(520,890)" to="(580,890)"/> <wire from="(520,900)" to="(660,900)"/> <wire from="(530,540)" to="(530,620)"/> <wire from="(530,620)" to="(670,620)"/> <wire from="(560,540)" to="(560,650)"/> <wire from="(560,540)" to="(590,540)"/> <wire from="(570,410)" to="(570,520)"/> <wire from="(570,520)" to="(590,520)"/> <wire from="(570,550)" to="(570,770)"/> <wire from="(570,550)" to="(590,550)"/> <wire from="(580,290)" to="(580,510)"/> <wire from="(580,510)" to="(590,510)"/> <wire from="(580,560)" to="(580,890)"/> <wire from="(580,560)" to="(590,560)"/> <wire from="(590,170)" to="(590,500)"/> <wire from="(590,570)" to="(590,1010)"/> <wire from="(610,580)" to="(1170,580)"/> <wire from="(630,630)" to="(630,660)"/> <wire from="(630,630)" to="(670,630)"/> <wire from="(650,420)" to="(650,610)"/> <wire from="(650,610)" to="(670,610)"/> <wire from="(650,640)" to="(650,780)"/> <wire from="(650,640)" to="(670,640)"/> <wire from="(660,300)" to="(660,600)"/> <wire from="(660,600)" to="(670,600)"/> <wire from="(660,650)" to="(660,900)"/> <wire from="(660,650)" to="(670,650)"/> <wire from="(670,180)" to="(670,590)"/> <wire from="(670,660)" to="(670,1020)"/> <wire from="(690,670)" to="(1200,670)"/> <wire from="(740,330)" to="(740,1120)"/> <wire from="(740,330)" to="(750,330)"/> <wire from="(770,200)" to="(770,300)"/> <wire from="(770,200)" to="(900,200)"/> <wire from="(770,310)" to="(830,310)"/> <wire from="(770,320)" to="(820,320)"/> <wire from="(780,380)" to="(780,1100)"/> <wire from="(780,380)" to="(790,380)"/> <wire from="(810,220)" to="(810,350)"/> <wire from="(810,220)" to="(900,220)"/> <wire from="(810,360)" to="(830,360)"/> <wire from="(810,370)" to="(810,460)"/> <wire from="(810,460)" to="(900,460)"/> <wire from="(820,320)" to="(820,440)"/> <wire from="(820,440)" to="(900,440)"/> <wire from="(830,310)" to="(830,320)"/> <wire from="(830,320)" to="(900,320)"/> <wire from="(830,340)" to="(830,360)"/> <wire from="(830,340)" to="(900,340)"/> <wire from="(860,120)" to="(860,210)"/> <wire from="(860,210)" to="(860,330)"/> <wire from="(860,210)" to="(900,210)"/> <wire from="(860,330)" to="(860,450)"/> <wire from="(860,330)" to="(900,330)"/> <wire from="(860,450)" to="(900,450)"/> <wire from="(870,110)" to="(870,190)"/> <wire from="(870,190)" to="(870,310)"/> <wire from="(870,190)" to="(900,190)"/> <wire from="(870,310)" to="(870,430)"/> <wire from="(870,310)" to="(900,310)"/> <wire from="(870,430)" to="(900,430)"/> <wire from="(880,180)" to="(880,300)"/> <wire from="(880,180)" to="(900,180)"/> <wire from="(880,300)" to="(880,420)"/> <wire from="(880,300)" to="(900,300)"/> <wire from="(880,420)" to="(900,420)"/> <wire from="(880,80)" to="(1080,80)"/> <wire from="(880,80)" to="(880,180)"/> <wire from="(890,170)" to="(890,290)"/> <wire from="(890,170)" to="(900,170)"/> <wire from="(890,290)" to="(890,410)"/> <wire from="(890,290)" to="(900,290)"/> <wire from="(890,410)" to="(900,410)"/> <wire from="(890,50)" to="(1080,50)"/> <wire from="(890,50)" to="(890,170)"/> </circuit> <circuit name="SQ_FreqRegBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="SQ_FreqRegBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(160,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DO_SWEEP"/> </comp> <comp lib="0" loc="(160,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_sum"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(720,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nFx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(720,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Fx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(520,160)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,350)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(235,70)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ACLK3"/> </comp> <comp lib="8" loc="(485,300)" name="Text"> <a name="text" val="Freq_FF"/> </comp> <comp loc="(360,130)" name="DLatch"> <a name="label" val="sum_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(540,230)" name="TranspDLatch"> <a name="label" val="transp"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,110)" to="(290,110)"/> <wire from="(160,200)" to="(350,200)"/> <wire from="(160,230)" to="(340,230)"/> <wire from="(160,340)" to="(200,340)"/> <wire from="(160,370)" to="(230,370)"/> <wire from="(160,80)" to="(180,80)"/> <wire from="(200,190)" to="(200,340)"/> <wire from="(200,190)" to="(440,190)"/> <wire from="(200,340)" to="(490,340)"/> <wire from="(200,80)" to="(250,80)"/> <wire from="(230,150)" to="(230,370)"/> <wire from="(230,150)" to="(360,150)"/> <wire from="(250,250)" to="(350,250)"/> <wire from="(250,80)" to="(250,250)"/> <wire from="(290,110)" to="(290,130)"/> <wire from="(290,130)" to="(360,130)"/> <wire from="(320,280)" to="(320,320)"/> <wire from="(320,280)" to="(340,280)"/> <wire from="(320,320)" to="(650,320)"/> <wire from="(350,200)" to="(350,220)"/> <wire from="(350,250)" to="(350,270)"/> <wire from="(360,230)" to="(400,230)"/> <wire from="(360,280)" to="(400,280)"/> <wire from="(400,130)" to="(670,130)"/> <wire from="(400,150)" to="(490,150)"/> <wire from="(400,230)" to="(400,280)"/> <wire from="(400,230)" to="(440,230)"/> <wire from="(440,170)" to="(440,190)"/> <wire from="(440,170)" to="(490,170)"/> <wire from="(450,360)" to="(450,390)"/> <wire from="(450,360)" to="(490,360)"/> <wire from="(450,390)" to="(670,390)"/> <wire from="(520,160)" to="(560,160)"/> <wire from="(520,350)" to="(560,350)"/> <wire from="(540,230)" to="(600,230)"/> <wire from="(560,160)" to="(560,210)"/> <wire from="(560,210)" to="(600,210)"/> <wire from="(560,300)" to="(560,350)"/> <wire from="(560,300)" to="(600,300)"/> <wire from="(580,250)" to="(580,280)"/> <wire from="(580,250)" to="(660,250)"/> <wire from="(580,280)" to="(600,280)"/> <wire from="(640,220)" to="(660,220)"/> <wire from="(640,290)" to="(650,290)"/> <wire from="(650,290)" to="(650,320)"/> <wire from="(650,290)" to="(720,290)"/> <wire from="(660,220)" to="(660,250)"/> <wire from="(660,220)" to="(720,220)"/> <wire from="(670,130)" to="(670,390)"/> </circuit> <circuit name="SQUARE_ShiftReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_ShiftReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR1"/> </comp> <comp lib="0" loc="(160,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(190,340)" name="Splitter"> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(620,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SR"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp loc="(510,100)" name="RegisterBit"> <a name="label" val="sr0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,220)" name="RegisterBit"> <a name="label" val="sr1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,340)" name="RegisterBit"> <a name="label" val="sr2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,120)" to="(270,120)"/> <wire from="(160,340)" to="(190,340)"/> <wire from="(160,60)" to="(280,60)"/> <wire from="(210,140)" to="(210,310)"/> <wire from="(210,140)" to="(290,140)"/> <wire from="(210,320)" to="(230,320)"/> <wire from="(210,330)" to="(230,330)"/> <wire from="(230,260)" to="(230,320)"/> <wire from="(230,260)" to="(290,260)"/> <wire from="(230,330)" to="(230,380)"/> <wire from="(230,380)" to="(290,380)"/> <wire from="(270,120)" to="(270,240)"/> <wire from="(270,120)" to="(290,120)"/> <wire from="(270,240)" to="(270,360)"/> <wire from="(270,240)" to="(290,240)"/> <wire from="(270,360)" to="(290,360)"/> <wire from="(280,100)" to="(280,220)"/> <wire from="(280,100)" to="(290,100)"/> <wire from="(280,220)" to="(280,340)"/> <wire from="(280,220)" to="(290,220)"/> <wire from="(280,340)" to="(290,340)"/> <wire from="(280,60)" to="(280,100)"/> <wire from="(510,100)" to="(560,100)"/> <wire from="(510,220)" to="(530,220)"/> <wire from="(510,340)" to="(560,340)"/> <wire from="(530,220)" to="(530,270)"/> <wire from="(530,270)" to="(560,270)"/> <wire from="(560,100)" to="(560,260)"/> <wire from="(560,280)" to="(560,340)"/> <wire from="(580,100)" to="(580,250)"/> <wire from="(580,100)" to="(620,100)"/> </circuit> <circuit name="SQUARE_BarrelShifter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_BarrelShifter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,500)" name="Splitter"> <a name="fanout" val="12"/> <a name="incoming" val="12"/> </comp> <comp lib="0" loc="(170,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BS"/> <a name="radix" val="16"/> <a name="width" val="12"/> </comp> <comp lib="0" loc="(180,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SR"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(190,160)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(700,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="S"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="2" loc="(330,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,200)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,270)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,340)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,410)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,480)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,550)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,620)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,690)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,760)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,830)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,140)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,210)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,280)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,350)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,420)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,490)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,560)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,630)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,700)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,770)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(450,840)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,150)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,220)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,290)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,360)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,430)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,500)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,570)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,640)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,710)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,780)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(570,850)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <wire from="(170,100)" to="(170,130)"/> <wire from="(170,380)" to="(190,380)"/> <wire from="(170,390)" to="(200,390)"/> <wire from="(170,400)" to="(210,400)"/> <wire from="(170,410)" to="(220,410)"/> <wire from="(170,420)" to="(230,420)"/> <wire from="(170,430)" to="(240,430)"/> <wire from="(170,440)" to="(230,440)"/> <wire from="(170,450)" to="(220,450)"/> <wire from="(170,460)" to="(210,460)"/> <wire from="(170,470)" to="(200,470)"/> <wire from="(170,480)" to="(190,480)"/> <wire from="(170,490)" to="(180,490)"/> <wire from="(180,160)" to="(190,160)"/> <wire from="(180,490)" to="(180,840)"/> <wire from="(180,840)" to="(250,840)"/> <wire from="(190,170)" to="(190,380)"/> <wire from="(190,170)" to="(240,170)"/> <wire from="(190,480)" to="(190,770)"/> <wire from="(190,770)" to="(190,820)"/> <wire from="(190,770)" to="(300,770)"/> <wire from="(190,820)" to="(300,820)"/> <wire from="(200,190)" to="(200,390)"/> <wire from="(200,190)" to="(250,190)"/> <wire from="(200,470)" to="(200,700)"/> <wire from="(200,700)" to="(200,750)"/> <wire from="(200,700)" to="(300,700)"/> <wire from="(200,750)" to="(300,750)"/> <wire from="(210,140)" to="(220,140)"/> <wire from="(210,150)" to="(230,150)"/> <wire from="(210,210)" to="(210,260)"/> <wire from="(210,210)" to="(300,210)"/> <wire from="(210,260)" to="(210,400)"/> <wire from="(210,260)" to="(300,260)"/> <wire from="(210,460)" to="(210,630)"/> <wire from="(210,630)" to="(210,680)"/> <wire from="(210,630)" to="(300,630)"/> <wire from="(210,680)" to="(300,680)"/> <wire from="(210,80)" to="(210,130)"/> <wire from="(210,80)" to="(310,80)"/> <wire from="(220,280)" to="(220,330)"/> <wire from="(220,280)" to="(300,280)"/> <wire from="(220,330)" to="(220,410)"/> <wire from="(220,330)" to="(300,330)"/> <wire from="(220,450)" to="(220,560)"/> <wire from="(220,560)" to="(220,610)"/> <wire from="(220,560)" to="(300,560)"/> <wire from="(220,610)" to="(300,610)"/> <wire from="(220,90)" to="(220,140)"/> <wire from="(220,90)" to="(430,90)"/> <wire from="(230,100)" to="(230,150)"/> <wire from="(230,100)" to="(550,100)"/> <wire from="(230,350)" to="(230,400)"/> <wire from="(230,350)" to="(300,350)"/> <wire from="(230,400)" to="(230,420)"/> <wire from="(230,400)" to="(300,400)"/> <wire from="(230,440)" to="(230,490)"/> <wire from="(230,490)" to="(230,540)"/> <wire from="(230,490)" to="(300,490)"/> <wire from="(230,540)" to="(300,540)"/> <wire from="(240,120)" to="(240,170)"/> <wire from="(240,120)" to="(300,120)"/> <wire from="(240,420)" to="(240,430)"/> <wire from="(240,420)" to="(300,420)"/> <wire from="(240,430)" to="(240,470)"/> <wire from="(240,470)" to="(300,470)"/> <wire from="(250,140)" to="(250,190)"/> <wire from="(250,140)" to="(300,140)"/> <wire from="(250,190)" to="(300,190)"/> <wire from="(250,840)" to="(250,890)"/> <wire from="(250,840)" to="(300,840)"/> <wire from="(250,890)" to="(410,890)"/> <wire from="(310,110)" to="(310,180)"/> <wire from="(310,180)" to="(310,250)"/> <wire from="(310,250)" to="(310,320)"/> <wire from="(310,320)" to="(310,390)"/> <wire from="(310,390)" to="(310,460)"/> <wire from="(310,460)" to="(310,530)"/> <wire from="(310,530)" to="(310,600)"/> <wire from="(310,600)" to="(310,670)"/> <wire from="(310,670)" to="(310,740)"/> <wire from="(310,740)" to="(310,810)"/> <wire from="(310,80)" to="(310,110)"/> <wire from="(330,130)" to="(420,130)"/> <wire from="(330,200)" to="(420,200)"/> <wire from="(330,270)" to="(380,270)"/> <wire from="(330,340)" to="(370,340)"/> <wire from="(330,410)" to="(360,410)"/> <wire from="(330,480)" to="(350,480)"/> <wire from="(330,550)" to="(360,550)"/> <wire from="(330,620)" to="(370,620)"/> <wire from="(330,690)" to="(380,690)"/> <wire from="(330,760)" to="(390,760)"/> <wire from="(330,830)" to="(400,830)"/> <wire from="(350,360)" to="(350,480)"/> <wire from="(350,360)" to="(420,360)"/> <wire from="(350,480)" to="(420,480)"/> <wire from="(360,290)" to="(360,410)"/> <wire from="(360,290)" to="(420,290)"/> <wire from="(360,410)" to="(420,410)"/> <wire from="(360,430)" to="(360,550)"/> <wire from="(360,430)" to="(420,430)"/> <wire from="(360,550)" to="(420,550)"/> <wire from="(370,220)" to="(370,340)"/> <wire from="(370,220)" to="(420,220)"/> <wire from="(370,340)" to="(420,340)"/> <wire from="(370,500)" to="(370,620)"/> <wire from="(370,500)" to="(420,500)"/> <wire from="(370,620)" to="(420,620)"/> <wire from="(380,150)" to="(380,270)"/> <wire from="(380,150)" to="(420,150)"/> <wire from="(380,270)" to="(420,270)"/> <wire from="(380,570)" to="(380,690)"/> <wire from="(380,570)" to="(420,570)"/> <wire from="(380,690)" to="(420,690)"/> <wire from="(390,640)" to="(390,760)"/> <wire from="(390,640)" to="(420,640)"/> <wire from="(390,760)" to="(420,760)"/> <wire from="(400,710)" to="(400,830)"/> <wire from="(400,710)" to="(420,710)"/> <wire from="(400,830)" to="(420,830)"/> <wire from="(410,780)" to="(410,850)"/> <wire from="(410,780)" to="(420,780)"/> <wire from="(410,850)" to="(410,890)"/> <wire from="(410,850)" to="(420,850)"/> <wire from="(410,890)" to="(530,890)"/> <wire from="(430,120)" to="(430,190)"/> <wire from="(430,190)" to="(430,260)"/> <wire from="(430,260)" to="(430,330)"/> <wire from="(430,330)" to="(430,400)"/> <wire from="(430,400)" to="(430,470)"/> <wire from="(430,470)" to="(430,540)"/> <wire from="(430,540)" to="(430,610)"/> <wire from="(430,610)" to="(430,680)"/> <wire from="(430,680)" to="(430,750)"/> <wire from="(430,750)" to="(430,820)"/> <wire from="(430,90)" to="(430,120)"/> <wire from="(450,140)" to="(540,140)"/> <wire from="(450,210)" to="(540,210)"/> <wire from="(450,280)" to="(540,280)"/> <wire from="(450,350)" to="(540,350)"/> <wire from="(450,420)" to="(470,420)"/> <wire from="(450,490)" to="(480,490)"/> <wire from="(450,560)" to="(490,560)"/> <wire from="(450,630)" to="(500,630)"/> <wire from="(450,700)" to="(510,700)"/> <wire from="(450,770)" to="(520,770)"/> <wire from="(450,840)" to="(470,840)"/> <wire from="(470,160)" to="(470,420)"/> <wire from="(470,160)" to="(540,160)"/> <wire from="(470,420)" to="(540,420)"/> <wire from="(470,580)" to="(470,840)"/> <wire from="(470,580)" to="(540,580)"/> <wire from="(470,840)" to="(540,840)"/> <wire from="(480,230)" to="(480,490)"/> <wire from="(480,230)" to="(540,230)"/> <wire from="(480,490)" to="(540,490)"/> <wire from="(490,300)" to="(490,560)"/> <wire from="(490,300)" to="(540,300)"/> <wire from="(490,560)" to="(540,560)"/> <wire from="(500,370)" to="(500,630)"/> <wire from="(500,370)" to="(540,370)"/> <wire from="(500,630)" to="(540,630)"/> <wire from="(510,440)" to="(510,700)"/> <wire from="(510,440)" to="(540,440)"/> <wire from="(510,700)" to="(540,700)"/> <wire from="(520,510)" to="(520,770)"/> <wire from="(520,510)" to="(540,510)"/> <wire from="(520,770)" to="(540,770)"/> <wire from="(530,650)" to="(530,720)"/> <wire from="(530,650)" to="(540,650)"/> <wire from="(530,720)" to="(530,790)"/> <wire from="(530,720)" to="(540,720)"/> <wire from="(530,790)" to="(530,860)"/> <wire from="(530,790)" to="(540,790)"/> <wire from="(530,860)" to="(530,890)"/> <wire from="(530,860)" to="(540,860)"/> <wire from="(550,100)" to="(550,130)"/> <wire from="(550,130)" to="(550,200)"/> <wire from="(550,200)" to="(550,270)"/> <wire from="(550,270)" to="(550,340)"/> <wire from="(550,340)" to="(550,410)"/> <wire from="(550,410)" to="(550,480)"/> <wire from="(550,480)" to="(550,550)"/> <wire from="(550,550)" to="(550,620)"/> <wire from="(550,620)" to="(550,690)"/> <wire from="(550,690)" to="(550,760)"/> <wire from="(550,760)" to="(550,830)"/> <wire from="(570,150)" to="(670,150)"/> <wire from="(570,220)" to="(660,220)"/> <wire from="(570,290)" to="(650,290)"/> <wire from="(570,360)" to="(640,360)"/> <wire from="(570,430)" to="(630,430)"/> <wire from="(570,500)" to="(600,500)"/> <wire from="(570,570)" to="(630,570)"/> <wire from="(570,640)" to="(640,640)"/> <wire from="(570,710)" to="(650,710)"/> <wire from="(570,780)" to="(660,780)"/> <wire from="(570,850)" to="(670,850)"/> <wire from="(600,500)" to="(600,520)"/> <wire from="(600,520)" to="(670,520)"/> <wire from="(630,430)" to="(630,510)"/> <wire from="(630,510)" to="(670,510)"/> <wire from="(630,530)" to="(630,570)"/> <wire from="(630,530)" to="(670,530)"/> <wire from="(640,360)" to="(640,500)"/> <wire from="(640,500)" to="(670,500)"/> <wire from="(640,540)" to="(640,640)"/> <wire from="(640,540)" to="(670,540)"/> <wire from="(650,290)" to="(650,490)"/> <wire from="(650,490)" to="(670,490)"/> <wire from="(650,550)" to="(650,710)"/> <wire from="(650,550)" to="(670,550)"/> <wire from="(660,220)" to="(660,480)"/> <wire from="(660,480)" to="(670,480)"/> <wire from="(660,560)" to="(660,780)"/> <wire from="(660,560)" to="(670,560)"/> <wire from="(670,150)" to="(670,470)"/> <wire from="(670,570)" to="(670,850)"/> <wire from="(690,460)" to="(700,460)"/> <wire from="(90,130)" to="(170,130)"/> <wire from="(90,130)" to="(90,500)"/> <wire from="(90,500)" to="(150,500)"/> </circuit> <circuit name="SQUARE_Adder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_Adder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,1300)" name="NoConnect"/> <comp lib="0" loc="(1160,670)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(1220,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_sum"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(1220,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_COUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SW_UVF"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CarryMode"/> </comp> <comp lib="0" loc="(170,1270)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="8"/> <a name="bit2" val="0"/> <a name="bit3" val="1"/> <a name="bit4" val="2"/> <a name="bit5" val="3"/> <a name="bit6" val="4"/> <a name="bit7" val="5"/> <a name="bit8" val="6"/> <a name="bit9" val="7"/> <a name="fanout" val="9"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(170,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="INC"/> </comp> <comp lib="0" loc="(170,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nFx"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(170,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Fx"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="S"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(220,170)" name="Constant"/> <comp lib="0" loc="(330,880)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(460,1050)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(610,590)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(700,720)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="1" loc="(220,370)" name="NOT Gate"> <a name="width" val="11"/> </comp> <comp lib="1" loc="(300,1220)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(790,140)" name="NOT Gate"/> <comp lib="2" loc="(260,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(980,1050)" name="SQ_AdderBit"/> <comp loc="(980,1170)" name="SQ_AdderBit"/> <comp loc="(980,1290)" name="SQ_AdderBit"/> <comp loc="(980,210)" name="SQ_AdderBit"/> <comp loc="(980,330)" name="SQ_AdderBit"/> <comp loc="(980,450)" name="SQ_AdderBit"/> <comp loc="(980,570)" name="SQ_AdderBit"/> <comp loc="(980,690)" name="SQ_AdderBit"/> <comp loc="(980,810)" name="SQ_AdderBit"/> <comp loc="(980,90)" name="SQ_AdderBit"/> <comp loc="(980,930)" name="SQ_AdderBit"/> <wire from="(1000,1050)" to="(1000,1120)"/> <wire from="(1000,1170)" to="(1000,1240)"/> <wire from="(1000,210)" to="(1000,280)"/> <wire from="(1000,330)" to="(1000,400)"/> <wire from="(1000,450)" to="(1000,520)"/> <wire from="(1000,570)" to="(1000,640)"/> <wire from="(1000,690)" to="(1000,760)"/> <wire from="(1000,810)" to="(1000,880)"/> <wire from="(1000,90)" to="(1000,160)"/> <wire from="(1000,930)" to="(1000,1000)"/> <wire from="(1030,1290)" to="(1030,1350)"/> <wire from="(1030,1350)" to="(1200,1350)"/> <wire from="(1090,710)" to="(1090,730)"/> <wire from="(1090,730)" to="(1140,730)"/> <wire from="(1100,590)" to="(1100,720)"/> <wire from="(1100,720)" to="(1140,720)"/> <wire from="(1100,740)" to="(1100,830)"/> <wire from="(1100,740)" to="(1140,740)"/> <wire from="(1110,470)" to="(1110,710)"/> <wire from="(1110,710)" to="(1140,710)"/> <wire from="(1110,750)" to="(1110,950)"/> <wire from="(1110,750)" to="(1140,750)"/> <wire from="(1120,350)" to="(1120,700)"/> <wire from="(1120,700)" to="(1140,700)"/> <wire from="(1120,760)" to="(1120,1070)"/> <wire from="(1120,760)" to="(1140,760)"/> <wire from="(1130,230)" to="(1130,690)"/> <wire from="(1130,690)" to="(1140,690)"/> <wire from="(1130,770)" to="(1130,1190)"/> <wire from="(1130,770)" to="(1140,770)"/> <wire from="(1140,110)" to="(1140,680)"/> <wire from="(1140,780)" to="(1140,1310)"/> <wire from="(1160,110)" to="(1160,670)"/> <wire from="(1160,110)" to="(1220,110)"/> <wire from="(1200,200)" to="(1200,1350)"/> <wire from="(1200,200)" to="(1220,200)"/> <wire from="(1210,240)" to="(1210,1370)"/> <wire from="(1210,240)" to="(1220,240)"/> <wire from="(130,1050)" to="(460,1050)"/> <wire from="(130,460)" to="(130,1050)"/> <wire from="(130,460)" to="(250,460)"/> <wire from="(160,1270)" to="(170,1270)"/> <wire from="(160,480)" to="(160,890)"/> <wire from="(160,480)" to="(270,480)"/> <wire from="(160,890)" to="(330,890)"/> <wire from="(160,950)" to="(160,1270)"/> <wire from="(160,950)" to="(300,950)"/> <wire from="(170,110)" to="(240,110)"/> <wire from="(170,150)" to="(230,150)"/> <wire from="(170,250)" to="(320,250)"/> <wire from="(170,290)" to="(300,290)"/> <wire from="(170,330)" to="(180,330)"/> <wire from="(180,330)" to="(180,370)"/> <wire from="(180,330)" to="(270,330)"/> <wire from="(180,370)" to="(190,370)"/> <wire from="(190,1180)" to="(220,1180)"/> <wire from="(190,1190)" to="(220,1190)"/> <wire from="(190,1200)" to="(220,1200)"/> <wire from="(190,1210)" to="(220,1210)"/> <wire from="(190,1220)" to="(220,1220)"/> <wire from="(190,1230)" to="(220,1230)"/> <wire from="(190,1240)" to="(220,1240)"/> <wire from="(190,1250)" to="(220,1250)"/> <wire from="(190,1260)" to="(220,1260)"/> <wire from="(220,170)" to="(230,170)"/> <wire from="(220,370)" to="(250,370)"/> <wire from="(240,110)" to="(240,140)"/> <wire from="(250,370)" to="(250,460)"/> <wire from="(260,160)" to="(740,160)"/> <wire from="(270,330)" to="(270,480)"/> <wire from="(300,1220)" to="(330,1220)"/> <wire from="(300,290)" to="(300,590)"/> <wire from="(300,590)" to="(300,950)"/> <wire from="(300,590)" to="(610,590)"/> <wire from="(320,250)" to="(320,720)"/> <wire from="(320,720)" to="(700,720)"/> <wire from="(330,1220)" to="(330,1370)"/> <wire from="(330,1370)" to="(1210,1370)"/> <wire from="(330,880)" to="(330,890)"/> <wire from="(350,110)" to="(350,770)"/> <wire from="(350,110)" to="(880,110)"/> <wire from="(350,1310)" to="(880,1310)"/> <wire from="(350,780)" to="(360,780)"/> <wire from="(350,790)" to="(370,790)"/> <wire from="(350,800)" to="(380,800)"/> <wire from="(350,810)" to="(390,810)"/> <wire from="(350,820)" to="(450,820)"/> <wire from="(350,830)" to="(880,830)"/> <wire from="(350,840)" to="(380,840)"/> <wire from="(350,850)" to="(370,850)"/> <wire from="(350,860)" to="(360,860)"/> <wire from="(350,870)" to="(350,1310)"/> <wire from="(360,1190)" to="(880,1190)"/> <wire from="(360,230)" to="(360,780)"/> <wire from="(360,230)" to="(880,230)"/> <wire from="(360,860)" to="(360,1190)"/> <wire from="(370,1070)" to="(880,1070)"/> <wire from="(370,350)" to="(370,790)"/> <wire from="(370,350)" to="(880,350)"/> <wire from="(370,850)" to="(370,1070)"/> <wire from="(380,470)" to="(380,800)"/> <wire from="(380,470)" to="(880,470)"/> <wire from="(380,840)" to="(380,900)"/> <wire from="(380,900)" to="(780,900)"/> <wire from="(390,600)" to="(390,810)"/> <wire from="(390,600)" to="(680,600)"/> <wire from="(450,780)" to="(450,820)"/> <wire from="(450,780)" to="(810,780)"/> <wire from="(480,1000)" to="(510,1000)"/> <wire from="(480,1010)" to="(750,1010)"/> <wire from="(480,1020)" to="(500,1020)"/> <wire from="(480,1030)" to="(490,1030)"/> <wire from="(480,1040)" to="(480,1320)"/> <wire from="(480,120)" to="(480,940)"/> <wire from="(480,120)" to="(880,120)"/> <wire from="(480,1320)" to="(880,1320)"/> <wire from="(480,950)" to="(490,950)"/> <wire from="(480,960)" to="(500,960)"/> <wire from="(480,970)" to="(510,970)"/> <wire from="(480,980)" to="(520,980)"/> <wire from="(480,990)" to="(530,990)"/> <wire from="(490,1030)" to="(490,1200)"/> <wire from="(490,1200)" to="(880,1200)"/> <wire from="(490,240)" to="(490,950)"/> <wire from="(490,240)" to="(880,240)"/> <wire from="(500,1020)" to="(500,1080)"/> <wire from="(500,1080)" to="(880,1080)"/> <wire from="(500,360)" to="(500,960)"/> <wire from="(500,360)" to="(880,360)"/> <wire from="(510,1000)" to="(510,1030)"/> <wire from="(510,1030)" to="(770,1030)"/> <wire from="(510,400)" to="(510,970)"/> <wire from="(510,400)" to="(800,400)"/> <wire from="(520,730)" to="(520,980)"/> <wire from="(520,730)" to="(790,730)"/> <wire from="(530,750)" to="(530,990)"/> <wire from="(530,750)" to="(800,750)"/> <wire from="(630,1290)" to="(880,1290)"/> <wire from="(630,490)" to="(640,490)"/> <wire from="(630,500)" to="(650,500)"/> <wire from="(630,510)" to="(660,510)"/> <wire from="(630,520)" to="(670,520)"/> <wire from="(630,530)" to="(780,530)"/> <wire from="(630,540)" to="(670,540)"/> <wire from="(630,550)" to="(660,550)"/> <wire from="(630,560)" to="(650,560)"/> <wire from="(630,570)" to="(640,570)"/> <wire from="(630,580)" to="(630,1290)"/> <wire from="(630,90)" to="(630,480)"/> <wire from="(630,90)" to="(880,90)"/> <wire from="(640,1170)" to="(880,1170)"/> <wire from="(640,210)" to="(640,490)"/> <wire from="(640,210)" to="(880,210)"/> <wire from="(640,570)" to="(640,1170)"/> <wire from="(650,1050)" to="(880,1050)"/> <wire from="(650,330)" to="(650,500)"/> <wire from="(650,330)" to="(880,330)"/> <wire from="(650,560)" to="(650,1050)"/> <wire from="(660,450)" to="(660,510)"/> <wire from="(660,450)" to="(880,450)"/> <wire from="(660,550)" to="(660,930)"/> <wire from="(660,930)" to="(880,930)"/> <wire from="(670,490)" to="(670,520)"/> <wire from="(670,490)" to="(770,490)"/> <wire from="(670,540)" to="(670,810)"/> <wire from="(670,810)" to="(880,810)"/> <wire from="(680,590)" to="(680,600)"/> <wire from="(680,590)" to="(880,590)"/> <wire from="(720,100)" to="(720,610)"/> <wire from="(720,100)" to="(880,100)"/> <wire from="(720,1300)" to="(880,1300)"/> <wire from="(720,620)" to="(730,620)"/> <wire from="(720,630)" to="(740,630)"/> <wire from="(720,640)" to="(750,640)"/> <wire from="(720,650)" to="(760,650)"/> <wire from="(720,660)" to="(770,660)"/> <wire from="(720,670)" to="(760,670)"/> <wire from="(720,680)" to="(750,680)"/> <wire from="(720,690)" to="(740,690)"/> <wire from="(720,700)" to="(730,700)"/> <wire from="(720,710)" to="(720,1300)"/> <wire from="(730,1180)" to="(880,1180)"/> <wire from="(730,220)" to="(730,620)"/> <wire from="(730,220)" to="(880,220)"/> <wire from="(730,700)" to="(730,1180)"/> <wire from="(740,1060)" to="(880,1060)"/> <wire from="(740,140)" to="(740,160)"/> <wire from="(740,140)" to="(760,140)"/> <wire from="(740,160)" to="(830,160)"/> <wire from="(740,340)" to="(740,630)"/> <wire from="(740,340)" to="(880,340)"/> <wire from="(740,690)" to="(740,1060)"/> <wire from="(750,460)" to="(750,640)"/> <wire from="(750,460)" to="(880,460)"/> <wire from="(750,680)" to="(750,940)"/> <wire from="(750,940)" to="(880,940)"/> <wire from="(750,960)" to="(750,1010)"/> <wire from="(750,960)" to="(880,960)"/> <wire from="(760,580)" to="(760,650)"/> <wire from="(760,580)" to="(880,580)"/> <wire from="(760,670)" to="(760,820)"/> <wire from="(760,820)" to="(880,820)"/> <wire from="(770,490)" to="(770,570)"/> <wire from="(770,570)" to="(880,570)"/> <wire from="(770,660)" to="(770,700)"/> <wire from="(770,700)" to="(880,700)"/> <wire from="(770,840)" to="(770,1030)"/> <wire from="(770,840)" to="(880,840)"/> <wire from="(780,530)" to="(780,690)"/> <wire from="(780,690)" to="(880,690)"/> <wire from="(780,900)" to="(780,950)"/> <wire from="(780,950)" to="(880,950)"/> <wire from="(790,140)" to="(800,140)"/> <wire from="(790,600)" to="(790,730)"/> <wire from="(790,600)" to="(880,600)"/> <wire from="(800,130)" to="(800,140)"/> <wire from="(800,130)" to="(880,130)"/> <wire from="(800,400)" to="(800,480)"/> <wire from="(800,480)" to="(880,480)"/> <wire from="(800,720)" to="(800,750)"/> <wire from="(800,720)" to="(880,720)"/> <wire from="(810,710)" to="(810,780)"/> <wire from="(810,710)" to="(880,710)"/> <wire from="(830,140)" to="(830,160)"/> <wire from="(830,140)" to="(880,140)"/> <wire from="(850,1000)" to="(1000,1000)"/> <wire from="(850,1000)" to="(850,1100)"/> <wire from="(850,1100)" to="(880,1100)"/> <wire from="(850,1120)" to="(1000,1120)"/> <wire from="(850,1120)" to="(850,1220)"/> <wire from="(850,1220)" to="(880,1220)"/> <wire from="(850,1240)" to="(1000,1240)"/> <wire from="(850,1240)" to="(850,1340)"/> <wire from="(850,1340)" to="(880,1340)"/> <wire from="(850,160)" to="(1000,160)"/> <wire from="(850,160)" to="(850,260)"/> <wire from="(850,260)" to="(880,260)"/> <wire from="(850,280)" to="(1000,280)"/> <wire from="(850,280)" to="(850,380)"/> <wire from="(850,380)" to="(880,380)"/> <wire from="(850,400)" to="(1000,400)"/> <wire from="(850,400)" to="(850,500)"/> <wire from="(850,500)" to="(880,500)"/> <wire from="(850,520)" to="(1000,520)"/> <wire from="(850,520)" to="(850,620)"/> <wire from="(850,620)" to="(880,620)"/> <wire from="(850,640)" to="(1000,640)"/> <wire from="(850,640)" to="(850,740)"/> <wire from="(850,740)" to="(880,740)"/> <wire from="(850,760)" to="(1000,760)"/> <wire from="(850,760)" to="(850,860)"/> <wire from="(850,860)" to="(880,860)"/> <wire from="(850,880)" to="(1000,880)"/> <wire from="(850,880)" to="(850,980)"/> <wire from="(850,980)" to="(880,980)"/> <wire from="(860,1010)" to="(860,1090)"/> <wire from="(860,1010)" to="(990,1010)"/> <wire from="(860,1090)" to="(880,1090)"/> <wire from="(860,1130)" to="(860,1210)"/> <wire from="(860,1130)" to="(990,1130)"/> <wire from="(860,1210)" to="(880,1210)"/> <wire from="(860,1250)" to="(860,1330)"/> <wire from="(860,1250)" to="(990,1250)"/> <wire from="(860,1330)" to="(880,1330)"/> <wire from="(860,170)" to="(860,250)"/> <wire from="(860,170)" to="(990,170)"/> <wire from="(860,250)" to="(880,250)"/> <wire from="(860,290)" to="(860,370)"/> <wire from="(860,290)" to="(990,290)"/> <wire from="(860,370)" to="(880,370)"/> <wire from="(860,410)" to="(860,490)"/> <wire from="(860,410)" to="(990,410)"/> <wire from="(860,490)" to="(880,490)"/> <wire from="(860,530)" to="(860,610)"/> <wire from="(860,530)" to="(990,530)"/> <wire from="(860,610)" to="(880,610)"/> <wire from="(860,650)" to="(860,730)"/> <wire from="(860,650)" to="(990,650)"/> <wire from="(860,730)" to="(880,730)"/> <wire from="(860,770)" to="(860,850)"/> <wire from="(860,770)" to="(990,770)"/> <wire from="(860,850)" to="(880,850)"/> <wire from="(860,890)" to="(860,970)"/> <wire from="(860,890)" to="(990,890)"/> <wire from="(860,970)" to="(880,970)"/> <wire from="(980,100)" to="(990,100)"/> <wire from="(980,1050)" to="(1000,1050)"/> <wire from="(980,1060)" to="(990,1060)"/> <wire from="(980,1070)" to="(1120,1070)"/> <wire from="(980,110)" to="(1140,110)"/> <wire from="(980,1170)" to="(1000,1170)"/> <wire from="(980,1180)" to="(990,1180)"/> <wire from="(980,1190)" to="(1130,1190)"/> <wire from="(980,1290)" to="(1030,1290)"/> <wire from="(980,1300)" to="(1000,1300)"/> <wire from="(980,1310)" to="(1140,1310)"/> <wire from="(980,210)" to="(1000,210)"/> <wire from="(980,220)" to="(990,220)"/> <wire from="(980,230)" to="(1130,230)"/> <wire from="(980,330)" to="(1000,330)"/> <wire from="(980,340)" to="(990,340)"/> <wire from="(980,350)" to="(1120,350)"/> <wire from="(980,450)" to="(1000,450)"/> <wire from="(980,460)" to="(990,460)"/> <wire from="(980,470)" to="(1110,470)"/> <wire from="(980,570)" to="(1000,570)"/> <wire from="(980,580)" to="(990,580)"/> <wire from="(980,590)" to="(1100,590)"/> <wire from="(980,690)" to="(1000,690)"/> <wire from="(980,700)" to="(990,700)"/> <wire from="(980,710)" to="(1090,710)"/> <wire from="(980,810)" to="(1000,810)"/> <wire from="(980,820)" to="(990,820)"/> <wire from="(980,830)" to="(1100,830)"/> <wire from="(980,90)" to="(1000,90)"/> <wire from="(980,930)" to="(1000,930)"/> <wire from="(980,940)" to="(990,940)"/> <wire from="(980,950)" to="(1110,950)"/> <wire from="(990,100)" to="(990,170)"/> <wire from="(990,1060)" to="(990,1130)"/> <wire from="(990,1180)" to="(990,1250)"/> <wire from="(990,220)" to="(990,290)"/> <wire from="(990,340)" to="(990,410)"/> <wire from="(990,460)" to="(990,530)"/> <wire from="(990,580)" to="(990,650)"/> <wire from="(990,700)" to="(990,770)"/> <wire from="(990,820)" to="(990,890)"/> <wire from="(990,940)" to="(990,1010)"/> </circuit> <circuit name="SQ_AdderBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="SQ_AdderBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F"/> </comp> <comp lib="0" loc="(160,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nF"/> </comp> <comp lib="0" loc="(160,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="S"/> </comp> <comp lib="0" loc="(160,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nS"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="C"/> </comp> <comp lib="0" loc="(160,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nC"/> </comp> <comp lib="0" loc="(570,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_sum"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(340,100)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,150)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,200)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,280)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,320)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,360)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,400)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,150)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(460,340)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(550,130)" name="NOT Gate"/> <wire from="(160,100)" to="(200,100)"/> <wire from="(160,130)" to="(270,130)"/> <wire from="(160,180)" to="(210,180)"/> <wire from="(160,210)" to="(200,210)"/> <wire from="(160,260)" to="(220,260)"/> <wire from="(160,290)" to="(230,290)"/> <wire from="(200,210)" to="(200,370)"/> <wire from="(200,210)" to="(230,210)"/> <wire from="(200,370)" to="(310,370)"/> <wire from="(200,90)" to="(200,100)"/> <wire from="(200,90)" to="(260,90)"/> <wire from="(210,110)" to="(210,180)"/> <wire from="(210,110)" to="(280,110)"/> <wire from="(210,180)" to="(210,330)"/> <wire from="(210,330)" to="(210,410)"/> <wire from="(210,330)" to="(310,330)"/> <wire from="(210,410)" to="(310,410)"/> <wire from="(220,150)" to="(220,260)"/> <wire from="(220,150)" to="(290,150)"/> <wire from="(220,260)" to="(220,350)"/> <wire from="(220,350)" to="(220,400)"/> <wire from="(220,350)" to="(310,350)"/> <wire from="(220,400)" to="(310,400)"/> <wire from="(230,160)" to="(230,210)"/> <wire from="(230,160)" to="(250,160)"/> <wire from="(230,270)" to="(230,290)"/> <wire from="(230,270)" to="(310,270)"/> <wire from="(230,290)" to="(230,310)"/> <wire from="(230,310)" to="(310,310)"/> <wire from="(250,160)" to="(250,290)"/> <wire from="(250,160)" to="(310,160)"/> <wire from="(250,290)" to="(310,290)"/> <wire from="(260,280)" to="(260,390)"/> <wire from="(260,280)" to="(310,280)"/> <wire from="(260,390)" to="(310,390)"/> <wire from="(260,90)" to="(260,280)"/> <wire from="(260,90)" to="(290,90)"/> <wire from="(270,130)" to="(270,200)"/> <wire from="(270,200)" to="(270,320)"/> <wire from="(270,200)" to="(310,200)"/> <wire from="(270,320)" to="(270,360)"/> <wire from="(270,320)" to="(310,320)"/> <wire from="(270,360)" to="(310,360)"/> <wire from="(280,110)" to="(280,210)"/> <wire from="(280,110)" to="(310,110)"/> <wire from="(280,210)" to="(310,210)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(290,150)" to="(290,190)"/> <wire from="(290,150)" to="(310,150)"/> <wire from="(290,190)" to="(310,190)"/> <wire from="(290,90)" to="(290,140)"/> <wire from="(290,90)" to="(310,90)"/> <wire from="(340,100)" to="(370,100)"/> <wire from="(340,150)" to="(400,150)"/> <wire from="(340,200)" to="(370,200)"/> <wire from="(340,280)" to="(370,280)"/> <wire from="(340,320)" to="(360,320)"/> <wire from="(340,360)" to="(360,360)"/> <wire from="(340,400)" to="(370,400)"/> <wire from="(360,320)" to="(360,330)"/> <wire from="(360,330)" to="(400,330)"/> <wire from="(360,350)" to="(360,360)"/> <wire from="(360,350)" to="(400,350)"/> <wire from="(370,100)" to="(370,130)"/> <wire from="(370,130)" to="(400,130)"/> <wire from="(370,170)" to="(370,200)"/> <wire from="(370,170)" to="(400,170)"/> <wire from="(370,280)" to="(370,320)"/> <wire from="(370,320)" to="(400,320)"/> <wire from="(370,360)" to="(370,400)"/> <wire from="(370,360)" to="(400,360)"/> <wire from="(460,150)" to="(490,150)"/> <wire from="(460,340)" to="(570,340)"/> <wire from="(490,100)" to="(490,130)"/> <wire from="(490,100)" to="(570,100)"/> <wire from="(490,130)" to="(490,150)"/> <wire from="(490,130)" to="(520,130)"/> <wire from="(550,130)" to="(570,130)"/> </circuit> <circuit name="SQUARE_FreqCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_FreqCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Fx"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(230,970)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(310,280)" name="Constant"/> <comp lib="0" loc="(820,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FCO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(820,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FLOAD"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(460,110)" name="NOT Gate"/> <comp lib="1" loc="(510,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,50)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(585,90)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="FSTEP"/> </comp> <comp lib="8" loc="(595,40)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="FLOAD"/> </comp> <comp loc="(320,70)" name="DLatch"> <a name="label" val="fco_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(640,1140)" name="DownCounterBit"/> <comp loc="(640,1300)" name="DownCounterBit"/> <comp loc="(640,1460)" name="DownCounterBit"/> <comp loc="(640,1620)" name="DownCounterBit"/> <comp loc="(640,1780)" name="DownCounterBit"/> <comp loc="(640,180)" name="DownCounterBit"/> <comp loc="(640,340)" name="DownCounterBit"/> <comp loc="(640,500)" name="DownCounterBit"/> <comp loc="(640,660)" name="DownCounterBit"/> <comp loc="(640,820)" name="DownCounterBit"/> <comp loc="(640,980)" name="DownCounterBit"/> <wire from="(150,110)" to="(260,110)"/> <wire from="(150,20)" to="(150,50)"/> <wire from="(150,20)" to="(450,20)"/> <wire from="(150,80)" to="(210,80)"/> <wire from="(160,310)" to="(170,310)"/> <wire from="(170,310)" to="(170,970)"/> <wire from="(170,970)" to="(230,970)"/> <wire from="(210,70)" to="(210,80)"/> <wire from="(210,70)" to="(270,70)"/> <wire from="(250,1820)" to="(420,1820)"/> <wire from="(250,220)" to="(250,860)"/> <wire from="(250,220)" to="(420,220)"/> <wire from="(250,870)" to="(260,870)"/> <wire from="(250,880)" to="(270,880)"/> <wire from="(250,890)" to="(280,890)"/> <wire from="(250,900)" to="(290,900)"/> <wire from="(250,910)" to="(300,910)"/> <wire from="(250,920)" to="(290,920)"/> <wire from="(250,930)" to="(280,930)"/> <wire from="(250,940)" to="(270,940)"/> <wire from="(250,950)" to="(260,950)"/> <wire from="(250,960)" to="(250,1820)"/> <wire from="(260,110)" to="(260,180)"/> <wire from="(260,1660)" to="(420,1660)"/> <wire from="(260,180)" to="(350,180)"/> <wire from="(260,380)" to="(260,870)"/> <wire from="(260,380)" to="(420,380)"/> <wire from="(260,950)" to="(260,1660)"/> <wire from="(270,1500)" to="(420,1500)"/> <wire from="(270,30)" to="(270,70)"/> <wire from="(270,30)" to="(410,30)"/> <wire from="(270,540)" to="(270,880)"/> <wire from="(270,540)" to="(420,540)"/> <wire from="(270,70)" to="(320,70)"/> <wire from="(270,940)" to="(270,1500)"/> <wire from="(280,1340)" to="(420,1340)"/> <wire from="(280,140)" to="(690,140)"/> <wire from="(280,700)" to="(280,890)"/> <wire from="(280,700)" to="(420,700)"/> <wire from="(280,90)" to="(280,140)"/> <wire from="(280,90)" to="(320,90)"/> <wire from="(280,930)" to="(280,1340)"/> <wire from="(290,1180)" to="(420,1180)"/> <wire from="(290,860)" to="(290,900)"/> <wire from="(290,860)" to="(420,860)"/> <wire from="(290,920)" to="(290,1180)"/> <wire from="(300,1020)" to="(420,1020)"/> <wire from="(300,910)" to="(300,1020)"/> <wire from="(310,280)" to="(420,280)"/> <wire from="(350,1040)" to="(350,1200)"/> <wire from="(350,1040)" to="(420,1040)"/> <wire from="(350,1200)" to="(350,1360)"/> <wire from="(350,1200)" to="(420,1200)"/> <wire from="(350,1360)" to="(350,1520)"/> <wire from="(350,1360)" to="(420,1360)"/> <wire from="(350,1520)" to="(350,1680)"/> <wire from="(350,1520)" to="(420,1520)"/> <wire from="(350,1680)" to="(350,1840)"/> <wire from="(350,1680)" to="(420,1680)"/> <wire from="(350,180)" to="(350,240)"/> <wire from="(350,1840)" to="(420,1840)"/> <wire from="(350,240)" to="(350,400)"/> <wire from="(350,240)" to="(420,240)"/> <wire from="(350,400)" to="(350,560)"/> <wire from="(350,400)" to="(420,400)"/> <wire from="(350,560)" to="(350,720)"/> <wire from="(350,560)" to="(420,560)"/> <wire from="(350,720)" to="(350,880)"/> <wire from="(350,720)" to="(420,720)"/> <wire from="(350,880)" to="(350,1040)"/> <wire from="(350,880)" to="(420,880)"/> <wire from="(360,90)" to="(390,90)"/> <wire from="(370,1000)" to="(370,1160)"/> <wire from="(370,1000)" to="(420,1000)"/> <wire from="(370,1160)" to="(370,1320)"/> <wire from="(370,1160)" to="(420,1160)"/> <wire from="(370,1320)" to="(370,1480)"/> <wire from="(370,1320)" to="(420,1320)"/> <wire from="(370,1480)" to="(370,1640)"/> <wire from="(370,1480)" to="(420,1480)"/> <wire from="(370,150)" to="(370,200)"/> <wire from="(370,150)" to="(540,150)"/> <wire from="(370,1640)" to="(370,1800)"/> <wire from="(370,1640)" to="(420,1640)"/> <wire from="(370,1800)" to="(420,1800)"/> <wire from="(370,200)" to="(370,360)"/> <wire from="(370,200)" to="(420,200)"/> <wire from="(370,360)" to="(370,520)"/> <wire from="(370,360)" to="(420,360)"/> <wire from="(370,520)" to="(370,680)"/> <wire from="(370,520)" to="(420,520)"/> <wire from="(370,680)" to="(370,840)"/> <wire from="(370,680)" to="(420,680)"/> <wire from="(370,840)" to="(370,1000)"/> <wire from="(370,840)" to="(420,840)"/> <wire from="(380,1060)" to="(380,1220)"/> <wire from="(380,1060)" to="(420,1060)"/> <wire from="(380,1220)" to="(380,1380)"/> <wire from="(380,1220)" to="(420,1220)"/> <wire from="(380,1380)" to="(380,1540)"/> <wire from="(380,1380)" to="(420,1380)"/> <wire from="(380,1540)" to="(380,1700)"/> <wire from="(380,1540)" to="(420,1540)"/> <wire from="(380,160)" to="(380,260)"/> <wire from="(380,160)" to="(610,160)"/> <wire from="(380,1700)" to="(380,1860)"/> <wire from="(380,1700)" to="(420,1700)"/> <wire from="(380,1860)" to="(420,1860)"/> <wire from="(380,260)" to="(380,420)"/> <wire from="(380,260)" to="(420,260)"/> <wire from="(380,420)" to="(380,580)"/> <wire from="(380,420)" to="(420,420)"/> <wire from="(380,580)" to="(380,740)"/> <wire from="(380,580)" to="(420,580)"/> <wire from="(380,740)" to="(380,900)"/> <wire from="(380,740)" to="(420,740)"/> <wire from="(380,900)" to="(380,1060)"/> <wire from="(380,900)" to="(420,900)"/> <wire from="(390,110)" to="(430,110)"/> <wire from="(390,60)" to="(390,90)"/> <wire from="(390,60)" to="(470,60)"/> <wire from="(390,90)" to="(390,110)"/> <wire from="(400,1080)" to="(420,1080)"/> <wire from="(400,1120)" to="(400,1240)"/> <wire from="(400,1120)" to="(650,1120)"/> <wire from="(400,1240)" to="(420,1240)"/> <wire from="(400,1280)" to="(400,1400)"/> <wire from="(400,1280)" to="(650,1280)"/> <wire from="(400,1400)" to="(420,1400)"/> <wire from="(400,1440)" to="(400,1560)"/> <wire from="(400,1440)" to="(650,1440)"/> <wire from="(400,1560)" to="(420,1560)"/> <wire from="(400,1600)" to="(400,1720)"/> <wire from="(400,1600)" to="(650,1600)"/> <wire from="(400,1720)" to="(420,1720)"/> <wire from="(400,1760)" to="(400,1880)"/> <wire from="(400,1760)" to="(650,1760)"/> <wire from="(400,1880)" to="(420,1880)"/> <wire from="(400,320)" to="(400,440)"/> <wire from="(400,320)" to="(650,320)"/> <wire from="(400,440)" to="(420,440)"/> <wire from="(400,480)" to="(400,600)"/> <wire from="(400,480)" to="(650,480)"/> <wire from="(400,600)" to="(420,600)"/> <wire from="(400,640)" to="(400,760)"/> <wire from="(400,640)" to="(650,640)"/> <wire from="(400,760)" to="(420,760)"/> <wire from="(400,800)" to="(400,920)"/> <wire from="(400,800)" to="(650,800)"/> <wire from="(400,920)" to="(420,920)"/> <wire from="(400,960)" to="(400,1080)"/> <wire from="(400,960)" to="(650,960)"/> <wire from="(410,1140)" to="(410,1300)"/> <wire from="(410,1140)" to="(420,1140)"/> <wire from="(410,1300)" to="(410,1460)"/> <wire from="(410,1300)" to="(420,1300)"/> <wire from="(410,1460)" to="(410,1620)"/> <wire from="(410,1460)" to="(420,1460)"/> <wire from="(410,1620)" to="(410,1780)"/> <wire from="(410,1620)" to="(420,1620)"/> <wire from="(410,1780)" to="(420,1780)"/> <wire from="(410,180)" to="(410,340)"/> <wire from="(410,180)" to="(420,180)"/> <wire from="(410,30)" to="(410,180)"/> <wire from="(410,340)" to="(410,500)"/> <wire from="(410,340)" to="(420,340)"/> <wire from="(410,500)" to="(410,660)"/> <wire from="(410,500)" to="(420,500)"/> <wire from="(410,660)" to="(410,820)"/> <wire from="(410,660)" to="(420,660)"/> <wire from="(410,820)" to="(410,980)"/> <wire from="(410,820)" to="(420,820)"/> <wire from="(410,980)" to="(410,1140)"/> <wire from="(410,980)" to="(420,980)"/> <wire from="(450,20)" to="(450,40)"/> <wire from="(450,40)" to="(450,90)"/> <wire from="(450,40)" to="(470,40)"/> <wire from="(450,90)" to="(470,90)"/> <wire from="(460,110)" to="(470,110)"/> <wire from="(510,100)" to="(610,100)"/> <wire from="(510,50)" to="(540,50)"/> <wire from="(540,50)" to="(540,150)"/> <wire from="(540,50)" to="(720,50)"/> <wire from="(610,100)" to="(610,160)"/> <wire from="(640,1140)" to="(650,1140)"/> <wire from="(640,1300)" to="(650,1300)"/> <wire from="(640,1460)" to="(650,1460)"/> <wire from="(640,1620)" to="(650,1620)"/> <wire from="(640,1780)" to="(690,1780)"/> <wire from="(640,180)" to="(650,180)"/> <wire from="(640,340)" to="(650,340)"/> <wire from="(640,500)" to="(650,500)"/> <wire from="(640,660)" to="(650,660)"/> <wire from="(640,820)" to="(650,820)"/> <wire from="(640,980)" to="(650,980)"/> <wire from="(650,1140)" to="(650,1280)"/> <wire from="(650,1300)" to="(650,1440)"/> <wire from="(650,1460)" to="(650,1600)"/> <wire from="(650,1620)" to="(650,1760)"/> <wire from="(650,180)" to="(650,320)"/> <wire from="(650,340)" to="(650,480)"/> <wire from="(650,500)" to="(650,640)"/> <wire from="(650,660)" to="(650,800)"/> <wire from="(650,820)" to="(650,960)"/> <wire from="(650,980)" to="(650,1120)"/> <wire from="(690,140)" to="(690,170)"/> <wire from="(690,170)" to="(690,1780)"/> <wire from="(690,170)" to="(820,170)"/> <wire from="(720,200)" to="(820,200)"/> <wire from="(720,50)" to="(720,200)"/> </circuit> <circuit name="EnvelopeUnit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="EnvelopeUnit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1110,170)" name="Constant"/> <comp lib="0" loc="(130,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_LC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1460,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(150,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR_Reg"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR_LC"/> </comp> <comp lib="0" loc="(150,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(150,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(150,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1580,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="V"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,160)" name="Tunnel"> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,190)" name="Tunnel"> <a name="label" val="WR_LC"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(160,240)" name="Tunnel"> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1600,1120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="LC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(280,950)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(290,350)" name="Splitter"> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="4"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(370,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR_Reg"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(60,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(710,170)" name="Constant"/> <comp lib="0" loc="(720,740)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(900,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(900,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="1" loc="(1160,930)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(120,480)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1340,920)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1350,1040)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1390,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1390,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1460,1010)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1460,1070)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(180,510)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(180,580)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(810,960)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,900)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,970)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(1530,540)" name="Multiplexer"> <a name="width" val="4"/> </comp> <comp lib="8" loc="(1015,540)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="RCO"/> </comp> <comp lib="8" loc="(1290,860)" name="Text"> <a name="text" val="Envelope Control"/> </comp> <comp lib="8" loc="(1330,975)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="RLOAD"/> </comp> <comp lib="8" loc="(1400,540)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ECO"/> </comp> <comp lib="8" loc="(1415,910)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="EIN"/> </comp> <comp lib="8" loc="(1475,305)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ENV"/> </comp> <comp lib="8" loc="(1495,1000)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ESTEP"/> </comp> <comp lib="8" loc="(1520,1060)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ERES"/> </comp> <comp lib="8" loc="(155,615)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="EnvReload_FF"/> </comp> <comp lib="8" loc="(320,730)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="RELOAD"/> </comp> <comp lib="8" loc="(655,840)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ENVDIS"/> </comp> <comp lib="8" loc="(660,980)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="XXX_LC"/> </comp> <comp lib="8" loc="(730,765)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="VOL"/> </comp> <comp lib="8" loc="(910,1045)" name="Text"> <a name="text" val="Decay Control"/> </comp> <comp lib="8" loc="(995,890)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="RLOAD"/> </comp> <comp lib="8" loc="(995,960)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="RSTEP"/> </comp> <comp loc="(1190,1050)" name="DLatch"> <a name="label" val="reload_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1190,910)" name="DLatch"> <a name="label" val="eco_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1350,230)" name="DownCounterBit"/> <comp loc="(1350,390)" name="DownCounterBit"/> <comp loc="(1350,550)" name="DownCounterBit"/> <comp loc="(1350,70)" name="DownCounterBit"/> <comp loc="(220,560)" name="DLatch"> <a name="label" val="erld_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,110)" name="RegisterBit"> <a name="label" val="vol_reg0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,270)" name="RegisterBit"> <a name="label" val="vol_reg1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,430)" name="RegisterBit"> <a name="label" val="vol_reg2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,590)" name="RegisterBit"> <a name="label" val="vol_reg3"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,850)" name="RegisterBit"> <a name="label" val="envdis_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,970)" name="RegisterBit"> <a name="label" val="lc_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(820,940)" name="DLatch"> <a name="label" val="rco_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(960,230)" name="DownCounterBit"/> <comp loc="(960,390)" name="DownCounterBit"/> <comp loc="(960,550)" name="DownCounterBit"/> <comp loc="(960,70)" name="DownCounterBit"/> <wire from="(10,420)" to="(10,950)"/> <wire from="(10,420)" to="(200,420)"/> <wire from="(10,950)" to="(280,950)"/> <wire from="(1020,550)" to="(1020,700)"/> <wire from="(1030,710)" to="(1030,970)"/> <wire from="(1050,720)" to="(1050,900)"/> <wire from="(1050,900)" to="(1050,980)"/> <wire from="(1050,980)" to="(1370,980)"/> <wire from="(1060,150)" to="(1060,310)"/> <wire from="(1060,150)" to="(1130,150)"/> <wire from="(1060,310)" to="(1060,470)"/> <wire from="(1060,310)" to="(1130,310)"/> <wire from="(1060,470)" to="(1060,630)"/> <wire from="(1060,470)" to="(1130,470)"/> <wire from="(1060,630)" to="(1060,720)"/> <wire from="(1060,630)" to="(1130,630)"/> <wire from="(1060,720)" to="(1550,720)"/> <wire from="(1070,250)" to="(1070,410)"/> <wire from="(1070,250)" to="(1130,250)"/> <wire from="(1070,410)" to="(1070,570)"/> <wire from="(1070,410)" to="(1130,410)"/> <wire from="(1070,570)" to="(1070,710)"/> <wire from="(1070,570)" to="(1130,570)"/> <wire from="(1070,710)" to="(1560,710)"/> <wire from="(1070,90)" to="(1070,250)"/> <wire from="(1070,90)" to="(1130,90)"/> <wire from="(1080,110)" to="(1080,270)"/> <wire from="(1080,110)" to="(1130,110)"/> <wire from="(1080,270)" to="(1080,430)"/> <wire from="(1080,270)" to="(1130,270)"/> <wire from="(1080,430)" to="(1080,590)"/> <wire from="(1080,430)" to="(1130,430)"/> <wire from="(1080,590)" to="(1080,700)"/> <wire from="(1080,590)" to="(1130,590)"/> <wire from="(1080,700)" to="(1440,700)"/> <wire from="(1090,130)" to="(1090,290)"/> <wire from="(1090,130)" to="(1130,130)"/> <wire from="(1090,290)" to="(1090,450)"/> <wire from="(1090,290)" to="(1130,290)"/> <wire from="(1090,40)" to="(1090,130)"/> <wire from="(1090,40)" to="(1160,40)"/> <wire from="(1090,450)" to="(1090,610)"/> <wire from="(1090,450)" to="(1130,450)"/> <wire from="(1090,610)" to="(1130,610)"/> <wire from="(1100,210)" to="(1100,330)"/> <wire from="(1100,210)" to="(1370,210)"/> <wire from="(1100,330)" to="(1130,330)"/> <wire from="(1100,370)" to="(1100,490)"/> <wire from="(1100,370)" to="(1370,370)"/> <wire from="(1100,490)" to="(1130,490)"/> <wire from="(1100,530)" to="(1100,650)"/> <wire from="(1100,530)" to="(1370,530)"/> <wire from="(1100,650)" to="(1130,650)"/> <wire from="(1110,1070)" to="(1190,1070)"/> <wire from="(1110,170)" to="(1130,170)"/> <wire from="(1110,880)" to="(1110,920)"/> <wire from="(1110,880)" to="(1410,880)"/> <wire from="(1110,920)" to="(1130,920)"/> <wire from="(1110,940)" to="(1110,1070)"/> <wire from="(1110,940)" to="(1120,940)"/> <wire from="(1120,230)" to="(1120,390)"/> <wire from="(1120,230)" to="(1130,230)"/> <wire from="(1120,30)" to="(1120,70)"/> <wire from="(1120,30)" to="(1160,30)"/> <wire from="(1120,390)" to="(1120,550)"/> <wire from="(1120,390)" to="(1130,390)"/> <wire from="(1120,550)" to="(1120,770)"/> <wire from="(1120,550)" to="(1130,550)"/> <wire from="(1120,70)" to="(1120,230)"/> <wire from="(1120,70)" to="(1130,70)"/> <wire from="(1120,770)" to="(1180,770)"/> <wire from="(1160,930)" to="(1190,930)"/> <wire from="(1180,1050)" to="(1190,1050)"/> <wire from="(1180,770)" to="(1180,910)"/> <wire from="(1180,910)" to="(1180,1050)"/> <wire from="(1180,910)" to="(1190,910)"/> <wire from="(120,480)" to="(130,480)"/> <wire from="(120,520)" to="(120,550)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,550)" to="(190,550)"/> <wire from="(1230,1050)" to="(1310,1050)"/> <wire from="(1230,910)" to="(1260,910)"/> <wire from="(1260,1030)" to="(1310,1030)"/> <wire from="(1260,910)" to="(1260,1030)"/> <wire from="(1260,910)" to="(1300,910)"/> <wire from="(1290,1120)" to="(1600,1120)"/> <wire from="(1290,930)" to="(1290,1120)"/> <wire from="(1290,930)" to="(1300,930)"/> <wire from="(130,480)" to="(130,500)"/> <wire from="(130,500)" to="(140,500)"/> <wire from="(130,540)" to="(130,570)"/> <wire from="(130,540)" to="(190,540)"/> <wire from="(130,570)" to="(140,570)"/> <wire from="(130,590)" to="(140,590)"/> <wire from="(1340,920)" to="(1440,920)"/> <wire from="(1350,1040)" to="(1360,1040)"/> <wire from="(1350,110)" to="(1440,110)"/> <wire from="(1350,230)" to="(1370,230)"/> <wire from="(1350,270)" to="(1430,270)"/> <wire from="(1350,390)" to="(1370,390)"/> <wire from="(1350,430)" to="(1430,430)"/> <wire from="(1350,550)" to="(1410,550)"/> <wire from="(1350,590)" to="(1440,590)"/> <wire from="(1350,70)" to="(1370,70)"/> <wire from="(1360,1020)" to="(1360,1040)"/> <wire from="(1360,1020)" to="(1370,1020)"/> <wire from="(1360,1040)" to="(1380,1040)"/> <wire from="(1370,230)" to="(1370,370)"/> <wire from="(1370,390)" to="(1370,530)"/> <wire from="(1370,70)" to="(1370,210)"/> <wire from="(1380,1040)" to="(1380,1080)"/> <wire from="(1380,1080)" to="(1420,1080)"/> <wire from="(1390,1020)" to="(1420,1020)"/> <wire from="(1390,980)" to="(1400,980)"/> <wire from="(1400,1000)" to="(1400,1060)"/> <wire from="(1400,1000)" to="(1420,1000)"/> <wire from="(1400,1060)" to="(1420,1060)"/> <wire from="(1400,980)" to="(1400,1000)"/> <wire from="(1410,550)" to="(1410,880)"/> <wire from="(1430,270)" to="(1430,340)"/> <wire from="(1430,340)" to="(1440,340)"/> <wire from="(1430,350)" to="(1430,430)"/> <wire from="(1430,350)" to="(1440,350)"/> <wire from="(1440,110)" to="(1440,330)"/> <wire from="(1440,360)" to="(1440,590)"/> <wire from="(1440,700)" to="(1440,920)"/> <wire from="(1460,1010)" to="(1550,1010)"/> <wire from="(1460,1070)" to="(1560,1070)"/> <wire from="(1460,320)" to="(1480,320)"/> <wire from="(1480,320)" to="(1480,530)"/> <wire from="(1480,530)" to="(1500,530)"/> <wire from="(1480,550)" to="(1480,740)"/> <wire from="(1480,550)" to="(1500,550)"/> <wire from="(150,160)" to="(160,160)"/> <wire from="(150,190)" to="(160,190)"/> <wire from="(150,240)" to="(160,240)"/> <wire from="(150,30)" to="(380,30)"/> <wire from="(150,60)" to="(170,60)"/> <wire from="(1510,560)" to="(1510,750)"/> <wire from="(1530,540)" to="(1580,540)"/> <wire from="(1550,720)" to="(1550,1010)"/> <wire from="(1560,710)" to="(1560,1070)"/> <wire from="(170,360)" to="(200,360)"/> <wire from="(170,40)" to="(170,60)"/> <wire from="(170,40)" to="(720,40)"/> <wire from="(180,510)" to="(190,510)"/> <wire from="(180,580)" to="(190,580)"/> <wire from="(190,510)" to="(190,540)"/> <wire from="(190,510)" to="(290,510)"/> <wire from="(190,550)" to="(190,580)"/> <wire from="(190,580)" to="(220,580)"/> <wire from="(200,360)" to="(200,420)"/> <wire from="(200,360)" to="(290,360)"/> <wire from="(210,530)" to="(210,560)"/> <wire from="(210,530)" to="(380,530)"/> <wire from="(210,560)" to="(220,560)"/> <wire from="(260,560)" to="(280,560)"/> <wire from="(280,560)" to="(280,660)"/> <wire from="(290,350)" to="(290,360)"/> <wire from="(290,510)" to="(290,740)"/> <wire from="(290,740)" to="(540,740)"/> <wire from="(300,1010)" to="(390,1010)"/> <wire from="(300,890)" to="(300,930)"/> <wire from="(300,890)" to="(390,890)"/> <wire from="(300,940)" to="(300,1010)"/> <wire from="(310,150)" to="(310,310)"/> <wire from="(310,150)" to="(390,150)"/> <wire from="(310,320)" to="(320,320)"/> <wire from="(310,330)" to="(320,330)"/> <wire from="(310,340)" to="(310,630)"/> <wire from="(310,630)" to="(390,630)"/> <wire from="(320,310)" to="(320,320)"/> <wire from="(320,310)" to="(390,310)"/> <wire from="(320,330)" to="(320,470)"/> <wire from="(320,470)" to="(390,470)"/> <wire from="(370,130)" to="(390,130)"/> <wire from="(370,290)" to="(390,290)"/> <wire from="(370,450)" to="(390,450)"/> <wire from="(370,610)" to="(390,610)"/> <wire from="(370,870)" to="(390,870)"/> <wire from="(370,990)" to="(390,990)"/> <wire from="(380,110)" to="(380,270)"/> <wire from="(380,110)" to="(390,110)"/> <wire from="(380,270)" to="(380,430)"/> <wire from="(380,270)" to="(390,270)"/> <wire from="(380,30)" to="(380,110)"/> <wire from="(380,30)" to="(730,30)"/> <wire from="(380,430)" to="(380,530)"/> <wire from="(380,430)" to="(390,430)"/> <wire from="(380,530)" to="(380,590)"/> <wire from="(380,590)" to="(380,850)"/> <wire from="(380,590)" to="(390,590)"/> <wire from="(380,850)" to="(380,970)"/> <wire from="(380,850)" to="(390,850)"/> <wire from="(380,970)" to="(390,970)"/> <wire from="(540,740)" to="(540,810)"/> <wire from="(540,810)" to="(720,810)"/> <wire from="(60,470)" to="(80,470)"/> <wire from="(610,110)" to="(660,110)"/> <wire from="(610,270)" to="(650,270)"/> <wire from="(610,430)" to="(640,430)"/> <wire from="(610,590)" to="(630,590)"/> <wire from="(610,850)" to="(750,850)"/> <wire from="(610,990)" to="(680,990)"/> <wire from="(630,590)" to="(630,780)"/> <wire from="(630,590)" to="(740,590)"/> <wire from="(630,780)" to="(700,780)"/> <wire from="(640,430)" to="(640,770)"/> <wire from="(640,430)" to="(740,430)"/> <wire from="(640,770)" to="(700,770)"/> <wire from="(650,270)" to="(650,760)"/> <wire from="(650,270)" to="(740,270)"/> <wire from="(650,760)" to="(700,760)"/> <wire from="(660,110)" to="(660,750)"/> <wire from="(660,110)" to="(740,110)"/> <wire from="(660,750)" to="(700,750)"/> <wire from="(680,1120)" to="(1290,1120)"/> <wire from="(680,150)" to="(680,310)"/> <wire from="(680,150)" to="(740,150)"/> <wire from="(680,310)" to="(680,470)"/> <wire from="(680,310)" to="(740,310)"/> <wire from="(680,470)" to="(680,630)"/> <wire from="(680,470)" to="(740,470)"/> <wire from="(680,630)" to="(680,710)"/> <wire from="(680,630)" to="(740,630)"/> <wire from="(680,710)" to="(1030,710)"/> <wire from="(680,990)" to="(680,1120)"/> <wire from="(690,250)" to="(690,410)"/> <wire from="(690,250)" to="(740,250)"/> <wire from="(690,410)" to="(690,570)"/> <wire from="(690,410)" to="(740,410)"/> <wire from="(690,570)" to="(690,720)"/> <wire from="(690,570)" to="(740,570)"/> <wire from="(690,720)" to="(1050,720)"/> <wire from="(690,90)" to="(690,250)"/> <wire from="(690,90)" to="(740,90)"/> <wire from="(70,490)" to="(70,660)"/> <wire from="(70,490)" to="(80,490)"/> <wire from="(70,660)" to="(280,660)"/> <wire from="(700,210)" to="(700,330)"/> <wire from="(700,210)" to="(980,210)"/> <wire from="(700,330)" to="(740,330)"/> <wire from="(700,370)" to="(700,490)"/> <wire from="(700,370)" to="(980,370)"/> <wire from="(700,490)" to="(740,490)"/> <wire from="(700,530)" to="(700,650)"/> <wire from="(700,530)" to="(980,530)"/> <wire from="(700,650)" to="(740,650)"/> <wire from="(710,170)" to="(740,170)"/> <wire from="(720,1070)" to="(1110,1070)"/> <wire from="(720,130)" to="(720,290)"/> <wire from="(720,130)" to="(740,130)"/> <wire from="(720,290)" to="(720,450)"/> <wire from="(720,290)" to="(740,290)"/> <wire from="(720,40)" to="(1090,40)"/> <wire from="(720,40)" to="(720,130)"/> <wire from="(720,450)" to="(720,610)"/> <wire from="(720,450)" to="(740,450)"/> <wire from="(720,610)" to="(740,610)"/> <wire from="(720,740)" to="(1480,740)"/> <wire from="(720,810)" to="(720,970)"/> <wire from="(720,970)" to="(720,1070)"/> <wire from="(720,970)" to="(770,970)"/> <wire from="(730,230)" to="(730,390)"/> <wire from="(730,230)" to="(740,230)"/> <wire from="(730,30)" to="(1120,30)"/> <wire from="(730,30)" to="(730,70)"/> <wire from="(730,390)" to="(730,550)"/> <wire from="(730,390)" to="(740,390)"/> <wire from="(730,550)" to="(740,550)"/> <wire from="(730,70)" to="(730,230)"/> <wire from="(730,70)" to="(740,70)"/> <wire from="(750,750)" to="(1510,750)"/> <wire from="(750,750)" to="(750,850)"/> <wire from="(760,700)" to="(1020,700)"/> <wire from="(760,700)" to="(760,950)"/> <wire from="(760,950)" to="(770,950)"/> <wire from="(810,770)" to="(1120,770)"/> <wire from="(810,770)" to="(810,940)"/> <wire from="(810,940)" to="(820,940)"/> <wire from="(810,960)" to="(820,960)"/> <wire from="(860,940)" to="(890,940)"/> <wire from="(860,960)" to="(930,960)"/> <wire from="(890,910)" to="(890,940)"/> <wire from="(890,910)" to="(930,910)"/> <wire from="(900,1010)" to="(920,1010)"/> <wire from="(900,860)" to="(920,860)"/> <wire from="(920,860)" to="(920,890)"/> <wire from="(920,890)" to="(930,890)"/> <wire from="(920,980)" to="(920,1010)"/> <wire from="(920,980)" to="(930,980)"/> <wire from="(960,230)" to="(980,230)"/> <wire from="(960,390)" to="(980,390)"/> <wire from="(960,550)" to="(1020,550)"/> <wire from="(960,70)" to="(980,70)"/> <wire from="(970,900)" to="(1050,900)"/> <wire from="(970,970)" to="(1030,970)"/> <wire from="(980,230)" to="(980,370)"/> <wire from="(980,390)" to="(980,530)"/> <wire from="(980,70)" to="(980,210)"/> </circuit> <circuit name="SQUARE_Sweep"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_Sweep"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1010,510)" name="NoConnect"/> <comp lib="0" loc="(1010,530)" name="NoConnect"/> <comp lib="0" loc="(1010,690)" name="NoConnect"/> <comp lib="0" loc="(1010,710)" name="NoConnect"/> <comp lib="0" loc="(1010,870)" name="NoConnect"/> <comp lib="0" loc="(1010,890)" name="NoConnect"/> <comp lib="0" loc="(1030,850)" name="Tunnel"> <a name="label" val="SCO"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1110,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DO_SWEEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SW_OVF"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(180,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR1"/> </comp> <comp lib="0" loc="(180,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SR"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(180,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DEC"/> </comp> <comp lib="0" loc="(180,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_COUT"/> </comp> <comp lib="0" loc="(180,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SW_UVF"/> </comp> <comp lib="0" loc="(180,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NOSQ"/> </comp> <comp lib="0" loc="(180,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO2"/> </comp> <comp lib="0" loc="(180,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(190,130)" name="Tunnel"> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,350)" name="Tunnel"> <a name="label" val="SW_UVF"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,410)" name="Tunnel"> <a name="label" val="NOSQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,440)" name="Tunnel"> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,80)" name="Tunnel"> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(230,230)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(310,300)" name="Tunnel"> <a name="label" val="SW_OVF"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(390,690)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="2"/> <a name="bit7" val="none"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,140)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(470,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(480,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(610,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="WR1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(710,550)" name="NoConnect"/> <comp lib="0" loc="(710,730)" name="NoConnect"/> <comp lib="0" loc="(710,910)" name="NoConnect"/> <comp lib="0" loc="(720,90)" name="NoConnect"/> <comp lib="0" loc="(730,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SCO"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(770,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(770,590)" name="Constant"/> <comp lib="0" loc="(770,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(770,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(890,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SW_OVF"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(890,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SW_UVF"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(910,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(940,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NOSQ"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(940,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_LFO2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="1" loc="(1040,130)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(270,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,210)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(910,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(990,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(1020,310)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="SSTEP"/> </comp> <comp lib="8" loc="(1020,365)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="SLOAD"/> </comp> <comp lib="8" loc="(1090,250)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="/SCO"/> </comp> <comp lib="8" loc="(330,195)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="SRZ"/> </comp> <comp lib="8" loc="(645,225)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Reload_FF"/> </comp> <comp lib="8" loc="(760,100)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="SWDIS"/> </comp> <comp lib="8" loc="(765,350)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="SWRELOAD"/> </comp> <comp loc="(1010,490)" name="DownCounterBit"/> <comp loc="(1010,670)" name="DownCounterBit"/> <comp loc="(1010,850)" name="DownCounterBit"/> <comp loc="(480,280)" name="DLatch"> <a name="label" val="reload_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,530)" name="RegisterBit"> <a name="label" val="sweep_reg0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,710)" name="RegisterBit"> <a name="label" val="sweep_reg1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,890)" name="RegisterBit"> <a name="label" val="sweep_reg2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,90)" name="RegisterBit"> <a name="label" val="swdis_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,400)" name="DLatch"> <a name="label" val="sco_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,490)" to="(1030,490)"/> <wire from="(1010,670)" to="(1030,670)"/> <wire from="(1010,850)" to="(1030,850)"/> <wire from="(1030,490)" to="(1030,640)"/> <wire from="(1030,670)" to="(1030,820)"/> <wire from="(1040,130)" to="(1110,130)"/> <wire from="(1050,380)" to="(1050,460)"/> <wire from="(1060,320)" to="(1060,470)"/> <wire from="(1100,260)" to="(1100,420)"/> <wire from="(180,130)" to="(190,130)"/> <wire from="(180,230)" to="(230,230)"/> <wire from="(180,290)" to="(230,290)"/> <wire from="(180,310)" to="(230,310)"/> <wire from="(180,350)" to="(190,350)"/> <wire from="(180,410)" to="(190,410)"/> <wire from="(180,440)" to="(190,440)"/> <wire from="(180,50)" to="(440,50)"/> <wire from="(180,530)" to="(330,530)"/> <wire from="(180,80)" to="(190,80)"/> <wire from="(250,200)" to="(270,200)"/> <wire from="(250,210)" to="(270,210)"/> <wire from="(250,220)" to="(270,220)"/> <wire from="(270,300)" to="(290,300)"/> <wire from="(290,250)" to="(290,300)"/> <wire from="(290,250)" to="(460,250)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(310,210)" to="(370,210)"/> <wire from="(330,530)" to="(330,690)"/> <wire from="(330,530)" to="(390,530)"/> <wire from="(330,690)" to="(390,690)"/> <wire from="(370,60)" to="(370,210)"/> <wire from="(370,60)" to="(900,60)"/> <wire from="(390,140)" to="(390,530)"/> <wire from="(390,140)" to="(400,140)"/> <wire from="(410,570)" to="(410,660)"/> <wire from="(410,570)" to="(490,570)"/> <wire from="(410,670)" to="(420,670)"/> <wire from="(410,680)" to="(410,930)"/> <wire from="(410,930)" to="(490,930)"/> <wire from="(420,130)" to="(490,130)"/> <wire from="(420,670)" to="(420,750)"/> <wire from="(420,750)" to="(490,750)"/> <wire from="(440,280)" to="(440,400)"/> <wire from="(440,280)" to="(480,280)"/> <wire from="(440,400)" to="(440,490)"/> <wire from="(440,400)" to="(740,400)"/> <wire from="(440,490)" to="(480,490)"/> <wire from="(440,50)" to="(440,90)"/> <wire from="(440,90)" to="(440,280)"/> <wire from="(440,90)" to="(490,90)"/> <wire from="(460,200)" to="(1110,200)"/> <wire from="(460,200)" to="(460,250)"/> <wire from="(460,300)" to="(460,360)"/> <wire from="(460,300)" to="(480,300)"/> <wire from="(460,360)" to="(700,360)"/> <wire from="(470,550)" to="(490,550)"/> <wire from="(470,730)" to="(490,730)"/> <wire from="(470,910)" to="(490,910)"/> <wire from="(480,110)" to="(490,110)"/> <wire from="(480,490)" to="(480,530)"/> <wire from="(480,490)" to="(780,490)"/> <wire from="(480,530)" to="(480,710)"/> <wire from="(480,530)" to="(490,530)"/> <wire from="(480,710)" to="(480,890)"/> <wire from="(480,710)" to="(490,710)"/> <wire from="(480,890)" to="(490,890)"/> <wire from="(520,280)" to="(540,280)"/> <wire from="(520,300)" to="(540,300)"/> <wire from="(540,250)" to="(540,280)"/> <wire from="(540,250)" to="(560,250)"/> <wire from="(540,300)" to="(540,380)"/> <wire from="(540,380)" to="(720,380)"/> <wire from="(550,230)" to="(560,230)"/> <wire from="(600,240)" to="(620,240)"/> <wire from="(600,260)" to="(600,290)"/> <wire from="(600,260)" to="(620,260)"/> <wire from="(600,290)" to="(680,290)"/> <wire from="(600,300)" to="(600,320)"/> <wire from="(600,300)" to="(670,300)"/> <wire from="(600,320)" to="(620,320)"/> <wire from="(610,340)" to="(620,340)"/> <wire from="(660,250)" to="(670,250)"/> <wire from="(660,330)" to="(680,330)"/> <wire from="(670,250)" to="(670,300)"/> <wire from="(680,290)" to="(680,330)"/> <wire from="(680,330)" to="(700,330)"/> <wire from="(700,330)" to="(700,360)"/> <wire from="(710,110)" to="(960,110)"/> <wire from="(710,530)" to="(790,530)"/> <wire from="(710,710)" to="(790,710)"/> <wire from="(710,890)" to="(790,890)"/> <wire from="(710,90)" to="(720,90)"/> <wire from="(720,360)" to="(720,380)"/> <wire from="(720,360)" to="(810,360)"/> <wire from="(720,640)" to="(1030,640)"/> <wire from="(720,640)" to="(720,770)"/> <wire from="(720,770)" to="(790,770)"/> <wire from="(720,820)" to="(1030,820)"/> <wire from="(720,820)" to="(720,950)"/> <wire from="(720,950)" to="(790,950)"/> <wire from="(730,420)" to="(740,420)"/> <wire from="(730,470)" to="(1060,470)"/> <wire from="(730,470)" to="(730,570)"/> <wire from="(730,570)" to="(730,750)"/> <wire from="(730,570)" to="(790,570)"/> <wire from="(730,750)" to="(730,930)"/> <wire from="(730,750)" to="(790,750)"/> <wire from="(730,930)" to="(790,930)"/> <wire from="(740,460)" to="(1050,460)"/> <wire from="(740,460)" to="(740,510)"/> <wire from="(740,510)" to="(740,690)"/> <wire from="(740,510)" to="(790,510)"/> <wire from="(740,690)" to="(740,870)"/> <wire from="(740,690)" to="(790,690)"/> <wire from="(740,870)" to="(790,870)"/> <wire from="(770,550)" to="(790,550)"/> <wire from="(770,590)" to="(790,590)"/> <wire from="(770,730)" to="(790,730)"/> <wire from="(770,910)" to="(790,910)"/> <wire from="(780,400)" to="(820,400)"/> <wire from="(780,420)" to="(1100,420)"/> <wire from="(780,490)" to="(780,670)"/> <wire from="(780,490)" to="(790,490)"/> <wire from="(780,670)" to="(780,850)"/> <wire from="(780,670)" to="(790,670)"/> <wire from="(780,850)" to="(790,850)"/> <wire from="(790,140)" to="(790,260)"/> <wire from="(790,140)" to="(960,140)"/> <wire from="(790,260)" to="(1100,260)"/> <wire from="(810,360)" to="(810,380)"/> <wire from="(810,380)" to="(820,380)"/> <wire from="(860,390)" to="(880,390)"/> <wire from="(880,330)" to="(880,390)"/> <wire from="(880,330)" to="(890,330)"/> <wire from="(880,390)" to="(950,390)"/> <wire from="(890,130)" to="(960,130)"/> <wire from="(890,160)" to="(960,160)"/> <wire from="(900,100)" to="(960,100)"/> <wire from="(900,60)" to="(900,100)"/> <wire from="(910,290)" to="(920,290)"/> <wire from="(910,330)" to="(950,330)"/> <wire from="(920,290)" to="(920,310)"/> <wire from="(920,310)" to="(920,370)"/> <wire from="(920,310)" to="(950,310)"/> <wire from="(920,370)" to="(950,370)"/> <wire from="(940,120)" to="(960,120)"/> <wire from="(940,150)" to="(960,150)"/> <wire from="(990,320)" to="(1060,320)"/> <wire from="(990,380)" to="(1050,380)"/> </circuit> <circuit name="SQUARE_Duty"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_Duty"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FLOAD"/> </comp> <comp lib="0" loc="(170,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FCO"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR0"/> </comp> <comp lib="0" loc="(170,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR3"/> </comp> <comp lib="0" loc="(170,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(220,730)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(300,150)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(300,310)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(300,470)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(560,130)" name="NoConnect"/> <comp lib="0" loc="(560,290)" name="NoConnect"/> <comp lib="0" loc="(560,450)" name="NoConnect"/> <comp lib="0" loc="(560,650)" name="NoConnect"/> <comp lib="0" loc="(560,760)" name="NoConnect"/> <comp lib="0" loc="(570,430)" name="NoConnect"/> <comp lib="0" loc="(620,620)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(790,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DUTY"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(640,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,440)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(780,340)" name="Multiplexer"> <a name="select" val="2"/> </comp> <comp lib="8" loc="(665,385)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="75%"/> </comp> <comp lib="8" loc="(685,465)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="50%"/> </comp> <comp lib="8" loc="(705,285)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="12.5%"/> </comp> <comp lib="8" loc="(725,330)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="25%"/> </comp> <comp loc="(560,110)" name="DownCounterBit"/> <comp loc="(560,270)" name="DownCounterBit"/> <comp loc="(560,430)" name="DownCounterBit"/> <comp loc="(560,630)" name="RegisterBit"> <a name="label" val="duty_reg0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,740)" name="RegisterBit"> <a name="label" val="duty_reg1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,100)" to="(270,100)"/> <wire from="(170,180)" to="(320,180)"/> <wire from="(170,210)" to="(340,210)"/> <wire from="(170,270)" to="(220,270)"/> <wire from="(170,300)" to="(230,300)"/> <wire from="(170,410)" to="(180,410)"/> <wire from="(170,70)" to="(330,70)"/> <wire from="(180,410)" to="(180,730)"/> <wire from="(180,730)" to="(220,730)"/> <wire from="(220,270)" to="(220,650)"/> <wire from="(220,650)" to="(310,650)"/> <wire from="(230,130)" to="(230,300)"/> <wire from="(230,130)" to="(310,130)"/> <wire from="(240,670)" to="(240,710)"/> <wire from="(240,670)" to="(340,670)"/> <wire from="(240,720)" to="(240,780)"/> <wire from="(240,780)" to="(340,780)"/> <wire from="(270,100)" to="(270,170)"/> <wire from="(270,170)" to="(270,330)"/> <wire from="(270,170)" to="(340,170)"/> <wire from="(270,330)" to="(270,490)"/> <wire from="(270,330)" to="(340,330)"/> <wire from="(270,490)" to="(340,490)"/> <wire from="(280,250)" to="(280,370)"/> <wire from="(280,250)" to="(570,250)"/> <wire from="(280,370)" to="(340,370)"/> <wire from="(280,410)" to="(280,530)"/> <wire from="(280,410)" to="(570,410)"/> <wire from="(280,530)" to="(340,530)"/> <wire from="(300,150)" to="(340,150)"/> <wire from="(300,310)" to="(340,310)"/> <wire from="(300,470)" to="(340,470)"/> <wire from="(310,130)" to="(310,290)"/> <wire from="(310,130)" to="(340,130)"/> <wire from="(310,290)" to="(310,450)"/> <wire from="(310,290)" to="(340,290)"/> <wire from="(310,450)" to="(340,450)"/> <wire from="(310,650)" to="(310,760)"/> <wire from="(310,650)" to="(340,650)"/> <wire from="(310,760)" to="(340,760)"/> <wire from="(320,180)" to="(320,190)"/> <wire from="(320,190)" to="(320,350)"/> <wire from="(320,190)" to="(340,190)"/> <wire from="(320,350)" to="(320,510)"/> <wire from="(320,350)" to="(340,350)"/> <wire from="(320,510)" to="(340,510)"/> <wire from="(330,110)" to="(330,270)"/> <wire from="(330,110)" to="(340,110)"/> <wire from="(330,270)" to="(330,430)"/> <wire from="(330,270)" to="(340,270)"/> <wire from="(330,430)" to="(330,630)"/> <wire from="(330,430)" to="(340,430)"/> <wire from="(330,630)" to="(330,740)"/> <wire from="(330,630)" to="(340,630)"/> <wire from="(330,70)" to="(330,110)"/> <wire from="(330,740)" to="(340,740)"/> <wire from="(340,650)" to="(350,650)"/> <wire from="(560,110)" to="(570,110)"/> <wire from="(560,150)" to="(600,150)"/> <wire from="(560,270)" to="(570,270)"/> <wire from="(560,310)" to="(590,310)"/> <wire from="(560,430)" to="(570,430)"/> <wire from="(560,470)" to="(590,470)"/> <wire from="(560,630)" to="(600,630)"/> <wire from="(560,740)" to="(580,740)"/> <wire from="(570,110)" to="(570,250)"/> <wire from="(570,270)" to="(570,410)"/> <wire from="(580,640)" to="(580,740)"/> <wire from="(580,640)" to="(600,640)"/> <wire from="(590,310)" to="(590,430)"/> <wire from="(590,430)" to="(630,430)"/> <wire from="(590,450)" to="(590,470)"/> <wire from="(590,450)" to="(630,450)"/> <wire from="(590,470)" to="(700,470)"/> <wire from="(600,150)" to="(600,280)"/> <wire from="(600,280)" to="(620,280)"/> <wire from="(620,620)" to="(760,620)"/> <wire from="(630,300)" to="(630,390)"/> <wire from="(630,300)" to="(650,300)"/> <wire from="(630,390)" to="(680,390)"/> <wire from="(640,280)" to="(650,280)"/> <wire from="(670,440)" to="(680,440)"/> <wire from="(680,330)" to="(680,350)"/> <wire from="(680,330)" to="(690,330)"/> <wire from="(680,350)" to="(680,390)"/> <wire from="(680,350)" to="(740,350)"/> <wire from="(680,390)" to="(680,440)"/> <wire from="(690,290)" to="(710,290)"/> <wire from="(700,340)" to="(700,470)"/> <wire from="(700,340)" to="(740,340)"/> <wire from="(710,290)" to="(710,320)"/> <wire from="(710,320)" to="(740,320)"/> <wire from="(710,330)" to="(740,330)"/> <wire from="(760,360)" to="(760,620)"/> <wire from="(780,340)" to="(790,340)"/> </circuit> <circuit name="SQUARE_Output"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SQUARE_Output"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DUTY"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SW_UVF"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NOSQ"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SW_OVF"/> </comp> <comp lib="0" loc="(140,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(560,200)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="4"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(650,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SQ_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(210,340)" name="NOT Gate"> <a name="width" val="4"/> </comp> <comp lib="1" loc="(240,190)" name="NOT Gate"/> <comp lib="1" loc="(330,210)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(500,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,210)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="4"/> </comp> <comp loc="(360,190)" name="DLatch"> <a name="label" val="sqo_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,160)" to="(190,160)"/> <wire from="(140,190)" to="(160,190)"/> <wire from="(140,220)" to="(230,220)"/> <wire from="(140,250)" to="(240,250)"/> <wire from="(140,280)" to="(250,280)"/> <wire from="(140,340)" to="(180,340)"/> <wire from="(140,80)" to="(330,80)"/> <wire from="(160,190)" to="(160,300)"/> <wire from="(160,300)" to="(430,300)"/> <wire from="(190,160)" to="(190,190)"/> <wire from="(190,190)" to="(210,190)"/> <wire from="(210,340)" to="(580,340)"/> <wire from="(230,200)" to="(230,220)"/> <wire from="(230,200)" to="(270,200)"/> <wire from="(240,190)" to="(270,190)"/> <wire from="(240,220)" to="(240,250)"/> <wire from="(240,220)" to="(270,220)"/> <wire from="(250,230)" to="(250,280)"/> <wire from="(250,230)" to="(270,230)"/> <wire from="(330,190)" to="(360,190)"/> <wire from="(330,210)" to="(360,210)"/> <wire from="(330,80)" to="(330,190)"/> <wire from="(400,190)" to="(460,190)"/> <wire from="(430,210)" to="(430,300)"/> <wire from="(430,210)" to="(460,210)"/> <wire from="(500,200)" to="(510,200)"/> <wire from="(510,170)" to="(510,200)"/> <wire from="(510,170)" to="(540,170)"/> <wire from="(510,200)" to="(520,200)"/> <wire from="(540,170)" to="(540,180)"/> <wire from="(560,200)" to="(600,200)"/> <wire from="(580,220)" to="(580,340)"/> <wire from="(580,220)" to="(600,220)"/> <wire from="(640,210)" to="(650,210)"/> </circuit> <circuit name="TRIANGLE_LinearCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TRIANGLE_LinearCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TLOAD"/> </comp> <comp lib="0" loc="(140,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TSTEP"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(170,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,620)" name="Splitter"> <a name="bit7" val="none"/> <a name="fanout" val="7"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(570,160)" name="Constant"/> <comp lib="0" loc="(860,1020)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TCO"/> <a name="output" val="true"/> </comp> <comp loc="(510,100)" name="RegisterBit"/> <comp loc="(510,1060)" name="RegisterBit"/> <comp loc="(510,260)" name="RegisterBit"/> <comp loc="(510,420)" name="RegisterBit"/> <comp loc="(510,580)" name="RegisterBit"/> <comp loc="(510,740)" name="RegisterBit"/> <comp loc="(510,900)" name="RegisterBit"/> <comp loc="(820,1020)" name="DownCounterBit"/> <comp loc="(820,220)" name="DownCounterBit"/> <comp loc="(820,380)" name="DownCounterBit"/> <comp loc="(820,540)" name="DownCounterBit"/> <comp loc="(820,60)" name="DownCounterBit"/> <comp loc="(820,700)" name="DownCounterBit"/> <comp loc="(820,860)" name="DownCounterBit"/> <wire from="(140,110)" to="(180,110)"/> <wire from="(140,220)" to="(230,220)"/> <wire from="(140,280)" to="(170,280)"/> <wire from="(140,310)" to="(180,310)"/> <wire from="(140,70)" to="(160,70)"/> <wire from="(160,30)" to="(160,70)"/> <wire from="(160,30)" to="(280,30)"/> <wire from="(170,180)" to="(170,280)"/> <wire from="(170,180)" to="(530,180)"/> <wire from="(170,380)" to="(180,380)"/> <wire from="(180,200)" to="(180,310)"/> <wire from="(180,200)" to="(550,200)"/> <wire from="(180,380)" to="(180,620)"/> <wire from="(180,50)" to="(180,110)"/> <wire from="(180,50)" to="(580,50)"/> <wire from="(180,620)" to="(190,620)"/> <wire from="(210,1100)" to="(290,1100)"/> <wire from="(210,140)" to="(210,550)"/> <wire from="(210,140)" to="(290,140)"/> <wire from="(210,560)" to="(220,560)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(210,580)" to="(240,580)"/> <wire from="(210,590)" to="(230,590)"/> <wire from="(210,600)" to="(220,600)"/> <wire from="(210,610)" to="(210,1100)"/> <wire from="(220,300)" to="(220,560)"/> <wire from="(220,300)" to="(290,300)"/> <wire from="(220,600)" to="(220,940)"/> <wire from="(220,940)" to="(290,940)"/> <wire from="(230,120)" to="(230,220)"/> <wire from="(230,120)" to="(270,120)"/> <wire from="(230,460)" to="(230,570)"/> <wire from="(230,460)" to="(290,460)"/> <wire from="(230,590)" to="(230,780)"/> <wire from="(230,780)" to="(290,780)"/> <wire from="(240,580)" to="(240,620)"/> <wire from="(240,620)" to="(290,620)"/> <wire from="(270,1080)" to="(290,1080)"/> <wire from="(270,120)" to="(270,280)"/> <wire from="(270,120)" to="(290,120)"/> <wire from="(270,280)" to="(270,440)"/> <wire from="(270,280)" to="(290,280)"/> <wire from="(270,440)" to="(270,600)"/> <wire from="(270,440)" to="(290,440)"/> <wire from="(270,600)" to="(270,760)"/> <wire from="(270,600)" to="(290,600)"/> <wire from="(270,760)" to="(270,920)"/> <wire from="(270,760)" to="(290,760)"/> <wire from="(270,920)" to="(270,1080)"/> <wire from="(270,920)" to="(290,920)"/> <wire from="(280,100)" to="(280,260)"/> <wire from="(280,100)" to="(290,100)"/> <wire from="(280,1060)" to="(290,1060)"/> <wire from="(280,260)" to="(280,420)"/> <wire from="(280,260)" to="(290,260)"/> <wire from="(280,30)" to="(280,100)"/> <wire from="(280,30)" to="(590,30)"/> <wire from="(280,420)" to="(280,580)"/> <wire from="(280,420)" to="(290,420)"/> <wire from="(280,580)" to="(280,740)"/> <wire from="(280,580)" to="(290,580)"/> <wire from="(280,740)" to="(280,900)"/> <wire from="(280,740)" to="(290,740)"/> <wire from="(280,900)" to="(280,1060)"/> <wire from="(280,900)" to="(290,900)"/> <wire from="(510,100)" to="(600,100)"/> <wire from="(510,1060)" to="(600,1060)"/> <wire from="(510,260)" to="(600,260)"/> <wire from="(510,420)" to="(600,420)"/> <wire from="(510,580)" to="(600,580)"/> <wire from="(510,740)" to="(600,740)"/> <wire from="(510,900)" to="(600,900)"/> <wire from="(530,1040)" to="(600,1040)"/> <wire from="(530,180)" to="(530,240)"/> <wire from="(530,240)" to="(530,400)"/> <wire from="(530,240)" to="(600,240)"/> <wire from="(530,400)" to="(530,560)"/> <wire from="(530,400)" to="(600,400)"/> <wire from="(530,560)" to="(530,720)"/> <wire from="(530,560)" to="(600,560)"/> <wire from="(530,720)" to="(530,880)"/> <wire from="(530,720)" to="(600,720)"/> <wire from="(530,80)" to="(530,180)"/> <wire from="(530,80)" to="(600,80)"/> <wire from="(530,880)" to="(530,1040)"/> <wire from="(530,880)" to="(600,880)"/> <wire from="(550,1100)" to="(600,1100)"/> <wire from="(550,140)" to="(550,200)"/> <wire from="(550,140)" to="(600,140)"/> <wire from="(550,200)" to="(550,300)"/> <wire from="(550,300)" to="(550,460)"/> <wire from="(550,300)" to="(600,300)"/> <wire from="(550,460)" to="(550,620)"/> <wire from="(550,460)" to="(600,460)"/> <wire from="(550,620)" to="(550,780)"/> <wire from="(550,620)" to="(600,620)"/> <wire from="(550,780)" to="(550,940)"/> <wire from="(550,780)" to="(600,780)"/> <wire from="(550,940)" to="(550,1100)"/> <wire from="(550,940)" to="(600,940)"/> <wire from="(570,1000)" to="(570,1120)"/> <wire from="(570,1000)" to="(830,1000)"/> <wire from="(570,1120)" to="(600,1120)"/> <wire from="(570,160)" to="(600,160)"/> <wire from="(570,200)" to="(570,320)"/> <wire from="(570,200)" to="(830,200)"/> <wire from="(570,320)" to="(600,320)"/> <wire from="(570,360)" to="(570,480)"/> <wire from="(570,360)" to="(830,360)"/> <wire from="(570,480)" to="(600,480)"/> <wire from="(570,520)" to="(570,640)"/> <wire from="(570,520)" to="(830,520)"/> <wire from="(570,640)" to="(600,640)"/> <wire from="(570,680)" to="(570,800)"/> <wire from="(570,680)" to="(830,680)"/> <wire from="(570,800)" to="(600,800)"/> <wire from="(570,840)" to="(570,960)"/> <wire from="(570,840)" to="(830,840)"/> <wire from="(570,960)" to="(600,960)"/> <wire from="(580,1080)" to="(600,1080)"/> <wire from="(580,120)" to="(580,280)"/> <wire from="(580,120)" to="(600,120)"/> <wire from="(580,280)" to="(580,440)"/> <wire from="(580,280)" to="(600,280)"/> <wire from="(580,440)" to="(580,600)"/> <wire from="(580,440)" to="(600,440)"/> <wire from="(580,50)" to="(580,120)"/> <wire from="(580,600)" to="(580,760)"/> <wire from="(580,600)" to="(600,600)"/> <wire from="(580,760)" to="(580,920)"/> <wire from="(580,760)" to="(600,760)"/> <wire from="(580,920)" to="(580,1080)"/> <wire from="(580,920)" to="(600,920)"/> <wire from="(590,1020)" to="(600,1020)"/> <wire from="(590,220)" to="(590,380)"/> <wire from="(590,220)" to="(600,220)"/> <wire from="(590,30)" to="(590,60)"/> <wire from="(590,380)" to="(590,540)"/> <wire from="(590,380)" to="(600,380)"/> <wire from="(590,540)" to="(590,700)"/> <wire from="(590,540)" to="(600,540)"/> <wire from="(590,60)" to="(590,220)"/> <wire from="(590,60)" to="(600,60)"/> <wire from="(590,700)" to="(590,860)"/> <wire from="(590,700)" to="(600,700)"/> <wire from="(590,860)" to="(590,1020)"/> <wire from="(590,860)" to="(600,860)"/> <wire from="(820,1020)" to="(860,1020)"/> <wire from="(820,220)" to="(830,220)"/> <wire from="(820,380)" to="(830,380)"/> <wire from="(820,540)" to="(830,540)"/> <wire from="(820,60)" to="(830,60)"/> <wire from="(820,700)" to="(830,700)"/> <wire from="(820,860)" to="(830,860)"/> <wire from="(830,220)" to="(830,360)"/> <wire from="(830,380)" to="(830,520)"/> <wire from="(830,540)" to="(830,680)"/> <wire from="(830,60)" to="(830,200)"/> <wire from="(830,700)" to="(830,840)"/> <wire from="(830,860)" to="(830,1000)"/> </circuit> <circuit name="TRIANGLE_FreqCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TRIANGLE_FreqCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TFLOAD"/> </comp> <comp lib="0" loc="(150,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TFSTEP"/> </comp> <comp lib="0" loc="(150,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400A"/> </comp> <comp lib="0" loc="(150,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(150,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(1590,1240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(210,750)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(560,220)" name="Constant"/> <comp lib="0" loc="(940,1160)" name="Splitter"> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="3"/> <a name="incoming" val="8"/> </comp> <comp lib="8" loc="(980,1385)" name="Text"> <a name="text" val="W400B"/> </comp> <comp loc="(1250,1120)" name="RegisterBit"/> <comp loc="(1250,1280)" name="RegisterBit"/> <comp loc="(1250,960)" name="RegisterBit"/> <comp loc="(1560,1080)" name="DownCounterBit"/> <comp loc="(1560,1240)" name="DownCounterBit"/> <comp loc="(1560,920)" name="DownCounterBit"/> <comp loc="(550,1120)" name="RegisterBit"/> <comp loc="(550,1280)" name="RegisterBit"/> <comp loc="(550,160)" name="RegisterBit"/> <comp loc="(550,320)" name="RegisterBit"/> <comp loc="(550,480)" name="RegisterBit"/> <comp loc="(550,640)" name="RegisterBit"/> <comp loc="(550,800)" name="RegisterBit"/> <comp loc="(550,960)" name="RegisterBit"/> <comp loc="(860,1080)" name="DownCounterBit"/> <comp loc="(860,120)" name="DownCounterBit"/> <comp loc="(860,1240)" name="DownCounterBit"/> <comp loc="(860,280)" name="DownCounterBit"/> <comp loc="(860,440)" name="DownCounterBit"/> <comp loc="(860,600)" name="DownCounterBit"/> <comp loc="(860,760)" name="DownCounterBit"/> <comp loc="(860,920)" name="DownCounterBit"/> <wire from="(1010,1140)" to="(1010,1300)"/> <wire from="(1010,1140)" to="(1030,1140)"/> <wire from="(1010,1300)" to="(1010,1390)"/> <wire from="(1010,1300)" to="(1030,1300)"/> <wire from="(1010,980)" to="(1010,1140)"/> <wire from="(1010,980)" to="(1030,980)"/> <wire from="(1020,1120)" to="(1020,1280)"/> <wire from="(1020,1120)" to="(1030,1120)"/> <wire from="(1020,1280)" to="(1030,1280)"/> <wire from="(1020,960)" to="(1020,1120)"/> <wire from="(1020,960)" to="(1030,960)"/> <wire from="(1250,1120)" to="(1340,1120)"/> <wire from="(1250,1280)" to="(1340,1280)"/> <wire from="(1250,960)" to="(1340,960)"/> <wire from="(1270,1020)" to="(1270,1070)"/> <wire from="(1270,1020)" to="(1340,1020)"/> <wire from="(1290,1000)" to="(1290,1160)"/> <wire from="(1290,1000)" to="(1340,1000)"/> <wire from="(1290,1160)" to="(1290,1320)"/> <wire from="(1290,1160)" to="(1340,1160)"/> <wire from="(1290,1320)" to="(1340,1320)"/> <wire from="(1290,870)" to="(1290,1000)"/> <wire from="(1290,870)" to="(1370,870)"/> <wire from="(1300,1100)" to="(1300,1260)"/> <wire from="(1300,1100)" to="(1340,1100)"/> <wire from="(1300,1260)" to="(1340,1260)"/> <wire from="(1300,880)" to="(1300,940)"/> <wire from="(1300,880)" to="(1390,880)"/> <wire from="(1300,940)" to="(1300,1100)"/> <wire from="(1300,940)" to="(1340,940)"/> <wire from="(1310,1060)" to="(1310,1180)"/> <wire from="(1310,1060)" to="(1570,1060)"/> <wire from="(1310,1180)" to="(1340,1180)"/> <wire from="(1310,1220)" to="(1310,1340)"/> <wire from="(1310,1220)" to="(1570,1220)"/> <wire from="(1310,1340)" to="(1340,1340)"/> <wire from="(1320,1140)" to="(1320,1300)"/> <wire from="(1320,1140)" to="(1340,1140)"/> <wire from="(1320,1300)" to="(1340,1300)"/> <wire from="(1320,900)" to="(1320,980)"/> <wire from="(1320,980)" to="(1320,1140)"/> <wire from="(1320,980)" to="(1340,980)"/> <wire from="(1330,1080)" to="(1330,1240)"/> <wire from="(1330,1080)" to="(1340,1080)"/> <wire from="(1330,1240)" to="(1340,1240)"/> <wire from="(1330,920)" to="(1330,1080)"/> <wire from="(1330,920)" to="(1340,920)"/> <wire from="(1370,80)" to="(1370,870)"/> <wire from="(1390,90)" to="(1390,880)"/> <wire from="(140,1390)" to="(1010,1390)"/> <wire from="(140,420)" to="(140,1390)"/> <wire from="(140,420)" to="(200,420)"/> <wire from="(150,110)" to="(260,110)"/> <wire from="(150,140)" to="(270,140)"/> <wire from="(150,210)" to="(200,210)"/> <wire from="(150,240)" to="(200,240)"/> <wire from="(150,50)" to="(320,50)"/> <wire from="(150,70)" to="(620,70)"/> <wire from="(1560,1080)" to="(1570,1080)"/> <wire from="(1560,1240)" to="(1590,1240)"/> <wire from="(1560,920)" to="(1570,920)"/> <wire from="(1570,1080)" to="(1570,1220)"/> <wire from="(1570,920)" to="(1570,1060)"/> <wire from="(170,330)" to="(180,330)"/> <wire from="(180,1430)" to="(940,1430)"/> <wire from="(180,330)" to="(180,750)"/> <wire from="(180,750)" to="(180,1430)"/> <wire from="(180,750)" to="(210,750)"/> <wire from="(200,180)" to="(200,210)"/> <wire from="(200,180)" to="(310,180)"/> <wire from="(200,240)" to="(200,420)"/> <wire from="(230,1320)" to="(330,1320)"/> <wire from="(230,200)" to="(230,670)"/> <wire from="(230,200)" to="(330,200)"/> <wire from="(230,680)" to="(240,680)"/> <wire from="(230,690)" to="(250,690)"/> <wire from="(230,700)" to="(260,700)"/> <wire from="(230,710)" to="(260,710)"/> <wire from="(230,720)" to="(250,720)"/> <wire from="(230,730)" to="(240,730)"/> <wire from="(230,740)" to="(230,1320)"/> <wire from="(240,1160)" to="(330,1160)"/> <wire from="(240,360)" to="(240,680)"/> <wire from="(240,360)" to="(330,360)"/> <wire from="(240,730)" to="(240,1160)"/> <wire from="(250,1000)" to="(330,1000)"/> <wire from="(250,520)" to="(250,690)"/> <wire from="(250,520)" to="(330,520)"/> <wire from="(250,720)" to="(250,1000)"/> <wire from="(260,680)" to="(260,700)"/> <wire from="(260,680)" to="(330,680)"/> <wire from="(260,710)" to="(260,840)"/> <wire from="(260,840)" to="(330,840)"/> <wire from="(260,90)" to="(260,110)"/> <wire from="(260,90)" to="(580,90)"/> <wire from="(270,110)" to="(270,140)"/> <wire from="(270,110)" to="(590,110)"/> <wire from="(310,1140)" to="(310,1300)"/> <wire from="(310,1140)" to="(330,1140)"/> <wire from="(310,1300)" to="(330,1300)"/> <wire from="(310,180)" to="(310,340)"/> <wire from="(310,180)" to="(330,180)"/> <wire from="(310,340)" to="(310,500)"/> <wire from="(310,340)" to="(330,340)"/> <wire from="(310,500)" to="(310,660)"/> <wire from="(310,500)" to="(330,500)"/> <wire from="(310,660)" to="(310,820)"/> <wire from="(310,660)" to="(330,660)"/> <wire from="(310,820)" to="(310,980)"/> <wire from="(310,820)" to="(330,820)"/> <wire from="(310,980)" to="(310,1140)"/> <wire from="(310,980)" to="(330,980)"/> <wire from="(320,1120)" to="(320,1280)"/> <wire from="(320,1120)" to="(330,1120)"/> <wire from="(320,1280)" to="(330,1280)"/> <wire from="(320,160)" to="(320,320)"/> <wire from="(320,160)" to="(330,160)"/> <wire from="(320,320)" to="(320,480)"/> <wire from="(320,320)" to="(330,320)"/> <wire from="(320,480)" to="(320,640)"/> <wire from="(320,480)" to="(330,480)"/> <wire from="(320,50)" to="(320,160)"/> <wire from="(320,50)" to="(630,50)"/> <wire from="(320,640)" to="(320,800)"/> <wire from="(320,640)" to="(330,640)"/> <wire from="(320,800)" to="(320,960)"/> <wire from="(320,800)" to="(330,800)"/> <wire from="(320,960)" to="(320,1120)"/> <wire from="(320,960)" to="(330,960)"/> <wire from="(550,1120)" to="(640,1120)"/> <wire from="(550,1280)" to="(640,1280)"/> <wire from="(550,160)" to="(640,160)"/> <wire from="(550,320)" to="(640,320)"/> <wire from="(550,480)" to="(640,480)"/> <wire from="(550,640)" to="(640,640)"/> <wire from="(550,800)" to="(640,800)"/> <wire from="(550,960)" to="(640,960)"/> <wire from="(560,220)" to="(640,220)"/> <wire from="(580,1100)" to="(580,1260)"/> <wire from="(580,1100)" to="(640,1100)"/> <wire from="(580,1260)" to="(640,1260)"/> <wire from="(580,140)" to="(580,300)"/> <wire from="(580,140)" to="(640,140)"/> <wire from="(580,300)" to="(580,460)"/> <wire from="(580,300)" to="(640,300)"/> <wire from="(580,460)" to="(580,620)"/> <wire from="(580,460)" to="(640,460)"/> <wire from="(580,620)" to="(580,780)"/> <wire from="(580,620)" to="(640,620)"/> <wire from="(580,780)" to="(580,940)"/> <wire from="(580,780)" to="(640,780)"/> <wire from="(580,90)" to="(1390,90)"/> <wire from="(580,90)" to="(580,140)"/> <wire from="(580,940)" to="(580,1100)"/> <wire from="(580,940)" to="(640,940)"/> <wire from="(590,1000)" to="(590,1160)"/> <wire from="(590,1000)" to="(640,1000)"/> <wire from="(590,110)" to="(590,200)"/> <wire from="(590,1160)" to="(590,1320)"/> <wire from="(590,1160)" to="(640,1160)"/> <wire from="(590,1320)" to="(640,1320)"/> <wire from="(590,200)" to="(590,360)"/> <wire from="(590,200)" to="(640,200)"/> <wire from="(590,360)" to="(590,520)"/> <wire from="(590,360)" to="(640,360)"/> <wire from="(590,520)" to="(590,680)"/> <wire from="(590,520)" to="(640,520)"/> <wire from="(590,680)" to="(590,840)"/> <wire from="(590,680)" to="(640,680)"/> <wire from="(590,80)" to="(1370,80)"/> <wire from="(590,80)" to="(590,110)"/> <wire from="(590,840)" to="(590,1000)"/> <wire from="(590,840)" to="(640,840)"/> <wire from="(610,1020)" to="(640,1020)"/> <wire from="(610,1060)" to="(610,1180)"/> <wire from="(610,1060)" to="(870,1060)"/> <wire from="(610,1180)" to="(640,1180)"/> <wire from="(610,1220)" to="(610,1340)"/> <wire from="(610,1220)" to="(870,1220)"/> <wire from="(610,1340)" to="(640,1340)"/> <wire from="(610,260)" to="(610,380)"/> <wire from="(610,260)" to="(870,260)"/> <wire from="(610,380)" to="(640,380)"/> <wire from="(610,420)" to="(610,540)"/> <wire from="(610,420)" to="(870,420)"/> <wire from="(610,540)" to="(640,540)"/> <wire from="(610,580)" to="(610,700)"/> <wire from="(610,580)" to="(870,580)"/> <wire from="(610,700)" to="(640,700)"/> <wire from="(610,740)" to="(610,860)"/> <wire from="(610,740)" to="(870,740)"/> <wire from="(610,860)" to="(640,860)"/> <wire from="(610,900)" to="(610,1020)"/> <wire from="(610,900)" to="(870,900)"/> <wire from="(620,1140)" to="(620,1300)"/> <wire from="(620,1140)" to="(640,1140)"/> <wire from="(620,1300)" to="(640,1300)"/> <wire from="(620,180)" to="(620,340)"/> <wire from="(620,180)" to="(640,180)"/> <wire from="(620,340)" to="(620,500)"/> <wire from="(620,340)" to="(640,340)"/> <wire from="(620,500)" to="(620,660)"/> <wire from="(620,500)" to="(640,500)"/> <wire from="(620,660)" to="(620,820)"/> <wire from="(620,660)" to="(640,660)"/> <wire from="(620,70)" to="(620,180)"/> <wire from="(620,70)" to="(970,70)"/> <wire from="(620,820)" to="(620,980)"/> <wire from="(620,820)" to="(640,820)"/> <wire from="(620,980)" to="(620,1140)"/> <wire from="(620,980)" to="(640,980)"/> <wire from="(630,1080)" to="(630,1240)"/> <wire from="(630,1080)" to="(640,1080)"/> <wire from="(630,120)" to="(630,280)"/> <wire from="(630,120)" to="(640,120)"/> <wire from="(630,1240)" to="(640,1240)"/> <wire from="(630,280)" to="(630,440)"/> <wire from="(630,280)" to="(640,280)"/> <wire from="(630,440)" to="(630,600)"/> <wire from="(630,440)" to="(640,440)"/> <wire from="(630,50)" to="(630,120)"/> <wire from="(630,50)" to="(950,50)"/> <wire from="(630,600)" to="(630,760)"/> <wire from="(630,600)" to="(640,600)"/> <wire from="(630,760)" to="(630,920)"/> <wire from="(630,760)" to="(640,760)"/> <wire from="(630,920)" to="(630,1080)"/> <wire from="(630,920)" to="(640,920)"/> <wire from="(860,1080)" to="(870,1080)"/> <wire from="(860,120)" to="(870,120)"/> <wire from="(860,1240)" to="(900,1240)"/> <wire from="(860,280)" to="(870,280)"/> <wire from="(860,440)" to="(870,440)"/> <wire from="(860,600)" to="(870,600)"/> <wire from="(860,760)" to="(870,760)"/> <wire from="(860,920)" to="(870,920)"/> <wire from="(870,1080)" to="(870,1220)"/> <wire from="(870,120)" to="(870,260)"/> <wire from="(870,280)" to="(870,420)"/> <wire from="(870,440)" to="(870,580)"/> <wire from="(870,600)" to="(870,740)"/> <wire from="(870,760)" to="(870,900)"/> <wire from="(870,920)" to="(870,1060)"/> <wire from="(900,1070)" to="(1270,1070)"/> <wire from="(900,1070)" to="(900,1240)"/> <wire from="(940,1160)" to="(940,1430)"/> <wire from="(950,50)" to="(1580,50)"/> <wire from="(950,50)" to="(950,920)"/> <wire from="(950,920)" to="(1330,920)"/> <wire from="(950,920)" to="(950,960)"/> <wire from="(950,960)" to="(1020,960)"/> <wire from="(960,1000)" to="(1030,1000)"/> <wire from="(960,1000)" to="(960,1130)"/> <wire from="(960,1140)" to="(980,1140)"/> <wire from="(960,1150)" to="(960,1320)"/> <wire from="(960,1320)" to="(1030,1320)"/> <wire from="(970,70)" to="(970,900)"/> <wire from="(970,900)" to="(1320,900)"/> <wire from="(980,1140)" to="(980,1160)"/> <wire from="(980,1160)" to="(1030,1160)"/> </circuit> <circuit name="TRIANGLE_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TRIANGLE_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W4008"/> </comp> <comp lib="0" loc="(150,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400B"/> </comp> <comp lib="0" loc="(150,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LFO1"/> </comp> <comp lib="0" loc="(150,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NOTRI"/> </comp> <comp lib="0" loc="(150,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(150,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TCO"/> </comp> <comp lib="0" loc="(150,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FOUT"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(180,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,480)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(960,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(960,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(960,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TTSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(960,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRI_LC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(960,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TFLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(960,650)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TFSTEP"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(470,470)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(470,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,590)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,650)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,320)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,140)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,130)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(298,613)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="PHI1 !!"/> </comp> <comp lib="8" loc="(563,640)" name="Text"> <a name="text" val="TFSTEP"/> </comp> <comp lib="8" loc="(565,580)" name="Text"> <a name="text" val="TFLOAD"/> </comp> <comp lib="8" loc="(662,114)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(666,229)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(694,532)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="#FOUT"/> </comp> <comp lib="8" loc="(713,104)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Reload_FF"/> </comp> <comp lib="8" loc="(725,260)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="TRELOAD"/> </comp> <comp lib="8" loc="(744,123)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Q"/> </comp> <comp lib="8" loc="(744,220)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nQ"/> </comp> <comp loc="(320,620)" name="DLatch"> <a name="label" val="fout_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(360,310)" name="DLatch"> <a name="label" val="reload_latch2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(360,380)" name="DLatch"> <a name="label" val="tco_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,110)" name="RegisterBit"> <a name="label" val="lc_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(790,180)" name="DLatch"> <a name="label" val="reload_latch1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,150)" to="(180,150)"/> <wire from="(150,180)" to="(160,180)"/> <wire from="(150,270)" to="(160,270)"/> <wire from="(150,300)" to="(250,300)"/> <wire from="(150,330)" to="(270,330)"/> <wire from="(150,380)" to="(230,380)"/> <wire from="(150,410)" to="(230,410)"/> <wire from="(150,50)" to="(260,50)"/> <wire from="(150,80)" to="(240,80)"/> <wire from="(160,180)" to="(160,210)"/> <wire from="(160,210)" to="(680,210)"/> <wire from="(160,240)" to="(160,270)"/> <wire from="(160,240)" to="(470,240)"/> <wire from="(180,130)" to="(180,150)"/> <wire from="(180,130)" to="(290,130)"/> <wire from="(180,480)" to="(190,480)"/> <wire from="(210,150)" to="(210,470)"/> <wire from="(210,150)" to="(290,150)"/> <wire from="(230,380)" to="(230,400)"/> <wire from="(230,400)" to="(330,400)"/> <wire from="(230,410)" to="(230,640)"/> <wire from="(230,640)" to="(320,640)"/> <wire from="(240,30)" to="(240,80)"/> <wire from="(240,30)" to="(280,30)"/> <wire from="(250,300)" to="(250,480)"/> <wire from="(250,480)" to="(250,540)"/> <wire from="(250,480)" to="(410,480)"/> <wire from="(250,540)" to="(250,620)"/> <wire from="(250,540)" to="(460,540)"/> <wire from="(250,620)" to="(320,620)"/> <wire from="(260,470)" to="(410,470)"/> <wire from="(260,50)" to="(260,470)"/> <wire from="(270,330)" to="(270,460)"/> <wire from="(270,460)" to="(410,460)"/> <wire from="(280,110)" to="(280,310)"/> <wire from="(280,110)" to="(290,110)"/> <wire from="(280,30)" to="(280,110)"/> <wire from="(280,30)" to="(780,30)"/> <wire from="(280,310)" to="(280,380)"/> <wire from="(280,310)" to="(360,310)"/> <wire from="(280,380)" to="(360,380)"/> <wire from="(330,270)" to="(330,330)"/> <wire from="(330,270)" to="(760,270)"/> <wire from="(330,330)" to="(360,330)"/> <wire from="(330,400)" to="(330,450)"/> <wire from="(330,400)" to="(360,400)"/> <wire from="(330,450)" to="(410,450)"/> <wire from="(360,640)" to="(420,640)"/> <wire from="(380,490)" to="(380,510)"/> <wire from="(380,490)" to="(410,490)"/> <wire from="(380,510)" to="(720,510)"/> <wire from="(400,310)" to="(440,310)"/> <wire from="(400,330)" to="(430,330)"/> <wire from="(400,380)" to="(440,380)"/> <wire from="(420,600)" to="(420,640)"/> <wire from="(420,600)" to="(480,600)"/> <wire from="(420,640)" to="(420,660)"/> <wire from="(420,660)" to="(420,680)"/> <wire from="(420,660)" to="(450,660)"/> <wire from="(420,680)" to="(720,680)"/> <wire from="(430,330)" to="(430,400)"/> <wire from="(430,400)" to="(510,400)"/> <wire from="(440,310)" to="(440,320)"/> <wire from="(440,320)" to="(510,320)"/> <wire from="(440,330)" to="(440,380)"/> <wire from="(440,330)" to="(510,330)"/> <wire from="(460,540)" to="(460,580)"/> <wire from="(460,580)" to="(460,640)"/> <wire from="(460,580)" to="(480,580)"/> <wire from="(460,640)" to="(480,640)"/> <wire from="(470,240)" to="(470,310)"/> <wire from="(470,240)" to="(560,240)"/> <wire from="(470,310)" to="(470,380)"/> <wire from="(470,310)" to="(510,310)"/> <wire from="(470,380)" to="(510,380)"/> <wire from="(470,470)" to="(960,470)"/> <wire from="(470,660)" to="(480,660)"/> <wire from="(510,110)" to="(560,110)"/> <wire from="(510,130)" to="(540,130)"/> <wire from="(520,590)" to="(960,590)"/> <wire from="(520,650)" to="(960,650)"/> <wire from="(540,50)" to="(540,130)"/> <wire from="(540,50)" to="(960,50)"/> <wire from="(550,320)" to="(960,320)"/> <wire from="(550,390)" to="(850,390)"/> <wire from="(560,110)" to="(560,140)"/> <wire from="(560,140)" to="(600,140)"/> <wire from="(560,150)" to="(560,240)"/> <wire from="(560,150)" to="(600,150)"/> <wire from="(580,130)" to="(600,130)"/> <wire from="(580,80)" to="(580,130)"/> <wire from="(580,80)" to="(860,80)"/> <wire from="(640,140)" to="(650,140)"/> <wire from="(650,120)" to="(650,140)"/> <wire from="(650,120)" to="(680,120)"/> <wire from="(660,140)" to="(660,170)"/> <wire from="(660,140)" to="(680,140)"/> <wire from="(660,170)" to="(740,170)"/> <wire from="(670,160)" to="(670,190)"/> <wire from="(670,160)" to="(740,160)"/> <wire from="(670,190)" to="(680,190)"/> <wire from="(720,130)" to="(740,130)"/> <wire from="(720,200)" to="(740,200)"/> <wire from="(720,510)" to="(720,680)"/> <wire from="(740,130)" to="(740,160)"/> <wire from="(740,130)" to="(760,130)"/> <wire from="(740,170)" to="(740,200)"/> <wire from="(740,200)" to="(790,200)"/> <wire from="(760,130)" to="(760,270)"/> <wire from="(780,180)" to="(790,180)"/> <wire from="(780,30)" to="(780,180)"/> <wire from="(830,180)" to="(860,180)"/> <wire from="(850,260)" to="(850,390)"/> <wire from="(850,260)" to="(960,260)"/> <wire from="(860,80)" to="(860,180)"/> </circuit> <circuit name="TRIANGLE_Output"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TRIANGLE_Output"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W401A"/> </comp> <comp lib="0" loc="(150,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TTSTEP"/> </comp> <comp lib="0" loc="(150,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(150,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,430)" name="Splitter"> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="5"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(240,180)" name="Constant"/> <comp lib="0" loc="(520,720)" name="NoConnect"/> <comp lib="0" loc="(600,440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(650,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(790,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRIA_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(780,420)" name="NOT Gate"> <a name="width" val="4"/> </comp> <comp lib="2" loc="(730,420)" name="Multiplexer"> <a name="width" val="4"/> </comp> <comp lib="8" loc="(550,750)" name="Text"> <a name="text" val="T4"/> </comp> <comp lib="8" loc="(660,325)" name="Text"> <a name="text" val="q"/> </comp> <comp lib="8" loc="(660,445)" name="Text"> <a name="text" val="nq"/> </comp> <comp loc="(520,240)" name="CounterBit"/> <comp loc="(520,400)" name="CounterBit"/> <comp loc="(520,560)" name="CounterBit"/> <comp loc="(520,720)" name="CounterBit"/> <comp loc="(520,80)" name="CounterBit"/> <wire from="(150,210)" to="(190,210)"/> <wire from="(150,260)" to="(170,260)"/> <wire from="(150,40)" to="(290,40)"/> <wire from="(150,60)" to="(280,60)"/> <wire from="(170,160)" to="(170,260)"/> <wire from="(170,160)" to="(260,160)"/> <wire from="(170,330)" to="(170,430)"/> <wire from="(170,430)" to="(180,430)"/> <wire from="(190,80)" to="(190,210)"/> <wire from="(190,80)" to="(270,80)"/> <wire from="(200,120)" to="(200,380)"/> <wire from="(200,120)" to="(300,120)"/> <wire from="(200,390)" to="(210,390)"/> <wire from="(200,400)" to="(220,400)"/> <wire from="(200,410)" to="(210,410)"/> <wire from="(200,420)" to="(200,760)"/> <wire from="(200,760)" to="(300,760)"/> <wire from="(210,280)" to="(210,390)"/> <wire from="(210,280)" to="(300,280)"/> <wire from="(210,410)" to="(210,600)"/> <wire from="(210,600)" to="(300,600)"/> <wire from="(220,400)" to="(220,440)"/> <wire from="(220,440)" to="(300,440)"/> <wire from="(240,180)" to="(300,180)"/> <wire from="(250,220)" to="(250,340)"/> <wire from="(250,220)" to="(530,220)"/> <wire from="(250,340)" to="(300,340)"/> <wire from="(250,380)" to="(250,500)"/> <wire from="(250,380)" to="(530,380)"/> <wire from="(250,500)" to="(300,500)"/> <wire from="(250,540)" to="(250,660)"/> <wire from="(250,540)" to="(530,540)"/> <wire from="(250,660)" to="(300,660)"/> <wire from="(250,700)" to="(250,820)"/> <wire from="(250,700)" to="(530,700)"/> <wire from="(250,820)" to="(300,820)"/> <wire from="(260,160)" to="(260,320)"/> <wire from="(260,160)" to="(300,160)"/> <wire from="(260,320)" to="(260,480)"/> <wire from="(260,320)" to="(300,320)"/> <wire from="(260,480)" to="(260,640)"/> <wire from="(260,480)" to="(300,480)"/> <wire from="(260,640)" to="(260,800)"/> <wire from="(260,640)" to="(300,640)"/> <wire from="(260,800)" to="(300,800)"/> <wire from="(270,100)" to="(270,260)"/> <wire from="(270,100)" to="(300,100)"/> <wire from="(270,260)" to="(270,420)"/> <wire from="(270,260)" to="(300,260)"/> <wire from="(270,420)" to="(270,580)"/> <wire from="(270,420)" to="(300,420)"/> <wire from="(270,580)" to="(270,740)"/> <wire from="(270,580)" to="(300,580)"/> <wire from="(270,740)" to="(300,740)"/> <wire from="(270,80)" to="(270,100)"/> <wire from="(280,140)" to="(280,300)"/> <wire from="(280,140)" to="(300,140)"/> <wire from="(280,300)" to="(280,460)"/> <wire from="(280,300)" to="(300,300)"/> <wire from="(280,460)" to="(280,620)"/> <wire from="(280,460)" to="(300,460)"/> <wire from="(280,60)" to="(280,140)"/> <wire from="(280,620)" to="(280,780)"/> <wire from="(280,620)" to="(300,620)"/> <wire from="(280,780)" to="(300,780)"/> <wire from="(290,240)" to="(290,400)"/> <wire from="(290,240)" to="(300,240)"/> <wire from="(290,40)" to="(290,80)"/> <wire from="(290,400)" to="(290,560)"/> <wire from="(290,400)" to="(300,400)"/> <wire from="(290,560)" to="(290,720)"/> <wire from="(290,560)" to="(300,560)"/> <wire from="(290,720)" to="(300,720)"/> <wire from="(290,80)" to="(290,240)"/> <wire from="(290,80)" to="(300,80)"/> <wire from="(520,100)" to="(580,100)"/> <wire from="(520,120)" to="(630,120)"/> <wire from="(520,240)" to="(530,240)"/> <wire from="(520,260)" to="(570,260)"/> <wire from="(520,280)" to="(620,280)"/> <wire from="(520,400)" to="(530,400)"/> <wire from="(520,420)" to="(560,420)"/> <wire from="(520,440)" to="(540,440)"/> <wire from="(520,560)" to="(530,560)"/> <wire from="(520,580)" to="(580,580)"/> <wire from="(520,600)" to="(630,600)"/> <wire from="(520,760)" to="(710,760)"/> <wire from="(520,80)" to="(530,80)"/> <wire from="(530,240)" to="(530,380)"/> <wire from="(530,400)" to="(530,540)"/> <wire from="(530,560)" to="(530,700)"/> <wire from="(530,80)" to="(530,220)"/> <wire from="(540,440)" to="(540,490)"/> <wire from="(540,490)" to="(620,490)"/> <wire from="(560,420)" to="(560,470)"/> <wire from="(560,470)" to="(580,470)"/> <wire from="(570,260)" to="(570,460)"/> <wire from="(570,460)" to="(580,460)"/> <wire from="(580,100)" to="(580,450)"/> <wire from="(580,480)" to="(580,580)"/> <wire from="(600,430)" to="(600,440)"/> <wire from="(600,430)" to="(700,430)"/> <wire from="(620,280)" to="(620,360)"/> <wire from="(620,360)" to="(630,360)"/> <wire from="(620,370)" to="(620,490)"/> <wire from="(620,370)" to="(630,370)"/> <wire from="(630,120)" to="(630,350)"/> <wire from="(630,380)" to="(630,600)"/> <wire from="(650,340)" to="(670,340)"/> <wire from="(670,340)" to="(670,410)"/> <wire from="(670,410)" to="(700,410)"/> <wire from="(710,440)" to="(710,760)"/> <wire from="(730,420)" to="(750,420)"/> <wire from="(780,420)" to="(790,420)"/> </circuit> <circuit name="NOISE_FreqReg"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_FreqReg"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(170,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,300)" name="Splitter"> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="4"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(610,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NFx"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp loc="(540,200)" name="RegisterBitRes"/> <comp loc="(540,320)" name="RegisterBitRes"/> <comp loc="(540,440)" name="RegisterBitRes"/> <comp loc="(540,80)" name="RegisterBitRes"/> <wire from="(140,110)" to="(290,110)"/> <wire from="(140,150)" to="(260,150)"/> <wire from="(140,80)" to="(280,80)"/> <wire from="(170,300)" to="(190,300)"/> <wire from="(210,140)" to="(210,260)"/> <wire from="(210,140)" to="(320,140)"/> <wire from="(210,270)" to="(220,270)"/> <wire from="(210,280)" to="(220,280)"/> <wire from="(210,290)" to="(210,500)"/> <wire from="(210,500)" to="(320,500)"/> <wire from="(220,260)" to="(220,270)"/> <wire from="(220,260)" to="(320,260)"/> <wire from="(220,280)" to="(220,380)"/> <wire from="(220,380)" to="(320,380)"/> <wire from="(260,120)" to="(260,150)"/> <wire from="(260,120)" to="(320,120)"/> <wire from="(260,150)" to="(260,240)"/> <wire from="(260,240)" to="(260,360)"/> <wire from="(260,240)" to="(320,240)"/> <wire from="(260,360)" to="(260,480)"/> <wire from="(260,360)" to="(320,360)"/> <wire from="(260,480)" to="(320,480)"/> <wire from="(280,100)" to="(280,220)"/> <wire from="(280,100)" to="(320,100)"/> <wire from="(280,220)" to="(280,340)"/> <wire from="(280,220)" to="(320,220)"/> <wire from="(280,340)" to="(280,460)"/> <wire from="(280,340)" to="(320,340)"/> <wire from="(280,460)" to="(320,460)"/> <wire from="(280,80)" to="(280,100)"/> <wire from="(290,110)" to="(290,200)"/> <wire from="(290,200)" to="(290,320)"/> <wire from="(290,200)" to="(320,200)"/> <wire from="(290,320)" to="(290,440)"/> <wire from="(290,320)" to="(320,320)"/> <wire from="(290,440)" to="(320,440)"/> <wire from="(290,80)" to="(290,110)"/> <wire from="(290,80)" to="(320,80)"/> <wire from="(540,200)" to="(570,200)"/> <wire from="(540,320)" to="(560,320)"/> <wire from="(540,440)" to="(580,440)"/> <wire from="(540,80)" to="(580,80)"/> <wire from="(560,320)" to="(560,330)"/> <wire from="(560,330)" to="(580,330)"/> <wire from="(570,200)" to="(570,320)"/> <wire from="(570,320)" to="(580,320)"/> <wire from="(580,340)" to="(580,440)"/> <wire from="(580,80)" to="(580,310)"/> <wire from="(600,300)" to="(610,300)"/> </circuit> <circuit name="NOISE_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NFx"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(690,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NNFx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp loc="(410,90)" name="NOISE_Decoder1"/> <comp loc="(660,90)" name="NOISE_Decoder2"/> <wire from="(150,90)" to="(190,90)"/> <wire from="(410,90)" to="(440,90)"/> <wire from="(660,90)" to="(690,90)"/> </circuit> <circuit name="NOISE_Decoder1"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_Decoder1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Dec1_in"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(170,120)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(200,170)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(480,370)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(850,370)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(890,640)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(910,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dec1_out"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(190,170)" name="NOT Gate"> <a name="width" val="4"/> </comp> <comp lib="1" loc="(420,240)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,290)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,340)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,390)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,440)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,490)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(420,590)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,240)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,290)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,340)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,390)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,440)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,490)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(780,590)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <wire from="(140,120)" to="(150,120)"/> <wire from="(150,120)" to="(150,170)"/> <wire from="(150,120)" to="(170,120)"/> <wire from="(150,170)" to="(160,170)"/> <wire from="(190,100)" to="(310,100)"/> <wire from="(190,110)" to="(290,110)"/> <wire from="(190,170)" to="(200,170)"/> <wire from="(190,80)" to="(350,80)"/> <wire from="(190,90)" to="(330,90)"/> <wire from="(220,130)" to="(340,130)"/> <wire from="(220,140)" to="(320,140)"/> <wire from="(220,150)" to="(300,150)"/> <wire from="(220,160)" to="(650,160)"/> <wire from="(290,110)" to="(290,260)"/> <wire from="(290,110)" to="(880,110)"/> <wire from="(290,260)" to="(290,310)"/> <wire from="(290,260)" to="(360,260)"/> <wire from="(290,310)" to="(290,360)"/> <wire from="(290,310)" to="(360,310)"/> <wire from="(290,360)" to="(290,410)"/> <wire from="(290,360)" to="(360,360)"/> <wire from="(290,410)" to="(290,460)"/> <wire from="(290,410)" to="(360,410)"/> <wire from="(290,460)" to="(290,510)"/> <wire from="(290,460)" to="(360,460)"/> <wire from="(290,510)" to="(290,560)"/> <wire from="(290,510)" to="(360,510)"/> <wire from="(290,560)" to="(290,610)"/> <wire from="(290,560)" to="(360,560)"/> <wire from="(290,610)" to="(360,610)"/> <wire from="(300,150)" to="(300,450)"/> <wire from="(300,150)" to="(660,150)"/> <wire from="(300,450)" to="(300,500)"/> <wire from="(300,450)" to="(360,450)"/> <wire from="(300,500)" to="(300,550)"/> <wire from="(300,500)" to="(360,500)"/> <wire from="(300,550)" to="(300,600)"/> <wire from="(300,550)" to="(360,550)"/> <wire from="(300,600)" to="(360,600)"/> <wire from="(310,100)" to="(310,250)"/> <wire from="(310,100)" to="(670,100)"/> <wire from="(310,250)" to="(310,300)"/> <wire from="(310,250)" to="(360,250)"/> <wire from="(310,300)" to="(310,350)"/> <wire from="(310,300)" to="(360,300)"/> <wire from="(310,350)" to="(310,400)"/> <wire from="(310,350)" to="(360,350)"/> <wire from="(310,400)" to="(360,400)"/> <wire from="(320,140)" to="(320,330)"/> <wire from="(320,140)" to="(680,140)"/> <wire from="(320,330)" to="(320,380)"/> <wire from="(320,330)" to="(360,330)"/> <wire from="(320,380)" to="(320,530)"/> <wire from="(320,380)" to="(360,380)"/> <wire from="(320,530)" to="(320,580)"/> <wire from="(320,530)" to="(360,530)"/> <wire from="(320,580)" to="(360,580)"/> <wire from="(330,230)" to="(330,280)"/> <wire from="(330,230)" to="(360,230)"/> <wire from="(330,280)" to="(330,430)"/> <wire from="(330,280)" to="(360,280)"/> <wire from="(330,430)" to="(330,480)"/> <wire from="(330,430)" to="(360,430)"/> <wire from="(330,480)" to="(360,480)"/> <wire from="(330,90)" to="(330,230)"/> <wire from="(330,90)" to="(690,90)"/> <wire from="(340,130)" to="(340,270)"/> <wire from="(340,130)" to="(700,130)"/> <wire from="(340,270)" to="(340,370)"/> <wire from="(340,270)" to="(360,270)"/> <wire from="(340,370)" to="(340,470)"/> <wire from="(340,370)" to="(360,370)"/> <wire from="(340,470)" to="(340,570)"/> <wire from="(340,470)" to="(360,470)"/> <wire from="(340,570)" to="(360,570)"/> <wire from="(350,220)" to="(350,320)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,320)" to="(350,420)"/> <wire from="(350,320)" to="(360,320)"/> <wire from="(350,420)" to="(350,520)"/> <wire from="(350,420)" to="(360,420)"/> <wire from="(350,520)" to="(360,520)"/> <wire from="(350,80)" to="(350,220)"/> <wire from="(350,80)" to="(710,80)"/> <wire from="(420,240)" to="(460,240)"/> <wire from="(420,290)" to="(450,290)"/> <wire from="(420,340)" to="(440,340)"/> <wire from="(420,390)" to="(430,390)"/> <wire from="(420,440)" to="(430,440)"/> <wire from="(420,490)" to="(440,490)"/> <wire from="(420,540)" to="(450,540)"/> <wire from="(420,590)" to="(460,590)"/> <wire from="(430,390)" to="(430,410)"/> <wire from="(430,410)" to="(460,410)"/> <wire from="(430,420)" to="(430,440)"/> <wire from="(430,420)" to="(460,420)"/> <wire from="(440,340)" to="(440,400)"/> <wire from="(440,400)" to="(460,400)"/> <wire from="(440,430)" to="(440,490)"/> <wire from="(440,430)" to="(460,430)"/> <wire from="(450,290)" to="(450,390)"/> <wire from="(450,390)" to="(460,390)"/> <wire from="(450,440)" to="(450,540)"/> <wire from="(450,440)" to="(460,440)"/> <wire from="(460,240)" to="(460,380)"/> <wire from="(460,450)" to="(460,590)"/> <wire from="(480,370)" to="(480,650)"/> <wire from="(480,650)" to="(870,650)"/> <wire from="(650,160)" to="(650,260)"/> <wire from="(650,160)" to="(880,160)"/> <wire from="(650,260)" to="(650,310)"/> <wire from="(650,260)" to="(720,260)"/> <wire from="(650,310)" to="(650,360)"/> <wire from="(650,310)" to="(720,310)"/> <wire from="(650,360)" to="(650,410)"/> <wire from="(650,360)" to="(720,360)"/> <wire from="(650,410)" to="(650,460)"/> <wire from="(650,410)" to="(720,410)"/> <wire from="(650,460)" to="(650,510)"/> <wire from="(650,460)" to="(720,460)"/> <wire from="(650,510)" to="(650,560)"/> <wire from="(650,510)" to="(720,510)"/> <wire from="(650,560)" to="(650,610)"/> <wire from="(650,560)" to="(720,560)"/> <wire from="(650,610)" to="(720,610)"/> <wire from="(660,150)" to="(660,450)"/> <wire from="(660,150)" to="(880,150)"/> <wire from="(660,450)" to="(660,500)"/> <wire from="(660,450)" to="(720,450)"/> <wire from="(660,500)" to="(660,550)"/> <wire from="(660,500)" to="(720,500)"/> <wire from="(660,550)" to="(660,600)"/> <wire from="(660,550)" to="(720,550)"/> <wire from="(660,600)" to="(720,600)"/> <wire from="(670,100)" to="(670,250)"/> <wire from="(670,100)" to="(880,100)"/> <wire from="(670,250)" to="(670,300)"/> <wire from="(670,250)" to="(720,250)"/> <wire from="(670,300)" to="(670,350)"/> <wire from="(670,300)" to="(720,300)"/> <wire from="(670,350)" to="(670,400)"/> <wire from="(670,350)" to="(720,350)"/> <wire from="(670,400)" to="(720,400)"/> <wire from="(680,140)" to="(680,330)"/> <wire from="(680,140)" to="(880,140)"/> <wire from="(680,330)" to="(680,380)"/> <wire from="(680,330)" to="(720,330)"/> <wire from="(680,380)" to="(680,530)"/> <wire from="(680,380)" to="(720,380)"/> <wire from="(680,530)" to="(680,580)"/> <wire from="(680,530)" to="(720,530)"/> <wire from="(680,580)" to="(720,580)"/> <wire from="(690,230)" to="(690,280)"/> <wire from="(690,230)" to="(720,230)"/> <wire from="(690,280)" to="(690,430)"/> <wire from="(690,280)" to="(720,280)"/> <wire from="(690,430)" to="(690,480)"/> <wire from="(690,430)" to="(720,430)"/> <wire from="(690,480)" to="(720,480)"/> <wire from="(690,90)" to="(690,230)"/> <wire from="(690,90)" to="(880,90)"/> <wire from="(700,130)" to="(700,270)"/> <wire from="(700,130)" to="(880,130)"/> <wire from="(700,270)" to="(700,370)"/> <wire from="(700,270)" to="(720,270)"/> <wire from="(700,370)" to="(700,470)"/> <wire from="(700,370)" to="(720,370)"/> <wire from="(700,470)" to="(700,570)"/> <wire from="(700,470)" to="(720,470)"/> <wire from="(700,570)" to="(720,570)"/> <wire from="(710,220)" to="(710,320)"/> <wire from="(710,220)" to="(720,220)"/> <wire from="(710,320)" to="(710,420)"/> <wire from="(710,320)" to="(720,320)"/> <wire from="(710,420)" to="(710,520)"/> <wire from="(710,420)" to="(720,420)"/> <wire from="(710,520)" to="(720,520)"/> <wire from="(710,80)" to="(710,220)"/> <wire from="(710,80)" to="(880,80)"/> <wire from="(780,240)" to="(830,240)"/> <wire from="(780,290)" to="(820,290)"/> <wire from="(780,340)" to="(810,340)"/> <wire from="(780,390)" to="(800,390)"/> <wire from="(780,440)" to="(800,440)"/> <wire from="(780,490)" to="(810,490)"/> <wire from="(780,540)" to="(820,540)"/> <wire from="(780,590)" to="(830,590)"/> <wire from="(800,390)" to="(800,410)"/> <wire from="(800,410)" to="(830,410)"/> <wire from="(800,420)" to="(800,440)"/> <wire from="(800,420)" to="(830,420)"/> <wire from="(810,340)" to="(810,400)"/> <wire from="(810,400)" to="(830,400)"/> <wire from="(810,430)" to="(810,490)"/> <wire from="(810,430)" to="(830,430)"/> <wire from="(820,290)" to="(820,390)"/> <wire from="(820,390)" to="(830,390)"/> <wire from="(820,440)" to="(820,540)"/> <wire from="(820,440)" to="(830,440)"/> <wire from="(830,240)" to="(830,380)"/> <wire from="(830,450)" to="(830,590)"/> <wire from="(850,370)" to="(850,660)"/> <wire from="(850,660)" to="(870,660)"/> <wire from="(890,640)" to="(910,640)"/> </circuit> <circuit name="NOISE_Decoder2"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_Decoder2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Dec2_in"/> <a name="radix" val="16"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(160,180)" name="Splitter"> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(680,800)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(700,800)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Dec2_out"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="1" loc="(560,1040)" name="NOR Gate"> <a name="inputs" val="13"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,1170)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,1290)" name="NOR Gate"> <a name="inputs" val="11"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,1430)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,260)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,340)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(560,440)" name="NOR Gate"> <a name="inputs" val="12"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,570)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,700)" name="NOR Gate"> <a name="inputs" val="13"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,810)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,910)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <wire from="(140,180)" to="(160,180)"/> <wire from="(180,100)" to="(370,100)"/> <wire from="(180,110)" to="(360,110)"/> <wire from="(180,120)" to="(350,120)"/> <wire from="(180,130)" to="(340,130)"/> <wire from="(180,140)" to="(320,140)"/> <wire from="(180,150)" to="(310,150)"/> <wire from="(180,160)" to="(300,160)"/> <wire from="(180,170)" to="(290,170)"/> <wire from="(180,20)" to="(470,20)"/> <wire from="(180,30)" to="(460,30)"/> <wire from="(180,40)" to="(450,40)"/> <wire from="(180,50)" to="(440,50)"/> <wire from="(180,60)" to="(420,60)"/> <wire from="(180,70)" to="(410,70)"/> <wire from="(180,80)" to="(400,80)"/> <wire from="(180,90)" to="(390,90)"/> <wire from="(290,1100)" to="(290,1340)"/> <wire from="(290,1100)" to="(480,1100)"/> <wire from="(290,1340)" to="(290,1500)"/> <wire from="(290,1340)" to="(480,1340)"/> <wire from="(290,1500)" to="(480,1500)"/> <wire from="(290,170)" to="(290,300)"/> <wire from="(290,170)" to="(570,170)"/> <wire from="(290,300)" to="(290,360)"/> <wire from="(290,300)" to="(480,300)"/> <wire from="(290,360)" to="(290,500)"/> <wire from="(290,360)" to="(500,360)"/> <wire from="(290,500)" to="(290,620)"/> <wire from="(290,500)" to="(480,500)"/> <wire from="(290,620)" to="(290,760)"/> <wire from="(290,620)" to="(480,620)"/> <wire from="(290,760)" to="(290,840)"/> <wire from="(290,760)" to="(480,760)"/> <wire from="(290,840)" to="(290,1100)"/> <wire from="(290,840)" to="(480,840)"/> <wire from="(300,1090)" to="(300,1490)"/> <wire from="(300,1090)" to="(480,1090)"/> <wire from="(300,1490)" to="(480,1490)"/> <wire from="(300,160)" to="(300,290)"/> <wire from="(300,160)" to="(570,160)"/> <wire from="(300,290)" to="(300,350)"/> <wire from="(300,290)" to="(480,290)"/> <wire from="(300,350)" to="(300,490)"/> <wire from="(300,350)" to="(500,350)"/> <wire from="(300,490)" to="(300,610)"/> <wire from="(300,490)" to="(480,490)"/> <wire from="(300,610)" to="(300,750)"/> <wire from="(300,610)" to="(480,610)"/> <wire from="(300,750)" to="(300,830)"/> <wire from="(300,750)" to="(480,750)"/> <wire from="(300,830)" to="(300,960)"/> <wire from="(300,830)" to="(480,830)"/> <wire from="(300,960)" to="(300,1090)"/> <wire from="(300,960)" to="(480,960)"/> <wire from="(310,1080)" to="(310,1220)"/> <wire from="(310,1080)" to="(480,1080)"/> <wire from="(310,1220)" to="(310,1480)"/> <wire from="(310,1220)" to="(480,1220)"/> <wire from="(310,1480)" to="(480,1480)"/> <wire from="(310,150)" to="(310,740)"/> <wire from="(310,150)" to="(570,150)"/> <wire from="(310,740)" to="(310,820)"/> <wire from="(310,740)" to="(480,740)"/> <wire from="(310,820)" to="(310,950)"/> <wire from="(310,820)" to="(480,820)"/> <wire from="(310,950)" to="(310,1080)"/> <wire from="(310,950)" to="(480,950)"/> <wire from="(320,1070)" to="(320,1210)"/> <wire from="(320,1070)" to="(480,1070)"/> <wire from="(320,1210)" to="(480,1210)"/> <wire from="(320,140)" to="(320,280)"/> <wire from="(320,140)" to="(570,140)"/> <wire from="(320,280)" to="(320,480)"/> <wire from="(320,280)" to="(480,280)"/> <wire from="(320,480)" to="(320,600)"/> <wire from="(320,480)" to="(480,480)"/> <wire from="(320,600)" to="(320,730)"/> <wire from="(320,600)" to="(480,600)"/> <wire from="(320,730)" to="(320,810)"/> <wire from="(320,730)" to="(480,730)"/> <wire from="(320,810)" to="(320,1070)"/> <wire from="(320,810)" to="(480,810)"/> <wire from="(340,1060)" to="(340,1200)"/> <wire from="(340,1060)" to="(480,1060)"/> <wire from="(340,1200)" to="(340,1330)"/> <wire from="(340,1200)" to="(480,1200)"/> <wire from="(340,130)" to="(340,270)"/> <wire from="(340,130)" to="(570,130)"/> <wire from="(340,1330)" to="(340,1470)"/> <wire from="(340,1330)" to="(480,1330)"/> <wire from="(340,1470)" to="(480,1470)"/> <wire from="(340,270)" to="(340,470)"/> <wire from="(340,270)" to="(480,270)"/> <wire from="(340,470)" to="(340,590)"/> <wire from="(340,470)" to="(480,470)"/> <wire from="(340,590)" to="(340,720)"/> <wire from="(340,590)" to="(480,590)"/> <wire from="(340,720)" to="(340,1060)"/> <wire from="(340,720)" to="(480,720)"/> <wire from="(350,1050)" to="(350,1190)"/> <wire from="(350,1050)" to="(480,1050)"/> <wire from="(350,1190)" to="(350,1460)"/> <wire from="(350,1190)" to="(480,1190)"/> <wire from="(350,120)" to="(350,580)"/> <wire from="(350,120)" to="(570,120)"/> <wire from="(350,1460)" to="(480,1460)"/> <wire from="(350,580)" to="(350,710)"/> <wire from="(350,580)" to="(480,580)"/> <wire from="(350,710)" to="(350,940)"/> <wire from="(350,710)" to="(480,710)"/> <wire from="(350,940)" to="(350,1050)"/> <wire from="(350,940)" to="(480,940)"/> <wire from="(360,1040)" to="(360,1320)"/> <wire from="(360,1040)" to="(480,1040)"/> <wire from="(360,110)" to="(360,250)"/> <wire from="(360,110)" to="(570,110)"/> <wire from="(360,1320)" to="(360,1450)"/> <wire from="(360,1320)" to="(480,1320)"/> <wire from="(360,1450)" to="(480,1450)"/> <wire from="(360,250)" to="(360,560)"/> <wire from="(360,250)" to="(480,250)"/> <wire from="(360,560)" to="(360,700)"/> <wire from="(360,560)" to="(480,560)"/> <wire from="(360,700)" to="(360,800)"/> <wire from="(360,700)" to="(480,700)"/> <wire from="(360,800)" to="(360,930)"/> <wire from="(360,800)" to="(480,800)"/> <wire from="(360,930)" to="(360,1040)"/> <wire from="(360,930)" to="(480,930)"/> <wire from="(370,100)" to="(370,330)"/> <wire from="(370,100)" to="(570,100)"/> <wire from="(370,1310)" to="(370,1440)"/> <wire from="(370,1310)" to="(480,1310)"/> <wire from="(370,1440)" to="(480,1440)"/> <wire from="(370,330)" to="(370,460)"/> <wire from="(370,330)" to="(500,330)"/> <wire from="(370,460)" to="(370,690)"/> <wire from="(370,460)" to="(480,460)"/> <wire from="(370,690)" to="(370,920)"/> <wire from="(370,690)" to="(480,690)"/> <wire from="(370,920)" to="(370,1310)"/> <wire from="(370,920)" to="(480,920)"/> <wire from="(390,1030)" to="(390,1180)"/> <wire from="(390,1030)" to="(480,1030)"/> <wire from="(390,1180)" to="(390,1300)"/> <wire from="(390,1180)" to="(480,1180)"/> <wire from="(390,1300)" to="(390,1430)"/> <wire from="(390,1300)" to="(480,1300)"/> <wire from="(390,1430)" to="(480,1430)"/> <wire from="(390,550)" to="(390,680)"/> <wire from="(390,550)" to="(480,550)"/> <wire from="(390,680)" to="(390,1030)"/> <wire from="(390,680)" to="(480,680)"/> <wire from="(390,90)" to="(390,550)"/> <wire from="(390,90)" to="(570,90)"/> <wire from="(400,1020)" to="(400,1160)"/> <wire from="(400,1020)" to="(480,1020)"/> <wire from="(400,1160)" to="(400,1290)"/> <wire from="(400,1160)" to="(480,1160)"/> <wire from="(400,1290)" to="(400,1420)"/> <wire from="(400,1290)" to="(480,1290)"/> <wire from="(400,1420)" to="(480,1420)"/> <wire from="(400,450)" to="(400,540)"/> <wire from="(400,450)" to="(480,450)"/> <wire from="(400,540)" to="(400,670)"/> <wire from="(400,540)" to="(480,540)"/> <wire from="(400,670)" to="(400,1020)"/> <wire from="(400,670)" to="(480,670)"/> <wire from="(400,80)" to="(400,450)"/> <wire from="(400,80)" to="(570,80)"/> <wire from="(410,1010)" to="(410,1280)"/> <wire from="(410,1010)" to="(480,1010)"/> <wire from="(410,1280)" to="(410,1410)"/> <wire from="(410,1280)" to="(480,1280)"/> <wire from="(410,1410)" to="(480,1410)"/> <wire from="(410,430)" to="(410,530)"/> <wire from="(410,430)" to="(480,430)"/> <wire from="(410,530)" to="(410,1010)"/> <wire from="(410,530)" to="(480,530)"/> <wire from="(410,70)" to="(410,430)"/> <wire from="(410,70)" to="(570,70)"/> <wire from="(420,1000)" to="(420,1270)"/> <wire from="(420,1000)" to="(480,1000)"/> <wire from="(420,1270)" to="(420,1400)"/> <wire from="(420,1270)" to="(480,1270)"/> <wire from="(420,1400)" to="(480,1400)"/> <wire from="(420,320)" to="(420,420)"/> <wire from="(420,320)" to="(500,320)"/> <wire from="(420,420)" to="(420,900)"/> <wire from="(420,420)" to="(480,420)"/> <wire from="(420,60)" to="(420,320)"/> <wire from="(420,60)" to="(570,60)"/> <wire from="(420,900)" to="(420,1000)"/> <wire from="(420,900)" to="(480,900)"/> <wire from="(440,1150)" to="(440,1390)"/> <wire from="(440,1150)" to="(480,1150)"/> <wire from="(440,1390)" to="(480,1390)"/> <wire from="(440,410)" to="(440,890)"/> <wire from="(440,410)" to="(480,410)"/> <wire from="(440,50)" to="(440,410)"/> <wire from="(440,50)" to="(570,50)"/> <wire from="(440,890)" to="(440,1150)"/> <wire from="(440,890)" to="(480,890)"/> <wire from="(450,1140)" to="(450,1260)"/> <wire from="(450,1140)" to="(480,1140)"/> <wire from="(450,1260)" to="(450,1380)"/> <wire from="(450,1260)" to="(480,1260)"/> <wire from="(450,1380)" to="(480,1380)"/> <wire from="(450,240)" to="(450,400)"/> <wire from="(450,240)" to="(480,240)"/> <wire from="(450,40)" to="(450,240)"/> <wire from="(450,40)" to="(570,40)"/> <wire from="(450,400)" to="(450,660)"/> <wire from="(450,400)" to="(480,400)"/> <wire from="(450,660)" to="(450,880)"/> <wire from="(450,660)" to="(480,660)"/> <wire from="(450,880)" to="(450,1140)"/> <wire from="(450,880)" to="(480,880)"/> <wire from="(460,1130)" to="(460,1250)"/> <wire from="(460,1130)" to="(480,1130)"/> <wire from="(460,1250)" to="(460,1370)"/> <wire from="(460,1250)" to="(480,1250)"/> <wire from="(460,1370)" to="(480,1370)"/> <wire from="(460,230)" to="(460,390)"/> <wire from="(460,230)" to="(480,230)"/> <wire from="(460,30)" to="(460,230)"/> <wire from="(460,30)" to="(570,30)"/> <wire from="(460,390)" to="(460,650)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(460,650)" to="(460,790)"/> <wire from="(460,650)" to="(480,650)"/> <wire from="(460,790)" to="(460,870)"/> <wire from="(460,790)" to="(480,790)"/> <wire from="(460,870)" to="(460,990)"/> <wire from="(460,870)" to="(480,870)"/> <wire from="(460,990)" to="(460,1130)"/> <wire from="(460,990)" to="(480,990)"/> <wire from="(470,1120)" to="(470,1240)"/> <wire from="(470,1120)" to="(480,1120)"/> <wire from="(470,1240)" to="(470,1360)"/> <wire from="(470,1240)" to="(480,1240)"/> <wire from="(470,1360)" to="(480,1360)"/> <wire from="(470,20)" to="(470,220)"/> <wire from="(470,20)" to="(570,20)"/> <wire from="(470,220)" to="(470,380)"/> <wire from="(470,220)" to="(480,220)"/> <wire from="(470,380)" to="(470,520)"/> <wire from="(470,380)" to="(480,380)"/> <wire from="(470,520)" to="(470,640)"/> <wire from="(470,520)" to="(480,520)"/> <wire from="(470,640)" to="(470,780)"/> <wire from="(470,640)" to="(480,640)"/> <wire from="(470,780)" to="(470,860)"/> <wire from="(470,780)" to="(480,780)"/> <wire from="(470,860)" to="(470,980)"/> <wire from="(470,860)" to="(480,860)"/> <wire from="(470,980)" to="(470,1120)"/> <wire from="(470,980)" to="(480,980)"/> <wire from="(560,1040)" to="(630,1040)"/> <wire from="(560,1170)" to="(640,1170)"/> <wire from="(560,1290)" to="(650,1290)"/> <wire from="(560,1430)" to="(660,1430)"/> <wire from="(560,260)" to="(660,260)"/> <wire from="(560,340)" to="(650,340)"/> <wire from="(560,440)" to="(640,440)"/> <wire from="(560,570)" to="(630,570)"/> <wire from="(560,700)" to="(620,700)"/> <wire from="(560,810)" to="(610,810)"/> <wire from="(560,910)" to="(620,910)"/> <wire from="(610,810)" to="(610,860)"/> <wire from="(610,860)" to="(660,860)"/> <wire from="(620,700)" to="(620,850)"/> <wire from="(620,850)" to="(660,850)"/> <wire from="(620,870)" to="(620,910)"/> <wire from="(620,870)" to="(660,870)"/> <wire from="(630,570)" to="(630,840)"/> <wire from="(630,840)" to="(660,840)"/> <wire from="(630,880)" to="(630,1040)"/> <wire from="(630,880)" to="(660,880)"/> <wire from="(640,440)" to="(640,830)"/> <wire from="(640,830)" to="(660,830)"/> <wire from="(640,890)" to="(640,1170)"/> <wire from="(640,890)" to="(660,890)"/> <wire from="(650,340)" to="(650,820)"/> <wire from="(650,820)" to="(660,820)"/> <wire from="(650,900)" to="(650,1290)"/> <wire from="(650,900)" to="(660,900)"/> <wire from="(660,260)" to="(660,810)"/> <wire from="(660,910)" to="(660,1430)"/> <wire from="(680,800)" to="(700,800)"/> </circuit> <circuit name="NOISE_FreqLFSR"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_FreqLFSR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nACLK2"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(160,360)" name="Splitter"> <a name="bit0" val="10"/> <a name="bit1" val="9"/> <a name="bit10" val="0"/> <a name="bit2" val="8"/> <a name="bit3" val="7"/> <a name="bit4" val="6"/> <a name="bit6" val="4"/> <a name="bit7" val="3"/> <a name="bit8" val="2"/> <a name="bit9" val="1"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(240,820)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(450,820)" name="Splitter"> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(690,810)" name="Splitter"> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit2" val="1"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(90,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NNF"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(980,280)" name="Splitter"> <a name="bit0" val="10"/> <a name="bit1" val="9"/> <a name="bit10" val="0"/> <a name="bit2" val="8"/> <a name="bit3" val="7"/> <a name="bit4" val="6"/> <a name="bit6" val="4"/> <a name="bit7" val="3"/> <a name="bit8" val="2"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(990,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RSTEP"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(140,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,920)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,760)" name="NOR Gate"> <a name="inputs" val="11"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(380,890)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,920)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,900)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,960)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,760)" name="NOR Gate"> <a name="inputs" val="11"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(770,790)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,850)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,820)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(165,30)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="ACLK4"/> </comp> <comp lib="8" loc="(370,750)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="NFZ"/> </comp> <comp lib="8" loc="(490,890)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="NFLOAD"/> </comp> <comp lib="8" loc="(490,950)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="NFSTEP"/> </comp> <comp lib="8" loc="(615,745)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="NFOUT"/> </comp> <comp lib="8" loc="(885,810)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="NSIN"/> </comp> <comp loc="(350,110)" name="FreqLFSRBit"> <a name="label" val="msb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,380)" name="FreqLFSRBit"/> <comp loc="(350,540)" name="FreqLFSRBit"/> <comp loc="(520,110)" name="FreqLFSRBit"/> <comp loc="(520,380)" name="FreqLFSRBit"/> <comp loc="(520,540)" name="FreqLFSRBit"/> <comp loc="(690,110)" name="FreqLFSRBit"/> <comp loc="(690,380)" name="FreqLFSRBit"/> <comp loc="(690,540)" name="FreqLFSRBit"> <a name="label" val="lsb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(860,110)" name="FreqLFSRBit"/> <comp loc="(860,380)" name="FreqLFSRBit"/> <wire from="(1000,280)" to="(1000,670)"/> <wire from="(1030,210)" to="(1030,820)"/> <wire from="(110,100)" to="(110,930)"/> <wire from="(110,40)" to="(120,40)"/> <wire from="(110,70)" to="(240,70)"/> <wire from="(110,930)" to="(250,930)"/> <wire from="(140,130)" to="(140,400)"/> <wire from="(140,130)" to="(250,130)"/> <wire from="(140,40)" to="(150,40)"/> <wire from="(140,400)" to="(140,560)"/> <wire from="(140,400)" to="(250,400)"/> <wire from="(140,560)" to="(250,560)"/> <wire from="(150,40)" to="(150,890)"/> <wire from="(150,890)" to="(360,890)"/> <wire from="(160,670)" to="(160,760)"/> <wire from="(160,670)" to="(680,670)"/> <wire from="(160,760)" to="(220,760)"/> <wire from="(180,140)" to="(180,250)"/> <wire from="(180,140)" to="(250,140)"/> <wire from="(180,260)" to="(190,260)"/> <wire from="(180,270)" to="(200,270)"/> <wire from="(180,280)" to="(210,280)"/> <wire from="(180,290)" to="(210,290)"/> <wire from="(180,300)" to="(360,300)"/> <wire from="(180,310)" to="(530,310)"/> <wire from="(180,320)" to="(700,320)"/> <wire from="(180,330)" to="(200,330)"/> <wire from="(180,340)" to="(190,340)"/> <wire from="(180,350)" to="(180,640)"/> <wire from="(180,640)" to="(530,640)"/> <wire from="(190,180)" to="(190,260)"/> <wire from="(190,180)" to="(360,180)"/> <wire from="(190,340)" to="(190,630)"/> <wire from="(190,630)" to="(360,630)"/> <wire from="(200,190)" to="(200,270)"/> <wire from="(200,190)" to="(530,190)"/> <wire from="(200,330)" to="(200,570)"/> <wire from="(200,570)" to="(250,570)"/> <wire from="(210,200)" to="(210,280)"/> <wire from="(210,200)" to="(700,200)"/> <wire from="(210,290)" to="(210,410)"/> <wire from="(210,410)" to="(250,410)"/> <wire from="(210,490)" to="(210,580)"/> <wire from="(210,490)" to="(870,490)"/> <wire from="(210,580)" to="(250,580)"/> <wire from="(220,120)" to="(220,170)"/> <wire from="(220,120)" to="(250,120)"/> <wire from="(220,170)" to="(230,170)"/> <wire from="(220,280)" to="(220,420)"/> <wire from="(220,280)" to="(880,280)"/> <wire from="(220,420)" to="(250,420)"/> <wire from="(220,760)" to="(220,820)"/> <wire from="(220,820)" to="(220,840)"/> <wire from="(220,820)" to="(240,820)"/> <wire from="(220,840)" to="(450,840)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(230,170)" to="(230,390)"/> <wire from="(230,390)" to="(230,550)"/> <wire from="(230,390)" to="(250,390)"/> <wire from="(230,40)" to="(230,150)"/> <wire from="(230,40)" to="(900,40)"/> <wire from="(230,550)" to="(250,550)"/> <wire from="(240,110)" to="(240,380)"/> <wire from="(240,110)" to="(250,110)"/> <wire from="(240,380)" to="(240,540)"/> <wire from="(240,380)" to="(250,380)"/> <wire from="(240,540)" to="(250,540)"/> <wire from="(240,70)" to="(240,110)"/> <wire from="(240,70)" to="(410,70)"/> <wire from="(240,860)" to="(240,910)"/> <wire from="(240,860)" to="(630,860)"/> <wire from="(240,910)" to="(260,910)"/> <wire from="(250,120)" to="(420,120)"/> <wire from="(250,130)" to="(420,130)"/> <wire from="(250,390)" to="(420,390)"/> <wire from="(250,400)" to="(420,400)"/> <wire from="(250,550)" to="(420,550)"/> <wire from="(250,560)" to="(420,560)"/> <wire from="(250,930)" to="(250,990)"/> <wire from="(250,930)" to="(290,930)"/> <wire from="(250,990)" to="(810,990)"/> <wire from="(260,710)" to="(280,710)"/> <wire from="(260,720)" to="(280,720)"/> <wire from="(260,730)" to="(280,730)"/> <wire from="(260,740)" to="(280,740)"/> <wire from="(260,750)" to="(280,750)"/> <wire from="(260,760)" to="(280,760)"/> <wire from="(260,770)" to="(280,770)"/> <wire from="(260,780)" to="(280,780)"/> <wire from="(260,790)" to="(280,790)"/> <wire from="(260,800)" to="(280,800)"/> <wire from="(260,810)" to="(280,810)"/> <wire from="(280,910)" to="(290,910)"/> <wire from="(330,920)" to="(350,920)"/> <wire from="(350,110)" to="(370,110)"/> <wire from="(350,380)" to="(370,380)"/> <wire from="(350,540)" to="(370,540)"/> <wire from="(350,920)" to="(350,970)"/> <wire from="(350,920)" to="(360,920)"/> <wire from="(350,970)" to="(420,970)"/> <wire from="(360,140)" to="(360,180)"/> <wire from="(360,140)" to="(420,140)"/> <wire from="(360,300)" to="(360,410)"/> <wire from="(360,410)" to="(420,410)"/> <wire from="(360,570)" to="(360,630)"/> <wire from="(360,570)" to="(420,570)"/> <wire from="(360,760)" to="(390,760)"/> <wire from="(370,110)" to="(370,150)"/> <wire from="(370,150)" to="(370,250)"/> <wire from="(370,150)" to="(420,150)"/> <wire from="(370,250)" to="(910,250)"/> <wire from="(370,380)" to="(370,420)"/> <wire from="(370,420)" to="(370,470)"/> <wire from="(370,420)" to="(420,420)"/> <wire from="(370,470)" to="(900,470)"/> <wire from="(370,540)" to="(370,580)"/> <wire from="(370,580)" to="(370,620)"/> <wire from="(370,580)" to="(420,580)"/> <wire from="(370,620)" to="(940,620)"/> <wire from="(380,890)" to="(390,890)"/> <wire from="(380,920)" to="(400,920)"/> <wire from="(390,690)" to="(390,760)"/> <wire from="(390,690)" to="(660,690)"/> <wire from="(390,890)" to="(390,950)"/> <wire from="(390,890)" to="(420,890)"/> <wire from="(390,950)" to="(420,950)"/> <wire from="(400,910)" to="(400,920)"/> <wire from="(400,910)" to="(420,910)"/> <wire from="(410,110)" to="(410,380)"/> <wire from="(410,110)" to="(420,110)"/> <wire from="(410,380)" to="(410,540)"/> <wire from="(410,380)" to="(420,380)"/> <wire from="(410,540)" to="(420,540)"/> <wire from="(410,70)" to="(410,110)"/> <wire from="(410,70)" to="(580,70)"/> <wire from="(420,120)" to="(590,120)"/> <wire from="(420,130)" to="(590,130)"/> <wire from="(420,390)" to="(590,390)"/> <wire from="(420,400)" to="(590,400)"/> <wire from="(420,550)" to="(590,550)"/> <wire from="(420,560)" to="(590,560)"/> <wire from="(450,820)" to="(450,840)"/> <wire from="(460,900)" to="(590,900)"/> <wire from="(460,960)" to="(510,960)"/> <wire from="(470,710)" to="(480,710)"/> <wire from="(470,720)" to="(520,720)"/> <wire from="(470,730)" to="(520,730)"/> <wire from="(470,740)" to="(520,740)"/> <wire from="(470,750)" to="(520,750)"/> <wire from="(470,760)" to="(520,760)"/> <wire from="(470,770)" to="(520,770)"/> <wire from="(470,780)" to="(520,780)"/> <wire from="(470,790)" to="(520,790)"/> <wire from="(470,800)" to="(520,800)"/> <wire from="(470,810)" to="(520,810)"/> <wire from="(50,1030)" to="(510,1030)"/> <wire from="(50,560)" to="(140,560)"/> <wire from="(50,560)" to="(50,1030)"/> <wire from="(500,710)" to="(520,710)"/> <wire from="(510,960)" to="(510,1030)"/> <wire from="(520,110)" to="(540,110)"/> <wire from="(520,380)" to="(540,380)"/> <wire from="(520,540)" to="(540,540)"/> <wire from="(530,140)" to="(530,190)"/> <wire from="(530,140)" to="(590,140)"/> <wire from="(530,310)" to="(530,410)"/> <wire from="(530,410)" to="(590,410)"/> <wire from="(530,570)" to="(530,640)"/> <wire from="(530,570)" to="(590,570)"/> <wire from="(540,110)" to="(540,150)"/> <wire from="(540,150)" to="(540,260)"/> <wire from="(540,150)" to="(590,150)"/> <wire from="(540,260)" to="(900,260)"/> <wire from="(540,380)" to="(540,420)"/> <wire from="(540,420)" to="(540,460)"/> <wire from="(540,420)" to="(590,420)"/> <wire from="(540,460)" to="(910,460)"/> <wire from="(540,540)" to="(540,580)"/> <wire from="(540,580)" to="(540,610)"/> <wire from="(540,580)" to="(590,580)"/> <wire from="(540,610)" to="(950,610)"/> <wire from="(580,110)" to="(580,380)"/> <wire from="(580,110)" to="(590,110)"/> <wire from="(580,380)" to="(580,540)"/> <wire from="(580,380)" to="(590,380)"/> <wire from="(580,540)" to="(590,540)"/> <wire from="(580,70)" to="(580,110)"/> <wire from="(580,70)" to="(750,70)"/> <wire from="(590,120)" to="(760,120)"/> <wire from="(590,130)" to="(760,130)"/> <wire from="(590,390)" to="(760,390)"/> <wire from="(590,400)" to="(760,400)"/> <wire from="(590,900)" to="(590,1010)"/> <wire from="(60,1010)" to="(590,1010)"/> <wire from="(60,550)" to="(230,550)"/> <wire from="(60,550)" to="(60,1010)"/> <wire from="(600,760)" to="(630,760)"/> <wire from="(630,760)" to="(630,860)"/> <wire from="(660,690)" to="(660,860)"/> <wire from="(660,860)" to="(740,860)"/> <wire from="(680,670)" to="(1000,670)"/> <wire from="(680,670)" to="(680,810)"/> <wire from="(680,810)" to="(690,810)"/> <wire from="(690,110)" to="(710,110)"/> <wire from="(690,380)" to="(710,380)"/> <wire from="(690,540)" to="(960,540)"/> <wire from="(700,140)" to="(700,200)"/> <wire from="(700,140)" to="(760,140)"/> <wire from="(700,320)" to="(700,410)"/> <wire from="(700,410)" to="(760,410)"/> <wire from="(710,110)" to="(710,150)"/> <wire from="(710,150)" to="(710,270)"/> <wire from="(710,150)" to="(760,150)"/> <wire from="(710,270)" to="(890,270)"/> <wire from="(710,380)" to="(710,420)"/> <wire from="(710,420)" to="(710,450)"/> <wire from="(710,420)" to="(760,420)"/> <wire from="(710,450)" to="(920,450)"/> <wire from="(710,780)" to="(710,790)"/> <wire from="(710,780)" to="(720,780)"/> <wire from="(710,800)" to="(730,800)"/> <wire from="(720,780)" to="(720,840)"/> <wire from="(720,780)" to="(740,780)"/> <wire from="(720,840)" to="(740,840)"/> <wire from="(730,800)" to="(730,850)"/> <wire from="(730,800)" to="(740,800)"/> <wire from="(730,850)" to="(740,850)"/> <wire from="(750,110)" to="(750,380)"/> <wire from="(750,110)" to="(760,110)"/> <wire from="(750,380)" to="(760,380)"/> <wire from="(750,70)" to="(750,110)"/> <wire from="(760,120)" to="(990,120)"/> <wire from="(770,790)" to="(790,790)"/> <wire from="(780,850)" to="(790,850)"/> <wire from="(790,790)" to="(790,810)"/> <wire from="(790,810)" to="(820,810)"/> <wire from="(790,820)" to="(790,850)"/> <wire from="(790,820)" to="(820,820)"/> <wire from="(810,830)" to="(810,990)"/> <wire from="(810,830)" to="(820,830)"/> <wire from="(860,110)" to="(880,110)"/> <wire from="(860,380)" to="(870,380)"/> <wire from="(860,820)" to="(1030,820)"/> <wire from="(870,380)" to="(870,490)"/> <wire from="(870,380)" to="(930,380)"/> <wire from="(880,110)" to="(880,280)"/> <wire from="(880,280)" to="(880,320)"/> <wire from="(880,320)" to="(960,320)"/> <wire from="(890,270)" to="(890,310)"/> <wire from="(890,310)" to="(960,310)"/> <wire from="(90,360)" to="(160,360)"/> <wire from="(900,210)" to="(1030,210)"/> <wire from="(900,260)" to="(900,300)"/> <wire from="(900,300)" to="(960,300)"/> <wire from="(900,330)" to="(900,470)"/> <wire from="(900,330)" to="(960,330)"/> <wire from="(900,40)" to="(900,210)"/> <wire from="(910,250)" to="(910,290)"/> <wire from="(910,290)" to="(960,290)"/> <wire from="(910,340)" to="(910,460)"/> <wire from="(910,340)" to="(960,340)"/> <wire from="(920,350)" to="(920,450)"/> <wire from="(920,350)" to="(960,350)"/> <wire from="(930,360)" to="(930,380)"/> <wire from="(930,360)" to="(960,360)"/> <wire from="(940,370)" to="(940,620)"/> <wire from="(940,370)" to="(960,370)"/> <wire from="(950,380)" to="(950,610)"/> <wire from="(950,380)" to="(960,380)"/> <wire from="(960,390)" to="(960,540)"/> <wire from="(980,280)" to="(1000,280)"/> </circuit> <circuit name="NOISE_RandomLFSR"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NOISE_RandomLFSR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1030,380)" name="Splitter"> <a name="bit0" val="14"/> <a name="bit1" val="13"/> <a name="bit10" val="4"/> <a name="bit11" val="3"/> <a name="bit12" val="2"/> <a name="bit13" val="1"/> <a name="bit14" val="0"/> <a name="bit2" val="12"/> <a name="bit3" val="11"/> <a name="bit4" val="10"/> <a name="bit5" val="9"/> <a name="bit6" val="8"/> <a name="bit8" val="6"/> <a name="bit9" val="5"/> <a name="facing" val="west"/> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(1070,360)" name="Splitter"> <a name="fanout" val="15"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(1100,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RNDOUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RSTEP"/> </comp> <comp lib="0" loc="(140,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NORND"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOCK"/> </comp> <comp lib="0" loc="(140,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W400E"/> </comp> <comp lib="0" loc="(170,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,390)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(510,100)" name="NoConnect"/> <comp lib="0" loc="(530,140)" name="Splitter"> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="2"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="3"/> <a name="incoming" val="15"/> </comp> <comp lib="0" loc="(650,770)" name="Splitter"> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="15"/> </comp> <comp lib="1" loc="(1190,280)" name="NOR Gate"> <a name="inputs" val="15"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(730,100)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(790,150)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(840,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(880,110)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(940,790)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(610,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(1185,40)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="RSOZ"/> </comp> <comp lib="8" loc="(900,95)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="RIN"/> </comp> <comp loc="(400,240)" name="RandomLFSRBit"> <a name="label" val="msb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,380)" name="RandomLFSRBit"/> <comp loc="(400,520)" name="RandomLFSRBit"/> <comp loc="(400,660)" name="RandomLFSRBit"/> <comp loc="(500,80)" name="RegisterBit"> <a name="label" val="rmod_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,240)" name="RandomLFSRBit"/> <comp loc="(560,380)" name="RandomLFSRBit"/> <comp loc="(560,520)" name="RandomLFSRBit"/> <comp loc="(560,660)" name="RandomLFSRBit"/> <comp loc="(720,240)" name="RandomLFSRBit"/> <comp loc="(720,380)" name="RandomLFSRBit"/> <comp loc="(720,520)" name="RandomLFSRBit"/> <comp loc="(720,660)" name="RandomLFSRBit"> <a name="label" val="lsb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,240)" name="RandomLFSRBit"/> <comp loc="(880,380)" name="RandomLFSRBit"/> <comp loc="(880,520)" name="RandomLFSRBit"/> <wire from="(1000,520)" to="(1000,710)"/> <wire from="(1000,520)" to="(1010,520)"/> <wire from="(1010,530)" to="(1010,660)"/> <wire from="(1030,180)" to="(1030,360)"/> <wire from="(1030,360)" to="(1030,380)"/> <wire from="(1030,360)" to="(1070,360)"/> <wire from="(1030,380)" to="(1050,380)"/> <wire from="(1050,380)" to="(1050,740)"/> <wire from="(1090,210)" to="(1110,210)"/> <wire from="(1090,220)" to="(1110,220)"/> <wire from="(1090,230)" to="(1110,230)"/> <wire from="(1090,240)" to="(1110,240)"/> <wire from="(1090,250)" to="(1110,250)"/> <wire from="(1090,260)" to="(1110,260)"/> <wire from="(1090,270)" to="(1110,270)"/> <wire from="(1090,280)" to="(1110,280)"/> <wire from="(1090,290)" to="(1110,290)"/> <wire from="(1090,300)" to="(1110,300)"/> <wire from="(1090,310)" to="(1110,310)"/> <wire from="(1090,320)" to="(1110,320)"/> <wire from="(1090,330)" to="(1110,330)"/> <wire from="(1090,340)" to="(1110,340)"/> <wire from="(1090,350)" to="(1110,350)"/> <wire from="(1190,280)" to="(1210,280)"/> <wire from="(1210,20)" to="(1210,280)"/> <wire from="(140,160)" to="(240,160)"/> <wire from="(140,20)" to="(260,20)"/> <wire from="(140,230)" to="(230,230)"/> <wire from="(140,260)" to="(190,260)"/> <wire from="(140,340)" to="(160,340)"/> <wire from="(160,100)" to="(160,340)"/> <wire from="(160,100)" to="(280,100)"/> <wire from="(170,390)" to="(180,390)"/> <wire from="(190,260)" to="(220,260)"/> <wire from="(190,40)" to="(190,260)"/> <wire from="(190,40)" to="(820,40)"/> <wire from="(200,120)" to="(200,380)"/> <wire from="(200,120)" to="(280,120)"/> <wire from="(220,260)" to="(220,800)"/> <wire from="(220,800)" to="(900,800)"/> <wire from="(230,230)" to="(230,790)"/> <wire from="(230,790)" to="(720,790)"/> <wire from="(240,160)" to="(240,250)"/> <wire from="(240,250)" to="(240,390)"/> <wire from="(240,250)" to="(300,250)"/> <wire from="(240,390)" to="(240,530)"/> <wire from="(240,390)" to="(300,390)"/> <wire from="(240,530)" to="(240,670)"/> <wire from="(240,530)" to="(300,530)"/> <wire from="(240,670)" to="(300,670)"/> <wire from="(260,20)" to="(260,80)"/> <wire from="(260,200)" to="(260,240)"/> <wire from="(260,200)" to="(450,200)"/> <wire from="(260,240)" to="(260,380)"/> <wire from="(260,240)" to="(300,240)"/> <wire from="(260,380)" to="(260,520)"/> <wire from="(260,380)" to="(300,380)"/> <wire from="(260,520)" to="(260,660)"/> <wire from="(260,520)" to="(300,520)"/> <wire from="(260,660)" to="(300,660)"/> <wire from="(260,80)" to="(260,200)"/> <wire from="(260,80)" to="(280,80)"/> <wire from="(280,190)" to="(280,260)"/> <wire from="(280,190)" to="(920,190)"/> <wire from="(280,260)" to="(300,260)"/> <wire from="(280,330)" to="(280,400)"/> <wire from="(280,330)" to="(900,330)"/> <wire from="(280,400)" to="(300,400)"/> <wire from="(280,470)" to="(280,540)"/> <wire from="(280,470)" to="(900,470)"/> <wire from="(280,540)" to="(300,540)"/> <wire from="(280,610)" to="(280,680)"/> <wire from="(280,610)" to="(900,610)"/> <wire from="(280,680)" to="(300,680)"/> <wire from="(300,250)" to="(460,250)"/> <wire from="(300,390)" to="(460,390)"/> <wire from="(300,530)" to="(460,530)"/> <wire from="(300,670)" to="(460,670)"/> <wire from="(400,240)" to="(410,240)"/> <wire from="(400,380)" to="(410,380)"/> <wire from="(400,520)" to="(410,520)"/> <wire from="(400,660)" to="(410,660)"/> <wire from="(410,240)" to="(410,260)"/> <wire from="(410,260)" to="(410,300)"/> <wire from="(410,260)" to="(460,260)"/> <wire from="(410,300)" to="(970,300)"/> <wire from="(410,380)" to="(410,400)"/> <wire from="(410,400)" to="(410,430)"/> <wire from="(410,400)" to="(460,400)"/> <wire from="(410,430)" to="(1010,430)"/> <wire from="(410,520)" to="(410,540)"/> <wire from="(410,540)" to="(410,570)"/> <wire from="(410,540)" to="(460,540)"/> <wire from="(410,570)" to="(950,570)"/> <wire from="(410,660)" to="(410,680)"/> <wire from="(410,680)" to="(410,720)"/> <wire from="(410,680)" to="(460,680)"/> <wire from="(410,720)" to="(990,720)"/> <wire from="(450,200)" to="(450,240)"/> <wire from="(450,200)" to="(610,200)"/> <wire from="(450,240)" to="(450,380)"/> <wire from="(450,240)" to="(460,240)"/> <wire from="(450,380)" to="(450,520)"/> <wire from="(450,380)" to="(460,380)"/> <wire from="(450,520)" to="(450,660)"/> <wire from="(450,520)" to="(460,520)"/> <wire from="(450,660)" to="(460,660)"/> <wire from="(460,250)" to="(620,250)"/> <wire from="(460,390)" to="(620,390)"/> <wire from="(460,530)" to="(620,530)"/> <wire from="(460,670)" to="(620,670)"/> <wire from="(500,100)" to="(510,100)"/> <wire from="(500,80)" to="(590,80)"/> <wire from="(530,140)" to="(530,180)"/> <wire from="(530,180)" to="(1030,180)"/> <wire from="(550,110)" to="(560,110)"/> <wire from="(550,120)" to="(580,120)"/> <wire from="(550,130)" to="(560,130)"/> <wire from="(560,100)" to="(560,110)"/> <wire from="(560,100)" to="(680,100)"/> <wire from="(560,130)" to="(560,140)"/> <wire from="(560,140)" to="(580,140)"/> <wire from="(560,240)" to="(570,240)"/> <wire from="(560,380)" to="(570,380)"/> <wire from="(560,520)" to="(570,520)"/> <wire from="(560,660)" to="(570,660)"/> <wire from="(570,240)" to="(570,260)"/> <wire from="(570,260)" to="(570,310)"/> <wire from="(570,260)" to="(620,260)"/> <wire from="(570,310)" to="(960,310)"/> <wire from="(570,380)" to="(570,400)"/> <wire from="(570,400)" to="(570,440)"/> <wire from="(570,400)" to="(620,400)"/> <wire from="(570,440)" to="(1010,440)"/> <wire from="(570,520)" to="(570,540)"/> <wire from="(570,540)" to="(570,580)"/> <wire from="(570,540)" to="(620,540)"/> <wire from="(570,580)" to="(960,580)"/> <wire from="(570,660)" to="(570,680)"/> <wire from="(570,680)" to="(570,710)"/> <wire from="(570,680)" to="(620,680)"/> <wire from="(570,710)" to="(1000,710)"/> <wire from="(590,80)" to="(590,110)"/> <wire from="(610,130)" to="(660,130)"/> <wire from="(610,200)" to="(610,240)"/> <wire from="(610,200)" to="(770,200)"/> <wire from="(610,240)" to="(610,380)"/> <wire from="(610,240)" to="(620,240)"/> <wire from="(610,380)" to="(610,520)"/> <wire from="(610,380)" to="(620,380)"/> <wire from="(610,520)" to="(610,660)"/> <wire from="(610,520)" to="(620,520)"/> <wire from="(610,660)" to="(620,660)"/> <wire from="(620,250)" to="(780,250)"/> <wire from="(620,390)" to="(780,390)"/> <wire from="(620,530)" to="(780,530)"/> <wire from="(630,740)" to="(1050,740)"/> <wire from="(630,740)" to="(630,770)"/> <wire from="(630,770)" to="(650,770)"/> <wire from="(660,110)" to="(660,130)"/> <wire from="(660,110)" to="(690,110)"/> <wire from="(660,130)" to="(660,160)"/> <wire from="(660,160)" to="(760,160)"/> <wire from="(660,20)" to="(1210,20)"/> <wire from="(660,20)" to="(660,90)"/> <wire from="(660,90)" to="(690,90)"/> <wire from="(670,760)" to="(800,760)"/> <wire from="(680,100)" to="(680,140)"/> <wire from="(680,100)" to="(690,100)"/> <wire from="(680,140)" to="(760,140)"/> <wire from="(720,240)" to="(730,240)"/> <wire from="(720,380)" to="(730,380)"/> <wire from="(720,520)" to="(730,520)"/> <wire from="(720,660)" to="(1010,660)"/> <wire from="(720,780)" to="(720,790)"/> <wire from="(720,780)" to="(800,780)"/> <wire from="(730,100)" to="(780,100)"/> <wire from="(730,240)" to="(730,260)"/> <wire from="(730,260)" to="(730,320)"/> <wire from="(730,260)" to="(780,260)"/> <wire from="(730,320)" to="(950,320)"/> <wire from="(730,380)" to="(730,400)"/> <wire from="(730,400)" to="(730,450)"/> <wire from="(730,400)" to="(780,400)"/> <wire from="(730,450)" to="(1010,450)"/> <wire from="(730,520)" to="(730,540)"/> <wire from="(730,540)" to="(730,590)"/> <wire from="(730,540)" to="(780,540)"/> <wire from="(730,590)" to="(970,590)"/> <wire from="(770,200)" to="(770,240)"/> <wire from="(770,240)" to="(770,380)"/> <wire from="(770,240)" to="(780,240)"/> <wire from="(770,380)" to="(770,520)"/> <wire from="(770,380)" to="(780,380)"/> <wire from="(770,520)" to="(780,520)"/> <wire from="(780,100)" to="(780,110)"/> <wire from="(780,110)" to="(840,110)"/> <wire from="(790,150)" to="(800,150)"/> <wire from="(800,120)" to="(800,150)"/> <wire from="(800,120)" to="(840,120)"/> <wire from="(820,100)" to="(840,100)"/> <wire from="(820,40)" to="(820,100)"/> <wire from="(840,770)" to="(870,770)"/> <wire from="(870,770)" to="(870,780)"/> <wire from="(870,780)" to="(900,780)"/> <wire from="(880,110)" to="(920,110)"/> <wire from="(880,240)" to="(900,240)"/> <wire from="(880,380)" to="(900,380)"/> <wire from="(880,520)" to="(900,520)"/> <wire from="(900,240)" to="(900,330)"/> <wire from="(900,330)" to="(940,330)"/> <wire from="(900,380)" to="(900,460)"/> <wire from="(900,460)" to="(1010,460)"/> <wire from="(900,460)" to="(900,470)"/> <wire from="(900,520)" to="(900,610)"/> <wire from="(900,520)" to="(980,520)"/> <wire from="(920,110)" to="(920,190)"/> <wire from="(940,330)" to="(940,420)"/> <wire from="(940,420)" to="(1010,420)"/> <wire from="(940,790)" to="(1100,790)"/> <wire from="(950,320)" to="(950,410)"/> <wire from="(950,410)" to="(1010,410)"/> <wire from="(950,470)" to="(1010,470)"/> <wire from="(950,470)" to="(950,570)"/> <wire from="(960,310)" to="(960,400)"/> <wire from="(960,400)" to="(1010,400)"/> <wire from="(960,480)" to="(1010,480)"/> <wire from="(960,480)" to="(960,580)"/> <wire from="(970,300)" to="(970,390)"/> <wire from="(970,390)" to="(1010,390)"/> <wire from="(970,490)" to="(1010,490)"/> <wire from="(970,490)" to="(970,590)"/> <wire from="(980,500)" to="(1010,500)"/> <wire from="(980,500)" to="(980,520)"/> <wire from="(990,510)" to="(1010,510)"/> <wire from="(990,510)" to="(990,720)"/> </circuit> <circuit name="FreqLFSRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="FreqLFSRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="load"/> </comp> <comp lib="0" loc="(170,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="step"/> </comp> <comp lib="0" loc="(170,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val"/> </comp> <comp lib="0" loc="(170,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(170,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(490,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(230,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(350,160)" name="TranspDLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(410,150)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,100)" to="(220,100)"/> <wire from="(170,130)" to="(200,130)"/> <wire from="(170,170)" to="(210,170)"/> <wire from="(170,200)" to="(190,200)"/> <wire from="(170,70)" to="(390,70)"/> <wire from="(200,130)" to="(200,190)"/> <wire from="(210,200)" to="(240,200)"/> <wire from="(220,100)" to="(220,160)"/> <wire from="(230,170)" to="(240,170)"/> <wire from="(240,160)" to="(240,170)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(240,170)" to="(240,200)"/> <wire from="(350,170)" to="(410,170)"/> <wire from="(390,150)" to="(410,150)"/> <wire from="(390,70)" to="(390,150)"/> <wire from="(450,170)" to="(490,170)"/> </circuit> <circuit name="RandomLFSRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="RandomLFSRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACLK1"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="load"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(520,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp loc="(410,140)" name="RegisterBit"> <a name="label" val="in_reg"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,140)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,100)" to="(180,100)"/> <wire from="(120,130)" to="(150,130)"/> <wire from="(120,180)" to="(190,180)"/> <wire from="(150,130)" to="(150,160)"/> <wire from="(150,160)" to="(190,160)"/> <wire from="(180,100)" to="(180,140)"/> <wire from="(180,100)" to="(430,100)"/> <wire from="(180,140)" to="(190,140)"/> <wire from="(410,160)" to="(450,160)"/> <wire from="(430,100)" to="(430,140)"/> <wire from="(430,140)" to="(450,140)"/> <wire from="(490,160)" to="(520,160)"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="3.8.0" version="1.0"> This file is intended to be loaded by Logisim-evolution v3.8.0(https://github.com/logisim-evolution/). <lib desc="#Wiring" name="0"> <tool name="Pin"> <a name="appearance" val="classic"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"/> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> </lib> <main name="BogusSystem"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> <sep/> <tool lib="0" name="Pin"/> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="BogusSystem"> <a name="circuit" val="BogusSystem"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(120,90)" name="Clock"> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(180,420)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(390,110)" name="NoConnect"/> <comp lib="0" loc="(420,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(420,330)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(590,140)" name="Constant"/> <comp lib="0" loc="(710,140)" name="Constant"/> <comp lib="1" loc="(540,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="4" loc="(590,260)" name="RAM"> <a name="addrWidth" val="16"/> <a name="appearance" val="classic"/> <a name="label" val="mem"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelvisible" val="true"/> </comp> <comp lib="4" loc="(630,130)" name="Counter"> <a name="appearance" val="classic"/> <a name="max" val="0xffffffff"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(750,130)" name="Counter"> <a name="appearance" val="classic"/> <a name="max" val="0xffffffff"/> <a name="width" val="32"/> </comp> <comp lib="6" loc="(615,100)" name="Text"> <a name="text" val="CLK Counter"/> </comp> <comp lib="6" loc="(740,100)" name="Text"> <a name="text" val="Instr Counter"/> </comp> <comp loc="(240,110)" name="MOS_6502"> <a name="label" val="mos6502"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,130)" to="(240,130)"/> <wire from="(120,150)" to="(190,150)"/> <wire from="(120,190)" to="(200,190)"/> <wire from="(120,210)" to="(210,210)"/> <wire from="(120,230)" to="(150,230)"/> <wire from="(120,90)" to="(210,90)"/> <wire from="(150,230)" to="(220,230)"/> <wire from="(150,50)" to="(150,230)"/> <wire from="(150,50)" to="(550,50)"/> <wire from="(180,420)" to="(180,460)"/> <wire from="(180,460)" to="(860,460)"/> <wire from="(190,140)" to="(190,150)"/> <wire from="(190,140)" to="(240,140)"/> <wire from="(200,160)" to="(200,190)"/> <wire from="(200,160)" to="(240,160)"/> <wire from="(200,340)" to="(240,340)"/> <wire from="(200,350)" to="(240,350)"/> <wire from="(200,360)" to="(240,360)"/> <wire from="(200,370)" to="(240,370)"/> <wire from="(200,380)" to="(240,380)"/> <wire from="(200,390)" to="(240,390)"/> <wire from="(200,400)" to="(240,400)"/> <wire from="(200,410)" to="(240,410)"/> <wire from="(210,110)" to="(240,110)"/> <wire from="(210,170)" to="(210,210)"/> <wire from="(210,170)" to="(240,170)"/> <wire from="(210,90)" to="(210,110)"/> <wire from="(220,180)" to="(220,230)"/> <wire from="(220,180)" to="(240,180)"/> <wire from="(370,110)" to="(390,110)"/> <wire from="(370,120)" to="(520,120)"/> <wire from="(370,140)" to="(500,140)"/> <wire from="(370,150)" to="(540,150)"/> <wire from="(370,170)" to="(400,170)"/> <wire from="(370,180)" to="(400,180)"/> <wire from="(370,190)" to="(400,190)"/> <wire from="(370,200)" to="(400,200)"/> <wire from="(370,210)" to="(400,210)"/> <wire from="(370,220)" to="(400,220)"/> <wire from="(370,230)" to="(400,230)"/> <wire from="(370,240)" to="(400,240)"/> <wire from="(370,250)" to="(400,250)"/> <wire from="(370,260)" to="(400,260)"/> <wire from="(370,270)" to="(400,270)"/> <wire from="(370,280)" to="(400,280)"/> <wire from="(370,290)" to="(400,290)"/> <wire from="(370,300)" to="(400,300)"/> <wire from="(370,310)" to="(400,310)"/> <wire from="(370,320)" to="(400,320)"/> <wire from="(370,340)" to="(400,340)"/> <wire from="(370,350)" to="(400,350)"/> <wire from="(370,360)" to="(400,360)"/> <wire from="(370,370)" to="(400,370)"/> <wire from="(370,380)" to="(400,380)"/> <wire from="(370,390)" to="(400,390)"/> <wire from="(370,400)" to="(400,400)"/> <wire from="(370,410)" to="(400,410)"/> <wire from="(420,160)" to="(480,160)"/> <wire from="(420,330)" to="(480,330)"/> <wire from="(480,160)" to="(480,270)"/> <wire from="(480,270)" to="(590,270)"/> <wire from="(480,330)" to="(480,350)"/> <wire from="(480,350)" to="(590,350)"/> <wire from="(500,140)" to="(500,310)"/> <wire from="(500,310)" to="(500,340)"/> <wire from="(500,310)" to="(520,310)"/> <wire from="(500,340)" to="(570,340)"/> <wire from="(520,120)" to="(520,190)"/> <wire from="(520,190)" to="(520,240)"/> <wire from="(520,190)" to="(610,190)"/> <wire from="(520,240)" to="(550,240)"/> <wire from="(540,150)" to="(540,200)"/> <wire from="(540,200)" to="(730,200)"/> <wire from="(540,310)" to="(590,310)"/> <wire from="(550,170)" to="(560,170)"/> <wire from="(550,240)" to="(550,330)"/> <wire from="(550,330)" to="(590,330)"/> <wire from="(550,50)" to="(550,170)"/> <wire from="(570,320)" to="(570,340)"/> <wire from="(570,320)" to="(590,320)"/> <wire from="(580,170)" to="(620,170)"/> <wire from="(590,140)" to="(600,140)"/> <wire from="(610,150)" to="(610,190)"/> <wire from="(620,150)" to="(620,170)"/> <wire from="(620,170)" to="(740,170)"/> <wire from="(710,140)" to="(720,140)"/> <wire from="(730,150)" to="(730,200)"/> <wire from="(740,150)" to="(740,170)"/> <wire from="(830,350)" to="(860,350)"/> <wire from="(860,350)" to="(860,460)"/> </circuit> <circuit name="MOS_6502"> <a name="appearance" val="custom"/> <a name="circuit" val="MOS_6502"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="330" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="94">RDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="104">SO</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="123">/NMI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="133">/IRQ</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="145">/RES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="73">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="84">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="160" y="103">R/W</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="158" y="114">SYNC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="146" y="205">ADDR Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="148" y="338">DATA Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="76" y="338">DATA In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="116" y="43">MOS 6502</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="74">PHI0</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="1120,60" x="50" y="140"/> <circ-port dir="in" pin="1510,60" x="50" y="100"/> <circ-port dir="in" pin="1700,60" x="50" y="70"/> <circ-port dir="in" pin="2100,1300" x="50" y="300"/> <circ-port dir="in" pin="2100,1340" x="50" y="310"/> <circ-port dir="in" pin="2100,1380" x="50" y="320"/> <circ-port dir="in" pin="2100,1420" x="50" y="330"/> <circ-port dir="in" pin="2100,1460" x="50" y="340"/> <circ-port dir="in" pin="2100,1500" x="50" y="350"/> <circ-port dir="in" pin="2100,1540" x="50" y="360"/> <circ-port dir="in" pin="2100,1580" x="50" y="370"/> <circ-port dir="in" pin="300,60" x="50" y="120"/> <circ-port dir="in" pin="490,60" x="50" y="130"/> <circ-port dir="in" pin="960,60" x="50" y="90"/> <circ-port dir="out" pin="1330,60" x="180" y="80"/> <circ-port dir="out" pin="1840,60" x="180" y="100"/> <circ-port dir="out" pin="2100,1710" x="180" y="300"/> <circ-port dir="out" pin="2100,1750" x="180" y="310"/> <circ-port dir="out" pin="2100,1790" x="180" y="320"/> <circ-port dir="out" pin="2100,1830" x="180" y="330"/> <circ-port dir="out" pin="2100,1870" x="180" y="340"/> <circ-port dir="out" pin="2100,1910" x="180" y="350"/> <circ-port dir="out" pin="2100,1950" x="180" y="360"/> <circ-port dir="out" pin="2100,1990" x="180" y="370"/> <circ-port dir="out" pin="380,1940" x="180" y="210"/> <circ-port dir="out" pin="430,1940" x="180" y="220"/> <circ-port dir="out" pin="480,1940" x="180" y="230"/> <circ-port dir="out" pin="530,1940" x="180" y="240"/> <circ-port dir="out" pin="580,1940" x="180" y="250"/> <circ-port dir="out" pin="630,1940" x="180" y="260"/> <circ-port dir="out" pin="680,1940" x="180" y="270"/> <circ-port dir="out" pin="70,1300" x="180" y="130"/> <circ-port dir="out" pin="70,1350" x="180" y="140"/> <circ-port dir="out" pin="70,1400" x="180" y="150"/> <circ-port dir="out" pin="70,1450" x="180" y="160"/> <circ-port dir="out" pin="70,1500" x="180" y="170"/> <circ-port dir="out" pin="70,1550" x="180" y="180"/> <circ-port dir="out" pin="70,1600" x="180" y="190"/> <circ-port dir="out" pin="70,1650" x="180" y="200"/> <circ-port dir="out" pin="70,700" x="180" y="110"/> <circ-port dir="out" pin="730,1940" x="180" y="280"/> <circ-port dir="out" pin="780,60" x="180" y="70"/> </appear> <comp lib="0" loc="(1000,1820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Dirty"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(1000,830)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1030,1480)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1030,1560)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1030,1700)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1030,1790)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1030,1820)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(1230,1380)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1230,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1230,1580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1230,1680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1290,1340)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(1330,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="PHI2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1360,1570)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1360,1660)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1470,910)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1480,910)" name="Tunnel"> <a name="label" val="Dirty"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(1510,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(1520,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1560,1340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1560,1480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1560,1570)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(160,980)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1610,1360)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1650,1590)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1650,1690)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1670,810)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1700,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(180,1290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1840,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="RnW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1880,1300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1880,1400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1880,1500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1880,1600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1960,860)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1990,1160)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1990,1610)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2100,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(2100,1340)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(2100,1380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(2100,1420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(2100,1460)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(2100,1500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(2100,1540)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(2100,1580)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(2100,1710)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1790)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1830)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1870)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1910)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,1990)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(300,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(310,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="1"/> <a name="bit1" val="0"/> </comp> <comp lib="0" loc="(360,1490)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(360,1770)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(370,1840)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(380,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A8"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(430,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A9"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,810)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(480,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A10"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(490,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(530,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A11"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(580,1400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,1680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A12"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(620,810)" name="Splitter"> <a name="bit0" val="12"/> <a name="bit1" val="11"/> <a name="bit10" val="2"/> <a name="bit11" val="1"/> <a name="bit12" val="0"/> <a name="bit2" val="10"/> <a name="bit3" val="9"/> <a name="bit4" val="8"/> <a name="bit5" val="7"/> <a name="bit7" val="5"/> <a name="bit8" val="4"/> <a name="bit9" val="3"/> <a name="facing" val="north"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="0" loc="(630,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A13"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(670,810)" name="Splitter"> <a name="bit0" val="2"/> <a name="bit2" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(680,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A14"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,1650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="A7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(70,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,1520)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(730,1940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="A15"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="PHI1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(820,810)" name="Splitter"> <a name="bit0" val="8"/> <a name="bit1" val="7"/> <a name="bit2" val="6"/> <a name="bit3" val="5"/> <a name="bit5" val="3"/> <a name="bit6" val="2"/> <a name="bit7" val="1"/> <a name="bit8" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(840,810)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="north"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(900,1310)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(900,1430)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(920,930)" name="Splitter"> <a name="bit0" val="4"/> <a name="bit1" val="3"/> <a name="bit3" val="1"/> <a name="bit4" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(940,870)" name="Splitter"> <a name="facing" val="north"/> </comp> <comp lib="0" loc="(960,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(990,1330)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="1" loc="(1700,630)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,700)" name="Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(380,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="5" loc="(1460,970)" name="LED"/> <comp lib="6" loc="(1170,190)" name="Text"> <a name="text" val="/PRDY"/> </comp> <comp lib="6" loc="(125,115)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="6" loc="(1280,240)" name="Text"> <a name="text" val="RESP"/> </comp> <comp lib="6" loc="(130,1085)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="6" loc="(150,1055)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="6" loc="(155,155)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="6" loc="(1690,120)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="6" loc="(1690,165)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="6" loc="(175,1870)" name="Text"> <a name="text" val="The pin layout corresponds to the real chip"/> </comp> <comp lib="6" loc="(1830,270)" name="Text"> <a name="text" val="WR"/> </comp> <comp lib="6" loc="(2035,1050)" name="Text"> <a name="text" val="PHI1"/> </comp> <comp lib="6" loc="(205,690)" name="Text"> <a name="text" val="T1"/> </comp> <comp lib="6" loc="(2055,1085)" name="Text"> <a name="text" val="PHI2"/> </comp> <comp lib="6" loc="(355,200)" name="Text"> <a name="text" val="/NMIP"/> </comp> <comp lib="6" loc="(500,1105)" name="Text"> <a name="text" val="ADH in/out"/> </comp> <comp lib="6" loc="(510,220)" name="Text"> <a name="text" val="/IRQP"/> </comp> <comp lib="6" loc="(530,1145)" name="Text"> <a name="text" val="ADL in/out"/> </comp> <comp lib="6" loc="(560,1185)" name="Text"> <a name="text" val="DB in/out"/> </comp> <comp lib="6" loc="(590,1225)" name="Text"> <a name="text" val="SB in/out"/> </comp> <comp loc="(1060,1320)" name="ALU"/> <comp loc="(1060,190)" name="D_Latch"> <a name="label" val="prdy_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1130,80)" name="DFF_Level"/> <comp loc="(1140,190)" name="D_Latch"> <a name="label" val="prdy_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1300,180)" name="D_Latch"> <a name="label" val="resp_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1330,910)" name="BUS_MUX_HACK"/> <comp loc="(1400,1330)" name="PC"/> <comp loc="(1650,140)" name="CLOCKGEN"/> <comp loc="(1690,1310)" name="DL"/> <comp loc="(1770,460)" name="IR_Logic"> <a name="facing" val="west"/> <a name="label" val="IR"/> </comp> <comp loc="(1800,230)" name="D_Latch"> <a name="label" val="RWLatch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1880,690)" name="PREDECODE"> <a name="labelloc" val="east"/> </comp> <comp loc="(190,930)" name="CONST_GEN"/> <comp loc="(310,80)" name="DFF_Level"/> <comp loc="(360,390)" name="DECODER_TRANS"/> <comp loc="(370,580)" name="RANDOM_LOGIC"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,1300)" name="ABL"/> <comp loc="(400,1590)" name="ABH"/> <comp loc="(500,80)" name="DFF_Level"/> <comp loc="(620,180)" name="D_Latch"> <a name="label" val="irqp_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,1300)" name="REGS"/> <comp loc="(80,1120)" name="PRECHARGE"/> <wire from="(100,1320)" to="(100,1400)"/> <wire from="(100,1320)" to="(160,1320)"/> <wire from="(1000,120)" to="(1000,180)"/> <wire from="(1000,120)" to="(1110,120)"/> <wire from="(1000,180)" to="(1020,180)"/> <wire from="(1000,1820)" to="(1030,1820)"/> <wire from="(1000,530)" to="(1000,580)"/> <wire from="(1000,830)" to="(1000,870)"/> <wire from="(1000,870)" to="(1610,870)"/> <wire from="(1010,1340)" to="(1060,1340)"/> <wire from="(1010,1350)" to="(1060,1350)"/> <wire from="(1010,1360)" to="(1060,1360)"/> <wire from="(1010,1370)" to="(1060,1370)"/> <wire from="(1010,1380)" to="(1060,1380)"/> <wire from="(1010,1390)" to="(1060,1390)"/> <wire from="(1010,1400)" to="(1060,1400)"/> <wire from="(1010,1410)" to="(1060,1410)"/> <wire from="(1010,1420)" to="(1050,1420)"/> <wire from="(1010,1430)" to="(1040,1430)"/> <wire from="(1010,1440)" to="(1030,1440)"/> <wire from="(1010,1450)" to="(1020,1450)"/> <wire from="(1010,1460)" to="(1010,1470)"/> <wire from="(1010,1470)" to="(1060,1470)"/> <wire from="(1010,530)" to="(1010,580)"/> <wire from="(1020,1450)" to="(1020,1460)"/> <wire from="(1020,1460)" to="(1060,1460)"/> <wire from="(1020,530)" to="(1020,580)"/> <wire from="(1030,1440)" to="(1030,1450)"/> <wire from="(1030,1450)" to="(1060,1450)"/> <wire from="(1030,530)" to="(1030,580)"/> <wire from="(1030,790)" to="(1030,820)"/> <wire from="(1030,820)" to="(1310,820)"/> <wire from="(1040,1430)" to="(1040,1440)"/> <wire from="(1040,1440)" to="(1060,1440)"/> <wire from="(1040,530)" to="(1040,580)"/> <wire from="(1050,1090)" to="(1050,1320)"/> <wire from="(1050,1090)" to="(1380,1090)"/> <wire from="(1050,1320)" to="(1060,1320)"/> <wire from="(1050,1420)" to="(1050,1430)"/> <wire from="(1050,1430)" to="(1060,1430)"/> <wire from="(1050,1490)" to="(1060,1490)"/> <wire from="(1050,1500)" to="(1060,1500)"/> <wire from="(1050,1510)" to="(1060,1510)"/> <wire from="(1050,1520)" to="(1060,1520)"/> <wire from="(1050,1530)" to="(1060,1530)"/> <wire from="(1050,1570)" to="(1060,1570)"/> <wire from="(1050,1580)" to="(1060,1580)"/> <wire from="(1050,1590)" to="(1060,1590)"/> <wire from="(1050,1620)" to="(1060,1620)"/> <wire from="(1050,1630)" to="(1060,1630)"/> <wire from="(1050,1640)" to="(1060,1640)"/> <wire from="(1050,1650)" to="(1060,1650)"/> <wire from="(1050,1660)" to="(1060,1660)"/> <wire from="(1050,1670)" to="(1060,1670)"/> <wire from="(1050,1680)" to="(1060,1680)"/> <wire from="(1050,1690)" to="(1060,1690)"/> <wire from="(1050,1710)" to="(1060,1710)"/> <wire from="(1050,1720)" to="(1060,1720)"/> <wire from="(1050,1730)" to="(1060,1730)"/> <wire from="(1050,1740)" to="(1060,1740)"/> <wire from="(1050,1750)" to="(1060,1750)"/> <wire from="(1050,1760)" to="(1060,1760)"/> <wire from="(1050,1770)" to="(1060,1770)"/> <wire from="(1050,1780)" to="(1060,1780)"/> <wire from="(1050,1790)" to="(1060,1790)"/> <wire from="(1050,1800)" to="(1060,1800)"/> <wire from="(1050,1810)" to="(1060,1810)"/> <wire from="(1050,530)" to="(1050,580)"/> <wire from="(1060,200)" to="(1100,200)"/> <wire from="(1060,530)" to="(1060,580)"/> <wire from="(1070,530)" to="(1070,580)"/> <wire from="(1080,140)" to="(1080,180)"/> <wire from="(1080,140)" to="(1250,140)"/> <wire from="(1080,180)" to="(1100,180)"/> <wire from="(1080,530)" to="(1080,580)"/> <wire from="(1090,530)" to="(1090,580)"/> <wire from="(110,1090)" to="(270,1090)"/> <wire from="(110,120)" to="(110,1090)"/> <wire from="(110,120)" to="(290,120)"/> <wire from="(110,1330)" to="(110,1450)"/> <wire from="(110,1330)" to="(160,1330)"/> <wire from="(1100,1880)" to="(1100,1890)"/> <wire from="(1100,530)" to="(1100,580)"/> <wire from="(1100,770)" to="(1100,790)"/> <wire from="(1110,120)" to="(1330,120)"/> <wire from="(1110,530)" to="(1110,580)"/> <wire from="(1110,770)" to="(1110,790)"/> <wire from="(1110,80)" to="(1110,120)"/> <wire from="(1110,80)" to="(1130,80)"/> <wire from="(1120,100)" to="(1130,100)"/> <wire from="(1120,1880)" to="(1120,1890)"/> <wire from="(1120,530)" to="(1120,580)"/> <wire from="(1120,60)" to="(1120,100)"/> <wire from="(1120,770)" to="(1120,790)"/> <wire from="(1130,530)" to="(1130,580)"/> <wire from="(1130,770)" to="(1130,790)"/> <wire from="(1140,1880)" to="(1140,1890)"/> <wire from="(1140,200)" to="(1160,200)"/> <wire from="(1140,530)" to="(1140,580)"/> <wire from="(1140,770)" to="(1140,790)"/> <wire from="(1150,530)" to="(1150,580)"/> <wire from="(1150,770)" to="(1150,790)"/> <wire from="(1160,1880)" to="(1160,1890)"/> <wire from="(1160,200)" to="(1160,270)"/> <wire from="(1160,530)" to="(1160,580)"/> <wire from="(1160,770)" to="(1160,790)"/> <wire from="(1170,530)" to="(1170,580)"/> <wire from="(1170,770)" to="(1170,790)"/> <wire from="(1170,80)" to="(1240,80)"/> <wire from="(1180,530)" to="(1180,580)"/> <wire from="(1180,770)" to="(1180,790)"/> <wire from="(1190,530)" to="(1190,580)"/> <wire from="(1190,770)" to="(1190,790)"/> <wire from="(120,1340)" to="(120,1500)"/> <wire from="(120,1340)" to="(160,1340)"/> <wire from="(1200,1320)" to="(1210,1320)"/> <wire from="(1200,1330)" to="(1220,1330)"/> <wire from="(1200,1390)" to="(1210,1390)"/> <wire from="(1200,1400)" to="(1210,1400)"/> <wire from="(1200,1410)" to="(1210,1410)"/> <wire from="(1200,1420)" to="(1210,1420)"/> <wire from="(1200,1430)" to="(1210,1430)"/> <wire from="(1200,1440)" to="(1210,1440)"/> <wire from="(1200,1450)" to="(1210,1450)"/> <wire from="(1200,1460)" to="(1210,1460)"/> <wire from="(1200,1490)" to="(1210,1490)"/> <wire from="(1200,1500)" to="(1210,1500)"/> <wire from="(1200,1510)" to="(1210,1510)"/> <wire from="(1200,1520)" to="(1210,1520)"/> <wire from="(1200,1530)" to="(1210,1530)"/> <wire from="(1200,1540)" to="(1210,1540)"/> <wire from="(1200,1550)" to="(1210,1550)"/> <wire from="(1200,1560)" to="(1210,1560)"/> <wire from="(1200,1590)" to="(1210,1590)"/> <wire from="(1200,1600)" to="(1210,1600)"/> <wire from="(1200,1610)" to="(1210,1610)"/> <wire from="(1200,1620)" to="(1210,1620)"/> <wire from="(1200,1630)" to="(1210,1630)"/> <wire from="(1200,1640)" to="(1210,1640)"/> <wire from="(1200,1650)" to="(1210,1650)"/> <wire from="(1200,1660)" to="(1210,1660)"/> <wire from="(1200,1690)" to="(1210,1690)"/> <wire from="(1200,1700)" to="(1210,1700)"/> <wire from="(1200,1710)" to="(1210,1710)"/> <wire from="(1200,1720)" to="(1210,1720)"/> <wire from="(1200,1730)" to="(1210,1730)"/> <wire from="(1200,1740)" to="(1210,1740)"/> <wire from="(1200,1750)" to="(1210,1750)"/> <wire from="(1200,1760)" to="(1210,1760)"/> <wire from="(1200,530)" to="(1200,580)"/> <wire from="(1200,770)" to="(1200,790)"/> <wire from="(1200,940)" to="(1200,950)"/> <wire from="(1200,940)" to="(1330,940)"/> <wire from="(1210,530)" to="(1210,580)"/> <wire from="(1210,770)" to="(1210,790)"/> <wire from="(1210,890)" to="(1210,1320)"/> <wire from="(1220,530)" to="(1220,580)"/> <wire from="(1220,770)" to="(1220,790)"/> <wire from="(1220,900)" to="(1220,1330)"/> <wire from="(1230,1230)" to="(1230,1380)"/> <wire from="(1230,1480)" to="(1240,1480)"/> <wire from="(1230,1580)" to="(1250,1580)"/> <wire from="(1230,1680)" to="(1260,1680)"/> <wire from="(1230,530)" to="(1230,580)"/> <wire from="(1230,770)" to="(1230,790)"/> <wire from="(1230,950)" to="(1230,980)"/> <wire from="(1230,950)" to="(1330,950)"/> <wire from="(1240,1190)" to="(1240,1480)"/> <wire from="(1240,1190)" to="(1530,1190)"/> <wire from="(1240,190)" to="(1260,190)"/> <wire from="(1240,530)" to="(1240,580)"/> <wire from="(1240,770)" to="(1240,790)"/> <wire from="(1240,80)" to="(1240,190)"/> <wire from="(1240,910)" to="(1240,1050)"/> <wire from="(1240,910)" to="(1330,910)"/> <wire from="(1250,1150)" to="(1250,1580)"/> <wire from="(1250,1150)" to="(1570,1150)"/> <wire from="(1250,140)" to="(1250,170)"/> <wire from="(1250,140)" to="(1420,140)"/> <wire from="(1250,170)" to="(1260,170)"/> <wire from="(1250,530)" to="(1250,580)"/> <wire from="(1250,770)" to="(1250,790)"/> <wire from="(1250,920)" to="(1250,1040)"/> <wire from="(1250,920)" to="(1330,920)"/> <wire from="(1260,1110)" to="(1260,1680)"/> <wire from="(1260,1110)" to="(1580,1110)"/> <wire from="(1260,530)" to="(1260,580)"/> <wire from="(1260,770)" to="(1260,790)"/> <wire from="(1260,930)" to="(1260,1020)"/> <wire from="(1260,930)" to="(1330,930)"/> <wire from="(1270,1120)" to="(1270,1660)"/> <wire from="(1270,1120)" to="(1890,1120)"/> <wire from="(1270,1660)" to="(1360,1660)"/> <wire from="(1270,530)" to="(1270,580)"/> <wire from="(1270,960)" to="(1270,1000)"/> <wire from="(1270,960)" to="(1330,960)"/> <wire from="(1280,1020)" to="(1280,1080)"/> <wire from="(1280,1020)" to="(1290,1020)"/> <wire from="(1280,1160)" to="(1280,1570)"/> <wire from="(1280,1160)" to="(1870,1160)"/> <wire from="(1280,1570)" to="(1360,1570)"/> <wire from="(1280,530)" to="(1280,580)"/> <wire from="(1280,970)" to="(1280,990)"/> <wire from="(1280,970)" to="(1330,970)"/> <wire from="(1290,1070)" to="(1290,1340)"/> <wire from="(1290,530)" to="(1290,580)"/> <wire from="(1290,990)" to="(1290,1020)"/> <wire from="(1290,990)" to="(1330,990)"/> <wire from="(130,1060)" to="(260,1060)"/> <wire from="(130,1350)" to="(130,1550)"/> <wire from="(130,1350)" to="(160,1350)"/> <wire from="(130,140)" to="(130,1060)"/> <wire from="(130,140)" to="(570,140)"/> <wire from="(1300,1000)" to="(1300,1100)"/> <wire from="(1300,1000)" to="(1330,1000)"/> <wire from="(1300,190)" to="(1310,190)"/> <wire from="(1300,530)" to="(1300,580)"/> <wire from="(1300,880)" to="(1300,980)"/> <wire from="(1300,980)" to="(1330,980)"/> <wire from="(1310,1010)" to="(1330,1010)"/> <wire from="(1310,1350)" to="(1400,1350)"/> <wire from="(1310,1360)" to="(1400,1360)"/> <wire from="(1310,1370)" to="(1400,1370)"/> <wire from="(1310,1380)" to="(1400,1380)"/> <wire from="(1310,1390)" to="(1380,1390)"/> <wire from="(1310,1400)" to="(1370,1400)"/> <wire from="(1310,1410)" to="(1360,1410)"/> <wire from="(1310,1420)" to="(1350,1420)"/> <wire from="(1310,1430)" to="(1320,1430)"/> <wire from="(1310,190)" to="(1310,250)"/> <wire from="(1310,530)" to="(1310,580)"/> <wire from="(1310,820)" to="(1310,1010)"/> <wire from="(1320,1020)" to="(1330,1020)"/> <wire from="(1320,1430)" to="(1320,1450)"/> <wire from="(1320,1450)" to="(1400,1450)"/> <wire from="(1320,530)" to="(1320,580)"/> <wire from="(1320,800)" to="(1320,1020)"/> <wire from="(1330,120)" to="(1420,120)"/> <wire from="(1330,530)" to="(1330,580)"/> <wire from="(1330,60)" to="(1330,120)"/> <wire from="(1340,530)" to="(1340,580)"/> <wire from="(1350,1420)" to="(1350,1430)"/> <wire from="(1350,1430)" to="(1400,1430)"/> <wire from="(1350,530)" to="(1350,580)"/> <wire from="(1360,1410)" to="(1360,1420)"/> <wire from="(1360,1420)" to="(1400,1420)"/> <wire from="(1360,530)" to="(1360,580)"/> <wire from="(1370,1400)" to="(1370,1410)"/> <wire from="(1370,1410)" to="(1400,1410)"/> <wire from="(1370,530)" to="(1370,580)"/> <wire from="(1380,1090)" to="(1380,1330)"/> <wire from="(1380,1090)" to="(1670,1090)"/> <wire from="(1380,1330)" to="(1400,1330)"/> <wire from="(1380,1390)" to="(1380,1400)"/> <wire from="(1380,1400)" to="(1400,1400)"/> <wire from="(1380,1490)" to="(1400,1490)"/> <wire from="(1380,1500)" to="(1400,1500)"/> <wire from="(1380,1510)" to="(1400,1510)"/> <wire from="(1380,1520)" to="(1400,1520)"/> <wire from="(1380,1530)" to="(1400,1530)"/> <wire from="(1380,1540)" to="(1400,1540)"/> <wire from="(1380,1550)" to="(1400,1550)"/> <wire from="(1380,1560)" to="(1400,1560)"/> <wire from="(1380,1580)" to="(1400,1580)"/> <wire from="(1380,1590)" to="(1400,1590)"/> <wire from="(1380,1600)" to="(1400,1600)"/> <wire from="(1380,1610)" to="(1400,1610)"/> <wire from="(1380,1620)" to="(1400,1620)"/> <wire from="(1380,1630)" to="(1400,1630)"/> <wire from="(1380,1640)" to="(1400,1640)"/> <wire from="(1380,1650)" to="(1400,1650)"/> <wire from="(1380,530)" to="(1380,580)"/> <wire from="(1390,530)" to="(1390,580)"/> <wire from="(140,1360)" to="(140,1600)"/> <wire from="(140,1360)" to="(160,1360)"/> <wire from="(1400,530)" to="(1400,580)"/> <wire from="(1410,530)" to="(1410,580)"/> <wire from="(1420,530)" to="(1420,580)"/> <wire from="(1430,530)" to="(1430,580)"/> <wire from="(1440,1670)" to="(1440,1680)"/> <wire from="(1440,530)" to="(1440,580)"/> <wire from="(1440,770)" to="(1440,790)"/> <wire from="(1440,920)" to="(1450,920)"/> <wire from="(1440,930)" to="(1450,930)"/> <wire from="(1440,940)" to="(1450,940)"/> <wire from="(1440,970)" to="(1460,970)"/> <wire from="(1450,530)" to="(1450,580)"/> <wire from="(1450,770)" to="(1450,790)"/> <wire from="(1460,530)" to="(1460,580)"/> <wire from="(1460,770)" to="(1460,790)"/> <wire from="(1470,530)" to="(1470,580)"/> <wire from="(1470,770)" to="(1470,790)"/> <wire from="(1470,910)" to="(1480,910)"/> <wire from="(1480,1670)" to="(1480,1680)"/> <wire from="(1480,530)" to="(1480,580)"/> <wire from="(1480,770)" to="(1480,790)"/> <wire from="(1490,530)" to="(1490,580)"/> <wire from="(1490,770)" to="(1490,790)"/> <wire from="(150,1150)" to="(190,1150)"/> <wire from="(150,1170)" to="(180,1170)"/> <wire from="(150,1190)" to="(170,1190)"/> <wire from="(150,1210)" to="(160,1210)"/> <wire from="(150,1370)" to="(150,1650)"/> <wire from="(150,1370)" to="(160,1370)"/> <wire from="(150,210)" to="(150,590)"/> <wire from="(150,210)" to="(390,210)"/> <wire from="(150,590)" to="(360,590)"/> <wire from="(150,890)" to="(150,980)"/> <wire from="(150,890)" to="(300,890)"/> <wire from="(150,980)" to="(160,980)"/> <wire from="(1500,530)" to="(1500,580)"/> <wire from="(1500,770)" to="(1500,790)"/> <wire from="(1510,530)" to="(1510,580)"/> <wire from="(1510,60)" to="(1510,290)"/> <wire from="(1510,770)" to="(1510,790)"/> <wire from="(1520,1200)" to="(1600,1200)"/> <wire from="(1520,1350)" to="(1540,1350)"/> <wire from="(1520,1360)" to="(1540,1360)"/> <wire from="(1520,1370)" to="(1540,1370)"/> <wire from="(1520,1380)" to="(1540,1380)"/> <wire from="(1520,1390)" to="(1540,1390)"/> <wire from="(1520,1400)" to="(1540,1400)"/> <wire from="(1520,1410)" to="(1540,1410)"/> <wire from="(1520,1420)" to="(1540,1420)"/> <wire from="(1520,1490)" to="(1540,1490)"/> <wire from="(1520,1500)" to="(1540,1500)"/> <wire from="(1520,1510)" to="(1540,1510)"/> <wire from="(1520,1520)" to="(1540,1520)"/> <wire from="(1520,1530)" to="(1540,1530)"/> <wire from="(1520,1540)" to="(1540,1540)"/> <wire from="(1520,1550)" to="(1540,1550)"/> <wire from="(1520,1560)" to="(1540,1560)"/> <wire from="(1520,1580)" to="(1540,1580)"/> <wire from="(1520,1590)" to="(1540,1590)"/> <wire from="(1520,1600)" to="(1540,1600)"/> <wire from="(1520,1610)" to="(1540,1610)"/> <wire from="(1520,1620)" to="(1540,1620)"/> <wire from="(1520,1630)" to="(1540,1630)"/> <wire from="(1520,1640)" to="(1540,1640)"/> <wire from="(1520,1650)" to="(1540,1650)"/> <wire from="(1520,530)" to="(1520,580)"/> <wire from="(1520,810)" to="(1520,1200)"/> <wire from="(1530,1190)" to="(1560,1190)"/> <wire from="(1530,530)" to="(1530,580)"/> <wire from="(1530,840)" to="(1530,1190)"/> <wire from="(1530,840)" to="(1710,840)"/> <wire from="(1540,530)" to="(1540,580)"/> <wire from="(1550,530)" to="(1550,580)"/> <wire from="(1560,1190)" to="(1560,1340)"/> <wire from="(1560,1190)" to="(1880,1190)"/> <wire from="(1560,1480)" to="(1570,1480)"/> <wire from="(1560,1570)" to="(1580,1570)"/> <wire from="(1560,530)" to="(1560,580)"/> <wire from="(1570,1150)" to="(1570,1480)"/> <wire from="(1570,1150)" to="(1890,1150)"/> <wire from="(1570,530)" to="(1570,580)"/> <wire from="(1580,1110)" to="(1580,1570)"/> <wire from="(1580,1110)" to="(1900,1110)"/> <wire from="(1580,530)" to="(1580,580)"/> <wire from="(1590,140)" to="(1610,140)"/> <wire from="(1590,530)" to="(1590,580)"/> <wire from="(1590,770)" to="(1590,790)"/> <wire from="(1590,90)" to="(1590,140)"/> <wire from="(1590,90)" to="(1700,90)"/> <wire from="(160,1130)" to="(160,1210)"/> <wire from="(160,1130)" to="(180,1130)"/> <wire from="(1600,1200)" to="(1600,1590)"/> <wire from="(1600,1590)" to="(1650,1590)"/> <wire from="(1600,530)" to="(1600,580)"/> <wire from="(1600,770)" to="(1600,790)"/> <wire from="(1610,530)" to="(1610,580)"/> <wire from="(1610,770)" to="(1610,790)"/> <wire from="(1610,870)" to="(1610,1360)"/> <wire from="(1620,530)" to="(1620,580)"/> <wire from="(1620,770)" to="(1620,790)"/> <wire from="(1630,1370)" to="(1690,1370)"/> <wire from="(1630,1380)" to="(1660,1380)"/> <wire from="(1630,1390)" to="(1690,1390)"/> <wire from="(1630,530)" to="(1630,580)"/> <wire from="(1630,770)" to="(1630,790)"/> <wire from="(1640,1350)" to="(1690,1350)"/> <wire from="(1640,530)" to="(1640,580)"/> <wire from="(1640,770)" to="(1640,790)"/> <wire from="(1640,930)" to="(1640,1350)"/> <wire from="(1640,930)" to="(1780,930)"/> <wire from="(1650,130)" to="(2080,130)"/> <wire from="(1650,150)" to="(1730,150)"/> <wire from="(1650,1690)" to="(1650,1730)"/> <wire from="(1650,1730)" to="(1930,1730)"/> <wire from="(1650,530)" to="(1650,580)"/> <wire from="(1650,770)" to="(1650,790)"/> <wire from="(1660,1380)" to="(1660,1410)"/> <wire from="(1660,1410)" to="(1690,1410)"/> <wire from="(1660,530)" to="(1660,580)"/> <wire from="(1660,770)" to="(1660,790)"/> <wire from="(1670,1090)" to="(1670,1320)"/> <wire from="(1670,1090)" to="(2080,1090)"/> <wire from="(1670,1320)" to="(1690,1320)"/> <wire from="(1670,1510)" to="(1690,1510)"/> <wire from="(1670,1520)" to="(1690,1520)"/> <wire from="(1670,1530)" to="(1690,1530)"/> <wire from="(1670,1540)" to="(1690,1540)"/> <wire from="(1670,1550)" to="(1690,1550)"/> <wire from="(1670,1560)" to="(1690,1560)"/> <wire from="(1670,1570)" to="(1690,1570)"/> <wire from="(1670,1580)" to="(1690,1580)"/> <wire from="(1670,1610)" to="(1690,1610)"/> <wire from="(1670,1620)" to="(1690,1620)"/> <wire from="(1670,1630)" to="(1690,1630)"/> <wire from="(1670,1640)" to="(1690,1640)"/> <wire from="(1670,1650)" to="(1690,1650)"/> <wire from="(1670,1660)" to="(1690,1660)"/> <wire from="(1670,1670)" to="(1690,1670)"/> <wire from="(1670,1680)" to="(1690,1680)"/> <wire from="(1670,390)" to="(1690,390)"/> <wire from="(1670,400)" to="(1770,400)"/> <wire from="(1670,410)" to="(1770,410)"/> <wire from="(1670,420)" to="(1770,420)"/> <wire from="(1670,430)" to="(1770,430)"/> <wire from="(1670,440)" to="(1730,440)"/> <wire from="(1670,450)" to="(1770,450)"/> <wire from="(1670,460)" to="(1770,460)"/> <wire from="(1670,810)" to="(1710,810)"/> <wire from="(1680,1060)" to="(1680,1310)"/> <wire from="(1680,1060)" to="(2060,1060)"/> <wire from="(1680,1310)" to="(1690,1310)"/> <wire from="(1680,600)" to="(2060,600)"/> <wire from="(1680,610)" to="(2080,610)"/> <wire from="(1680,620)" to="(1690,620)"/> <wire from="(1680,630)" to="(1700,630)"/> <wire from="(1680,670)" to="(1830,670)"/> <wire from="(1680,680)" to="(1780,680)"/> <wire from="(1680,690)" to="(1760,690)"/> <wire from="(1680,720)" to="(1710,720)"/> <wire from="(1680,740)" to="(1690,740)"/> <wire from="(1690,390)" to="(1690,620)"/> <wire from="(1690,390)" to="(1770,390)"/> <wire from="(1690,740)" to="(1690,780)"/> <wire from="(1690,780)" to="(1870,780)"/> <wire from="(170,230)" to="(170,600)"/> <wire from="(170,230)" to="(640,230)"/> <wire from="(170,600)" to="(360,600)"/> <wire from="(170,990)" to="(170,1190)"/> <wire from="(170,990)" to="(190,990)"/> <wire from="(1700,60)" to="(1700,90)"/> <wire from="(1710,720)" to="(1710,760)"/> <wire from="(1710,760)" to="(1870,760)"/> <wire from="(1710,810)" to="(1710,840)"/> <wire from="(1720,630)" to="(1730,630)"/> <wire from="(1730,150)" to="(1730,220)"/> <wire from="(1730,150)" to="(2060,150)"/> <wire from="(1730,220)" to="(1760,220)"/> <wire from="(1730,440)" to="(1730,630)"/> <wire from="(1730,440)" to="(1770,440)"/> <wire from="(1740,1700)" to="(1740,1710)"/> <wire from="(1750,240)" to="(1750,280)"/> <wire from="(1750,240)" to="(1760,240)"/> <wire from="(1750,280)" to="(1840,280)"/> <wire from="(1760,690)" to="(1760,740)"/> <wire from="(1760,740)" to="(1870,740)"/> <wire from="(1780,680)" to="(1780,930)"/> <wire from="(1780,680)" to="(1840,680)"/> <wire from="(1790,1700)" to="(1790,1710)"/> <wire from="(180,1010)" to="(180,1130)"/> <wire from="(180,1010)" to="(190,1010)"/> <wire from="(180,1170)" to="(180,1200)"/> <wire from="(180,1200)" to="(960,1200)"/> <wire from="(180,1290)" to="(200,1290)"/> <wire from="(180,930)" to="(190,930)"/> <wire from="(180,940)" to="(190,940)"/> <wire from="(180,950)" to="(190,950)"/> <wire from="(180,960)" to="(190,960)"/> <wire from="(180,970)" to="(190,970)"/> <wire from="(1800,240)" to="(1840,240)"/> <wire from="(1800,360)" to="(1950,360)"/> <wire from="(1800,370)" to="(1940,370)"/> <wire from="(1800,380)" to="(1930,380)"/> <wire from="(1800,390)" to="(1920,390)"/> <wire from="(1800,400)" to="(1910,400)"/> <wire from="(1800,410)" to="(1900,410)"/> <wire from="(1800,420)" to="(1890,420)"/> <wire from="(1800,430)" to="(1880,430)"/> <wire from="(1800,450)" to="(2060,450)"/> <wire from="(1800,460)" to="(1830,460)"/> <wire from="(1830,460)" to="(1830,670)"/> <wire from="(1840,1310)" to="(1860,1310)"/> <wire from="(1840,1320)" to="(1860,1320)"/> <wire from="(1840,1330)" to="(1860,1330)"/> <wire from="(1840,1340)" to="(1860,1340)"/> <wire from="(1840,1350)" to="(1860,1350)"/> <wire from="(1840,1360)" to="(1860,1360)"/> <wire from="(1840,1370)" to="(1860,1370)"/> <wire from="(1840,1380)" to="(1860,1380)"/> <wire from="(1840,1410)" to="(1860,1410)"/> <wire from="(1840,1420)" to="(1860,1420)"/> <wire from="(1840,1430)" to="(1860,1430)"/> <wire from="(1840,1440)" to="(1860,1440)"/> <wire from="(1840,1450)" to="(1860,1450)"/> <wire from="(1840,1460)" to="(1860,1460)"/> <wire from="(1840,1470)" to="(1860,1470)"/> <wire from="(1840,1480)" to="(1860,1480)"/> <wire from="(1840,1510)" to="(1860,1510)"/> <wire from="(1840,1520)" to="(1860,1520)"/> <wire from="(1840,1530)" to="(1860,1530)"/> <wire from="(1840,1540)" to="(1860,1540)"/> <wire from="(1840,1550)" to="(1860,1550)"/> <wire from="(1840,1560)" to="(1860,1560)"/> <wire from="(1840,1570)" to="(1860,1570)"/> <wire from="(1840,1580)" to="(1860,1580)"/> <wire from="(1840,1610)" to="(1860,1610)"/> <wire from="(1840,1620)" to="(1860,1620)"/> <wire from="(1840,1630)" to="(1860,1630)"/> <wire from="(1840,1640)" to="(1860,1640)"/> <wire from="(1840,1650)" to="(1860,1650)"/> <wire from="(1840,1660)" to="(1860,1660)"/> <wire from="(1840,1670)" to="(1860,1670)"/> <wire from="(1840,1680)" to="(1860,1680)"/> <wire from="(1840,280)" to="(1840,680)"/> <wire from="(1840,60)" to="(1840,240)"/> <wire from="(1880,1190)" to="(1880,1300)"/> <wire from="(1880,1400)" to="(1890,1400)"/> <wire from="(1880,1500)" to="(1900,1500)"/> <wire from="(1880,1600)" to="(1990,1600)"/> <wire from="(1880,430)" to="(1880,690)"/> <wire from="(1880,820)" to="(1880,840)"/> <wire from="(1890,1150)" to="(1890,1400)"/> <wire from="(1890,420)" to="(1890,690)"/> <wire from="(1890,820)" to="(1890,840)"/> <wire from="(190,1150)" to="(190,1240)"/> <wire from="(190,1240)" to="(620,1240)"/> <wire from="(190,250)" to="(1310,250)"/> <wire from="(190,250)" to="(190,610)"/> <wire from="(190,610)" to="(360,610)"/> <wire from="(1900,1110)" to="(1900,1500)"/> <wire from="(1900,410)" to="(1900,690)"/> <wire from="(1900,820)" to="(1900,840)"/> <wire from="(1910,400)" to="(1910,690)"/> <wire from="(1910,820)" to="(1910,840)"/> <wire from="(1920,390)" to="(1920,690)"/> <wire from="(1920,820)" to="(1920,840)"/> <wire from="(1930,1120)" to="(1930,1730)"/> <wire from="(1930,1120)" to="(1970,1120)"/> <wire from="(1930,380)" to="(1930,690)"/> <wire from="(1930,820)" to="(1930,840)"/> <wire from="(1940,370)" to="(1940,690)"/> <wire from="(1940,820)" to="(1940,840)"/> <wire from="(1950,360)" to="(1950,690)"/> <wire from="(1950,820)" to="(1950,840)"/> <wire from="(1960,710)" to="(2080,710)"/> <wire from="(1960,860)" to="(1970,860)"/> <wire from="(1970,1120)" to="(1970,1160)"/> <wire from="(1970,1160)" to="(1990,1160)"/> <wire from="(1970,860)" to="(1970,1120)"/> <wire from="(1990,1600)" to="(1990,1610)"/> <wire from="(200,1120)" to="(240,1120)"/> <wire from="(200,1160)" to="(250,1160)"/> <wire from="(200,1290)" to="(200,1540)"/> <wire from="(200,1540)" to="(600,1540)"/> <wire from="(200,700)" to="(360,700)"/> <wire from="(2000,1180)" to="(2000,1580)"/> <wire from="(2000,1580)" to="(2100,1580)"/> <wire from="(2000,1630)" to="(2000,1990)"/> <wire from="(2000,1990)" to="(2100,1990)"/> <wire from="(2010,1180)" to="(2010,1540)"/> <wire from="(2010,1540)" to="(2100,1540)"/> <wire from="(2010,1630)" to="(2010,1950)"/> <wire from="(2010,1950)" to="(2100,1950)"/> <wire from="(2020,1180)" to="(2020,1500)"/> <wire from="(2020,1500)" to="(2100,1500)"/> <wire from="(2020,1630)" to="(2020,1910)"/> <wire from="(2020,1910)" to="(2100,1910)"/> <wire from="(2030,1180)" to="(2030,1460)"/> <wire from="(2030,1460)" to="(2100,1460)"/> <wire from="(2030,1630)" to="(2030,1870)"/> <wire from="(2030,1870)" to="(2100,1870)"/> <wire from="(2040,1180)" to="(2040,1420)"/> <wire from="(2040,1420)" to="(2100,1420)"/> <wire from="(2040,1630)" to="(2040,1830)"/> <wire from="(2040,1830)" to="(2100,1830)"/> <wire from="(2050,1180)" to="(2050,1380)"/> <wire from="(2050,1380)" to="(2100,1380)"/> <wire from="(2050,1630)" to="(2050,1790)"/> <wire from="(2050,1790)" to="(2100,1790)"/> <wire from="(2060,1180)" to="(2060,1340)"/> <wire from="(2060,1340)" to="(2100,1340)"/> <wire from="(2060,150)" to="(2060,450)"/> <wire from="(2060,1630)" to="(2060,1750)"/> <wire from="(2060,1750)" to="(2100,1750)"/> <wire from="(2060,450)" to="(2060,600)"/> <wire from="(2060,600)" to="(2060,1060)"/> <wire from="(2070,1180)" to="(2070,1300)"/> <wire from="(2070,1300)" to="(2100,1300)"/> <wire from="(2070,1630)" to="(2070,1710)"/> <wire from="(2070,1710)" to="(2100,1710)"/> <wire from="(2080,130)" to="(2080,610)"/> <wire from="(2080,610)" to="(2080,710)"/> <wire from="(2080,710)" to="(2080,1090)"/> <wire from="(210,1190)" to="(1240,1190)"/> <wire from="(210,1190)" to="(210,1250)"/> <wire from="(210,270)" to="(1160,270)"/> <wire from="(210,270)" to="(210,630)"/> <wire from="(210,630)" to="(360,630)"/> <wire from="(220,1150)" to="(220,1260)"/> <wire from="(220,1150)" to="(920,1150)"/> <wire from="(230,1110)" to="(1260,1110)"/> <wire from="(230,1110)" to="(230,1270)"/> <wire from="(230,290)" to="(1510,290)"/> <wire from="(230,290)" to="(230,720)"/> <wire from="(230,720)" to="(360,720)"/> <wire from="(240,1120)" to="(240,1770)"/> <wire from="(240,1120)" to="(290,1120)"/> <wire from="(240,1770)" to="(360,1770)"/> <wire from="(250,1160)" to="(250,1490)"/> <wire from="(250,1160)" to="(300,1160)"/> <wire from="(250,1490)" to="(360,1490)"/> <wire from="(250,1520)" to="(250,1600)"/> <wire from="(250,1520)" to="(270,1520)"/> <wire from="(250,1600)" to="(400,1600)"/> <wire from="(250,310)" to="(250,620)"/> <wire from="(250,310)" to="(960,310)"/> <wire from="(250,620)" to="(360,620)"/> <wire from="(260,1060)" to="(260,1590)"/> <wire from="(260,1060)" to="(380,1060)"/> <wire from="(260,1590)" to="(400,1590)"/> <wire from="(270,1090)" to="(270,1520)"/> <wire from="(270,1090)" to="(370,1090)"/> <wire from="(280,1010)" to="(290,1010)"/> <wire from="(280,390)" to="(280,690)"/> <wire from="(280,390)" to="(360,390)"/> <wire from="(280,690)" to="(360,690)"/> <wire from="(280,990)" to="(300,990)"/> <wire from="(290,1010)" to="(290,1120)"/> <wire from="(290,1120)" to="(950,1120)"/> <wire from="(290,120)" to="(480,120)"/> <wire from="(290,400)" to="(290,680)"/> <wire from="(290,400)" to="(360,400)"/> <wire from="(290,680)" to="(360,680)"/> <wire from="(290,80)" to="(290,120)"/> <wire from="(290,80)" to="(310,80)"/> <wire from="(300,100)" to="(310,100)"/> <wire from="(300,1160)" to="(940,1160)"/> <wire from="(300,410)" to="(300,670)"/> <wire from="(300,410)" to="(360,410)"/> <wire from="(300,60)" to="(300,100)"/> <wire from="(300,670)" to="(360,670)"/> <wire from="(300,890)" to="(300,960)"/> <wire from="(300,960)" to="(920,960)"/> <wire from="(300,990)" to="(300,1160)"/> <wire from="(310,420)" to="(310,660)"/> <wire from="(310,420)" to="(360,420)"/> <wire from="(310,660)" to="(360,660)"/> <wire from="(310,970)" to="(310,1320)"/> <wire from="(310,970)" to="(940,970)"/> <wire from="(320,430)" to="(320,650)"/> <wire from="(320,430)" to="(360,430)"/> <wire from="(320,650)" to="(360,650)"/> <wire from="(330,1330)" to="(400,1330)"/> <wire from="(330,1340)" to="(340,1340)"/> <wire from="(330,440)" to="(330,640)"/> <wire from="(330,440)" to="(360,440)"/> <wire from="(330,640)" to="(360,640)"/> <wire from="(340,1340)" to="(340,1620)"/> <wire from="(340,1620)" to="(400,1620)"/> <wire from="(350,100)" to="(360,100)"/> <wire from="(370,1090)" to="(370,1310)"/> <wire from="(370,1090)" to="(710,1090)"/> <wire from="(370,1310)" to="(400,1310)"/> <wire from="(370,1820)" to="(370,1840)"/> <wire from="(370,1820)" to="(600,1820)"/> <wire from="(370,530)" to="(370,580)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(380,1060)" to="(1680,1060)"/> <wire from="(380,1060)" to="(380,1300)"/> <wire from="(380,1300)" to="(400,1300)"/> <wire from="(380,1410)" to="(400,1410)"/> <wire from="(380,1420)" to="(400,1420)"/> <wire from="(380,1430)" to="(400,1430)"/> <wire from="(380,1440)" to="(400,1440)"/> <wire from="(380,1450)" to="(400,1450)"/> <wire from="(380,1460)" to="(400,1460)"/> <wire from="(380,1470)" to="(400,1470)"/> <wire from="(380,1480)" to="(400,1480)"/> <wire from="(380,1690)" to="(400,1690)"/> <wire from="(380,1700)" to="(400,1700)"/> <wire from="(380,1710)" to="(400,1710)"/> <wire from="(380,1720)" to="(400,1720)"/> <wire from="(380,1730)" to="(400,1730)"/> <wire from="(380,1740)" to="(400,1740)"/> <wire from="(380,1750)" to="(400,1750)"/> <wire from="(380,1760)" to="(400,1760)"/> <wire from="(380,1860)" to="(380,1940)"/> <wire from="(380,530)" to="(380,580)"/> <wire from="(390,100)" to="(390,210)"/> <wire from="(390,1050)" to="(1240,1050)"/> <wire from="(390,1860)" to="(390,1930)"/> <wire from="(390,1930)" to="(430,1930)"/> <wire from="(390,530)" to="(390,580)"/> <wire from="(390,770)" to="(390,790)"/> <wire from="(390,790)" to="(390,1050)"/> <wire from="(40,1130)" to="(80,1130)"/> <wire from="(40,1150)" to="(40,1230)"/> <wire from="(40,1150)" to="(80,1150)"/> <wire from="(40,1230)" to="(900,1230)"/> <wire from="(40,860)" to="(40,1130)"/> <wire from="(40,860)" to="(510,860)"/> <wire from="(400,1860)" to="(400,1920)"/> <wire from="(400,1920)" to="(480,1920)"/> <wire from="(400,530)" to="(400,580)"/> <wire from="(400,770)" to="(400,790)"/> <wire from="(410,1040)" to="(1250,1040)"/> <wire from="(410,1860)" to="(410,1910)"/> <wire from="(410,1910)" to="(530,1910)"/> <wire from="(410,530)" to="(410,580)"/> <wire from="(410,770)" to="(410,790)"/> <wire from="(410,790)" to="(410,1040)"/> <wire from="(420,1860)" to="(420,1900)"/> <wire from="(420,1900)" to="(580,1900)"/> <wire from="(420,530)" to="(420,580)"/> <wire from="(420,770)" to="(420,790)"/> <wire from="(430,1860)" to="(430,1890)"/> <wire from="(430,1890)" to="(630,1890)"/> <wire from="(430,1930)" to="(430,1940)"/> <wire from="(430,530)" to="(430,580)"/> <wire from="(430,770)" to="(430,790)"/> <wire from="(440,1860)" to="(440,1880)"/> <wire from="(440,1880)" to="(680,1880)"/> <wire from="(440,530)" to="(440,580)"/> <wire from="(440,770)" to="(440,790)"/> <wire from="(450,1860)" to="(450,1870)"/> <wire from="(450,1870)" to="(730,1870)"/> <wire from="(450,530)" to="(450,580)"/> <wire from="(450,770)" to="(450,790)"/> <wire from="(460,1020)" to="(1260,1020)"/> <wire from="(460,530)" to="(460,580)"/> <wire from="(460,770)" to="(460,790)"/> <wire from="(460,790)" to="(460,1020)"/> <wire from="(470,1010)" to="(630,1010)"/> <wire from="(470,530)" to="(470,580)"/> <wire from="(470,810)" to="(470,1010)"/> <wire from="(480,120)" to="(1000,120)"/> <wire from="(480,1920)" to="(480,1940)"/> <wire from="(480,530)" to="(480,580)"/> <wire from="(480,80)" to="(480,120)"/> <wire from="(480,80)" to="(500,80)"/> <wire from="(490,100)" to="(500,100)"/> <wire from="(490,530)" to="(490,580)"/> <wire from="(490,60)" to="(490,100)"/> <wire from="(490,770)" to="(490,790)"/> <wire from="(50,1140)" to="(80,1140)"/> <wire from="(50,1170)" to="(50,1250)"/> <wire from="(50,1170)" to="(80,1170)"/> <wire from="(50,1250)" to="(210,1250)"/> <wire from="(50,870)" to="(50,1140)"/> <wire from="(50,870)" to="(520,870)"/> <wire from="(500,530)" to="(500,580)"/> <wire from="(500,770)" to="(500,790)"/> <wire from="(510,530)" to="(510,580)"/> <wire from="(510,770)" to="(510,790)"/> <wire from="(510,790)" to="(510,860)"/> <wire from="(520,530)" to="(520,580)"/> <wire from="(520,770)" to="(520,790)"/> <wire from="(520,790)" to="(520,870)"/> <wire from="(530,1910)" to="(530,1940)"/> <wire from="(530,530)" to="(530,580)"/> <wire from="(530,770)" to="(530,790)"/> <wire from="(540,100)" to="(560,100)"/> <wire from="(540,1000)" to="(1270,1000)"/> <wire from="(540,1410)" to="(560,1410)"/> <wire from="(540,1420)" to="(560,1420)"/> <wire from="(540,1430)" to="(560,1430)"/> <wire from="(540,1440)" to="(560,1440)"/> <wire from="(540,1450)" to="(560,1450)"/> <wire from="(540,1460)" to="(560,1460)"/> <wire from="(540,1470)" to="(560,1470)"/> <wire from="(540,1480)" to="(560,1480)"/> <wire from="(540,1690)" to="(560,1690)"/> <wire from="(540,1700)" to="(560,1700)"/> <wire from="(540,1710)" to="(560,1710)"/> <wire from="(540,1720)" to="(560,1720)"/> <wire from="(540,1730)" to="(560,1730)"/> <wire from="(540,1740)" to="(560,1740)"/> <wire from="(540,1750)" to="(560,1750)"/> <wire from="(540,1760)" to="(560,1760)"/> <wire from="(540,530)" to="(540,580)"/> <wire from="(540,770)" to="(540,790)"/> <wire from="(540,790)" to="(540,1000)"/> <wire from="(550,530)" to="(550,580)"/> <wire from="(550,770)" to="(550,790)"/> <wire from="(550,790)" to="(550,990)"/> <wire from="(550,990)" to="(1280,990)"/> <wire from="(560,100)" to="(560,190)"/> <wire from="(560,190)" to="(580,190)"/> <wire from="(560,530)" to="(560,580)"/> <wire from="(560,770)" to="(560,790)"/> <wire from="(570,140)" to="(570,170)"/> <wire from="(570,140)" to="(780,140)"/> <wire from="(570,170)" to="(580,170)"/> <wire from="(570,530)" to="(570,580)"/> <wire from="(570,770)" to="(570,790)"/> <wire from="(580,1400)" to="(600,1400)"/> <wire from="(580,1680)" to="(600,1680)"/> <wire from="(580,1900)" to="(580,1940)"/> <wire from="(580,530)" to="(580,580)"/> <wire from="(580,770)" to="(580,790)"/> <wire from="(590,530)" to="(590,580)"/> <wire from="(590,770)" to="(590,790)"/> <wire from="(60,1190)" to="(60,1260)"/> <wire from="(60,1190)" to="(80,1190)"/> <wire from="(60,1260)" to="(220,1260)"/> <wire from="(600,1400)" to="(600,1540)"/> <wire from="(600,1680)" to="(600,1820)"/> <wire from="(600,530)" to="(600,580)"/> <wire from="(600,770)" to="(600,790)"/> <wire from="(610,530)" to="(610,580)"/> <wire from="(610,770)" to="(610,790)"/> <wire from="(620,1240)" to="(620,1520)"/> <wire from="(620,1520)" to="(700,1520)"/> <wire from="(620,190)" to="(640,190)"/> <wire from="(620,530)" to="(620,580)"/> <wire from="(620,810)" to="(620,940)"/> <wire from="(620,940)" to="(990,940)"/> <wire from="(630,1010)" to="(630,1320)"/> <wire from="(630,1320)" to="(670,1320)"/> <wire from="(630,1890)" to="(630,1940)"/> <wire from="(630,530)" to="(630,580)"/> <wire from="(640,190)" to="(640,230)"/> <wire from="(640,530)" to="(640,580)"/> <wire from="(640,770)" to="(640,790)"/> <wire from="(650,530)" to="(650,580)"/> <wire from="(650,770)" to="(650,790)"/> <wire from="(660,530)" to="(660,580)"/> <wire from="(660,770)" to="(660,790)"/> <wire from="(670,1030)" to="(970,1030)"/> <wire from="(670,530)" to="(670,580)"/> <wire from="(670,810)" to="(670,1030)"/> <wire from="(680,1880)" to="(680,1940)"/> <wire from="(680,530)" to="(680,580)"/> <wire from="(680,770)" to="(680,890)"/> <wire from="(680,890)" to="(1210,890)"/> <wire from="(690,1320)" to="(690,1330)"/> <wire from="(690,1320)" to="(740,1320)"/> <wire from="(690,1340)" to="(700,1340)"/> <wire from="(690,1350)" to="(740,1350)"/> <wire from="(690,1360)" to="(740,1360)"/> <wire from="(690,1370)" to="(730,1370)"/> <wire from="(690,1380)" to="(720,1380)"/> <wire from="(690,1390)" to="(710,1390)"/> <wire from="(690,1400)" to="(700,1400)"/> <wire from="(690,530)" to="(690,580)"/> <wire from="(70,1090)" to="(110,1090)"/> <wire from="(70,1090)" to="(70,1120)"/> <wire from="(70,1120)" to="(80,1120)"/> <wire from="(70,1210)" to="(70,1270)"/> <wire from="(70,1210)" to="(80,1210)"/> <wire from="(70,1270)" to="(230,1270)"/> <wire from="(70,1300)" to="(160,1300)"/> <wire from="(70,1350)" to="(90,1350)"/> <wire from="(70,1400)" to="(100,1400)"/> <wire from="(70,1450)" to="(110,1450)"/> <wire from="(70,1500)" to="(120,1500)"/> <wire from="(70,1550)" to="(130,1550)"/> <wire from="(70,1600)" to="(140,1600)"/> <wire from="(70,1650)" to="(150,1650)"/> <wire from="(70,700)" to="(180,700)"/> <wire from="(700,1330)" to="(700,1340)"/> <wire from="(700,1330)" to="(740,1330)"/> <wire from="(700,1400)" to="(700,1410)"/> <wire from="(700,1410)" to="(740,1410)"/> <wire from="(700,1520)" to="(700,1700)"/> <wire from="(700,1700)" to="(1030,1700)"/> <wire from="(700,530)" to="(700,580)"/> <wire from="(700,770)" to="(700,900)"/> <wire from="(700,900)" to="(1220,900)"/> <wire from="(710,1090)" to="(1050,1090)"/> <wire from="(710,1090)" to="(710,1300)"/> <wire from="(710,1300)" to="(740,1300)"/> <wire from="(710,1390)" to="(710,1400)"/> <wire from="(710,1400)" to="(740,1400)"/> <wire from="(710,530)" to="(710,580)"/> <wire from="(720,1380)" to="(720,1390)"/> <wire from="(720,1390)" to="(740,1390)"/> <wire from="(720,1440)" to="(740,1440)"/> <wire from="(720,1450)" to="(740,1450)"/> <wire from="(720,1460)" to="(740,1460)"/> <wire from="(720,1470)" to="(740,1470)"/> <wire from="(720,1480)" to="(740,1480)"/> <wire from="(720,1490)" to="(740,1490)"/> <wire from="(720,1500)" to="(740,1500)"/> <wire from="(720,1510)" to="(740,1510)"/> <wire from="(720,530)" to="(720,580)"/> <wire from="(730,1370)" to="(730,1380)"/> <wire from="(730,1380)" to="(740,1380)"/> <wire from="(730,1870)" to="(730,1940)"/> <wire from="(730,530)" to="(730,580)"/> <wire from="(730,770)" to="(730,790)"/> <wire from="(740,530)" to="(740,580)"/> <wire from="(740,770)" to="(740,790)"/> <wire from="(750,1100)" to="(1300,1100)"/> <wire from="(750,530)" to="(750,580)"/> <wire from="(750,770)" to="(750,790)"/> <wire from="(750,790)" to="(750,1100)"/> <wire from="(760,1080)" to="(1280,1080)"/> <wire from="(760,530)" to="(760,580)"/> <wire from="(760,770)" to="(760,790)"/> <wire from="(760,790)" to="(760,1080)"/> <wire from="(770,1530)" to="(770,1540)"/> <wire from="(770,530)" to="(770,580)"/> <wire from="(770,770)" to="(770,790)"/> <wire from="(780,140)" to="(1080,140)"/> <wire from="(780,530)" to="(780,580)"/> <wire from="(780,60)" to="(780,140)"/> <wire from="(780,770)" to="(780,790)"/> <wire from="(790,530)" to="(790,580)"/> <wire from="(790,770)" to="(790,790)"/> <wire from="(800,1530)" to="(800,1540)"/> <wire from="(800,530)" to="(800,580)"/> <wire from="(800,770)" to="(800,790)"/> <wire from="(800,790)" to="(800,880)"/> <wire from="(800,880)" to="(1300,880)"/> <wire from="(810,530)" to="(810,580)"/> <wire from="(810,770)" to="(810,790)"/> <wire from="(820,1070)" to="(1290,1070)"/> <wire from="(820,530)" to="(820,580)"/> <wire from="(820,810)" to="(820,1070)"/> <wire from="(830,1530)" to="(830,1540)"/> <wire from="(830,530)" to="(830,580)"/> <wire from="(840,1010)" to="(980,1010)"/> <wire from="(840,530)" to="(840,580)"/> <wire from="(840,810)" to="(840,1010)"/> <wire from="(850,530)" to="(850,580)"/> <wire from="(850,770)" to="(850,790)"/> <wire from="(850,810)" to="(850,950)"/> <wire from="(850,810)" to="(870,810)"/> <wire from="(850,950)" to="(1200,950)"/> <wire from="(860,530)" to="(860,580)"/> <wire from="(860,770)" to="(860,790)"/> <wire from="(860,790)" to="(860,980)"/> <wire from="(860,980)" to="(1230,980)"/> <wire from="(870,1320)" to="(880,1320)"/> <wire from="(870,1330)" to="(880,1330)"/> <wire from="(870,1340)" to="(880,1340)"/> <wire from="(870,1350)" to="(880,1350)"/> <wire from="(870,1360)" to="(880,1360)"/> <wire from="(870,1370)" to="(880,1370)"/> <wire from="(870,1380)" to="(880,1380)"/> <wire from="(870,1390)" to="(880,1390)"/> <wire from="(870,1440)" to="(880,1440)"/> <wire from="(870,1450)" to="(880,1450)"/> <wire from="(870,1460)" to="(880,1460)"/> <wire from="(870,1470)" to="(880,1470)"/> <wire from="(870,1480)" to="(880,1480)"/> <wire from="(870,1490)" to="(880,1490)"/> <wire from="(870,1500)" to="(880,1500)"/> <wire from="(870,1510)" to="(880,1510)"/> <wire from="(870,530)" to="(870,580)"/> <wire from="(870,770)" to="(870,790)"/> <wire from="(870,790)" to="(870,810)"/> <wire from="(870,820)" to="(870,910)"/> <wire from="(870,820)" to="(940,820)"/> <wire from="(880,530)" to="(880,580)"/> <wire from="(880,770)" to="(880,790)"/> <wire from="(880,830)" to="(880,910)"/> <wire from="(880,830)" to="(950,830)"/> <wire from="(890,530)" to="(890,580)"/> <wire from="(890,770)" to="(890,790)"/> <wire from="(890,840)" to="(890,910)"/> <wire from="(890,840)" to="(960,840)"/> <wire from="(90,1310)" to="(160,1310)"/> <wire from="(90,1310)" to="(90,1350)"/> <wire from="(900,1230)" to="(1230,1230)"/> <wire from="(900,1230)" to="(900,1310)"/> <wire from="(900,1430)" to="(920,1430)"/> <wire from="(900,530)" to="(900,580)"/> <wire from="(900,770)" to="(900,910)"/> <wire from="(910,530)" to="(910,580)"/> <wire from="(910,770)" to="(910,910)"/> <wire from="(920,1150)" to="(1250,1150)"/> <wire from="(920,1150)" to="(920,1430)"/> <wire from="(920,530)" to="(920,580)"/> <wire from="(920,770)" to="(920,850)"/> <wire from="(920,930)" to="(920,960)"/> <wire from="(930,530)" to="(930,580)"/> <wire from="(930,770)" to="(930,850)"/> <wire from="(940,1160)" to="(1280,1160)"/> <wire from="(940,1160)" to="(940,1830)"/> <wire from="(940,1830)" to="(1060,1830)"/> <wire from="(940,530)" to="(940,580)"/> <wire from="(940,770)" to="(940,820)"/> <wire from="(940,870)" to="(940,970)"/> <wire from="(950,1120)" to="(1270,1120)"/> <wire from="(950,1120)" to="(950,1850)"/> <wire from="(950,1850)" to="(1060,1850)"/> <wire from="(950,530)" to="(950,580)"/> <wire from="(950,770)" to="(950,830)"/> <wire from="(960,1200)" to="(1520,1200)"/> <wire from="(960,1200)" to="(960,1790)"/> <wire from="(960,1790)" to="(1030,1790)"/> <wire from="(960,200)" to="(960,310)"/> <wire from="(960,200)" to="(970,200)"/> <wire from="(960,530)" to="(960,580)"/> <wire from="(960,60)" to="(960,200)"/> <wire from="(960,770)" to="(960,840)"/> <wire from="(970,1030)" to="(970,1560)"/> <wire from="(970,1560)" to="(1030,1560)"/> <wire from="(970,530)" to="(970,580)"/> <wire from="(970,770)" to="(970,790)"/> <wire from="(970,790)" to="(1030,790)"/> <wire from="(970,790)" to="(970,810)"/> <wire from="(980,1010)" to="(980,1480)"/> <wire from="(980,1480)" to="(1030,1480)"/> <wire from="(980,530)" to="(980,580)"/> <wire from="(980,770)" to="(980,800)"/> <wire from="(980,800)" to="(1320,800)"/> <wire from="(980,800)" to="(980,810)"/> <wire from="(990,200)" to="(1020,200)"/> <wire from="(990,530)" to="(990,580)"/> <wire from="(990,770)" to="(990,810)"/> <wire from="(990,940)" to="(990,1330)"/> </circuit> <circuit name="CLOCKGEN"> <a name="appearance" val="custom"/> <a name="circuit" val="CLOCKGEN"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="clabelup" val="west"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ff5bab" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="45">CLOCK GEN</text> <circ-anchor facing="east" x="90" y="70"/> <circ-port dir="in" pin="160,200" x="50" y="70"/> <circ-port dir="out" pin="350,200" x="90" y="60"/> <circ-port dir="out" pin="350,250" x="90" y="80"/> </appear> <comp lib="0" loc="(160,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(350,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI1"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(290,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(160,200)" to="(240,200)"/> <wire from="(240,200)" to="(240,250)"/> <wire from="(240,200)" to="(270,200)"/> <wire from="(240,250)" to="(270,250)"/> <wire from="(290,200)" to="(300,200)"/> <wire from="(290,250)" to="(350,250)"/> <wire from="(320,200)" to="(350,200)"/> </circuit> <circuit name="IR_Logic"> <a name="appearance" val="custom"/> <a name="circuit" val="IR_Logic"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ffe71c" height="116" stroke="#000000" stroke-width="2" width="30" x="50" y="55"/> <circ-anchor facing="east" x="80" y="60"/> <circ-port dir="in" pin="170,150" x="50" y="90"/> <circ-port dir="in" pin="170,210" x="50" y="100"/> <circ-port dir="in" pin="170,270" x="50" y="110"/> <circ-port dir="in" pin="170,330" x="50" y="120"/> <circ-port dir="in" pin="170,390" x="50" y="130"/> <circ-port dir="in" pin="170,450" x="50" y="140"/> <circ-port dir="in" pin="170,510" x="50" y="150"/> <circ-port dir="in" pin="170,570" x="50" y="160"/> <circ-port dir="in" pin="90,40" x="50" y="60"/> <circ-port dir="in" pin="90,80" x="50" y="70"/> <circ-port dir="out" pin="370,150" x="80" y="130"/> <circ-port dir="out" pin="370,210" x="80" y="120"/> <circ-port dir="out" pin="370,270" x="80" y="110"/> <circ-port dir="out" pin="370,330" x="80" y="100"/> <circ-port dir="out" pin="370,390" x="80" y="90"/> <circ-port dir="out" pin="370,450" x="80" y="80"/> <circ-port dir="out" pin="370,510" x="80" y="70"/> <circ-port dir="out" pin="370,570" x="80" y="60"/> </appear> <comp lib="0" loc="(170,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in0"/> </comp> <comp lib="0" loc="(170,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in1"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in2"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in3"/> </comp> <comp lib="0" loc="(170,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in4"/> </comp> <comp lib="0" loc="(170,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in5"/> </comp> <comp lib="0" loc="(170,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in6"/> </comp> <comp lib="0" loc="(170,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_in7"/> </comp> <comp lib="0" loc="(370,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="FETCH"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(150,60)" name="AND Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp loc="(280,140)" name="D_Latch"/> <comp loc="(280,200)" name="D_Latch"/> <comp loc="(280,260)" name="D_Latch"/> <comp loc="(280,320)" name="D_Latch"/> <comp loc="(280,380)" name="D_Latch"/> <comp loc="(280,440)" name="D_Latch"/> <comp loc="(280,500)" name="D_Latch"/> <comp loc="(280,560)" name="D_Latch"/> <wire from="(100,40)" to="(100,50)"/> <wire from="(100,50)" to="(120,50)"/> <wire from="(100,70)" to="(100,80)"/> <wire from="(100,70)" to="(120,70)"/> <wire from="(150,60)" to="(210,60)"/> <wire from="(170,150)" to="(240,150)"/> <wire from="(170,210)" to="(240,210)"/> <wire from="(170,270)" to="(240,270)"/> <wire from="(170,330)" to="(240,330)"/> <wire from="(170,390)" to="(240,390)"/> <wire from="(170,450)" to="(240,450)"/> <wire from="(170,510)" to="(240,510)"/> <wire from="(170,570)" to="(240,570)"/> <wire from="(210,130)" to="(210,190)"/> <wire from="(210,130)" to="(240,130)"/> <wire from="(210,190)" to="(210,250)"/> <wire from="(210,190)" to="(240,190)"/> <wire from="(210,250)" to="(210,310)"/> <wire from="(210,250)" to="(240,250)"/> <wire from="(210,310)" to="(210,370)"/> <wire from="(210,310)" to="(240,310)"/> <wire from="(210,370)" to="(210,430)"/> <wire from="(210,370)" to="(240,370)"/> <wire from="(210,430)" to="(210,490)"/> <wire from="(210,430)" to="(240,430)"/> <wire from="(210,490)" to="(210,550)"/> <wire from="(210,490)" to="(240,490)"/> <wire from="(210,550)" to="(210,610)"/> <wire from="(210,550)" to="(240,550)"/> <wire from="(210,60)" to="(210,130)"/> <wire from="(280,150)" to="(370,150)"/> <wire from="(280,210)" to="(370,210)"/> <wire from="(280,270)" to="(370,270)"/> <wire from="(280,330)" to="(370,330)"/> <wire from="(280,390)" to="(370,390)"/> <wire from="(280,450)" to="(370,450)"/> <wire from="(280,510)" to="(370,510)"/> <wire from="(280,570)" to="(370,570)"/> <wire from="(90,40)" to="(100,40)"/> <wire from="(90,80)" to="(100,80)"/> </circuit> <circuit name="DECODER_TRANS"> <a name="appearance" val="custom"/> <a name="circuit" val="DECODER_TRANS"/> <a name="clabel" val="DECODER"/> <a name="clabelfont" val="SansSerif plain 20"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#9bff1c" height="153" stroke="#000000" stroke-width="2" width="1310" x="50" y="47"/> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="67" y="111">/T0</text> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="70" y="100">/T1X</text> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="67" y="90">/T2</text> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="67" y="80">/T3</text> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="67" y="70">/T4</text> <text dominant-baseline="central" font-family="Segoe UI" font-size="9" text-anchor="middle" x="67" y="60">/T5</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="70,1000" x="1360" y="120"/> <circ-port dir="in" pin="70,1110" x="1360" y="110"/> <circ-port dir="in" pin="70,1220" x="50" y="110"/> <circ-port dir="in" pin="70,1260" x="50" y="100"/> <circ-port dir="in" pin="70,190" x="50" y="60"/> <circ-port dir="in" pin="70,230" x="50" y="70"/> <circ-port dir="in" pin="70,270" x="50" y="80"/> <circ-port dir="in" pin="70,310" x="50" y="90"/> <circ-port dir="in" pin="70,380" x="1360" y="60"/> <circ-port dir="in" pin="70,470" x="1360" y="70"/> <circ-port dir="in" pin="70,560" x="1360" y="130"/> <circ-port dir="in" pin="70,670" x="1360" y="100"/> <circ-port dir="in" pin="70,780" x="1360" y="90"/> <circ-port dir="in" pin="70,890" x="1360" y="80"/> <circ-port dir="out" pin="1000,1360" x="160" y="200"/> <circ-port dir="out" pin="1060,1360" x="170" y="200"/> <circ-port dir="out" pin="1120,1360" x="180" y="200"/> <circ-port dir="out" pin="1180,1360" x="190" y="200"/> <circ-port dir="out" pin="1240,1360" x="200" y="200"/> <circ-port dir="out" pin="1300,1360" x="210" y="200"/> <circ-port dir="out" pin="1360,1360" x="220" y="200"/> <circ-port dir="out" pin="1420,1360" x="230" y="200"/> <circ-port dir="out" pin="1480,1360" x="240" y="200"/> <circ-port dir="out" pin="1540,1360" x="250" y="200"/> <circ-port dir="out" pin="1600,1360" x="260" y="200"/> <circ-port dir="out" pin="1740,1360" x="270" y="200"/> <circ-port dir="out" pin="1800,1360" x="280" y="200"/> <circ-port dir="out" pin="1860,1360" x="290" y="200"/> <circ-port dir="out" pin="1920,1360" x="300" y="200"/> <circ-port dir="out" pin="1980,1360" x="310" y="200"/> <circ-port dir="out" pin="2040,1360" x="320" y="200"/> <circ-port dir="out" pin="2100,1360" x="330" y="200"/> <circ-port dir="out" pin="2160,1360" x="340" y="200"/> <circ-port dir="out" pin="2220,1360" x="350" y="200"/> <circ-port dir="out" pin="2280,1360" x="360" y="200"/> <circ-port dir="out" pin="2340,1360" x="370" y="200"/> <circ-port dir="out" pin="2400,1360" x="380" y="200"/> <circ-port dir="out" pin="2460,1360" x="390" y="200"/> <circ-port dir="out" pin="2520,1360" x="400" y="200"/> <circ-port dir="out" pin="2580,1360" x="410" y="200"/> <circ-port dir="out" pin="2640,1360" x="420" y="200"/> <circ-port dir="out" pin="2770,1360" x="430" y="200"/> <circ-port dir="out" pin="2830,1360" x="440" y="200"/> <circ-port dir="out" pin="2890,1360" x="450" y="200"/> <circ-port dir="out" pin="2950,1360" x="460" y="200"/> <circ-port dir="out" pin="3010,1360" x="470" y="200"/> <circ-port dir="out" pin="3070,1360" x="480" y="200"/> <circ-port dir="out" pin="3130,1360" x="490" y="200"/> <circ-port dir="out" pin="3190,1360" x="500" y="200"/> <circ-port dir="out" pin="320,1360" x="60" y="200"/> <circ-port dir="out" pin="3250,1360" x="510" y="200"/> <circ-port dir="out" pin="3310,1360" x="520" y="200"/> <circ-port dir="out" pin="3370,1360" x="530" y="200"/> <circ-port dir="out" pin="3430,1360" x="540" y="200"/> <circ-port dir="out" pin="3490,1360" x="550" y="200"/> <circ-port dir="out" pin="3550,1360" x="560" y="200"/> <circ-port dir="out" pin="3610,1360" x="570" y="200"/> <circ-port dir="out" pin="3670,1360" x="580" y="200"/> <circ-port dir="out" pin="3730,1360" x="590" y="200"/> <circ-port dir="out" pin="380,1360" x="70" y="200"/> <circ-port dir="out" pin="3860,1360" x="600" y="200"/> <circ-port dir="out" pin="3920,1360" x="610" y="200"/> <circ-port dir="out" pin="3980,1360" x="620" y="200"/> <circ-port dir="out" pin="4040,1360" x="630" y="200"/> <circ-port dir="out" pin="4100,1360" x="640" y="200"/> <circ-port dir="out" pin="4160,1360" x="650" y="200"/> <circ-port dir="out" pin="4220,1360" x="660" y="200"/> <circ-port dir="out" pin="4280,1360" x="670" y="200"/> <circ-port dir="out" pin="4340,1360" x="680" y="200"/> <circ-port dir="out" pin="440,1360" x="80" y="200"/> <circ-port dir="out" pin="4400,1360" x="690" y="200"/> <circ-port dir="out" pin="4460,1360" x="700" y="200"/> <circ-port dir="out" pin="4520,1360" x="710" y="200"/> <circ-port dir="out" pin="4580,1360" x="720" y="200"/> <circ-port dir="out" pin="4640,1360" x="730" y="200"/> <circ-port dir="out" pin="4700,1360" x="740" y="200"/> <circ-port dir="out" pin="4760,1360" x="750" y="200"/> <circ-port dir="out" pin="4820,1360" x="760" y="200"/> <circ-port dir="out" pin="4880,1360" x="770" y="200"/> <circ-port dir="out" pin="4940,1360" x="780" y="200"/> <circ-port dir="out" pin="500,1360" x="90" y="200"/> <circ-port dir="out" pin="5070,1360" x="790" y="200"/> <circ-port dir="out" pin="5130,1360" x="800" y="200"/> <circ-port dir="out" pin="5190,1360" x="810" y="200"/> <circ-port dir="out" pin="5250,1360" x="820" y="200"/> <circ-port dir="out" pin="5310,1360" x="830" y="200"/> <circ-port dir="out" pin="5370,1360" x="840" y="200"/> <circ-port dir="out" pin="5430,1360" x="850" y="200"/> <circ-port dir="out" pin="5490,1360" x="860" y="200"/> <circ-port dir="out" pin="5550,1360" x="870" y="200"/> <circ-port dir="out" pin="560,1360" x="100" y="200"/> <circ-port dir="out" pin="5680,1360" x="880" y="200"/> <circ-port dir="out" pin="5740,1360" x="890" y="200"/> <circ-port dir="out" pin="5800,1360" x="900" y="200"/> <circ-port dir="out" pin="5860,1360" x="910" y="200"/> <circ-port dir="out" pin="5920,1360" x="920" y="200"/> <circ-port dir="out" pin="5980,1360" x="930" y="200"/> <circ-port dir="out" pin="6040,1360" x="940" y="200"/> <circ-port dir="out" pin="6100,1360" x="950" y="200"/> <circ-port dir="out" pin="6160,1360" x="960" y="200"/> <circ-port dir="out" pin="620,1360" x="110" y="200"/> <circ-port dir="out" pin="6290,1360" x="970" y="200"/> <circ-port dir="out" pin="6350,1360" x="980" y="200"/> <circ-port dir="out" pin="6410,1360" x="990" y="200"/> <circ-port dir="out" pin="6470,1360" x="1000" y="200"/> <circ-port dir="out" pin="6530,1360" x="1010" y="200"/> <circ-port dir="out" pin="6590,1360" x="1020" y="200"/> <circ-port dir="out" pin="6680,1360" x="1030" y="200"/> <circ-port dir="out" pin="6740,1360" x="1040" y="200"/> <circ-port dir="out" pin="6800,1360" x="1050" y="200"/> <circ-port dir="out" pin="6860,1360" x="1060" y="200"/> <circ-port dir="out" pin="6920,1360" x="1070" y="200"/> <circ-port dir="out" pin="7020,1360" x="1080" y="200"/> <circ-port dir="out" pin="7080,1360" x="1090" y="200"/> <circ-port dir="out" pin="7200,1360" x="1100" y="200"/> <circ-port dir="out" pin="7260,1360" x="1110" y="200"/> <circ-port dir="out" pin="7320,1360" x="1120" y="200"/> <circ-port dir="out" pin="7380,1360" x="1130" y="200"/> <circ-port dir="out" pin="7440,1360" x="1140" y="200"/> <circ-port dir="out" pin="7540,1360" x="1150" y="200"/> <circ-port dir="out" pin="760,1360" x="120" y="200"/> <circ-port dir="out" pin="7600,1360" x="1160" y="200"/> <circ-port dir="out" pin="7660,1360" x="1170" y="200"/> <circ-port dir="out" pin="7720,1360" x="1180" y="200"/> <circ-port dir="out" pin="7780,1360" x="1190" y="200"/> <circ-port dir="out" pin="7840,1360" x="1200" y="200"/> <circ-port dir="out" pin="7900,1360" x="1210" y="200"/> <circ-port dir="out" pin="7960,1360" x="1220" y="200"/> <circ-port dir="out" pin="8020,1360" x="1230" y="200"/> <circ-port dir="out" pin="8080,1360" x="1240" y="200"/> <circ-port dir="out" pin="8140,1360" x="1250" y="200"/> <circ-port dir="out" pin="820,1360" x="130" y="200"/> <circ-port dir="out" pin="8250,1360" x="1260" y="200"/> <circ-port dir="out" pin="8310,1360" x="1270" y="200"/> <circ-port dir="out" pin="8370,1360" x="1280" y="200"/> <circ-port dir="out" pin="8430,1360" x="1290" y="200"/> <circ-port dir="out" pin="8490,1360" x="1300" y="200"/> <circ-port dir="out" pin="8550,1360" x="1310" y="200"/> <circ-port dir="out" pin="8610,1360" x="1320" y="200"/> <circ-port dir="out" pin="8670,1360" x="1330" y="200"/> <circ-port dir="out" pin="8730,1360" x="1340" y="200"/> <circ-port dir="out" pin="8790,1360" x="1350" y="200"/> <circ-port dir="out" pin="880,1360" x="140" y="200"/> <circ-port dir="out" pin="940,1360" x="150" y="200"/> </appear> <comp lib="0" loc="(1000,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1000,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x10"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1000,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1020,1060)" name="Ground"/> <comp lib="0" loc="(1020,1170)" name="Ground"/> <comp lib="0" loc="(1020,1240)" name="Ground"/> <comp lib="0" loc="(1020,480)" name="Ground"/> <comp lib="0" loc="(1020,620)" name="Ground"/> <comp lib="0" loc="(1020,690)" name="Ground"/> <comp lib="0" loc="(1060,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1060,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x11"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1060,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1060,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1080,1020)" name="Ground"/> <comp lib="0" loc="(1080,1130)" name="Ground"/> <comp lib="0" loc="(1080,440)" name="Ground"/> <comp lib="0" loc="(1080,620)" name="Ground"/> <comp lib="0" loc="(1120,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1120,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x12"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1120,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1120,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1140,1020)" name="Ground"/> <comp lib="0" loc="(1140,1130)" name="Ground"/> <comp lib="0" loc="(1140,1240)" name="Ground"/> <comp lib="0" loc="(1140,440)" name="Ground"/> <comp lib="0" loc="(1140,620)" name="Ground"/> <comp lib="0" loc="(1140,730)" name="Ground"/> <comp lib="0" loc="(1140,840)" name="Ground"/> <comp lib="0" loc="(1140,910)" name="Ground"/> <comp lib="0" loc="(1180,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1180,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x13"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1180,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1180,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1200,1020)" name="Ground"/> <comp lib="0" loc="(1200,1170)" name="Ground"/> <comp lib="0" loc="(1200,1240)" name="Ground"/> <comp lib="0" loc="(1200,440)" name="Ground"/> <comp lib="0" loc="(1200,620)" name="Ground"/> <comp lib="0" loc="(1240,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1240,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x14"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1240,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1240,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1260,1060)" name="Ground"/> <comp lib="0" loc="(1260,1130)" name="Ground"/> <comp lib="0" loc="(1260,1280)" name="Ground"/> <comp lib="0" loc="(1260,440)" name="Ground"/> <comp lib="0" loc="(1260,620)" name="Ground"/> <comp lib="0" loc="(1260,690)" name="Ground"/> <comp lib="0" loc="(1260,840)" name="Ground"/> <comp lib="0" loc="(1260,910)" name="Ground"/> <comp lib="0" loc="(1300,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1300,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x15"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1300,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1300,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1320,1060)" name="Ground"/> <comp lib="0" loc="(1320,1170)" name="Ground"/> <comp lib="0" loc="(1320,1280)" name="Ground"/> <comp lib="0" loc="(1320,480)" name="Ground"/> <comp lib="0" loc="(1320,620)" name="Ground"/> <comp lib="0" loc="(1320,690)" name="Ground"/> <comp lib="0" loc="(1320,840)" name="Ground"/> <comp lib="0" loc="(1320,910)" name="Ground"/> <comp lib="0" loc="(1360,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1360,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x16"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1360,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1360,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1380,1020)" name="Ground"/> <comp lib="0" loc="(1380,1170)" name="Ground"/> <comp lib="0" loc="(1380,1240)" name="Ground"/> <comp lib="0" loc="(1380,440)" name="Ground"/> <comp lib="0" loc="(1380,620)" name="Ground"/> <comp lib="0" loc="(1380,730)" name="Ground"/> <comp lib="0" loc="(1380,840)" name="Ground"/> <comp lib="0" loc="(1380,910)" name="Ground"/> <comp lib="0" loc="(1420,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1420,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x17"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1420,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1420,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1440,1130)" name="Ground"/> <comp lib="0" loc="(1440,1280)" name="Ground"/> <comp lib="0" loc="(1440,480)" name="Ground"/> <comp lib="0" loc="(1440,620)" name="Ground"/> <comp lib="0" loc="(1440,690)" name="Ground"/> <comp lib="0" loc="(1440,840)" name="Ground"/> <comp lib="0" loc="(1440,910)" name="Ground"/> <comp lib="0" loc="(1480,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1480,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x18"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1480,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1480,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1500,1020)" name="Ground"/> <comp lib="0" loc="(1500,1170)" name="Ground"/> <comp lib="0" loc="(1500,1240)" name="Ground"/> <comp lib="0" loc="(1500,480)" name="Ground"/> <comp lib="0" loc="(1500,620)" name="Ground"/> <comp lib="0" loc="(1500,950)" name="Ground"/> <comp lib="0" loc="(1540,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1540,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x19"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1540,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1540,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1560,1020)" name="Ground"/> <comp lib="0" loc="(1560,1170)" name="Ground"/> <comp lib="0" loc="(1560,1240)" name="Ground"/> <comp lib="0" loc="(1560,480)" name="Ground"/> <comp lib="0" loc="(1560,620)" name="Ground"/> <comp lib="0" loc="(1560,690)" name="Ground"/> <comp lib="0" loc="(1600,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1600,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x20"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1600,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1600,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1700,1020)" name="Ground"/> <comp lib="0" loc="(1700,1170)" name="Ground"/> <comp lib="0" loc="(1700,1240)" name="Ground"/> <comp lib="0" loc="(1700,480)" name="Ground"/> <comp lib="0" loc="(1700,580)" name="Ground"/> <comp lib="0" loc="(1700,690)" name="Ground"/> <comp lib="0" loc="(1700,800)" name="Ground"/> <comp lib="0" loc="(1700,910)" name="Ground"/> <comp lib="0" loc="(1740,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1740,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x21"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1740,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1740,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1760,1020)" name="Ground"/> <comp lib="0" loc="(1760,1130)" name="Ground"/> <comp lib="0" loc="(1760,210)" name="Ground"/> <comp lib="0" loc="(1760,480)" name="Ground"/> <comp lib="0" loc="(1760,580)" name="Ground"/> <comp lib="0" loc="(1760,690)" name="Ground"/> <comp lib="0" loc="(1760,800)" name="Ground"/> <comp lib="0" loc="(1760,910)" name="Ground"/> <comp lib="0" loc="(1800,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1800,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x22"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1800,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1820,1130)" name="Ground"/> <comp lib="0" loc="(1820,1240)" name="Ground"/> <comp lib="0" loc="(1820,480)" name="Ground"/> <comp lib="0" loc="(1820,580)" name="Ground"/> <comp lib="0" loc="(1820,690)" name="Ground"/> <comp lib="0" loc="(1820,840)" name="Ground"/> <comp lib="0" loc="(1820,910)" name="Ground"/> <comp lib="0" loc="(1860,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1860,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x23"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1860,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1880,1060)" name="Ground"/> <comp lib="0" loc="(1880,1170)" name="Ground"/> <comp lib="0" loc="(1880,250)" name="Ground"/> <comp lib="0" loc="(1880,480)" name="Ground"/> <comp lib="0" loc="(1880,580)" name="Ground"/> <comp lib="0" loc="(1880,690)" name="Ground"/> <comp lib="0" loc="(1880,800)" name="Ground"/> <comp lib="0" loc="(1880,910)" name="Ground"/> <comp lib="0" loc="(1920,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1920,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x24"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1920,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1920,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1940,1170)" name="Ground"/> <comp lib="0" loc="(1940,290)" name="Ground"/> <comp lib="0" loc="(1940,480)" name="Ground"/> <comp lib="0" loc="(1940,580)" name="Ground"/> <comp lib="0" loc="(1940,690)" name="Ground"/> <comp lib="0" loc="(1940,840)" name="Ground"/> <comp lib="0" loc="(1940,910)" name="Ground"/> <comp lib="0" loc="(1980,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(1980,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x25"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1980,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(1980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2000,1060)" name="Ground"/> <comp lib="0" loc="(2000,1130)" name="Ground"/> <comp lib="0" loc="(2000,210)" name="Ground"/> <comp lib="0" loc="(2000,480)" name="Ground"/> <comp lib="0" loc="(2000,580)" name="Ground"/> <comp lib="0" loc="(2000,690)" name="Ground"/> <comp lib="0" loc="(2000,800)" name="Ground"/> <comp lib="0" loc="(2000,910)" name="Ground"/> <comp lib="0" loc="(2040,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2040,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x26"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2040,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2040,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2060,1060)" name="Ground"/> <comp lib="0" loc="(2060,1170)" name="Ground"/> <comp lib="0" loc="(2060,440)" name="Ground"/> <comp lib="0" loc="(2060,580)" name="Ground"/> <comp lib="0" loc="(2100,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2100,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x27"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2100,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2100,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2120,330)" name="Ground"/> <comp lib="0" loc="(2160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2160,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x28"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2160,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2180,1060)" name="Ground"/> <comp lib="0" loc="(2180,1130)" name="Ground"/> <comp lib="0" loc="(2180,1240)" name="Ground"/> <comp lib="0" loc="(2180,520)" name="Ground"/> <comp lib="0" loc="(2180,580)" name="Ground"/> <comp lib="0" loc="(2220,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2220,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x29"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2220,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2220,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2240,1060)" name="Ground"/> <comp lib="0" loc="(2240,480)" name="Ground"/> <comp lib="0" loc="(2240,580)" name="Ground"/> <comp lib="0" loc="(2240,690)" name="Ground"/> <comp lib="0" loc="(2240,840)" name="Ground"/> <comp lib="0" loc="(2240,950)" name="Ground"/> <comp lib="0" loc="(2280,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2280,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x30"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2280,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2280,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2300,330)" name="Ground"/> <comp lib="0" loc="(2300,690)" name="Ground"/> <comp lib="0" loc="(2300,840)" name="Ground"/> <comp lib="0" loc="(2300,950)" name="Ground"/> <comp lib="0" loc="(2340,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2340,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x31"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2340,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2340,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2360,1020)" name="Ground"/> <comp lib="0" loc="(2360,1130)" name="Ground"/> <comp lib="0" loc="(2360,1240)" name="Ground"/> <comp lib="0" loc="(2360,520)" name="Ground"/> <comp lib="0" loc="(2360,580)" name="Ground"/> <comp lib="0" loc="(2400,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2400,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x32"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2400,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2400,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2420,330)" name="Ground"/> <comp lib="0" loc="(2420,800)" name="Ground"/> <comp lib="0" loc="(2460,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2460,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x33"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2460,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2460,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2480,1240)" name="Ground"/> <comp lib="0" loc="(2520,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2520,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2520,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x34"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2540,330)" name="Ground"/> <comp lib="0" loc="(2540,480)" name="Ground"/> <comp lib="0" loc="(2540,580)" name="Ground"/> <comp lib="0" loc="(2540,690)" name="Ground"/> <comp lib="0" loc="(2540,910)" name="Ground"/> <comp lib="0" loc="(2580,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2580,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x35"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2580,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2580,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2600,290)" name="Ground"/> <comp lib="0" loc="(2600,480)" name="Ground"/> <comp lib="0" loc="(2600,580)" name="Ground"/> <comp lib="0" loc="(2600,690)" name="Ground"/> <comp lib="0" loc="(2640,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2640,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x36"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2640,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2640,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2730,1020)" name="Ground"/> <comp lib="0" loc="(2730,250)" name="Ground"/> <comp lib="0" loc="(2730,480)" name="Ground"/> <comp lib="0" loc="(2730,580)" name="Ground"/> <comp lib="0" loc="(2730,690)" name="Ground"/> <comp lib="0" loc="(2730,800)" name="Ground"/> <comp lib="0" loc="(2730,910)" name="Ground"/> <comp lib="0" loc="(2770,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2770,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x37"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2770,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2770,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2790,1060)" name="Ground"/> <comp lib="0" loc="(2790,1130)" name="Ground"/> <comp lib="0" loc="(2790,250)" name="Ground"/> <comp lib="0" loc="(2790,480)" name="Ground"/> <comp lib="0" loc="(2790,580)" name="Ground"/> <comp lib="0" loc="(2790,690)" name="Ground"/> <comp lib="0" loc="(2790,800)" name="Ground"/> <comp lib="0" loc="(2790,910)" name="Ground"/> <comp lib="0" loc="(280,1020)" name="Ground"/> <comp lib="0" loc="(280,1130)" name="Ground"/> <comp lib="0" loc="(280,480)" name="Ground"/> <comp lib="0" loc="(280,620)" name="Ground"/> <comp lib="0" loc="(280,950)" name="Ground"/> <comp lib="0" loc="(2830,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2830,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x38"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2830,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2830,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2850,290)" name="Ground"/> <comp lib="0" loc="(2850,520)" name="Ground"/> <comp lib="0" loc="(2850,690)" name="Ground"/> <comp lib="0" loc="(2850,800)" name="Ground"/> <comp lib="0" loc="(2850,910)" name="Ground"/> <comp lib="0" loc="(2890,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2890,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x39"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2890,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2890,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2910,250)" name="Ground"/> <comp lib="0" loc="(2910,520)" name="Ground"/> <comp lib="0" loc="(2910,730)" name="Ground"/> <comp lib="0" loc="(2910,800)" name="Ground"/> <comp lib="0" loc="(2910,910)" name="Ground"/> <comp lib="0" loc="(2950,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(2950,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x40"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2950,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2950,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(2970,330)" name="Ground"/> <comp lib="0" loc="(2970,520)" name="Ground"/> <comp lib="0" loc="(2970,730)" name="Ground"/> <comp lib="0" loc="(2970,800)" name="Ground"/> <comp lib="0" loc="(2970,910)" name="Ground"/> <comp lib="0" loc="(3010,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3010,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x41"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3010,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3010,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3030,290)" name="Ground"/> <comp lib="0" loc="(3030,730)" name="Ground"/> <comp lib="0" loc="(3030,840)" name="Ground"/> <comp lib="0" loc="(3070,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3070,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x42"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3070,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3070,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3070,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3090,1170)" name="Ground"/> <comp lib="0" loc="(3090,480)" name="Ground"/> <comp lib="0" loc="(3090,580)" name="Ground"/> <comp lib="0" loc="(3090,690)" name="Ground"/> <comp lib="0" loc="(3090,840)" name="Ground"/> <comp lib="0" loc="(3090,910)" name="Ground"/> <comp lib="0" loc="(3130,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3130,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x43"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3130,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3130,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3150,1060)" name="Ground"/> <comp lib="0" loc="(3150,1170)" name="Ground"/> <comp lib="0" loc="(3150,440)" name="Ground"/> <comp lib="0" loc="(3150,620)" name="Ground"/> <comp lib="0" loc="(3190,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3190,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x44"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3190,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3190,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(320,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(320,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3210,250)" name="Ground"/> <comp lib="0" loc="(3210,520)" name="Ground"/> <comp lib="0" loc="(3210,690)" name="Ground"/> <comp lib="0" loc="(3210,800)" name="Ground"/> <comp lib="0" loc="(3210,910)" name="Ground"/> <comp lib="0" loc="(3250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3250,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x45"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3250,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3250,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3270,290)" name="Ground"/> <comp lib="0" loc="(3270,520)" name="Ground"/> <comp lib="0" loc="(3270,730)" name="Ground"/> <comp lib="0" loc="(3270,800)" name="Ground"/> <comp lib="0" loc="(3270,910)" name="Ground"/> <comp lib="0" loc="(3310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3310,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x46"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3310,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3310,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3330,1060)" name="Ground"/> <comp lib="0" loc="(3330,480)" name="Ground"/> <comp lib="0" loc="(3330,580)" name="Ground"/> <comp lib="0" loc="(3330,690)" name="Ground"/> <comp lib="0" loc="(3330,800)" name="Ground"/> <comp lib="0" loc="(3330,910)" name="Ground"/> <comp lib="0" loc="(3370,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3370,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x47"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3370,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3370,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3390,1020)" name="Ground"/> <comp lib="0" loc="(3390,1170)" name="Ground"/> <comp lib="0" loc="(3390,330)" name="Ground"/> <comp lib="0" loc="(3390,480)" name="Ground"/> <comp lib="0" loc="(3390,580)" name="Ground"/> <comp lib="0" loc="(3390,690)" name="Ground"/> <comp lib="0" loc="(3390,800)" name="Ground"/> <comp lib="0" loc="(3390,910)" name="Ground"/> <comp lib="0" loc="(340,290)" name="Ground"/> <comp lib="0" loc="(340,520)" name="Ground"/> <comp lib="0" loc="(340,730)" name="Ground"/> <comp lib="0" loc="(340,800)" name="Ground"/> <comp lib="0" loc="(340,910)" name="Ground"/> <comp lib="0" loc="(3430,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3430,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x48"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3430,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3430,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3450,1060)" name="Ground"/> <comp lib="0" loc="(3450,1240)" name="Ground"/> <comp lib="0" loc="(3450,480)" name="Ground"/> <comp lib="0" loc="(3450,620)" name="Ground"/> <comp lib="0" loc="(3450,690)" name="Ground"/> <comp lib="0" loc="(3490,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3490,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x49"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3490,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3490,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3510,1060)" name="Ground"/> <comp lib="0" loc="(3510,1130)" name="Ground"/> <comp lib="0" loc="(3510,1240)" name="Ground"/> <comp lib="0" loc="(3510,520)" name="Ground"/> <comp lib="0" loc="(3510,620)" name="Ground"/> <comp lib="0" loc="(3550,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3550,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x50"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3550,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3550,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3570,1060)" name="Ground"/> <comp lib="0" loc="(3570,1170)" name="Ground"/> <comp lib="0" loc="(3570,1240)" name="Ground"/> <comp lib="0" loc="(3570,520)" name="Ground"/> <comp lib="0" loc="(3570,620)" name="Ground"/> <comp lib="0" loc="(3610,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3610,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x51"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3610,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3610,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3630,1060)" name="Ground"/> <comp lib="0" loc="(3630,1170)" name="Ground"/> <comp lib="0" loc="(3630,1240)" name="Ground"/> <comp lib="0" loc="(3630,520)" name="Ground"/> <comp lib="0" loc="(3670,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3670,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3670,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3670,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3670,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x52"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3670,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3690,1020)" name="Ground"/> <comp lib="0" loc="(3690,1170)" name="Ground"/> <comp lib="0" loc="(3690,440)" name="Ground"/> <comp lib="0" loc="(3690,580)" name="Ground"/> <comp lib="0" loc="(3730,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3730,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x53"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3730,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3730,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(380,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(380,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3820,1060)" name="Ground"/> <comp lib="0" loc="(3820,290)" name="Ground"/> <comp lib="0" loc="(3820,480)" name="Ground"/> <comp lib="0" loc="(3820,580)" name="Ground"/> <comp lib="0" loc="(3820,690)" name="Ground"/> <comp lib="0" loc="(3820,840)" name="Ground"/> <comp lib="0" loc="(3820,950)" name="Ground"/> <comp lib="0" loc="(3860,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3860,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x54"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3860,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3860,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3880,1020)" name="Ground"/> <comp lib="0" loc="(3880,440)" name="Ground"/> <comp lib="0" loc="(3880,580)" name="Ground"/> <comp lib="0" loc="(3920,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3920,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x55"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3920,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3940,1020)" name="Ground"/> <comp lib="0" loc="(3940,1170)" name="Ground"/> <comp lib="0" loc="(3940,210)" name="Ground"/> <comp lib="0" loc="(3940,480)" name="Ground"/> <comp lib="0" loc="(3940,580)" name="Ground"/> <comp lib="0" loc="(3940,690)" name="Ground"/> <comp lib="0" loc="(3940,800)" name="Ground"/> <comp lib="0" loc="(3940,910)" name="Ground"/> <comp lib="0" loc="(3980,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(3980,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x56"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3980,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(3980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(400,330)" name="Ground"/> <comp lib="0" loc="(400,520)" name="Ground"/> <comp lib="0" loc="(400,730)" name="Ground"/> <comp lib="0" loc="(400,840)" name="Ground"/> <comp lib="0" loc="(400,910)" name="Ground"/> <comp lib="0" loc="(4000,330)" name="Ground"/> <comp lib="0" loc="(4000,480)" name="Ground"/> <comp lib="0" loc="(4000,580)" name="Ground"/> <comp lib="0" loc="(4000,690)" name="Ground"/> <comp lib="0" loc="(4000,910)" name="Ground"/> <comp lib="0" loc="(4040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4040,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x57"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4040,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4040,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4060,1020)" name="Ground"/> <comp lib="0" loc="(4060,1130)" name="Ground"/> <comp lib="0" loc="(4060,1240)" name="Ground"/> <comp lib="0" loc="(4060,480)" name="Ground"/> <comp lib="0" loc="(4060,620)" name="Ground"/> <comp lib="0" loc="(4060,730)" name="Ground"/> <comp lib="0" loc="(4060,840)" name="Ground"/> <comp lib="0" loc="(4060,910)" name="Ground"/> <comp lib="0" loc="(4100,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4100,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x58"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4100,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4100,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4120,1280)" name="Ground"/> <comp lib="0" loc="(4120,520)" name="Ground"/> <comp lib="0" loc="(4120,580)" name="Ground"/> <comp lib="0" loc="(4160,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4160,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x59"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4160,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4160,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4180,1060)" name="Ground"/> <comp lib="0" loc="(4180,1170)" name="Ground"/> <comp lib="0" loc="(4180,1280)" name="Ground"/> <comp lib="0" loc="(4180,520)" name="Ground"/> <comp lib="0" loc="(4220,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4220,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4220,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4220,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4220,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x60"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4220,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4240,1280)" name="Ground"/> <comp lib="0" loc="(4240,440)" name="Ground"/> <comp lib="0" loc="(4240,580)" name="Ground"/> <comp lib="0" loc="(4240,690)" name="Ground"/> <comp lib="0" loc="(4240,840)" name="Ground"/> <comp lib="0" loc="(4240,910)" name="Ground"/> <comp lib="0" loc="(4280,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4280,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x61"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4280,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4280,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4300,1020)" name="Ground"/> <comp lib="0" loc="(4300,1130)" name="Ground"/> <comp lib="0" loc="(4300,1240)" name="Ground"/> <comp lib="0" loc="(4300,440)" name="Ground"/> <comp lib="0" loc="(4300,620)" name="Ground"/> <comp lib="0" loc="(4300,690)" name="Ground"/> <comp lib="0" loc="(4300,840)" name="Ground"/> <comp lib="0" loc="(4300,910)" name="Ground"/> <comp lib="0" loc="(4340,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4340,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x62"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4340,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4340,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4360,1060)" name="Ground"/> <comp lib="0" loc="(4360,1170)" name="Ground"/> <comp lib="0" loc="(4360,1240)" name="Ground"/> <comp lib="0" loc="(4360,480)" name="Ground"/> <comp lib="0" loc="(4360,580)" name="Ground"/> <comp lib="0" loc="(4360,690)" name="Ground"/> <comp lib="0" loc="(4360,840)" name="Ground"/> <comp lib="0" loc="(4360,910)" name="Ground"/> <comp lib="0" loc="(440,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(440,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(440,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4400,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x63"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4400,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4400,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4420,1020)" name="Ground"/> <comp lib="0" loc="(4420,1170)" name="Ground"/> <comp lib="0" loc="(4420,1240)" name="Ground"/> <comp lib="0" loc="(4420,520)" name="Ground"/> <comp lib="0" loc="(4420,620)" name="Ground"/> <comp lib="0" loc="(4460,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4460,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4460,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4460,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4460,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x64"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4460,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4460,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4480,1240)" name="Ground"/> <comp lib="0" loc="(4480,520)" name="Ground"/> <comp lib="0" loc="(4520,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4520,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4520,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x65"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4520,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4540,1020)" name="Ground"/> <comp lib="0" loc="(4540,1170)" name="Ground"/> <comp lib="0" loc="(4540,1240)" name="Ground"/> <comp lib="0" loc="(4540,480)" name="Ground"/> <comp lib="0" loc="(4540,620)" name="Ground"/> <comp lib="0" loc="(4540,690)" name="Ground"/> <comp lib="0" loc="(4540,840)" name="Ground"/> <comp lib="0" loc="(4540,910)" name="Ground"/> <comp lib="0" loc="(4580,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4580,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x66"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4580,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4580,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(460,1130)" name="Ground"/> <comp lib="0" loc="(460,1240)" name="Ground"/> <comp lib="0" loc="(460,480)" name="Ground"/> <comp lib="0" loc="(460,620)" name="Ground"/> <comp lib="0" loc="(460,690)" name="Ground"/> <comp lib="0" loc="(460,840)" name="Ground"/> <comp lib="0" loc="(460,910)" name="Ground"/> <comp lib="0" loc="(4600,1240)" name="Ground"/> <comp lib="0" loc="(4600,440)" name="Ground"/> <comp lib="0" loc="(4600,580)" name="Ground"/> <comp lib="0" loc="(4600,690)" name="Ground"/> <comp lib="0" loc="(4600,840)" name="Ground"/> <comp lib="0" loc="(4600,910)" name="Ground"/> <comp lib="0" loc="(4640,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4640,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x67"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4640,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4640,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4660,1020)" name="Ground"/> <comp lib="0" loc="(4660,1170)" name="Ground"/> <comp lib="0" loc="(4660,1240)" name="Ground"/> <comp lib="0" loc="(4660,440)" name="Ground"/> <comp lib="0" loc="(4660,620)" name="Ground"/> <comp lib="0" loc="(4660,690)" name="Ground"/> <comp lib="0" loc="(4660,840)" name="Ground"/> <comp lib="0" loc="(4660,910)" name="Ground"/> <comp lib="0" loc="(4700,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4700,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x68"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4700,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4700,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4720,1020)" name="Ground"/> <comp lib="0" loc="(4720,1170)" name="Ground"/> <comp lib="0" loc="(4720,1240)" name="Ground"/> <comp lib="0" loc="(4720,480)" name="Ground"/> <comp lib="0" loc="(4720,580)" name="Ground"/> <comp lib="0" loc="(4720,690)" name="Ground"/> <comp lib="0" loc="(4720,950)" name="Ground"/> <comp lib="0" loc="(4760,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4760,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x69"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4760,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4780,1020)" name="Ground"/> <comp lib="0" loc="(4780,1170)" name="Ground"/> <comp lib="0" loc="(4780,1240)" name="Ground"/> <comp lib="0" loc="(4780,520)" name="Ground"/> <comp lib="0" loc="(4780,580)" name="Ground"/> <comp lib="0" loc="(4820,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4820,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4820,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4820,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4820,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x70"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4820,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4820,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4840,250)" name="Ground"/> <comp lib="0" loc="(4840,730)" name="Ground"/> <comp lib="0" loc="(4840,840)" name="Ground"/> <comp lib="0" loc="(4880,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4880,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x71"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4880,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4880,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4900,210)" name="Ground"/> <comp lib="0" loc="(4900,520)" name="Ground"/> <comp lib="0" loc="(4900,730)" name="Ground"/> <comp lib="0" loc="(4900,800)" name="Ground"/> <comp lib="0" loc="(4900,910)" name="Ground"/> <comp lib="0" loc="(4940,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(4940,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x72"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4940,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(4940,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(500,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(500,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(500,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5030,1240)" name="Ground"/> <comp lib="0" loc="(5030,480)" name="Ground"/> <comp lib="0" loc="(5030,730)" name="Ground"/> <comp lib="0" loc="(5030,800)" name="Ground"/> <comp lib="0" loc="(5030,910)" name="Ground"/> <comp lib="0" loc="(5070,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5070,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x73"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5070,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5070,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5090,1060)" name="Ground"/> <comp lib="0" loc="(5090,1130)" name="Ground"/> <comp lib="0" loc="(5090,330)" name="Ground"/> <comp lib="0" loc="(5090,480)" name="Ground"/> <comp lib="0" loc="(5090,580)" name="Ground"/> <comp lib="0" loc="(5090,690)" name="Ground"/> <comp lib="0" loc="(5090,840)" name="Ground"/> <comp lib="0" loc="(5090,910)" name="Ground"/> <comp lib="0" loc="(5130,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5130,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x74"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5130,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5130,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5150,1060)" name="Ground"/> <comp lib="0" loc="(5150,1240)" name="Ground"/> <comp lib="0" loc="(5150,440)" name="Ground"/> <comp lib="0" loc="(5150,580)" name="Ground"/> <comp lib="0" loc="(5150,690)" name="Ground"/> <comp lib="0" loc="(5150,840)" name="Ground"/> <comp lib="0" loc="(5150,910)" name="Ground"/> <comp lib="0" loc="(5190,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5190,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x75"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5190,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5190,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(520,1020)" name="Ground"/> <comp lib="0" loc="(520,1130)" name="Ground"/> <comp lib="0" loc="(520,1240)" name="Ground"/> <comp lib="0" loc="(520,480)" name="Ground"/> <comp lib="0" loc="(520,620)" name="Ground"/> <comp lib="0" loc="(520,730)" name="Ground"/> <comp lib="0" loc="(520,840)" name="Ground"/> <comp lib="0" loc="(520,910)" name="Ground"/> <comp lib="0" loc="(5210,1060)" name="Ground"/> <comp lib="0" loc="(5210,440)" name="Ground"/> <comp lib="0" loc="(5210,580)" name="Ground"/> <comp lib="0" loc="(5250,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5250,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x76"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5250,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5250,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5270,1020)" name="Ground"/> <comp lib="0" loc="(5270,1130)" name="Ground"/> <comp lib="0" loc="(5270,330)" name="Ground"/> <comp lib="0" loc="(5270,480)" name="Ground"/> <comp lib="0" loc="(5270,580)" name="Ground"/> <comp lib="0" loc="(5270,690)" name="Ground"/> <comp lib="0" loc="(5270,800)" name="Ground"/> <comp lib="0" loc="(5270,910)" name="Ground"/> <comp lib="0" loc="(5310,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5310,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x77"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5310,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5310,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5330,1020)" name="Ground"/> <comp lib="0" loc="(5330,1170)" name="Ground"/> <comp lib="0" loc="(5330,290)" name="Ground"/> <comp lib="0" loc="(5330,480)" name="Ground"/> <comp lib="0" loc="(5330,580)" name="Ground"/> <comp lib="0" loc="(5330,690)" name="Ground"/> <comp lib="0" loc="(5330,800)" name="Ground"/> <comp lib="0" loc="(5330,910)" name="Ground"/> <comp lib="0" loc="(5370,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5370,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x78"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5370,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5370,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5390,1020)" name="Ground"/> <comp lib="0" loc="(5390,1130)" name="Ground"/> <comp lib="0" loc="(5390,520)" name="Ground"/> <comp lib="0" loc="(5390,620)" name="Ground"/> <comp lib="0" loc="(5430,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5430,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5430,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x79"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5430,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5430,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5450,330)" name="Ground"/> <comp lib="0" loc="(5450,480)" name="Ground"/> <comp lib="0" loc="(5450,730)" name="Ground"/> <comp lib="0" loc="(5450,800)" name="Ground"/> <comp lib="0" loc="(5450,910)" name="Ground"/> <comp lib="0" loc="(5490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5490,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x80"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5490,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5490,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5510,330)" name="Ground"/> <comp lib="0" loc="(5510,800)" name="Ground"/> <comp lib="0" loc="(5510,950)" name="Ground"/> <comp lib="0" loc="(5550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5550,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x81"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5550,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5550,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5550,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(560,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(560,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5640,330)" name="Ground"/> <comp lib="0" loc="(5640,520)" name="Ground"/> <comp lib="0" loc="(5640,800)" name="Ground"/> <comp lib="0" loc="(5640,910)" name="Ground"/> <comp lib="0" loc="(5680,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5680,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x82"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5680,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5680,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5700,330)" name="Ground"/> <comp lib="0" loc="(5700,840)" name="Ground"/> <comp lib="0" loc="(5740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5740,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x83"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5740,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5740,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5760,1060)" name="Ground"/> <comp lib="0" loc="(5760,1170)" name="Ground"/> <comp lib="0" loc="(5760,210)" name="Ground"/> <comp lib="0" loc="(5760,480)" name="Ground"/> <comp lib="0" loc="(5760,580)" name="Ground"/> <comp lib="0" loc="(5760,690)" name="Ground"/> <comp lib="0" loc="(5760,800)" name="Ground"/> <comp lib="0" loc="(5760,910)" name="Ground"/> <comp lib="0" loc="(580,1060)" name="Ground"/> <comp lib="0" loc="(580,1130)" name="Ground"/> <comp lib="0" loc="(580,1240)" name="Ground"/> <comp lib="0" loc="(580,480)" name="Ground"/> <comp lib="0" loc="(580,620)" name="Ground"/> <comp lib="0" loc="(580,690)" name="Ground"/> <comp lib="0" loc="(5800,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5800,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x84"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5800,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5820,250)" name="Ground"/> <comp lib="0" loc="(5860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5860,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x85"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5860,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5880,290)" name="Ground"/> <comp lib="0" loc="(5920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5920,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x86"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5920,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5940,1130)" name="Ground"/> <comp lib="0" loc="(5940,1240)" name="Ground"/> <comp lib="0" loc="(5940,480)" name="Ground"/> <comp lib="0" loc="(5940,580)" name="Ground"/> <comp lib="0" loc="(5940,690)" name="Ground"/> <comp lib="0" loc="(5940,800)" name="Ground"/> <comp lib="0" loc="(5940,910)" name="Ground"/> <comp lib="0" loc="(5980,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(5980,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x87"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(5980,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(5980,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6000,1060)" name="Ground"/> <comp lib="0" loc="(6000,1240)" name="Ground"/> <comp lib="0" loc="(6000,480)" name="Ground"/> <comp lib="0" loc="(6000,580)" name="Ground"/> <comp lib="0" loc="(6000,690)" name="Ground"/> <comp lib="0" loc="(6000,840)" name="Ground"/> <comp lib="0" loc="(6000,950)" name="Ground"/> <comp lib="0" loc="(6040,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6040,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x88"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6040,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6040,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6060,210)" name="Ground"/> <comp lib="0" loc="(6060,520)" name="Ground"/> <comp lib="0" loc="(6060,690)" name="Ground"/> <comp lib="0" loc="(6060,800)" name="Ground"/> <comp lib="0" loc="(6060,910)" name="Ground"/> <comp lib="0" loc="(6100,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6100,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x89"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6100,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6100,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6120,290)" name="Ground"/> <comp lib="0" loc="(6120,840)" name="Ground"/> <comp lib="0" loc="(6160,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6160,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x90"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6160,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6160,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(620,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(620,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(620,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6250,250)" name="Ground"/> <comp lib="0" loc="(6250,520)" name="Ground"/> <comp lib="0" loc="(6250,730)" name="Ground"/> <comp lib="0" loc="(6250,800)" name="Ground"/> <comp lib="0" loc="(6250,910)" name="Ground"/> <comp lib="0" loc="(6290,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6290,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x91"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6290,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6290,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6310,290)" name="Ground"/> <comp lib="0" loc="(6310,730)" name="Ground"/> <comp lib="0" loc="(6310,840)" name="Ground"/> <comp lib="0" loc="(6350,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6350,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x92"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6350,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6350,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6350,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6370,290)" name="Ground"/> <comp lib="0" loc="(6370,480)" name="Ground"/> <comp lib="0" loc="(6370,730)" name="Ground"/> <comp lib="0" loc="(6370,800)" name="Ground"/> <comp lib="0" loc="(6370,910)" name="Ground"/> <comp lib="0" loc="(6410,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6410,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x93"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6410,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6410,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6410,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6410,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6410,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6430,1130)" name="Ground"/> <comp lib="0" loc="(6430,480)" name="Ground"/> <comp lib="0" loc="(6430,580)" name="Ground"/> <comp lib="0" loc="(6430,690)" name="Ground"/> <comp lib="0" loc="(6430,800)" name="Ground"/> <comp lib="0" loc="(6430,910)" name="Ground"/> <comp lib="0" loc="(6470,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6470,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x94"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6470,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6470,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6490,1020)" name="Ground"/> <comp lib="0" loc="(6490,1170)" name="Ground"/> <comp lib="0" loc="(6490,480)" name="Ground"/> <comp lib="0" loc="(6490,580)" name="Ground"/> <comp lib="0" loc="(6490,690)" name="Ground"/> <comp lib="0" loc="(6490,800)" name="Ground"/> <comp lib="0" loc="(6490,910)" name="Ground"/> <comp lib="0" loc="(6530,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6530,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x95"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6530,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6530,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6550,1060)" name="Ground"/> <comp lib="0" loc="(6550,480)" name="Ground"/> <comp lib="0" loc="(6550,580)" name="Ground"/> <comp lib="0" loc="(6550,690)" name="Ground"/> <comp lib="0" loc="(6550,840)" name="Ground"/> <comp lib="0" loc="(6550,950)" name="Ground"/> <comp lib="0" loc="(6590,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6590,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x96"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6590,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6590,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6640,1020)" name="Ground"/> <comp lib="0" loc="(6640,1130)" name="Ground"/> <comp lib="0" loc="(6640,620)" name="Ground"/> <comp lib="0" loc="(6680,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6680,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6680,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6680,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x97"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6680,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6700,1020)" name="Ground"/> <comp lib="0" loc="(6700,1130)" name="Ground"/> <comp lib="0" loc="(6700,250)" name="Ground"/> <comp lib="0" loc="(6700,480)" name="Ground"/> <comp lib="0" loc="(6700,580)" name="Ground"/> <comp lib="0" loc="(6700,690)" name="Ground"/> <comp lib="0" loc="(6700,800)" name="Ground"/> <comp lib="0" loc="(6700,910)" name="Ground"/> <comp lib="0" loc="(6740,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6740,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x98"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6740,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6740,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6760,1020)" name="Ground"/> <comp lib="0" loc="(6760,1130)" name="Ground"/> <comp lib="0" loc="(6760,330)" name="Ground"/> <comp lib="0" loc="(6760,480)" name="Ground"/> <comp lib="0" loc="(6760,580)" name="Ground"/> <comp lib="0" loc="(6760,690)" name="Ground"/> <comp lib="0" loc="(6760,840)" name="Ground"/> <comp lib="0" loc="(6760,910)" name="Ground"/> <comp lib="0" loc="(6800,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6800,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x99"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6800,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6800,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6820,1130)" name="Ground"/> <comp lib="0" loc="(6820,330)" name="Ground"/> <comp lib="0" loc="(6820,480)" name="Ground"/> <comp lib="0" loc="(6820,580)" name="Ground"/> <comp lib="0" loc="(6820,690)" name="Ground"/> <comp lib="0" loc="(6820,840)" name="Ground"/> <comp lib="0" loc="(6820,910)" name="Ground"/> <comp lib="0" loc="(6860,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6860,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x100"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6860,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6860,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6880,1060)" name="Ground"/> <comp lib="0" loc="(6880,250)" name="Ground"/> <comp lib="0" loc="(6880,480)" name="Ground"/> <comp lib="0" loc="(6880,580)" name="Ground"/> <comp lib="0" loc="(6880,690)" name="Ground"/> <comp lib="0" loc="(6880,840)" name="Ground"/> <comp lib="0" loc="(6880,950)" name="Ground"/> <comp lib="0" loc="(6920,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(6920,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x101"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(6920,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6920,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(6980,1060)" name="Ground"/> <comp lib="0" loc="(6980,210)" name="Ground"/> <comp lib="0" loc="(6980,480)" name="Ground"/> <comp lib="0" loc="(6980,580)" name="Ground"/> <comp lib="0" loc="(6980,690)" name="Ground"/> <comp lib="0" loc="(6980,800)" name="Ground"/> <comp lib="0" loc="(6980,910)" name="Ground"/> <comp lib="0" loc="(70,1000)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR6"/> </comp> <comp lib="0" loc="(70,1110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR5"/> </comp> <comp lib="0" loc="(70,1220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T0"/> </comp> <comp lib="0" loc="(70,1260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T1X"/> </comp> <comp lib="0" loc="(70,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T5"/> </comp> <comp lib="0" loc="(70,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T4"/> </comp> <comp lib="0" loc="(70,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T3"/> </comp> <comp lib="0" loc="(70,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_T2"/> </comp> <comp lib="0" loc="(70,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR0"/> </comp> <comp lib="0" loc="(70,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR1"/> </comp> <comp lib="0" loc="(70,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR7"/> </comp> <comp lib="0" loc="(70,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR4"/> </comp> <comp lib="0" loc="(70,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR3"/> </comp> <comp lib="0" loc="(70,890)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR2"/> </comp> <comp lib="0" loc="(7020,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7020,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x102"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7020,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7020,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7040,1020)" name="Ground"/> <comp lib="0" loc="(7040,1170)" name="Ground"/> <comp lib="0" loc="(7040,210)" name="Ground"/> <comp lib="0" loc="(7040,480)" name="Ground"/> <comp lib="0" loc="(7040,580)" name="Ground"/> <comp lib="0" loc="(7040,690)" name="Ground"/> <comp lib="0" loc="(7040,800)" name="Ground"/> <comp lib="0" loc="(7040,910)" name="Ground"/> <comp lib="0" loc="(7080,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7080,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x103"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7080,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7080,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7160,1060)" name="Ground"/> <comp lib="0" loc="(7160,1130)" name="Ground"/> <comp lib="0" loc="(7160,330)" name="Ground"/> <comp lib="0" loc="(7160,480)" name="Ground"/> <comp lib="0" loc="(7160,580)" name="Ground"/> <comp lib="0" loc="(7160,690)" name="Ground"/> <comp lib="0" loc="(7160,840)" name="Ground"/> <comp lib="0" loc="(7160,950)" name="Ground"/> <comp lib="0" loc="(720,330)" name="Ground"/> <comp lib="0" loc="(720,730)" name="Ground"/> <comp lib="0" loc="(720,950)" name="Ground"/> <comp lib="0" loc="(7200,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7200,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x104"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7200,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7200,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7220,1170)" name="Ground"/> <comp lib="0" loc="(7220,290)" name="Ground"/> <comp lib="0" loc="(7220,480)" name="Ground"/> <comp lib="0" loc="(7220,580)" name="Ground"/> <comp lib="0" loc="(7220,690)" name="Ground"/> <comp lib="0" loc="(7220,840)" name="Ground"/> <comp lib="0" loc="(7220,910)" name="Ground"/> <comp lib="0" loc="(7260,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7260,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x105"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7260,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7260,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7280,1060)" name="Ground"/> <comp lib="0" loc="(7280,440)" name="Ground"/> <comp lib="0" loc="(7320,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7320,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7320,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x106"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7320,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7340,1020)" name="Ground"/> <comp lib="0" loc="(7340,440)" name="Ground"/> <comp lib="0" loc="(7340,580)" name="Ground"/> <comp lib="0" loc="(7380,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7380,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7380,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x107"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7380,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7380,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7400,1060)" name="Ground"/> <comp lib="0" loc="(7400,1240)" name="Ground"/> <comp lib="0" loc="(7400,480)" name="Ground"/> <comp lib="0" loc="(7400,580)" name="Ground"/> <comp lib="0" loc="(7400,730)" name="Ground"/> <comp lib="0" loc="(7400,840)" name="Ground"/> <comp lib="0" loc="(7400,910)" name="Ground"/> <comp lib="0" loc="(7440,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7440,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x108"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7440,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7440,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7500,1020)" name="Ground"/> <comp lib="0" loc="(7500,1170)" name="Ground"/> <comp lib="0" loc="(7500,1280)" name="Ground"/> <comp lib="0" loc="(7500,480)" name="Ground"/> <comp lib="0" loc="(7500,580)" name="Ground"/> <comp lib="0" loc="(7500,690)" name="Ground"/> <comp lib="0" loc="(7500,950)" name="Ground"/> <comp lib="0" loc="(7540,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7540,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x109"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7540,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7540,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7560,1020)" name="Ground"/> <comp lib="0" loc="(7560,1240)" name="Ground"/> <comp lib="0" loc="(7560,480)" name="Ground"/> <comp lib="0" loc="(7560,580)" name="Ground"/> <comp lib="0" loc="(7560,730)" name="Ground"/> <comp lib="0" loc="(7560,840)" name="Ground"/> <comp lib="0" loc="(7560,910)" name="Ground"/> <comp lib="0" loc="(760,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(760,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(760,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(760,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7600,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x110"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7600,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7600,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7620,290)" name="Ground"/> <comp lib="0" loc="(7620,730)" name="Ground"/> <comp lib="0" loc="(7620,800)" name="Ground"/> <comp lib="0" loc="(7620,950)" name="Ground"/> <comp lib="0" loc="(7660,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7660,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x111"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7660,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7660,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7660,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7660,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7680,1060)" name="Ground"/> <comp lib="0" loc="(7680,1170)" name="Ground"/> <comp lib="0" loc="(7680,1280)" name="Ground"/> <comp lib="0" loc="(7680,520)" name="Ground"/> <comp lib="0" loc="(7720,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7720,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7720,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7720,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7720,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x112"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7720,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7740,1020)" name="Ground"/> <comp lib="0" loc="(7740,1170)" name="Ground"/> <comp lib="0" loc="(7740,1240)" name="Ground"/> <comp lib="0" loc="(7740,480)" name="Ground"/> <comp lib="0" loc="(7740,580)" name="Ground"/> <comp lib="0" loc="(7740,690)" name="Ground"/> <comp lib="0" loc="(7740,950)" name="Ground"/> <comp lib="0" loc="(7780,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7780,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x113"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7780,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7780,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(780,1020)" name="Ground"/> <comp lib="0" loc="(780,440)" name="Ground"/> <comp lib="0" loc="(780,620)" name="Ground"/> <comp lib="0" loc="(7800,1020)" name="Ground"/> <comp lib="0" loc="(7800,1170)" name="Ground"/> <comp lib="0" loc="(7800,1240)" name="Ground"/> <comp lib="0" loc="(7800,480)" name="Ground"/> <comp lib="0" loc="(7800,580)" name="Ground"/> <comp lib="0" loc="(7800,690)" name="Ground"/> <comp lib="0" loc="(7800,840)" name="Ground"/> <comp lib="0" loc="(7800,910)" name="Ground"/> <comp lib="0" loc="(7840,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7840,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x114"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7840,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7840,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7860,1060)" name="Ground"/> <comp lib="0" loc="(7860,1130)" name="Ground"/> <comp lib="0" loc="(7860,250)" name="Ground"/> <comp lib="0" loc="(7860,480)" name="Ground"/> <comp lib="0" loc="(7860,580)" name="Ground"/> <comp lib="0" loc="(7860,690)" name="Ground"/> <comp lib="0" loc="(7860,800)" name="Ground"/> <comp lib="0" loc="(7860,910)" name="Ground"/> <comp lib="0" loc="(7900,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7900,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x115"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7900,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7900,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7920,1060)" name="Ground"/> <comp lib="0" loc="(7920,1130)" name="Ground"/> <comp lib="0" loc="(7920,1280)" name="Ground"/> <comp lib="0" loc="(7920,520)" name="Ground"/> <comp lib="0" loc="(7920,620)" name="Ground"/> <comp lib="0" loc="(7960,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(7960,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x116"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(7960,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7960,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(7980,1060)" name="Ground"/> <comp lib="0" loc="(7980,1280)" name="Ground"/> <comp lib="0" loc="(7980,480)" name="Ground"/> <comp lib="0" loc="(7980,620)" name="Ground"/> <comp lib="0" loc="(7980,690)" name="Ground"/> <comp lib="0" loc="(7980,840)" name="Ground"/> <comp lib="0" loc="(7980,950)" name="Ground"/> <comp lib="0" loc="(8020,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8020,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x117"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8020,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8020,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8040,1020)" name="Ground"/> <comp lib="0" loc="(8040,1280)" name="Ground"/> <comp lib="0" loc="(8040,440)" name="Ground"/> <comp lib="0" loc="(8040,580)" name="Ground"/> <comp lib="0" loc="(8040,690)" name="Ground"/> <comp lib="0" loc="(8040,840)" name="Ground"/> <comp lib="0" loc="(8040,910)" name="Ground"/> <comp lib="0" loc="(8080,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8080,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x118"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8080,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8080,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8100,1060)" name="Ground"/> <comp lib="0" loc="(8100,1280)" name="Ground"/> <comp lib="0" loc="(8100,480)" name="Ground"/> <comp lib="0" loc="(8100,620)" name="Ground"/> <comp lib="0" loc="(8100,690)" name="Ground"/> <comp lib="0" loc="(8100,800)" name="Ground"/> <comp lib="0" loc="(8140,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,1280)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8140,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x119"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8140,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8140,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(820,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(820,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(820,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(820,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(820,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8210,1060)" name="Ground"/> <comp lib="0" loc="(8210,1240)" name="Ground"/> <comp lib="0" loc="(8210,480)" name="Ground"/> <comp lib="0" loc="(8210,620)" name="Ground"/> <comp lib="0" loc="(8210,730)" name="Ground"/> <comp lib="0" loc="(8210,840)" name="Ground"/> <comp lib="0" loc="(8210,910)" name="Ground"/> <comp lib="0" loc="(8250,1060)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8250,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x120"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8250,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8250,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8270,1020)" name="Ground"/> <comp lib="0" loc="(8310,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8310,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8310,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x121"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8330,290)" name="Ground"/> <comp lib="0" loc="(8330,690)" name="Ground"/> <comp lib="0" loc="(8330,840)" name="Ground"/> <comp lib="0" loc="(8330,950)" name="Ground"/> <comp lib="0" loc="(8370,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8370,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x122"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8370,290)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8370,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8390,330)" name="Ground"/> <comp lib="0" loc="(8390,690)" name="Ground"/> <comp lib="0" loc="(8390,800)" name="Ground"/> <comp lib="0" loc="(8390,950)" name="Ground"/> <comp lib="0" loc="(840,330)" name="Ground"/> <comp lib="0" loc="(840,520)" name="Ground"/> <comp lib="0" loc="(840,690)" name="Ground"/> <comp lib="0" loc="(840,800)" name="Ground"/> <comp lib="0" loc="(840,910)" name="Ground"/> <comp lib="0" loc="(8430,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8430,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x123"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8430,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8430,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8430,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8430,950)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8450,210)" name="Ground"/> <comp lib="0" loc="(8450,520)" name="Ground"/> <comp lib="0" loc="(8450,800)" name="Ground"/> <comp lib="0" loc="(8450,910)" name="Ground"/> <comp lib="0" loc="(8490,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8490,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x124"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8490,210)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8490,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8490,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8490,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8510,250)" name="Ground"/> <comp lib="0" loc="(8510,730)" name="Ground"/> <comp lib="0" loc="(8510,840)" name="Ground"/> <comp lib="0" loc="(8550,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8550,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x125"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8550,250)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8550,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8550,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8570,580)" name="Ground"/> <comp lib="0" loc="(8610,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8610,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x126"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8610,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8630,1020)" name="Ground"/> <comp lib="0" loc="(8630,1170)" name="Ground"/> <comp lib="0" loc="(8630,480)" name="Ground"/> <comp lib="0" loc="(8630,620)" name="Ground"/> <comp lib="0" loc="(8630,730)" name="Ground"/> <comp lib="0" loc="(8630,840)" name="Ground"/> <comp lib="0" loc="(8630,910)" name="Ground"/> <comp lib="0" loc="(8670,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,1170)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8670,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x127"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8670,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,730)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8670,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8690,840)" name="Ground"/> <comp lib="0" loc="(8690,910)" name="Ground"/> <comp lib="0" loc="(8730,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8730,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x128"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8730,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8730,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8750,480)" name="Ground"/> <comp lib="0" loc="(8750,580)" name="Ground"/> <comp lib="0" loc="(8750,690)" name="Ground"/> <comp lib="0" loc="(8750,840)" name="Ground"/> <comp lib="0" loc="(8750,910)" name="Ground"/> <comp lib="0" loc="(8790,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(8790,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x129"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(8790,480)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8790,580)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8790,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8790,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(8790,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(880,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x8"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(880,330)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,520)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,800)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(880,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(900,1020)" name="Ground"/> <comp lib="0" loc="(900,1130)" name="Ground"/> <comp lib="0" loc="(900,1240)" name="Ground"/> <comp lib="0" loc="(900,440)" name="Ground"/> <comp lib="0" loc="(900,620)" name="Ground"/> <comp lib="0" loc="(900,690)" name="Ground"/> <comp lib="0" loc="(900,840)" name="Ground"/> <comp lib="0" loc="(900,910)" name="Ground"/> <comp lib="0" loc="(940,1020)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,1130)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,1240)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,130)" name="Pull Resistor"> <a name="pull" val="1"/> </comp> <comp lib="0" loc="(940,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="x9"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(940,440)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,620)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,690)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,840)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(940,910)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(960,1060)" name="Ground"/> <comp lib="0" loc="(960,1130)" name="Ground"/> <comp lib="0" loc="(960,1240)" name="Ground"/> <comp lib="0" loc="(960,440)" name="Ground"/> <comp lib="0" loc="(960,620)" name="Ground"/> <comp lib="0" loc="(960,690)" name="Ground"/> <comp lib="0" loc="(960,840)" name="Ground"/> <comp lib="0" loc="(960,910)" name="Ground"/> <comp lib="1" loc="(180,1040)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,1150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,460)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(180,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,710)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,820)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,930)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(1000,1060)" to="(1000,1130)"/> <wire from="(1000,1130)" to="(1000,1240)"/> <wire from="(1000,1240)" to="(1000,1360)"/> <wire from="(1000,130)" to="(1000,440)"/> <wire from="(1000,440)" to="(1000,620)"/> <wire from="(1000,620)" to="(1000,690)"/> <wire from="(1000,690)" to="(1000,840)"/> <wire from="(1000,840)" to="(1000,910)"/> <wire from="(1000,910)" to="(1000,1060)"/> <wire from="(1040,1040)" to="(1280,1040)"/> <wire from="(1040,1150)" to="(1220,1150)"/> <wire from="(1040,1220)" to="(1160,1220)"/> <wire from="(1040,460)" to="(1340,460)"/> <wire from="(1040,600)" to="(1100,600)"/> <wire from="(1040,670)" to="(1280,670)"/> <wire from="(1060,1060)" to="(1060,1170)"/> <wire from="(1060,1170)" to="(1060,1240)"/> <wire from="(1060,1240)" to="(1060,1360)"/> <wire from="(1060,130)" to="(1060,480)"/> <wire from="(1060,480)" to="(1060,620)"/> <wire from="(1060,620)" to="(1060,690)"/> <wire from="(1060,690)" to="(1060,1060)"/> <wire from="(110,380)" to="(110,450)"/> <wire from="(110,450)" to="(150,450)"/> <wire from="(1100,1000)" to="(1160,1000)"/> <wire from="(1100,1110)" to="(1160,1110)"/> <wire from="(1100,420)" to="(1160,420)"/> <wire from="(1100,600)" to="(1160,600)"/> <wire from="(1120,1020)" to="(1120,1130)"/> <wire from="(1120,1130)" to="(1120,1360)"/> <wire from="(1120,130)" to="(1120,440)"/> <wire from="(1120,440)" to="(1120,620)"/> <wire from="(1120,620)" to="(1120,1020)"/> <wire from="(1160,1000)" to="(1220,1000)"/> <wire from="(1160,1110)" to="(1280,1110)"/> <wire from="(1160,1220)" to="(1220,1220)"/> <wire from="(1160,420)" to="(1220,420)"/> <wire from="(1160,600)" to="(1220,600)"/> <wire from="(1160,710)" to="(1400,710)"/> <wire from="(1160,820)" to="(1280,820)"/> <wire from="(1160,890)" to="(1280,890)"/> <wire from="(1180,1020)" to="(1180,1130)"/> <wire from="(1180,1130)" to="(1180,1240)"/> <wire from="(1180,1240)" to="(1180,1360)"/> <wire from="(1180,130)" to="(1180,440)"/> <wire from="(1180,440)" to="(1180,620)"/> <wire from="(1180,620)" to="(1180,730)"/> <wire from="(1180,730)" to="(1180,840)"/> <wire from="(1180,840)" to="(1180,910)"/> <wire from="(1180,910)" to="(1180,1020)"/> <wire from="(1220,1000)" to="(1400,1000)"/> <wire from="(1220,1150)" to="(1340,1150)"/> <wire from="(1220,1220)" to="(1400,1220)"/> <wire from="(1220,420)" to="(1280,420)"/> <wire from="(1220,600)" to="(1280,600)"/> <wire from="(1240,1020)" to="(1240,1170)"/> <wire from="(1240,1170)" to="(1240,1240)"/> <wire from="(1240,1240)" to="(1240,1360)"/> <wire from="(1240,130)" to="(1240,440)"/> <wire from="(1240,440)" to="(1240,620)"/> <wire from="(1240,620)" to="(1240,1020)"/> <wire from="(1280,1040)" to="(1340,1040)"/> <wire from="(1280,1110)" to="(1460,1110)"/> <wire from="(1280,1260)" to="(1340,1260)"/> <wire from="(1280,420)" to="(1400,420)"/> <wire from="(1280,600)" to="(1340,600)"/> <wire from="(1280,670)" to="(1340,670)"/> <wire from="(1280,820)" to="(1340,820)"/> <wire from="(1280,890)" to="(1340,890)"/> <wire from="(130,1000)" to="(130,1040)"/> <wire from="(130,1000)" to="(300,1000)"/> <wire from="(130,1040)" to="(160,1040)"/> <wire from="(130,1110)" to="(130,1150)"/> <wire from="(130,1110)" to="(300,1110)"/> <wire from="(130,1150)" to="(160,1150)"/> <wire from="(130,420)" to="(130,470)"/> <wire from="(130,420)" to="(160,420)"/> <wire from="(130,470)" to="(150,470)"/> <wire from="(130,560)" to="(130,600)"/> <wire from="(130,560)" to="(1720,560)"/> <wire from="(130,600)" to="(160,600)"/> <wire from="(130,670)" to="(130,710)"/> <wire from="(130,670)" to="(480,670)"/> <wire from="(130,710)" to="(160,710)"/> <wire from="(130,780)" to="(130,820)"/> <wire from="(130,780)" to="(360,780)"/> <wire from="(130,820)" to="(160,820)"/> <wire from="(130,890)" to="(130,930)"/> <wire from="(130,890)" to="(360,890)"/> <wire from="(130,930)" to="(160,930)"/> <wire from="(1300,1060)" to="(1300,1130)"/> <wire from="(1300,1130)" to="(1300,1280)"/> <wire from="(1300,1280)" to="(1300,1360)"/> <wire from="(1300,130)" to="(1300,440)"/> <wire from="(1300,440)" to="(1300,620)"/> <wire from="(1300,620)" to="(1300,690)"/> <wire from="(1300,690)" to="(1300,840)"/> <wire from="(1300,840)" to="(1300,910)"/> <wire from="(1300,910)" to="(1300,1060)"/> <wire from="(1340,1040)" to="(1900,1040)"/> <wire from="(1340,1150)" to="(1400,1150)"/> <wire from="(1340,1260)" to="(1460,1260)"/> <wire from="(1340,460)" to="(1460,460)"/> <wire from="(1340,600)" to="(1400,600)"/> <wire from="(1340,670)" to="(1460,670)"/> <wire from="(1340,820)" to="(1400,820)"/> <wire from="(1340,890)" to="(1400,890)"/> <wire from="(1360,1060)" to="(1360,1170)"/> <wire from="(1360,1170)" to="(1360,1280)"/> <wire from="(1360,1280)" to="(1360,1360)"/> <wire from="(1360,130)" to="(1360,480)"/> <wire from="(1360,480)" to="(1360,620)"/> <wire from="(1360,620)" to="(1360,690)"/> <wire from="(1360,690)" to="(1360,840)"/> <wire from="(1360,840)" to="(1360,910)"/> <wire from="(1360,910)" to="(1360,1060)"/> <wire from="(1400,1000)" to="(1520,1000)"/> <wire from="(1400,1150)" to="(1520,1150)"/> <wire from="(1400,1220)" to="(1520,1220)"/> <wire from="(1400,420)" to="(2080,420)"/> <wire from="(1400,600)" to="(1460,600)"/> <wire from="(1400,710)" to="(2930,710)"/> <wire from="(1400,820)" to="(1460,820)"/> <wire from="(1400,890)" to="(1460,890)"/> <wire from="(1420,1020)" to="(1420,1170)"/> <wire from="(1420,1170)" to="(1420,1240)"/> <wire from="(1420,1240)" to="(1420,1360)"/> <wire from="(1420,130)" to="(1420,440)"/> <wire from="(1420,440)" to="(1420,620)"/> <wire from="(1420,620)" to="(1420,730)"/> <wire from="(1420,730)" to="(1420,840)"/> <wire from="(1420,840)" to="(1420,910)"/> <wire from="(1420,910)" to="(1420,1020)"/> <wire from="(1460,1110)" to="(1780,1110)"/> <wire from="(1460,1260)" to="(4140,1260)"/> <wire from="(1460,460)" to="(1520,460)"/> <wire from="(1460,600)" to="(1520,600)"/> <wire from="(1460,670)" to="(1580,670)"/> <wire from="(1460,820)" to="(1840,820)"/> <wire from="(1460,890)" to="(1720,890)"/> <wire from="(1480,1130)" to="(1480,1280)"/> <wire from="(1480,1280)" to="(1480,1360)"/> <wire from="(1480,130)" to="(1480,480)"/> <wire from="(1480,480)" to="(1480,620)"/> <wire from="(1480,620)" to="(1480,690)"/> <wire from="(1480,690)" to="(1480,840)"/> <wire from="(1480,840)" to="(1480,910)"/> <wire from="(1480,910)" to="(1480,1130)"/> <wire from="(1520,1000)" to="(1580,1000)"/> <wire from="(1520,1150)" to="(1580,1150)"/> <wire from="(1520,1220)" to="(1580,1220)"/> <wire from="(1520,460)" to="(1580,460)"/> <wire from="(1520,600)" to="(1580,600)"/> <wire from="(1520,930)" to="(2260,930)"/> <wire from="(1540,1020)" to="(1540,1170)"/> <wire from="(1540,1170)" to="(1540,1240)"/> <wire from="(1540,1240)" to="(1540,1360)"/> <wire from="(1540,130)" to="(1540,480)"/> <wire from="(1540,480)" to="(1540,620)"/> <wire from="(1540,620)" to="(1540,950)"/> <wire from="(1540,950)" to="(1540,1020)"/> <wire from="(1580,1000)" to="(1720,1000)"/> <wire from="(1580,1150)" to="(1720,1150)"/> <wire from="(1580,1220)" to="(1720,1220)"/> <wire from="(1580,460)" to="(1720,460)"/> <wire from="(1580,600)" to="(3170,600)"/> <wire from="(1580,670)" to="(1720,670)"/> <wire from="(1600,1020)" to="(1600,1170)"/> <wire from="(1600,1170)" to="(1600,1240)"/> <wire from="(1600,1240)" to="(1600,1360)"/> <wire from="(1600,130)" to="(1600,480)"/> <wire from="(1600,480)" to="(1600,620)"/> <wire from="(1600,620)" to="(1600,690)"/> <wire from="(1600,690)" to="(1600,1020)"/> <wire from="(1720,1000)" to="(1780,1000)"/> <wire from="(1720,1150)" to="(1900,1150)"/> <wire from="(1720,1220)" to="(1840,1220)"/> <wire from="(1720,460)" to="(1780,460)"/> <wire from="(1720,560)" to="(1780,560)"/> <wire from="(1720,670)" to="(1780,670)"/> <wire from="(1720,780)" to="(1780,780)"/> <wire from="(1720,890)" to="(1780,890)"/> <wire from="(1740,1020)" to="(1740,1170)"/> <wire from="(1740,1170)" to="(1740,1240)"/> <wire from="(1740,1240)" to="(1740,1360)"/> <wire from="(1740,130)" to="(1740,480)"/> <wire from="(1740,480)" to="(1740,580)"/> <wire from="(1740,580)" to="(1740,690)"/> <wire from="(1740,690)" to="(1740,800)"/> <wire from="(1740,800)" to="(1740,910)"/> <wire from="(1740,910)" to="(1740,1020)"/> <wire from="(1780,1000)" to="(2380,1000)"/> <wire from="(1780,1110)" to="(1840,1110)"/> <wire from="(1780,190)" to="(2020,190)"/> <wire from="(1780,460)" to="(1840,460)"/> <wire from="(1780,560)" to="(1840,560)"/> <wire from="(1780,670)" to="(1840,670)"/> <wire from="(1780,780)" to="(1900,780)"/> <wire from="(1780,890)" to="(1840,890)"/> <wire from="(180,1040)" to="(600,1040)"/> <wire from="(180,1150)" to="(1040,1150)"/> <wire from="(180,420)" to="(800,420)"/> <wire from="(180,460)" to="(300,460)"/> <wire from="(180,500)" to="(360,500)"/> <wire from="(180,600)" to="(300,600)"/> <wire from="(180,710)" to="(360,710)"/> <wire from="(180,820)" to="(420,820)"/> <wire from="(180,930)" to="(300,930)"/> <wire from="(1800,1020)" to="(1800,1130)"/> <wire from="(1800,1130)" to="(1800,1360)"/> <wire from="(1800,130)" to="(1800,210)"/> <wire from="(1800,210)" to="(1800,480)"/> <wire from="(1800,480)" to="(1800,580)"/> <wire from="(1800,580)" to="(1800,690)"/> <wire from="(1800,690)" to="(1800,800)"/> <wire from="(1800,800)" to="(1800,910)"/> <wire from="(1800,910)" to="(1800,1020)"/> <wire from="(1840,1110)" to="(2020,1110)"/> <wire from="(1840,1220)" to="(2200,1220)"/> <wire from="(1840,460)" to="(1900,460)"/> <wire from="(1840,560)" to="(1900,560)"/> <wire from="(1840,670)" to="(1900,670)"/> <wire from="(1840,820)" to="(1960,820)"/> <wire from="(1840,890)" to="(1900,890)"/> <wire from="(1860,1130)" to="(1860,1240)"/> <wire from="(1860,1240)" to="(1860,1360)"/> <wire from="(1860,130)" to="(1860,480)"/> <wire from="(1860,480)" to="(1860,580)"/> <wire from="(1860,580)" to="(1860,690)"/> <wire from="(1860,690)" to="(1860,840)"/> <wire from="(1860,840)" to="(1860,910)"/> <wire from="(1860,910)" to="(1860,1130)"/> <wire from="(1900,1040)" to="(2020,1040)"/> <wire from="(1900,1150)" to="(1960,1150)"/> <wire from="(1900,230)" to="(2750,230)"/> <wire from="(1900,460)" to="(1960,460)"/> <wire from="(1900,560)" to="(1960,560)"/> <wire from="(1900,670)" to="(1960,670)"/> <wire from="(1900,780)" to="(2020,780)"/> <wire from="(1900,890)" to="(1960,890)"/> <wire from="(1920,1060)" to="(1920,1170)"/> <wire from="(1920,1170)" to="(1920,1360)"/> <wire from="(1920,130)" to="(1920,250)"/> <wire from="(1920,250)" to="(1920,480)"/> <wire from="(1920,480)" to="(1920,580)"/> <wire from="(1920,580)" to="(1920,690)"/> <wire from="(1920,690)" to="(1920,800)"/> <wire from="(1920,800)" to="(1920,910)"/> <wire from="(1920,910)" to="(1920,1060)"/> <wire from="(1960,1150)" to="(2080,1150)"/> <wire from="(1960,270)" to="(2620,270)"/> <wire from="(1960,460)" to="(2020,460)"/> <wire from="(1960,560)" to="(2020,560)"/> <wire from="(1960,670)" to="(2020,670)"/> <wire from="(1960,820)" to="(2260,820)"/> <wire from="(1960,890)" to="(2020,890)"/> <wire from="(1980,1170)" to="(1980,1360)"/> <wire from="(1980,130)" to="(1980,290)"/> <wire from="(1980,290)" to="(1980,480)"/> <wire from="(1980,480)" to="(1980,580)"/> <wire from="(1980,580)" to="(1980,690)"/> <wire from="(1980,690)" to="(1980,840)"/> <wire from="(1980,840)" to="(1980,910)"/> <wire from="(1980,910)" to="(1980,1170)"/> <wire from="(2020,1040)" to="(2080,1040)"/> <wire from="(2020,1110)" to="(2200,1110)"/> <wire from="(2020,190)" to="(3960,190)"/> <wire from="(2020,460)" to="(2260,460)"/> <wire from="(2020,560)" to="(2080,560)"/> <wire from="(2020,670)" to="(2260,670)"/> <wire from="(2020,780)" to="(2440,780)"/> <wire from="(2020,890)" to="(2560,890)"/> <wire from="(2040,1060)" to="(2040,1130)"/> <wire from="(2040,1130)" to="(2040,1360)"/> <wire from="(2040,130)" to="(2040,210)"/> <wire from="(2040,210)" to="(2040,480)"/> <wire from="(2040,480)" to="(2040,580)"/> <wire from="(2040,580)" to="(2040,690)"/> <wire from="(2040,690)" to="(2040,800)"/> <wire from="(2040,800)" to="(2040,910)"/> <wire from="(2040,910)" to="(2040,1060)"/> <wire from="(2080,1040)" to="(2200,1040)"/> <wire from="(2080,1150)" to="(3110,1150)"/> <wire from="(2080,420)" to="(3170,420)"/> <wire from="(2080,560)" to="(2200,560)"/> <wire from="(2100,1060)" to="(2100,1170)"/> <wire from="(2100,1170)" to="(2100,1360)"/> <wire from="(2100,130)" to="(2100,440)"/> <wire from="(2100,440)" to="(2100,580)"/> <wire from="(2100,580)" to="(2100,1060)"/> <wire from="(2140,310)" to="(2320,310)"/> <wire from="(2160,130)" to="(2160,330)"/> <wire from="(2160,330)" to="(2160,1360)"/> <wire from="(2200,1040)" to="(2260,1040)"/> <wire from="(2200,1110)" to="(2380,1110)"/> <wire from="(2200,1220)" to="(2380,1220)"/> <wire from="(2200,500)" to="(2380,500)"/> <wire from="(2200,560)" to="(2260,560)"/> <wire from="(2220,1060)" to="(2220,1130)"/> <wire from="(2220,1130)" to="(2220,1240)"/> <wire from="(2220,1240)" to="(2220,1360)"/> <wire from="(2220,130)" to="(2220,520)"/> <wire from="(2220,520)" to="(2220,580)"/> <wire from="(2220,580)" to="(2220,1060)"/> <wire from="(2260,1040)" to="(2810,1040)"/> <wire from="(2260,460)" to="(2560,460)"/> <wire from="(2260,560)" to="(2380,560)"/> <wire from="(2260,670)" to="(2320,670)"/> <wire from="(2260,820)" to="(2320,820)"/> <wire from="(2260,930)" to="(2320,930)"/> <wire from="(2280,1060)" to="(2280,1360)"/> <wire from="(2280,130)" to="(2280,480)"/> <wire from="(2280,480)" to="(2280,580)"/> <wire from="(2280,580)" to="(2280,690)"/> <wire from="(2280,690)" to="(2280,840)"/> <wire from="(2280,840)" to="(2280,950)"/> <wire from="(2280,950)" to="(2280,1060)"/> <wire from="(2320,310)" to="(2440,310)"/> <wire from="(2320,670)" to="(2560,670)"/> <wire from="(2320,820)" to="(3050,820)"/> <wire from="(2320,930)" to="(3840,930)"/> <wire from="(2340,130)" to="(2340,330)"/> <wire from="(2340,330)" to="(2340,690)"/> <wire from="(2340,690)" to="(2340,840)"/> <wire from="(2340,840)" to="(2340,950)"/> <wire from="(2340,950)" to="(2340,1360)"/> <wire from="(2380,1000)" to="(2750,1000)"/> <wire from="(2380,1110)" to="(2810,1110)"/> <wire from="(2380,1220)" to="(2500,1220)"/> <wire from="(2380,500)" to="(2870,500)"/> <wire from="(2380,560)" to="(2560,560)"/> <wire from="(2400,1020)" to="(2400,1130)"/> <wire from="(2400,1130)" to="(2400,1240)"/> <wire from="(2400,1240)" to="(2400,1360)"/> <wire from="(2400,130)" to="(2400,520)"/> <wire from="(2400,520)" to="(2400,580)"/> <wire from="(2400,580)" to="(2400,1020)"/> <wire from="(2440,310)" to="(2560,310)"/> <wire from="(2440,780)" to="(2750,780)"/> <wire from="(2460,130)" to="(2460,330)"/> <wire from="(2460,330)" to="(2460,800)"/> <wire from="(2460,800)" to="(2460,1360)"/> <wire from="(2500,1220)" to="(3470,1220)"/> <wire from="(2520,1240)" to="(2520,1360)"/> <wire from="(2520,130)" to="(2520,1240)"/> <wire from="(2560,310)" to="(2990,310)"/> <wire from="(2560,460)" to="(2620,460)"/> <wire from="(2560,560)" to="(2620,560)"/> <wire from="(2560,670)" to="(2620,670)"/> <wire from="(2560,890)" to="(2750,890)"/> <wire from="(2580,130)" to="(2580,330)"/> <wire from="(2580,330)" to="(2580,480)"/> <wire from="(2580,480)" to="(2580,580)"/> <wire from="(2580,580)" to="(2580,690)"/> <wire from="(2580,690)" to="(2580,910)"/> <wire from="(2580,910)" to="(2580,1360)"/> <wire from="(2620,270)" to="(2870,270)"/> <wire from="(2620,460)" to="(2750,460)"/> <wire from="(2620,560)" to="(2750,560)"/> <wire from="(2620,670)" to="(2750,670)"/> <wire from="(2640,130)" to="(2640,290)"/> <wire from="(2640,290)" to="(2640,480)"/> <wire from="(2640,480)" to="(2640,580)"/> <wire from="(2640,580)" to="(2640,690)"/> <wire from="(2640,690)" to="(2640,1360)"/> <wire from="(2750,1000)" to="(3410,1000)"/> <wire from="(2750,230)" to="(2810,230)"/> <wire from="(2750,460)" to="(2810,460)"/> <wire from="(2750,560)" to="(2810,560)"/> <wire from="(2750,670)" to="(2810,670)"/> <wire from="(2750,780)" to="(2810,780)"/> <wire from="(2750,890)" to="(2810,890)"/> <wire from="(2770,1020)" to="(2770,1360)"/> <wire from="(2770,130)" to="(2770,250)"/> <wire from="(2770,250)" to="(2770,480)"/> <wire from="(2770,480)" to="(2770,580)"/> <wire from="(2770,580)" to="(2770,690)"/> <wire from="(2770,690)" to="(2770,800)"/> <wire from="(2770,800)" to="(2770,910)"/> <wire from="(2770,910)" to="(2770,1020)"/> <wire from="(2810,1040)" to="(3170,1040)"/> <wire from="(2810,1110)" to="(3530,1110)"/> <wire from="(2810,230)" to="(2930,230)"/> <wire from="(2810,460)" to="(3110,460)"/> <wire from="(2810,560)" to="(3110,560)"/> <wire from="(2810,670)" to="(2870,670)"/> <wire from="(2810,780)" to="(2870,780)"/> <wire from="(2810,890)" to="(2870,890)"/> <wire from="(2830,1060)" to="(2830,1130)"/> <wire from="(2830,1130)" to="(2830,1360)"/> <wire from="(2830,130)" to="(2830,250)"/> <wire from="(2830,250)" to="(2830,480)"/> <wire from="(2830,480)" to="(2830,580)"/> <wire from="(2830,580)" to="(2830,690)"/> <wire from="(2830,690)" to="(2830,800)"/> <wire from="(2830,800)" to="(2830,910)"/> <wire from="(2830,910)" to="(2830,1060)"/> <wire from="(2870,270)" to="(3050,270)"/> <wire from="(2870,500)" to="(2930,500)"/> <wire from="(2870,670)" to="(3110,670)"/> <wire from="(2870,780)" to="(2930,780)"/> <wire from="(2870,890)" to="(2930,890)"/> <wire from="(2890,130)" to="(2890,290)"/> <wire from="(2890,290)" to="(2890,520)"/> <wire from="(2890,520)" to="(2890,690)"/> <wire from="(2890,690)" to="(2890,800)"/> <wire from="(2890,800)" to="(2890,910)"/> <wire from="(2890,910)" to="(2890,1360)"/> <wire from="(2930,230)" to="(3230,230)"/> <wire from="(2930,500)" to="(2990,500)"/> <wire from="(2930,710)" to="(2990,710)"/> <wire from="(2930,780)" to="(2990,780)"/> <wire from="(2930,890)" to="(2990,890)"/> <wire from="(2950,130)" to="(2950,250)"/> <wire from="(2950,250)" to="(2950,520)"/> <wire from="(2950,520)" to="(2950,730)"/> <wire from="(2950,730)" to="(2950,800)"/> <wire from="(2950,800)" to="(2950,910)"/> <wire from="(2950,910)" to="(2950,1360)"/> <wire from="(2990,310)" to="(3410,310)"/> <wire from="(2990,500)" to="(3230,500)"/> <wire from="(2990,710)" to="(3050,710)"/> <wire from="(2990,780)" to="(3230,780)"/> <wire from="(2990,890)" to="(3110,890)"/> <wire from="(300,1000)" to="(540,1000)"/> <wire from="(300,1110)" to="(480,1110)"/> <wire from="(300,460)" to="(480,460)"/> <wire from="(300,600)" to="(480,600)"/> <wire from="(300,930)" to="(740,930)"/> <wire from="(3010,130)" to="(3010,330)"/> <wire from="(3010,330)" to="(3010,520)"/> <wire from="(3010,520)" to="(3010,730)"/> <wire from="(3010,730)" to="(3010,800)"/> <wire from="(3010,800)" to="(3010,910)"/> <wire from="(3010,910)" to="(3010,1360)"/> <wire from="(3050,270)" to="(3290,270)"/> <wire from="(3050,710)" to="(3290,710)"/> <wire from="(3050,820)" to="(3110,820)"/> <wire from="(3070,130)" to="(3070,290)"/> <wire from="(3070,290)" to="(3070,730)"/> <wire from="(3070,730)" to="(3070,840)"/> <wire from="(3070,840)" to="(3070,1360)"/> <wire from="(3110,1150)" to="(3170,1150)"/> <wire from="(3110,460)" to="(3350,460)"/> <wire from="(3110,560)" to="(3350,560)"/> <wire from="(3110,670)" to="(3230,670)"/> <wire from="(3110,820)" to="(3840,820)"/> <wire from="(3110,890)" to="(3230,890)"/> <wire from="(3130,1170)" to="(3130,1360)"/> <wire from="(3130,130)" to="(3130,480)"/> <wire from="(3130,480)" to="(3130,580)"/> <wire from="(3130,580)" to="(3130,690)"/> <wire from="(3130,690)" to="(3130,840)"/> <wire from="(3130,840)" to="(3130,910)"/> <wire from="(3130,910)" to="(3130,1170)"/> <wire from="(3170,1040)" to="(3350,1040)"/> <wire from="(3170,1150)" to="(3410,1150)"/> <wire from="(3170,420)" to="(3710,420)"/> <wire from="(3170,600)" to="(3470,600)"/> <wire from="(3190,1060)" to="(3190,1170)"/> <wire from="(3190,1170)" to="(3190,1360)"/> <wire from="(3190,130)" to="(3190,440)"/> <wire from="(3190,440)" to="(3190,620)"/> <wire from="(3190,620)" to="(3190,1060)"/> <wire from="(320,1020)" to="(320,1130)"/> <wire from="(320,1130)" to="(320,1360)"/> <wire from="(320,130)" to="(320,480)"/> <wire from="(320,480)" to="(320,620)"/> <wire from="(320,620)" to="(320,950)"/> <wire from="(320,950)" to="(320,1020)"/> <wire from="(3230,230)" to="(4860,230)"/> <wire from="(3230,500)" to="(3290,500)"/> <wire from="(3230,670)" to="(3350,670)"/> <wire from="(3230,780)" to="(3290,780)"/> <wire from="(3230,890)" to="(3290,890)"/> <wire from="(3250,130)" to="(3250,250)"/> <wire from="(3250,250)" to="(3250,520)"/> <wire from="(3250,520)" to="(3250,690)"/> <wire from="(3250,690)" to="(3250,800)"/> <wire from="(3250,800)" to="(3250,910)"/> <wire from="(3250,910)" to="(3250,1360)"/> <wire from="(3290,270)" to="(3840,270)"/> <wire from="(3290,500)" to="(3530,500)"/> <wire from="(3290,710)" to="(4080,710)"/> <wire from="(3290,780)" to="(3350,780)"/> <wire from="(3290,890)" to="(3350,890)"/> <wire from="(3310,130)" to="(3310,290)"/> <wire from="(3310,290)" to="(3310,520)"/> <wire from="(3310,520)" to="(3310,730)"/> <wire from="(3310,730)" to="(3310,800)"/> <wire from="(3310,800)" to="(3310,910)"/> <wire from="(3310,910)" to="(3310,1360)"/> <wire from="(3350,1040)" to="(3470,1040)"/> <wire from="(3350,460)" to="(3410,460)"/> <wire from="(3350,560)" to="(3410,560)"/> <wire from="(3350,670)" to="(3410,670)"/> <wire from="(3350,780)" to="(3410,780)"/> <wire from="(3350,890)" to="(3410,890)"/> <wire from="(3370,1060)" to="(3370,1360)"/> <wire from="(3370,130)" to="(3370,480)"/> <wire from="(3370,480)" to="(3370,580)"/> <wire from="(3370,580)" to="(3370,690)"/> <wire from="(3370,690)" to="(3370,800)"/> <wire from="(3370,800)" to="(3370,910)"/> <wire from="(3370,910)" to="(3370,1060)"/> <wire from="(3410,1000)" to="(3710,1000)"/> <wire from="(3410,1150)" to="(3590,1150)"/> <wire from="(3410,310)" to="(4020,310)"/> <wire from="(3410,460)" to="(3470,460)"/> <wire from="(3410,560)" to="(3710,560)"/> <wire from="(3410,670)" to="(3470,670)"/> <wire from="(3410,780)" to="(3960,780)"/> <wire from="(3410,890)" to="(3960,890)"/> <wire from="(3430,1020)" to="(3430,1170)"/> <wire from="(3430,1170)" to="(3430,1360)"/> <wire from="(3430,130)" to="(3430,330)"/> <wire from="(3430,330)" to="(3430,480)"/> <wire from="(3430,480)" to="(3430,580)"/> <wire from="(3430,580)" to="(3430,690)"/> <wire from="(3430,690)" to="(3430,800)"/> <wire from="(3430,800)" to="(3430,910)"/> <wire from="(3430,910)" to="(3430,1020)"/> <wire from="(3470,1040)" to="(3530,1040)"/> <wire from="(3470,1220)" to="(3530,1220)"/> <wire from="(3470,460)" to="(3840,460)"/> <wire from="(3470,600)" to="(3530,600)"/> <wire from="(3470,670)" to="(3840,670)"/> <wire from="(3490,1060)" to="(3490,1240)"/> <wire from="(3490,1240)" to="(3490,1360)"/> <wire from="(3490,130)" to="(3490,480)"/> <wire from="(3490,480)" to="(3490,620)"/> <wire from="(3490,620)" to="(3490,690)"/> <wire from="(3490,690)" to="(3490,1060)"/> <wire from="(3530,1040)" to="(3590,1040)"/> <wire from="(3530,1110)" to="(4080,1110)"/> <wire from="(3530,1220)" to="(3590,1220)"/> <wire from="(3530,500)" to="(3590,500)"/> <wire from="(3530,600)" to="(3590,600)"/> <wire from="(3550,1060)" to="(3550,1130)"/> <wire from="(3550,1130)" to="(3550,1240)"/> <wire from="(3550,1240)" to="(3550,1360)"/> <wire from="(3550,130)" to="(3550,520)"/> <wire from="(3550,520)" to="(3550,620)"/> <wire from="(3550,620)" to="(3550,1060)"/> <wire from="(3590,1040)" to="(3650,1040)"/> <wire from="(3590,1150)" to="(3650,1150)"/> <wire from="(3590,1220)" to="(3650,1220)"/> <wire from="(3590,500)" to="(3650,500)"/> <wire from="(3590,600)" to="(4080,600)"/> <wire from="(360,270)" to="(1960,270)"/> <wire from="(360,500)" to="(420,500)"/> <wire from="(360,710)" to="(420,710)"/> <wire from="(360,780)" to="(860,780)"/> <wire from="(360,890)" to="(420,890)"/> <wire from="(3610,1060)" to="(3610,1170)"/> <wire from="(3610,1170)" to="(3610,1240)"/> <wire from="(3610,1240)" to="(3610,1360)"/> <wire from="(3610,130)" to="(3610,520)"/> <wire from="(3610,520)" to="(3610,620)"/> <wire from="(3610,620)" to="(3610,1060)"/> <wire from="(3650,1040)" to="(3840,1040)"/> <wire from="(3650,1150)" to="(3710,1150)"/> <wire from="(3650,1220)" to="(4080,1220)"/> <wire from="(3650,500)" to="(4140,500)"/> <wire from="(3670,1060)" to="(3670,1170)"/> <wire from="(3670,1170)" to="(3670,1240)"/> <wire from="(3670,1240)" to="(3670,1360)"/> <wire from="(3670,130)" to="(3670,520)"/> <wire from="(3670,520)" to="(3670,1060)"/> <wire from="(3710,1000)" to="(3900,1000)"/> <wire from="(3710,1150)" to="(3960,1150)"/> <wire from="(3710,420)" to="(3900,420)"/> <wire from="(3710,560)" to="(3840,560)"/> <wire from="(3730,1020)" to="(3730,1170)"/> <wire from="(3730,1170)" to="(3730,1360)"/> <wire from="(3730,130)" to="(3730,440)"/> <wire from="(3730,440)" to="(3730,580)"/> <wire from="(3730,580)" to="(3730,1020)"/> <wire from="(380,130)" to="(380,290)"/> <wire from="(380,290)" to="(380,520)"/> <wire from="(380,520)" to="(380,730)"/> <wire from="(380,730)" to="(380,800)"/> <wire from="(380,800)" to="(380,910)"/> <wire from="(380,910)" to="(380,1360)"/> <wire from="(3840,1040)" to="(4200,1040)"/> <wire from="(3840,270)" to="(5350,270)"/> <wire from="(3840,460)" to="(3960,460)"/> <wire from="(3840,560)" to="(3900,560)"/> <wire from="(3840,670)" to="(3960,670)"/> <wire from="(3840,820)" to="(4080,820)"/> <wire from="(3840,930)" to="(4740,930)"/> <wire from="(3860,1060)" to="(3860,1360)"/> <wire from="(3860,130)" to="(3860,290)"/> <wire from="(3860,290)" to="(3860,480)"/> <wire from="(3860,480)" to="(3860,580)"/> <wire from="(3860,580)" to="(3860,690)"/> <wire from="(3860,690)" to="(3860,840)"/> <wire from="(3860,840)" to="(3860,950)"/> <wire from="(3860,950)" to="(3860,1060)"/> <wire from="(3900,1000)" to="(3960,1000)"/> <wire from="(3900,420)" to="(4260,420)"/> <wire from="(3900,560)" to="(3960,560)"/> <wire from="(3920,1020)" to="(3920,1360)"/> <wire from="(3920,130)" to="(3920,440)"/> <wire from="(3920,440)" to="(3920,580)"/> <wire from="(3920,580)" to="(3920,1020)"/> <wire from="(3960,1000)" to="(4080,1000)"/> <wire from="(3960,1150)" to="(4200,1150)"/> <wire from="(3960,190)" to="(4920,190)"/> <wire from="(3960,460)" to="(4020,460)"/> <wire from="(3960,560)" to="(4020,560)"/> <wire from="(3960,670)" to="(4020,670)"/> <wire from="(3960,780)" to="(4920,780)"/> <wire from="(3960,890)" to="(4020,890)"/> <wire from="(3980,1020)" to="(3980,1170)"/> <wire from="(3980,1170)" to="(3980,1360)"/> <wire from="(3980,130)" to="(3980,210)"/> <wire from="(3980,210)" to="(3980,480)"/> <wire from="(3980,480)" to="(3980,580)"/> <wire from="(3980,580)" to="(3980,690)"/> <wire from="(3980,690)" to="(3980,800)"/> <wire from="(3980,800)" to="(3980,910)"/> <wire from="(3980,910)" to="(3980,1020)"/> <wire from="(4020,310)" to="(5110,310)"/> <wire from="(4020,460)" to="(4080,460)"/> <wire from="(4020,560)" to="(4140,560)"/> <wire from="(4020,670)" to="(4260,670)"/> <wire from="(4020,890)" to="(4080,890)"/> <wire from="(4040,130)" to="(4040,330)"/> <wire from="(4040,330)" to="(4040,480)"/> <wire from="(4040,480)" to="(4040,580)"/> <wire from="(4040,580)" to="(4040,690)"/> <wire from="(4040,690)" to="(4040,910)"/> <wire from="(4040,910)" to="(4040,1360)"/> <wire from="(4080,1000)" to="(4320,1000)"/> <wire from="(4080,1110)" to="(4320,1110)"/> <wire from="(4080,1220)" to="(4320,1220)"/> <wire from="(4080,460)" to="(4380,460)"/> <wire from="(4080,600)" to="(4320,600)"/> <wire from="(4080,710)" to="(4860,710)"/> <wire from="(4080,820)" to="(4260,820)"/> <wire from="(4080,890)" to="(4260,890)"/> <wire from="(4100,1020)" to="(4100,1130)"/> <wire from="(4100,1130)" to="(4100,1240)"/> <wire from="(4100,1240)" to="(4100,1360)"/> <wire from="(4100,130)" to="(4100,480)"/> <wire from="(4100,480)" to="(4100,620)"/> <wire from="(4100,620)" to="(4100,730)"/> <wire from="(4100,730)" to="(4100,840)"/> <wire from="(4100,840)" to="(4100,910)"/> <wire from="(4100,910)" to="(4100,1020)"/> <wire from="(4140,1260)" to="(4200,1260)"/> <wire from="(4140,500)" to="(4200,500)"/> <wire from="(4140,560)" to="(4260,560)"/> <wire from="(4160,1280)" to="(4160,1360)"/> <wire from="(4160,130)" to="(4160,520)"/> <wire from="(4160,520)" to="(4160,580)"/> <wire from="(4160,580)" to="(4160,1280)"/> <wire from="(420,310)" to="(740,310)"/> <wire from="(420,500)" to="(860,500)"/> <wire from="(420,710)" to="(540,710)"/> <wire from="(420,820)" to="(480,820)"/> <wire from="(420,890)" to="(480,890)"/> <wire from="(4200,1040)" to="(4380,1040)"/> <wire from="(4200,1150)" to="(4380,1150)"/> <wire from="(4200,1260)" to="(4260,1260)"/> <wire from="(4200,500)" to="(4440,500)"/> <wire from="(4220,1060)" to="(4220,1170)"/> <wire from="(4220,1170)" to="(4220,1280)"/> <wire from="(4220,1280)" to="(4220,1360)"/> <wire from="(4220,130)" to="(4220,520)"/> <wire from="(4220,520)" to="(4220,1060)"/> <wire from="(4260,1260)" to="(7520,1260)"/> <wire from="(4260,420)" to="(4320,420)"/> <wire from="(4260,560)" to="(4380,560)"/> <wire from="(4260,670)" to="(4320,670)"/> <wire from="(4260,820)" to="(4320,820)"/> <wire from="(4260,890)" to="(4320,890)"/> <wire from="(4280,1280)" to="(4280,1360)"/> <wire from="(4280,130)" to="(4280,440)"/> <wire from="(4280,440)" to="(4280,580)"/> <wire from="(4280,580)" to="(4280,690)"/> <wire from="(4280,690)" to="(4280,840)"/> <wire from="(4280,840)" to="(4280,910)"/> <wire from="(4280,910)" to="(4280,1280)"/> <wire from="(4320,1000)" to="(4440,1000)"/> <wire from="(4320,1110)" to="(5110,1110)"/> <wire from="(4320,1220)" to="(4380,1220)"/> <wire from="(4320,420)" to="(4620,420)"/> <wire from="(4320,600)" to="(4440,600)"/> <wire from="(4320,670)" to="(4380,670)"/> <wire from="(4320,820)" to="(4380,820)"/> <wire from="(4320,890)" to="(4380,890)"/> <wire from="(4340,1020)" to="(4340,1130)"/> <wire from="(4340,1130)" to="(4340,1240)"/> <wire from="(4340,1240)" to="(4340,1360)"/> <wire from="(4340,130)" to="(4340,440)"/> <wire from="(4340,440)" to="(4340,620)"/> <wire from="(4340,620)" to="(4340,690)"/> <wire from="(4340,690)" to="(4340,840)"/> <wire from="(4340,840)" to="(4340,910)"/> <wire from="(4340,910)" to="(4340,1020)"/> <wire from="(4380,1040)" to="(5110,1040)"/> <wire from="(4380,1150)" to="(4440,1150)"/> <wire from="(4380,1220)" to="(4440,1220)"/> <wire from="(4380,460)" to="(4560,460)"/> <wire from="(4380,560)" to="(4620,560)"/> <wire from="(4380,670)" to="(4560,670)"/> <wire from="(4380,820)" to="(4560,820)"/> <wire from="(4380,890)" to="(4560,890)"/> <wire from="(440,130)" to="(440,330)"/> <wire from="(440,330)" to="(440,520)"/> <wire from="(440,520)" to="(440,730)"/> <wire from="(440,730)" to="(440,840)"/> <wire from="(440,840)" to="(440,910)"/> <wire from="(440,910)" to="(440,1360)"/> <wire from="(4400,1060)" to="(4400,1170)"/> <wire from="(4400,1170)" to="(4400,1240)"/> <wire from="(4400,1240)" to="(4400,1360)"/> <wire from="(4400,130)" to="(4400,480)"/> <wire from="(4400,480)" to="(4400,580)"/> <wire from="(4400,580)" to="(4400,690)"/> <wire from="(4400,690)" to="(4400,840)"/> <wire from="(4400,840)" to="(4400,910)"/> <wire from="(4400,910)" to="(4400,1060)"/> <wire from="(4440,1000)" to="(4560,1000)"/> <wire from="(4440,1150)" to="(4560,1150)"/> <wire from="(4440,1220)" to="(4500,1220)"/> <wire from="(4440,500)" to="(4500,500)"/> <wire from="(4440,600)" to="(4560,600)"/> <wire from="(4460,1020)" to="(4460,1170)"/> <wire from="(4460,1170)" to="(4460,1240)"/> <wire from="(4460,1240)" to="(4460,1360)"/> <wire from="(4460,130)" to="(4460,520)"/> <wire from="(4460,520)" to="(4460,620)"/> <wire from="(4460,620)" to="(4460,1020)"/> <wire from="(4500,1220)" to="(4560,1220)"/> <wire from="(4500,500)" to="(4800,500)"/> <wire from="(4520,1240)" to="(4520,1360)"/> <wire from="(4520,130)" to="(4520,520)"/> <wire from="(4520,520)" to="(4520,1240)"/> <wire from="(4560,1000)" to="(4680,1000)"/> <wire from="(4560,1150)" to="(4680,1150)"/> <wire from="(4560,1220)" to="(4620,1220)"/> <wire from="(4560,460)" to="(4740,460)"/> <wire from="(4560,600)" to="(4680,600)"/> <wire from="(4560,670)" to="(4620,670)"/> <wire from="(4560,820)" to="(4620,820)"/> <wire from="(4560,890)" to="(4620,890)"/> <wire from="(4580,1020)" to="(4580,1170)"/> <wire from="(4580,1170)" to="(4580,1240)"/> <wire from="(4580,1240)" to="(4580,1360)"/> <wire from="(4580,130)" to="(4580,480)"/> <wire from="(4580,480)" to="(4580,620)"/> <wire from="(4580,620)" to="(4580,690)"/> <wire from="(4580,690)" to="(4580,840)"/> <wire from="(4580,840)" to="(4580,910)"/> <wire from="(4580,910)" to="(4580,1020)"/> <wire from="(4620,1220)" to="(4680,1220)"/> <wire from="(4620,420)" to="(4680,420)"/> <wire from="(4620,560)" to="(4740,560)"/> <wire from="(4620,670)" to="(4680,670)"/> <wire from="(4620,820)" to="(4680,820)"/> <wire from="(4620,890)" to="(4680,890)"/> <wire from="(4640,1240)" to="(4640,1360)"/> <wire from="(4640,130)" to="(4640,440)"/> <wire from="(4640,440)" to="(4640,580)"/> <wire from="(4640,580)" to="(4640,690)"/> <wire from="(4640,690)" to="(4640,840)"/> <wire from="(4640,840)" to="(4640,910)"/> <wire from="(4640,910)" to="(4640,1240)"/> <wire from="(4680,1000)" to="(4740,1000)"/> <wire from="(4680,1150)" to="(4740,1150)"/> <wire from="(4680,1220)" to="(4740,1220)"/> <wire from="(4680,420)" to="(5170,420)"/> <wire from="(4680,600)" to="(5410,600)"/> <wire from="(4680,670)" to="(4740,670)"/> <wire from="(4680,820)" to="(4860,820)"/> <wire from="(4680,890)" to="(4920,890)"/> <wire from="(4700,1020)" to="(4700,1170)"/> <wire from="(4700,1170)" to="(4700,1240)"/> <wire from="(4700,1240)" to="(4700,1360)"/> <wire from="(4700,130)" to="(4700,440)"/> <wire from="(4700,440)" to="(4700,620)"/> <wire from="(4700,620)" to="(4700,690)"/> <wire from="(4700,690)" to="(4700,840)"/> <wire from="(4700,840)" to="(4700,910)"/> <wire from="(4700,910)" to="(4700,1020)"/> <wire from="(4740,1000)" to="(4800,1000)"/> <wire from="(4740,1150)" to="(4800,1150)"/> <wire from="(4740,1220)" to="(4800,1220)"/> <wire from="(4740,460)" to="(5050,460)"/> <wire from="(4740,560)" to="(4800,560)"/> <wire from="(4740,670)" to="(5110,670)"/> <wire from="(4740,930)" to="(5530,930)"/> <wire from="(4760,1020)" to="(4760,1170)"/> <wire from="(4760,1170)" to="(4760,1240)"/> <wire from="(4760,1240)" to="(4760,1360)"/> <wire from="(4760,130)" to="(4760,480)"/> <wire from="(4760,480)" to="(4760,580)"/> <wire from="(4760,580)" to="(4760,690)"/> <wire from="(4760,690)" to="(4760,950)"/> <wire from="(4760,950)" to="(4760,1020)"/> <wire from="(480,1110)" to="(540,1110)"/> <wire from="(480,1220)" to="(540,1220)"/> <wire from="(480,460)" to="(540,460)"/> <wire from="(480,600)" to="(540,600)"/> <wire from="(480,670)" to="(600,670)"/> <wire from="(480,820)" to="(540,820)"/> <wire from="(480,890)" to="(540,890)"/> <wire from="(4800,1000)" to="(5290,1000)"/> <wire from="(4800,1150)" to="(5350,1150)"/> <wire from="(4800,1220)" to="(5050,1220)"/> <wire from="(4800,500)" to="(4920,500)"/> <wire from="(4800,560)" to="(5110,560)"/> <wire from="(4820,1020)" to="(4820,1170)"/> <wire from="(4820,1170)" to="(4820,1240)"/> <wire from="(4820,1240)" to="(4820,1360)"/> <wire from="(4820,130)" to="(4820,520)"/> <wire from="(4820,520)" to="(4820,580)"/> <wire from="(4820,580)" to="(4820,1020)"/> <wire from="(4860,230)" to="(5840,230)"/> <wire from="(4860,710)" to="(4920,710)"/> <wire from="(4860,820)" to="(5110,820)"/> <wire from="(4880,130)" to="(4880,250)"/> <wire from="(4880,250)" to="(4880,730)"/> <wire from="(4880,730)" to="(4880,840)"/> <wire from="(4880,840)" to="(4880,1360)"/> <wire from="(4920,190)" to="(5780,190)"/> <wire from="(4920,500)" to="(5410,500)"/> <wire from="(4920,710)" to="(5050,710)"/> <wire from="(4920,780)" to="(5050,780)"/> <wire from="(4920,890)" to="(5050,890)"/> <wire from="(4940,130)" to="(4940,210)"/> <wire from="(4940,210)" to="(4940,520)"/> <wire from="(4940,520)" to="(4940,730)"/> <wire from="(4940,730)" to="(4940,800)"/> <wire from="(4940,800)" to="(4940,910)"/> <wire from="(4940,910)" to="(4940,1360)"/> <wire from="(500,1130)" to="(500,1240)"/> <wire from="(500,1240)" to="(500,1360)"/> <wire from="(500,130)" to="(500,480)"/> <wire from="(500,480)" to="(500,620)"/> <wire from="(500,620)" to="(500,690)"/> <wire from="(500,690)" to="(500,840)"/> <wire from="(500,840)" to="(500,910)"/> <wire from="(500,910)" to="(500,1130)"/> <wire from="(5050,1220)" to="(5170,1220)"/> <wire from="(5050,460)" to="(5110,460)"/> <wire from="(5050,710)" to="(5470,710)"/> <wire from="(5050,780)" to="(5290,780)"/> <wire from="(5050,890)" to="(5110,890)"/> <wire from="(5070,1240)" to="(5070,1360)"/> <wire from="(5070,130)" to="(5070,480)"/> <wire from="(5070,480)" to="(5070,730)"/> <wire from="(5070,730)" to="(5070,800)"/> <wire from="(5070,800)" to="(5070,910)"/> <wire from="(5070,910)" to="(5070,1240)"/> <wire from="(5110,1040)" to="(5170,1040)"/> <wire from="(5110,1110)" to="(5290,1110)"/> <wire from="(5110,310)" to="(5290,310)"/> <wire from="(5110,460)" to="(5290,460)"/> <wire from="(5110,560)" to="(5170,560)"/> <wire from="(5110,670)" to="(5170,670)"/> <wire from="(5110,820)" to="(5170,820)"/> <wire from="(5110,890)" to="(5170,890)"/> <wire from="(5130,1060)" to="(5130,1130)"/> <wire from="(5130,1130)" to="(5130,1360)"/> <wire from="(5130,130)" to="(5130,330)"/> <wire from="(5130,330)" to="(5130,480)"/> <wire from="(5130,480)" to="(5130,580)"/> <wire from="(5130,580)" to="(5130,690)"/> <wire from="(5130,690)" to="(5130,840)"/> <wire from="(5130,840)" to="(5130,910)"/> <wire from="(5130,910)" to="(5130,1060)"/> <wire from="(5170,1040)" to="(5230,1040)"/> <wire from="(5170,1220)" to="(5960,1220)"/> <wire from="(5170,420)" to="(5230,420)"/> <wire from="(5170,560)" to="(5230,560)"/> <wire from="(5170,670)" to="(5290,670)"/> <wire from="(5170,820)" to="(5720,820)"/> <wire from="(5170,890)" to="(5290,890)"/> <wire from="(5190,1060)" to="(5190,1240)"/> <wire from="(5190,1240)" to="(5190,1360)"/> <wire from="(5190,130)" to="(5190,440)"/> <wire from="(5190,440)" to="(5190,580)"/> <wire from="(5190,580)" to="(5190,690)"/> <wire from="(5190,690)" to="(5190,840)"/> <wire from="(5190,840)" to="(5190,910)"/> <wire from="(5190,910)" to="(5190,1060)"/> <wire from="(5230,1040)" to="(5780,1040)"/> <wire from="(5230,420)" to="(7300,420)"/> <wire from="(5230,560)" to="(5290,560)"/> <wire from="(5250,1060)" to="(5250,1360)"/> <wire from="(5250,130)" to="(5250,440)"/> <wire from="(5250,440)" to="(5250,580)"/> <wire from="(5250,580)" to="(5250,1060)"/> <wire from="(5290,1000)" to="(5350,1000)"/> <wire from="(5290,1110)" to="(5410,1110)"/> <wire from="(5290,310)" to="(5470,310)"/> <wire from="(5290,460)" to="(5350,460)"/> <wire from="(5290,560)" to="(5350,560)"/> <wire from="(5290,670)" to="(5350,670)"/> <wire from="(5290,780)" to="(5350,780)"/> <wire from="(5290,890)" to="(5350,890)"/> <wire from="(5310,1020)" to="(5310,1130)"/> <wire from="(5310,1130)" to="(5310,1360)"/> <wire from="(5310,130)" to="(5310,330)"/> <wire from="(5310,330)" to="(5310,480)"/> <wire from="(5310,480)" to="(5310,580)"/> <wire from="(5310,580)" to="(5310,690)"/> <wire from="(5310,690)" to="(5310,800)"/> <wire from="(5310,800)" to="(5310,910)"/> <wire from="(5310,910)" to="(5310,1020)"/> <wire from="(5350,1000)" to="(5410,1000)"/> <wire from="(5350,1150)" to="(5780,1150)"/> <wire from="(5350,270)" to="(5900,270)"/> <wire from="(5350,460)" to="(5470,460)"/> <wire from="(5350,560)" to="(5780,560)"/> <wire from="(5350,670)" to="(5780,670)"/> <wire from="(5350,780)" to="(5470,780)"/> <wire from="(5350,890)" to="(5470,890)"/> <wire from="(5370,1020)" to="(5370,1170)"/> <wire from="(5370,1170)" to="(5370,1360)"/> <wire from="(5370,130)" to="(5370,290)"/> <wire from="(5370,290)" to="(5370,480)"/> <wire from="(5370,480)" to="(5370,580)"/> <wire from="(5370,580)" to="(5370,690)"/> <wire from="(5370,690)" to="(5370,800)"/> <wire from="(5370,800)" to="(5370,910)"/> <wire from="(5370,910)" to="(5370,1020)"/> <wire from="(540,1000)" to="(800,1000)"/> <wire from="(540,1110)" to="(600,1110)"/> <wire from="(540,1220)" to="(600,1220)"/> <wire from="(540,460)" to="(600,460)"/> <wire from="(540,600)" to="(600,600)"/> <wire from="(540,710)" to="(740,710)"/> <wire from="(540,820)" to="(920,820)"/> <wire from="(540,890)" to="(860,890)"/> <wire from="(5410,1000)" to="(6510,1000)"/> <wire from="(5410,1110)" to="(5960,1110)"/> <wire from="(5410,500)" to="(5660,500)"/> <wire from="(5410,600)" to="(6660,600)"/> <wire from="(5430,1020)" to="(5430,1130)"/> <wire from="(5430,1130)" to="(5430,1360)"/> <wire from="(5430,130)" to="(5430,520)"/> <wire from="(5430,520)" to="(5430,620)"/> <wire from="(5430,620)" to="(5430,1020)"/> <wire from="(5470,310)" to="(5530,310)"/> <wire from="(5470,460)" to="(5780,460)"/> <wire from="(5470,710)" to="(6270,710)"/> <wire from="(5470,780)" to="(5530,780)"/> <wire from="(5470,890)" to="(5660,890)"/> <wire from="(5490,130)" to="(5490,330)"/> <wire from="(5490,330)" to="(5490,480)"/> <wire from="(5490,480)" to="(5490,730)"/> <wire from="(5490,730)" to="(5490,800)"/> <wire from="(5490,800)" to="(5490,910)"/> <wire from="(5490,910)" to="(5490,1360)"/> <wire from="(5530,310)" to="(5660,310)"/> <wire from="(5530,780)" to="(5660,780)"/> <wire from="(5530,930)" to="(6020,930)"/> <wire from="(5550,130)" to="(5550,330)"/> <wire from="(5550,330)" to="(5550,800)"/> <wire from="(5550,800)" to="(5550,950)"/> <wire from="(5550,950)" to="(5550,1360)"/> <wire from="(560,1020)" to="(560,1130)"/> <wire from="(560,1130)" to="(560,1240)"/> <wire from="(560,1240)" to="(560,1360)"/> <wire from="(560,130)" to="(560,480)"/> <wire from="(560,480)" to="(560,620)"/> <wire from="(560,620)" to="(560,730)"/> <wire from="(560,730)" to="(560,840)"/> <wire from="(560,840)" to="(560,910)"/> <wire from="(560,910)" to="(560,1020)"/> <wire from="(5660,310)" to="(5720,310)"/> <wire from="(5660,500)" to="(6080,500)"/> <wire from="(5660,780)" to="(5780,780)"/> <wire from="(5660,890)" to="(5780,890)"/> <wire from="(5680,130)" to="(5680,330)"/> <wire from="(5680,330)" to="(5680,520)"/> <wire from="(5680,520)" to="(5680,800)"/> <wire from="(5680,800)" to="(5680,910)"/> <wire from="(5680,910)" to="(5680,1360)"/> <wire from="(5720,310)" to="(6780,310)"/> <wire from="(5720,820)" to="(6020,820)"/> <wire from="(5740,130)" to="(5740,330)"/> <wire from="(5740,330)" to="(5740,840)"/> <wire from="(5740,840)" to="(5740,1360)"/> <wire from="(5780,1040)" to="(6020,1040)"/> <wire from="(5780,1150)" to="(6510,1150)"/> <wire from="(5780,190)" to="(6080,190)"/> <wire from="(5780,460)" to="(5960,460)"/> <wire from="(5780,560)" to="(5960,560)"/> <wire from="(5780,670)" to="(5960,670)"/> <wire from="(5780,780)" to="(5960,780)"/> <wire from="(5780,890)" to="(5960,890)"/> <wire from="(5800,1060)" to="(5800,1170)"/> <wire from="(5800,1170)" to="(5800,1360)"/> <wire from="(5800,130)" to="(5800,210)"/> <wire from="(5800,210)" to="(5800,480)"/> <wire from="(5800,480)" to="(5800,580)"/> <wire from="(5800,580)" to="(5800,690)"/> <wire from="(5800,690)" to="(5800,800)"/> <wire from="(5800,800)" to="(5800,910)"/> <wire from="(5800,910)" to="(5800,1060)"/> <wire from="(5840,230)" to="(6270,230)"/> <wire from="(5860,130)" to="(5860,250)"/> <wire from="(5860,250)" to="(5860,1360)"/> <wire from="(5900,270)" to="(6140,270)"/> <wire from="(5920,130)" to="(5920,290)"/> <wire from="(5920,290)" to="(5920,1360)"/> <wire from="(5960,1110)" to="(6450,1110)"/> <wire from="(5960,1220)" to="(6020,1220)"/> <wire from="(5960,460)" to="(6020,460)"/> <wire from="(5960,560)" to="(6020,560)"/> <wire from="(5960,670)" to="(6020,670)"/> <wire from="(5960,780)" to="(6080,780)"/> <wire from="(5960,890)" to="(6080,890)"/> <wire from="(5980,1130)" to="(5980,1240)"/> <wire from="(5980,1240)" to="(5980,1360)"/> <wire from="(5980,130)" to="(5980,480)"/> <wire from="(5980,480)" to="(5980,580)"/> <wire from="(5980,580)" to="(5980,690)"/> <wire from="(5980,690)" to="(5980,800)"/> <wire from="(5980,800)" to="(5980,910)"/> <wire from="(5980,910)" to="(5980,1130)"/> <wire from="(600,1040)" to="(980,1040)"/> <wire from="(600,1110)" to="(920,1110)"/> <wire from="(600,1220)" to="(920,1220)"/> <wire from="(600,460)" to="(1040,460)"/> <wire from="(600,600)" to="(800,600)"/> <wire from="(600,670)" to="(860,670)"/> <wire from="(6020,1040)" to="(6570,1040)"/> <wire from="(6020,1220)" to="(7420,1220)"/> <wire from="(6020,460)" to="(6390,460)"/> <wire from="(6020,560)" to="(6450,560)"/> <wire from="(6020,670)" to="(6080,670)"/> <wire from="(6020,820)" to="(6140,820)"/> <wire from="(6020,930)" to="(6570,930)"/> <wire from="(6040,1060)" to="(6040,1240)"/> <wire from="(6040,1240)" to="(6040,1360)"/> <wire from="(6040,130)" to="(6040,480)"/> <wire from="(6040,480)" to="(6040,580)"/> <wire from="(6040,580)" to="(6040,690)"/> <wire from="(6040,690)" to="(6040,840)"/> <wire from="(6040,840)" to="(6040,950)"/> <wire from="(6040,950)" to="(6040,1060)"/> <wire from="(6080,190)" to="(7000,190)"/> <wire from="(6080,500)" to="(6270,500)"/> <wire from="(6080,670)" to="(6450,670)"/> <wire from="(6080,780)" to="(6270,780)"/> <wire from="(6080,890)" to="(6270,890)"/> <wire from="(6100,130)" to="(6100,210)"/> <wire from="(6100,210)" to="(6100,520)"/> <wire from="(6100,520)" to="(6100,690)"/> <wire from="(6100,690)" to="(6100,800)"/> <wire from="(6100,800)" to="(6100,910)"/> <wire from="(6100,910)" to="(6100,1360)"/> <wire from="(6140,270)" to="(6330,270)"/> <wire from="(6140,820)" to="(6330,820)"/> <wire from="(6160,130)" to="(6160,290)"/> <wire from="(6160,290)" to="(6160,840)"/> <wire from="(6160,840)" to="(6160,1360)"/> <wire from="(620,1060)" to="(620,1130)"/> <wire from="(620,1130)" to="(620,1240)"/> <wire from="(620,1240)" to="(620,1360)"/> <wire from="(620,130)" to="(620,480)"/> <wire from="(620,480)" to="(620,620)"/> <wire from="(620,620)" to="(620,690)"/> <wire from="(620,690)" to="(620,1060)"/> <wire from="(6270,230)" to="(6720,230)"/> <wire from="(6270,500)" to="(7700,500)"/> <wire from="(6270,710)" to="(6330,710)"/> <wire from="(6270,780)" to="(6390,780)"/> <wire from="(6270,890)" to="(6390,890)"/> <wire from="(6290,130)" to="(6290,250)"/> <wire from="(6290,250)" to="(6290,520)"/> <wire from="(6290,520)" to="(6290,730)"/> <wire from="(6290,730)" to="(6290,800)"/> <wire from="(6290,800)" to="(6290,910)"/> <wire from="(6290,910)" to="(6290,1360)"/> <wire from="(6330,270)" to="(6390,270)"/> <wire from="(6330,710)" to="(6390,710)"/> <wire from="(6330,820)" to="(6570,820)"/> <wire from="(6350,130)" to="(6350,290)"/> <wire from="(6350,290)" to="(6350,730)"/> <wire from="(6350,730)" to="(6350,840)"/> <wire from="(6350,840)" to="(6350,1360)"/> <wire from="(6390,270)" to="(7240,270)"/> <wire from="(6390,460)" to="(6450,460)"/> <wire from="(6390,710)" to="(7420,710)"/> <wire from="(6390,780)" to="(6450,780)"/> <wire from="(6390,890)" to="(6450,890)"/> <wire from="(6410,130)" to="(6410,290)"/> <wire from="(6410,290)" to="(6410,480)"/> <wire from="(6410,480)" to="(6410,730)"/> <wire from="(6410,730)" to="(6410,800)"/> <wire from="(6410,800)" to="(6410,910)"/> <wire from="(6410,910)" to="(6410,1360)"/> <wire from="(6450,1110)" to="(6660,1110)"/> <wire from="(6450,460)" to="(6510,460)"/> <wire from="(6450,560)" to="(6510,560)"/> <wire from="(6450,670)" to="(6510,670)"/> <wire from="(6450,780)" to="(6510,780)"/> <wire from="(6450,890)" to="(6510,890)"/> <wire from="(6470,1130)" to="(6470,1360)"/> <wire from="(6470,130)" to="(6470,480)"/> <wire from="(6470,480)" to="(6470,580)"/> <wire from="(6470,580)" to="(6470,690)"/> <wire from="(6470,690)" to="(6470,800)"/> <wire from="(6470,800)" to="(6470,910)"/> <wire from="(6470,910)" to="(6470,1130)"/> <wire from="(6510,1000)" to="(6660,1000)"/> <wire from="(6510,1150)" to="(7060,1150)"/> <wire from="(6510,460)" to="(6570,460)"/> <wire from="(6510,560)" to="(6570,560)"/> <wire from="(6510,670)" to="(6570,670)"/> <wire from="(6510,780)" to="(6720,780)"/> <wire from="(6510,890)" to="(6720,890)"/> <wire from="(6530,1020)" to="(6530,1170)"/> <wire from="(6530,1170)" to="(6530,1360)"/> <wire from="(6530,130)" to="(6530,480)"/> <wire from="(6530,480)" to="(6530,580)"/> <wire from="(6530,580)" to="(6530,690)"/> <wire from="(6530,690)" to="(6530,800)"/> <wire from="(6530,800)" to="(6530,910)"/> <wire from="(6530,910)" to="(6530,1020)"/> <wire from="(6570,1040)" to="(6900,1040)"/> <wire from="(6570,460)" to="(6720,460)"/> <wire from="(6570,560)" to="(6720,560)"/> <wire from="(6570,670)" to="(6720,670)"/> <wire from="(6570,820)" to="(6780,820)"/> <wire from="(6570,930)" to="(6900,930)"/> <wire from="(6590,1060)" to="(6590,1360)"/> <wire from="(6590,130)" to="(6590,480)"/> <wire from="(6590,480)" to="(6590,580)"/> <wire from="(6590,580)" to="(6590,690)"/> <wire from="(6590,690)" to="(6590,840)"/> <wire from="(6590,840)" to="(6590,950)"/> <wire from="(6590,950)" to="(6590,1060)"/> <wire from="(6660,1000)" to="(6720,1000)"/> <wire from="(6660,1110)" to="(6720,1110)"/> <wire from="(6660,600)" to="(7940,600)"/> <wire from="(6680,1020)" to="(6680,1130)"/> <wire from="(6680,1130)" to="(6680,1360)"/> <wire from="(6680,130)" to="(6680,620)"/> <wire from="(6680,620)" to="(6680,1020)"/> <wire from="(6720,1000)" to="(6780,1000)"/> <wire from="(6720,1110)" to="(6780,1110)"/> <wire from="(6720,230)" to="(6900,230)"/> <wire from="(6720,460)" to="(6780,460)"/> <wire from="(6720,560)" to="(6780,560)"/> <wire from="(6720,670)" to="(6780,670)"/> <wire from="(6720,780)" to="(7000,780)"/> <wire from="(6720,890)" to="(6780,890)"/> <wire from="(6740,1020)" to="(6740,1130)"/> <wire from="(6740,1130)" to="(6740,1360)"/> <wire from="(6740,130)" to="(6740,250)"/> <wire from="(6740,250)" to="(6740,480)"/> <wire from="(6740,480)" to="(6740,580)"/> <wire from="(6740,580)" to="(6740,690)"/> <wire from="(6740,690)" to="(6740,800)"/> <wire from="(6740,800)" to="(6740,910)"/> <wire from="(6740,910)" to="(6740,1020)"/> <wire from="(6780,1000)" to="(7060,1000)"/> <wire from="(6780,1110)" to="(6840,1110)"/> <wire from="(6780,310)" to="(6840,310)"/> <wire from="(6780,460)" to="(6840,460)"/> <wire from="(6780,560)" to="(6840,560)"/> <wire from="(6780,670)" to="(6840,670)"/> <wire from="(6780,820)" to="(6840,820)"/> <wire from="(6780,890)" to="(6840,890)"/> <wire from="(6800,1020)" to="(6800,1130)"/> <wire from="(6800,1130)" to="(6800,1360)"/> <wire from="(6800,130)" to="(6800,330)"/> <wire from="(6800,330)" to="(6800,480)"/> <wire from="(6800,480)" to="(6800,580)"/> <wire from="(6800,580)" to="(6800,690)"/> <wire from="(6800,690)" to="(6800,840)"/> <wire from="(6800,840)" to="(6800,910)"/> <wire from="(6800,910)" to="(6800,1020)"/> <wire from="(6840,1110)" to="(7180,1110)"/> <wire from="(6840,310)" to="(7180,310)"/> <wire from="(6840,460)" to="(6900,460)"/> <wire from="(6840,560)" to="(6900,560)"/> <wire from="(6840,670)" to="(6900,670)"/> <wire from="(6840,820)" to="(6900,820)"/> <wire from="(6840,890)" to="(7000,890)"/> <wire from="(6860,1130)" to="(6860,1360)"/> <wire from="(6860,130)" to="(6860,330)"/> <wire from="(6860,330)" to="(6860,480)"/> <wire from="(6860,480)" to="(6860,580)"/> <wire from="(6860,580)" to="(6860,690)"/> <wire from="(6860,690)" to="(6860,840)"/> <wire from="(6860,840)" to="(6860,910)"/> <wire from="(6860,910)" to="(6860,1130)"/> <wire from="(6900,1040)" to="(7000,1040)"/> <wire from="(6900,230)" to="(7880,230)"/> <wire from="(6900,460)" to="(7000,460)"/> <wire from="(6900,560)" to="(7000,560)"/> <wire from="(6900,670)" to="(7000,670)"/> <wire from="(6900,820)" to="(7180,820)"/> <wire from="(6900,930)" to="(7180,930)"/> <wire from="(6920,1060)" to="(6920,1360)"/> <wire from="(6920,130)" to="(6920,250)"/> <wire from="(6920,250)" to="(6920,480)"/> <wire from="(6920,480)" to="(6920,580)"/> <wire from="(6920,580)" to="(6920,690)"/> <wire from="(6920,690)" to="(6920,840)"/> <wire from="(6920,840)" to="(6920,950)"/> <wire from="(6920,950)" to="(6920,1060)"/> <wire from="(70,1000)" to="(130,1000)"/> <wire from="(70,1110)" to="(130,1110)"/> <wire from="(70,1220)" to="(480,1220)"/> <wire from="(70,1260)" to="(1280,1260)"/> <wire from="(70,190)" to="(1780,190)"/> <wire from="(70,230)" to="(1900,230)"/> <wire from="(70,270)" to="(360,270)"/> <wire from="(70,310)" to="(420,310)"/> <wire from="(70,380)" to="(90,380)"/> <wire from="(70,470)" to="(130,470)"/> <wire from="(70,560)" to="(130,560)"/> <wire from="(70,670)" to="(130,670)"/> <wire from="(70,780)" to="(130,780)"/> <wire from="(70,890)" to="(130,890)"/> <wire from="(7000,1040)" to="(7180,1040)"/> <wire from="(7000,190)" to="(7060,190)"/> <wire from="(7000,460)" to="(7060,460)"/> <wire from="(7000,560)" to="(7060,560)"/> <wire from="(7000,670)" to="(7060,670)"/> <wire from="(7000,780)" to="(7060,780)"/> <wire from="(7000,890)" to="(7060,890)"/> <wire from="(7020,1060)" to="(7020,1360)"/> <wire from="(7020,130)" to="(7020,210)"/> <wire from="(7020,210)" to="(7020,480)"/> <wire from="(7020,480)" to="(7020,580)"/> <wire from="(7020,580)" to="(7020,690)"/> <wire from="(7020,690)" to="(7020,800)"/> <wire from="(7020,800)" to="(7020,910)"/> <wire from="(7020,910)" to="(7020,1060)"/> <wire from="(7060,1000)" to="(7360,1000)"/> <wire from="(7060,1150)" to="(7240,1150)"/> <wire from="(7060,190)" to="(8470,190)"/> <wire from="(7060,460)" to="(7180,460)"/> <wire from="(7060,560)" to="(7180,560)"/> <wire from="(7060,670)" to="(7180,670)"/> <wire from="(7060,780)" to="(7640,780)"/> <wire from="(7060,890)" to="(7240,890)"/> <wire from="(7080,1020)" to="(7080,1170)"/> <wire from="(7080,1170)" to="(7080,1360)"/> <wire from="(7080,130)" to="(7080,210)"/> <wire from="(7080,210)" to="(7080,480)"/> <wire from="(7080,480)" to="(7080,580)"/> <wire from="(7080,580)" to="(7080,690)"/> <wire from="(7080,690)" to="(7080,800)"/> <wire from="(7080,800)" to="(7080,910)"/> <wire from="(7080,910)" to="(7080,1020)"/> <wire from="(7180,1040)" to="(7300,1040)"/> <wire from="(7180,1110)" to="(7880,1110)"/> <wire from="(7180,310)" to="(8410,310)"/> <wire from="(7180,460)" to="(7240,460)"/> <wire from="(7180,560)" to="(7240,560)"/> <wire from="(7180,670)" to="(7240,670)"/> <wire from="(7180,820)" to="(7240,820)"/> <wire from="(7180,930)" to="(7520,930)"/> <wire from="(7200,1060)" to="(7200,1130)"/> <wire from="(7200,1130)" to="(7200,1360)"/> <wire from="(7200,130)" to="(7200,330)"/> <wire from="(7200,330)" to="(7200,480)"/> <wire from="(7200,480)" to="(7200,580)"/> <wire from="(7200,580)" to="(7200,690)"/> <wire from="(7200,690)" to="(7200,840)"/> <wire from="(7200,840)" to="(7200,950)"/> <wire from="(7200,950)" to="(7200,1060)"/> <wire from="(7240,1150)" to="(7520,1150)"/> <wire from="(7240,270)" to="(7640,270)"/> <wire from="(7240,460)" to="(7420,460)"/> <wire from="(7240,560)" to="(7360,560)"/> <wire from="(7240,670)" to="(7520,670)"/> <wire from="(7240,820)" to="(7420,820)"/> <wire from="(7240,890)" to="(7420,890)"/> <wire from="(7260,1170)" to="(7260,1360)"/> <wire from="(7260,130)" to="(7260,290)"/> <wire from="(7260,290)" to="(7260,480)"/> <wire from="(7260,480)" to="(7260,580)"/> <wire from="(7260,580)" to="(7260,690)"/> <wire from="(7260,690)" to="(7260,840)"/> <wire from="(7260,840)" to="(7260,910)"/> <wire from="(7260,910)" to="(7260,1170)"/> <wire from="(7300,1040)" to="(7420,1040)"/> <wire from="(7300,420)" to="(7360,420)"/> <wire from="(7320,1060)" to="(7320,1360)"/> <wire from="(7320,130)" to="(7320,440)"/> <wire from="(7320,440)" to="(7320,1060)"/> <wire from="(7360,1000)" to="(7520,1000)"/> <wire from="(7360,420)" to="(8060,420)"/> <wire from="(7360,560)" to="(7420,560)"/> <wire from="(7380,1020)" to="(7380,1360)"/> <wire from="(7380,130)" to="(7380,440)"/> <wire from="(7380,440)" to="(7380,580)"/> <wire from="(7380,580)" to="(7380,1020)"/> <wire from="(740,310)" to="(860,310)"/> <wire from="(740,710)" to="(1160,710)"/> <wire from="(740,930)" to="(1520,930)"/> <wire from="(7420,1040)" to="(7700,1040)"/> <wire from="(7420,1220)" to="(7580,1220)"/> <wire from="(7420,460)" to="(7520,460)"/> <wire from="(7420,560)" to="(7520,560)"/> <wire from="(7420,710)" to="(7580,710)"/> <wire from="(7420,820)" to="(7580,820)"/> <wire from="(7420,890)" to="(7580,890)"/> <wire from="(7440,1060)" to="(7440,1240)"/> <wire from="(7440,1240)" to="(7440,1360)"/> <wire from="(7440,130)" to="(7440,480)"/> <wire from="(7440,480)" to="(7440,580)"/> <wire from="(7440,580)" to="(7440,730)"/> <wire from="(7440,730)" to="(7440,840)"/> <wire from="(7440,840)" to="(7440,910)"/> <wire from="(7440,910)" to="(7440,1060)"/> <wire from="(7520,1000)" to="(7580,1000)"/> <wire from="(7520,1150)" to="(7700,1150)"/> <wire from="(7520,1260)" to="(7700,1260)"/> <wire from="(7520,460)" to="(7580,460)"/> <wire from="(7520,560)" to="(7580,560)"/> <wire from="(7520,670)" to="(7760,670)"/> <wire from="(7520,930)" to="(7640,930)"/> <wire from="(7540,1020)" to="(7540,1170)"/> <wire from="(7540,1170)" to="(7540,1280)"/> <wire from="(7540,1280)" to="(7540,1360)"/> <wire from="(7540,130)" to="(7540,480)"/> <wire from="(7540,480)" to="(7540,580)"/> <wire from="(7540,580)" to="(7540,690)"/> <wire from="(7540,690)" to="(7540,950)"/> <wire from="(7540,950)" to="(7540,1020)"/> <wire from="(7580,1000)" to="(7760,1000)"/> <wire from="(7580,1220)" to="(7760,1220)"/> <wire from="(7580,460)" to="(7760,460)"/> <wire from="(7580,560)" to="(7760,560)"/> <wire from="(7580,710)" to="(7640,710)"/> <wire from="(7580,820)" to="(7820,820)"/> <wire from="(7580,890)" to="(7820,890)"/> <wire from="(760,130)" to="(760,330)"/> <wire from="(760,330)" to="(760,730)"/> <wire from="(760,730)" to="(760,950)"/> <wire from="(760,950)" to="(760,1360)"/> <wire from="(7600,1020)" to="(7600,1240)"/> <wire from="(7600,1240)" to="(7600,1360)"/> <wire from="(7600,130)" to="(7600,480)"/> <wire from="(7600,480)" to="(7600,580)"/> <wire from="(7600,580)" to="(7600,730)"/> <wire from="(7600,730)" to="(7600,840)"/> <wire from="(7600,840)" to="(7600,910)"/> <wire from="(7600,910)" to="(7600,1020)"/> <wire from="(7640,270)" to="(8350,270)"/> <wire from="(7640,710)" to="(8230,710)"/> <wire from="(7640,780)" to="(7880,780)"/> <wire from="(7640,930)" to="(7760,930)"/> <wire from="(7660,130)" to="(7660,290)"/> <wire from="(7660,290)" to="(7660,730)"/> <wire from="(7660,730)" to="(7660,800)"/> <wire from="(7660,800)" to="(7660,950)"/> <wire from="(7660,950)" to="(7660,1360)"/> <wire from="(7700,1040)" to="(7880,1040)"/> <wire from="(7700,1150)" to="(7760,1150)"/> <wire from="(7700,1260)" to="(7940,1260)"/> <wire from="(7700,500)" to="(7940,500)"/> <wire from="(7720,1060)" to="(7720,1170)"/> <wire from="(7720,1170)" to="(7720,1280)"/> <wire from="(7720,1280)" to="(7720,1360)"/> <wire from="(7720,130)" to="(7720,520)"/> <wire from="(7720,520)" to="(7720,1060)"/> <wire from="(7760,1000)" to="(7820,1000)"/> <wire from="(7760,1150)" to="(7820,1150)"/> <wire from="(7760,1220)" to="(7820,1220)"/> <wire from="(7760,460)" to="(7820,460)"/> <wire from="(7760,560)" to="(7820,560)"/> <wire from="(7760,670)" to="(7820,670)"/> <wire from="(7760,930)" to="(8000,930)"/> <wire from="(7780,1020)" to="(7780,1170)"/> <wire from="(7780,1170)" to="(7780,1240)"/> <wire from="(7780,1240)" to="(7780,1360)"/> <wire from="(7780,130)" to="(7780,480)"/> <wire from="(7780,480)" to="(7780,580)"/> <wire from="(7780,580)" to="(7780,690)"/> <wire from="(7780,690)" to="(7780,950)"/> <wire from="(7780,950)" to="(7780,1020)"/> <wire from="(7820,1000)" to="(8060,1000)"/> <wire from="(7820,1150)" to="(8650,1150)"/> <wire from="(7820,1220)" to="(8230,1220)"/> <wire from="(7820,460)" to="(7880,460)"/> <wire from="(7820,560)" to="(7880,560)"/> <wire from="(7820,670)" to="(7880,670)"/> <wire from="(7820,820)" to="(8000,820)"/> <wire from="(7820,890)" to="(7880,890)"/> <wire from="(7840,1020)" to="(7840,1170)"/> <wire from="(7840,1170)" to="(7840,1240)"/> <wire from="(7840,1240)" to="(7840,1360)"/> <wire from="(7840,130)" to="(7840,480)"/> <wire from="(7840,480)" to="(7840,580)"/> <wire from="(7840,580)" to="(7840,690)"/> <wire from="(7840,690)" to="(7840,840)"/> <wire from="(7840,840)" to="(7840,910)"/> <wire from="(7840,910)" to="(7840,1020)"/> <wire from="(7880,1040)" to="(7940,1040)"/> <wire from="(7880,1110)" to="(7940,1110)"/> <wire from="(7880,230)" to="(8530,230)"/> <wire from="(7880,460)" to="(8000,460)"/> <wire from="(7880,560)" to="(8060,560)"/> <wire from="(7880,670)" to="(8000,670)"/> <wire from="(7880,780)" to="(8120,780)"/> <wire from="(7880,890)" to="(8060,890)"/> <wire from="(7900,1060)" to="(7900,1130)"/> <wire from="(7900,1130)" to="(7900,1360)"/> <wire from="(7900,130)" to="(7900,250)"/> <wire from="(7900,250)" to="(7900,480)"/> <wire from="(7900,480)" to="(7900,580)"/> <wire from="(7900,580)" to="(7900,690)"/> <wire from="(7900,690)" to="(7900,800)"/> <wire from="(7900,800)" to="(7900,910)"/> <wire from="(7900,910)" to="(7900,1060)"/> <wire from="(7940,1040)" to="(8000,1040)"/> <wire from="(7940,1110)" to="(8820,1110)"/> <wire from="(7940,1260)" to="(8000,1260)"/> <wire from="(7940,500)" to="(8470,500)"/> <wire from="(7940,600)" to="(8000,600)"/> <wire from="(7960,1060)" to="(7960,1130)"/> <wire from="(7960,1130)" to="(7960,1280)"/> <wire from="(7960,1280)" to="(7960,1360)"/> <wire from="(7960,130)" to="(7960,520)"/> <wire from="(7960,520)" to="(7960,620)"/> <wire from="(7960,620)" to="(7960,1060)"/> <wire from="(800,1000)" to="(920,1000)"/> <wire from="(800,420)" to="(920,420)"/> <wire from="(800,600)" to="(920,600)"/> <wire from="(8000,1040)" to="(8120,1040)"/> <wire from="(8000,1260)" to="(8060,1260)"/> <wire from="(8000,460)" to="(8120,460)"/> <wire from="(8000,600)" to="(8120,600)"/> <wire from="(8000,670)" to="(8060,670)"/> <wire from="(8000,820)" to="(8060,820)"/> <wire from="(8000,930)" to="(8350,930)"/> <wire from="(8020,1060)" to="(8020,1280)"/> <wire from="(8020,1280)" to="(8020,1360)"/> <wire from="(8020,130)" to="(8020,480)"/> <wire from="(8020,480)" to="(8020,620)"/> <wire from="(8020,620)" to="(8020,690)"/> <wire from="(8020,690)" to="(8020,840)"/> <wire from="(8020,840)" to="(8020,950)"/> <wire from="(8020,950)" to="(8020,1060)"/> <wire from="(8060,1000)" to="(8290,1000)"/> <wire from="(8060,1260)" to="(8120,1260)"/> <wire from="(8060,420)" to="(8820,420)"/> <wire from="(8060,560)" to="(8590,560)"/> <wire from="(8060,670)" to="(8120,670)"/> <wire from="(8060,820)" to="(8230,820)"/> <wire from="(8060,890)" to="(8230,890)"/> <wire from="(8080,1020)" to="(8080,1280)"/> <wire from="(8080,1280)" to="(8080,1360)"/> <wire from="(8080,130)" to="(8080,440)"/> <wire from="(8080,440)" to="(8080,580)"/> <wire from="(8080,580)" to="(8080,690)"/> <wire from="(8080,690)" to="(8080,840)"/> <wire from="(8080,840)" to="(8080,910)"/> <wire from="(8080,910)" to="(8080,1020)"/> <wire from="(8120,1040)" to="(8230,1040)"/> <wire from="(8120,1260)" to="(8820,1260)"/> <wire from="(8120,460)" to="(8230,460)"/> <wire from="(8120,600)" to="(8230,600)"/> <wire from="(8120,670)" to="(8350,670)"/> <wire from="(8120,780)" to="(8410,780)"/> <wire from="(8140,1060)" to="(8140,1280)"/> <wire from="(8140,1280)" to="(8140,1360)"/> <wire from="(8140,130)" to="(8140,480)"/> <wire from="(8140,480)" to="(8140,620)"/> <wire from="(8140,620)" to="(8140,690)"/> <wire from="(8140,690)" to="(8140,800)"/> <wire from="(8140,800)" to="(8140,1060)"/> <wire from="(820,1020)" to="(820,1360)"/> <wire from="(820,130)" to="(820,440)"/> <wire from="(820,440)" to="(820,620)"/> <wire from="(820,620)" to="(820,1020)"/> <wire from="(8230,1040)" to="(8820,1040)"/> <wire from="(8230,1220)" to="(8820,1220)"/> <wire from="(8230,460)" to="(8650,460)"/> <wire from="(8230,600)" to="(8650,600)"/> <wire from="(8230,710)" to="(8530,710)"/> <wire from="(8230,820)" to="(8350,820)"/> <wire from="(8230,890)" to="(8470,890)"/> <wire from="(8250,1060)" to="(8250,1240)"/> <wire from="(8250,1240)" to="(8250,1360)"/> <wire from="(8250,130)" to="(8250,480)"/> <wire from="(8250,480)" to="(8250,620)"/> <wire from="(8250,620)" to="(8250,730)"/> <wire from="(8250,730)" to="(8250,840)"/> <wire from="(8250,840)" to="(8250,910)"/> <wire from="(8250,910)" to="(8250,1060)"/> <wire from="(8290,1000)" to="(8650,1000)"/> <wire from="(8310,1020)" to="(8310,1360)"/> <wire from="(8310,130)" to="(8310,1020)"/> <wire from="(8350,270)" to="(8820,270)"/> <wire from="(8350,670)" to="(8410,670)"/> <wire from="(8350,820)" to="(8530,820)"/> <wire from="(8350,930)" to="(8410,930)"/> <wire from="(8370,130)" to="(8370,290)"/> <wire from="(8370,290)" to="(8370,690)"/> <wire from="(8370,690)" to="(8370,840)"/> <wire from="(8370,840)" to="(8370,950)"/> <wire from="(8370,950)" to="(8370,1360)"/> <wire from="(8410,310)" to="(8820,310)"/> <wire from="(8410,670)" to="(8770,670)"/> <wire from="(8410,780)" to="(8470,780)"/> <wire from="(8410,930)" to="(8820,930)"/> <wire from="(8430,130)" to="(8430,330)"/> <wire from="(8430,330)" to="(8430,690)"/> <wire from="(8430,690)" to="(8430,800)"/> <wire from="(8430,800)" to="(8430,950)"/> <wire from="(8430,950)" to="(8430,1360)"/> <wire from="(8470,190)" to="(8820,190)"/> <wire from="(8470,500)" to="(8820,500)"/> <wire from="(8470,780)" to="(8820,780)"/> <wire from="(8470,890)" to="(8650,890)"/> <wire from="(8490,130)" to="(8490,210)"/> <wire from="(8490,210)" to="(8490,520)"/> <wire from="(8490,520)" to="(8490,800)"/> <wire from="(8490,800)" to="(8490,910)"/> <wire from="(8490,910)" to="(8490,1360)"/> <wire from="(8530,230)" to="(8820,230)"/> <wire from="(8530,710)" to="(8650,710)"/> <wire from="(8530,820)" to="(8650,820)"/> <wire from="(8550,130)" to="(8550,250)"/> <wire from="(8550,250)" to="(8550,730)"/> <wire from="(8550,730)" to="(8550,840)"/> <wire from="(8550,840)" to="(8550,1360)"/> <wire from="(8590,560)" to="(8770,560)"/> <wire from="(860,310)" to="(2140,310)"/> <wire from="(860,500)" to="(2200,500)"/> <wire from="(860,670)" to="(920,670)"/> <wire from="(860,780)" to="(1720,780)"/> <wire from="(860,890)" to="(920,890)"/> <wire from="(8610,130)" to="(8610,580)"/> <wire from="(8610,580)" to="(8610,1360)"/> <wire from="(8650,1000)" to="(8820,1000)"/> <wire from="(8650,1150)" to="(8820,1150)"/> <wire from="(8650,460)" to="(8770,460)"/> <wire from="(8650,600)" to="(8820,600)"/> <wire from="(8650,710)" to="(8820,710)"/> <wire from="(8650,820)" to="(8710,820)"/> <wire from="(8650,890)" to="(8710,890)"/> <wire from="(8670,1020)" to="(8670,1170)"/> <wire from="(8670,1170)" to="(8670,1360)"/> <wire from="(8670,130)" to="(8670,480)"/> <wire from="(8670,480)" to="(8670,620)"/> <wire from="(8670,620)" to="(8670,730)"/> <wire from="(8670,730)" to="(8670,840)"/> <wire from="(8670,840)" to="(8670,910)"/> <wire from="(8670,910)" to="(8670,1020)"/> <wire from="(8710,820)" to="(8770,820)"/> <wire from="(8710,890)" to="(8770,890)"/> <wire from="(8730,130)" to="(8730,840)"/> <wire from="(8730,840)" to="(8730,910)"/> <wire from="(8730,910)" to="(8730,1360)"/> <wire from="(8770,460)" to="(8820,460)"/> <wire from="(8770,560)" to="(8820,560)"/> <wire from="(8770,670)" to="(8820,670)"/> <wire from="(8770,820)" to="(8820,820)"/> <wire from="(8770,890)" to="(8820,890)"/> <wire from="(8790,130)" to="(8790,480)"/> <wire from="(8790,480)" to="(8790,580)"/> <wire from="(8790,580)" to="(8790,690)"/> <wire from="(8790,690)" to="(8790,840)"/> <wire from="(8790,840)" to="(8790,910)"/> <wire from="(8790,910)" to="(8790,1360)"/> <wire from="(880,130)" to="(880,330)"/> <wire from="(880,330)" to="(880,520)"/> <wire from="(880,520)" to="(880,690)"/> <wire from="(880,690)" to="(880,800)"/> <wire from="(880,800)" to="(880,910)"/> <wire from="(880,910)" to="(880,1360)"/> <wire from="(90,380)" to="(110,380)"/> <wire from="(90,380)" to="(90,500)"/> <wire from="(90,500)" to="(160,500)"/> <wire from="(920,1000)" to="(1100,1000)"/> <wire from="(920,1110)" to="(980,1110)"/> <wire from="(920,1220)" to="(980,1220)"/> <wire from="(920,420)" to="(980,420)"/> <wire from="(920,600)" to="(980,600)"/> <wire from="(920,670)" to="(980,670)"/> <wire from="(920,820)" to="(980,820)"/> <wire from="(920,890)" to="(980,890)"/> <wire from="(940,1020)" to="(940,1130)"/> <wire from="(940,1130)" to="(940,1240)"/> <wire from="(940,1240)" to="(940,1360)"/> <wire from="(940,130)" to="(940,440)"/> <wire from="(940,440)" to="(940,620)"/> <wire from="(940,620)" to="(940,690)"/> <wire from="(940,690)" to="(940,840)"/> <wire from="(940,840)" to="(940,910)"/> <wire from="(940,910)" to="(940,1020)"/> <wire from="(980,1040)" to="(1040,1040)"/> <wire from="(980,1110)" to="(1100,1110)"/> <wire from="(980,1220)" to="(1040,1220)"/> <wire from="(980,420)" to="(1100,420)"/> <wire from="(980,600)" to="(1040,600)"/> <wire from="(980,670)" to="(1040,670)"/> <wire from="(980,820)" to="(1160,820)"/> <wire from="(980,890)" to="(1160,890)"/> </circuit> <circuit name="PREDECODE"> <a name="appearance" val="custom"/> <a name="circuit" val="PREDECODE"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ff23c4" height="131" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="93" y="165">D0-7 IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="65">/PD0-7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="84" y="140">/TWOCYCLE</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="121">/IMPLIED</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="100">0/IR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="124" y="69">PHI2</text> <circ-anchor facing="east" x="60" y="50"/> <circ-port dir="in" pin="70,260" x="60" y="180"/> <circ-port dir="in" pin="70,30" x="140" y="70"/> <circ-port dir="in" pin="70,320" x="70" y="180"/> <circ-port dir="in" pin="70,380" x="80" y="180"/> <circ-port dir="in" pin="70,440" x="90" y="180"/> <circ-port dir="in" pin="70,500" x="100" y="180"/> <circ-port dir="in" pin="70,560" x="110" y="180"/> <circ-port dir="in" pin="70,60" x="50" y="100"/> <circ-port dir="in" pin="70,620" x="120" y="180"/> <circ-port dir="in" pin="70,680" x="130" y="180"/> <circ-port dir="out" pin="1110,250" x="60" y="50"/> <circ-port dir="out" pin="1110,310" x="70" y="50"/> <circ-port dir="out" pin="1110,370" x="80" y="50"/> <circ-port dir="out" pin="1110,430" x="90" y="50"/> <circ-port dir="out" pin="1110,490" x="100" y="50"/> <circ-port dir="out" pin="1110,550" x="110" y="50"/> <circ-port dir="out" pin="1110,610" x="120" y="50"/> <circ-port dir="out" pin="1110,670" x="130" y="50"/> <circ-port dir="out" pin="1200,160" x="50" y="140"/> <circ-port dir="out" pin="1200,70" x="50" y="120"/> </appear> <comp lib="0" loc="(1110,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PD7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_TWOCYCLE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_IMPLIED"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,200)" name="Constant"/> <comp lib="0" loc="(70,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D0"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(70,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D1"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D2"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D3"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D4"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D5"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_IR"/> </comp> <comp lib="0" loc="(70,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D6"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(70,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D7"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(1080,100)" name="AND Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1160,160)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1160,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,250)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,310)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,370)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,430)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,490)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,550)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,610)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,670)" name="NOR Gate"> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(650,70)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,170)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(790,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,170)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(960,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,610)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(960,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,170)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="6" loc="(235,180)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="transparent D-latches"/> </comp> <comp lib="6" loc="(370,200)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Keep D-latches"/> </comp> <comp lib="6" loc="(615,45)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="0,2,~3"/> </comp> <comp lib="6" loc="(650,145)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="1,4,7"/> </comp> <comp lib="6" loc="(785,210)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="~0,2,~3,4"/> </comp> <comp lib="6" loc="(80,235)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="External databus"/> </comp> <comp lib="6" loc="(955,205)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="0,2,3,4,~7"/> </comp> <comp loc="(260,250)" name="D_Latch"/> <comp loc="(260,310)" name="D_Latch"/> <comp loc="(260,370)" name="D_Latch"/> <comp loc="(260,430)" name="D_Latch"/> <comp loc="(260,490)" name="D_Latch"/> <comp loc="(260,550)" name="D_Latch"/> <comp loc="(260,610)" name="D_Latch"/> <comp loc="(260,670)" name="D_Latch"/> <comp loc="(390,250)" name="D_Latch"/> <comp loc="(390,310)" name="D_Latch"/> <comp loc="(390,370)" name="D_Latch"/> <comp loc="(390,430)" name="D_Latch"/> <comp loc="(390,490)" name="D_Latch"/> <comp loc="(390,550)" name="D_Latch"/> <comp loc="(390,610)" name="D_Latch"/> <comp loc="(390,670)" name="D_Latch"/> <wire from="(1000,230)" to="(1000,250)"/> <wire from="(1000,250)" to="(1110,250)"/> <wire from="(1000,400)" to="(1000,430)"/> <wire from="(1000,430)" to="(1110,430)"/> <wire from="(1010,130)" to="(1010,160)"/> <wire from="(1010,160)" to="(1120,160)"/> <wire from="(1070,220)" to="(1070,670)"/> <wire from="(1070,670)" to="(1110,670)"/> <wire from="(1080,100)" to="(1100,100)"/> <wire from="(1100,100)" to="(1100,150)"/> <wire from="(1100,150)" to="(1120,150)"/> <wire from="(1160,160)" to="(1200,160)"/> <wire from="(1160,70)" to="(1200,70)"/> <wire from="(170,200)" to="(200,200)"/> <wire from="(200,200)" to="(200,240)"/> <wire from="(200,240)" to="(200,300)"/> <wire from="(200,240)" to="(220,240)"/> <wire from="(200,300)" to="(200,360)"/> <wire from="(200,300)" to="(220,300)"/> <wire from="(200,360)" to="(200,420)"/> <wire from="(200,360)" to="(220,360)"/> <wire from="(200,420)" to="(200,480)"/> <wire from="(200,420)" to="(220,420)"/> <wire from="(200,480)" to="(200,540)"/> <wire from="(200,480)" to="(220,480)"/> <wire from="(200,540)" to="(200,600)"/> <wire from="(200,540)" to="(220,540)"/> <wire from="(200,600)" to="(200,660)"/> <wire from="(200,600)" to="(220,600)"/> <wire from="(200,660)" to="(220,660)"/> <wire from="(260,260)" to="(350,260)"/> <wire from="(260,320)" to="(350,320)"/> <wire from="(260,380)" to="(350,380)"/> <wire from="(260,440)" to="(350,440)"/> <wire from="(260,500)" to="(350,500)"/> <wire from="(260,560)" to="(350,560)"/> <wire from="(260,620)" to="(350,620)"/> <wire from="(260,680)" to="(350,680)"/> <wire from="(320,240)" to="(320,300)"/> <wire from="(320,240)" to="(350,240)"/> <wire from="(320,30)" to="(320,240)"/> <wire from="(320,300)" to="(320,360)"/> <wire from="(320,300)" to="(350,300)"/> <wire from="(320,360)" to="(320,420)"/> <wire from="(320,360)" to="(350,360)"/> <wire from="(320,420)" to="(320,480)"/> <wire from="(320,420)" to="(350,420)"/> <wire from="(320,480)" to="(320,540)"/> <wire from="(320,480)" to="(350,480)"/> <wire from="(320,540)" to="(320,600)"/> <wire from="(320,540)" to="(350,540)"/> <wire from="(320,600)" to="(320,660)"/> <wire from="(320,600)" to="(350,600)"/> <wire from="(320,660)" to="(350,660)"/> <wire from="(390,240)" to="(470,240)"/> <wire from="(390,300)" to="(470,300)"/> <wire from="(390,360)" to="(470,360)"/> <wire from="(390,420)" to="(470,420)"/> <wire from="(390,480)" to="(470,480)"/> <wire from="(390,540)" to="(470,540)"/> <wire from="(390,600)" to="(470,600)"/> <wire from="(390,660)" to="(470,660)"/> <wire from="(420,260)" to="(420,320)"/> <wire from="(420,260)" to="(470,260)"/> <wire from="(420,320)" to="(420,380)"/> <wire from="(420,320)" to="(470,320)"/> <wire from="(420,380)" to="(420,440)"/> <wire from="(420,380)" to="(470,380)"/> <wire from="(420,440)" to="(420,500)"/> <wire from="(420,440)" to="(470,440)"/> <wire from="(420,500)" to="(420,560)"/> <wire from="(420,500)" to="(470,500)"/> <wire from="(420,560)" to="(420,620)"/> <wire from="(420,560)" to="(470,560)"/> <wire from="(420,60)" to="(420,260)"/> <wire from="(420,620)" to="(420,680)"/> <wire from="(420,620)" to="(470,620)"/> <wire from="(420,680)" to="(470,680)"/> <wire from="(510,250)" to="(520,250)"/> <wire from="(510,310)" to="(590,310)"/> <wire from="(510,370)" to="(540,370)"/> <wire from="(510,430)" to="(860,430)"/> <wire from="(510,490)" to="(610,490)"/> <wire from="(510,550)" to="(940,550)"/> <wire from="(510,610)" to="(940,610)"/> <wire from="(510,670)" to="(630,670)"/> <wire from="(520,250)" to="(840,250)"/> <wire from="(520,60)" to="(520,250)"/> <wire from="(520,60)" to="(610,60)"/> <wire from="(540,370)" to="(720,370)"/> <wire from="(540,70)" to="(540,370)"/> <wire from="(540,70)" to="(610,70)"/> <wire from="(560,400)" to="(730,400)"/> <wire from="(560,80)" to="(560,400)"/> <wire from="(560,80)" to="(610,80)"/> <wire from="(590,160)" to="(590,310)"/> <wire from="(590,160)" to="(640,160)"/> <wire from="(590,310)" to="(940,310)"/> <wire from="(610,170)" to="(610,490)"/> <wire from="(610,170)" to="(640,170)"/> <wire from="(610,490)" to="(750,490)"/> <wire from="(630,180)" to="(630,670)"/> <wire from="(630,180)" to="(640,180)"/> <wire from="(630,670)" to="(940,670)"/> <wire from="(650,70)" to="(740,70)"/> <wire from="(680,170)" to="(690,170)"/> <wire from="(690,110)" to="(690,170)"/> <wire from="(690,110)" to="(770,110)"/> <wire from="(70,260)" to="(220,260)"/> <wire from="(70,30)" to="(320,30)"/> <wire from="(70,320)" to="(220,320)"/> <wire from="(70,380)" to="(220,380)"/> <wire from="(70,440)" to="(220,440)"/> <wire from="(70,500)" to="(220,500)"/> <wire from="(70,560)" to="(220,560)"/> <wire from="(70,60)" to="(420,60)"/> <wire from="(70,620)" to="(220,620)"/> <wire from="(70,680)" to="(220,680)"/> <wire from="(700,150)" to="(700,230)"/> <wire from="(700,150)" to="(760,150)"/> <wire from="(700,230)" to="(1000,230)"/> <wire from="(720,160)" to="(720,370)"/> <wire from="(720,160)" to="(760,160)"/> <wire from="(720,370)" to="(850,370)"/> <wire from="(730,180)" to="(730,400)"/> <wire from="(730,180)" to="(760,180)"/> <wire from="(730,400)" to="(1000,400)"/> <wire from="(740,70)" to="(1140,70)"/> <wire from="(740,70)" to="(740,90)"/> <wire from="(740,90)" to="(1050,90)"/> <wire from="(750,190)" to="(750,490)"/> <wire from="(750,190)" to="(760,190)"/> <wire from="(750,490)" to="(870,490)"/> <wire from="(790,110)" to="(1050,110)"/> <wire from="(820,170)" to="(830,170)"/> <wire from="(830,130)" to="(1010,130)"/> <wire from="(830,130)" to="(830,170)"/> <wire from="(840,150)" to="(840,250)"/> <wire from="(840,150)" to="(930,150)"/> <wire from="(840,250)" to="(940,250)"/> <wire from="(850,160)" to="(850,370)"/> <wire from="(850,160)" to="(930,160)"/> <wire from="(850,370)" to="(940,370)"/> <wire from="(860,170)" to="(860,430)"/> <wire from="(860,170)" to="(930,170)"/> <wire from="(860,430)" to="(940,430)"/> <wire from="(870,180)" to="(870,490)"/> <wire from="(870,180)" to="(930,180)"/> <wire from="(870,490)" to="(940,490)"/> <wire from="(890,190)" to="(890,220)"/> <wire from="(890,190)" to="(930,190)"/> <wire from="(890,220)" to="(1070,220)"/> <wire from="(960,250)" to="(1000,250)"/> <wire from="(960,310)" to="(1110,310)"/> <wire from="(960,370)" to="(1110,370)"/> <wire from="(960,430)" to="(1000,430)"/> <wire from="(960,490)" to="(1110,490)"/> <wire from="(960,550)" to="(1110,550)"/> <wire from="(960,610)" to="(1110,610)"/> <wire from="(960,670)" to="(1070,670)"/> <wire from="(990,170)" to="(1120,170)"/> </circuit> <circuit name="RANDOM_LOGIC"> <a name="appearance" val="custom"/> <a name="circuit" val="RANDOM_LOGIC"/> <a name="clabel" val="RANDOM_LOGIC"/> <a name="clabelfont" val="SansSerif plain 20"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#2f87ff" height="190" stroke="#000000" stroke-width="2" width="1320" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="60">/NMIP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="70">/IRQP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="80">RESP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="90">RDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="109">/T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="119">/T1X</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="129">/T2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="140">/T3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="150">/T4</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="159">/T5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="168">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1350" y="99">/IR5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="189">SO</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="370" y="223">ACR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="392" y="223">AVR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1316" y="221">DB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1164" y="220">DB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="871" y="219">FLAGS DEBUG</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="246" y="222">ALU COMMANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="606" y="221">BUS COMMANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="223">REGS COMMANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="461" y="223">PC COMMANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1345" y="139">FETCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1352" y="149">WR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1351" y="160">0/IR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="99">/PRDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="1351" y="89">IR0</text> <circ-anchor facing="east" x="60" y="50"/> <circ-port dir="in" pin="1000,100" x="320" y="50"/> <circ-port dir="in" pin="1030,100" x="330" y="50"/> <circ-port dir="in" pin="1060,100" x="340" y="50"/> <circ-port dir="in" pin="1090,100" x="350" y="50"/> <circ-port dir="in" pin="110,390" x="50" y="60"/> <circ-port dir="in" pin="110,420" x="50" y="80"/> <circ-port dir="in" pin="110,450" x="50" y="70"/> <circ-port dir="in" pin="110,620" x="390" y="240"/> <circ-port dir="in" pin="110,650" x="370" y="240"/> <circ-port dir="in" pin="110,680" x="50" y="190"/> <circ-port dir="in" pin="1150,100" x="360" y="50"/> <circ-port dir="in" pin="1180,100" x="370" y="50"/> <circ-port dir="in" pin="1210,100" x="380" y="50"/> <circ-port dir="in" pin="1240,100" x="390" y="50"/> <circ-port dir="in" pin="1270,100" x="400" y="50"/> <circ-port dir="in" pin="1300,100" x="410" y="50"/> <circ-port dir="in" pin="1330,100" x="420" y="50"/> <circ-port dir="in" pin="1360,100" x="430" y="50"/> <circ-port dir="in" pin="1390,100" x="440" y="50"/> <circ-port dir="in" pin="1420,100" x="450" y="50"/> <circ-port dir="in" pin="1480,100" x="460" y="50"/> <circ-port dir="in" pin="1510,100" x="470" y="50"/> <circ-port dir="in" pin="1540,100" x="480" y="50"/> <circ-port dir="in" pin="1570,100" x="490" y="50"/> <circ-port dir="in" pin="160,100" x="60" y="50"/> <circ-port dir="in" pin="1600,100" x="500" y="50"/> <circ-port dir="in" pin="1630,100" x="510" y="50"/> <circ-port dir="in" pin="1660,100" x="520" y="50"/> <circ-port dir="in" pin="1690,100" x="530" y="50"/> <circ-port dir="in" pin="1720,100" x="540" y="50"/> <circ-port dir="in" pin="1750,100" x="550" y="50"/> <circ-port dir="in" pin="1810,100" x="560" y="50"/> <circ-port dir="in" pin="1840,100" x="570" y="50"/> <circ-port dir="in" pin="1870,100" x="580" y="50"/> <circ-port dir="in" pin="190,100" x="70" y="50"/> <circ-port dir="in" pin="1900,100" x="590" y="50"/> <circ-port dir="in" pin="1930,100" x="600" y="50"/> <circ-port dir="in" pin="1960,100" x="610" y="50"/> <circ-port dir="in" pin="1990,100" x="620" y="50"/> <circ-port dir="in" pin="2020,100" x="630" y="50"/> <circ-port dir="in" pin="2050,100" x="640" y="50"/> <circ-port dir="in" pin="2080,100" x="650" y="50"/> <circ-port dir="in" pin="2140,100" x="660" y="50"/> <circ-port dir="in" pin="2170,100" x="670" y="50"/> <circ-port dir="in" pin="220,100" x="80" y="50"/> <circ-port dir="in" pin="2200,100" x="680" y="50"/> <circ-port dir="in" pin="2230,100" x="690" y="50"/> <circ-port dir="in" pin="2260,100" x="700" y="50"/> <circ-port dir="in" pin="2290,100" x="710" y="50"/> <circ-port dir="in" pin="2320,100" x="720" y="50"/> <circ-port dir="in" pin="2350,100" x="730" y="50"/> <circ-port dir="in" pin="2380,100" x="740" y="50"/> <circ-port dir="in" pin="2410,100" x="750" y="50"/> <circ-port dir="in" pin="2470,100" x="760" y="50"/> <circ-port dir="in" pin="250,100" x="90" y="50"/> <circ-port dir="in" pin="2500,100" x="770" y="50"/> <circ-port dir="in" pin="2530,100" x="780" y="50"/> <circ-port dir="in" pin="2560,100" x="790" y="50"/> <circ-port dir="in" pin="2590,100" x="800" y="50"/> <circ-port dir="in" pin="2620,100" x="810" y="50"/> <circ-port dir="in" pin="2650,100" x="820" y="50"/> <circ-port dir="in" pin="2680,100" x="830" y="50"/> <circ-port dir="in" pin="2710,100" x="840" y="50"/> <circ-port dir="in" pin="2740,100" x="850" y="50"/> <circ-port dir="in" pin="280,100" x="100" y="50"/> <circ-port dir="in" pin="2800,100" x="860" y="50"/> <circ-port dir="in" pin="2830,100" x="870" y="50"/> <circ-port dir="in" pin="2860,100" x="880" y="50"/> <circ-port dir="in" pin="2890,100" x="890" y="50"/> <circ-port dir="in" pin="2920,100" x="900" y="50"/> <circ-port dir="in" pin="2950,100" x="910" y="50"/> <circ-port dir="in" pin="2980,100" x="920" y="50"/> <circ-port dir="in" pin="3010,100" x="930" y="50"/> <circ-port dir="in" pin="3040,100" x="940" y="50"/> <circ-port dir="in" pin="3070,100" x="950" y="50"/> <circ-port dir="in" pin="310,100" x="110" y="50"/> <circ-port dir="in" pin="3130,100" x="960" y="50"/> <circ-port dir="in" pin="3160,100" x="970" y="50"/> <circ-port dir="in" pin="3190,100" x="980" y="50"/> <circ-port dir="in" pin="3220,100" x="990" y="50"/> <circ-port dir="in" pin="3250,100" x="1000" y="50"/> <circ-port dir="in" pin="3280,100" x="1010" y="50"/> <circ-port dir="in" pin="3310,100" x="1020" y="50"/> <circ-port dir="in" pin="3340,100" x="1030" y="50"/> <circ-port dir="in" pin="3370,100" x="1040" y="50"/> <circ-port dir="in" pin="340,100" x="120" y="50"/> <circ-port dir="in" pin="3400,100" x="1050" y="50"/> <circ-port dir="in" pin="3470,100" x="1060" y="50"/> <circ-port dir="in" pin="3500,100" x="1070" y="50"/> <circ-port dir="in" pin="3530,100" x="1080" y="50"/> <circ-port dir="in" pin="3560,100" x="1090" y="50"/> <circ-port dir="in" pin="3590,100" x="1100" y="50"/> <circ-port dir="in" pin="3620,100" x="1110" y="50"/> <circ-port dir="in" pin="3650,100" x="1120" y="50"/> <circ-port dir="in" pin="3680,100" x="1130" y="50"/> <circ-port dir="in" pin="370,100" x="130" y="50"/> <circ-port dir="in" pin="3710,100" x="1140" y="50"/> <circ-port dir="in" pin="3740,100" x="1150" y="50"/> <circ-port dir="in" pin="3800,100" x="1160" y="50"/> <circ-port dir="in" pin="3830,100" x="1170" y="50"/> <circ-port dir="in" pin="3860,100" x="1180" y="50"/> <circ-port dir="in" pin="3890,100" x="1190" y="50"/> <circ-port dir="in" pin="3920,100" x="1200" y="50"/> <circ-port dir="in" pin="3950,100" x="1210" y="50"/> <circ-port dir="in" pin="3980,100" x="1220" y="50"/> <circ-port dir="in" pin="400,100" x="140" y="50"/> <circ-port dir="in" pin="4010,100" x="1230" y="50"/> <circ-port dir="in" pin="4040,100" x="1240" y="50"/> <circ-port dir="in" pin="4070,100" x="1250" y="50"/> <circ-port dir="in" pin="4130,100" x="1260" y="50"/> <circ-port dir="in" pin="4160,100" x="1270" y="50"/> <circ-port dir="in" pin="4190,100" x="1280" y="50"/> <circ-port dir="in" pin="4220,100" x="1290" y="50"/> <circ-port dir="in" pin="4250,100" x="1300" y="50"/> <circ-port dir="in" pin="4280,100" x="1310" y="50"/> <circ-port dir="in" pin="430,100" x="150" y="50"/> <circ-port dir="in" pin="4310,100" x="1320" y="50"/> <circ-port dir="in" pin="4340,100" x="1330" y="50"/> <circ-port dir="in" pin="4370,100" x="1340" y="50"/> <circ-port dir="in" pin="4400,100" x="1350" y="50"/> <circ-port dir="in" pin="4550,1300" x="1130" y="240"/> <circ-port dir="in" pin="4590,1300" x="1140" y="240"/> <circ-port dir="in" pin="4630,1300" x="1150" y="240"/> <circ-port dir="in" pin="4670,1300" x="1160" y="240"/> <circ-port dir="in" pin="4710,1300" x="1170" y="240"/> <circ-port dir="in" pin="4750,1300" x="1180" y="240"/> <circ-port dir="in" pin="4760,130" x="1370" y="80"/> <circ-port dir="in" pin="4760,200" x="1370" y="90"/> <circ-port dir="in" pin="4760,230" x="1370" y="100"/> <circ-port dir="in" pin="4760,690" x="1370" y="210"/> <circ-port dir="in" pin="4760,720" x="1370" y="190"/> <circ-port dir="in" pin="4760,750" x="50" y="90"/> <circ-port dir="in" pin="4760,780" x="50" y="100"/> <circ-port dir="in" pin="4760,90" x="1370" y="70"/> <circ-port dir="in" pin="4790,1300" x="1190" y="240"/> <circ-port dir="in" pin="4830,1300" x="1200" y="240"/> <circ-port dir="in" pin="490,100" x="160" y="50"/> <circ-port dir="in" pin="520,100" x="170" y="50"/> <circ-port dir="in" pin="550,100" x="180" y="50"/> <circ-port dir="in" pin="580,100" x="190" y="50"/> <circ-port dir="in" pin="610,100" x="200" y="50"/> <circ-port dir="in" pin="640,100" x="210" y="50"/> <circ-port dir="in" pin="670,100" x="220" y="50"/> <circ-port dir="in" pin="700,100" x="230" y="50"/> <circ-port dir="in" pin="730,100" x="240" y="50"/> <circ-port dir="in" pin="760,100" x="250" y="50"/> <circ-port dir="in" pin="820,100" x="260" y="50"/> <circ-port dir="in" pin="850,100" x="270" y="50"/> <circ-port dir="in" pin="880,100" x="280" y="50"/> <circ-port dir="in" pin="910,100" x="290" y="50"/> <circ-port dir="in" pin="940,100" x="300" y="50"/> <circ-port dir="in" pin="970,100" x="310" y="50"/> <circ-port dir="out" pin="1030,1160" x="910" y="240"/> <circ-port dir="out" pin="1080,1190" x="920" y="240"/> <circ-port dir="out" pin="1130,1160" x="930" y="240"/> <circ-port dir="out" pin="1220,1160" x="180" y="240"/> <circ-port dir="out" pin="1280,1200" x="190" y="240"/> <circ-port dir="out" pin="1340,1160" x="200" y="240"/> <circ-port dir="out" pin="1400,1200" x="210" y="240"/> <circ-port dir="out" pin="1460,1160" x="220" y="240"/> <circ-port dir="out" pin="1520,1200" x="260" y="240"/> <circ-port dir="out" pin="1580,1160" x="270" y="240"/> <circ-port dir="out" pin="1640,1200" x="280" y="240"/> <circ-port dir="out" pin="1700,1160" x="330" y="240"/> <circ-port dir="out" pin="1760,1200" x="300" y="240"/> <circ-port dir="out" pin="1820,1160" x="340" y="240"/> <circ-port dir="out" pin="1880,1210" x="240" y="240"/> <circ-port dir="out" pin="1940,1160" x="230" y="240"/> <circ-port dir="out" pin="2000,1210" x="250" y="240"/> <circ-port dir="out" pin="2060,1160" x="350" y="240"/> <circ-port dir="out" pin="2120,1160" x="290" y="240"/> <circ-port dir="out" pin="2220,1160" x="680" y="240"/> <circ-port dir="out" pin="2290,1160" x="670" y="240"/> <circ-port dir="out" pin="2360,1210" x="660" y="240"/> <circ-port dir="out" pin="2430,1160" x="620" y="240"/> <circ-port dir="out" pin="2500,1210" x="610" y="240"/> <circ-port dir="out" pin="2570,1160" x="540" y="240"/> <circ-port dir="out" pin="2640,1210" x="550" y="240"/> <circ-port dir="out" pin="2700,1160" x="590" y="240"/> <circ-port dir="out" pin="2750,1210" x="600" y="240"/> <circ-port dir="out" pin="280,1160" x="630" y="240"/> <circ-port dir="out" pin="2800,1160" x="560" y="240"/> <circ-port dir="out" pin="2850,1210" x="570" y="240"/> <circ-port dir="out" pin="2920,1160" x="580" y="240"/> <circ-port dir="out" pin="2980,1210" x="460" y="240"/> <circ-port dir="out" pin="3040,1160" x="470" y="240"/> <circ-port dir="out" pin="3100,1200" x="440" y="240"/> <circ-port dir="out" pin="3160,1160" x="480" y="240"/> <circ-port dir="out" pin="3220,1200" x="450" y="240"/> <circ-port dir="out" pin="3280,1160" x="490" y="240"/> <circ-port dir="out" pin="330,1210" x="640" y="240"/> <circ-port dir="out" pin="3340,1200" x="420" y="240"/> <circ-port dir="out" pin="3400,1160" x="430" y="240"/> <circ-port dir="out" pin="3530,1160" x="1370" y="160"/> <circ-port dir="out" pin="3730,1160" x="50" y="170"/> <circ-port dir="out" pin="3770,1200" x="50" y="120"/> <circ-port dir="out" pin="380,1160" x="650" y="240"/> <circ-port dir="out" pin="3890,1160" x="500" y="240"/> <circ-port dir="out" pin="4000,1130" x="790" y="240"/> <circ-port dir="out" pin="4040,1160" x="800" y="240"/> <circ-port dir="out" pin="4080,1130" x="810" y="240"/> <circ-port dir="out" pin="4120,1160" x="820" y="240"/> <circ-port dir="out" pin="4160,1130" x="830" y="240"/> <circ-port dir="out" pin="4180,1300" x="1280" y="240"/> <circ-port dir="out" pin="4200,1160" x="850" y="240"/> <circ-port dir="out" pin="4220,1330" x="1290" y="240"/> <circ-port dir="out" pin="4240,1130" x="860" y="240"/> <circ-port dir="out" pin="4260,1300" x="1300" y="240"/> <circ-port dir="out" pin="4280,1160" x="870" y="240"/> <circ-port dir="out" pin="430,1210" x="80" y="240"/> <circ-port dir="out" pin="4300,1330" x="1310" y="240"/> <circ-port dir="out" pin="4320,1130" x="880" y="240"/> <circ-port dir="out" pin="4340,1300" x="1320" y="240"/> <circ-port dir="out" pin="4360,1160" x="890" y="240"/> <circ-port dir="out" pin="4380,1330" x="1330" y="240"/> <circ-port dir="out" pin="4400,1130" x="900" y="240"/> <circ-port dir="out" pin="4420,1300" x="1340" y="240"/> <circ-port dir="out" pin="4460,1330" x="1350" y="240"/> <circ-port dir="out" pin="4760,1010" x="50" y="130"/> <circ-port dir="out" pin="4760,1040" x="50" y="140"/> <circ-port dir="out" pin="4760,1070" x="50" y="150"/> <circ-port dir="out" pin="4760,1100" x="50" y="160"/> <circ-port dir="out" pin="4760,1170" x="1370" y="150"/> <circ-port dir="out" pin="4760,810" x="1370" y="140"/> <circ-port dir="out" pin="4760,850" x="50" y="110"/> <circ-port dir="out" pin="510,1160" x="100" y="240"/> <circ-port dir="out" pin="560,1210" x="90" y="240"/> <circ-port dir="out" pin="610,1160" x="110" y="240"/> <circ-port dir="out" pin="670,1210" x="150" y="240"/> <circ-port dir="out" pin="720,1160" x="120" y="240"/> <circ-port dir="out" pin="770,1210" x="140" y="240"/> <circ-port dir="out" pin="820,1160" x="130" y="240"/> <circ-port dir="out" pin="880,1210" x="950" y="240"/> <circ-port dir="out" pin="930,1160" x="940" y="240"/> <circ-port dir="out" pin="980,1190" x="840" y="240"/> </appear> <comp lib="0" loc="(1000,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X26"/> </comp> <comp lib="0" loc="(1030,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X27"/> </comp> <comp lib="0" loc="(1030,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_C_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1060,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X28"/> </comp> <comp lib="0" loc="(1060,150)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="T2"/> </comp> <comp lib="0" loc="(1080,1190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_N_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X29"/> </comp> <comp lib="0" loc="(110,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NMIP"/> </comp> <comp lib="0" loc="(110,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(110,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQP"/> </comp> <comp lib="0" loc="(110,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AVR"/> </comp> <comp lib="0" loc="(110,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(110,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(1130,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_Z_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,1060)" name="Tunnel"> <a name="label" val="n_V_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1140,1080)" name="Tunnel"> <a name="label" val="n_C_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1140,1100)" name="Tunnel"> <a name="label" val="n_N_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1140,1120)" name="Tunnel"> <a name="label" val="n_Z_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1150,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X30"/> </comp> <comp lib="0" loc="(1180,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X31"/> </comp> <comp lib="0" loc="(1210,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X32"/> </comp> <comp lib="0" loc="(1220,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="NDB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1220,530)" name="Tunnel"> <a name="label" val="DB_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1220,550)" name="Tunnel"> <a name="label" val="DB_V"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1220,570)" name="Tunnel"> <a name="label" val="DB_N"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1220,590)" name="Tunnel"> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1220,610)" name="Tunnel"> <a name="label" val="DBZ_Z"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1220,690)" name="Tunnel"> <a name="label" val="ACR_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1240,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X33"/> </comp> <comp lib="0" loc="(1250,800)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1270,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X34"/> </comp> <comp lib="0" loc="(1280,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1300,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X35"/> </comp> <comp lib="0" loc="(1330,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X36"/> </comp> <comp lib="0" loc="(1340,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1360,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X37"/> </comp> <comp lib="0" loc="(1390,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X38"/> </comp> <comp lib="0" loc="(1400,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1420,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X39"/> </comp> <comp lib="0" loc="(1450,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1450,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1460,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADL_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1480,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X40"/> </comp> <comp lib="0" loc="(1510,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X41"/> </comp> <comp lib="0" loc="(1520,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ANDS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1540,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X42"/> </comp> <comp lib="0" loc="(1570,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X43"/> </comp> <comp lib="0" loc="(1580,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="EORS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(160,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X0"/> </comp> <comp lib="0" loc="(160,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(160,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1600,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X44"/> </comp> <comp lib="0" loc="(1630,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X45"/> </comp> <comp lib="0" loc="(1640,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ORS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X46"/> </comp> <comp lib="0" loc="(1690,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X47"/> </comp> <comp lib="0" loc="(1700,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_ACIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1720,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X48"/> </comp> <comp lib="0" loc="(1750,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X49"/> </comp> <comp lib="0" loc="(1760,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SUMS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1810,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X50"/> </comp> <comp lib="0" loc="(1820,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_DAA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1840,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X51"/> </comp> <comp lib="0" loc="(1870,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X52"/> </comp> <comp lib="0" loc="(1880,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADD_SB7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(190,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X1"/> </comp> <comp lib="0" loc="(1900,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X53"/> </comp> <comp lib="0" loc="(1930,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X54"/> </comp> <comp lib="0" loc="(1940,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADD_SB06"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1960,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X55"/> </comp> <comp lib="0" loc="(1990,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X56"/> </comp> <comp lib="0" loc="(2000,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADD_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2020,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X57"/> </comp> <comp lib="0" loc="(2050,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X58"/> </comp> <comp lib="0" loc="(2060,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_DSA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2080,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X59"/> </comp> <comp lib="0" loc="(2120,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SRS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2140,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X60"/> </comp> <comp lib="0" loc="(2170,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X61"/> </comp> <comp lib="0" loc="(220,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X2"/> </comp> <comp lib="0" loc="(2200,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X62"/> </comp> <comp lib="0" loc="(2220,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DL_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2230,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X63"/> </comp> <comp lib="0" loc="(2240,500)" name="Tunnel"> <a name="label" val="BR0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2260,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X64"/> </comp> <comp lib="0" loc="(2290,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X65"/> </comp> <comp lib="0" loc="(2290,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DL_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2320,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X66"/> </comp> <comp lib="0" loc="(2350,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X67"/> </comp> <comp lib="0" loc="(2360,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DL_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2380,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X68"/> </comp> <comp lib="0" loc="(2380,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2380,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2380,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2380,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2380,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2380,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2390,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2390,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2390,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2390,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2390,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2410,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X69"/> </comp> <comp lib="0" loc="(2430,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADH_ABH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2470,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X70"/> </comp> <comp lib="0" loc="(250,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X3"/> </comp> <comp lib="0" loc="(250,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2500,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X71"/> </comp> <comp lib="0" loc="(2500,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADL_ABL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2530,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X72"/> </comp> <comp lib="0" loc="(2560,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X73"/> </comp> <comp lib="0" loc="(2570,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_AC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2590,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X74"/> </comp> <comp lib="0" loc="(260,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2620,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X75"/> </comp> <comp lib="0" loc="(2640,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="AC_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2650,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X76"/> </comp> <comp lib="0" loc="(2680,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X77"/> </comp> <comp lib="0" loc="(270,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(2700,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADH0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2710,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X78"/> </comp> <comp lib="0" loc="(2740,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X79"/> </comp> <comp lib="0" loc="(2750,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADH17"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(280,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X4"/> </comp> <comp lib="0" loc="(280,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2800,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X80"/> </comp> <comp lib="0" loc="(2800,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="AC_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2800,120)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(2830,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X81"/> </comp> <comp lib="0" loc="(2850,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2860,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X82"/> </comp> <comp lib="0" loc="(2890,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X83"/> </comp> <comp lib="0" loc="(2920,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X84"/> </comp> <comp lib="0" loc="(2920,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(2950,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X85"/> </comp> <comp lib="0" loc="(2980,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X86"/> </comp> <comp lib="0" loc="(2980,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADL_PCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3010,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X87"/> </comp> <comp lib="0" loc="(3040,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X88"/> </comp> <comp lib="0" loc="(3040,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCL_PCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3070,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X89"/> </comp> <comp lib="0" loc="(310,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X5"/> </comp> <comp lib="0" loc="(310,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3100,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCH_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3110,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3110,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3130,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X90"/> </comp> <comp lib="0" loc="(3160,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X91"/> </comp> <comp lib="0" loc="(3160,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCL_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3190,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X92"/> </comp> <comp lib="0" loc="(3220,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X93"/> </comp> <comp lib="0" loc="(3220,120)" name="Tunnel"> <a name="facing" val="north"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(3220,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCH_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3250,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X94"/> </comp> <comp lib="0" loc="(3280,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X95"/> </comp> <comp lib="0" loc="(3280,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCL_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(330,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3310,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X96"/> </comp> <comp lib="0" loc="(3340,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X97"/> </comp> <comp lib="0" loc="(3340,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ADH_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3370,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X98"/> </comp> <comp lib="0" loc="(340,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X6"/> </comp> <comp lib="0" loc="(3400,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X99"/> </comp> <comp lib="0" loc="(3400,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="PCH_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3470,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X100"/> </comp> <comp lib="0" loc="(3500,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X101"/> </comp> <comp lib="0" loc="(3530,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X102"/> </comp> <comp lib="0" loc="(3530,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_IR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3530,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3530,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3530,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3530,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3530,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3560,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X103"/> </comp> <comp lib="0" loc="(3590,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X104"/> </comp> <comp lib="0" loc="(3620,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X105"/> </comp> <comp lib="0" loc="(3650,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X106"/> </comp> <comp lib="0" loc="(3680,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X107"/> </comp> <comp lib="0" loc="(370,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X7"/> </comp> <comp lib="0" loc="(3710,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X108"/> </comp> <comp lib="0" loc="(3710,1120)" name="Tunnel"> <a name="facing" val="south"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(3730,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="T1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3740,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X109"/> </comp> <comp lib="0" loc="(3770,1200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_T1X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_ADL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(3800,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X110"/> </comp> <comp lib="0" loc="(3830,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X111"/> </comp> <comp lib="0" loc="(3850,350)" name="Tunnel"> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3850,370)" name="Tunnel"> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3850,390)" name="Tunnel"> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3850,410)" name="Tunnel"> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3860,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X112"/> </comp> <comp lib="0" loc="(3890,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X113"/> </comp> <comp lib="0" loc="(3890,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_IPC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,360)" name="Tunnel"> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3920,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X114"/> </comp> <comp lib="0" loc="(3920,490)" name="Tunnel"> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(3950,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X115"/> </comp> <comp lib="0" loc="(3980,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X116"/> </comp> <comp lib="0" loc="(3980,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="P_DB"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X8"/> </comp> <comp lib="0" loc="(4000,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="P_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4010,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X117"/> </comp> <comp lib="0" loc="(4040,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X118"/> </comp> <comp lib="0" loc="(4040,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="IR5_I"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4040,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4050,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4060,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4060,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_D"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4060,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_I"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4060,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z_V"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4070,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X119"/> </comp> <comp lib="0" loc="(4080,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="IR5_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4120,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="IR5_D"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4130,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X120"/> </comp> <comp lib="0" loc="(4160,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X121"/> </comp> <comp lib="0" loc="(4160,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Z_V"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4180,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4190,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X122"/> </comp> <comp lib="0" loc="(4200,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="ACR_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4220,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X123"/> </comp> <comp lib="0" loc="(4220,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4240,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DBZ_Z"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4250,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X124"/> </comp> <comp lib="0" loc="(4260,1240)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(4260,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4280,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X125"/> </comp> <comp lib="0" loc="(4280,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_N"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(430,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X9"/> </comp> <comp lib="0" loc="(430,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="Y_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4300,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4310,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X126"/> </comp> <comp lib="0" loc="(4320,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_P"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4340,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X127"/> </comp> <comp lib="0" loc="(4340,1010)" name="Tunnel"> <a name="label" val="DB_N"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4340,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4340,870)" name="Tunnel"> <a name="label" val="ACR_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4340,890)" name="Tunnel"> <a name="label" val="DBZ_Z"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4340,910)" name="Tunnel"> <a name="label" val="DB_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4340,960)" name="Tunnel"> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4340,980)" name="Tunnel"> <a name="label" val="DB_V"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4360,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4370,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X128"/> </comp> <comp lib="0" loc="(4380,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4400,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X129"/> </comp> <comp lib="0" loc="(4400,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_V"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4420,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4460,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4460,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_C_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_V_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_N_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_Z_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4520,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4530,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4550,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(4550,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4550,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4550,920)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(4590,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(4630,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(4640,1240)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(4670,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(4710,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(4740,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4740,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(4750,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(4760,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,1170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(4760,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR0"/> </comp> <comp lib="0" loc="(4760,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_IR5"/> </comp> <comp lib="0" loc="(4760,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_TWOCYCLE"/> </comp> <comp lib="0" loc="(4760,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_IMPLIED"/> </comp> <comp lib="0" loc="(4760,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(4760,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PRDY"/> </comp> <comp lib="0" loc="(4760,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="FETCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4760,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(4790,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(4830,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(490,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X10"/> </comp> <comp lib="0" loc="(510,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="X_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(510,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(510,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(520,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X11"/> </comp> <comp lib="0" loc="(550,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X12"/> </comp> <comp lib="0" loc="(560,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_Y"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(580,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X13"/> </comp> <comp lib="0" loc="(610,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X14"/> </comp> <comp lib="0" loc="(610,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(640,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X15"/> </comp> <comp lib="0" loc="(670,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X16"/> </comp> <comp lib="0" loc="(670,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="S_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X17"/> </comp> <comp lib="0" loc="(720,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="S_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X18"/> </comp> <comp lib="0" loc="(760,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X19"/> </comp> <comp lib="0" loc="(770,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="SB_S"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(820,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X20"/> </comp> <comp lib="0" loc="(820,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="S_S"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(850,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X21"/> </comp> <comp lib="0" loc="(880,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X22"/> </comp> <comp lib="0" loc="(880,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_V_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(910,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X23"/> </comp> <comp lib="0" loc="(930,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_I_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(940,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X24"/> </comp> <comp lib="0" loc="(940,800)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(950,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(950,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z_V"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_C"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_D"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="IR5_I"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="south"/> <a name="label" val="X25"/> </comp> <comp lib="0" loc="(970,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="P_DB"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(980,1190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="north"/> <a name="label" val="n_D_OUT"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(2210,500)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(4420,180)" name="AND Gate"> <a name="facing" val="west"/> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="6" loc="(1115,125)" name="Text"> <a name="font" val="SansSerif plain 10"/> <a name="text" val="JSR2"/> </comp> <comp lib="6" loc="(1115,235)" name="Text"> <a name="font" val="SansSerif plain 10"/> <a name="text" val="STK2"/> </comp> <comp lib="6" loc="(2190,540)" name="Text"> <a name="text" val="Branch T0 Skip"/> </comp> <comp lib="6" loc="(4440,115)" name="Text"> <a name="text" val="Push/pull"/> </comp> <comp lib="6" loc="(790,130)" name="Text"> <a name="text" val="BRK5"/> <a name="valign" val="top"/> </comp> <comp loc="(1000,400)" name="FLAGS"/> <comp loc="(1470,450)" name="ALU_SETUP"/> <comp loc="(2500,440)" name="BUS_CONTROL"/> <comp loc="(3130,440)" name="PC_SETUP"/> <comp loc="(3570,320)" name="DISPATCH"/> <comp loc="(380,360)" name="INT_RESET_CONTROL"> <a name="label" val="int_control"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(410,860)" name="INT_VECTOR_Logic"> <a name="label" val="int_vector"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(4160,320)" name="FLAGS_CONTROL"/> <comp loc="(4540,280)" name="BRANCH_LOGIC"/> <comp loc="(4560,860)" name="EXTENDED_CYCLE_COUNTER"/> <comp loc="(540,490)" name="REGS_CONTROL"> <a name="labelloc" val="east"/> </comp> <wire from="(1000,100)" to="(1000,260)"/> <wire from="(1000,1060)" to="(1140,1060)"/> <wire from="(1000,260)" to="(1000,320)"/> <wire from="(1000,320)" to="(1480,320)"/> <wire from="(1000,820)" to="(1000,1060)"/> <wire from="(1010,130)" to="(1010,270)"/> <wire from="(1010,130)" to="(1690,130)"/> <wire from="(1020,820)" to="(1020,870)"/> <wire from="(1020,870)" to="(1020,1080)"/> <wire from="(1030,100)" to="(1030,310)"/> <wire from="(1030,1120)" to="(1030,1160)"/> <wire from="(1030,1120)" to="(1060,1120)"/> <wire from="(1030,310)" to="(1490,310)"/> <wire from="(1040,820)" to="(1040,860)"/> <wire from="(1040,860)" to="(1040,1100)"/> <wire from="(1040,860)" to="(1350,860)"/> <wire from="(1050,240)" to="(1050,280)"/> <wire from="(1050,240)" to="(1300,240)"/> <wire from="(1060,100)" to="(1060,150)"/> <wire from="(1060,1080)" to="(1060,1120)"/> <wire from="(1060,1080)" to="(1140,1080)"/> <wire from="(1060,820)" to="(1060,840)"/> <wire from="(1060,840)" to="(1060,1080)"/> <wire from="(1060,840)" to="(1330,840)"/> <wire from="(1080,1100)" to="(1080,1190)"/> <wire from="(1080,1100)" to="(1140,1100)"/> <wire from="(1080,820)" to="(1080,1100)"/> <wire from="(1090,100)" to="(1090,300)"/> <wire from="(1090,300)" to="(1500,300)"/> <wire from="(110,390)" to="(140,390)"/> <wire from="(110,420)" to="(180,420)"/> <wire from="(110,450)" to="(140,450)"/> <wire from="(110,620)" to="(900,620)"/> <wire from="(110,650)" to="(140,650)"/> <wire from="(110,680)" to="(160,680)"/> <wire from="(1100,1120)" to="(1130,1120)"/> <wire from="(1100,330)" to="(1100,400)"/> <wire from="(1100,330)" to="(1760,330)"/> <wire from="(1100,820)" to="(1100,1120)"/> <wire from="(1130,1120)" to="(1130,1160)"/> <wire from="(1130,1120)" to="(1140,1120)"/> <wire from="(1150,100)" to="(1150,290)"/> <wire from="(1150,290)" to="(1510,290)"/> <wire from="(1180,100)" to="(1180,280)"/> <wire from="(1180,280)" to="(1520,280)"/> <wire from="(1210,100)" to="(1210,270)"/> <wire from="(1210,270)" to="(1530,270)"/> <wire from="(1210,430)" to="(1230,430)"/> <wire from="(1210,530)" to="(1220,530)"/> <wire from="(1210,550)" to="(1220,550)"/> <wire from="(1210,570)" to="(1220,570)"/> <wire from="(1210,590)" to="(1220,590)"/> <wire from="(1210,610)" to="(1220,610)"/> <wire from="(1210,670)" to="(1310,670)"/> <wire from="(1210,690)" to="(1220,690)"/> <wire from="(1210,720)" to="(1230,720)"/> <wire from="(1210,730)" to="(1230,730)"/> <wire from="(1210,740)" to="(1230,740)"/> <wire from="(1210,750)" to="(1230,750)"/> <wire from="(1210,760)" to="(1230,760)"/> <wire from="(1210,770)" to="(1230,770)"/> <wire from="(1210,780)" to="(1230,780)"/> <wire from="(1210,790)" to="(1230,790)"/> <wire from="(1220,1020)" to="(1220,1160)"/> <wire from="(1220,1020)" to="(1500,1020)"/> <wire from="(1230,380)" to="(1230,430)"/> <wire from="(1240,100)" to="(1240,260)"/> <wire from="(1240,260)" to="(1540,260)"/> <wire from="(1250,1260)" to="(4130,1260)"/> <wire from="(1250,800)" to="(1250,1260)"/> <wire from="(1270,100)" to="(1270,250)"/> <wire from="(1270,250)" to="(1550,250)"/> <wire from="(1280,1040)" to="(1280,1200)"/> <wire from="(1280,1040)" to="(1520,1040)"/> <wire from="(1300,100)" to="(1300,240)"/> <wire from="(1300,240)" to="(1560,240)"/> <wire from="(1310,670)" to="(1310,930)"/> <wire from="(1310,930)" to="(3530,930)"/> <wire from="(1330,100)" to="(1330,230)"/> <wire from="(1330,230)" to="(1570,230)"/> <wire from="(1330,700)" to="(1330,840)"/> <wire from="(1330,700)" to="(1460,700)"/> <wire from="(1340,1060)" to="(1340,1160)"/> <wire from="(1340,1060)" to="(1540,1060)"/> <wire from="(1350,720)" to="(1350,860)"/> <wire from="(1350,720)" to="(1460,720)"/> <wire from="(1360,100)" to="(1360,220)"/> <wire from="(1360,220)" to="(1580,220)"/> <wire from="(1380,340)" to="(1380,570)"/> <wire from="(1380,570)" to="(1460,570)"/> <wire from="(1390,100)" to="(1390,210)"/> <wire from="(1390,210)" to="(1590,210)"/> <wire from="(140,390)" to="(140,410)"/> <wire from="(140,410)" to="(300,410)"/> <wire from="(140,430)" to="(140,450)"/> <wire from="(140,430)" to="(300,430)"/> <wire from="(140,640)" to="(140,650)"/> <wire from="(140,640)" to="(880,640)"/> <wire from="(1400,1080)" to="(1400,1200)"/> <wire from="(1400,1080)" to="(1560,1080)"/> <wire from="(1420,100)" to="(1420,200)"/> <wire from="(1420,200)" to="(1600,200)"/> <wire from="(1420,790)" to="(1420,880)"/> <wire from="(1420,790)" to="(1460,790)"/> <wire from="(1420,880)" to="(3430,880)"/> <wire from="(1440,810)" to="(1440,860)"/> <wire from="(1440,810)" to="(1460,810)"/> <wire from="(1440,860)" to="(2850,860)"/> <wire from="(1450,480)" to="(1460,480)"/> <wire from="(1450,500)" to="(1460,500)"/> <wire from="(1450,520)" to="(1460,520)"/> <wire from="(1450,540)" to="(1460,540)"/> <wire from="(1450,590)" to="(1460,590)"/> <wire from="(1450,610)" to="(1460,610)"/> <wire from="(1450,630)" to="(1460,630)"/> <wire from="(1450,650)" to="(1460,650)"/> <wire from="(1450,770)" to="(1460,770)"/> <wire from="(1460,1100)" to="(1460,1160)"/> <wire from="(1460,1100)" to="(1580,1100)"/> <wire from="(1480,100)" to="(1480,190)"/> <wire from="(1480,190)" to="(1610,190)"/> <wire from="(1480,320)" to="(1480,450)"/> <wire from="(1490,310)" to="(1490,450)"/> <wire from="(1500,300)" to="(1500,450)"/> <wire from="(1500,830)" to="(1500,1020)"/> <wire from="(1510,100)" to="(1510,180)"/> <wire from="(1510,180)" to="(1620,180)"/> <wire from="(1510,290)" to="(1510,450)"/> <wire from="(1520,1120)" to="(1520,1200)"/> <wire from="(1520,1120)" to="(1600,1120)"/> <wire from="(1520,280)" to="(1520,450)"/> <wire from="(1520,830)" to="(1520,1040)"/> <wire from="(1530,270)" to="(1530,450)"/> <wire from="(1540,100)" to="(1540,170)"/> <wire from="(1540,170)" to="(1630,170)"/> <wire from="(1540,260)" to="(1540,450)"/> <wire from="(1540,830)" to="(1540,1060)"/> <wire from="(1550,250)" to="(1550,450)"/> <wire from="(1560,240)" to="(1560,450)"/> <wire from="(1560,830)" to="(1560,1080)"/> <wire from="(1570,100)" to="(1570,160)"/> <wire from="(1570,160)" to="(1640,160)"/> <wire from="(1570,230)" to="(1570,450)"/> <wire from="(1580,1140)" to="(1580,1160)"/> <wire from="(1580,1140)" to="(1620,1140)"/> <wire from="(1580,220)" to="(1580,450)"/> <wire from="(1580,830)" to="(1580,1100)"/> <wire from="(1590,210)" to="(1590,450)"/> <wire from="(160,100)" to="(160,300)"/> <wire from="(160,300)" to="(530,300)"/> <wire from="(160,340)" to="(240,340)"/> <wire from="(160,360)" to="(300,360)"/> <wire from="(160,660)" to="(160,680)"/> <wire from="(160,660)" to="(900,660)"/> <wire from="(1600,100)" to="(1600,150)"/> <wire from="(1600,150)" to="(1650,150)"/> <wire from="(1600,200)" to="(1600,450)"/> <wire from="(1600,830)" to="(1600,1120)"/> <wire from="(1610,190)" to="(1610,450)"/> <wire from="(1620,180)" to="(1620,450)"/> <wire from="(1620,830)" to="(1620,1140)"/> <wire from="(1630,100)" to="(1630,140)"/> <wire from="(1630,140)" to="(1660,140)"/> <wire from="(1630,170)" to="(1630,450)"/> <wire from="(1640,160)" to="(1640,450)"/> <wire from="(1640,830)" to="(1640,1200)"/> <wire from="(1650,150)" to="(1650,450)"/> <wire from="(1660,100)" to="(1660,120)"/> <wire from="(1660,1140)" to="(1700,1140)"/> <wire from="(1660,120)" to="(1670,120)"/> <wire from="(1660,140)" to="(1660,420)"/> <wire from="(1660,420)" to="(1660,450)"/> <wire from="(1660,420)" to="(2420,420)"/> <wire from="(1660,830)" to="(1660,1140)"/> <wire from="(1670,120)" to="(1670,410)"/> <wire from="(1670,410)" to="(2430,410)"/> <wire from="(1680,1120)" to="(1760,1120)"/> <wire from="(1680,120)" to="(1680,400)"/> <wire from="(1680,120)" to="(1690,120)"/> <wire from="(1680,400)" to="(1680,450)"/> <wire from="(1680,400)" to="(2440,400)"/> <wire from="(1680,830)" to="(1680,1120)"/> <wire from="(1690,100)" to="(1690,120)"/> <wire from="(1690,130)" to="(1690,390)"/> <wire from="(1690,130)" to="(1720,130)"/> <wire from="(1690,390)" to="(1690,450)"/> <wire from="(1690,390)" to="(2450,390)"/> <wire from="(1700,1100)" to="(1820,1100)"/> <wire from="(1700,1140)" to="(1700,1160)"/> <wire from="(1700,140)" to="(1700,450)"/> <wire from="(1700,140)" to="(1750,140)"/> <wire from="(1700,830)" to="(1700,1100)"/> <wire from="(1710,150)" to="(1710,450)"/> <wire from="(1710,150)" to="(1810,150)"/> <wire from="(1720,100)" to="(1720,130)"/> <wire from="(1720,1080)" to="(1880,1080)"/> <wire from="(1720,160)" to="(1720,450)"/> <wire from="(1720,160)" to="(1840,160)"/> <wire from="(1720,830)" to="(1720,1080)"/> <wire from="(1730,170)" to="(1730,450)"/> <wire from="(1730,170)" to="(1870,170)"/> <wire from="(1740,1060)" to="(1940,1060)"/> <wire from="(1740,180)" to="(1740,450)"/> <wire from="(1740,180)" to="(1900,180)"/> <wire from="(1740,830)" to="(1740,1060)"/> <wire from="(1750,100)" to="(1750,140)"/> <wire from="(1750,190)" to="(1750,450)"/> <wire from="(1750,190)" to="(1930,190)"/> <wire from="(1760,1040)" to="(2000,1040)"/> <wire from="(1760,1120)" to="(1760,1200)"/> <wire from="(1760,220)" to="(1760,330)"/> <wire from="(1760,220)" to="(1970,220)"/> <wire from="(1760,380)" to="(1760,450)"/> <wire from="(1760,380)" to="(1990,380)"/> <wire from="(1760,830)" to="(1760,1040)"/> <wire from="(1770,130)" to="(1770,450)"/> <wire from="(1770,130)" to="(2410,130)"/> <wire from="(1780,1020)" to="(2060,1020)"/> <wire from="(1780,210)" to="(1780,450)"/> <wire from="(1780,210)" to="(1950,210)"/> <wire from="(1780,830)" to="(1780,1020)"/> <wire from="(1790,200)" to="(1790,450)"/> <wire from="(1790,200)" to="(1940,200)"/> <wire from="(180,420)" to="(180,600)"/> <wire from="(180,420)" to="(300,420)"/> <wire from="(180,600)" to="(750,600)"/> <wire from="(1800,300)" to="(1800,450)"/> <wire from="(1800,300)" to="(2590,300)"/> <wire from="(1810,100)" to="(1810,150)"/> <wire from="(1810,310)" to="(1810,450)"/> <wire from="(1810,310)" to="(2690,310)"/> <wire from="(1810,830)" to="(1810,980)"/> <wire from="(1810,980)" to="(2120,980)"/> <wire from="(1820,1100)" to="(1820,1160)"/> <wire from="(1820,320)" to="(1820,450)"/> <wire from="(1820,320)" to="(2950,320)"/> <wire from="(1830,330)" to="(1830,450)"/> <wire from="(1830,330)" to="(2980,330)"/> <wire from="(1840,100)" to="(1840,160)"/> <wire from="(1840,340)" to="(1840,450)"/> <wire from="(1840,340)" to="(2880,340)"/> <wire from="(1850,350)" to="(1850,450)"/> <wire from="(1850,350)" to="(2900,350)"/> <wire from="(1860,360)" to="(1860,450)"/> <wire from="(1860,360)" to="(2730,360)"/> <wire from="(1870,100)" to="(1870,170)"/> <wire from="(1880,1080)" to="(1880,1210)"/> <wire from="(1880,670)" to="(2400,670)"/> <wire from="(1880,750)" to="(2400,750)"/> <wire from="(1880,770)" to="(2140,770)"/> <wire from="(190,100)" to="(190,290)"/> <wire from="(190,290)" to="(540,290)"/> <wire from="(1900,100)" to="(1900,180)"/> <wire from="(1930,100)" to="(1930,190)"/> <wire from="(1940,1060)" to="(1940,1160)"/> <wire from="(1940,120)" to="(1940,200)"/> <wire from="(1940,120)" to="(2620,120)"/> <wire from="(1950,180)" to="(1950,210)"/> <wire from="(1950,180)" to="(2470,180)"/> <wire from="(1960,100)" to="(1960,170)"/> <wire from="(1960,170)" to="(2460,170)"/> <wire from="(1970,160)" to="(1970,220)"/> <wire from="(1970,160)" to="(2650,160)"/> <wire from="(1990,100)" to="(1990,380)"/> <wire from="(1990,380)" to="(2710,380)"/> <wire from="(200,160)" to="(200,390)"/> <wire from="(200,160)" to="(880,160)"/> <wire from="(200,390)" to="(300,390)"/> <wire from="(2000,1040)" to="(2000,1210)"/> <wire from="(2020,100)" to="(2020,370)"/> <wire from="(2020,370)" to="(2470,370)"/> <wire from="(2050,100)" to="(2050,290)"/> <wire from="(2050,290)" to="(2480,290)"/> <wire from="(2060,1020)" to="(2060,1160)"/> <wire from="(2080,100)" to="(2080,280)"/> <wire from="(2080,280)" to="(2490,280)"/> <wire from="(210,440)" to="(210,710)"/> <wire from="(210,440)" to="(300,440)"/> <wire from="(210,710)" to="(900,710)"/> <wire from="(2120,150)" to="(2120,490)"/> <wire from="(2120,150)" to="(2560,150)"/> <wire from="(2120,490)" to="(2180,490)"/> <wire from="(2120,510)" to="(2120,630)"/> <wire from="(2120,510)" to="(2170,510)"/> <wire from="(2120,630)" to="(2260,630)"/> <wire from="(2120,980)" to="(2120,1160)"/> <wire from="(2140,100)" to="(2140,270)"/> <wire from="(2140,270)" to="(2500,270)"/> <wire from="(2140,770)" to="(2140,990)"/> <wire from="(2140,990)" to="(4010,990)"/> <wire from="(2170,100)" to="(2170,260)"/> <wire from="(2170,260)" to="(2510,260)"/> <wire from="(2180,710)" to="(2180,940)"/> <wire from="(2180,710)" to="(2400,710)"/> <wire from="(220,100)" to="(220,280)"/> <wire from="(220,280)" to="(550,280)"/> <wire from="(2200,100)" to="(2200,250)"/> <wire from="(2200,250)" to="(2520,250)"/> <wire from="(2210,500)" to="(2230,500)"/> <wire from="(2210,690)" to="(2210,960)"/> <wire from="(2210,690)" to="(2400,690)"/> <wire from="(2220,1050)" to="(2220,1160)"/> <wire from="(2220,1050)" to="(2470,1050)"/> <wire from="(2230,100)" to="(2230,240)"/> <wire from="(2230,240)" to="(2530,240)"/> <wire from="(2230,430)" to="(2230,500)"/> <wire from="(2230,430)" to="(2630,430)"/> <wire from="(2230,500)" to="(2240,500)"/> <wire from="(2240,730)" to="(2240,950)"/> <wire from="(2240,730)" to="(2400,730)"/> <wire from="(2260,100)" to="(2260,230)"/> <wire from="(2260,230)" to="(2540,230)"/> <wire from="(2260,630)" to="(2260,950)"/> <wire from="(2260,950)" to="(2890,950)"/> <wire from="(2290,100)" to="(2290,220)"/> <wire from="(2290,1070)" to="(2290,1160)"/> <wire from="(2290,1070)" to="(2490,1070)"/> <wire from="(2290,220)" to="(2550,220)"/> <wire from="(2320,100)" to="(2320,210)"/> <wire from="(2320,210)" to="(2560,210)"/> <wire from="(2350,100)" to="(2350,200)"/> <wire from="(2350,200)" to="(2570,200)"/> <wire from="(2360,1090)" to="(2360,1210)"/> <wire from="(2360,1090)" to="(2510,1090)"/> <wire from="(2380,100)" to="(2380,190)"/> <wire from="(2380,190)" to="(2580,190)"/> <wire from="(2380,550)" to="(2400,550)"/> <wire from="(2380,570)" to="(2400,570)"/> <wire from="(2380,590)" to="(2400,590)"/> <wire from="(2380,610)" to="(2400,610)"/> <wire from="(2380,630)" to="(2400,630)"/> <wire from="(2380,650)" to="(2400,650)"/> <wire from="(2380,790)" to="(2380,840)"/> <wire from="(2380,790)" to="(2400,790)"/> <wire from="(2380,840)" to="(3150,840)"/> <wire from="(2390,470)" to="(2400,470)"/> <wire from="(2390,490)" to="(2400,490)"/> <wire from="(2390,510)" to="(2400,510)"/> <wire from="(2390,530)" to="(2400,530)"/> <wire from="(2390,770)" to="(2400,770)"/> <wire from="(240,340)" to="(240,350)"/> <wire from="(240,350)" to="(300,350)"/> <wire from="(240,750)" to="(240,870)"/> <wire from="(240,750)" to="(400,750)"/> <wire from="(240,870)" to="(410,870)"/> <wire from="(2410,100)" to="(2410,130)"/> <wire from="(2420,420)" to="(2420,440)"/> <wire from="(2430,1110)" to="(2430,1160)"/> <wire from="(2430,1110)" to="(2530,1110)"/> <wire from="(2430,410)" to="(2430,440)"/> <wire from="(2440,400)" to="(2440,440)"/> <wire from="(2450,390)" to="(2450,440)"/> <wire from="(2460,170)" to="(2460,440)"/> <wire from="(2470,100)" to="(2470,180)"/> <wire from="(2470,370)" to="(2470,440)"/> <wire from="(2470,810)" to="(2470,1050)"/> <wire from="(2480,290)" to="(2480,440)"/> <wire from="(2490,280)" to="(2490,440)"/> <wire from="(2490,810)" to="(2490,1070)"/> <wire from="(250,100)" to="(250,270)"/> <wire from="(250,270)" to="(560,270)"/> <wire from="(250,460)" to="(260,460)"/> <wire from="(2500,100)" to="(2500,180)"/> <wire from="(2500,1130)" to="(2500,1210)"/> <wire from="(2500,1130)" to="(2550,1130)"/> <wire from="(2500,180)" to="(2610,180)"/> <wire from="(2500,270)" to="(2500,440)"/> <wire from="(2510,260)" to="(2510,440)"/> <wire from="(2510,810)" to="(2510,1090)"/> <wire from="(2520,250)" to="(2520,440)"/> <wire from="(2530,100)" to="(2530,170)"/> <wire from="(2530,170)" to="(2620,170)"/> <wire from="(2530,240)" to="(2530,440)"/> <wire from="(2530,810)" to="(2530,1110)"/> <wire from="(2540,230)" to="(2540,440)"/> <wire from="(2550,220)" to="(2550,440)"/> <wire from="(2550,810)" to="(2550,1130)"/> <wire from="(2560,100)" to="(2560,150)"/> <wire from="(2560,210)" to="(2560,440)"/> <wire from="(2570,200)" to="(2570,440)"/> <wire from="(2570,810)" to="(2570,1160)"/> <wire from="(2580,190)" to="(2580,440)"/> <wire from="(2590,100)" to="(2590,130)"/> <wire from="(2590,1130)" to="(2640,1130)"/> <wire from="(2590,130)" to="(2640,130)"/> <wire from="(2590,150)" to="(2590,300)"/> <wire from="(2590,150)" to="(2650,150)"/> <wire from="(2590,810)" to="(2590,1130)"/> <wire from="(260,450)" to="(260,460)"/> <wire from="(260,450)" to="(300,450)"/> <wire from="(260,490)" to="(270,490)"/> <wire from="(2610,1110)" to="(2700,1110)"/> <wire from="(2610,180)" to="(2610,440)"/> <wire from="(2610,810)" to="(2610,1110)"/> <wire from="(2620,100)" to="(2620,120)"/> <wire from="(2620,170)" to="(2620,440)"/> <wire from="(2630,1090)" to="(2750,1090)"/> <wire from="(2630,430)" to="(2630,440)"/> <wire from="(2630,810)" to="(2630,1090)"/> <wire from="(2640,1130)" to="(2640,1210)"/> <wire from="(2640,130)" to="(2640,440)"/> <wire from="(2650,100)" to="(2650,150)"/> <wire from="(2650,1070)" to="(2800,1070)"/> <wire from="(2650,160)" to="(2650,220)"/> <wire from="(2650,220)" to="(3860,220)"/> <wire from="(2650,230)" to="(2650,440)"/> <wire from="(2650,230)" to="(2740,230)"/> <wire from="(2650,810)" to="(2650,1070)"/> <wire from="(2660,240)" to="(2660,440)"/> <wire from="(2660,240)" to="(2830,240)"/> <wire from="(2670,1050)" to="(2850,1050)"/> <wire from="(2670,250)" to="(2670,440)"/> <wire from="(2670,250)" to="(2860,250)"/> <wire from="(2670,810)" to="(2670,1050)"/> <wire from="(2680,100)" to="(2680,200)"/> <wire from="(2680,200)" to="(3170,200)"/> <wire from="(2680,400)" to="(2680,440)"/> <wire from="(2680,400)" to="(2890,400)"/> <wire from="(2690,1030)" to="(2920,1030)"/> <wire from="(2690,310)" to="(2690,440)"/> <wire from="(2690,310)" to="(2920,310)"/> <wire from="(2690,810)" to="(2690,1030)"/> <wire from="(270,460)" to="(270,490)"/> <wire from="(270,460)" to="(300,460)"/> <wire from="(270,520)" to="(280,520)"/> <wire from="(2700,1110)" to="(2700,1160)"/> <wire from="(2710,100)" to="(2710,180)"/> <wire from="(2710,180)" to="(3180,180)"/> <wire from="(2710,380)" to="(2710,440)"/> <wire from="(2710,380)" to="(3160,380)"/> <wire from="(2730,260)" to="(2730,360)"/> <wire from="(2730,260)" to="(3070,260)"/> <wire from="(2730,360)" to="(2730,440)"/> <wire from="(2740,100)" to="(2740,230)"/> <wire from="(2740,270)" to="(2740,440)"/> <wire from="(2740,270)" to="(3130,270)"/> <wire from="(2750,1090)" to="(2750,1210)"/> <wire from="(2750,280)" to="(2750,440)"/> <wire from="(2750,280)" to="(3160,280)"/> <wire from="(2770,290)" to="(2770,440)"/> <wire from="(2770,290)" to="(3620,290)"/> <wire from="(280,100)" to="(280,260)"/> <wire from="(280,1020)" to="(280,1160)"/> <wire from="(280,1020)" to="(500,1020)"/> <wire from="(280,260)" to="(570,260)"/> <wire from="(280,400)" to="(280,500)"/> <wire from="(280,400)" to="(300,400)"/> <wire from="(280,500)" to="(280,520)"/> <wire from="(280,500)" to="(470,500)"/> <wire from="(2800,100)" to="(2800,120)"/> <wire from="(2800,1070)" to="(2800,1160)"/> <wire from="(2800,390)" to="(2800,440)"/> <wire from="(2800,390)" to="(3390,390)"/> <wire from="(2810,410)" to="(2810,440)"/> <wire from="(2810,410)" to="(3260,410)"/> <wire from="(2830,100)" to="(2830,240)"/> <wire from="(2830,570)" to="(2980,570)"/> <wire from="(2830,590)" to="(2940,590)"/> <wire from="(2830,650)" to="(2920,650)"/> <wire from="(2830,720)" to="(2870,720)"/> <wire from="(2830,740)" to="(2850,740)"/> <wire from="(2850,1050)" to="(2850,1210)"/> <wire from="(2850,740)" to="(2850,860)"/> <wire from="(2860,100)" to="(2860,250)"/> <wire from="(2870,720)" to="(2870,860)"/> <wire from="(2870,860)" to="(4030,860)"/> <wire from="(2880,150)" to="(2880,340)"/> <wire from="(2880,150)" to="(3010,150)"/> <wire from="(2890,100)" to="(2890,400)"/> <wire from="(2890,400)" to="(3190,400)"/> <wire from="(2890,780)" to="(2890,950)"/> <wire from="(2890,780)" to="(4760,780)"/> <wire from="(2900,160)" to="(2900,350)"/> <wire from="(2900,160)" to="(3040,160)"/> <wire from="(2920,100)" to="(2920,310)"/> <wire from="(2920,1030)" to="(2920,1160)"/> <wire from="(2920,310)" to="(3200,310)"/> <wire from="(2920,650)" to="(2920,900)"/> <wire from="(2920,900)" to="(3920,900)"/> <wire from="(2940,590)" to="(2940,800)"/> <wire from="(2940,800)" to="(3860,800)"/> <wire from="(2950,100)" to="(2950,320)"/> <wire from="(2980,100)" to="(2980,330)"/> <wire from="(2980,1080)" to="(2980,1210)"/> <wire from="(2980,1080)" to="(3170,1080)"/> <wire from="(2980,570)" to="(2980,760)"/> <wire from="(2980,760)" to="(3140,760)"/> <wire from="(3010,100)" to="(3010,150)"/> <wire from="(3040,100)" to="(3040,160)"/> <wire from="(3040,1100)" to="(3040,1160)"/> <wire from="(3040,1100)" to="(3180,1100)"/> <wire from="(3070,100)" to="(3070,260)"/> <wire from="(310,100)" to="(310,250)"/> <wire from="(310,250)" to="(580,250)"/> <wire from="(310,830)" to="(380,830)"/> <wire from="(3100,1120)" to="(3100,1200)"/> <wire from="(3100,1120)" to="(3200,1120)"/> <wire from="(3110,470)" to="(3120,470)"/> <wire from="(3110,490)" to="(3120,490)"/> <wire from="(3110,550)" to="(3120,550)"/> <wire from="(3110,570)" to="(3120,570)"/> <wire from="(3110,590)" to="(3120,590)"/> <wire from="(3110,610)" to="(3120,610)"/> <wire from="(3110,630)" to="(3120,630)"/> <wire from="(3110,680)" to="(3120,680)"/> <wire from="(3130,100)" to="(3130,270)"/> <wire from="(3140,740)" to="(3140,760)"/> <wire from="(3150,740)" to="(3150,840)"/> <wire from="(3160,100)" to="(3160,280)"/> <wire from="(3160,1140)" to="(3160,1160)"/> <wire from="(3160,1140)" to="(3210,1140)"/> <wire from="(3160,280)" to="(3560,280)"/> <wire from="(3160,380)" to="(3160,440)"/> <wire from="(3170,200)" to="(3170,440)"/> <wire from="(3170,740)" to="(3170,1080)"/> <wire from="(3180,180)" to="(3180,440)"/> <wire from="(3180,740)" to="(3180,1100)"/> <wire from="(3190,100)" to="(3190,270)"/> <wire from="(3190,270)" to="(3570,270)"/> <wire from="(3190,400)" to="(3190,440)"/> <wire from="(3200,310)" to="(3200,440)"/> <wire from="(3200,740)" to="(3200,1120)"/> <wire from="(3210,180)" to="(3210,440)"/> <wire from="(3210,180)" to="(3250,180)"/> <wire from="(3210,740)" to="(3210,1140)"/> <wire from="(3220,100)" to="(3220,120)"/> <wire from="(3220,1140)" to="(3220,1200)"/> <wire from="(3220,1140)" to="(3230,1140)"/> <wire from="(3220,380)" to="(3220,440)"/> <wire from="(3220,380)" to="(3280,380)"/> <wire from="(3230,400)" to="(3230,440)"/> <wire from="(3230,400)" to="(3310,400)"/> <wire from="(3230,740)" to="(3230,1140)"/> <wire from="(3240,1120)" to="(3280,1120)"/> <wire from="(3240,740)" to="(3240,1120)"/> <wire from="(3250,100)" to="(3250,180)"/> <wire from="(3260,110)" to="(3260,410)"/> <wire from="(3260,110)" to="(4400,110)"/> <wire from="(3260,1100)" to="(3340,1100)"/> <wire from="(3260,410)" to="(3260,440)"/> <wire from="(3260,740)" to="(3260,1100)"/> <wire from="(3270,1080)" to="(3400,1080)"/> <wire from="(3270,740)" to="(3270,1080)"/> <wire from="(3280,100)" to="(3280,380)"/> <wire from="(3280,1120)" to="(3280,1160)"/> <wire from="(3290,470)" to="(3540,470)"/> <wire from="(3290,490)" to="(3540,490)"/> <wire from="(330,1040)" to="(330,1210)"/> <wire from="(330,1040)" to="(510,1040)"/> <wire from="(330,520)" to="(330,900)"/> <wire from="(330,520)" to="(410,520)"/> <wire from="(330,900)" to="(410,900)"/> <wire from="(3310,100)" to="(3310,260)"/> <wire from="(3310,260)" to="(3310,400)"/> <wire from="(3310,260)" to="(3580,260)"/> <wire from="(3340,100)" to="(3340,250)"/> <wire from="(3340,1100)" to="(3340,1200)"/> <wire from="(3340,250)" to="(3590,250)"/> <wire from="(3370,100)" to="(3370,240)"/> <wire from="(3370,240)" to="(3600,240)"/> <wire from="(3390,390)" to="(3390,680)"/> <wire from="(3390,680)" to="(4370,680)"/> <wire from="(340,100)" to="(340,240)"/> <wire from="(340,240)" to="(590,240)"/> <wire from="(3400,100)" to="(3400,230)"/> <wire from="(3400,1080)" to="(3400,1160)"/> <wire from="(3400,230)" to="(3750,230)"/> <wire from="(3410,570)" to="(3410,1000)"/> <wire from="(3410,570)" to="(3540,570)"/> <wire from="(3430,530)" to="(3430,710)"/> <wire from="(3430,530)" to="(3540,530)"/> <wire from="(3430,710)" to="(3430,880)"/> <wire from="(3430,710)" to="(4700,710)"/> <wire from="(3450,510)" to="(3450,1010)"/> <wire from="(3450,510)" to="(3540,510)"/> <wire from="(3470,100)" to="(3470,180)"/> <wire from="(3470,180)" to="(3610,180)"/> <wire from="(3470,450)" to="(3470,970)"/> <wire from="(3470,450)" to="(3540,450)"/> <wire from="(3490,550)" to="(3490,700)"/> <wire from="(3490,550)" to="(3540,550)"/> <wire from="(3490,700)" to="(4710,700)"/> <wire from="(350,540)" to="(350,580)"/> <wire from="(350,540)" to="(420,540)"/> <wire from="(350,580)" to="(350,890)"/> <wire from="(350,580)" to="(770,580)"/> <wire from="(350,890)" to="(410,890)"/> <wire from="(3500,100)" to="(3500,170)"/> <wire from="(3500,170)" to="(3620,170)"/> <wire from="(3510,590)" to="(3510,750)"/> <wire from="(3510,590)" to="(3540,590)"/> <wire from="(3510,750)" to="(4760,750)"/> <wire from="(3530,100)" to="(3530,160)"/> <wire from="(3530,1090)" to="(3530,1160)"/> <wire from="(3530,1090)" to="(3590,1090)"/> <wire from="(3530,160)" to="(3630,160)"/> <wire from="(3530,350)" to="(3540,350)"/> <wire from="(3530,370)" to="(3540,370)"/> <wire from="(3530,390)" to="(3540,390)"/> <wire from="(3530,410)" to="(3540,410)"/> <wire from="(3530,430)" to="(3540,430)"/> <wire from="(3530,610)" to="(3530,930)"/> <wire from="(3530,610)" to="(3540,610)"/> <wire from="(3560,100)" to="(3560,150)"/> <wire from="(3560,150)" to="(3640,150)"/> <wire from="(3560,280)" to="(3560,320)"/> <wire from="(3570,270)" to="(3570,320)"/> <wire from="(3580,260)" to="(3580,320)"/> <wire from="(3590,100)" to="(3590,140)"/> <wire from="(3590,140)" to="(3650,140)"/> <wire from="(3590,250)" to="(3590,320)"/> <wire from="(3590,650)" to="(3590,1090)"/> <wire from="(3600,240)" to="(3600,300)"/> <wire from="(3600,300)" to="(3600,320)"/> <wire from="(3600,300)" to="(4080,300)"/> <wire from="(3610,180)" to="(3610,320)"/> <wire from="(3610,650)" to="(3610,810)"/> <wire from="(3610,810)" to="(4760,810)"/> <wire from="(3620,100)" to="(3620,130)"/> <wire from="(3620,130)" to="(3660,130)"/> <wire from="(3620,170)" to="(3620,290)"/> <wire from="(3620,290)" to="(3620,320)"/> <wire from="(3630,160)" to="(3630,320)"/> <wire from="(3640,150)" to="(3640,320)"/> <wire from="(3650,100)" to="(3650,120)"/> <wire from="(3650,120)" to="(3670,120)"/> <wire from="(3650,140)" to="(3650,320)"/> <wire from="(3660,130)" to="(3660,320)"/> <wire from="(3670,120)" to="(3670,320)"/> <wire from="(3680,100)" to="(3680,280)"/> <wire from="(3680,280)" to="(3680,320)"/> <wire from="(3680,280)" to="(4110,280)"/> <wire from="(3690,150)" to="(3690,320)"/> <wire from="(3690,150)" to="(3830,150)"/> <wire from="(370,100)" to="(370,230)"/> <wire from="(370,230)" to="(600,230)"/> <wire from="(370,560)" to="(370,880)"/> <wire from="(370,560)" to="(430,560)"/> <wire from="(370,880)" to="(410,880)"/> <wire from="(3710,100)" to="(3710,130)"/> <wire from="(3710,1120)" to="(3710,1150)"/> <wire from="(3710,1150)" to="(3730,1150)"/> <wire from="(3710,130)" to="(4120,130)"/> <wire from="(3710,160)" to="(3710,320)"/> <wire from="(3710,160)" to="(4190,160)"/> <wire from="(3720,170)" to="(3720,320)"/> <wire from="(3720,170)" to="(4220,170)"/> <wire from="(3730,1130)" to="(3770,1130)"/> <wire from="(3730,1150)" to="(3730,1160)"/> <wire from="(3730,180)" to="(3730,320)"/> <wire from="(3730,180)" to="(4250,180)"/> <wire from="(3730,650)" to="(3730,1130)"/> <wire from="(3740,100)" to="(3740,140)"/> <wire from="(3740,140)" to="(4130,140)"/> <wire from="(3740,190)" to="(3740,320)"/> <wire from="(3740,190)" to="(4280,190)"/> <wire from="(3750,230)" to="(3750,290)"/> <wire from="(3750,290)" to="(4090,290)"/> <wire from="(3770,1130)" to="(3770,1200)"/> <wire from="(3790,1070)" to="(3890,1070)"/> <wire from="(3790,650)" to="(3790,1070)"/> <wire from="(380,1060)" to="(380,1160)"/> <wire from="(380,1060)" to="(520,1060)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(380,380)" to="(430,380)"/> <wire from="(380,400)" to="(410,400)"/> <wire from="(380,420)" to="(420,420)"/> <wire from="(380,440)" to="(490,440)"/> <wire from="(380,460)" to="(400,460)"/> <wire from="(380,830)" to="(380,860)"/> <wire from="(380,860)" to="(410,860)"/> <wire from="(3800,100)" to="(3800,270)"/> <wire from="(3800,270)" to="(4140,270)"/> <wire from="(3810,650)" to="(3810,930)"/> <wire from="(3810,930)" to="(4440,930)"/> <wire from="(3830,100)" to="(3830,150)"/> <wire from="(3840,350)" to="(3850,350)"/> <wire from="(3840,370)" to="(3850,370)"/> <wire from="(3840,390)" to="(3850,390)"/> <wire from="(3840,410)" to="(3850,410)"/> <wire from="(3840,450)" to="(3990,450)"/> <wire from="(3840,510)" to="(3910,510)"/> <wire from="(3840,550)" to="(3860,550)"/> <wire from="(3840,570)" to="(3970,570)"/> <wire from="(3840,590)" to="(3920,590)"/> <wire from="(3840,610)" to="(3900,610)"/> <wire from="(3840,630)" to="(3880,630)"/> <wire from="(3860,100)" to="(3860,150)"/> <wire from="(3860,150)" to="(3860,220)"/> <wire from="(3860,150)" to="(4150,150)"/> <wire from="(3860,550)" to="(3860,800)"/> <wire from="(3880,630)" to="(3880,850)"/> <wire from="(3880,850)" to="(4760,850)"/> <wire from="(3890,100)" to="(3890,260)"/> <wire from="(3890,1070)" to="(3890,1160)"/> <wire from="(3890,260)" to="(4160,260)"/> <wire from="(3900,610)" to="(3900,730)"/> <wire from="(3900,730)" to="(4460,730)"/> <wire from="(3910,490)" to="(3910,510)"/> <wire from="(3910,490)" to="(3920,490)"/> <wire from="(3910,510)" to="(4060,510)"/> <wire from="(3920,100)" to="(3920,250)"/> <wire from="(3920,250)" to="(4170,250)"/> <wire from="(3920,590)" to="(3920,900)"/> <wire from="(3950,100)" to="(3950,240)"/> <wire from="(3950,240)" to="(4180,240)"/> <wire from="(3970,570)" to="(3970,690)"/> <wire from="(3970,690)" to="(4760,690)"/> <wire from="(3980,100)" to="(3980,230)"/> <wire from="(3980,1070)" to="(4000,1070)"/> <wire from="(3980,230)" to="(4190,230)"/> <wire from="(3990,450)" to="(3990,720)"/> <wire from="(3990,720)" to="(4760,720)"/> <wire from="(400,100)" to="(400,220)"/> <wire from="(400,220)" to="(610,220)"/> <wire from="(400,460)" to="(400,750)"/> <wire from="(4000,1070)" to="(4000,1130)"/> <wire from="(4000,1070)" to="(4080,1070)"/> <wire from="(4010,100)" to="(4010,220)"/> <wire from="(4010,220)" to="(4200,220)"/> <wire from="(4010,530)" to="(4010,990)"/> <wire from="(4010,530)" to="(4060,530)"/> <wire from="(4030,590)" to="(4030,860)"/> <wire from="(4030,590)" to="(4060,590)"/> <wire from="(4040,100)" to="(4040,210)"/> <wire from="(4040,1090)" to="(4040,1160)"/> <wire from="(4040,1090)" to="(4100,1090)"/> <wire from="(4040,210)" to="(4210,210)"/> <wire from="(4040,390)" to="(4060,390)"/> <wire from="(4050,360)" to="(4060,360)"/> <wire from="(4060,1010)" to="(4120,1010)"/> <wire from="(4060,1030)" to="(4140,1030)"/> <wire from="(4060,1050)" to="(4100,1050)"/> <wire from="(4060,960)" to="(4160,960)"/> <wire from="(4070,100)" to="(4070,200)"/> <wire from="(4070,200)" to="(4220,200)"/> <wire from="(4080,1110)" to="(4080,1130)"/> <wire from="(4080,1110)" to="(4120,1110)"/> <wire from="(4080,300)" to="(4080,320)"/> <wire from="(4080,630)" to="(4080,1070)"/> <wire from="(4090,290)" to="(4090,320)"/> <wire from="(410,400)" to="(410,520)"/> <wire from="(4100,1050)" to="(4100,1090)"/> <wire from="(4100,1220)" to="(4100,1310)"/> <wire from="(4100,1220)" to="(4490,1220)"/> <wire from="(4100,630)" to="(4100,1050)"/> <wire from="(4110,280)" to="(4110,320)"/> <wire from="(4120,1010)" to="(4120,1110)"/> <wire from="(4120,1130)" to="(4120,1160)"/> <wire from="(4120,1130)" to="(4140,1130)"/> <wire from="(4120,130)" to="(4120,320)"/> <wire from="(4120,630)" to="(4120,1010)"/> <wire from="(4130,100)" to="(4130,130)"/> <wire from="(4130,1240)" to="(4130,1260)"/> <wire from="(4130,1240)" to="(4260,1240)"/> <wire from="(4130,130)" to="(4230,130)"/> <wire from="(4130,140)" to="(4130,320)"/> <wire from="(4140,1030)" to="(4140,1130)"/> <wire from="(4140,270)" to="(4140,320)"/> <wire from="(4140,630)" to="(4140,1030)"/> <wire from="(4150,150)" to="(4150,320)"/> <wire from="(4160,100)" to="(4160,120)"/> <wire from="(4160,120)" to="(4380,120)"/> <wire from="(4160,260)" to="(4160,320)"/> <wire from="(4160,630)" to="(4160,960)"/> <wire from="(4160,960)" to="(4160,1130)"/> <wire from="(4170,250)" to="(4170,320)"/> <wire from="(4180,1260)" to="(4180,1300)"/> <wire from="(4180,1260)" to="(4270,1260)"/> <wire from="(4180,240)" to="(4180,320)"/> <wire from="(4190,100)" to="(4190,160)"/> <wire from="(4190,230)" to="(4190,320)"/> <wire from="(420,420)" to="(420,540)"/> <wire from="(4200,220)" to="(4200,320)"/> <wire from="(4200,630)" to="(4200,870)"/> <wire from="(4200,870)" to="(4200,1160)"/> <wire from="(4200,870)" to="(4340,870)"/> <wire from="(4210,210)" to="(4210,320)"/> <wire from="(4220,100)" to="(4220,170)"/> <wire from="(4220,1270)" to="(4220,1330)"/> <wire from="(4220,1270)" to="(4280,1270)"/> <wire from="(4220,200)" to="(4220,320)"/> <wire from="(4230,130)" to="(4230,320)"/> <wire from="(4240,200)" to="(4240,320)"/> <wire from="(4240,200)" to="(4340,200)"/> <wire from="(4240,630)" to="(4240,890)"/> <wire from="(4240,890)" to="(4240,1130)"/> <wire from="(4240,890)" to="(4340,890)"/> <wire from="(4250,100)" to="(4250,180)"/> <wire from="(4260,1010)" to="(4260,1090)"/> <wire from="(4260,1010)" to="(4340,1010)"/> <wire from="(4260,1090)" to="(4280,1090)"/> <wire from="(4260,1280)" to="(4260,1300)"/> <wire from="(4260,1280)" to="(4290,1280)"/> <wire from="(4260,630)" to="(4260,1010)"/> <wire from="(4280,100)" to="(4280,190)"/> <wire from="(4280,1070)" to="(4320,1070)"/> <wire from="(4280,1090)" to="(4280,1160)"/> <wire from="(4280,1260)" to="(4280,1270)"/> <wire from="(4280,630)" to="(4280,960)"/> <wire from="(4280,960)" to="(4280,1070)"/> <wire from="(4280,960)" to="(4340,960)"/> <wire from="(4290,1260)" to="(4290,1280)"/> <wire from="(430,100)" to="(430,210)"/> <wire from="(430,1080)" to="(430,1210)"/> <wire from="(430,1080)" to="(540,1080)"/> <wire from="(430,210)" to="(620,210)"/> <wire from="(430,380)" to="(430,560)"/> <wire from="(4300,1050)" to="(4360,1050)"/> <wire from="(4300,1260)" to="(4300,1330)"/> <wire from="(4300,630)" to="(4300,910)"/> <wire from="(4300,910)" to="(4300,1050)"/> <wire from="(4300,910)" to="(4340,910)"/> <wire from="(4310,100)" to="(4310,190)"/> <wire from="(4310,1260)" to="(4310,1290)"/> <wire from="(4310,1290)" to="(4340,1290)"/> <wire from="(4310,190)" to="(4360,190)"/> <wire from="(4320,1030)" to="(4400,1030)"/> <wire from="(4320,1070)" to="(4320,1130)"/> <wire from="(4320,1260)" to="(4320,1280)"/> <wire from="(4320,1280)" to="(4380,1280)"/> <wire from="(4320,630)" to="(4320,980)"/> <wire from="(4320,980)" to="(4320,1030)"/> <wire from="(4320,980)" to="(4340,980)"/> <wire from="(4330,1260)" to="(4330,1270)"/> <wire from="(4330,1270)" to="(4420,1270)"/> <wire from="(4340,100)" to="(4340,200)"/> <wire from="(4340,1260)" to="(4460,1260)"/> <wire from="(4340,1290)" to="(4340,1300)"/> <wire from="(4360,1050)" to="(4360,1160)"/> <wire from="(4360,190)" to="(4360,380)"/> <wire from="(4360,380)" to="(4540,380)"/> <wire from="(4370,100)" to="(4370,150)"/> <wire from="(4370,150)" to="(4480,150)"/> <wire from="(4370,180)" to="(4370,680)"/> <wire from="(4370,180)" to="(4420,180)"/> <wire from="(4380,120)" to="(4380,360)"/> <wire from="(4380,1280)" to="(4380,1330)"/> <wire from="(4380,360)" to="(4540,360)"/> <wire from="(4400,100)" to="(4400,110)"/> <wire from="(4400,1030)" to="(4400,1130)"/> <wire from="(4420,1270)" to="(4420,1300)"/> <wire from="(4440,1170)" to="(4760,1170)"/> <wire from="(4440,930)" to="(4440,1170)"/> <wire from="(4450,170)" to="(4480,170)"/> <wire from="(4460,1260)" to="(4460,1330)"/> <wire from="(4460,190)" to="(4470,190)"/> <wire from="(4460,340)" to="(4470,340)"/> <wire from="(4460,730)" to="(4460,940)"/> <wire from="(4460,940)" to="(4560,940)"/> <wire from="(4470,190)" to="(4470,200)"/> <wire from="(4470,200)" to="(4760,200)"/> <wire from="(4470,230)" to="(4470,340)"/> <wire from="(4470,230)" to="(4760,230)"/> <wire from="(4470,340)" to="(4540,340)"/> <wire from="(4480,150)" to="(4480,170)"/> <wire from="(4480,480)" to="(4480,600)"/> <wire from="(4480,480)" to="(4540,480)"/> <wire from="(4480,600)" to="(4720,600)"/> <wire from="(4490,1220)" to="(4490,1240)"/> <wire from="(4490,1240)" to="(4640,1240)"/> <wire from="(4520,300)" to="(4540,300)"/> <wire from="(4520,320)" to="(4540,320)"/> <wire from="(4520,400)" to="(4540,400)"/> <wire from="(4520,420)" to="(4540,420)"/> <wire from="(4520,440)" to="(4540,440)"/> <wire from="(4520,460)" to="(4540,460)"/> <wire from="(4520,500)" to="(4540,500)"/> <wire from="(4530,980)" to="(4560,980)"/> <wire from="(4550,1210)" to="(4550,1260)"/> <wire from="(4550,1210)" to="(4720,1210)"/> <wire from="(4550,1260)" to="(4550,1300)"/> <wire from="(4550,1260)" to="(4650,1260)"/> <wire from="(4550,880)" to="(4560,880)"/> <wire from="(4550,900)" to="(4560,900)"/> <wire from="(4550,920)" to="(4560,920)"/> <wire from="(4590,1270)" to="(4590,1300)"/> <wire from="(4590,1270)" to="(4660,1270)"/> <wire from="(4630,1280)" to="(4630,1300)"/> <wire from="(4630,1280)" to="(4670,1280)"/> <wire from="(4660,1260)" to="(4660,1270)"/> <wire from="(4670,1010)" to="(4760,1010)"/> <wire from="(4670,1040)" to="(4760,1040)"/> <wire from="(4670,1070)" to="(4760,1070)"/> <wire from="(4670,1100)" to="(4760,1100)"/> <wire from="(4670,1260)" to="(4670,1280)"/> <wire from="(4670,1290)" to="(4670,1300)"/> <wire from="(4670,1290)" to="(4680,1290)"/> <wire from="(4670,320)" to="(4710,320)"/> <wire from="(4670,460)" to="(4700,460)"/> <wire from="(4680,1260)" to="(4680,1290)"/> <wire from="(4690,1260)" to="(4690,1290)"/> <wire from="(4690,1290)" to="(4710,1290)"/> <wire from="(470,420)" to="(470,500)"/> <wire from="(470,420)" to="(520,420)"/> <wire from="(4700,1260)" to="(4700,1280)"/> <wire from="(4700,1280)" to="(4750,1280)"/> <wire from="(4700,460)" to="(4700,710)"/> <wire from="(4710,1260)" to="(4710,1270)"/> <wire from="(4710,1270)" to="(4790,1270)"/> <wire from="(4710,1290)" to="(4710,1300)"/> <wire from="(4710,320)" to="(4710,700)"/> <wire from="(4720,1260)" to="(4830,1260)"/> <wire from="(4720,600)" to="(4720,1210)"/> <wire from="(4740,130)" to="(4760,130)"/> <wire from="(4740,90)" to="(4760,90)"/> <wire from="(4750,1280)" to="(4750,1300)"/> <wire from="(4790,1270)" to="(4790,1300)"/> <wire from="(4830,1260)" to="(4830,1300)"/> <wire from="(490,100)" to="(490,200)"/> <wire from="(490,200)" to="(630,200)"/> <wire from="(490,440)" to="(490,550)"/> <wire from="(490,550)" to="(790,550)"/> <wire from="(490,860)" to="(500,860)"/> <wire from="(490,880)" to="(510,880)"/> <wire from="(490,900)" to="(520,900)"/> <wire from="(500,1020)" to="(730,1020)"/> <wire from="(500,400)" to="(500,520)"/> <wire from="(500,400)" to="(520,400)"/> <wire from="(500,520)" to="(810,520)"/> <wire from="(500,860)" to="(500,1020)"/> <wire from="(510,1100)" to="(510,1160)"/> <wire from="(510,1100)" to="(560,1100)"/> <wire from="(510,350)" to="(520,350)"/> <wire from="(510,370)" to="(520,370)"/> <wire from="(510,880)" to="(510,1040)"/> <wire from="(520,100)" to="(520,190)"/> <wire from="(520,190)" to="(640,190)"/> <wire from="(520,900)" to="(520,1060)"/> <wire from="(530,300)" to="(530,320)"/> <wire from="(540,290)" to="(540,320)"/> <wire from="(540,490)" to="(540,1080)"/> <wire from="(550,100)" to="(550,180)"/> <wire from="(550,180)" to="(650,180)"/> <wire from="(550,280)" to="(550,320)"/> <wire from="(560,1120)" to="(560,1210)"/> <wire from="(560,1120)" to="(610,1120)"/> <wire from="(560,270)" to="(560,320)"/> <wire from="(560,490)" to="(560,1100)"/> <wire from="(570,260)" to="(570,320)"/> <wire from="(580,100)" to="(580,170)"/> <wire from="(580,170)" to="(660,170)"/> <wire from="(580,250)" to="(580,320)"/> <wire from="(590,240)" to="(590,320)"/> <wire from="(600,230)" to="(600,320)"/> <wire from="(610,100)" to="(610,150)"/> <wire from="(610,1140)" to="(610,1160)"/> <wire from="(610,1140)" to="(630,1140)"/> <wire from="(610,150)" to="(670,150)"/> <wire from="(610,220)" to="(610,320)"/> <wire from="(610,490)" to="(610,1120)"/> <wire from="(620,210)" to="(620,320)"/> <wire from="(630,200)" to="(630,320)"/> <wire from="(630,490)" to="(630,1140)"/> <wire from="(640,100)" to="(640,140)"/> <wire from="(640,140)" to="(680,140)"/> <wire from="(640,190)" to="(640,320)"/> <wire from="(650,1140)" to="(670,1140)"/> <wire from="(650,180)" to="(650,320)"/> <wire from="(650,490)" to="(650,1140)"/> <wire from="(660,170)" to="(660,320)"/> <wire from="(670,100)" to="(670,130)"/> <wire from="(670,1120)" to="(720,1120)"/> <wire from="(670,1140)" to="(670,1210)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(670,150)" to="(670,320)"/> <wire from="(670,490)" to="(670,1120)"/> <wire from="(680,140)" to="(680,320)"/> <wire from="(690,1100)" to="(770,1100)"/> <wire from="(690,130)" to="(690,320)"/> <wire from="(690,490)" to="(690,1100)"/> <wire from="(700,100)" to="(700,320)"/> <wire from="(710,1080)" to="(820,1080)"/> <wire from="(710,180)" to="(710,320)"/> <wire from="(710,180)" to="(730,180)"/> <wire from="(710,490)" to="(710,1080)"/> <wire from="(720,1120)" to="(720,1160)"/> <wire from="(720,190)" to="(720,320)"/> <wire from="(720,190)" to="(760,190)"/> <wire from="(730,100)" to="(730,180)"/> <wire from="(730,200)" to="(730,320)"/> <wire from="(730,200)" to="(820,200)"/> <wire from="(730,960)" to="(2210,960)"/> <wire from="(730,960)" to="(730,1020)"/> <wire from="(740,210)" to="(740,320)"/> <wire from="(740,210)" to="(850,210)"/> <wire from="(750,220)" to="(750,320)"/> <wire from="(750,220)" to="(880,220)"/> <wire from="(750,600)" to="(750,970)"/> <wire from="(750,970)" to="(3470,970)"/> <wire from="(760,100)" to="(760,190)"/> <wire from="(760,230)" to="(760,320)"/> <wire from="(760,230)" to="(910,230)"/> <wire from="(770,1000)" to="(3410,1000)"/> <wire from="(770,1100)" to="(770,1210)"/> <wire from="(770,240)" to="(770,320)"/> <wire from="(770,240)" to="(940,240)"/> <wire from="(770,580)" to="(770,1000)"/> <wire from="(780,250)" to="(780,320)"/> <wire from="(780,250)" to="(970,250)"/> <wire from="(790,1010)" to="(3450,1010)"/> <wire from="(790,260)" to="(1000,260)"/> <wire from="(790,260)" to="(790,320)"/> <wire from="(790,550)" to="(790,1010)"/> <wire from="(790,550)" to="(870,550)"/> <wire from="(800,270)" to="(1010,270)"/> <wire from="(800,270)" to="(800,320)"/> <wire from="(810,280)" to="(1050,280)"/> <wire from="(810,280)" to="(810,320)"/> <wire from="(810,520)" to="(810,900)"/> <wire from="(810,900)" to="(2920,900)"/> <wire from="(820,100)" to="(820,200)"/> <wire from="(820,1080)" to="(820,1160)"/> <wire from="(820,390)" to="(850,390)"/> <wire from="(820,420)" to="(850,420)"/> <wire from="(820,450)" to="(840,450)"/> <wire from="(840,450)" to="(840,950)"/> <wire from="(840,950)" to="(2240,950)"/> <wire from="(850,100)" to="(850,210)"/> <wire from="(850,340)" to="(1380,340)"/> <wire from="(850,340)" to="(850,390)"/> <wire from="(850,420)" to="(850,940)"/> <wire from="(850,940)" to="(2180,940)"/> <wire from="(860,1310)" to="(4100,1310)"/> <wire from="(860,800)" to="(860,1310)"/> <wire from="(860,800)" to="(940,800)"/> <wire from="(870,470)" to="(870,550)"/> <wire from="(870,470)" to="(980,470)"/> <wire from="(880,100)" to="(880,160)"/> <wire from="(880,1060)" to="(1000,1060)"/> <wire from="(880,1060)" to="(880,1210)"/> <wire from="(880,160)" to="(880,220)"/> <wire from="(880,640)" to="(880,930)"/> <wire from="(880,930)" to="(1310,930)"/> <wire from="(900,380)" to="(1230,380)"/> <wire from="(900,380)" to="(900,620)"/> <wire from="(900,650)" to="(900,660)"/> <wire from="(900,650)" to="(980,650)"/> <wire from="(900,710)" to="(900,870)"/> <wire from="(900,870)" to="(1020,870)"/> <wire from="(910,100)" to="(910,230)"/> <wire from="(930,1080)" to="(1020,1080)"/> <wire from="(930,1080)" to="(930,1160)"/> <wire from="(940,100)" to="(940,240)"/> <wire from="(950,510)" to="(980,510)"/> <wire from="(950,630)" to="(980,630)"/> <wire from="(960,550)" to="(980,550)"/> <wire from="(960,570)" to="(980,570)"/> <wire from="(960,590)" to="(980,590)"/> <wire from="(960,610)" to="(980,610)"/> <wire from="(960,720)" to="(980,720)"/> <wire from="(960,730)" to="(980,730)"/> <wire from="(960,740)" to="(980,740)"/> <wire from="(960,750)" to="(980,750)"/> <wire from="(960,760)" to="(980,760)"/> <wire from="(960,770)" to="(980,770)"/> <wire from="(960,780)" to="(980,780)"/> <wire from="(960,790)" to="(980,790)"/> <wire from="(970,100)" to="(970,250)"/> <wire from="(970,430)" to="(980,430)"/> <wire from="(970,450)" to="(980,450)"/> <wire from="(970,490)" to="(980,490)"/> <wire from="(980,1100)" to="(1040,1100)"/> <wire from="(980,1100)" to="(980,1190)"/> </circuit> <circuit name="NMI_FF"> <a name="circuit" val="NMI_FF"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(500,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NMIP"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,240)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,70)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,170)" name="NOR Gate"> <a name="facing" val="north"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,210)" name="NOR Gate"> <a name="facing" val="south"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(160,250)" to="(220,250)"/> <wire from="(160,60)" to="(170,60)"/> <wire from="(170,230)" to="(240,230)"/> <wire from="(170,60)" to="(170,230)"/> <wire from="(170,60)" to="(200,60)"/> <wire from="(220,250)" to="(240,250)"/> <wire from="(220,60)" to="(240,60)"/> <wire from="(220,80)" to="(220,250)"/> <wire from="(220,80)" to="(240,80)"/> <wire from="(270,240)" to="(300,240)"/> <wire from="(270,70)" to="(430,70)"/> <wire from="(300,210)" to="(300,240)"/> <wire from="(310,130)" to="(310,170)"/> <wire from="(310,130)" to="(410,130)"/> <wire from="(320,210)" to="(320,240)"/> <wire from="(320,240)" to="(420,240)"/> <wire from="(410,130)" to="(410,170)"/> <wire from="(420,210)" to="(420,240)"/> <wire from="(420,240)" to="(460,240)"/> <wire from="(430,70)" to="(430,170)"/> <wire from="(480,240)" to="(500,240)"/> </circuit> <circuit name="INT_RESET_CONTROL"> <a name="appearance" val="custom"/> <a name="circuit" val="INT_RESET_CONTROL"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#1870ff" height="130" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="69">BRK6E</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="89">BRK7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="107" y="109">/DONMI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="107" y="129">DORES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="148">B_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="168">BR2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="158">T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="148">/I_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="138">/IRQP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="128">RESP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="118">/NMIP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="108">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="99">BRK5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="69">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="59">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="103" y="168">BRK5RDY</text> <circ-anchor facing="east" x="130" y="70"/> <circ-port dir="in" pin="90,1050" x="50" y="170"/> <circ-port dir="in" pin="90,1090" x="50" y="160"/> <circ-port dir="in" pin="90,110" x="50" y="100"/> <circ-port dir="in" pin="90,1120" x="50" y="140"/> <circ-port dir="in" pin="90,1160" x="50" y="150"/> <circ-port dir="in" pin="90,160" x="50" y="110"/> <circ-port dir="in" pin="90,20" x="50" y="60"/> <circ-port dir="in" pin="90,340" x="50" y="130"/> <circ-port dir="in" pin="90,60" x="50" y="70"/> <circ-port dir="in" pin="90,710" x="50" y="120"/> <circ-port dir="out" pin="750,1290" x="130" y="150"/> <circ-port dir="out" pin="750,150" x="130" y="70"/> <circ-port dir="out" pin="750,230" x="130" y="90"/> <circ-port dir="out" pin="750,310" x="130" y="170"/> <circ-port dir="out" pin="750,360" x="130" y="130"/> <circ-port dir="out" pin="750,940" x="130" y="110"/> </appear> <comp lib="0" loc="(120,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(120,60)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(280,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(280,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK7"/> </comp> <comp lib="0" loc="(280,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(280,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(280,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(280,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(390,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(390,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(450,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(470,1250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(480,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(550,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(580,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(580,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(690,280)" name="Tunnel"> <a name="label" val="BRK7"/> </comp> <comp lib="0" loc="(730,190)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(750,1290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="B_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BRK6E"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BRK7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BRK5_RDY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DORES"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,940)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DONMI"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(90,1090)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK5"/> </comp> <comp lib="0" loc="(90,1120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQP"/> </comp> <comp lib="0" loc="(90,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_I_OUT"/> </comp> <comp lib="0" loc="(90,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(90,20)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,710)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NMIP"/> </comp> <comp lib="1" loc="(180,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,150)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,1160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,1280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,1130)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,190)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,1270)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,360)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,610)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,1140)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,950)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,160)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,1080)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,400)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,560)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,790)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,940)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,1110)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,1300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,1290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(195,700)" name="Text"> <a name="text" val="/NMIP"/> </comp> <comp lib="6" loc="(340,1115)" name="Text"> <a name="text" val="/IRQP"/> </comp> <comp lib="6" loc="(400,450)" name="Text"> <a name="text" val="RES_FF"/> </comp> <comp lib="6" loc="(410,875)" name="Text"> <a name="text" val="NMI_FF1"/> </comp> <comp lib="6" loc="(425,1025)" name="Text"> <a name="text" val="INTERRUPT CHECK"/> </comp> <comp lib="6" loc="(425,1325)" name="Text"> <a name="text" val="B_FF"/> </comp> <comp lib="6" loc="(435,1210)" name="Text"> <a name="text" val="B FLAG"/> </comp> <comp lib="6" loc="(435,295)" name="Text"> <a name="text" val="RESET FLIP/FLOP"/> </comp> <comp lib="6" loc="(440,1085)" name="Text"> <a name="text" val="T0"/> </comp> <comp lib="6" loc="(440,510)" name="Text"> <a name="text" val="NMI EDGE DETECT"/> </comp> <comp lib="6" loc="(440,75)" name="Text"> <a name="text" val="INTERRUPT CYCLE 6-7"/> </comp> <comp lib="6" loc="(445,1045)" name="Text"> <a name="text" val="BR2"/> </comp> <comp lib="6" loc="(475,205)" name="Text"> <a name="text" val="BRK_FF"/> </comp> <comp lib="6" loc="(520,755)" name="Text"> <a name="text" val="NMI_FF2"/> </comp> <comp lib="6" loc="(520,840)" name="Text"> <a name="text" val="/DONMI"/> </comp> <comp lib="6" loc="(570,1170)" name="Text"> <a name="text" val="/DONMI"/> </comp> <comp loc="(330,1260)" name="D_Latch"> <a name="label" val="b_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,140)" name="D_Latch"> <a name="label" val="brk5_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,330)" name="D_Latch"> <a name="label" val="res_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,400)" name="D_Latch"> <a name="label" val="res_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,540)" name="D_Latch"> <a name="label" val="brk7_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,700)" name="D_Latch"> <a name="label" val="nmip_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,810)" name="D_Latch"> <a name="label" val="delay_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,900)" name="D_Latch"> <a name="label" val="ff1_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,970)" name="D_Latch"> <a name="label" val="brk6e_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,700)" name="D_Latch"> <a name="label" val="ff2_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,810)" name="D_Latch"> <a name="label" val="delay_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(530,1260)" name="D_Latch"> <a name="label" val="b_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(530,130)" name="D_Latch"> <a name="label" val="brk6_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(630,130)" name="D_Latch"> <a name="label" val="brk6_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(630,550)" name="D_Latch"> <a name="label" val="donmi_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(120,140)"/> <wire from="(120,140)" to="(190,140)"/> <wire from="(120,160)" to="(120,180)"/> <wire from="(120,160)" to="(160,160)"/> <wire from="(120,180)" to="(120,260)"/> <wire from="(120,180)" to="(360,180)"/> <wire from="(120,260)" to="(660,260)"/> <wire from="(180,160)" to="(190,160)"/> <wire from="(220,150)" to="(240,150)"/> <wire from="(230,580)" to="(230,710)"/> <wire from="(230,580)" to="(440,580)"/> <wire from="(230,710)" to="(290,710)"/> <wire from="(230,820)" to="(230,850)"/> <wire from="(230,820)" to="(290,820)"/> <wire from="(230,850)" to="(230,910)"/> <wire from="(230,850)" to="(540,850)"/> <wire from="(230,910)" to="(290,910)"/> <wire from="(240,150)" to="(240,240)"/> <wire from="(240,150)" to="(290,150)"/> <wire from="(240,240)" to="(570,240)"/> <wire from="(270,1270)" to="(270,1350)"/> <wire from="(270,1270)" to="(290,1270)"/> <wire from="(270,1350)" to="(650,1350)"/> <wire from="(270,410)" to="(270,470)"/> <wire from="(270,410)" to="(290,410)"/> <wire from="(270,470)" to="(540,470)"/> <wire from="(280,1250)" to="(290,1250)"/> <wire from="(280,130)" to="(290,130)"/> <wire from="(280,320)" to="(290,320)"/> <wire from="(280,390)" to="(290,390)"/> <wire from="(280,530)" to="(290,530)"/> <wire from="(280,550)" to="(290,550)"/> <wire from="(280,690)" to="(290,690)"/> <wire from="(280,800)" to="(290,800)"/> <wire from="(280,890)" to="(290,890)"/> <wire from="(280,960)" to="(290,960)"/> <wire from="(280,980)" to="(290,980)"/> <wire from="(320,1160)" to="(330,1160)"/> <wire from="(330,1140)" to="(330,1160)"/> <wire from="(330,1140)" to="(360,1140)"/> <wire from="(330,1250)" to="(350,1250)"/> <wire from="(330,130)" to="(370,130)"/> <wire from="(330,320)" to="(370,320)"/> <wire from="(330,390)" to="(370,390)"/> <wire from="(330,550)" to="(480,550)"/> <wire from="(330,690)" to="(340,690)"/> <wire from="(330,820)" to="(400,820)"/> <wire from="(330,890)" to="(370,890)"/> <wire from="(330,960)" to="(410,960)"/> <wire from="(340,200)" to="(340,220)"/> <wire from="(340,200)" to="(360,200)"/> <wire from="(340,220)" to="(550,220)"/> <wire from="(340,600)" to="(340,690)"/> <wire from="(340,600)" to="(400,600)"/> <wire from="(350,1250)" to="(350,1280)"/> <wire from="(350,1280)" to="(360,1280)"/> <wire from="(370,1220)" to="(370,1260)"/> <wire from="(370,1220)" to="(620,1220)"/> <wire from="(370,1260)" to="(390,1260)"/> <wire from="(370,320)" to="(370,350)"/> <wire from="(370,350)" to="(400,350)"/> <wire from="(370,370)" to="(370,390)"/> <wire from="(370,370)" to="(400,370)"/> <wire from="(370,620)" to="(370,640)"/> <wire from="(370,620)" to="(400,620)"/> <wire from="(370,640)" to="(560,640)"/> <wire from="(370,710)" to="(370,740)"/> <wire from="(370,710)" to="(400,710)"/> <wire from="(370,740)" to="(510,740)"/> <wire from="(370,890)" to="(370,940)"/> <wire from="(370,940)" to="(410,940)"/> <wire from="(380,1280)" to="(390,1280)"/> <wire from="(390,1130)" to="(410,1130)"/> <wire from="(390,130)" to="(410,130)"/> <wire from="(390,690)" to="(400,690)"/> <wire from="(390,800)" to="(400,800)"/> <wire from="(400,1150)" to="(400,1180)"/> <wire from="(400,1150)" to="(410,1150)"/> <wire from="(400,1180)" to="(650,1180)"/> <wire from="(400,190)" to="(410,190)"/> <wire from="(410,130)" to="(410,150)"/> <wire from="(410,150)" to="(430,150)"/> <wire from="(410,170)" to="(410,190)"/> <wire from="(410,170)" to="(430,170)"/> <wire from="(420,1270)" to="(490,1270)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,560)" to="(440,580)"/> <wire from="(440,560)" to="(480,560)"/> <wire from="(440,610)" to="(460,610)"/> <wire from="(440,690)" to="(460,690)"/> <wire from="(440,800)" to="(480,800)"/> <wire from="(450,1140)" to="(540,1140)"/> <wire from="(450,410)" to="(480,410)"/> <wire from="(450,950)" to="(480,950)"/> <wire from="(460,160)" to="(470,160)"/> <wire from="(460,360)" to="(460,390)"/> <wire from="(460,360)" to="(550,360)"/> <wire from="(460,390)" to="(480,390)"/> <wire from="(460,570)" to="(460,610)"/> <wire from="(460,570)" to="(480,570)"/> <wire from="(460,610)" to="(510,610)"/> <wire from="(460,690)" to="(460,780)"/> <wire from="(460,780)" to="(480,780)"/> <wire from="(460,890)" to="(460,930)"/> <wire from="(460,890)" to="(650,890)"/> <wire from="(460,930)" to="(480,930)"/> <wire from="(470,1050)" to="(470,1070)"/> <wire from="(470,1070)" to="(490,1070)"/> <wire from="(470,1250)" to="(490,1250)"/> <wire from="(470,140)" to="(470,160)"/> <wire from="(470,140)" to="(490,140)"/> <wire from="(480,120)" to="(490,120)"/> <wire from="(510,610)" to="(510,740)"/> <wire from="(520,1080)" to="(540,1080)"/> <wire from="(520,400)" to="(540,400)"/> <wire from="(520,560)" to="(590,560)"/> <wire from="(520,790)" to="(560,790)"/> <wire from="(520,940)" to="(540,940)"/> <wire from="(530,1250)" to="(550,1250)"/> <wire from="(530,140)" to="(550,140)"/> <wire from="(540,1080)" to="(540,1100)"/> <wire from="(540,1100)" to="(550,1100)"/> <wire from="(540,1120)" to="(540,1140)"/> <wire from="(540,1120)" to="(550,1120)"/> <wire from="(540,400)" to="(540,470)"/> <wire from="(540,850)" to="(540,940)"/> <wire from="(540,940)" to="(650,940)"/> <wire from="(550,1250)" to="(550,1290)"/> <wire from="(550,1290)" to="(570,1290)"/> <wire from="(550,1310)" to="(570,1310)"/> <wire from="(550,140)" to="(550,220)"/> <wire from="(550,220)" to="(570,220)"/> <wire from="(560,640)" to="(560,790)"/> <wire from="(570,140)" to="(570,220)"/> <wire from="(570,140)" to="(590,140)"/> <wire from="(570,220)" to="(590,220)"/> <wire from="(570,240)" to="(570,310)"/> <wire from="(570,240)" to="(590,240)"/> <wire from="(570,310)" to="(750,310)"/> <wire from="(570,360)" to="(670,360)"/> <wire from="(580,120)" to="(590,120)"/> <wire from="(580,540)" to="(590,540)"/> <wire from="(590,1110)" to="(620,1110)"/> <wire from="(610,1300)" to="(650,1300)"/> <wire from="(620,1110)" to="(620,1220)"/> <wire from="(630,140)" to="(670,140)"/> <wire from="(630,230)" to="(680,230)"/> <wire from="(630,540)" to="(650,540)"/> <wire from="(650,1300)" to="(650,1350)"/> <wire from="(650,1300)" to="(690,1300)"/> <wire from="(650,540)" to="(650,890)"/> <wire from="(650,940)" to="(650,1180)"/> <wire from="(650,940)" to="(750,940)"/> <wire from="(660,160)" to="(660,260)"/> <wire from="(660,160)" to="(670,160)"/> <wire from="(670,1280)" to="(690,1280)"/> <wire from="(670,360)" to="(670,1280)"/> <wire from="(670,360)" to="(750,360)"/> <wire from="(680,230)" to="(680,280)"/> <wire from="(680,230)" to="(750,230)"/> <wire from="(680,280)" to="(690,280)"/> <wire from="(710,150)" to="(720,150)"/> <wire from="(720,150)" to="(720,190)"/> <wire from="(720,150)" to="(750,150)"/> <wire from="(720,190)" to="(730,190)"/> <wire from="(730,1290)" to="(750,1290)"/> <wire from="(90,1050)" to="(470,1050)"/> <wire from="(90,1090)" to="(490,1090)"/> <wire from="(90,110)" to="(120,110)"/> <wire from="(90,1120)" to="(360,1120)"/> <wire from="(90,1160)" to="(300,1160)"/> <wire from="(90,160)" to="(120,160)"/> <wire from="(90,20)" to="(120,20)"/> <wire from="(90,340)" to="(290,340)"/> <wire from="(90,60)" to="(120,60)"/> <wire from="(90,710)" to="(230,710)"/> </circuit> <circuit name="INT_VECTOR_Logic"> <a name="appearance" val="custom"/> <a name="circuit" val="INT_VECTOR_Logic"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#2472ff" height="85" stroke="#000000" stroke-width="2" width="80" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="70">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="79">BRK5RDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="89">BRK7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="99">DORES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="109">/DONMI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="69">0/ADL0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="90">0/ADL1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="109">0/ADL2</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="110,100" x="50" y="70"/> <circ-port dir="in" pin="110,150" x="50" y="80"/> <circ-port dir="in" pin="110,190" x="50" y="90"/> <circ-port dir="in" pin="110,230" x="50" y="100"/> <circ-port dir="in" pin="110,300" x="50" y="110"/> <circ-port dir="out" pin="480,150" x="130" y="70"/> <circ-port dir="out" pin="480,220" x="130" y="90"/> <circ-port dir="out" pin="480,290" x="130" y="110"/> </appear> <comp lib="0" loc="(110,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK5_RDY"/> </comp> <comp lib="0" loc="(110,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK7"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(110,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DONMI"/> </comp> <comp lib="0" loc="(480,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(480,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(480,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADL2"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,290)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(445,20)" name="Text"> <a name="text" val="FFFA:NMI, 1010"/> </comp> <comp lib="6" loc="(455,40)" name="Text"> <a name="text" val="FFFC:RESET, 1100"/> </comp> <comp lib="6" loc="(460,60)" name="Text"> <a name="text" val="FFFE:IRQ/BRK, 1110"/> </comp> <comp loc="(420,140)" name="D_Latch"> <a name="label" val="zadl0_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,210)" name="D_Latch"> <a name="label" val="zadl1_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,280)" name="D_Latch"> <a name="label" val="zadl2_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,100)" to="(360,100)"/> <wire from="(110,150)" to="(250,150)"/> <wire from="(110,190)" to="(200,190)"/> <wire from="(110,230)" to="(140,230)"/> <wire from="(110,300)" to="(230,300)"/> <wire from="(140,230)" to="(140,290)"/> <wire from="(140,230)" to="(160,230)"/> <wire from="(140,290)" to="(230,290)"/> <wire from="(180,230)" to="(230,230)"/> <wire from="(200,190)" to="(200,210)"/> <wire from="(200,210)" to="(200,280)"/> <wire from="(200,210)" to="(230,210)"/> <wire from="(200,280)" to="(230,280)"/> <wire from="(270,150)" to="(380,150)"/> <wire from="(270,220)" to="(300,220)"/> <wire from="(270,290)" to="(380,290)"/> <wire from="(320,220)" to="(380,220)"/> <wire from="(360,100)" to="(360,130)"/> <wire from="(360,130)" to="(360,200)"/> <wire from="(360,130)" to="(380,130)"/> <wire from="(360,200)" to="(360,270)"/> <wire from="(360,200)" to="(380,200)"/> <wire from="(360,270)" to="(380,270)"/> <wire from="(420,150)" to="(480,150)"/> <wire from="(420,220)" to="(480,220)"/> <wire from="(420,290)" to="(440,290)"/> <wire from="(460,290)" to="(480,290)"/> </circuit> <circuit name="REGS_CONTROL"> <a name="appearance" val="custom"/> <a name="circuit" val="REGS_CONTROL"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ff338b" height="170" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="202" y="138">REGS_CONTROL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="80">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="100">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="129">STOR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="149">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="323" y="150">#SBXY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="324" y="178">STXY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="319" y="119">STKOP</text> <circ-anchor facing="east" x="70" y="220"/> <circ-port dir="in" pin="90,100" x="50" y="130"/> <circ-port dir="in" pin="90,1050" x="340" y="50"/> <circ-port dir="in" pin="90,140" x="60" y="50"/> <circ-port dir="in" pin="90,170" x="70" y="50"/> <circ-port dir="in" pin="90,200" x="80" y="50"/> <circ-port dir="in" pin="90,230" x="90" y="50"/> <circ-port dir="in" pin="90,260" x="100" y="50"/> <circ-port dir="in" pin="90,290" x="110" y="50"/> <circ-port dir="in" pin="90,320" x="120" y="50"/> <circ-port dir="in" pin="90,350" x="130" y="50"/> <circ-port dir="in" pin="90,380" x="140" y="50"/> <circ-port dir="in" pin="90,40" x="50" y="80"/> <circ-port dir="in" pin="90,410" x="150" y="50"/> <circ-port dir="in" pin="90,440" x="160" y="50"/> <circ-port dir="in" pin="90,470" x="170" y="50"/> <circ-port dir="in" pin="90,500" x="180" y="50"/> <circ-port dir="in" pin="90,530" x="190" y="50"/> <circ-port dir="in" pin="90,560" x="200" y="50"/> <circ-port dir="in" pin="90,590" x="210" y="50"/> <circ-port dir="in" pin="90,620" x="220" y="50"/> <circ-port dir="in" pin="90,650" x="230" y="50"/> <circ-port dir="in" pin="90,680" x="240" y="50"/> <circ-port dir="in" pin="90,70" x="50" y="100"/> <circ-port dir="in" pin="90,710" x="250" y="50"/> <circ-port dir="in" pin="90,740" x="260" y="50"/> <circ-port dir="in" pin="90,770" x="270" y="50"/> <circ-port dir="in" pin="90,800" x="280" y="50"/> <circ-port dir="in" pin="90,830" x="290" y="50"/> <circ-port dir="in" pin="90,860" x="300" y="50"/> <circ-port dir="in" pin="90,890" x="310" y="50"/> <circ-port dir="in" pin="90,920" x="320" y="50"/> <circ-port dir="in" pin="90,950" x="330" y="50"/> <circ-port dir="in" pin="90,990" x="50" y="150"/> <circ-port dir="out" pin="900,1020" x="200" y="220"/> <circ-port dir="out" pin="900,230" x="70" y="220"/> <circ-port dir="out" pin="900,330" x="350" y="180"/> <circ-port dir="out" pin="900,420" x="90" y="220"/> <circ-port dir="out" pin="900,520" x="180" y="220"/> <circ-port dir="out" pin="900,580" x="160" y="220"/> <circ-port dir="out" pin="900,640" x="350" y="150"/> <circ-port dir="out" pin="900,700" x="140" y="220"/> <circ-port dir="out" pin="900,770" x="220" y="220"/> <circ-port dir="out" pin="900,840" x="240" y="220"/> <circ-port dir="out" pin="900,880" x="350" y="120"/> </appear> <comp lib="0" loc="(90,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="STOR"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D35"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(90,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(90,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(90,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(90,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(90,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D8"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D9"/> </comp> <comp lib="0" loc="(90,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D10"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D11"/> </comp> <comp lib="0" loc="(90,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D12"/> </comp> <comp lib="0" loc="(90,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D13"/> </comp> <comp lib="0" loc="(90,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D14"/> </comp> <comp lib="0" loc="(90,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D15"/> </comp> <comp lib="0" loc="(90,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D16"/> </comp> <comp lib="0" loc="(90,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D17"/> </comp> <comp lib="0" loc="(90,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D18"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,710)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D19"/> </comp> <comp lib="0" loc="(90,740)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D20"/> </comp> <comp lib="0" loc="(90,770)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D21"/> </comp> <comp lib="0" loc="(90,800)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D22"/> </comp> <comp lib="0" loc="(90,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D23"/> </comp> <comp lib="0" loc="(90,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D24"/> </comp> <comp lib="0" loc="(90,890)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D25"/> </comp> <comp lib="0" loc="(90,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D26"/> </comp> <comp lib="0" loc="(90,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(90,990)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(900,1020)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Y_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="STXY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="X_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_SBXY"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_Y"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,770)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_S"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_S"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(900,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="STKOP"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(170,590)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(170,710)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(190,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,950)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,310)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,360)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(240,850)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(320,960)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,310)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,360)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,780)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,880)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,240)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(460,430)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(560,1020)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,780)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,300)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,360)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,640)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,850)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(720,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,1020)" name="Buffer"/> <comp lib="1" loc="(830,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,520)" name="Buffer"/> <comp lib="1" loc="(830,580)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,840)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,230)" name="Buffer"/> <comp lib="1" loc="(870,420)" name="Buffer"/> <comp lib="1" loc="(870,580)" name="Buffer"/> <comp lib="1" loc="(870,700)" name="Buffer"/> <comp lib="1" loc="(870,770)" name="Buffer"/> <comp lib="1" loc="(870,840)" name="Buffer"/> <comp lib="6" loc="(115,1040)" name="Text"> <a name="text" val="STK2"/> </comp> <comp lib="6" loc="(115,945)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="6" loc="(190,525)" name="Text"> <a name="text" val="TXS"/> </comp> <comp lib="6" loc="(195,580)" name="Text"> <a name="text" val="#SB/X"/> </comp> <comp lib="6" loc="(195,640)" name="Text"> <a name="text" val="#S/SB"/> </comp> <comp lib="6" loc="(195,700)" name="Text"> <a name="text" val="#SB/Y"/> </comp> <comp lib="6" loc="(420,90)" name="Text"> <a name="text" val="STOR"/> </comp> <comp lib="6" loc="(525,345)" name="Text"> <a name="text" val="STOR"/> </comp> <comp lib="6" loc="(525,870)" name="Text"> <a name="text" val="STKOP"/> </comp> <comp lib="6" loc="(615,1015)" name="Text"> <a name="text" val="#S/ADL"/> </comp> <comp lib="6" loc="(625,770)" name="Text"> <a name="text" val="#SB/S"/> </comp> <comp lib="6" loc="(630,235)" name="Text"> <a name="text" val="#Y/SB"/> </comp> <comp lib="6" loc="(630,420)" name="Text"> <a name="text" val="#X/SB"/> </comp> <comp lib="6" loc="(630,515)" name="Text"> <a name="text" val="#S/SB"/> </comp> <comp lib="6" loc="(630,630)" name="Text"> <a name="text" val="#SBXY"/> </comp> <comp loc="(320,900)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,1010)" name="D_Latch"> <a name="label" val="sadl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,230)" name="D_Latch"> <a name="label" val="ysb_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,420)" name="D_Latch"> <a name="label" val="xsb_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,510)" name="D_Latch"> <a name="label" val="ssb_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,580)" name="D_Latch"> <a name="label" val="sbx_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,700)" name="D_Latch"> <a name="label" val="sby_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,770)" name="D_Latch"> <a name="label" val="sbs_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,840)" name="D_Latch"> <a name="label" val="ss_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,560)" to="(110,580)"/> <wire from="(110,580)" to="(130,580)"/> <wire from="(110,600)" to="(110,620)"/> <wire from="(110,600)" to="(130,600)"/> <wire from="(110,680)" to="(110,700)"/> <wire from="(110,700)" to="(130,700)"/> <wire from="(110,720)" to="(110,740)"/> <wire from="(110,720)" to="(130,720)"/> <wire from="(120,200)" to="(120,220)"/> <wire from="(120,220)" to="(380,220)"/> <wire from="(120,240)" to="(120,260)"/> <wire from="(120,240)" to="(380,240)"/> <wire from="(120,410)" to="(120,430)"/> <wire from="(120,430)" to="(380,430)"/> <wire from="(120,450)" to="(120,470)"/> <wire from="(120,450)" to="(380,450)"/> <wire from="(120,830)" to="(120,840)"/> <wire from="(120,840)" to="(160,840)"/> <wire from="(130,170)" to="(130,210)"/> <wire from="(130,210)" to="(380,210)"/> <wire from="(130,250)" to="(130,290)"/> <wire from="(130,250)" to="(380,250)"/> <wire from="(130,300)" to="(130,320)"/> <wire from="(130,300)" to="(170,300)"/> <wire from="(130,350)" to="(130,370)"/> <wire from="(130,370)" to="(150,370)"/> <wire from="(130,380)" to="(130,420)"/> <wire from="(130,420)" to="(380,420)"/> <wire from="(130,460)" to="(130,530)"/> <wire from="(130,460)" to="(380,460)"/> <wire from="(130,530)" to="(480,530)"/> <wire from="(130,800)" to="(130,830)"/> <wire from="(130,830)" to="(160,830)"/> <wire from="(130,870)" to="(130,890)"/> <wire from="(130,870)" to="(160,870)"/> <wire from="(140,770)" to="(140,820)"/> <wire from="(140,770)" to="(390,770)"/> <wire from="(140,820)" to="(160,820)"/> <wire from="(140,880)" to="(140,920)"/> <wire from="(140,880)" to="(160,880)"/> <wire from="(150,320)" to="(150,370)"/> <wire from="(150,320)" to="(200,320)"/> <wire from="(150,370)" to="(170,370)"/> <wire from="(160,650)" to="(520,650)"/> <wire from="(170,300)" to="(170,350)"/> <wire from="(170,300)" to="(200,300)"/> <wire from="(170,350)" to="(200,350)"/> <wire from="(170,590)" to="(560,590)"/> <wire from="(170,710)" to="(560,710)"/> <wire from="(190,370)" to="(200,370)"/> <wire from="(190,950)" to="(280,950)"/> <wire from="(230,310)" to="(280,310)"/> <wire from="(230,360)" to="(280,360)"/> <wire from="(240,850)" to="(370,850)"/> <wire from="(260,40)" to="(260,890)"/> <wire from="(260,890)" to="(280,890)"/> <wire from="(260,910)" to="(260,970)"/> <wire from="(260,910)" to="(280,910)"/> <wire from="(260,970)" to="(260,990)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(280,260)" to="(280,310)"/> <wire from="(280,260)" to="(380,260)"/> <wire from="(280,360)" to="(280,410)"/> <wire from="(280,410)" to="(380,410)"/> <wire from="(300,140)" to="(300,320)"/> <wire from="(300,140)" to="(480,140)"/> <wire from="(300,320)" to="(320,320)"/> <wire from="(310,100)" to="(310,300)"/> <wire from="(310,100)" to="(500,100)"/> <wire from="(310,300)" to="(310,350)"/> <wire from="(310,300)" to="(320,300)"/> <wire from="(310,350)" to="(320,350)"/> <wire from="(310,370)" to="(310,500)"/> <wire from="(310,370)" to="(320,370)"/> <wire from="(310,500)" to="(530,500)"/> <wire from="(320,890)" to="(390,890)"/> <wire from="(320,910)" to="(340,910)"/> <wire from="(320,960)" to="(480,960)"/> <wire from="(340,790)" to="(340,910)"/> <wire from="(340,790)" to="(390,790)"/> <wire from="(350,310)" to="(360,310)"/> <wire from="(350,360)" to="(360,360)"/> <wire from="(360,270)" to="(360,310)"/> <wire from="(360,270)" to="(380,270)"/> <wire from="(360,360)" to="(360,400)"/> <wire from="(360,400)" to="(380,400)"/> <wire from="(370,850)" to="(370,870)"/> <wire from="(370,870)" to="(390,870)"/> <wire from="(420,780)" to="(450,780)"/> <wire from="(430,880)" to="(490,880)"/> <wire from="(450,1010)" to="(520,1010)"/> <wire from="(450,780)" to="(450,1010)"/> <wire from="(460,240)" to="(680,240)"/> <wire from="(460,430)" to="(680,430)"/> <wire from="(480,140)" to="(480,310)"/> <wire from="(480,310)" to="(570,310)"/> <wire from="(480,530)" to="(480,770)"/> <wire from="(480,770)" to="(520,770)"/> <wire from="(480,780)" to="(480,960)"/> <wire from="(480,780)" to="(520,780)"/> <wire from="(490,790)" to="(490,880)"/> <wire from="(490,790)" to="(520,790)"/> <wire from="(490,880)" to="(900,880)"/> <wire from="(500,100)" to="(500,290)"/> <wire from="(500,1030)" to="(500,1050)"/> <wire from="(500,1030)" to="(520,1030)"/> <wire from="(500,290)" to="(500,350)"/> <wire from="(500,290)" to="(570,290)"/> <wire from="(500,350)" to="(570,350)"/> <wire from="(520,520)" to="(520,650)"/> <wire from="(520,520)" to="(680,520)"/> <wire from="(530,370)" to="(530,500)"/> <wire from="(530,370)" to="(570,370)"/> <wire from="(560,1020)" to="(680,1020)"/> <wire from="(560,590)" to="(560,630)"/> <wire from="(560,590)" to="(680,590)"/> <wire from="(560,630)" to="(580,630)"/> <wire from="(560,650)" to="(560,710)"/> <wire from="(560,650)" to="(580,650)"/> <wire from="(560,710)" to="(680,710)"/> <wire from="(560,780)" to="(600,780)"/> <wire from="(600,300)" to="(640,300)"/> <wire from="(600,360)" to="(640,360)"/> <wire from="(600,780)" to="(600,850)"/> <wire from="(600,780)" to="(680,780)"/> <wire from="(600,850)" to="(620,850)"/> <wire from="(620,640)" to="(900,640)"/> <wire from="(640,300)" to="(640,320)"/> <wire from="(640,320)" to="(680,320)"/> <wire from="(640,340)" to="(640,360)"/> <wire from="(640,340)" to="(680,340)"/> <wire from="(640,850)" to="(680,850)"/> <wire from="(660,1000)" to="(680,1000)"/> <wire from="(660,220)" to="(660,410)"/> <wire from="(660,220)" to="(680,220)"/> <wire from="(660,410)" to="(660,500)"/> <wire from="(660,410)" to="(680,410)"/> <wire from="(660,500)" to="(660,570)"/> <wire from="(660,500)" to="(680,500)"/> <wire from="(660,570)" to="(660,690)"/> <wire from="(660,570)" to="(680,570)"/> <wire from="(660,690)" to="(660,760)"/> <wire from="(660,690)" to="(680,690)"/> <wire from="(660,70)" to="(660,220)"/> <wire from="(660,70)" to="(740,70)"/> <wire from="(660,760)" to="(660,830)"/> <wire from="(660,760)" to="(680,760)"/> <wire from="(660,830)" to="(660,1000)"/> <wire from="(660,830)" to="(680,830)"/> <wire from="(720,1020)" to="(810,1020)"/> <wire from="(720,220)" to="(790,220)"/> <wire from="(720,330)" to="(900,330)"/> <wire from="(720,410)" to="(790,410)"/> <wire from="(720,520)" to="(810,520)"/> <wire from="(720,570)" to="(790,570)"/> <wire from="(720,690)" to="(790,690)"/> <wire from="(720,760)" to="(790,760)"/> <wire from="(720,830)" to="(790,830)"/> <wire from="(740,240)" to="(740,430)"/> <wire from="(740,240)" to="(790,240)"/> <wire from="(740,430)" to="(740,590)"/> <wire from="(740,430)" to="(790,430)"/> <wire from="(740,590)" to="(740,710)"/> <wire from="(740,590)" to="(790,590)"/> <wire from="(740,70)" to="(740,240)"/> <wire from="(740,710)" to="(740,780)"/> <wire from="(740,710)" to="(790,710)"/> <wire from="(740,780)" to="(740,850)"/> <wire from="(740,780)" to="(790,780)"/> <wire from="(740,850)" to="(790,850)"/> <wire from="(830,1020)" to="(900,1020)"/> <wire from="(830,230)" to="(850,230)"/> <wire from="(830,420)" to="(850,420)"/> <wire from="(830,520)" to="(900,520)"/> <wire from="(830,580)" to="(850,580)"/> <wire from="(830,700)" to="(850,700)"/> <wire from="(830,770)" to="(850,770)"/> <wire from="(830,840)" to="(850,840)"/> <wire from="(870,230)" to="(900,230)"/> <wire from="(870,420)" to="(900,420)"/> <wire from="(870,580)" to="(900,580)"/> <wire from="(870,700)" to="(900,700)"/> <wire from="(870,770)" to="(900,770)"/> <wire from="(870,840)" to="(900,840)"/> <wire from="(90,100)" to="(310,100)"/> <wire from="(90,1050)" to="(500,1050)"/> <wire from="(90,140)" to="(300,140)"/> <wire from="(90,170)" to="(130,170)"/> <wire from="(90,200)" to="(120,200)"/> <wire from="(90,230)" to="(380,230)"/> <wire from="(90,260)" to="(120,260)"/> <wire from="(90,290)" to="(130,290)"/> <wire from="(90,320)" to="(130,320)"/> <wire from="(90,350)" to="(130,350)"/> <wire from="(90,380)" to="(130,380)"/> <wire from="(90,40)" to="(260,40)"/> <wire from="(90,410)" to="(120,410)"/> <wire from="(90,440)" to="(380,440)"/> <wire from="(90,470)" to="(120,470)"/> <wire from="(90,500)" to="(310,500)"/> <wire from="(90,530)" to="(130,530)"/> <wire from="(90,560)" to="(110,560)"/> <wire from="(90,590)" to="(130,590)"/> <wire from="(90,620)" to="(110,620)"/> <wire from="(90,650)" to="(140,650)"/> <wire from="(90,680)" to="(110,680)"/> <wire from="(90,70)" to="(660,70)"/> <wire from="(90,710)" to="(130,710)"/> <wire from="(90,740)" to="(110,740)"/> <wire from="(90,770)" to="(140,770)"/> <wire from="(90,800)" to="(130,800)"/> <wire from="(90,830)" to="(120,830)"/> <wire from="(90,860)" to="(160,860)"/> <wire from="(90,890)" to="(130,890)"/> <wire from="(90,920)" to="(140,920)"/> <wire from="(90,950)" to="(170,950)"/> <wire from="(90,990)" to="(260,990)"/> </circuit> <circuit name="EXTENDED_CYCLE_COUNTER"> <a name="appearance" val="custom"/> <a name="circuit" val="EXTENDED_CYCLE_COUNTER"/> <a name="clabel" val="EXTENDED_CYCLE_COUNTER"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M61,51 Q65,61 69,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#f1ff4e" height="280" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="69">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="88">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="109">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="128">TRES2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="169">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="197">/T2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="229">/T3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="258">/T4</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="143" y="288">/T5</text> <circ-anchor facing="east" x="50" y="50"/> <circ-port dir="in" pin="100,160" x="50" y="130"/> <circ-port dir="in" pin="100,220" x="50" y="110"/> <circ-port dir="in" pin="100,290" x="50" y="170"/> <circ-port dir="in" pin="100,40" x="50" y="70"/> <circ-port dir="in" pin="100,70" x="50" y="90"/> <circ-port dir="out" pin="650,220" x="160" y="200"/> <circ-port dir="out" pin="650,430" x="160" y="230"/> <circ-port dir="out" pin="650,640" x="160" y="260"/> <circ-port dir="out" pin="650,850" x="160" y="290"/> </appear> <comp lib="0" loc="(100,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="TRES2"/> </comp> <comp lib="0" loc="(100,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(100,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(100,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(650,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(650,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(650,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(650,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T5"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(410,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,400)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,610)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,820)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,220)" name="NOT Gate"/> <comp lib="1" loc="(610,430)" name="NOT Gate"/> <comp lib="1" loc="(610,640)" name="NOT Gate"/> <comp lib="1" loc="(610,850)" name="NOT Gate"/> <comp lib="2" loc="(310,300)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,510)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,720)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,930)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(220,280)" name="D_Latch"> <a name="label" val="t1_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,180)" name="D_Latch"> <a name="label" val="t2_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,290)" name="D_Latch"> <a name="label" val="t2_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,390)" name="D_Latch"> <a name="label" val="t3_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,500)" name="D_Latch"> <a name="label" val="t3_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,600)" name="D_Latch"> <a name="label" val="t4_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,710)" name="D_Latch"> <a name="label" val="t4_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,810)" name="D_Latch"> <a name="label" val="t5_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,920)" name="D_Latch"> <a name="label" val="t5_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,160)" to="(330,160)"/> <wire from="(100,220)" to="(290,220)"/> <wire from="(100,290)" to="(180,290)"/> <wire from="(100,40)" to="(430,40)"/> <wire from="(100,70)" to="(130,70)"/> <wire from="(130,270)" to="(180,270)"/> <wire from="(130,70)" to="(130,270)"/> <wire from="(130,70)" to="(450,70)"/> <wire from="(220,290)" to="(280,290)"/> <wire from="(260,310)" to="(260,340)"/> <wire from="(260,310)" to="(280,310)"/> <wire from="(260,340)" to="(260,500)"/> <wire from="(260,340)" to="(550,340)"/> <wire from="(260,500)" to="(280,500)"/> <wire from="(260,520)" to="(260,550)"/> <wire from="(260,520)" to="(280,520)"/> <wire from="(260,550)" to="(260,710)"/> <wire from="(260,550)" to="(550,550)"/> <wire from="(260,710)" to="(280,710)"/> <wire from="(260,730)" to="(260,760)"/> <wire from="(260,730)" to="(280,730)"/> <wire from="(260,760)" to="(260,920)"/> <wire from="(260,760)" to="(550,760)"/> <wire from="(260,920)" to="(280,920)"/> <wire from="(260,940)" to="(260,970)"/> <wire from="(260,940)" to="(280,940)"/> <wire from="(260,970)" to="(550,970)"/> <wire from="(290,220)" to="(290,280)"/> <wire from="(290,280)" to="(290,490)"/> <wire from="(290,490)" to="(290,700)"/> <wire from="(290,700)" to="(290,910)"/> <wire from="(310,300)" to="(470,300)"/> <wire from="(310,510)" to="(470,510)"/> <wire from="(310,720)" to="(470,720)"/> <wire from="(310,930)" to="(470,930)"/> <wire from="(330,160)" to="(330,180)"/> <wire from="(330,180)" to="(330,390)"/> <wire from="(330,180)" to="(370,180)"/> <wire from="(330,390)" to="(330,600)"/> <wire from="(330,390)" to="(370,390)"/> <wire from="(330,600)" to="(330,810)"/> <wire from="(330,600)" to="(370,600)"/> <wire from="(330,810)" to="(370,810)"/> <wire from="(350,200)" to="(350,240)"/> <wire from="(350,200)" to="(370,200)"/> <wire from="(350,240)" to="(530,240)"/> <wire from="(350,410)" to="(350,450)"/> <wire from="(350,410)" to="(370,410)"/> <wire from="(350,450)" to="(530,450)"/> <wire from="(350,620)" to="(350,660)"/> <wire from="(350,620)" to="(370,620)"/> <wire from="(350,660)" to="(530,660)"/> <wire from="(350,830)" to="(350,870)"/> <wire from="(350,830)" to="(370,830)"/> <wire from="(350,870)" to="(530,870)"/> <wire from="(410,190)" to="(460,190)"/> <wire from="(410,400)" to="(460,400)"/> <wire from="(410,610)" to="(460,610)"/> <wire from="(410,820)" to="(460,820)"/> <wire from="(430,280)" to="(430,490)"/> <wire from="(430,280)" to="(470,280)"/> <wire from="(430,40)" to="(430,280)"/> <wire from="(430,490)" to="(430,700)"/> <wire from="(430,490)" to="(470,490)"/> <wire from="(430,700)" to="(430,910)"/> <wire from="(430,700)" to="(470,700)"/> <wire from="(430,910)" to="(470,910)"/> <wire from="(450,170)" to="(450,380)"/> <wire from="(450,170)" to="(470,170)"/> <wire from="(450,380)" to="(450,590)"/> <wire from="(450,380)" to="(470,380)"/> <wire from="(450,590)" to="(450,800)"/> <wire from="(450,590)" to="(470,590)"/> <wire from="(450,70)" to="(450,170)"/> <wire from="(450,800)" to="(470,800)"/> <wire from="(460,190)" to="(460,220)"/> <wire from="(460,190)" to="(470,190)"/> <wire from="(460,220)" to="(580,220)"/> <wire from="(460,400)" to="(460,430)"/> <wire from="(460,400)" to="(470,400)"/> <wire from="(460,430)" to="(580,430)"/> <wire from="(460,610)" to="(460,640)"/> <wire from="(460,610)" to="(470,610)"/> <wire from="(460,640)" to="(580,640)"/> <wire from="(460,820)" to="(460,850)"/> <wire from="(460,820)" to="(470,820)"/> <wire from="(460,850)" to="(580,850)"/> <wire from="(510,190)" to="(550,190)"/> <wire from="(510,280)" to="(530,280)"/> <wire from="(510,400)" to="(550,400)"/> <wire from="(510,490)" to="(530,490)"/> <wire from="(510,610)" to="(550,610)"/> <wire from="(510,700)" to="(530,700)"/> <wire from="(510,820)" to="(550,820)"/> <wire from="(510,910)" to="(530,910)"/> <wire from="(530,240)" to="(530,280)"/> <wire from="(530,450)" to="(530,490)"/> <wire from="(530,660)" to="(530,700)"/> <wire from="(530,870)" to="(530,910)"/> <wire from="(550,190)" to="(550,340)"/> <wire from="(550,400)" to="(550,550)"/> <wire from="(550,610)" to="(550,760)"/> <wire from="(550,820)" to="(550,970)"/> <wire from="(610,220)" to="(650,220)"/> <wire from="(610,430)" to="(650,430)"/> <wire from="(610,640)" to="(650,640)"/> <wire from="(610,850)" to="(650,850)"/> </circuit> <circuit name="ALU_SETUP"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_SETUP"/> <a name="clabel" val="ALU_SETUP"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M61,121 Q65,131 69,121" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#fe6aff" height="380" stroke="#000000" stroke-width="2" width="420" x="40" y="120"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="150">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="170">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="439">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="63" y="481">PGX</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="240">STKOP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="437" y="339">AND</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="210">BRK6E</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="75" y="370">/C_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="390">/D_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="62" y="190">BR3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="260">T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="280">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="300">T6</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="59" y="320">T7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="389" y="489">SRS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="429" y="420">INC_SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="440">SR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="460">BFRW</text> <circ-anchor facing="east" x="50" y="120"/> <circ-port dir="in" pin="160,1010" x="340" y="120"/> <circ-port dir="in" pin="160,1050" x="350" y="120"/> <circ-port dir="in" pin="160,1080" x="360" y="120"/> <circ-port dir="in" pin="160,110" x="40" y="440"/> <circ-port dir="in" pin="160,1110" x="370" y="120"/> <circ-port dir="in" pin="160,1140" x="380" y="120"/> <circ-port dir="in" pin="160,1180" x="390" y="120"/> <circ-port dir="in" pin="160,1210" x="400" y="120"/> <circ-port dir="in" pin="160,1240" x="410" y="120"/> <circ-port dir="in" pin="160,1270" x="420" y="120"/> <circ-port dir="in" pin="160,1300" x="430" y="120"/> <circ-port dir="in" pin="160,1330" x="440" y="120"/> <circ-port dir="in" pin="160,1360" x="40" y="260"/> <circ-port dir="in" pin="160,1390" x="40" y="280"/> <circ-port dir="in" pin="160,140" x="40" y="210"/> <circ-port dir="in" pin="160,1420" x="40" y="300"/> <circ-port dir="in" pin="160,1450" x="40" y="320"/> <circ-port dir="in" pin="160,1480" x="40" y="480"/> <circ-port dir="in" pin="160,1510" x="40" y="190"/> <circ-port dir="in" pin="160,1540" x="40" y="390"/> <circ-port dir="in" pin="160,1570" x="40" y="370"/> <circ-port dir="in" pin="160,170" x="40" y="240"/> <circ-port dir="in" pin="160,20" x="40" y="150"/> <circ-port dir="in" pin="160,200" x="60" y="120"/> <circ-port dir="in" pin="160,230" x="70" y="120"/> <circ-port dir="in" pin="160,260" x="80" y="120"/> <circ-port dir="in" pin="160,290" x="90" y="120"/> <circ-port dir="in" pin="160,320" x="100" y="120"/> <circ-port dir="in" pin="160,350" x="110" y="120"/> <circ-port dir="in" pin="160,380" x="120" y="120"/> <circ-port dir="in" pin="160,410" x="130" y="120"/> <circ-port dir="in" pin="160,440" x="140" y="120"/> <circ-port dir="in" pin="160,470" x="150" y="120"/> <circ-port dir="in" pin="160,50" x="40" y="170"/> <circ-port dir="in" pin="160,500" x="160" y="120"/> <circ-port dir="in" pin="160,530" x="170" y="120"/> <circ-port dir="in" pin="160,560" x="180" y="120"/> <circ-port dir="in" pin="160,590" x="190" y="120"/> <circ-port dir="in" pin="160,620" x="200" y="120"/> <circ-port dir="in" pin="160,650" x="210" y="120"/> <circ-port dir="in" pin="160,680" x="220" y="120"/> <circ-port dir="in" pin="160,710" x="230" y="120"/> <circ-port dir="in" pin="160,740" x="240" y="120"/> <circ-port dir="in" pin="160,770" x="260" y="120"/> <circ-port dir="in" pin="160,80" x="40" y="460"/> <circ-port dir="in" pin="160,800" x="270" y="120"/> <circ-port dir="in" pin="160,830" x="280" y="120"/> <circ-port dir="in" pin="160,860" x="290" y="120"/> <circ-port dir="in" pin="160,890" x="300" y="120"/> <circ-port dir="in" pin="160,920" x="310" y="120"/> <circ-port dir="in" pin="160,950" x="320" y="120"/> <circ-port dir="in" pin="160,980" x="330" y="120"/> <circ-port dir="out" pin="1580,100" x="80" y="500"/> <circ-port dir="out" pin="1580,1020" x="320" y="500"/> <circ-port dir="out" pin="1580,1090" x="340" y="500"/> <circ-port dir="out" pin="1580,1160" x="360" y="500"/> <circ-port dir="out" pin="1580,1230" x="460" y="420"/> <circ-port dir="out" pin="1580,1270" x="460" y="440"/> <circ-port dir="out" pin="1580,170" x="100" y="500"/> <circ-port dir="out" pin="1580,240" x="120" y="500"/> <circ-port dir="out" pin="1580,310" x="140" y="500"/> <circ-port dir="out" pin="1580,380" x="160" y="500"/> <circ-port dir="out" pin="1580,420" x="460" y="340"/> <circ-port dir="out" pin="1580,460" x="180" y="500"/> <circ-port dir="out" pin="1580,530" x="200" y="500"/> <circ-port dir="out" pin="1580,600" x="220" y="500"/> <circ-port dir="out" pin="1580,670" x="240" y="500"/> <circ-port dir="out" pin="1580,740" x="390" y="500"/> <circ-port dir="out" pin="1580,810" x="260" y="500"/> <circ-port dir="out" pin="1580,880" x="280" y="500"/> <circ-port dir="out" pin="1580,950" x="300" y="500"/> </appear> <comp lib="0" loc="(1010,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(1010,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(1040,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="AND"/> </comp> <comp lib="0" loc="(1040,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(1290,40)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1290,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(1380,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(1550,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(1570,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="INC_SB"/> </comp> <comp lib="0" loc="(1580,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NDB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,1020)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADD_SB06"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,1090)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADD_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DSA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,1230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="INC_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,1270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_ADD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AND"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ANDS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="EORS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ORS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ACIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,740)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SRS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SUMS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_DAA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1580,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADD_SB7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(160,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D56"/> </comp> <comp lib="0" loc="(160,1050)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D69"/> </comp> <comp lib="0" loc="(160,1080)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D70"/> </comp> <comp lib="0" loc="(160,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(160,1110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D75"/> </comp> <comp lib="0" loc="(160,1140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D76"/> </comp> <comp lib="0" loc="(160,1180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D84"/> </comp> <comp lib="0" loc="(160,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D85"/> </comp> <comp lib="0" loc="(160,1240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D86"/> </comp> <comp lib="0" loc="(160,1270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D87"/> </comp> <comp lib="0" loc="(160,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D88"/> </comp> <comp lib="0" loc="(160,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D89"/> </comp> <comp lib="0" loc="(160,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(160,1390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(160,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(160,1420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(160,1450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(160,1480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PGX"/> </comp> <comp lib="0" loc="(160,1510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(160,1540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_D_OUT"/> </comp> <comp lib="0" loc="(160,1570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_C_OUT"/> </comp> <comp lib="0" loc="(160,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="STKOP"/> </comp> <comp lib="0" loc="(160,20)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D26"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D27"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D29"/> </comp> <comp lib="0" loc="(160,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D30"/> </comp> <comp lib="0" loc="(160,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D31"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D32"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D33"/> </comp> <comp lib="0" loc="(160,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D34"/> </comp> <comp lib="0" loc="(160,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D35"/> </comp> <comp lib="0" loc="(160,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D36"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D37"/> </comp> <comp lib="0" loc="(160,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D38"/> </comp> <comp lib="0" loc="(160,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D39"/> </comp> <comp lib="0" loc="(160,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D40"/> </comp> <comp lib="0" loc="(160,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D41"/> </comp> <comp lib="0" loc="(160,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D42"/> </comp> <comp lib="0" loc="(160,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D43"/> </comp> <comp lib="0" loc="(160,710)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D44"/> </comp> <comp lib="0" loc="(160,740)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D45"/> </comp> <comp lib="0" loc="(160,770)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D47"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(160,800)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(160,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D49"/> </comp> <comp lib="0" loc="(160,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D50"/> </comp> <comp lib="0" loc="(160,890)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D51"/> </comp> <comp lib="0" loc="(160,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D52"/> </comp> <comp lib="0" loc="(160,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D53"/> </comp> <comp lib="0" loc="(160,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D54"/> </comp> <comp lib="0" loc="(170,1010)" name="Tunnel"> <a name="label" val="JSR_5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(170,890)" name="Tunnel"> <a name="label" val="SBC0"/> </comp> <comp lib="0" loc="(190,1360)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(190,1390)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(190,1420)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(190,1450)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(190,1510)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(190,1570)" name="Tunnel"> <a name="label" val="n_C_OUT"/> </comp> <comp lib="0" loc="(200,110)" name="Tunnel"> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(200,140)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(200,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(200,200)" name="Tunnel"> <a name="label" val="RTI_5"/> </comp> <comp lib="0" loc="(200,50)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(200,80)" name="Tunnel"> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(210,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(230,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(240,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(260,1180)" name="Tunnel"> <a name="label" val="RTS_5"/> </comp> <comp lib="0" loc="(260,1330)" name="Tunnel"> <a name="label" val="RTI_5"/> </comp> <comp lib="0" loc="(270,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(300,1060)" name="Tunnel"> <a name="label" val="AND"/> </comp> <comp lib="0" loc="(340,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRFW"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(380,1130)" name="Tunnel"> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(410,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_C_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(530,670)" name="Tunnel"> <a name="label" val="INC_SB"/> </comp> <comp lib="0" loc="(540,380)" name="Tunnel"> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(540,410)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(710,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> </comp> <comp lib="0" loc="(710,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> </comp> <comp lib="0" loc="(740,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="JSR_5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(740,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SBC0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(750,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(890,1030)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SR"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(890,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(890,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_C_OUT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(940,1010)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(940,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(940,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,770)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="JSR_5"/> </comp> <comp lib="1" loc="(1100,770)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(1140,180)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1140,510)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(1260,950)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1290,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1510,1020)" name="Buffer"/> <comp lib="1" loc="(1510,1090)" name="Buffer"/> <comp lib="1" loc="(1510,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1510,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1510,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1510,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1510,460)" name="Buffer"/> <comp lib="1" loc="(1510,530)" name="Buffer"/> <comp lib="1" loc="(1510,600)" name="Buffer"/> <comp lib="1" loc="(1510,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1510,740)" name="Buffer"/> <comp lib="1" loc="(1510,810)" name="Buffer"/> <comp lib="1" loc="(1510,880)" name="Buffer"/> <comp lib="1" loc="(1510,950)" name="Buffer"/> <comp lib="1" loc="(1550,100)" name="Buffer"/> <comp lib="1" loc="(1550,170)" name="Buffer"/> <comp lib="1" loc="(1550,240)" name="Buffer"/> <comp lib="1" loc="(1550,310)" name="Buffer"/> <comp lib="1" loc="(1550,380)" name="Buffer"/> <comp lib="1" loc="(230,1540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,1060)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,1150)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,400)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,700)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,930)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,1060)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,360)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,1260)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(330,1130)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,1130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,500)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(390,630)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(400,970)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,890)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,860)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,960)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,1020)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,570)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,970)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,320)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(650,1010)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,1230)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,1180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,1240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,1320)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(810,100)" name="OR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,1240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(930,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(940,670)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(990,110)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(1000,665)" name="Text"> <a name="text" val="/ACIN"/> </comp> <comp lib="6" loc="(1075,100)" name="Text"> <a name="text" val="#NDB/ADD"/> </comp> <comp lib="6" loc="(1110,950)" name="Text"> <a name="text" val="#ADD/SB7"/> </comp> <comp lib="6" loc="(1160,760)" name="Text"> <a name="text" val="#ADD/SB06"/> </comp> <comp lib="6" loc="(1265,385)" name="Text"> <a name="text" val="#ADL/ADD"/> </comp> <comp lib="6" loc="(1445,920)" name="Text"> <a name="text" val="care!"/> </comp> <comp lib="6" loc="(180,220)" name="Text"> <a name="text" val="ROR"/> </comp> <comp lib="6" loc="(180,255)" name="Text"> <a name="text" val="EOR"/> </comp> <comp lib="6" loc="(180,435)" name="Text"> <a name="text" val="STK2"/> </comp> <comp lib="6" loc="(185,760)" name="Text"> <a name="text" val="RET"/> </comp> <comp lib="6" loc="(185,790)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="6" loc="(240,1505)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="D93"/> </comp> <comp lib="6" loc="(280,1530)" name="Text"> <a name="text" val="D_OUT"/> </comp> <comp lib="6" loc="(360,1250)" name="Text"> <a name="text" val="NOADL"/> </comp> <comp lib="6" loc="(375,440)" name="Text"> <a name="text" val="OR"/> </comp> <comp lib="6" loc="(545,485)" name="Text"> <a name="text" val="#ADL/ADD"/> </comp> <comp lib="6" loc="(600,855)" name="Text"> <a name="text" val="BRX"/> </comp> <comp lib="6" loc="(660,315)" name="Text"> <a name="text" val="SB/ADD"/> </comp> <comp lib="6" loc="(685,775)" name="Text"> <a name="text" val="CSET"/> </comp> <comp lib="6" loc="(715,805)" name="Text"> <a name="text" val="PGX"/> </comp> <comp loc="(1380,100)" name="D_Latch"> <a name="label" val="ndbadd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,1010)" name="D_Latch"> <a name="label" val="addsb06_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,1080)" name="D_Latch"> <a name="label" val="addadl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,1150)" name="D_Latch"> <a name="label" val="dsa_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,170)" name="D_Latch"> <a name="label" val="dbadd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,240)" name="D_Latch"> <a name="label" val="zadd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,310)" name="D_Latch"> <a name="label" val="sbadd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,380)" name="D_Latch"> <a name="label" val="adladd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,450)" name="D_Latch"> <a name="label" val="ands_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,520)" name="D_Latch"> <a name="label" val="eors_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,590)" name="D_Latch"> <a name="label" val="ors_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,730)" name="D_Latch"> <a name="label" val="srs_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,800)" name="D_Latch"> <a name="label" val="sums_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,870)" name="D_Latch"> <a name="label" val="daa_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1380,940)" name="D_Latch"> <a name="label" val="addsb7_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,1150)" name="D_Latch"> <a name="label" val="dsa_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,450)" name="D_Latch"> <a name="label" val="ands_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,520)" name="D_Latch"> <a name="label" val="eors_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,590)" name="D_Latch"> <a name="label" val="ors_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,660)" name="D_Latch"> <a name="label" val="acin_latch5"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,730)" name="D_Latch"> <a name="label" val="srs_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,800)" name="D_Latch"> <a name="label" val="sums_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1470,870)" name="D_Latch"> <a name="label" val="daa_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,560)" name="D_Latch"> <a name="label" val="acin_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,630)" name="D_Latch"> <a name="label" val="acin_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,700)" name="D_Latch"> <a name="label" val="acin_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,770)" name="D_Latch"> <a name="label" val="acin_latch4"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(970,960)" name="ADD_SB7_Logic"> <a name="label" val="add_sb7_inst"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,450)" to="(1000,520)"/> <wire from="(1000,520)" to="(1000,600)"/> <wire from="(1000,520)" to="(1080,520)"/> <wire from="(1000,600)" to="(1340,600)"/> <wire from="(1010,740)" to="(1020,740)"/> <wire from="(1010,790)" to="(1020,790)"/> <wire from="(1020,740)" to="(1020,750)"/> <wire from="(1020,750)" to="(1040,750)"/> <wire from="(1020,780)" to="(1020,790)"/> <wire from="(1020,780)" to="(1040,780)"/> <wire from="(1030,790)" to="(1030,810)"/> <wire from="(1030,790)" to="(1040,790)"/> <wire from="(1040,490)" to="(1070,490)"/> <wire from="(1040,550)" to="(1070,550)"/> <wire from="(1050,260)" to="(1050,450)"/> <wire from="(1050,450)" to="(1050,500)"/> <wire from="(1050,450)" to="(1250,450)"/> <wire from="(1050,500)" to="(1080,500)"/> <wire from="(1060,960)" to="(1220,960)"/> <wire from="(1070,460)" to="(1070,490)"/> <wire from="(1070,460)" to="(1280,460)"/> <wire from="(1070,490)" to="(1080,490)"/> <wire from="(1070,530)" to="(1070,550)"/> <wire from="(1070,530)" to="(1080,530)"/> <wire from="(1080,110)" to="(1080,170)"/> <wire from="(1080,110)" to="(1340,110)"/> <wire from="(1080,170)" to="(1100,170)"/> <wire from="(1080,190)" to="(1080,390)"/> <wire from="(1080,190)" to="(1100,190)"/> <wire from="(1080,390)" to="(1340,390)"/> <wire from="(1100,770)" to="(1200,770)"/> <wire from="(1110,630)" to="(1110,880)"/> <wire from="(1140,180)" to="(1340,180)"/> <wire from="(1140,510)" to="(1220,510)"/> <wire from="(1190,880)" to="(1190,1240)"/> <wire from="(1190,880)" to="(1340,880)"/> <wire from="(1200,1020)" to="(1340,1020)"/> <wire from="(1200,770)" to="(1200,940)"/> <wire from="(1200,940)" to="(1200,1020)"/> <wire from="(1200,940)" to="(1220,940)"/> <wire from="(1220,510)" to="(1220,810)"/> <wire from="(1220,810)" to="(1340,810)"/> <wire from="(1240,250)" to="(1240,320)"/> <wire from="(1240,250)" to="(1340,250)"/> <wire from="(1240,320)" to="(1270,320)"/> <wire from="(1250,1090)" to="(1250,1180)"/> <wire from="(1250,1090)" to="(1340,1090)"/> <wire from="(1250,450)" to="(1250,530)"/> <wire from="(1250,530)" to="(1340,530)"/> <wire from="(1260,950)" to="(1340,950)"/> <wire from="(1280,420)" to="(1280,460)"/> <wire from="(1280,420)" to="(1580,420)"/> <wire from="(1280,460)" to="(1340,460)"/> <wire from="(1290,320)" to="(1340,320)"/> <wire from="(1290,40)" to="(1310,40)"/> <wire from="(1290,740)" to="(1340,740)"/> <wire from="(1310,1000)" to="(1310,1070)"/> <wire from="(1310,1000)" to="(1340,1000)"/> <wire from="(1310,1070)" to="(1310,1140)"/> <wire from="(1310,1070)" to="(1340,1070)"/> <wire from="(1310,1140)" to="(1340,1140)"/> <wire from="(1310,1160)" to="(1310,1320)"/> <wire from="(1310,1160)" to="(1340,1160)"/> <wire from="(1310,160)" to="(1310,230)"/> <wire from="(1310,160)" to="(1340,160)"/> <wire from="(1310,230)" to="(1310,300)"/> <wire from="(1310,230)" to="(1340,230)"/> <wire from="(1310,300)" to="(1310,370)"/> <wire from="(1310,300)" to="(1340,300)"/> <wire from="(1310,370)" to="(1310,440)"/> <wire from="(1310,370)" to="(1340,370)"/> <wire from="(1310,40)" to="(1310,90)"/> <wire from="(1310,40)" to="(1420,40)"/> <wire from="(1310,440)" to="(1310,510)"/> <wire from="(1310,440)" to="(1340,440)"/> <wire from="(1310,510)" to="(1310,580)"/> <wire from="(1310,510)" to="(1340,510)"/> <wire from="(1310,580)" to="(1310,720)"/> <wire from="(1310,580)" to="(1340,580)"/> <wire from="(1310,720)" to="(1310,790)"/> <wire from="(1310,720)" to="(1340,720)"/> <wire from="(1310,790)" to="(1310,860)"/> <wire from="(1310,790)" to="(1340,790)"/> <wire from="(1310,860)" to="(1310,930)"/> <wire from="(1310,860)" to="(1340,860)"/> <wire from="(1310,90)" to="(1310,160)"/> <wire from="(1310,90)" to="(1340,90)"/> <wire from="(1310,930)" to="(1310,1000)"/> <wire from="(1310,930)" to="(1340,930)"/> <wire from="(1380,1020)" to="(1490,1020)"/> <wire from="(1380,1090)" to="(1490,1090)"/> <wire from="(1380,1160)" to="(1430,1160)"/> <wire from="(1380,160)" to="(1470,160)"/> <wire from="(1380,230)" to="(1470,230)"/> <wire from="(1380,300)" to="(1470,300)"/> <wire from="(1380,370)" to="(1470,370)"/> <wire from="(1380,460)" to="(1430,460)"/> <wire from="(1380,530)" to="(1430,530)"/> <wire from="(1380,600)" to="(1430,600)"/> <wire from="(1380,640)" to="(1410,640)"/> <wire from="(1380,740)" to="(1430,740)"/> <wire from="(1380,810)" to="(1430,810)"/> <wire from="(1380,880)" to="(1430,880)"/> <wire from="(1380,90)" to="(1470,90)"/> <wire from="(1380,930)" to="(1460,930)"/> <wire from="(1410,1140)" to="(1430,1140)"/> <wire from="(1410,440)" to="(1410,510)"/> <wire from="(1410,440)" to="(1430,440)"/> <wire from="(1410,510)" to="(1410,580)"/> <wire from="(1410,510)" to="(1430,510)"/> <wire from="(1410,580)" to="(1410,640)"/> <wire from="(1410,580)" to="(1430,580)"/> <wire from="(1410,640)" to="(1410,650)"/> <wire from="(1410,650)" to="(1410,720)"/> <wire from="(1410,650)" to="(1430,650)"/> <wire from="(1410,720)" to="(1410,790)"/> <wire from="(1410,720)" to="(1430,720)"/> <wire from="(1410,790)" to="(1410,860)"/> <wire from="(1410,790)" to="(1430,790)"/> <wire from="(1410,860)" to="(1410,1140)"/> <wire from="(1410,860)" to="(1430,860)"/> <wire from="(1420,110)" to="(1420,180)"/> <wire from="(1420,110)" to="(1470,110)"/> <wire from="(1420,180)" to="(1420,250)"/> <wire from="(1420,180)" to="(1470,180)"/> <wire from="(1420,250)" to="(1420,320)"/> <wire from="(1420,250)" to="(1470,250)"/> <wire from="(1420,320)" to="(1420,390)"/> <wire from="(1420,320)" to="(1470,320)"/> <wire from="(1420,390)" to="(1470,390)"/> <wire from="(1420,40)" to="(1420,110)"/> <wire from="(1460,930)" to="(1460,950)"/> <wire from="(1460,950)" to="(1490,950)"/> <wire from="(1470,1160)" to="(1580,1160)"/> <wire from="(1470,460)" to="(1490,460)"/> <wire from="(1470,530)" to="(1490,530)"/> <wire from="(1470,600)" to="(1490,600)"/> <wire from="(1470,670)" to="(1490,670)"/> <wire from="(1470,740)" to="(1490,740)"/> <wire from="(1470,810)" to="(1490,810)"/> <wire from="(1470,880)" to="(1490,880)"/> <wire from="(1510,100)" to="(1530,100)"/> <wire from="(1510,1020)" to="(1580,1020)"/> <wire from="(1510,1090)" to="(1580,1090)"/> <wire from="(1510,170)" to="(1530,170)"/> <wire from="(1510,240)" to="(1530,240)"/> <wire from="(1510,310)" to="(1530,310)"/> <wire from="(1510,380)" to="(1530,380)"/> <wire from="(1510,460)" to="(1580,460)"/> <wire from="(1510,530)" to="(1580,530)"/> <wire from="(1510,600)" to="(1580,600)"/> <wire from="(1510,670)" to="(1580,670)"/> <wire from="(1510,740)" to="(1580,740)"/> <wire from="(1510,810)" to="(1580,810)"/> <wire from="(1510,880)" to="(1580,880)"/> <wire from="(1510,950)" to="(1580,950)"/> <wire from="(1550,100)" to="(1580,100)"/> <wire from="(1550,1270)" to="(1580,1270)"/> <wire from="(1550,170)" to="(1580,170)"/> <wire from="(1550,240)" to="(1580,240)"/> <wire from="(1550,310)" to="(1580,310)"/> <wire from="(1550,380)" to="(1580,380)"/> <wire from="(1570,1230)" to="(1580,1230)"/> <wire from="(160,1010)" to="(170,1010)"/> <wire from="(160,1050)" to="(200,1050)"/> <wire from="(160,1080)" to="(180,1080)"/> <wire from="(160,110)" to="(200,110)"/> <wire from="(160,1110)" to="(270,1110)"/> <wire from="(160,1140)" to="(220,1140)"/> <wire from="(160,1180)" to="(220,1180)"/> <wire from="(160,1210)" to="(210,1210)"/> <wire from="(160,1240)" to="(200,1240)"/> <wire from="(160,1270)" to="(190,1270)"/> <wire from="(160,1300)" to="(200,1300)"/> <wire from="(160,1330)" to="(210,1330)"/> <wire from="(160,1360)" to="(190,1360)"/> <wire from="(160,1390)" to="(190,1390)"/> <wire from="(160,140)" to="(200,140)"/> <wire from="(160,1420)" to="(190,1420)"/> <wire from="(160,1450)" to="(190,1450)"/> <wire from="(160,1480)" to="(430,1480)"/> <wire from="(160,1510)" to="(190,1510)"/> <wire from="(160,1540)" to="(210,1540)"/> <wire from="(160,1570)" to="(190,1570)"/> <wire from="(160,170)" to="(500,170)"/> <wire from="(160,20)" to="(200,20)"/> <wire from="(160,200)" to="(200,200)"/> <wire from="(160,230)" to="(320,230)"/> <wire from="(160,260)" to="(1050,260)"/> <wire from="(160,290)" to="(520,290)"/> <wire from="(160,320)" to="(360,320)"/> <wire from="(160,350)" to="(260,350)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(160,410)" to="(210,410)"/> <wire from="(160,440)" to="(200,440)"/> <wire from="(160,470)" to="(190,470)"/> <wire from="(160,50)" to="(200,50)"/> <wire from="(160,500)" to="(310,500)"/> <wire from="(160,530)" to="(190,530)"/> <wire from="(160,560)" to="(200,560)"/> <wire from="(160,590)" to="(190,590)"/> <wire from="(160,620)" to="(310,620)"/> <wire from="(160,650)" to="(190,650)"/> <wire from="(160,680)" to="(200,680)"/> <wire from="(160,710)" to="(240,710)"/> <wire from="(160,740)" to="(440,740)"/> <wire from="(160,770)" to="(480,770)"/> <wire from="(160,80)" to="(200,80)"/> <wire from="(160,800)" to="(450,800)"/> <wire from="(160,830)" to="(430,830)"/> <wire from="(160,860)" to="(450,860)"/> <wire from="(160,890)" to="(170,890)"/> <wire from="(160,920)" to="(220,920)"/> <wire from="(160,950)" to="(180,950)"/> <wire from="(160,980)" to="(260,980)"/> <wire from="(180,1070)" to="(180,1080)"/> <wire from="(180,1070)" to="(200,1070)"/> <wire from="(180,380)" to="(180,390)"/> <wire from="(180,390)" to="(240,390)"/> <wire from="(180,940)" to="(180,950)"/> <wire from="(180,940)" to="(240,940)"/> <wire from="(190,1260)" to="(190,1270)"/> <wire from="(190,1260)" to="(240,1260)"/> <wire from="(190,470)" to="(190,490)"/> <wire from="(190,490)" to="(310,490)"/> <wire from="(190,510)" to="(190,530)"/> <wire from="(190,510)" to="(310,510)"/> <wire from="(190,590)" to="(190,610)"/> <wire from="(190,610)" to="(310,610)"/> <wire from="(190,640)" to="(190,650)"/> <wire from="(190,640)" to="(310,640)"/> <wire from="(200,1240)" to="(200,1250)"/> <wire from="(200,1250)" to="(240,1250)"/> <wire from="(200,1270)" to="(200,1300)"/> <wire from="(200,1270)" to="(240,1270)"/> <wire from="(200,440)" to="(200,480)"/> <wire from="(200,480)" to="(310,480)"/> <wire from="(200,520)" to="(200,560)"/> <wire from="(200,520)" to="(310,520)"/> <wire from="(200,560)" to="(200,600)"/> <wire from="(200,600)" to="(310,600)"/> <wire from="(200,650)" to="(200,680)"/> <wire from="(200,650)" to="(310,650)"/> <wire from="(210,1160)" to="(220,1160)"/> <wire from="(210,1210)" to="(210,1240)"/> <wire from="(210,1240)" to="(240,1240)"/> <wire from="(210,1280)" to="(210,1330)"/> <wire from="(210,1280)" to="(240,1280)"/> <wire from="(220,1040)" to="(620,1040)"/> <wire from="(220,1180)" to="(220,1230)"/> <wire from="(220,1180)" to="(260,1180)"/> <wire from="(220,1230)" to="(240,1230)"/> <wire from="(220,1290)" to="(220,1330)"/> <wire from="(220,1290)" to="(240,1290)"/> <wire from="(220,1330)" to="(260,1330)"/> <wire from="(220,920)" to="(220,1040)"/> <wire from="(220,920)" to="(240,920)"/> <wire from="(230,1540)" to="(620,1540)"/> <wire from="(230,410)" to="(240,410)"/> <wire from="(230,690)" to="(240,690)"/> <wire from="(240,1060)" to="(260,1060)"/> <wire from="(240,370)" to="(260,370)"/> <wire from="(250,1150)" to="(270,1150)"/> <wire from="(260,1020)" to="(550,1020)"/> <wire from="(260,980)" to="(260,1020)"/> <wire from="(270,1110)" to="(270,1120)"/> <wire from="(270,1120)" to="(290,1120)"/> <wire from="(270,1140)" to="(270,1150)"/> <wire from="(270,1140)" to="(290,1140)"/> <wire from="(270,400)" to="(290,400)"/> <wire from="(270,550)" to="(280,550)"/> <wire from="(270,700)" to="(290,700)"/> <wire from="(270,930)" to="(300,930)"/> <wire from="(280,1060)" to="(300,1060)"/> <wire from="(280,530)" to="(280,550)"/> <wire from="(280,530)" to="(310,530)"/> <wire from="(290,400)" to="(290,470)"/> <wire from="(290,470)" to="(310,470)"/> <wire from="(290,660)" to="(290,700)"/> <wire from="(290,660)" to="(310,660)"/> <wire from="(300,1000)" to="(510,1000)"/> <wire from="(300,360)" to="(320,360)"/> <wire from="(300,930)" to="(300,1000)"/> <wire from="(320,1260)" to="(400,1260)"/> <wire from="(330,1130)" to="(340,1130)"/> <wire from="(340,230)" to="(940,230)"/> <wire from="(340,360)" to="(360,360)"/> <wire from="(340,880)" to="(350,880)"/> <wire from="(350,910)" to="(370,910)"/> <wire from="(350,960)" to="(360,960)"/> <wire from="(350,980)" to="(360,980)"/> <wire from="(360,1130)" to="(380,1130)"/> <wire from="(360,300)" to="(360,320)"/> <wire from="(360,300)" to="(520,300)"/> <wire from="(360,360)" to="(360,450)"/> <wire from="(360,450)" to="(1000,450)"/> <wire from="(370,880)" to="(380,880)"/> <wire from="(370,900)" to="(370,910)"/> <wire from="(370,900)" to="(380,900)"/> <wire from="(390,500)" to="(500,500)"/> <wire from="(390,630)" to="(400,630)"/> <wire from="(400,1170)" to="(400,1260)"/> <wire from="(400,1170)" to="(740,1170)"/> <wire from="(400,970)" to="(450,970)"/> <wire from="(410,930)" to="(430,930)"/> <wire from="(420,630)" to="(460,630)"/> <wire from="(420,890)" to="(430,890)"/> <wire from="(430,1190)" to="(430,1480)"/> <wire from="(430,1190)" to="(700,1190)"/> <wire from="(430,830)" to="(430,850)"/> <wire from="(430,850)" to="(450,850)"/> <wire from="(430,870)" to="(430,890)"/> <wire from="(430,870)" to="(450,870)"/> <wire from="(430,930)" to="(430,950)"/> <wire from="(430,950)" to="(450,950)"/> <wire from="(440,310)" to="(440,740)"/> <wire from="(440,310)" to="(520,310)"/> <wire from="(450,320)" to="(450,800)"/> <wire from="(450,320)" to="(520,320)"/> <wire from="(460,330)" to="(460,630)"/> <wire from="(460,330)" to="(520,330)"/> <wire from="(460,630)" to="(460,640)"/> <wire from="(460,640)" to="(510,640)"/> <wire from="(480,340)" to="(480,580)"/> <wire from="(480,340)" to="(520,340)"/> <wire from="(480,580)" to="(480,770)"/> <wire from="(480,580)" to="(500,580)"/> <wire from="(490,860)" to="(510,860)"/> <wire from="(490,960)" to="(540,960)"/> <wire from="(500,170)" to="(500,280)"/> <wire from="(500,170)" to="(970,170)"/> <wire from="(500,280)" to="(520,280)"/> <wire from="(500,350)" to="(500,410)"/> <wire from="(500,350)" to="(520,350)"/> <wire from="(500,410)" to="(540,410)"/> <wire from="(500,500)" to="(500,560)"/> <wire from="(500,500)" to="(850,500)"/> <wire from="(500,560)" to="(540,560)"/> <wire from="(510,360)" to="(510,380)"/> <wire from="(510,360)" to="(520,360)"/> <wire from="(510,380)" to="(540,380)"/> <wire from="(510,640)" to="(510,670)"/> <wire from="(510,640)" to="(790,640)"/> <wire from="(510,670)" to="(530,670)"/> <wire from="(510,980)" to="(510,1000)"/> <wire from="(510,980)" to="(540,980)"/> <wire from="(520,580)" to="(540,580)"/> <wire from="(530,860)" to="(620,860)"/> <wire from="(570,1020)" to="(610,1020)"/> <wire from="(580,570)" to="(790,570)"/> <wire from="(580,970)" to="(590,970)"/> <wire from="(590,1000)" to="(610,1000)"/> <wire from="(590,970)" to="(590,1000)"/> <wire from="(600,320)" to="(1240,320)"/> <wire from="(620,1040)" to="(620,1220)"/> <wire from="(620,1220)" to="(640,1220)"/> <wire from="(620,1240)" to="(620,1330)"/> <wire from="(620,1240)" to="(640,1240)"/> <wire from="(620,1330)" to="(620,1540)"/> <wire from="(620,1330)" to="(740,1330)"/> <wire from="(620,710)" to="(620,860)"/> <wire from="(620,710)" to="(790,710)"/> <wire from="(620,90)" to="(620,710)"/> <wire from="(620,90)" to="(780,90)"/> <wire from="(650,1010)" to="(670,1010)"/> <wire from="(670,780)" to="(670,1010)"/> <wire from="(670,780)" to="(790,780)"/> <wire from="(680,1230)" to="(740,1230)"/> <wire from="(700,1190)" to="(740,1190)"/> <wire from="(700,810)" to="(1030,810)"/> <wire from="(700,810)" to="(700,1190)"/> <wire from="(710,1260)" to="(720,1260)"/> <wire from="(710,1300)" to="(720,1300)"/> <wire from="(720,1250)" to="(720,1260)"/> <wire from="(720,1250)" to="(740,1250)"/> <wire from="(720,1300)" to="(720,1310)"/> <wire from="(720,1310)" to="(740,1310)"/> <wire from="(740,110)" to="(750,110)"/> <wire from="(740,130)" to="(770,130)"/> <wire from="(750,100)" to="(750,110)"/> <wire from="(750,100)" to="(780,100)"/> <wire from="(750,520)" to="(770,520)"/> <wire from="(770,110)" to="(770,130)"/> <wire from="(770,110)" to="(780,110)"/> <wire from="(770,520)" to="(770,550)"/> <wire from="(770,550)" to="(770,620)"/> <wire from="(770,550)" to="(790,550)"/> <wire from="(770,620)" to="(770,690)"/> <wire from="(770,620)" to="(790,620)"/> <wire from="(770,690)" to="(770,760)"/> <wire from="(770,690)" to="(790,690)"/> <wire from="(770,760)" to="(790,760)"/> <wire from="(780,1180)" to="(850,1180)"/> <wire from="(780,1240)" to="(850,1240)"/> <wire from="(780,1320)" to="(1310,1320)"/> <wire from="(810,100)" to="(950,100)"/> <wire from="(810,1050)" to="(970,1050)"/> <wire from="(810,880)" to="(1110,880)"/> <wire from="(810,880)" to="(810,1050)"/> <wire from="(830,550)" to="(860,550)"/> <wire from="(830,620)" to="(840,620)"/> <wire from="(830,690)" to="(840,690)"/> <wire from="(830,760)" to="(860,760)"/> <wire from="(840,620)" to="(840,660)"/> <wire from="(840,660)" to="(880,660)"/> <wire from="(840,680)" to="(840,690)"/> <wire from="(840,680)" to="(880,680)"/> <wire from="(850,390)" to="(1080,390)"/> <wire from="(850,390)" to="(850,500)"/> <wire from="(860,550)" to="(860,650)"/> <wire from="(860,650)" to="(880,650)"/> <wire from="(860,690)" to="(860,760)"/> <wire from="(860,690)" to="(880,690)"/> <wire from="(870,1180)" to="(1250,1180)"/> <wire from="(870,1240)" to="(1190,1240)"/> <wire from="(890,1030)" to="(970,1030)"/> <wire from="(890,120)" to="(910,120)"/> <wire from="(890,990)" to="(970,990)"/> <wire from="(930,120)" to="(950,120)"/> <wire from="(940,1010)" to="(970,1010)"/> <wire from="(940,230)" to="(940,630)"/> <wire from="(940,630)" to="(1110,630)"/> <wire from="(940,670)" to="(1430,670)"/> <wire from="(940,940)" to="(950,940)"/> <wire from="(940,970)" to="(970,970)"/> <wire from="(950,940)" to="(950,960)"/> <wire from="(950,960)" to="(970,960)"/> <wire from="(960,770)" to="(1040,770)"/> <wire from="(970,170)" to="(970,760)"/> <wire from="(970,760)" to="(1040,760)"/> <wire from="(990,110)" to="(1080,110)"/> </circuit> <circuit name="BRANCH_LOGIC"> <a name="appearance" val="custom"/> <a name="circuit" val="BRANCH_LOGIC"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M62,170 Q66,180 70,170" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ced8ff" height="240" stroke="#000000" stroke-width="2" width="130" x="50" y="170"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="142" y="209">/BRTAKEN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="154" y="349">BRFW</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="189">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="209">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="269">D126</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="389">BR2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="229">/IR5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="290">/C_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="349">/Z_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="329">/N_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="310">/V_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="249">D121</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="369">DB7</text> <circ-anchor facing="east" x="50" y="170"/> <circ-port dir="in" pin="130,130" x="50" y="270"/> <circ-port dir="in" pin="130,180" x="50" y="290"/> <circ-port dir="in" pin="130,230" x="50" y="310"/> <circ-port dir="in" pin="130,280" x="50" y="330"/> <circ-port dir="in" pin="130,30" x="50" y="230"/> <circ-port dir="in" pin="130,350" x="50" y="350"/> <circ-port dir="in" pin="130,410" x="50" y="190"/> <circ-port dir="in" pin="130,450" x="50" y="210"/> <circ-port dir="in" pin="130,490" x="50" y="370"/> <circ-port dir="in" pin="130,570" x="50" y="390"/> <circ-port dir="in" pin="130,80" x="50" y="250"/> <circ-port dir="out" pin="620,260" x="180" y="210"/> <circ-port dir="out" pin="620,670" x="180" y="350"/> </appear> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D126"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_C_OUT"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_V_OUT"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_N_OUT"/> </comp> <comp lib="0" loc="(130,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IR5"/> </comp> <comp lib="0" loc="(130,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_Z_OUT"/> </comp> <comp lib="0" loc="(130,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB7_in"/> </comp> <comp lib="0" loc="(130,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D121"/> </comp> <comp lib="0" loc="(620,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_BRTAKEN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(620,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BRFW"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(230,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,490)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,190)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,240)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,290)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,340)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(380,270)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(460,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(480,260)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(420,480)" name="Multiplexer"/> <comp lib="6" loc="(160,120)" name="Text"> <a name="text" val="/IR7"/> </comp> <comp lib="6" loc="(160,70)" name="Text"> <a name="text" val="/IR6"/> </comp> <comp lib="6" loc="(260,160)" name="Text"> <a name="text" val="2-MUX"/> </comp> <comp lib="6" loc="(500,650)" name="Text"> <a name="text" val="BRFW_FF"/> </comp> <comp loc="(250,560)" name="D_Latch"> <a name="label" val="br2_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(250,630)" name="D_Latch"> <a name="label" val="brfw_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(520,470)" name="D_Latch"> <a name="label" val="brfw_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,130)" to="(190,130)"/> <wire from="(130,180)" to="(240,180)"/> <wire from="(130,230)" to="(240,230)"/> <wire from="(130,280)" to="(240,280)"/> <wire from="(130,30)" to="(420,30)"/> <wire from="(130,350)" to="(240,350)"/> <wire from="(130,410)" to="(460,410)"/> <wire from="(130,450)" to="(190,450)"/> <wire from="(130,490)" to="(220,490)"/> <wire from="(130,570)" to="(210,570)"/> <wire from="(130,80)" to="(200,80)"/> <wire from="(190,130)" to="(190,190)"/> <wire from="(190,190)" to="(190,250)"/> <wire from="(190,190)" to="(240,190)"/> <wire from="(190,250)" to="(190,290)"/> <wire from="(190,250)" to="(210,250)"/> <wire from="(190,290)" to="(190,330)"/> <wire from="(190,290)" to="(210,290)"/> <wire from="(190,330)" to="(240,330)"/> <wire from="(190,450)" to="(190,550)"/> <wire from="(190,550)" to="(190,620)"/> <wire from="(190,550)" to="(210,550)"/> <wire from="(190,620)" to="(210,620)"/> <wire from="(190,640)" to="(190,670)"/> <wire from="(190,640)" to="(210,640)"/> <wire from="(190,670)" to="(550,670)"/> <wire from="(200,200)" to="(200,240)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(200,240)" to="(200,300)"/> <wire from="(200,240)" to="(240,240)"/> <wire from="(200,300)" to="(200,340)"/> <wire from="(200,300)" to="(210,300)"/> <wire from="(200,340)" to="(240,340)"/> <wire from="(200,80)" to="(200,200)"/> <wire from="(230,200)" to="(240,200)"/> <wire from="(230,250)" to="(240,250)"/> <wire from="(230,290)" to="(240,290)"/> <wire from="(230,300)" to="(240,300)"/> <wire from="(240,490)" to="(390,490)"/> <wire from="(250,550)" to="(400,550)"/> <wire from="(250,620)" to="(360,620)"/> <wire from="(280,190)" to="(300,190)"/> <wire from="(280,240)" to="(290,240)"/> <wire from="(280,290)" to="(290,290)"/> <wire from="(280,340)" to="(300,340)"/> <wire from="(290,240)" to="(290,260)"/> <wire from="(290,260)" to="(320,260)"/> <wire from="(290,280)" to="(290,290)"/> <wire from="(290,280)" to="(320,280)"/> <wire from="(300,190)" to="(300,250)"/> <wire from="(300,250)" to="(320,250)"/> <wire from="(300,290)" to="(300,340)"/> <wire from="(300,290)" to="(320,290)"/> <wire from="(360,470)" to="(360,620)"/> <wire from="(360,470)" to="(390,470)"/> <wire from="(380,270)" to="(440,270)"/> <wire from="(400,500)" to="(400,550)"/> <wire from="(420,250)" to="(440,250)"/> <wire from="(420,30)" to="(420,250)"/> <wire from="(420,480)" to="(440,480)"/> <wire from="(460,410)" to="(460,460)"/> <wire from="(460,460)" to="(480,460)"/> <wire from="(460,480)" to="(480,480)"/> <wire from="(480,260)" to="(620,260)"/> <wire from="(520,480)" to="(550,480)"/> <wire from="(550,480)" to="(550,670)"/> <wire from="(550,670)" to="(580,670)"/> <wire from="(600,670)" to="(620,670)"/> </circuit> <circuit name="PC_SETUP"> <a name="appearance" val="custom"/> <a name="circuit" val="PC_SETUP"/> <a name="clabel" val="PROGRAM COUNTER SETUP"/> <a name="clabelup" val="west"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M59,52 Q63,62 67,52" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#f5abff" height="300" stroke="#000000" stroke-width="2" width="170" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="80">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="100">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="160">BR0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="290">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="200">BR3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="180">BR2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="64" y="221">T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="65" y="240">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="186" y="80">#ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="193" y="101">PC/DB</text> <circ-anchor facing="east" x="60" y="50"/> <circ-port dir="in" pin="90,150" x="90" y="50"/> <circ-port dir="in" pin="90,180" x="100" y="50"/> <circ-port dir="in" pin="90,210" x="110" y="50"/> <circ-port dir="in" pin="90,250" x="120" y="50"/> <circ-port dir="in" pin="90,290" x="130" y="50"/> <circ-port dir="in" pin="90,330" x="140" y="50"/> <circ-port dir="in" pin="90,360" x="150" y="50"/> <circ-port dir="in" pin="90,390" x="160" y="50"/> <circ-port dir="in" pin="90,40" x="50" y="80"/> <circ-port dir="in" pin="90,440" x="190" y="50"/> <circ-port dir="in" pin="90,480" x="50" y="290"/> <circ-port dir="in" pin="90,520" x="50" y="200"/> <circ-port dir="in" pin="90,560" x="50" y="180"/> <circ-port dir="in" pin="90,600" x="50" y="220"/> <circ-port dir="in" pin="90,640" x="50" y="240"/> <circ-port dir="in" pin="90,690" x="50" y="160"/> <circ-port dir="in" pin="90,70" x="50" y="100"/> <circ-port dir="out" pin="1130,120" x="170" y="350"/> <circ-port dir="out" pin="1130,200" x="160" y="350"/> <circ-port dir="out" pin="1130,250" x="220" y="100"/> <circ-port dir="out" pin="1130,370" x="140" y="350"/> <circ-port dir="out" pin="1130,450" x="130" y="350"/> <circ-port dir="out" pin="1130,510" x="110" y="350"/> <circ-port dir="out" pin="1130,590" x="100" y="350"/> <circ-port dir="out" pin="1130,630" x="220" y="80"/> <circ-port dir="out" pin="1130,660" x="80" y="350"/> <circ-port dir="out" pin="1130,750" x="190" y="350"/> <circ-port dir="out" pin="1130,820" x="200" y="350"/> <circ-port dir="out" pin="1130,870" x="70" y="350"/> </appear> <comp lib="0" loc="(1130,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PC_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_PCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_PCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ADL_PCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,820)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PCH_PCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,520)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(120,560)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(120,600)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(120,640)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(130,290)" name="Tunnel"> <a name="label" val="RTS_5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(390,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(500,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(510,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS_5"/> </comp> <comp lib="0" loc="(540,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(550,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(550,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(560,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(560,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(570,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS_5"/> </comp> <comp lib="0" loc="(590,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(590,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(810,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D56"/> </comp> <comp lib="0" loc="(90,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D77"/> </comp> <comp lib="0" loc="(90,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D78"/> </comp> <comp lib="0" loc="(90,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D83"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D84"/> </comp> <comp lib="0" loc="(90,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D94"/> </comp> <comp lib="0" loc="(90,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D95"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D96"/> </comp> <comp lib="0" loc="(90,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D129"/> </comp> <comp lib="0" loc="(90,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(90,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(90,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(90,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(90,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR0"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(1030,510)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1030,590)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1030,750)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1030,820)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1070,120)" name="Buffer"/> <comp lib="1" loc="(1070,200)" name="Buffer"/> <comp lib="1" loc="(1070,370)" name="Buffer"/> <comp lib="1" loc="(1070,450)" name="Buffer"/> <comp lib="1" loc="(1070,510)" name="Buffer"/> <comp lib="1" loc="(1070,590)" name="Buffer"/> <comp lib="1" loc="(1070,750)" name="Buffer"/> <comp lib="1" loc="(1070,820)" name="Buffer"/> <comp lib="1" loc="(170,360)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,260)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,560)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,650)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,370)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,660)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,570)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,520)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(670,160)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,370)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(680,760)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(780,440)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(860,450)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(120,140)" name="Text"> <a name="text" val="JSR/5"/> </comp> <comp lib="6" loc="(135,430)" name="Text"> <a name="text" val="Push/pull"/> </comp> <comp lib="6" loc="(205,355)" name="Text"> <a name="text" val="JB"/> </comp> <comp lib="6" loc="(455,255)" name="Text"> <a name="text" val="ABS/2"/> </comp> <comp lib="6" loc="(465,190)" name="Text"> <a name="text" val="#PCH/DB"/> </comp> <comp lib="6" loc="(540,655)" name="Text"> <a name="text" val="DL/PCH"/> </comp> <comp lib="6" loc="(620,110)" name="Text"> <a name="text" val="#PCL/DB"/> </comp> <comp lib="6" loc="(670,465)" name="Text"> <a name="text" val="DL/PCH"/> </comp> <comp lib="6" loc="(695,155)" name="Text"> <a name="text" val="PC/DB"/> </comp> <comp lib="6" loc="(740,360)" name="Text"> <a name="text" val="#PCL/ADL"/> </comp> <comp lib="6" loc="(765,750)" name="Text"> <a name="text" val="#ADH/PCH"/> </comp> <comp lib="6" loc="(775,515)" name="Text"> <a name="text" val="#ADL/PCL"/> </comp> <comp loc="(370,130)" name="D_Latch"> <a name="label" val="pch_db_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(370,300)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,110)" name="D_Latch"> <a name="label" val="pcl_db_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,110)" name="D_Latch"> <a name="label" val="pcl_db_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,190)" name="D_Latch"> <a name="label" val="pch_db_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,360)" name="D_Latch"> <a name="label" val="pcl_adl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,440)" name="D_Latch"> <a name="label" val="pch_adh_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,510)" name="D_Latch"> <a name="label" val="pcl_pcl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,590)" name="D_Latch"> <a name="label" val="adl_pcl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,750)" name="D_Latch"> <a name="label" val="adh_pch_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(940,820)" name="D_Latch"> <a name="label" val="pch_pch_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1030,510)" to="(1050,510)"/> <wire from="(1030,590)" to="(1050,590)"/> <wire from="(1030,750)" to="(1050,750)"/> <wire from="(1030,820)" to="(1050,820)"/> <wire from="(1070,120)" to="(1130,120)"/> <wire from="(1070,200)" to="(1130,200)"/> <wire from="(1070,370)" to="(1130,370)"/> <wire from="(1070,450)" to="(1130,450)"/> <wire from="(1070,510)" to="(1130,510)"/> <wire from="(1070,590)" to="(1130,590)"/> <wire from="(1070,750)" to="(1130,750)"/> <wire from="(1070,820)" to="(1130,820)"/> <wire from="(110,330)" to="(110,350)"/> <wire from="(110,350)" to="(130,350)"/> <wire from="(110,370)" to="(110,390)"/> <wire from="(110,370)" to="(130,370)"/> <wire from="(160,180)" to="(160,190)"/> <wire from="(160,190)" to="(190,190)"/> <wire from="(170,360)" to="(340,360)"/> <wire from="(180,270)" to="(180,440)"/> <wire from="(180,270)" to="(190,270)"/> <wire from="(230,200)" to="(290,200)"/> <wire from="(230,260)" to="(250,260)"/> <wire from="(250,150)" to="(250,230)"/> <wire from="(250,230)" to="(550,230)"/> <wire from="(250,260)" to="(250,740)"/> <wire from="(250,260)" to="(530,260)"/> <wire from="(250,740)" to="(600,740)"/> <wire from="(270,290)" to="(330,290)"/> <wire from="(270,40)" to="(270,290)"/> <wire from="(270,40)" to="(510,40)"/> <wire from="(290,140)" to="(290,200)"/> <wire from="(290,140)" to="(330,140)"/> <wire from="(290,200)" to="(610,200)"/> <wire from="(310,120)" to="(330,120)"/> <wire from="(310,170)" to="(310,310)"/> <wire from="(310,170)" to="(390,170)"/> <wire from="(310,310)" to="(310,480)"/> <wire from="(310,310)" to="(330,310)"/> <wire from="(310,70)" to="(310,120)"/> <wire from="(310,70)" to="(880,70)"/> <wire from="(340,360)" to="(340,670)"/> <wire from="(340,360)" to="(410,360)"/> <wire from="(340,670)" to="(470,670)"/> <wire from="(370,120)" to="(390,120)"/> <wire from="(370,290)" to="(390,290)"/> <wire from="(390,120)" to="(390,140)"/> <wire from="(390,140)" to="(410,140)"/> <wire from="(390,160)" to="(390,170)"/> <wire from="(390,160)" to="(410,160)"/> <wire from="(390,290)" to="(390,380)"/> <wire from="(390,380)" to="(390,560)"/> <wire from="(390,380)" to="(410,380)"/> <wire from="(390,560)" to="(410,560)"/> <wire from="(390,650)" to="(410,650)"/> <wire from="(430,560)" to="(510,560)"/> <wire from="(430,650)" to="(450,650)"/> <wire from="(450,150)" to="(510,150)"/> <wire from="(450,370)" to="(470,370)"/> <wire from="(450,390)" to="(450,650)"/> <wire from="(450,390)" to="(470,390)"/> <wire from="(450,650)" to="(470,650)"/> <wire from="(500,580)" to="(510,580)"/> <wire from="(510,100)" to="(530,100)"/> <wire from="(510,120)" to="(510,150)"/> <wire from="(510,120)" to="(530,120)"/> <wire from="(510,380)" to="(610,380)"/> <wire from="(510,40)" to="(510,100)"/> <wire from="(510,510)" to="(570,510)"/> <wire from="(510,660)" to="(700,660)"/> <wire from="(530,260)" to="(530,370)"/> <wire from="(530,370)" to="(610,370)"/> <wire from="(530,430)" to="(530,500)"/> <wire from="(530,430)" to="(720,430)"/> <wire from="(530,500)" to="(540,500)"/> <wire from="(540,530)" to="(570,530)"/> <wire from="(540,570)" to="(550,570)"/> <wire from="(550,230)" to="(550,360)"/> <wire from="(550,360)" to="(610,360)"/> <wire from="(550,540)" to="(550,570)"/> <wire from="(550,540)" to="(570,540)"/> <wire from="(550,760)" to="(570,760)"/> <wire from="(550,790)" to="(570,790)"/> <wire from="(560,500)" to="(570,500)"/> <wire from="(560,820)" to="(580,820)"/> <wire from="(560,850)" to="(590,850)"/> <wire from="(570,120)" to="(610,120)"/> <wire from="(570,720)" to="(580,720)"/> <wire from="(570,750)" to="(570,760)"/> <wire from="(570,750)" to="(600,750)"/> <wire from="(570,770)" to="(570,790)"/> <wire from="(570,770)" to="(600,770)"/> <wire from="(580,720)" to="(580,730)"/> <wire from="(580,730)" to="(600,730)"/> <wire from="(580,780)" to="(580,820)"/> <wire from="(580,780)" to="(600,780)"/> <wire from="(590,330)" to="(600,330)"/> <wire from="(590,410)" to="(600,410)"/> <wire from="(590,790)" to="(590,850)"/> <wire from="(590,790)" to="(600,790)"/> <wire from="(600,330)" to="(600,350)"/> <wire from="(600,350)" to="(610,350)"/> <wire from="(600,390)" to="(600,410)"/> <wire from="(600,390)" to="(610,390)"/> <wire from="(610,120)" to="(610,150)"/> <wire from="(610,120)" to="(900,120)"/> <wire from="(610,150)" to="(630,150)"/> <wire from="(610,170)" to="(610,200)"/> <wire from="(610,170)" to="(630,170)"/> <wire from="(610,200)" to="(900,200)"/> <wire from="(630,520)" to="(820,520)"/> <wire from="(670,160)" to="(790,160)"/> <wire from="(670,370)" to="(720,370)"/> <wire from="(680,760)" to="(730,760)"/> <wire from="(700,440)" to="(700,660)"/> <wire from="(700,440)" to="(740,440)"/> <wire from="(700,660)" to="(1130,660)"/> <wire from="(720,370)" to="(720,430)"/> <wire from="(720,370)" to="(900,370)"/> <wire from="(720,430)" to="(740,430)"/> <wire from="(720,450)" to="(720,690)"/> <wire from="(720,450)" to="(740,450)"/> <wire from="(730,760)" to="(730,830)"/> <wire from="(730,760)" to="(900,760)"/> <wire from="(730,830)" to="(760,830)"/> <wire from="(780,440)" to="(820,440)"/> <wire from="(780,830)" to="(820,830)"/> <wire from="(790,160)" to="(790,250)"/> <wire from="(790,250)" to="(1130,250)"/> <wire from="(810,460)" to="(820,460)"/> <wire from="(820,520)" to="(820,600)"/> <wire from="(820,520)" to="(840,520)"/> <wire from="(820,600)" to="(820,630)"/> <wire from="(820,600)" to="(900,600)"/> <wire from="(820,630)" to="(1130,630)"/> <wire from="(820,830)" to="(820,870)"/> <wire from="(820,830)" to="(900,830)"/> <wire from="(820,870)" to="(1130,870)"/> <wire from="(860,450)" to="(900,450)"/> <wire from="(860,520)" to="(900,520)"/> <wire from="(880,100)" to="(880,180)"/> <wire from="(880,100)" to="(900,100)"/> <wire from="(880,180)" to="(880,290)"/> <wire from="(880,180)" to="(900,180)"/> <wire from="(880,290)" to="(880,350)"/> <wire from="(880,290)" to="(970,290)"/> <wire from="(880,350)" to="(880,430)"/> <wire from="(880,350)" to="(900,350)"/> <wire from="(880,430)" to="(880,500)"/> <wire from="(880,430)" to="(900,430)"/> <wire from="(880,500)" to="(880,580)"/> <wire from="(880,500)" to="(900,500)"/> <wire from="(880,580)" to="(880,740)"/> <wire from="(880,580)" to="(900,580)"/> <wire from="(880,70)" to="(880,100)"/> <wire from="(880,740)" to="(880,810)"/> <wire from="(880,740)" to="(900,740)"/> <wire from="(880,810)" to="(900,810)"/> <wire from="(90,150)" to="(250,150)"/> <wire from="(90,180)" to="(160,180)"/> <wire from="(90,210)" to="(190,210)"/> <wire from="(90,250)" to="(200,250)"/> <wire from="(90,290)" to="(130,290)"/> <wire from="(90,330)" to="(110,330)"/> <wire from="(90,360)" to="(130,360)"/> <wire from="(90,390)" to="(110,390)"/> <wire from="(90,40)" to="(270,40)"/> <wire from="(90,440)" to="(180,440)"/> <wire from="(90,480)" to="(310,480)"/> <wire from="(90,520)" to="(120,520)"/> <wire from="(90,560)" to="(120,560)"/> <wire from="(90,600)" to="(120,600)"/> <wire from="(90,640)" to="(120,640)"/> <wire from="(90,690)" to="(720,690)"/> <wire from="(90,70)" to="(310,70)"/> <wire from="(940,120)" to="(1050,120)"/> <wire from="(940,200)" to="(1050,200)"/> <wire from="(940,370)" to="(1050,370)"/> <wire from="(940,450)" to="(1050,450)"/> <wire from="(940,500)" to="(990,500)"/> <wire from="(940,580)" to="(990,580)"/> <wire from="(940,740)" to="(990,740)"/> <wire from="(940,810)" to="(990,810)"/> <wire from="(970,290)" to="(970,520)"/> <wire from="(970,520)" to="(970,600)"/> <wire from="(970,520)" to="(990,520)"/> <wire from="(970,600)" to="(970,760)"/> <wire from="(970,600)" to="(990,600)"/> <wire from="(970,760)" to="(970,830)"/> <wire from="(970,760)" to="(990,760)"/> <wire from="(970,830)" to="(990,830)"/> </circuit> <circuit name="DISPATCH"> <a name="appearance" val="custom"/> <a name="circuit" val="DISPATCH"/> <a name="clabel" val="DISPATCH"/> <a name="clabelfont" val="SansSerif plain 20"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M61,50 Q65,60 69,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ffac65" height="330" stroke="#000000" stroke-width="2" width="300" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="321">RDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="81">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="102">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="121">BRK6E</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="304" y="298">/TWOCYCLE</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="161">BR3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="141">BR2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="315" y="179">/IMPLIED</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="323" y="238">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="281">/BRTAKEN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="331" y="79">T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="118">T6</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="333" y="138">T7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="321" y="338">TRES2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="98">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="261">BFRW</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="301">DORES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="201">#ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="181">RESP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="341">ACR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="221">PC/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="241">B_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="332" y="358">/T0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="323" y="317">STOR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="320" y="277">ACRL2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="319" y="372">WR</text> <circ-anchor facing="east" x="80" y="50"/> <circ-port dir="in" pin="160,1020" x="50" y="280"/> <circ-port dir="in" pin="160,1570" x="350" y="300"/> <circ-port dir="in" pin="160,1680" x="50" y="200"/> <circ-port dir="in" pin="160,170" x="50" y="120"/> <circ-port dir="in" pin="160,1880" x="350" y="180"/> <circ-port dir="in" pin="160,200" x="50" y="140"/> <circ-port dir="in" pin="160,230" x="50" y="180"/> <circ-port dir="in" pin="160,260" x="50" y="340"/> <circ-port dir="in" pin="160,290" x="50" y="300"/> <circ-port dir="in" pin="160,320" x="50" y="220"/> <circ-port dir="in" pin="160,350" x="70" y="50"/> <circ-port dir="in" pin="160,380" x="80" y="50"/> <circ-port dir="in" pin="160,420" x="50" y="160"/> <circ-port dir="in" pin="160,450" x="90" y="50"/> <circ-port dir="in" pin="160,480" x="100" y="50"/> <circ-port dir="in" pin="160,50" x="50" y="80"/> <circ-port dir="in" pin="160,510" x="110" y="50"/> <circ-port dir="in" pin="160,540" x="120" y="50"/> <circ-port dir="in" pin="160,570" x="130" y="50"/> <circ-port dir="in" pin="160,600" x="140" y="50"/> <circ-port dir="in" pin="160,630" x="150" y="50"/> <circ-port dir="in" pin="160,660" x="160" y="50"/> <circ-port dir="in" pin="160,690" x="170" y="50"/> <circ-port dir="in" pin="160,720" x="180" y="50"/> <circ-port dir="in" pin="160,750" x="190" y="50"/> <circ-port dir="in" pin="160,780" x="200" y="50"/> <circ-port dir="in" pin="160,80" x="50" y="100"/> <circ-port dir="in" pin="160,810" x="220" y="50"/> <circ-port dir="in" pin="160,840" x="230" y="50"/> <circ-port dir="in" pin="160,870" x="240" y="50"/> <circ-port dir="in" pin="160,900" x="250" y="50"/> <circ-port dir="in" pin="160,930" x="50" y="320"/> <circ-port dir="in" pin="160,960" x="50" y="240"/> <circ-port dir="in" pin="160,990" x="50" y="260"/> <circ-port dir="out" pin="1230,1090" x="320" y="380"/> <circ-port dir="out" pin="1230,1260" x="350" y="100"/> <circ-port dir="out" pin="1230,1480" x="350" y="360"/> <circ-port dir="out" pin="1230,1550" x="350" y="80"/> <circ-port dir="out" pin="1230,1650" x="240" y="380"/> <circ-port dir="out" pin="1230,170" x="350" y="120"/> <circ-port dir="out" pin="1230,1760" x="300" y="380"/> <circ-port dir="out" pin="1230,280" x="350" y="140"/> <circ-port dir="out" pin="1230,30" x="350" y="280"/> <circ-port dir="out" pin="1230,360" x="350" y="340"/> <circ-port dir="out" pin="1230,490" x="350" y="320"/> <circ-port dir="out" pin="1230,820" x="100" y="380"/> <circ-port dir="out" pin="1230,860" x="120" y="380"/> <circ-port dir="out" pin="1230,910" x="350" y="240"/> </appear> <comp lib="0" loc="(1010,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1030,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1030,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(1080,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(1090,1310)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(1160,1600)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(1170,210)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(1170,320)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(1170,440)" name="Tunnel"> <a name="label" val="n_TRESX"/> </comp> <comp lib="0" loc="(1190,940)" name="Tunnel"> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(1230,1090)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,1260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="T1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,1480)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,1550)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,1650)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_T1X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="T6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,1760)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_IPC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="T7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ACRL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="TRES2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="STOR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,820)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_IR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="FETCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1230,910)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ready"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(160,1020)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_BRTAKEN"/> </comp> <comp lib="0" loc="(160,1570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_TWOCYCLE"/> </comp> <comp lib="0" loc="(160,1680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ADL_PCL"/> </comp> <comp lib="0" loc="(160,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(160,1880)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IMPLIED"/> </comp> <comp lib="0" loc="(160,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(160,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(160,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(160,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PC_DB"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D91"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D92"/> </comp> <comp lib="0" loc="(160,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(160,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D96"/> </comp> <comp lib="0" loc="(160,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D97"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(160,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D98"/> </comp> <comp lib="0" loc="(160,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D100"/> </comp> <comp lib="0" loc="(160,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D101"/> </comp> <comp lib="0" loc="(160,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D102"/> </comp> <comp lib="0" loc="(160,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D103"/> </comp> <comp lib="0" loc="(160,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D104"/> </comp> <comp lib="0" loc="(160,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D105"/> </comp> <comp lib="0" loc="(160,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D106"/> </comp> <comp lib="0" loc="(160,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D107"/> </comp> <comp lib="0" loc="(160,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D111"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D122"/> </comp> <comp lib="0" loc="(160,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D123"/> </comp> <comp lib="0" loc="(160,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D124"/> </comp> <comp lib="0" loc="(160,900)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D125"/> </comp> <comp lib="0" loc="(160,930)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(160,960)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(160,990)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(170,170)" name="Tunnel"> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(170,200)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(170,230)" name="Tunnel"> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(170,260)" name="Tunnel"> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(170,290)" name="Tunnel"> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(170,420)" name="Tunnel"> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(170,50)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(170,80)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(170,960)" name="Tunnel"> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(170,990)" name="Tunnel"> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(210,1720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(210,1740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(290,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotReadyPhi1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(290,730)" name="Tunnel"> <a name="label" val="n_SHIFT"/> </comp> <comp lib="0" loc="(290,840)" name="Tunnel"> <a name="label" val="n_MemOP"/> </comp> <comp lib="0" loc="(310,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(310,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(330,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(330,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(330,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACR"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(370,1220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(380,1400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(380,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(410,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(420,1260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(420,1380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(470,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(510,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(520,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(530,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(530,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(530,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(540,1070)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(540,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(550,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,1210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(550,1380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(550,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_TRESX"/> </comp> <comp lib="0" loc="(550,1690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(550,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(620,1400)" name="Tunnel"> <a name="label" val="NotReadyPhi1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(640,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(640,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(730,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> </comp> <comp lib="0" loc="(730,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(740,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> </comp> <comp lib="0" loc="(750,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(770,1660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(810,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DORES"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(810,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(810,1340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(820,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(840,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(860,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(880,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(910,1230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(910,1630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(910,1730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="B_OUT"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(920,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(930,1040)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(930,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(930,1480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(930,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(930,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(930,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(930,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(980,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(990,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(1000,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1020,910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1060,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1080,1790)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1090,830)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1100,1550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1130,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1160,1760)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1160,820)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,370)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,1730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,840)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(300,1730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,1880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,620)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(320,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,1030)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,1630)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(380,1720)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,100)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,1220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,1050)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,990)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,1710)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,560)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(480,130)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,1140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(560,620)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,1290)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,620)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,1590)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,450)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,1260)" name="AND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(700,1020)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,690)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(800,1490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(800,1540)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(800,200)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(810,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(840,360)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(870,1060)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1150)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1410)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1500)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1650)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,1870)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,910)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(880,660)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(890,280)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(920,120)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(940,620)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,1410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,440)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(500,1000)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="6" loc="(1030,1400)" name="Text"> <a name="text" val="TRES1"/> </comp> <comp lib="6" loc="(280,470)" name="Text"> <a name="text" val="/STORE"/> </comp> <comp lib="6" loc="(435,225)" name="Text"> <a name="text" val="ACRL_FF"/> </comp> <comp lib="6" loc="(490,510)" name="Text"> <a name="text" val="STOR"/> </comp> <comp lib="6" loc="(505,1350)" name="Text"> <a name="text" val="ReadyDelay"/> </comp> <comp lib="6" loc="(720,1015)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="6" loc="(725,325)" name="Text"> <a name="text" val="ACRL1"/> </comp> <comp lib="6" loc="(725,445)" name="Text"> <a name="text" val="REST"/> </comp> <comp lib="6" loc="(775,1415)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="6" loc="(775,750)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="6" loc="(810,685)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="ENDX"/> </comp> <comp lib="6" loc="(810,870)" name="Text"> <a name="text" val="RDY"/> </comp> <comp lib="6" loc="(840,1215)" name="Text"> <a name="text" val="STEP_FF"/> </comp> <comp lib="6" loc="(885,1565)" name="Text"> <a name="text" val="T0_FF"/> </comp> <comp lib="6" loc="(895,1075)" name="Text"> <a name="text" val="WR"/> </comp> <comp lib="6" loc="(930,955)" name="Text"> <a name="text" val="RDY_FF"/> </comp> <comp lib="6" loc="(955,90)" name="Text"> <a name="text" val="T6_FF"/> </comp> <comp loc="(1030,610)" name="D_Latch"> <a name="label" val="tresx_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1080,160)" name="D_Latch"> <a name="label" val="t6_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1080,270)" name="D_Latch"> <a name="label" val="t7_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1080,350)" name="D_Latch"> <a name="label" val="tres2_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1080,80)" name="D_Latch"> <a name="label" val="t6_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(470,1390)" name="D_Latch"> <a name="label" val="rdydelay_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1060)" name="D_Latch"> <a name="label" val="ends_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1130)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,120)" name="D_Latch"> <a name="label" val="acr_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1220)" name="D_Latch"> <a name="label" val="br_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1390)" name="D_Latch"> <a name="label" val="rdydelay_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1490)" name="D_Latch"> <a name="label" val="comp_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1560)" name="D_Latch"> <a name="label" val="comp_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1630)" name="D_Latch"> <a name="label" val="comp_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,1700)" name="D_Latch"> <a name="label" val="br_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,220)" name="D_Latch"> <a name="label" val="acr_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,360)" name="D_Latch"> <a name="label" val="tresx_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,920)" name="D_Latch"> <a name="label" val="wr_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,990)" name="D_Latch"> <a name="label" val="ends_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(890,190)" name="D_Latch"> <a name="label" val="t67_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1050)" name="D_Latch"> <a name="label" val="ready_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1140)" name="D_Latch"> <a name="label" val="step_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1240)" name="D_Latch"> <a name="label" val="step_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1330)" name="D_Latch"> <a name="label" val="t1_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1490)" name="D_Latch"> <a name="label" val="t0_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1640)" name="D_Latch"> <a name="label" val="t1x_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1720)" name="D_Latch"> <a name="label" val="ipc_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1790)" name="D_Latch"> <a name="label" val="ipc_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1860)" name="D_Latch"> <a name="label" val="ipc_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,270)" name="D_Latch"> <a name="label" val="t7_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,810)" name="D_Latch"> <a name="label" val="fetch_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,900)" name="D_Latch"> <a name="label" val="ready_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,1130)" to="(1000,1180)"/> <wire from="(1000,1200)" to="(1000,1230)"/> <wire from="(1000,170)" to="(1040,170)"/> <wire from="(1010,480)" to="(1020,480)"/> <wire from="(1020,120)" to="(1100,120)"/> <wire from="(1020,150)" to="(1020,260)"/> <wire from="(1020,150)" to="(1040,150)"/> <wire from="(1020,1580)" to="(1020,1630)"/> <wire from="(1020,260)" to="(1020,340)"/> <wire from="(1020,260)" to="(1040,260)"/> <wire from="(1020,340)" to="(1040,340)"/> <wire from="(1020,360)" to="(1020,440)"/> <wire from="(1020,360)" to="(1040,360)"/> <wire from="(1020,440)" to="(1170,440)"/> <wire from="(1020,90)" to="(1020,120)"/> <wire from="(1020,90)" to="(1040,90)"/> <wire from="(1020,910)" to="(1040,910)"/> <wire from="(1020,970)" to="(1020,1040)"/> <wire from="(1030,1800)" to="(1030,1850)"/> <wire from="(1030,1800)" to="(1050,1800)"/> <wire from="(1030,620)" to="(1050,620)"/> <wire from="(1030,70)" to="(1040,70)"/> <wire from="(1030,860)" to="(1040,860)"/> <wire from="(1040,1480)" to="(1040,1600)"/> <wire from="(1040,840)" to="(1040,860)"/> <wire from="(1040,840)" to="(1050,840)"/> <wire from="(1040,910)" to="(1040,990)"/> <wire from="(1040,910)" to="(1160,910)"/> <wire from="(1050,550)" to="(1050,620)"/> <wire from="(1060,1260)" to="(1060,1310)"/> <wire from="(1060,1260)" to="(1230,1260)"/> <wire from="(1060,1310)" to="(1060,1340)"/> <wire from="(1060,1310)" to="(1090,1310)"/> <wire from="(1060,1410)" to="(1060,1450)"/> <wire from="(1060,1480)" to="(1060,1550)"/> <wire from="(1060,1480)" to="(1230,1480)"/> <wire from="(1060,1550)" to="(1080,1550)"/> <wire from="(1060,490)" to="(1160,490)"/> <wire from="(1080,170)" to="(1100,170)"/> <wire from="(1080,1790)" to="(1100,1790)"/> <wire from="(1080,280)" to="(1110,280)"/> <wire from="(1080,360)" to="(1230,360)"/> <wire from="(1080,70)" to="(1100,70)"/> <wire from="(1080,780)" to="(1100,780)"/> <wire from="(1090,830)" to="(1100,830)"/> <wire from="(1100,120)" to="(1100,170)"/> <wire from="(1100,1550)" to="(1120,1550)"/> <wire from="(1100,170)" to="(1100,230)"/> <wire from="(1100,170)" to="(1160,170)"/> <wire from="(1100,1710)" to="(1100,1750)"/> <wire from="(1100,1750)" to="(1120,1750)"/> <wire from="(1100,1770)" to="(1100,1790)"/> <wire from="(1100,1770)" to="(1120,1770)"/> <wire from="(1100,40)" to="(1100,70)"/> <wire from="(1100,780)" to="(1100,810)"/> <wire from="(1100,810)" to="(1120,810)"/> <wire from="(1100,830)" to="(1100,860)"/> <wire from="(1100,830)" to="(1120,830)"/> <wire from="(1100,860)" to="(1230,860)"/> <wire from="(1120,1550)" to="(1120,1600)"/> <wire from="(1120,1550)" to="(1230,1550)"/> <wire from="(1120,1600)" to="(1160,1600)"/> <wire from="(1130,280)" to="(1160,280)"/> <wire from="(1160,170)" to="(1160,210)"/> <wire from="(1160,170)" to="(1230,170)"/> <wire from="(1160,1760)" to="(1230,1760)"/> <wire from="(1160,210)" to="(1170,210)"/> <wire from="(1160,280)" to="(1160,320)"/> <wire from="(1160,280)" to="(1230,280)"/> <wire from="(1160,320)" to="(1170,320)"/> <wire from="(1160,490)" to="(1160,520)"/> <wire from="(1160,490)" to="(1230,490)"/> <wire from="(1160,820)" to="(1230,820)"/> <wire from="(1160,910)" to="(1160,940)"/> <wire from="(1160,910)" to="(1230,910)"/> <wire from="(1160,940)" to="(1190,940)"/> <wire from="(160,1020)" to="(290,1020)"/> <wire from="(160,1570)" to="(560,1570)"/> <wire from="(160,1680)" to="(320,1680)"/> <wire from="(160,170)" to="(170,170)"/> <wire from="(160,1880)" to="(280,1880)"/> <wire from="(160,200)" to="(170,200)"/> <wire from="(160,230)" to="(170,230)"/> <wire from="(160,260)" to="(170,260)"/> <wire from="(160,290)" to="(170,290)"/> <wire from="(160,320)" to="(360,320)"/> <wire from="(160,350)" to="(180,350)"/> <wire from="(160,380)" to="(200,380)"/> <wire from="(160,420)" to="(170,420)"/> <wire from="(160,450)" to="(560,450)"/> <wire from="(160,480)" to="(210,480)"/> <wire from="(160,50)" to="(170,50)"/> <wire from="(160,510)" to="(350,510)"/> <wire from="(160,540)" to="(200,540)"/> <wire from="(160,570)" to="(190,570)"/> <wire from="(160,600)" to="(180,600)"/> <wire from="(160,630)" to="(220,630)"/> <wire from="(160,660)" to="(180,660)"/> <wire from="(160,690)" to="(190,690)"/> <wire from="(160,720)" to="(230,720)"/> <wire from="(160,750)" to="(180,750)"/> <wire from="(160,780)" to="(190,780)"/> <wire from="(160,80)" to="(170,80)"/> <wire from="(160,810)" to="(180,810)"/> <wire from="(160,840)" to="(210,840)"/> <wire from="(160,870)" to="(180,870)"/> <wire from="(160,900)" to="(190,900)"/> <wire from="(160,930)" to="(400,930)"/> <wire from="(160,960)" to="(170,960)"/> <wire from="(160,990)" to="(170,990)"/> <wire from="(180,350)" to="(180,360)"/> <wire from="(180,360)" to="(200,360)"/> <wire from="(180,600)" to="(180,610)"/> <wire from="(180,610)" to="(220,610)"/> <wire from="(180,640)" to="(180,660)"/> <wire from="(180,640)" to="(220,640)"/> <wire from="(180,740)" to="(180,750)"/> <wire from="(180,740)" to="(230,740)"/> <wire from="(180,810)" to="(180,830)"/> <wire from="(180,830)" to="(210,830)"/> <wire from="(180,850)" to="(180,870)"/> <wire from="(180,850)" to="(210,850)"/> <wire from="(190,570)" to="(190,600)"/> <wire from="(190,600)" to="(220,600)"/> <wire from="(190,650)" to="(190,690)"/> <wire from="(190,650)" to="(220,650)"/> <wire from="(190,780)" to="(190,820)"/> <wire from="(190,820)" to="(210,820)"/> <wire from="(190,860)" to="(190,900)"/> <wire from="(190,860)" to="(210,860)"/> <wire from="(200,540)" to="(200,590)"/> <wire from="(200,540)" to="(340,540)"/> <wire from="(200,590)" to="(220,590)"/> <wire from="(210,1720)" to="(220,1720)"/> <wire from="(210,1740)" to="(220,1740)"/> <wire from="(230,480)" to="(610,480)"/> <wire from="(240,370)" to="(560,370)"/> <wire from="(260,1730)" to="(280,1730)"/> <wire from="(270,730)" to="(290,730)"/> <wire from="(270,840)" to="(290,840)"/> <wire from="(290,1020)" to="(290,1620)"/> <wire from="(290,1020)" to="(340,1020)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(290,1620)" to="(340,1620)"/> <wire from="(300,1730)" to="(340,1730)"/> <wire from="(300,1880)" to="(830,1880)"/> <wire from="(300,620)" to="(330,620)"/> <wire from="(310,560)" to="(330,560)"/> <wire from="(310,590)" to="(380,590)"/> <wire from="(320,110)" to="(350,110)"/> <wire from="(320,1680)" to="(320,1710)"/> <wire from="(320,1710)" to="(340,1710)"/> <wire from="(330,1040)" to="(340,1040)"/> <wire from="(330,1640)" to="(340,1640)"/> <wire from="(330,560)" to="(330,580)"/> <wire from="(330,580)" to="(380,580)"/> <wire from="(330,90)" to="(340,90)"/> <wire from="(340,540)" to="(340,570)"/> <wire from="(340,570)" to="(380,570)"/> <wire from="(350,110)" to="(350,160)"/> <wire from="(350,110)" to="(380,110)"/> <wire from="(350,160)" to="(370,160)"/> <wire from="(350,180)" to="(350,270)"/> <wire from="(350,180)" to="(370,180)"/> <wire from="(350,270)" to="(640,270)"/> <wire from="(350,510)" to="(350,550)"/> <wire from="(350,550)" to="(380,550)"/> <wire from="(350,620)" to="(370,620)"/> <wire from="(360,320)" to="(360,540)"/> <wire from="(360,540)" to="(380,540)"/> <wire from="(360,90)" to="(380,90)"/> <wire from="(370,1030)" to="(400,1030)"/> <wire from="(370,1220)" to="(400,1220)"/> <wire from="(370,1630)" to="(400,1630)"/> <wire from="(370,500)" to="(370,530)"/> <wire from="(370,500)" to="(460,500)"/> <wire from="(370,530)" to="(380,530)"/> <wire from="(370,620)" to="(370,700)"/> <wire from="(370,700)" to="(670,700)"/> <wire from="(380,1400)" to="(430,1400)"/> <wire from="(380,1720)" to="(420,1720)"/> <wire from="(380,980)" to="(410,980)"/> <wire from="(400,1000)" to="(400,1030)"/> <wire from="(400,1000)" to="(410,1000)"/> <wire from="(400,1630)" to="(400,1700)"/> <wire from="(400,1700)" to="(420,1700)"/> <wire from="(400,880)" to="(400,930)"/> <wire from="(400,880)" to="(820,880)"/> <wire from="(410,100)" to="(430,100)"/> <wire from="(410,1050)" to="(430,1050)"/> <wire from="(410,170)" to="(430,170)"/> <wire from="(420,1220)" to="(460,1220)"/> <wire from="(420,1260)" to="(440,1260)"/> <wire from="(420,1380)" to="(430,1380)"/> <wire from="(430,100)" to="(430,120)"/> <wire from="(430,120)" to="(440,120)"/> <wire from="(430,140)" to="(430,170)"/> <wire from="(430,140)" to="(440,140)"/> <wire from="(440,1240)" to="(440,1260)"/> <wire from="(440,1240)" to="(460,1240)"/> <wire from="(450,1050)" to="(460,1050)"/> <wire from="(450,990)" to="(470,990)"/> <wire from="(460,1010)" to="(460,1050)"/> <wire from="(460,1010)" to="(470,1010)"/> <wire from="(460,1710)" to="(560,1710)"/> <wire from="(460,500)" to="(460,520)"/> <wire from="(460,520)" to="(1160,520)"/> <wire from="(460,560)" to="(470,560)"/> <wire from="(470,1400)" to="(560,1400)"/> <wire from="(470,560)" to="(470,930)"/> <wire from="(470,930)" to="(560,930)"/> <wire from="(470,960)" to="(480,960)"/> <wire from="(480,130)" to="(490,130)"/> <wire from="(480,960)" to="(480,980)"/> <wire from="(490,130)" to="(490,310)"/> <wire from="(490,130)" to="(560,130)"/> <wire from="(490,310)" to="(760,310)"/> <wire from="(500,1000)" to="(560,1000)"/> <wire from="(500,1140)" to="(520,1140)"/> <wire from="(500,1230)" to="(560,1230)"/> <wire from="(510,1310)" to="(520,1310)"/> <wire from="(510,1450)" to="(1060,1450)"/> <wire from="(510,1450)" to="(510,1500)"/> <wire from="(510,1500)" to="(560,1500)"/> <wire from="(510,170)" to="(510,230)"/> <wire from="(510,170)" to="(620,170)"/> <wire from="(510,230)" to="(560,230)"/> <wire from="(520,1280)" to="(560,1280)"/> <wire from="(530,1550)" to="(540,1550)"/> <wire from="(530,620)" to="(540,620)"/> <wire from="(530,910)" to="(540,910)"/> <wire from="(540,1050)" to="(560,1050)"/> <wire from="(540,1070)" to="(560,1070)"/> <wire from="(540,1140)" to="(560,1140)"/> <wire from="(540,1310)" to="(550,1310)"/> <wire from="(540,1480)" to="(540,1550)"/> <wire from="(540,1480)" to="(560,1480)"/> <wire from="(540,1550)" to="(540,1620)"/> <wire from="(540,1550)" to="(560,1550)"/> <wire from="(540,1620)" to="(560,1620)"/> <wire from="(540,650)" to="(560,650)"/> <wire from="(540,910)" to="(540,980)"/> <wire from="(540,910)" to="(560,910)"/> <wire from="(540,980)" to="(540,1050)"/> <wire from="(540,980)" to="(560,980)"/> <wire from="(550,110)" to="(560,110)"/> <wire from="(550,1120)" to="(560,1120)"/> <wire from="(550,1210)" to="(560,1210)"/> <wire from="(550,1300)" to="(550,1310)"/> <wire from="(550,1300)" to="(560,1300)"/> <wire from="(550,1380)" to="(560,1380)"/> <wire from="(550,1640)" to="(560,1640)"/> <wire from="(550,1690)" to="(560,1690)"/> <wire from="(550,210)" to="(560,210)"/> <wire from="(550,350)" to="(560,350)"/> <wire from="(560,450)" to="(560,610)"/> <wire from="(560,610)" to="(580,610)"/> <wire from="(560,620)" to="(580,620)"/> <wire from="(560,630)" to="(560,650)"/> <wire from="(560,630)" to="(580,630)"/> <wire from="(600,1050)" to="(630,1050)"/> <wire from="(600,1120)" to="(820,1120)"/> <wire from="(600,1230)" to="(630,1230)"/> <wire from="(600,1290)" to="(630,1290)"/> <wire from="(600,130)" to="(620,130)"/> <wire from="(600,1400)" to="(620,1400)"/> <wire from="(600,1480)" to="(760,1480)"/> <wire from="(600,1550)" to="(620,1550)"/> <wire from="(600,1620)" to="(620,1620)"/> <wire from="(600,1690)" to="(690,1690)"/> <wire from="(600,230)" to="(640,230)"/> <wire from="(600,350)" to="(780,350)"/> <wire from="(600,910)" to="(790,910)"/> <wire from="(600,980)" to="(630,980)"/> <wire from="(610,460)" to="(610,480)"/> <wire from="(610,460)" to="(630,460)"/> <wire from="(610,480)" to="(610,500)"/> <wire from="(610,500)" to="(1020,500)"/> <wire from="(620,130)" to="(620,170)"/> <wire from="(620,1550)" to="(620,1580)"/> <wire from="(620,1580)" to="(640,1580)"/> <wire from="(620,1600)" to="(620,1620)"/> <wire from="(620,1600)" to="(640,1600)"/> <wire from="(620,440)" to="(630,440)"/> <wire from="(620,620)" to="(650,620)"/> <wire from="(630,1010)" to="(660,1010)"/> <wire from="(630,1030)" to="(630,1050)"/> <wire from="(630,1030)" to="(660,1030)"/> <wire from="(630,1230)" to="(630,1250)"/> <wire from="(630,1250)" to="(650,1250)"/> <wire from="(630,1270)" to="(630,1290)"/> <wire from="(630,1270)" to="(660,1270)"/> <wire from="(630,980)" to="(630,1010)"/> <wire from="(640,230)" to="(640,270)"/> <wire from="(640,30)" to="(1230,30)"/> <wire from="(640,30)" to="(640,230)"/> <wire from="(640,680)" to="(670,680)"/> <wire from="(640,730)" to="(650,730)"/> <wire from="(650,620)" to="(650,670)"/> <wire from="(650,670)" to="(670,670)"/> <wire from="(650,710)" to="(650,730)"/> <wire from="(650,710)" to="(670,710)"/> <wire from="(670,1590)" to="(690,1590)"/> <wire from="(670,450)" to="(760,450)"/> <wire from="(690,1260)" to="(710,1260)"/> <wire from="(690,1500)" to="(690,1590)"/> <wire from="(690,1500)" to="(760,1500)"/> <wire from="(690,1690)" to="(690,1870)"/> <wire from="(690,1870)" to="(830,1870)"/> <wire from="(700,1020)" to="(750,1020)"/> <wire from="(710,1260)" to="(710,1800)"/> <wire from="(710,1260)" to="(830,1260)"/> <wire from="(710,1800)" to="(940,1800)"/> <wire from="(730,1530)" to="(730,1600)"/> <wire from="(730,1530)" to="(760,1530)"/> <wire from="(730,1600)" to="(790,1600)"/> <wire from="(730,170)" to="(750,170)"/> <wire from="(730,230)" to="(750,230)"/> <wire from="(730,690)" to="(830,690)"/> <wire from="(740,200)" to="(760,200)"/> <wire from="(750,1020)" to="(750,1420)"/> <wire from="(750,1420)" to="(830,1420)"/> <wire from="(750,1550)" to="(750,1580)"/> <wire from="(750,1550)" to="(760,1550)"/> <wire from="(750,1580)" to="(1020,1580)"/> <wire from="(750,170)" to="(750,190)"/> <wire from="(750,190)" to="(760,190)"/> <wire from="(750,210)" to="(750,230)"/> <wire from="(750,210)" to="(760,210)"/> <wire from="(750,230)" to="(750,290)"/> <wire from="(750,290)" to="(790,290)"/> <wire from="(750,370)" to="(780,370)"/> <wire from="(750,620)" to="(750,1020)"/> <wire from="(750,620)" to="(900,620)"/> <wire from="(760,310)" to="(760,340)"/> <wire from="(760,340)" to="(780,340)"/> <wire from="(760,380)" to="(760,450)"/> <wire from="(760,380)" to="(780,380)"/> <wire from="(770,1660)" to="(790,1660)"/> <wire from="(790,1060)" to="(830,1060)"/> <wire from="(790,1600)" to="(1040,1600)"/> <wire from="(790,1600)" to="(790,1640)"/> <wire from="(790,1640)" to="(830,1640)"/> <wire from="(790,1660)" to="(790,1860)"/> <wire from="(790,1660)" to="(830,1660)"/> <wire from="(790,1860)" to="(830,1860)"/> <wire from="(790,910)" to="(790,1060)"/> <wire from="(800,1180)" to="(1000,1180)"/> <wire from="(800,1180)" to="(800,1240)"/> <wire from="(800,1240)" to="(830,1240)"/> <wire from="(800,1490)" to="(830,1490)"/> <wire from="(800,1540)" to="(810,1540)"/> <wire from="(800,200)" to="(850,200)"/> <wire from="(810,1090)" to="(820,1090)"/> <wire from="(810,1150)" to="(830,1150)"/> <wire from="(810,1300)" to="(810,1320)"/> <wire from="(810,1300)" to="(890,1300)"/> <wire from="(810,1320)" to="(830,1320)"/> <wire from="(810,1340)" to="(830,1340)"/> <wire from="(810,1370)" to="(810,1400)"/> <wire from="(810,1370)" to="(890,1370)"/> <wire from="(810,1400)" to="(830,1400)"/> <wire from="(810,1510)" to="(810,1540)"/> <wire from="(810,1510)" to="(830,1510)"/> <wire from="(810,290)" to="(850,290)"/> <wire from="(820,1050)" to="(830,1050)"/> <wire from="(820,1070)" to="(820,1090)"/> <wire from="(820,1070)" to="(830,1070)"/> <wire from="(820,1120)" to="(820,1140)"/> <wire from="(820,1140)" to="(830,1140)"/> <wire from="(820,1160)" to="(820,1200)"/> <wire from="(820,1160)" to="(830,1160)"/> <wire from="(820,1200)" to="(1000,1200)"/> <wire from="(820,650)" to="(840,650)"/> <wire from="(820,880)" to="(820,900)"/> <wire from="(820,900)" to="(830,900)"/> <wire from="(820,920)" to="(820,970)"/> <wire from="(820,920)" to="(830,920)"/> <wire from="(820,970)" to="(1020,970)"/> <wire from="(820,990)" to="(1040,990)"/> <wire from="(820,990)" to="(820,1050)"/> <wire from="(830,230)" to="(1100,230)"/> <wire from="(830,230)" to="(830,270)"/> <wire from="(830,270)" to="(850,270)"/> <wire from="(830,670)" to="(830,690)"/> <wire from="(830,670)" to="(840,670)"/> <wire from="(840,180)" to="(850,180)"/> <wire from="(840,360)" to="(930,360)"/> <wire from="(860,590)" to="(870,590)"/> <wire from="(870,1060)" to="(910,1060)"/> <wire from="(870,110)" to="(890,110)"/> <wire from="(870,1150)" to="(940,1150)"/> <wire from="(870,1250)" to="(890,1250)"/> <wire from="(870,1330)" to="(890,1330)"/> <wire from="(870,1410)" to="(920,1410)"/> <wire from="(870,1500)" to="(920,1500)"/> <wire from="(870,1650)" to="(940,1650)"/> <wire from="(870,1870)" to="(940,1870)"/> <wire from="(870,40)" to="(1100,40)"/> <wire from="(870,40)" to="(870,110)"/> <wire from="(870,590)" to="(870,610)"/> <wire from="(870,610)" to="(900,610)"/> <wire from="(870,910)" to="(940,910)"/> <wire from="(880,130)" to="(890,130)"/> <wire from="(880,660)" to="(890,660)"/> <wire from="(890,1250)" to="(890,1300)"/> <wire from="(890,1250)" to="(940,1250)"/> <wire from="(890,1330)" to="(890,1370)"/> <wire from="(890,180)" to="(960,180)"/> <wire from="(890,280)" to="(940,280)"/> <wire from="(890,630)" to="(890,660)"/> <wire from="(890,630)" to="(900,630)"/> <wire from="(910,1060)" to="(910,1090)"/> <wire from="(910,1060)" to="(940,1060)"/> <wire from="(910,1090)" to="(1230,1090)"/> <wire from="(910,1230)" to="(920,1230)"/> <wire from="(910,1630)" to="(920,1630)"/> <wire from="(910,1730)" to="(940,1730)"/> <wire from="(920,120)" to="(940,120)"/> <wire from="(920,1230)" to="(920,1320)"/> <wire from="(920,1230)" to="(940,1230)"/> <wire from="(920,1320)" to="(940,1320)"/> <wire from="(920,1340)" to="(920,1410)"/> <wire from="(920,1340)" to="(940,1340)"/> <wire from="(920,1410)" to="(950,1410)"/> <wire from="(920,1500)" to="(920,1550)"/> <wire from="(920,1500)" to="(940,1500)"/> <wire from="(920,1550)" to="(1060,1550)"/> <wire from="(920,1630)" to="(920,1710)"/> <wire from="(920,1630)" to="(940,1630)"/> <wire from="(920,1710)" to="(920,1780)"/> <wire from="(920,1710)" to="(940,1710)"/> <wire from="(920,1780)" to="(920,1850)"/> <wire from="(920,1780)" to="(940,1780)"/> <wire from="(920,1850)" to="(940,1850)"/> <wire from="(920,440)" to="(950,440)"/> <wire from="(930,1040)" to="(940,1040)"/> <wire from="(930,1130)" to="(940,1130)"/> <wire from="(930,1480)" to="(940,1480)"/> <wire from="(930,260)" to="(940,260)"/> <wire from="(930,360)" to="(930,430)"/> <wire from="(930,430)" to="(950,430)"/> <wire from="(930,450)" to="(930,550)"/> <wire from="(930,450)" to="(950,450)"/> <wire from="(930,550)" to="(1050,550)"/> <wire from="(930,800)" to="(940,800)"/> <wire from="(930,820)" to="(940,820)"/> <wire from="(930,890)" to="(940,890)"/> <wire from="(940,120)" to="(940,160)"/> <wire from="(940,160)" to="(960,160)"/> <wire from="(940,620)" to="(990,620)"/> <wire from="(970,1410)" to="(1060,1410)"/> <wire from="(980,1040)" to="(1020,1040)"/> <wire from="(980,1130)" to="(1000,1130)"/> <wire from="(980,1230)" to="(1000,1230)"/> <wire from="(980,1340)" to="(1060,1340)"/> <wire from="(980,1480)" to="(1040,1480)"/> <wire from="(980,1630)" to="(1020,1630)"/> <wire from="(980,1650)" to="(1230,1650)"/> <wire from="(980,1710)" to="(1100,1710)"/> <wire from="(980,1780)" to="(1050,1780)"/> <wire from="(980,1850)" to="(1030,1850)"/> <wire from="(980,280)" to="(1040,280)"/> <wire from="(980,600)" to="(990,600)"/> <wire from="(980,820)" to="(1050,820)"/> <wire from="(980,910)" to="(1000,910)"/> <wire from="(990,340)" to="(1020,340)"/> <wire from="(990,440)" to="(1020,440)"/> </circuit> <circuit name="BUS_CONTROL"> <a name="appearance" val="custom"/> <a name="circuit" val="BUS_CONTROL"/> <a name="clabel" val="BUS CONTROL"/> <a name="clabelfont" val="SansSerif plain 20"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M70,71 Q74,81 78,71" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#ff3941" height="370" stroke="#000000" stroke-width="2" width="430" x="50" y="70"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="100">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="119">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="139">BR2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="456" y="371">PGX</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="159">BR3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="299">AND</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="219">T2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="279">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="379">INC_SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="400">BRK6E</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="319">0/ADL0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="340">#SBXY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="352">ZTST</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="359">STXY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="419">DL/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="239">T6</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="259">T7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="454" y="280">STOR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="452" y="220">ACRL2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="441" y="200">#PCH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="199">T1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="179">T0</text> <circ-anchor facing="east" x="150" y="70"/> <circ-port dir="in" pin="120,1000" x="460" y="70"/> <circ-port dir="in" pin="120,1030" x="50" y="320"/> <circ-port dir="in" pin="120,1060" x="50" y="140"/> <circ-port dir="in" pin="120,1090" x="480" y="220"/> <circ-port dir="in" pin="120,110" x="110" y="70"/> <circ-port dir="in" pin="120,1120" x="50" y="420"/> <circ-port dir="in" pin="120,1150" x="50" y="160"/> <circ-port dir="in" pin="120,1180" x="50" y="280"/> <circ-port dir="in" pin="120,1210" x="50" y="220"/> <circ-port dir="in" pin="120,1240" x="50" y="380"/> <circ-port dir="in" pin="120,1270" x="70" y="70"/> <circ-port dir="in" pin="120,1300" x="50" y="400"/> <circ-port dir="in" pin="120,1330" x="80" y="70"/> <circ-port dir="in" pin="120,1360" x="90" y="70"/> <circ-port dir="in" pin="120,1390" x="100" y="70"/> <circ-port dir="in" pin="120,140" x="120" y="70"/> <circ-port dir="in" pin="120,1420" x="50" y="360"/> <circ-port dir="in" pin="120,1450" x="420" y="70"/> <circ-port dir="in" pin="120,1480" x="480" y="200"/> <circ-port dir="in" pin="120,1510" x="50" y="180"/> <circ-port dir="in" pin="120,1540" x="50" y="200"/> <circ-port dir="in" pin="120,1570" x="50" y="240"/> <circ-port dir="in" pin="120,1600" x="50" y="260"/> <circ-port dir="in" pin="120,1630" x="360" y="70"/> <circ-port dir="in" pin="120,170" x="130" y="70"/> <circ-port dir="in" pin="120,20" x="50" y="100"/> <circ-port dir="in" pin="120,200" x="140" y="70"/> <circ-port dir="in" pin="120,230" x="150" y="70"/> <circ-port dir="in" pin="120,260" x="160" y="70"/> <circ-port dir="in" pin="120,290" x="170" y="70"/> <circ-port dir="in" pin="120,320" x="180" y="70"/> <circ-port dir="in" pin="120,350" x="190" y="70"/> <circ-port dir="in" pin="120,380" x="200" y="70"/> <circ-port dir="in" pin="120,410" x="210" y="70"/> <circ-port dir="in" pin="120,440" x="220" y="70"/> <circ-port dir="in" pin="120,470" x="230" y="70"/> <circ-port dir="in" pin="120,50" x="50" y="120"/> <circ-port dir="in" pin="120,500" x="50" y="300"/> <circ-port dir="in" pin="120,540" x="260" y="70"/> <circ-port dir="in" pin="120,570" x="270" y="70"/> <circ-port dir="in" pin="120,600" x="280" y="70"/> <circ-port dir="in" pin="120,630" x="290" y="70"/> <circ-port dir="in" pin="120,660" x="300" y="70"/> <circ-port dir="in" pin="120,690" x="480" y="280"/> <circ-port dir="in" pin="120,720" x="310" y="70"/> <circ-port dir="in" pin="120,750" x="320" y="70"/> <circ-port dir="in" pin="120,780" x="340" y="70"/> <circ-port dir="in" pin="120,80" x="50" y="340"/> <circ-port dir="in" pin="120,810" x="380" y="70"/> <circ-port dir="in" pin="120,840" x="390" y="70"/> <circ-port dir="in" pin="120,880" x="400" y="70"/> <circ-port dir="in" pin="120,920" x="330" y="70"/> <circ-port dir="in" pin="120,970" x="450" y="70"/> <circ-port dir="out" pin="1070,110" x="260" y="440"/> <circ-port dir="out" pin="1070,1140" x="180" y="440"/> <circ-port dir="out" pin="1070,1250" x="140" y="440"/> <circ-port dir="out" pin="1070,180" x="280" y="440"/> <circ-port dir="out" pin="1070,250" x="220" y="440"/> <circ-port dir="out" pin="1070,310" x="480" y="350"/> <circ-port dir="out" pin="1070,370" x="200" y="440"/> <circ-port dir="out" pin="1070,430" x="240" y="440"/> <circ-port dir="out" pin="1070,510" x="320" y="440"/> <circ-port dir="out" pin="1070,650" x="300" y="440"/> <circ-port dir="out" pin="1070,700" x="480" y="370"/> <circ-port dir="out" pin="1070,770" x="340" y="440"/> <circ-port dir="out" pin="1070,850" x="160" y="440"/> <circ-port dir="out" pin="1070,930" x="120" y="440"/> </appear> <comp lib="0" loc="(1070,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADH0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,1140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_ABH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,1250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_ADH17"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_AC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ZTST"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_ABL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AC_SB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,50)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(1070,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AC_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PGX"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,770)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_ADH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,930)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_ADL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,1000)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D129"/> </comp> <comp lib="0" loc="(120,1030)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADL0"/> </comp> <comp lib="0" loc="(120,1060)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(120,1090)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACRL2"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D55"/> </comp> <comp lib="0" loc="(120,1120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_PCH"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(120,1180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(120,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T2"/> </comp> <comp lib="0" loc="(120,1240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="INC_SB"/> </comp> <comp lib="0" loc="(120,1270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D45"/> </comp> <comp lib="0" loc="(120,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(120,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D46"/> </comp> <comp lib="0" loc="(120,1360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D47"/> </comp> <comp lib="0" loc="(120,1390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D48"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D57"/> </comp> <comp lib="0" loc="(120,1420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="STXY"/> </comp> <comp lib="0" loc="(120,1450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D101"/> </comp> <comp lib="0" loc="(120,1480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCH_PCH"/> </comp> <comp lib="0" loc="(120,1510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(120,1540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(120,1570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(120,1600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(120,1630)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D56"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D58"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D59"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D60"/> </comp> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D61"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D62"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D63"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D64"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D65"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D66"/> </comp> <comp lib="0" loc="(120,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D67"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D68"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AND"/> </comp> <comp lib="0" loc="(120,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D71"/> </comp> <comp lib="0" loc="(120,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D72"/> </comp> <comp lib="0" loc="(120,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D73"/> </comp> <comp lib="0" loc="(120,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D74"/> </comp> <comp lib="0" loc="(120,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D79"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="STOR"/> </comp> <comp lib="0" loc="(120,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D81"/> </comp> <comp lib="0" loc="(120,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D82"/> </comp> <comp lib="0" loc="(120,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D84"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_SBXY"/> </comp> <comp lib="0" loc="(120,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D89"/> </comp> <comp lib="0" loc="(120,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D90"/> </comp> <comp lib="0" loc="(120,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D91"/> </comp> <comp lib="0" loc="(120,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D83"/> </comp> <comp lib="0" loc="(120,970)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D128"/> </comp> <comp lib="0" loc="(130,1060)" name="Tunnel"> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(130,1120)" name="Tunnel"> <a name="label" val="DL_PCH"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1150)" name="Tunnel"> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(130,1510)" name="Tunnel"> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(130,1540)" name="Tunnel"> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(130,1570)" name="Tunnel"> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(130,1600)" name="Tunnel"> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(130,780)" name="Tunnel"> <a name="label" val="RTS_5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,20)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(210,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RTS_5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(240,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(320,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(380,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(390,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(430,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(480,1140)" name="Tunnel"> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(610,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(610,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(640,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(640,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(670,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(680,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(690,1220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_PCH"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1020,1140)" name="Buffer"/> <comp lib="1" loc="(1020,1250)" name="Buffer"/> <comp lib="1" loc="(1020,180)" name="Buffer"/> <comp lib="1" loc="(1020,250)" name="Buffer"/> <comp lib="1" loc="(1020,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1020,370)" name="Buffer"/> <comp lib="1" loc="(1020,430)" name="Buffer"/> <comp lib="1" loc="(1020,510)" name="Buffer"/> <comp lib="1" loc="(1020,650)" name="Buffer"/> <comp lib="1" loc="(1020,770)" name="Buffer"/> <comp lib="1" loc="(1020,850)" name="Buffer"/> <comp lib="1" loc="(1020,930)" name="Buffer"/> <comp lib="1" loc="(190,670)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,550)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,850)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,930)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,980)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,1390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,260)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(280,370)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,1310)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(290,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,590)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,660)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,860)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(300,940)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,1400)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,1310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,860)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,1100)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,970)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(380,440)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(430,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,1220)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(470,310)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,100)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,1090)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,1190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(530,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,1140)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(700,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,1150)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,510)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(760,850)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,1140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(780,1250)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(780,370)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(980,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(980,430)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(980,650)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(135,655)" name="Text"> <a name="text" val="STA"/> </comp> <comp lib="6" loc="(140,595)" name="Text"> <a name="text" val="BR0"/> </comp> <comp lib="6" loc="(145,1385)" name="Text"> <a name="text" val="JSR2"/> </comp> <comp lib="6" loc="(160,1010)" name="Text"> <a name="text" val="push/pull"/> </comp> <comp lib="6" loc="(225,925)" name="Text"> <a name="text" val="ABS/2"/> </comp> <comp lib="6" loc="(255,725)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="6" loc="(285,995)" name="Text"> <a name="text" val="IMPLIED"/> </comp> <comp lib="6" loc="(325,1625)" name="Text"> <a name="text" val="JSR/5"/> </comp> <comp lib="6" loc="(325,250)" name="Text"> <a name="text" val="#SB/AC"/> </comp> <comp lib="6" loc="(350,615)" name="Text"> <a name="text" val="PGX"/> </comp> <comp lib="6" loc="(370,190)" name="Text"> <a name="text" val="#SBXY"/> </comp> <comp lib="6" loc="(380,850)" name="Text"> <a name="text" val="IND"/> </comp> <comp lib="6" loc="(420,355)" name="Text"> <a name="text" val="AND"/> </comp> <comp lib="6" loc="(465,185)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="6" loc="(535,1080)" name="Text"> <a name="text" val="SBA"/> </comp> <comp lib="6" loc="(540,300)" name="Text"> <a name="text" val="#ZTST"/> </comp> <comp lib="6" loc="(595,1395)" name="Text"> <a name="text" val="JSXY"/> </comp> <comp lib="6" loc="(620,1445)" name="Text"> <a name="text" val="JMP/4"/> </comp> <comp lib="6" loc="(645,575)" name="Text"> <a name="text" val="JSXY"/> </comp> <comp lib="6" loc="(755,100)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="6" loc="(755,250)" name="Text"> <a name="text" val="#SB/AC"/> </comp> <comp lib="6" loc="(755,430)" name="Text"> <a name="text" val="#AC/SB"/> </comp> <comp lib="6" loc="(755,925)" name="Text"> <a name="text" val="#DL/ADL"/> </comp> <comp lib="6" loc="(760,500)" name="Text"> <a name="text" val="#SB/DB"/> </comp> <comp lib="6" loc="(785,345)" name="Text"> <a name="text" val="#ADL/ABL"/> </comp> <comp lib="6" loc="(800,1245)" name="Text"> <a name="text" val="#DL/DB"/> </comp> <comp loc="(280,1140)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,100)" name="D_Latch"> <a name="label" val="z_adh0_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,1130)" name="D_Latch"> <a name="label" val="adh_abh_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,1240)" name="D_Latch"> <a name="label" val="dl_db_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,170)" name="D_Latch"> <a name="label" val="z_adh17_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,250)" name="D_Latch"> <a name="label" val="sb_ac_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,360)" name="D_Latch"> <a name="label" val="adl_abl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,430)" name="D_Latch"> <a name="label" val="ac_sb_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,500)" name="D_Latch"> <a name="label" val="sb_db_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,650)" name="D_Latch"> <a name="label" val="ac_db_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,760)" name="D_Latch"> <a name="label" val="sb_adh_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,840)" name="D_Latch"> <a name="label" val="dl_adh_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,920)" name="D_Latch"> <a name="label" val="dl_adl_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1020,1140)" to="(1070,1140)"/> <wire from="(1020,1250)" to="(1070,1250)"/> <wire from="(1020,180)" to="(1070,180)"/> <wire from="(1020,250)" to="(1070,250)"/> <wire from="(1020,310)" to="(1070,310)"/> <wire from="(1020,370)" to="(1070,370)"/> <wire from="(1020,430)" to="(1070,430)"/> <wire from="(1020,510)" to="(1070,510)"/> <wire from="(1020,650)" to="(1070,650)"/> <wire from="(1020,770)" to="(1070,770)"/> <wire from="(1020,850)" to="(1070,850)"/> <wire from="(1020,930)" to="(1070,930)"/> <wire from="(120,1000)" to="(140,1000)"/> <wire from="(120,1030)" to="(720,1030)"/> <wire from="(120,1060)" to="(130,1060)"/> <wire from="(120,1090)" to="(320,1090)"/> <wire from="(120,110)" to="(450,110)"/> <wire from="(120,1120)" to="(130,1120)"/> <wire from="(120,1150)" to="(130,1150)"/> <wire from="(120,1180)" to="(220,1180)"/> <wire from="(120,1210)" to="(400,1210)"/> <wire from="(120,1240)" to="(170,1240)"/> <wire from="(120,1270)" to="(150,1270)"/> <wire from="(120,1300)" to="(210,1300)"/> <wire from="(120,1330)" to="(150,1330)"/> <wire from="(120,1360)" to="(170,1360)"/> <wire from="(120,1390)" to="(190,1390)"/> <wire from="(120,140)" to="(530,140)"/> <wire from="(120,1420)" to="(260,1420)"/> <wire from="(120,1450)" to="(650,1450)"/> <wire from="(120,1480)" to="(360,1480)"/> <wire from="(120,1510)" to="(130,1510)"/> <wire from="(120,1540)" to="(130,1540)"/> <wire from="(120,1570)" to="(130,1570)"/> <wire from="(120,1600)" to="(130,1600)"/> <wire from="(120,1630)" to="(380,1630)"/> <wire from="(120,170)" to="(190,170)"/> <wire from="(120,20)" to="(140,20)"/> <wire from="(120,200)" to="(170,200)"/> <wire from="(120,230)" to="(150,230)"/> <wire from="(120,260)" to="(200,260)"/> <wire from="(120,290)" to="(150,290)"/> <wire from="(120,320)" to="(170,320)"/> <wire from="(120,350)" to="(190,350)"/> <wire from="(120,380)" to="(250,380)"/> <wire from="(120,410)" to="(140,410)"/> <wire from="(120,440)" to="(230,440)"/> <wire from="(120,470)" to="(140,470)"/> <wire from="(120,50)" to="(820,50)"/> <wire from="(120,500)" to="(300,500)"/> <wire from="(120,540)" to="(160,540)"/> <wire from="(120,570)" to="(140,570)"/> <wire from="(120,600)" to="(180,600)"/> <wire from="(120,630)" to="(230,630)"/> <wire from="(120,660)" to="(160,660)"/> <wire from="(120,690)" to="(140,690)"/> <wire from="(120,720)" to="(160,720)"/> <wire from="(120,750)" to="(140,750)"/> <wire from="(120,780)" to="(130,780)"/> <wire from="(120,80)" to="(400,80)"/> <wire from="(120,810)" to="(220,810)"/> <wire from="(120,840)" to="(170,840)"/> <wire from="(120,880)" to="(210,880)"/> <wire from="(120,920)" to="(170,920)"/> <wire from="(120,970)" to="(170,970)"/> <wire from="(140,410)" to="(140,430)"/> <wire from="(140,430)" to="(320,430)"/> <wire from="(140,450)" to="(140,470)"/> <wire from="(140,450)" to="(320,450)"/> <wire from="(140,560)" to="(140,570)"/> <wire from="(140,560)" to="(160,560)"/> <wire from="(140,680)" to="(140,690)"/> <wire from="(140,680)" to="(160,680)"/> <wire from="(140,740)" to="(140,750)"/> <wire from="(140,740)" to="(160,740)"/> <wire from="(140,860)" to="(140,940)"/> <wire from="(140,860)" to="(160,860)"/> <wire from="(140,940)" to="(140,990)"/> <wire from="(140,940)" to="(160,940)"/> <wire from="(140,990)" to="(140,1000)"/> <wire from="(140,990)" to="(160,990)"/> <wire from="(150,1270)" to="(150,1290)"/> <wire from="(150,1290)" to="(210,1290)"/> <wire from="(150,1320)" to="(150,1330)"/> <wire from="(150,1320)" to="(210,1320)"/> <wire from="(150,230)" to="(150,250)"/> <wire from="(150,250)" to="(200,250)"/> <wire from="(150,270)" to="(150,290)"/> <wire from="(150,270)" to="(200,270)"/> <wire from="(170,1240)" to="(170,1280)"/> <wire from="(170,1280)" to="(210,1280)"/> <wire from="(170,1330)" to="(170,1360)"/> <wire from="(170,1330)" to="(210,1330)"/> <wire from="(170,200)" to="(170,240)"/> <wire from="(170,240)" to="(200,240)"/> <wire from="(170,280)" to="(170,320)"/> <wire from="(170,280)" to="(200,280)"/> <wire from="(190,1340)" to="(190,1390)"/> <wire from="(190,1340)" to="(210,1340)"/> <wire from="(190,1390)" to="(210,1390)"/> <wire from="(190,170)" to="(190,230)"/> <wire from="(190,230)" to="(200,230)"/> <wire from="(190,290)" to="(190,350)"/> <wire from="(190,290)" to="(200,290)"/> <wire from="(190,350)" to="(190,360)"/> <wire from="(190,360)" to="(210,360)"/> <wire from="(190,670)" to="(260,670)"/> <wire from="(200,550)" to="(230,550)"/> <wire from="(200,600)" to="(260,600)"/> <wire from="(200,730)" to="(490,730)"/> <wire from="(200,850)" to="(240,850)"/> <wire from="(200,930)" to="(260,930)"/> <wire from="(200,980)" to="(320,980)"/> <wire from="(210,870)" to="(210,880)"/> <wire from="(210,870)" to="(240,870)"/> <wire from="(210,900)" to="(220,900)"/> <wire from="(220,1150)" to="(220,1180)"/> <wire from="(220,1150)" to="(240,1150)"/> <wire from="(220,1180)" to="(460,1180)"/> <wire from="(220,810)" to="(220,840)"/> <wire from="(220,840)" to="(240,840)"/> <wire from="(220,880)" to="(220,900)"/> <wire from="(220,880)" to="(240,880)"/> <wire from="(230,1130)" to="(240,1130)"/> <wire from="(230,1390)" to="(280,1390)"/> <wire from="(230,360)" to="(250,360)"/> <wire from="(230,440)" to="(230,520)"/> <wire from="(230,440)" to="(320,440)"/> <wire from="(230,520)" to="(580,520)"/> <wire from="(230,550)" to="(230,580)"/> <wire from="(230,550)" to="(270,550)"/> <wire from="(230,580)" to="(260,580)"/> <wire from="(230,630)" to="(230,650)"/> <wire from="(230,650)" to="(260,650)"/> <wire from="(240,950)" to="(260,950)"/> <wire from="(260,1410)" to="(260,1420)"/> <wire from="(260,1410)" to="(280,1410)"/> <wire from="(280,1150)" to="(300,1150)"/> <wire from="(280,260)" to="(300,260)"/> <wire from="(280,370)" to="(300,370)"/> <wire from="(290,1310)" to="(320,1310)"/> <wire from="(290,550)" to="(390,550)"/> <wire from="(300,1110)" to="(300,1150)"/> <wire from="(300,1110)" to="(320,1110)"/> <wire from="(300,260)" to="(300,300)"/> <wire from="(300,260)" to="(840,260)"/> <wire from="(300,300)" to="(330,300)"/> <wire from="(300,370)" to="(300,420)"/> <wire from="(300,420)" to="(320,420)"/> <wire from="(300,460)" to="(300,500)"/> <wire from="(300,460)" to="(320,460)"/> <wire from="(300,500)" to="(400,500)"/> <wire from="(300,590)" to="(330,590)"/> <wire from="(300,660)" to="(840,660)"/> <wire from="(300,860)" to="(320,860)"/> <wire from="(300,940)" to="(310,940)"/> <wire from="(310,940)" to="(310,960)"/> <wire from="(310,960)" to="(320,960)"/> <wire from="(320,1400)" to="(630,1400)"/> <wire from="(320,780)" to="(390,780)"/> <wire from="(330,590)" to="(330,700)"/> <wire from="(330,700)" to="(1070,700)"/> <wire from="(330,700)" to="(330,760)"/> <wire from="(330,760)" to="(390,760)"/> <wire from="(340,1310)" to="(610,1310)"/> <wire from="(340,860)" to="(380,860)"/> <wire from="(350,300)" to="(410,300)"/> <wire from="(360,1100)" to="(480,1100)"/> <wire from="(360,1230)" to="(360,1480)"/> <wire from="(360,1230)" to="(400,1230)"/> <wire from="(360,970)" to="(610,970)"/> <wire from="(380,1200)" to="(400,1200)"/> <wire from="(380,1240)" to="(380,1630)"/> <wire from="(380,1240)" to="(400,1240)"/> <wire from="(380,440)" to="(840,440)"/> <wire from="(380,570)" to="(390,570)"/> <wire from="(380,860)" to="(380,1200)"/> <wire from="(380,860)" to="(720,860)"/> <wire from="(390,320)" to="(410,320)"/> <wire from="(400,290)" to="(410,290)"/> <wire from="(400,330)" to="(400,500)"/> <wire from="(400,330)" to="(410,330)"/> <wire from="(400,500)" to="(530,500)"/> <wire from="(400,80)" to="(400,290)"/> <wire from="(430,560)" to="(460,560)"/> <wire from="(430,770)" to="(460,770)"/> <wire from="(430,90)" to="(450,90)"/> <wire from="(460,1080)" to="(480,1080)"/> <wire from="(460,1140)" to="(460,1180)"/> <wire from="(460,1140)" to="(480,1140)"/> <wire from="(460,1180)" to="(480,1180)"/> <wire from="(460,1220)" to="(470,1220)"/> <wire from="(460,380)" to="(460,560)"/> <wire from="(460,380)" to="(740,380)"/> <wire from="(460,770)" to="(460,1080)"/> <wire from="(460,770)" to="(840,770)"/> <wire from="(470,1200)" to="(470,1220)"/> <wire from="(470,1200)" to="(480,1200)"/> <wire from="(470,310)" to="(510,310)"/> <wire from="(490,100)" to="(510,100)"/> <wire from="(490,190)" to="(490,230)"/> <wire from="(490,190)" to="(510,190)"/> <wire from="(490,230)" to="(490,730)"/> <wire from="(490,230)" to="(680,230)"/> <wire from="(490,730)" to="(490,930)"/> <wire from="(490,930)" to="(840,930)"/> <wire from="(510,310)" to="(1000,310)"/> <wire from="(510,310)" to="(510,480)"/> <wire from="(510,480)" to="(530,480)"/> <wire from="(520,1090)" to="(540,1090)"/> <wire from="(520,1190)" to="(540,1190)"/> <wire from="(530,100)" to="(610,100)"/> <wire from="(530,140)" to="(530,170)"/> <wire from="(530,170)" to="(550,170)"/> <wire from="(530,190)" to="(550,190)"/> <wire from="(540,1090)" to="(540,1130)"/> <wire from="(540,1130)" to="(560,1130)"/> <wire from="(540,1150)" to="(540,1190)"/> <wire from="(540,1150)" to="(560,1150)"/> <wire from="(570,490)" to="(650,490)"/> <wire from="(580,500)" to="(580,520)"/> <wire from="(580,500)" to="(650,500)"/> <wire from="(590,1140)" to="(690,1140)"/> <wire from="(590,180)" to="(840,180)"/> <wire from="(610,100)" to="(610,480)"/> <wire from="(610,1240)" to="(720,1240)"/> <wire from="(610,1250)" to="(610,1310)"/> <wire from="(610,1250)" to="(720,1250)"/> <wire from="(610,480)" to="(650,480)"/> <wire from="(610,520)" to="(650,520)"/> <wire from="(610,550)" to="(620,550)"/> <wire from="(610,970)" to="(610,1240)"/> <wire from="(620,530)" to="(620,550)"/> <wire from="(620,530)" to="(650,530)"/> <wire from="(630,540)" to="(630,1400)"/> <wire from="(630,540)" to="(650,540)"/> <wire from="(640,330)" to="(660,330)"/> <wire from="(640,350)" to="(660,350)"/> <wire from="(650,1260)" to="(650,1450)"/> <wire from="(650,1260)" to="(720,1260)"/> <wire from="(670,1160)" to="(680,1160)"/> <wire from="(680,110)" to="(680,230)"/> <wire from="(680,110)" to="(840,110)"/> <wire from="(680,1280)" to="(700,1280)"/> <wire from="(690,1220)" to="(700,1220)"/> <wire from="(700,1220)" to="(700,1230)"/> <wire from="(700,1230)" to="(720,1230)"/> <wire from="(700,1270)" to="(700,1280)"/> <wire from="(700,1270)" to="(720,1270)"/> <wire from="(700,340)" to="(720,340)"/> <wire from="(700,840)" to="(720,840)"/> <wire from="(720,1030)" to="(720,1130)"/> <wire from="(720,1130)" to="(740,1130)"/> <wire from="(720,1150)" to="(740,1150)"/> <wire from="(720,340)" to="(720,360)"/> <wire from="(720,360)" to="(740,360)"/> <wire from="(730,510)" to="(840,510)"/> <wire from="(760,850)" to="(840,850)"/> <wire from="(780,1140)" to="(840,1140)"/> <wire from="(780,1250)" to="(840,1250)"/> <wire from="(780,370)" to="(840,370)"/> <wire from="(820,1120)" to="(820,1230)"/> <wire from="(820,1120)" to="(840,1120)"/> <wire from="(820,1230)" to="(840,1230)"/> <wire from="(820,160)" to="(820,240)"/> <wire from="(820,160)" to="(840,160)"/> <wire from="(820,240)" to="(820,350)"/> <wire from="(820,240)" to="(840,240)"/> <wire from="(820,350)" to="(820,420)"/> <wire from="(820,350)" to="(840,350)"/> <wire from="(820,420)" to="(820,490)"/> <wire from="(820,420)" to="(840,420)"/> <wire from="(820,490)" to="(820,640)"/> <wire from="(820,490)" to="(840,490)"/> <wire from="(820,50)" to="(820,90)"/> <wire from="(820,50)" to="(910,50)"/> <wire from="(820,640)" to="(820,750)"/> <wire from="(820,640)" to="(840,640)"/> <wire from="(820,750)" to="(820,830)"/> <wire from="(820,750)" to="(840,750)"/> <wire from="(820,830)" to="(820,910)"/> <wire from="(820,830)" to="(840,830)"/> <wire from="(820,90)" to="(820,160)"/> <wire from="(820,90)" to="(840,90)"/> <wire from="(820,910)" to="(820,1120)"/> <wire from="(820,910)" to="(840,910)"/> <wire from="(880,110)" to="(1070,110)"/> <wire from="(880,1140)" to="(1000,1140)"/> <wire from="(880,1250)" to="(1000,1250)"/> <wire from="(880,180)" to="(1000,180)"/> <wire from="(880,240)" to="(940,240)"/> <wire from="(880,370)" to="(1000,370)"/> <wire from="(880,420)" to="(940,420)"/> <wire from="(880,510)" to="(1000,510)"/> <wire from="(880,640)" to="(940,640)"/> <wire from="(880,770)" to="(1000,770)"/> <wire from="(880,850)" to="(1000,850)"/> <wire from="(880,930)" to="(1000,930)"/> <wire from="(910,260)" to="(910,440)"/> <wire from="(910,260)" to="(940,260)"/> <wire from="(910,440)" to="(910,660)"/> <wire from="(910,440)" to="(940,440)"/> <wire from="(910,50)" to="(1070,50)"/> <wire from="(910,50)" to="(910,260)"/> <wire from="(910,660)" to="(940,660)"/> <wire from="(980,250)" to="(1000,250)"/> <wire from="(980,430)" to="(1000,430)"/> <wire from="(980,650)" to="(1000,650)"/> </circuit> <circuit name="FLAGS_CONTROL"> <a name="appearance" val="custom"/> <a name="circuit" val="FLAGS_CONTROL"/> <a name="clabel" val="FLAGS CONTROL"/> <a name="clabelfont" val="SansSerif plain 18"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M146,50 Q150,60 154,50" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#32ffd9" height="310" stroke="#000000" stroke-width="2" width="281" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="90">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="66" y="120">T7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="320">ZTST</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="240">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="260">SR</text> <circ-anchor facing="east" x="150" y="50"/> <circ-port dir="in" pin="110,120" x="80" y="50"/> <circ-port dir="in" pin="110,160" x="110" y="50"/> <circ-port dir="in" pin="110,200" x="130" y="50"/> <circ-port dir="in" pin="110,270" x="220" y="50"/> <circ-port dir="in" pin="110,340" x="230" y="50"/> <circ-port dir="in" pin="110,380" x="100" y="50"/> <circ-port dir="in" pin="110,40" x="50" y="90"/> <circ-port dir="in" pin="110,410" x="50" y="120"/> <circ-port dir="in" pin="110,460" x="140" y="50"/> <circ-port dir="in" pin="110,490" x="180" y="50"/> <circ-port dir="in" pin="110,520" x="190" y="50"/> <circ-port dir="in" pin="110,550" x="200" y="50"/> <circ-port dir="in" pin="110,580" x="210" y="50"/> <circ-port dir="in" pin="110,620" x="50" y="320"/> <circ-port dir="in" pin="110,660" x="120" y="50"/> <circ-port dir="in" pin="110,700" x="50" y="240"/> <circ-port dir="in" pin="110,750" x="50" y="260"/> <circ-port dir="in" pin="110,830" x="160" y="50"/> <circ-port dir="in" pin="110,860" x="170" y="50"/> <circ-port dir="in" pin="110,90" x="70" y="50"/> <circ-port dir="in" pin="110,910" x="150" y="50"/> <circ-port dir="out" pin="670,130" x="90" y="360"/> <circ-port dir="out" pin="670,200" x="110" y="360"/> <circ-port dir="out" pin="670,270" x="130" y="360"/> <circ-port dir="out" pin="670,340" x="150" y="360"/> <circ-port dir="out" pin="670,410" x="190" y="360"/> <circ-port dir="out" pin="670,550" x="230" y="360"/> <circ-port dir="out" pin="670,60" x="70" y="360"/> <circ-port dir="out" pin="670,620" x="250" y="360"/> <circ-port dir="out" pin="670,690" x="270" y="360"/> <circ-port dir="out" pin="670,760" x="290" y="360"/> <circ-port dir="out" pin="670,830" x="310" y="360"/> </appear> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D99"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D108"/> </comp> <comp lib="0" loc="(110,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D110"/> </comp> <comp lib="0" loc="(110,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D120"/> </comp> <comp lib="0" loc="(110,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D127"/> </comp> <comp lib="0" loc="(110,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D107"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(110,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(110,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D112"/> </comp> <comp lib="0" loc="(110,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D116"/> </comp> <comp lib="0" loc="(110,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D117"/> </comp> <comp lib="0" loc="(110,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D118"/> </comp> <comp lib="0" loc="(110,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D119"/> </comp> <comp lib="0" loc="(110,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ZTST"/> </comp> <comp lib="0" loc="(110,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D109"/> </comp> <comp lib="0" loc="(110,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(110,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(110,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D114"/> </comp> <comp lib="0" loc="(110,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D115"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D98"/> </comp> <comp lib="0" loc="(110,910)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D113"/> </comp> <comp lib="0" loc="(670,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR5_I"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR5_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="IR5_D"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_V"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ACR_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBZ_Z"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="P_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_N"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_P"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_C"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_V"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,400)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(190,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(190,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,840)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(190,910)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,510)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(430,550)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,760)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,600)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,690)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,830)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,620)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(135,455)" name="Text"> <a name="text" val="AVR/V"/> </comp> <comp lib="6" loc="(140,650)" name="Text"> <a name="text" val="BIT1"/> </comp> <comp lib="6" loc="(140,905)" name="Text"> <a name="text" val="BIT0"/> </comp> <comp lib="6" loc="(215,155)" name="Text"> <a name="text" val="/CSI"/> </comp> <comp lib="6" loc="(215,90)" name="Text"> <a name="text" val="/POUT"/> </comp> <comp lib="6" loc="(285,835)" name="Text"> <a name="text" val="/PIN"/> </comp> <comp lib="6" loc="(335,540)" name="Text"> <a name="text" val="ZTST"/> </comp> <comp lib="6" loc="(395,405)" name="Text"> <a name="text" val="/ARIT"/> </comp> <comp lib="6" loc="(395,650)" name="Text"> <a name="text" val="BIT1"/> </comp> <comp loc="(510,120)" name="D_Latch"> <a name="label" val="iri_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,190)" name="D_Latch"> <a name="label" val="irc_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,260)" name="D_Latch"> <a name="label" val="ird_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,330)" name="D_Latch"> <a name="label" val="zv_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,400)" name="D_Latch"> <a name="label" val="acrc_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,50)" name="D_Latch"> <a name="label" val="pdb_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,540)" name="D_Latch"> <a name="label" val="dbz_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,650)" name="D_Latch"> <a name="label" val="dbn_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,750)" name="D_Latch"> <a name="label" val="dbc_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,830)" name="D_Latch"> <a name="label" val="pin_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,900)" name="D_Latch"> <a name="label" val="bit_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,120)" to="(130,120)"/> <wire from="(110,160)" to="(170,160)"/> <wire from="(110,200)" to="(170,200)"/> <wire from="(110,270)" to="(170,270)"/> <wire from="(110,340)" to="(170,340)"/> <wire from="(110,380)" to="(130,380)"/> <wire from="(110,40)" to="(450,40)"/> <wire from="(110,410)" to="(150,410)"/> <wire from="(110,460)" to="(150,460)"/> <wire from="(110,490)" to="(140,490)"/> <wire from="(110,520)" to="(220,520)"/> <wire from="(110,550)" to="(140,550)"/> <wire from="(110,580)" to="(150,580)"/> <wire from="(110,620)" to="(320,620)"/> <wire from="(110,660)" to="(370,660)"/> <wire from="(110,700)" to="(560,700)"/> <wire from="(110,750)" to="(390,750)"/> <wire from="(110,830)" to="(150,830)"/> <wire from="(110,860)" to="(130,860)"/> <wire from="(110,90)" to="(150,90)"/> <wire from="(110,910)" to="(170,910)"/> <wire from="(130,110)" to="(130,120)"/> <wire from="(130,110)" to="(150,110)"/> <wire from="(130,380)" to="(130,390)"/> <wire from="(130,390)" to="(150,390)"/> <wire from="(130,850)" to="(130,860)"/> <wire from="(130,850)" to="(150,850)"/> <wire from="(140,490)" to="(140,500)"/> <wire from="(140,500)" to="(220,500)"/> <wire from="(140,530)" to="(140,550)"/> <wire from="(140,530)" to="(220,530)"/> <wire from="(150,460)" to="(150,490)"/> <wire from="(150,490)" to="(220,490)"/> <wire from="(150,540)" to="(150,580)"/> <wire from="(150,540)" to="(220,540)"/> <wire from="(180,400)" to="(200,400)"/> <wire from="(190,100)" to="(320,100)"/> <wire from="(190,160)" to="(320,160)"/> <wire from="(190,200)" to="(470,200)"/> <wire from="(190,270)" to="(470,270)"/> <wire from="(190,340)" to="(470,340)"/> <wire from="(190,840)" to="(470,840)"/> <wire from="(190,910)" to="(470,910)"/> <wire from="(200,400)" to="(200,480)"/> <wire from="(200,480)" to="(220,480)"/> <wire from="(300,510)" to="(320,510)"/> <wire from="(320,130)" to="(320,160)"/> <wire from="(320,130)" to="(470,130)"/> <wire from="(320,410)" to="(320,510)"/> <wire from="(320,410)" to="(470,410)"/> <wire from="(320,550)" to="(320,620)"/> <wire from="(320,550)" to="(390,550)"/> <wire from="(320,60)" to="(320,100)"/> <wire from="(320,60)" to="(470,60)"/> <wire from="(370,470)" to="(370,540)"/> <wire from="(370,470)" to="(580,470)"/> <wire from="(370,540)" to="(390,540)"/> <wire from="(370,560)" to="(370,660)"/> <wire from="(370,560)" to="(390,560)"/> <wire from="(370,660)" to="(470,660)"/> <wire from="(370,770)" to="(370,790)"/> <wire from="(370,770)" to="(390,770)"/> <wire from="(370,790)" to="(620,790)"/> <wire from="(430,550)" to="(470,550)"/> <wire from="(430,760)" to="(470,760)"/> <wire from="(450,110)" to="(450,180)"/> <wire from="(450,110)" to="(470,110)"/> <wire from="(450,180)" to="(450,250)"/> <wire from="(450,180)" to="(470,180)"/> <wire from="(450,250)" to="(450,320)"/> <wire from="(450,250)" to="(470,250)"/> <wire from="(450,320)" to="(450,390)"/> <wire from="(450,320)" to="(470,320)"/> <wire from="(450,390)" to="(450,530)"/> <wire from="(450,390)" to="(470,390)"/> <wire from="(450,40)" to="(450,110)"/> <wire from="(450,40)" to="(470,40)"/> <wire from="(450,530)" to="(450,640)"/> <wire from="(450,530)" to="(470,530)"/> <wire from="(450,640)" to="(450,740)"/> <wire from="(450,640)" to="(470,640)"/> <wire from="(450,740)" to="(450,820)"/> <wire from="(450,740)" to="(470,740)"/> <wire from="(450,820)" to="(450,890)"/> <wire from="(450,820)" to="(470,820)"/> <wire from="(450,890)" to="(470,890)"/> <wire from="(510,130)" to="(670,130)"/> <wire from="(510,200)" to="(670,200)"/> <wire from="(510,270)" to="(670,270)"/> <wire from="(510,340)" to="(670,340)"/> <wire from="(510,410)" to="(580,410)"/> <wire from="(510,530)" to="(540,530)"/> <wire from="(510,550)" to="(670,550)"/> <wire from="(510,60)" to="(670,60)"/> <wire from="(510,640)" to="(600,640)"/> <wire from="(510,760)" to="(670,760)"/> <wire from="(510,820)" to="(540,820)"/> <wire from="(510,890)" to="(540,890)"/> <wire from="(540,530)" to="(540,590)"/> <wire from="(540,590)" to="(560,590)"/> <wire from="(540,610)" to="(540,680)"/> <wire from="(540,610)" to="(560,610)"/> <wire from="(540,680)" to="(540,820)"/> <wire from="(540,680)" to="(560,680)"/> <wire from="(540,820)" to="(560,820)"/> <wire from="(540,840)" to="(540,890)"/> <wire from="(540,840)" to="(560,840)"/> <wire from="(580,410)" to="(580,470)"/> <wire from="(580,410)" to="(670,410)"/> <wire from="(590,600)" to="(600,600)"/> <wire from="(600,600)" to="(600,610)"/> <wire from="(600,610)" to="(620,610)"/> <wire from="(600,630)" to="(600,640)"/> <wire from="(600,630)" to="(620,630)"/> <wire from="(600,690)" to="(620,690)"/> <wire from="(600,830)" to="(670,830)"/> <wire from="(620,690)" to="(620,790)"/> <wire from="(620,690)" to="(670,690)"/> <wire from="(660,620)" to="(670,620)"/> </circuit> <circuit name="FLAGS"> <a name="appearance" val="custom"/> <a name="circuit" val="FLAGS"/> <a name="clabel" val="FLAGS"/> <a name="clabelfont" val="SansSerif plain 18"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <path d="M66,51 Q70,61 74,51" fill="none" stroke="#808080" stroke-width="2"/> <rect fill="#52ff08" height="420" stroke="#000000" stroke-width="2" width="230" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="79">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="99">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="259" y="369">D0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="261" y="440">D7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="244" y="405">DB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="369">D0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="67" y="439">D7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="76" y="405">DB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="119">B_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="79">AVR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="256" y="198">DB/V</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="69" y="299">SO</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="252" y="259">DBZ/Z</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="73" y="139">P/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="255" y="219">DB/N</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="219">IR5/C</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="252" y="339">ACR/C</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="256" y="178">DB/C</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="238">IR5/D</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="259">IR5/I</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="279">0/V</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="255" y="239">DB/P</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="258" y="319">ACR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="70" y="198">/IR5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="159">BRK6E</text> <circ-anchor facing="east" x="70" y="50"/> <circ-port dir="in" pin="90,1050" x="50" y="200"/> <circ-port dir="in" pin="90,110" x="50" y="370"/> <circ-port dir="in" pin="90,1160" x="50" y="260"/> <circ-port dir="in" pin="90,1210" x="50" y="160"/> <circ-port dir="in" pin="90,1270" x="280" y="80"/> <circ-port dir="in" pin="90,1340" x="280" y="200"/> <circ-port dir="in" pin="90,1390" x="170" y="50"/> <circ-port dir="in" pin="90,1440" x="50" y="280"/> <circ-port dir="in" pin="90,150" x="50" y="380"/> <circ-port dir="in" pin="90,1570" x="50" y="300"/> <circ-port dir="in" pin="90,190" x="50" y="390"/> <circ-port dir="in" pin="90,230" x="50" y="400"/> <circ-port dir="in" pin="90,270" x="50" y="410"/> <circ-port dir="in" pin="90,30" x="50" y="140"/> <circ-port dir="in" pin="90,310" x="50" y="420"/> <circ-port dir="in" pin="90,350" x="50" y="430"/> <circ-port dir="in" pin="90,390" x="50" y="440"/> <circ-port dir="in" pin="90,470" x="280" y="240"/> <circ-port dir="in" pin="90,510" x="280" y="260"/> <circ-port dir="in" pin="90,550" x="280" y="220"/> <circ-port dir="in" pin="90,600" x="50" y="220"/> <circ-port dir="in" pin="90,630" x="280" y="320"/> <circ-port dir="in" pin="90,70" x="50" y="120"/> <circ-port dir="in" pin="90,700" x="280" y="180"/> <circ-port dir="in" pin="90,740" x="280" y="340"/> <circ-port dir="in" pin="90,830" x="50" y="240"/> <circ-port dir="in" pin="90,910" x="50" y="80"/> <circ-port dir="in" pin="90,940" x="50" y="100"/> <circ-port dir="out" pin="1030,140" x="280" y="370"/> <circ-port dir="out" pin="1030,180" x="280" y="380"/> <circ-port dir="out" pin="1030,220" x="280" y="390"/> <circ-port dir="out" pin="1030,260" x="280" y="400"/> <circ-port dir="out" pin="1030,300" x="280" y="410"/> <circ-port dir="out" pin="1030,340" x="280" y="420"/> <circ-port dir="out" pin="1030,380" x="280" y="430"/> <circ-port dir="out" pin="1030,420" x="280" y="440"/> <circ-port dir="out" pin="1030,590" x="170" y="470"/> <circ-port dir="out" pin="1030,630" x="150" y="470"/> <circ-port dir="out" pin="1030,670" x="130" y="470"/> <circ-port dir="out" pin="1030,710" x="110" y="470"/> <circ-port dir="out" pin="1030,750" x="90" y="470"/> <circ-port dir="out" pin="1030,790" x="70" y="470"/> </appear> <comp lib="0" loc="(1030,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_Z_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_N_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_C_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,710)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_D_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_I_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_V_OUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(110,1050)" name="Tunnel"> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,1210)" name="Tunnel"> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,470)" name="Tunnel"> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,510)" name="Tunnel"> <a name="label" val="DBZ_Z"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,550)" name="Tunnel"> <a name="label" val="DB_N"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(110,910)" name="Tunnel"> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(110,940)" name="Tunnel"> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(120,170)" name="Tunnel"> <a name="label" val="DB2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,230)" name="Tunnel"> <a name="label" val="DB3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,330)" name="Tunnel"> <a name="label" val="DB6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(170,1370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,110)" name="Tunnel"> <a name="label" val="DB0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(320,1520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBZ_Z"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(370,940)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(380,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,1050)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_N"/> </comp> <comp lib="0" loc="(400,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(410,1100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(410,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(410,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(430,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(430,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DBZ_Z"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(450,1550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(450,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_IR5"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(460,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_P"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,1540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(700,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(810,1090)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BRK6E"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(90,1050)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IR5"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(90,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR5_I"/> </comp> <comp lib="0" loc="(90,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(90,1270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AVR"/> </comp> <comp lib="0" loc="(90,1340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_V"/> </comp> <comp lib="0" loc="(90,1390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D112"/> </comp> <comp lib="0" loc="(90,1440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_V"/> </comp> <comp lib="0" loc="(90,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(90,1570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(90,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(90,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(90,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="P_DB"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(90,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(90,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(90,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_P"/> </comp> <comp lib="0" loc="(90,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DBZ_Z"/> </comp> <comp lib="0" loc="(90,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_N"/> </comp> <comp lib="0" loc="(90,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR5_C"/> </comp> <comp lib="0" loc="(90,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(90,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(90,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_C"/> </comp> <comp lib="0" loc="(90,740)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ACR_C"/> </comp> <comp lib="0" loc="(90,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="IR5_D"/> </comp> <comp lib="0" loc="(90,910)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,940)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(1010,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,300)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,380)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(1010,420)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(160,1570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,210)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(340,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,1150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,1270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,1320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,1390)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,730)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,930)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,1100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,630)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,880)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,1060)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1110)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1160)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1280)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1330)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,1380)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,170)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,220)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,270)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,400)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,450)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,590)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,640)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,690)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,740)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,840)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,890)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,940)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,200)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,1110)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,890)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,1350)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(630,670)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(660,1560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,1100)" name="AND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(110,1380)" name="Text"> <a name="text" val="AVR/V"/> </comp> <comp lib="6" loc="(230,735)" name="Text"> <a name="text" val="ACR/C"/> </comp> <comp lib="6" loc="(340,1155)" name="Text"> <a name="text" val="IR5/I"/> </comp> <comp lib="6" loc="(350,690)" name="Text"> <a name="text" val="DB/C"/> </comp> <comp lib="6" loc="(350,915)" name="Text"> <a name="text" val="IR5/D"/> </comp> <comp lib="6" loc="(360,85)" name="Text"> <a name="text" val="/DB1"/> </comp> <comp lib="6" loc="(365,1415)" name="Text"> <a name="text" val="1/V"/> </comp> <comp lib="6" loc="(370,1365)" name="Text"> <a name="text" val="DB/V"/> </comp> <comp lib="6" loc="(370,385)" name="Text"> <a name="text" val="/DB7"/> </comp> <comp lib="6" loc="(375,205)" name="Text"> <a name="text" val="/DBZ"/> </comp> <comp lib="6" loc="(410,1435)" name="Text"> <a name="text" val="0/V"/> </comp> <comp lib="6" loc="(435,1310)" name="Text"> <a name="text" val="/DB6"/> </comp> <comp lib="6" loc="(435,820)" name="Text"> <a name="text" val="IR5/D"/> </comp> <comp lib="6" loc="(440,1260)" name="Text"> <a name="text" val="/AVR"/> </comp> <comp lib="6" loc="(440,1335)" name="Text"> <a name="text" val="DB/V"/> </comp> <comp lib="6" loc="(445,595)" name="Text"> <a name="text" val="IR5/C"/> </comp> <comp lib="6" loc="(445,645)" name="Text"> <a name="text" val="ACR/C"/> </comp> <comp lib="6" loc="(450,1065)" name="Text"> <a name="text" val="IR5/I"/> </comp> <comp lib="6" loc="(450,1090)" name="Text"> <a name="text" val="/DB2"/> </comp> <comp lib="6" loc="(450,675)" name="Text"> <a name="text" val="/DB0"/> </comp> <comp lib="6" loc="(450,695)" name="Text"> <a name="text" val="DB/C"/> </comp> <comp lib="6" loc="(450,870)" name="Text"> <a name="text" val="/DB3"/> </comp> <comp lib="6" loc="(455,620)" name="Text"> <a name="text" val="/ACR"/> </comp> <comp lib="6" loc="(725,1290)" name="Text"> <a name="text" val="V FLAG"/> </comp> <comp lib="6" loc="(730,1050)" name="Text"> <a name="text" val="I FLAG"/> </comp> <comp lib="6" loc="(730,150)" name="Text"> <a name="text" val="Z FLAG"/> </comp> <comp lib="6" loc="(730,370)" name="Text"> <a name="text" val="N FLAG"/> </comp> <comp lib="6" loc="(730,620)" name="Text"> <a name="text" val="C FLAG"/> </comp> <comp lib="6" loc="(730,830)" name="Text"> <a name="text" val="D FLAG"/> </comp> <comp lib="6" loc="(785,1340)" name="Text"> <a name="text" val="/V_OUT"/> </comp> <comp lib="6" loc="(785,660)" name="Text"> <a name="text" val="/C_OUT"/> </comp> <comp lib="6" loc="(785,885)" name="Text"> <a name="text" val="/D_OUT"/> </comp> <comp lib="6" loc="(790,190)" name="Text"> <a name="text" val="/Z_OUT"/> </comp> <comp lib="6" loc="(790,410)" name="Text"> <a name="text" val="/N_OUT"/> </comp> <comp lib="6" loc="(835,1140)" name="Text"> <a name="text" val="/I_OUT"/> </comp> <comp lib="6" loc="(960,345)" name="Text"> <a name="text" val="N.C."/> </comp> <comp loc="(220,1380)" name="D_Latch"> <a name="label" val="avr_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,1560)" name="D_Latch"> <a name="label" val="so_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,1560)" name="D_Latch"> <a name="label" val="so_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,1560)" name="D_Latch"> <a name="label" val="so_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,1100)" name="D_Latch"> <a name="label" val="i_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,1200)" name="D_Latch"> <a name="label" val="i_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,1340)" name="D_Latch"> <a name="label" val="v_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,1440)" name="D_Latch"> <a name="label" val="v_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,1550)" name="D_Latch"> <a name="label" val="vset_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,190)" name="D_Latch"> <a name="label" val="z_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,290)" name="D_Latch"> <a name="label" val="z_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,410)" name="D_Latch"> <a name="label" val="n_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,510)" name="D_Latch"> <a name="label" val="n_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,660)" name="D_Latch"> <a name="label" val="c_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,760)" name="D_Latch"> <a name="label" val="c_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,880)" name="D_Latch"> <a name="label" val="d_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,980)" name="D_Latch"> <a name="label" val="d_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,130)" to="(1000,170)"/> <wire from="(1000,170)" to="(1000,210)"/> <wire from="(1000,210)" to="(1000,250)"/> <wire from="(1000,250)" to="(1000,290)"/> <wire from="(1000,290)" to="(1000,370)"/> <wire from="(1000,30)" to="(1000,130)"/> <wire from="(1000,370)" to="(1000,410)"/> <wire from="(1010,140)" to="(1030,140)"/> <wire from="(1010,180)" to="(1030,180)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(1010,260)" to="(1030,260)"/> <wire from="(1010,300)" to="(1030,300)"/> <wire from="(1010,380)" to="(1030,380)"/> <wire from="(1010,420)" to="(1030,420)"/> <wire from="(110,170)" to="(110,190)"/> <wire from="(110,170)" to="(120,170)"/> <wire from="(110,190)" to="(220,190)"/> <wire from="(110,200)" to="(110,230)"/> <wire from="(110,200)" to="(220,200)"/> <wire from="(110,230)" to="(120,230)"/> <wire from="(110,330)" to="(110,350)"/> <wire from="(110,330)" to="(120,330)"/> <wire from="(110,350)" to="(190,350)"/> <wire from="(160,1570)" to="(360,1570)"/> <wire from="(170,1370)" to="(180,1370)"/> <wire from="(170,150)" to="(170,180)"/> <wire from="(170,180)" to="(220,180)"/> <wire from="(170,220)" to="(170,270)"/> <wire from="(170,220)" to="(220,220)"/> <wire from="(170,90)" to="(170,150)"/> <wire from="(170,90)" to="(320,90)"/> <wire from="(180,230)" to="(180,310)"/> <wire from="(180,230)" to="(220,230)"/> <wire from="(190,110)" to="(190,170)"/> <wire from="(190,110)" to="(200,110)"/> <wire from="(190,170)" to="(220,170)"/> <wire from="(190,240)" to="(190,350)"/> <wire from="(190,240)" to="(220,240)"/> <wire from="(200,250)" to="(200,390)"/> <wire from="(200,250)" to="(220,250)"/> <wire from="(200,390)" to="(330,390)"/> <wire from="(220,1370)" to="(280,1370)"/> <wire from="(230,1070)" to="(230,1160)"/> <wire from="(230,1070)" to="(470,1070)"/> <wire from="(230,1160)" to="(380,1160)"/> <wire from="(280,1290)" to="(280,1370)"/> <wire from="(280,1290)" to="(470,1290)"/> <wire from="(280,1370)" to="(280,1390)"/> <wire from="(280,1390)" to="(380,1390)"/> <wire from="(300,210)" to="(320,210)"/> <wire from="(310,650)" to="(310,740)"/> <wire from="(310,650)" to="(470,650)"/> <wire from="(310,740)" to="(380,740)"/> <wire from="(320,1520)" to="(340,1520)"/> <wire from="(330,600)" to="(330,730)"/> <wire from="(330,600)" to="(470,600)"/> <wire from="(330,730)" to="(380,730)"/> <wire from="(330,830)" to="(330,920)"/> <wire from="(330,830)" to="(470,830)"/> <wire from="(330,920)" to="(380,920)"/> <wire from="(340,1520)" to="(340,1550)"/> <wire from="(340,1520)" to="(520,1520)"/> <wire from="(340,1550)" to="(360,1550)"/> <wire from="(340,210)" to="(470,210)"/> <wire from="(340,90)" to="(420,90)"/> <wire from="(350,1120)" to="(360,1120)"/> <wire from="(350,1340)" to="(350,1380)"/> <wire from="(350,1340)" to="(470,1340)"/> <wire from="(350,1380)" to="(380,1380)"/> <wire from="(350,1400)" to="(350,1500)"/> <wire from="(350,1400)" to="(380,1400)"/> <wire from="(350,1500)" to="(770,1500)"/> <wire from="(350,310)" to="(380,310)"/> <wire from="(350,330)" to="(380,330)"/> <wire from="(350,390)" to="(470,390)"/> <wire from="(360,1120)" to="(360,1140)"/> <wire from="(360,1120)" to="(470,1120)"/> <wire from="(360,1140)" to="(380,1140)"/> <wire from="(360,700)" to="(360,720)"/> <wire from="(360,700)" to="(470,700)"/> <wire from="(360,720)" to="(380,720)"/> <wire from="(370,940)" to="(380,940)"/> <wire from="(380,1320)" to="(400,1320)"/> <wire from="(400,1050)" to="(470,1050)"/> <wire from="(400,1570)" to="(430,1570)"/> <wire from="(400,440)" to="(420,440)"/> <wire from="(400,880)" to="(420,880)"/> <wire from="(410,1100)" to="(420,1100)"/> <wire from="(410,580)" to="(470,580)"/> <wire from="(410,680)" to="(420,680)"/> <wire from="(420,1150)" to="(470,1150)"/> <wire from="(420,1270)" to="(470,1270)"/> <wire from="(420,1320)" to="(470,1320)"/> <wire from="(420,1390)" to="(440,1390)"/> <wire from="(420,160)" to="(470,160)"/> <wire from="(420,320)" to="(430,320)"/> <wire from="(420,410)" to="(420,440)"/> <wire from="(420,410)" to="(470,410)"/> <wire from="(420,440)" to="(430,440)"/> <wire from="(420,730)" to="(470,730)"/> <wire from="(420,90)" to="(420,160)"/> <wire from="(420,930)" to="(470,930)"/> <wire from="(430,1570)" to="(430,1600)"/> <wire from="(430,1570)" to="(460,1570)"/> <wire from="(430,1600)" to="(600,1600)"/> <wire from="(430,180)" to="(470,180)"/> <wire from="(430,230)" to="(470,230)"/> <wire from="(430,260)" to="(430,320)"/> <wire from="(430,260)" to="(470,260)"/> <wire from="(440,1100)" to="(470,1100)"/> <wire from="(440,1370)" to="(440,1390)"/> <wire from="(440,1370)" to="(470,1370)"/> <wire from="(440,630)" to="(470,630)"/> <wire from="(440,680)" to="(470,680)"/> <wire from="(440,880)" to="(470,880)"/> <wire from="(450,1020)" to="(770,1020)"/> <wire from="(450,1170)" to="(450,1240)"/> <wire from="(450,1170)" to="(470,1170)"/> <wire from="(450,1240)" to="(770,1240)"/> <wire from="(450,1390)" to="(450,1480)"/> <wire from="(450,1390)" to="(470,1390)"/> <wire from="(450,1480)" to="(770,1480)"/> <wire from="(450,1550)" to="(460,1550)"/> <wire from="(450,280)" to="(450,330)"/> <wire from="(450,280)" to="(470,280)"/> <wire from="(450,330)" to="(770,330)"/> <wire from="(450,440)" to="(470,440)"/> <wire from="(450,460)" to="(450,550)"/> <wire from="(450,460)" to="(470,460)"/> <wire from="(450,550)" to="(770,550)"/> <wire from="(450,750)" to="(450,800)"/> <wire from="(450,750)" to="(470,750)"/> <wire from="(450,800)" to="(770,800)"/> <wire from="(450,850)" to="(470,850)"/> <wire from="(450,950)" to="(450,1020)"/> <wire from="(450,950)" to="(470,950)"/> <wire from="(460,900)" to="(470,900)"/> <wire from="(500,1060)" to="(540,1060)"/> <wire from="(500,1110)" to="(580,1110)"/> <wire from="(500,1160)" to="(540,1160)"/> <wire from="(500,1280)" to="(540,1280)"/> <wire from="(500,1330)" to="(530,1330)"/> <wire from="(500,1380)" to="(530,1380)"/> <wire from="(500,1570)" to="(540,1570)"/> <wire from="(500,170)" to="(540,170)"/> <wire from="(500,220)" to="(540,220)"/> <wire from="(500,270)" to="(550,270)"/> <wire from="(500,400)" to="(540,400)"/> <wire from="(500,450)" to="(540,450)"/> <wire from="(500,590)" to="(540,590)"/> <wire from="(500,640)" to="(530,640)"/> <wire from="(500,690)" to="(530,690)"/> <wire from="(500,740)" to="(540,740)"/> <wire from="(500,840)" to="(540,840)"/> <wire from="(500,890)" to="(580,890)"/> <wire from="(500,940)" to="(540,940)"/> <wire from="(520,1520)" to="(520,1550)"/> <wire from="(520,1550)" to="(540,1550)"/> <wire from="(530,1330)" to="(530,1340)"/> <wire from="(530,1340)" to="(570,1340)"/> <wire from="(530,1360)" to="(530,1380)"/> <wire from="(530,1360)" to="(570,1360)"/> <wire from="(530,640)" to="(530,660)"/> <wire from="(530,660)" to="(570,660)"/> <wire from="(530,680)" to="(530,690)"/> <wire from="(530,680)" to="(570,680)"/> <wire from="(540,1060)" to="(540,1100)"/> <wire from="(540,1100)" to="(580,1100)"/> <wire from="(540,1120)" to="(540,1160)"/> <wire from="(540,1120)" to="(580,1120)"/> <wire from="(540,1280)" to="(540,1330)"/> <wire from="(540,1330)" to="(570,1330)"/> <wire from="(540,1370)" to="(540,1440)"/> <wire from="(540,1370)" to="(570,1370)"/> <wire from="(540,170)" to="(540,190)"/> <wire from="(540,190)" to="(570,190)"/> <wire from="(540,200)" to="(540,220)"/> <wire from="(540,200)" to="(570,200)"/> <wire from="(540,400)" to="(540,410)"/> <wire from="(540,410)" to="(570,410)"/> <wire from="(540,430)" to="(540,450)"/> <wire from="(540,430)" to="(570,430)"/> <wire from="(540,590)" to="(540,650)"/> <wire from="(540,650)" to="(570,650)"/> <wire from="(540,690)" to="(540,740)"/> <wire from="(540,690)" to="(570,690)"/> <wire from="(540,840)" to="(540,880)"/> <wire from="(540,880)" to="(580,880)"/> <wire from="(540,900)" to="(540,940)"/> <wire from="(540,900)" to="(580,900)"/> <wire from="(550,210)" to="(550,270)"/> <wire from="(550,210)" to="(570,210)"/> <wire from="(580,1550)" to="(620,1550)"/> <wire from="(600,1570)" to="(600,1600)"/> <wire from="(600,1570)" to="(620,1570)"/> <wire from="(610,200)" to="(710,200)"/> <wire from="(610,420)" to="(710,420)"/> <wire from="(620,1110)" to="(710,1110)"/> <wire from="(620,890)" to="(710,890)"/> <wire from="(630,1350)" to="(710,1350)"/> <wire from="(630,670)" to="(710,670)"/> <wire from="(650,1150)" to="(650,1210)"/> <wire from="(650,1150)" to="(870,1150)"/> <wire from="(650,1210)" to="(710,1210)"/> <wire from="(650,1390)" to="(650,1450)"/> <wire from="(650,1390)" to="(810,1390)"/> <wire from="(650,1450)" to="(710,1450)"/> <wire from="(650,240)" to="(650,300)"/> <wire from="(650,240)" to="(810,240)"/> <wire from="(650,300)" to="(710,300)"/> <wire from="(650,460)" to="(650,520)"/> <wire from="(650,460)" to="(810,460)"/> <wire from="(650,520)" to="(710,520)"/> <wire from="(650,710)" to="(650,770)"/> <wire from="(650,710)" to="(810,710)"/> <wire from="(650,770)" to="(710,770)"/> <wire from="(650,930)" to="(650,990)"/> <wire from="(650,930)" to="(810,930)"/> <wire from="(650,990)" to="(710,990)"/> <wire from="(660,1560)" to="(710,1560)"/> <wire from="(700,1090)" to="(710,1090)"/> <wire from="(700,1190)" to="(710,1190)"/> <wire from="(700,1330)" to="(710,1330)"/> <wire from="(700,1430)" to="(710,1430)"/> <wire from="(700,1540)" to="(710,1540)"/> <wire from="(700,180)" to="(710,180)"/> <wire from="(700,280)" to="(710,280)"/> <wire from="(700,400)" to="(710,400)"/> <wire from="(700,500)" to="(710,500)"/> <wire from="(700,650)" to="(710,650)"/> <wire from="(700,750)" to="(710,750)"/> <wire from="(700,870)" to="(710,870)"/> <wire from="(700,970)" to="(710,970)"/> <wire from="(750,1110)" to="(830,1110)"/> <wire from="(750,1190)" to="(770,1190)"/> <wire from="(750,1350)" to="(810,1350)"/> <wire from="(750,1430)" to="(770,1430)"/> <wire from="(750,1540)" to="(770,1540)"/> <wire from="(750,200)" to="(810,200)"/> <wire from="(750,280)" to="(770,280)"/> <wire from="(750,420)" to="(810,420)"/> <wire from="(750,500)" to="(770,500)"/> <wire from="(750,670)" to="(810,670)"/> <wire from="(750,750)" to="(770,750)"/> <wire from="(750,890)" to="(810,890)"/> <wire from="(750,970)" to="(770,970)"/> <wire from="(770,1190)" to="(770,1240)"/> <wire from="(770,1430)" to="(770,1480)"/> <wire from="(770,1500)" to="(770,1540)"/> <wire from="(770,280)" to="(770,330)"/> <wire from="(770,500)" to="(770,550)"/> <wire from="(770,750)" to="(770,800)"/> <wire from="(770,970)" to="(770,1020)"/> <wire from="(810,1090)" to="(820,1090)"/> <wire from="(810,1350)" to="(810,1390)"/> <wire from="(810,1350)" to="(890,1350)"/> <wire from="(810,200)" to="(810,240)"/> <wire from="(810,200)" to="(930,200)"/> <wire from="(810,420)" to="(810,460)"/> <wire from="(810,420)" to="(910,420)"/> <wire from="(810,670)" to="(810,710)"/> <wire from="(810,670)" to="(830,670)"/> <wire from="(810,890)" to="(810,930)"/> <wire from="(810,890)" to="(850,890)"/> <wire from="(830,140)" to="(830,670)"/> <wire from="(830,140)" to="(950,140)"/> <wire from="(830,670)" to="(1030,670)"/> <wire from="(850,260)" to="(850,710)"/> <wire from="(850,260)" to="(950,260)"/> <wire from="(850,710)" to="(1030,710)"/> <wire from="(850,710)" to="(850,890)"/> <wire from="(860,1100)" to="(870,1100)"/> <wire from="(870,1100)" to="(870,1150)"/> <wire from="(870,220)" to="(870,750)"/> <wire from="(870,220)" to="(950,220)"/> <wire from="(870,750)" to="(1030,750)"/> <wire from="(870,750)" to="(870,1100)"/> <wire from="(890,380)" to="(890,790)"/> <wire from="(890,380)" to="(950,380)"/> <wire from="(890,790)" to="(1030,790)"/> <wire from="(890,790)" to="(890,1350)"/> <wire from="(90,1050)" to="(110,1050)"/> <wire from="(90,110)" to="(190,110)"/> <wire from="(90,1160)" to="(230,1160)"/> <wire from="(90,1210)" to="(110,1210)"/> <wire from="(90,1270)" to="(400,1270)"/> <wire from="(90,1340)" to="(350,1340)"/> <wire from="(90,1390)" to="(180,1390)"/> <wire from="(90,1440)" to="(540,1440)"/> <wire from="(90,150)" to="(170,150)"/> <wire from="(90,1570)" to="(140,1570)"/> <wire from="(90,190)" to="(110,190)"/> <wire from="(90,230)" to="(110,230)"/> <wire from="(90,270)" to="(170,270)"/> <wire from="(90,30)" to="(1000,30)"/> <wire from="(90,310)" to="(180,310)"/> <wire from="(90,350)" to="(110,350)"/> <wire from="(90,390)" to="(200,390)"/> <wire from="(90,470)" to="(110,470)"/> <wire from="(90,510)" to="(110,510)"/> <wire from="(90,550)" to="(110,550)"/> <wire from="(90,600)" to="(330,600)"/> <wire from="(90,630)" to="(420,630)"/> <wire from="(90,70)" to="(910,70)"/> <wire from="(90,700)" to="(360,700)"/> <wire from="(90,740)" to="(310,740)"/> <wire from="(90,830)" to="(330,830)"/> <wire from="(90,910)" to="(110,910)"/> <wire from="(90,940)" to="(110,940)"/> <wire from="(910,300)" to="(990,300)"/> <wire from="(910,420)" to="(910,630)"/> <wire from="(910,420)" to="(950,420)"/> <wire from="(910,630)" to="(1030,630)"/> <wire from="(910,70)" to="(910,300)"/> <wire from="(930,180)" to="(930,200)"/> <wire from="(930,180)" to="(950,180)"/> <wire from="(930,200)" to="(930,590)"/> <wire from="(930,590)" to="(1030,590)"/> <wire from="(970,140)" to="(990,140)"/> <wire from="(970,180)" to="(990,180)"/> <wire from="(970,220)" to="(990,220)"/> <wire from="(970,260)" to="(990,260)"/> <wire from="(970,380)" to="(990,380)"/> <wire from="(970,420)" to="(990,420)"/> <wire from="(980,340)" to="(1030,340)"/> </circuit> <circuit name="ABH"> <a name="appearance" val="custom"/> <a name="circuit" val="ABH"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ff5895" height="214" stroke="#000000" stroke-width="2" width="140" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="117" y="46">ABH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="211">ADH IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="74">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="82" y="103">ADH/ABH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="84">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="151" y="211">ADDR OUT</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="90,220" x="50" y="170"/> <circ-port dir="in" pin="90,250" x="50" y="180"/> <circ-port dir="in" pin="90,280" x="50" y="190"/> <circ-port dir="in" pin="90,30" x="50" y="70"/> <circ-port dir="in" pin="90,310" x="50" y="200"/> <circ-port dir="in" pin="90,340" x="50" y="210"/> <circ-port dir="in" pin="90,370" x="50" y="220"/> <circ-port dir="in" pin="90,400" x="50" y="230"/> <circ-port dir="in" pin="90,430" x="50" y="240"/> <circ-port dir="in" pin="90,60" x="50" y="80"/> <circ-port dir="in" pin="90,90" x="50" y="100"/> <circ-port dir="out" pin="660,230" x="190" y="170"/> <circ-port dir="out" pin="660,260" x="190" y="180"/> <circ-port dir="out" pin="660,290" x="190" y="190"/> <circ-port dir="out" pin="660,320" x="190" y="200"/> <circ-port dir="out" pin="660,350" x="190" y="210"/> <circ-port dir="out" pin="660,380" x="190" y="220"/> <circ-port dir="out" pin="660,410" x="190" y="230"/> <circ-port dir="out" pin="660,440" x="190" y="240"/> </appear> <comp lib="0" loc="(660,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A8"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A9"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A10"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A11"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A12"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A13"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A14"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A15"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(90,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH1"/> </comp> <comp lib="0" loc="(90,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(90,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(90,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH3"/> </comp> <comp lib="0" loc="(90,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH4"/> </comp> <comp lib="0" loc="(90,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH5"/> </comp> <comp lib="0" loc="(90,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(90,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH7"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(90,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_ABH"/> </comp> <comp loc="(230,190)" name="ABH_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(230,270)" name="ABH_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(230,350)" name="ABH_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(230,430)" name="ABH_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,190)" name="ABH_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,270)" name="ABH_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,350)" name="ABH_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(460,430)" name="ABH_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <wire from="(100,430)" to="(100,560)"/> <wire from="(100,560)" to="(410,560)"/> <wire from="(110,400)" to="(110,540)"/> <wire from="(110,540)" to="(400,540)"/> <wire from="(120,370)" to="(120,510)"/> <wire from="(120,510)" to="(390,510)"/> <wire from="(130,340)" to="(130,500)"/> <wire from="(130,500)" to="(380,500)"/> <wire from="(150,310)" to="(150,470)"/> <wire from="(150,470)" to="(230,470)"/> <wire from="(160,280)" to="(160,390)"/> <wire from="(160,390)" to="(230,390)"/> <wire from="(180,250)" to="(180,310)"/> <wire from="(180,310)" to="(230,310)"/> <wire from="(190,220)" to="(190,230)"/> <wire from="(190,230)" to="(230,230)"/> <wire from="(200,220)" to="(200,300)"/> <wire from="(200,220)" to="(230,220)"/> <wire from="(200,300)" to="(200,380)"/> <wire from="(200,300)" to="(230,300)"/> <wire from="(200,380)" to="(200,460)"/> <wire from="(200,380)" to="(230,380)"/> <wire from="(200,460)" to="(230,460)"/> <wire from="(200,90)" to="(200,220)"/> <wire from="(200,90)" to="(430,90)"/> <wire from="(210,200)" to="(210,280)"/> <wire from="(210,200)" to="(230,200)"/> <wire from="(210,280)" to="(210,360)"/> <wire from="(210,280)" to="(230,280)"/> <wire from="(210,360)" to="(210,440)"/> <wire from="(210,360)" to="(230,360)"/> <wire from="(210,440)" to="(230,440)"/> <wire from="(210,60)" to="(210,200)"/> <wire from="(210,60)" to="(440,60)"/> <wire from="(220,190)" to="(220,270)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(220,270)" to="(220,350)"/> <wire from="(220,270)" to="(230,270)"/> <wire from="(220,30)" to="(220,190)"/> <wire from="(220,30)" to="(450,30)"/> <wire from="(220,350)" to="(220,430)"/> <wire from="(220,350)" to="(230,350)"/> <wire from="(220,430)" to="(230,430)"/> <wire from="(310,200)" to="(320,200)"/> <wire from="(310,280)" to="(330,280)"/> <wire from="(310,360)" to="(340,360)"/> <wire from="(310,440)" to="(350,440)"/> <wire from="(320,120)" to="(320,200)"/> <wire from="(320,120)" to="(640,120)"/> <wire from="(330,130)" to="(330,280)"/> <wire from="(330,130)" to="(630,130)"/> <wire from="(340,140)" to="(340,360)"/> <wire from="(340,140)" to="(620,140)"/> <wire from="(350,150)" to="(350,440)"/> <wire from="(350,150)" to="(610,150)"/> <wire from="(380,230)" to="(380,500)"/> <wire from="(380,230)" to="(460,230)"/> <wire from="(390,310)" to="(390,510)"/> <wire from="(390,310)" to="(460,310)"/> <wire from="(400,390)" to="(400,540)"/> <wire from="(400,390)" to="(460,390)"/> <wire from="(410,470)" to="(410,560)"/> <wire from="(410,470)" to="(460,470)"/> <wire from="(430,220)" to="(430,300)"/> <wire from="(430,220)" to="(460,220)"/> <wire from="(430,300)" to="(430,380)"/> <wire from="(430,300)" to="(460,300)"/> <wire from="(430,380)" to="(430,460)"/> <wire from="(430,380)" to="(460,380)"/> <wire from="(430,460)" to="(460,460)"/> <wire from="(430,90)" to="(430,220)"/> <wire from="(430,90)" to="(570,90)"/> <wire from="(440,200)" to="(440,280)"/> <wire from="(440,200)" to="(460,200)"/> <wire from="(440,280)" to="(440,360)"/> <wire from="(440,280)" to="(460,280)"/> <wire from="(440,360)" to="(440,440)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,440)" to="(460,440)"/> <wire from="(440,60)" to="(440,200)"/> <wire from="(440,60)" to="(570,60)"/> <wire from="(450,190)" to="(450,270)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(450,270)" to="(450,350)"/> <wire from="(450,270)" to="(460,270)"/> <wire from="(450,30)" to="(450,190)"/> <wire from="(450,30)" to="(570,30)"/> <wire from="(450,350)" to="(450,430)"/> <wire from="(450,350)" to="(460,350)"/> <wire from="(450,430)" to="(460,430)"/> <wire from="(540,200)" to="(590,200)"/> <wire from="(540,280)" to="(580,280)"/> <wire from="(540,360)" to="(570,360)"/> <wire from="(540,440)" to="(660,440)"/> <wire from="(570,360)" to="(570,410)"/> <wire from="(570,410)" to="(660,410)"/> <wire from="(580,280)" to="(580,380)"/> <wire from="(580,380)" to="(660,380)"/> <wire from="(590,200)" to="(590,350)"/> <wire from="(590,350)" to="(660,350)"/> <wire from="(610,150)" to="(610,320)"/> <wire from="(610,320)" to="(660,320)"/> <wire from="(620,140)" to="(620,290)"/> <wire from="(620,290)" to="(660,290)"/> <wire from="(630,130)" to="(630,260)"/> <wire from="(630,260)" to="(660,260)"/> <wire from="(640,120)" to="(640,230)"/> <wire from="(640,230)" to="(660,230)"/> <wire from="(90,220)" to="(190,220)"/> <wire from="(90,250)" to="(180,250)"/> <wire from="(90,280)" to="(160,280)"/> <wire from="(90,30)" to="(220,30)"/> <wire from="(90,310)" to="(150,310)"/> <wire from="(90,340)" to="(130,340)"/> <wire from="(90,370)" to="(120,370)"/> <wire from="(90,400)" to="(110,400)"/> <wire from="(90,430)" to="(100,430)"/> <wire from="(90,60)" to="(210,60)"/> <wire from="(90,90)" to="(200,90)"/> </circuit> <circuit name="ABL"> <a name="appearance" val="custom"/> <a name="circuit" val="ABL"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ff5895" height="220" stroke="#000000" stroke-width="2" width="140" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="65">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="74">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="93">ADL/ABL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="81" y="207">ADL IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="150" y="207">ADDR OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="44">ABL</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="130,100" x="50" y="90"/> <circ-port dir="in" pin="130,20" x="50" y="60"/> <circ-port dir="in" pin="130,260" x="50" y="170"/> <circ-port dir="in" pin="130,290" x="50" y="180"/> <circ-port dir="in" pin="130,320" x="50" y="190"/> <circ-port dir="in" pin="130,350" x="50" y="200"/> <circ-port dir="in" pin="130,380" x="50" y="210"/> <circ-port dir="in" pin="130,410" x="50" y="220"/> <circ-port dir="in" pin="130,440" x="50" y="230"/> <circ-port dir="in" pin="130,470" x="50" y="240"/> <circ-port dir="in" pin="130,50" x="50" y="70"/> <circ-port dir="out" pin="730,210" x="190" y="170"/> <circ-port dir="out" pin="730,240" x="190" y="180"/> <circ-port dir="out" pin="730,270" x="190" y="190"/> <circ-port dir="out" pin="730,300" x="190" y="200"/> <circ-port dir="out" pin="730,330" x="190" y="210"/> <circ-port dir="out" pin="730,360" x="190" y="220"/> <circ-port dir="out" pin="730,390" x="190" y="230"/> <circ-port dir="out" pin="730,420" x="190" y="240"/> </appear> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ABL"/> </comp> <comp lib="0" loc="(130,20)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(130,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(130,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(130,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(130,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(730,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="A7"/> <a name="output" val="true"/> </comp> <comp loc="(250,140)" name="ABL_BIT"> <a name="label" val="0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(250,230)" name="ABL_BIT"> <a name="label" val="1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(250,320)" name="ABL_BIT"> <a name="label" val="2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(250,420)" name="ABL_BIT"> <a name="label" val="3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,150)" name="ABL_BIT"> <a name="label" val="4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,240)" name="ABL_BIT"> <a name="label" val="5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,330)" name="ABL_BIT"> <a name="label" val="6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(490,420)" name="ABL_BIT"> <a name="label" val="7"/> <a name="labelloc" val="east"/> </comp> <wire from="(130,100)" to="(200,100)"/> <wire from="(130,20)" to="(240,20)"/> <wire from="(130,260)" to="(200,260)"/> <wire from="(130,290)" to="(210,290)"/> <wire from="(130,320)" to="(210,320)"/> <wire from="(130,350)" to="(190,350)"/> <wire from="(130,380)" to="(170,380)"/> <wire from="(130,410)" to="(160,410)"/> <wire from="(130,440)" to="(150,440)"/> <wire from="(130,470)" to="(140,470)"/> <wire from="(130,50)" to="(180,50)"/> <wire from="(140,470)" to="(140,550)"/> <wire from="(140,550)" to="(440,550)"/> <wire from="(150,440)" to="(150,530)"/> <wire from="(150,530)" to="(430,530)"/> <wire from="(160,410)" to="(160,520)"/> <wire from="(160,520)" to="(420,520)"/> <wire from="(170,380)" to="(170,500)"/> <wire from="(170,500)" to="(410,500)"/> <wire from="(180,30)" to="(180,50)"/> <wire from="(180,30)" to="(230,30)"/> <wire from="(190,350)" to="(190,460)"/> <wire from="(190,460)" to="(250,460)"/> <wire from="(200,180)" to="(200,260)"/> <wire from="(200,180)" to="(250,180)"/> <wire from="(200,40)" to="(200,100)"/> <wire from="(200,40)" to="(220,40)"/> <wire from="(210,270)" to="(210,290)"/> <wire from="(210,270)" to="(250,270)"/> <wire from="(210,320)" to="(210,360)"/> <wire from="(210,360)" to="(250,360)"/> <wire from="(220,170)" to="(220,260)"/> <wire from="(220,170)" to="(250,170)"/> <wire from="(220,260)" to="(220,350)"/> <wire from="(220,260)" to="(250,260)"/> <wire from="(220,350)" to="(220,450)"/> <wire from="(220,350)" to="(250,350)"/> <wire from="(220,40)" to="(220,170)"/> <wire from="(220,40)" to="(460,40)"/> <wire from="(220,450)" to="(250,450)"/> <wire from="(230,150)" to="(230,240)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(230,240)" to="(230,330)"/> <wire from="(230,240)" to="(250,240)"/> <wire from="(230,30)" to="(230,150)"/> <wire from="(230,30)" to="(470,30)"/> <wire from="(230,330)" to="(230,430)"/> <wire from="(230,330)" to="(250,330)"/> <wire from="(230,430)" to="(250,430)"/> <wire from="(240,140)" to="(240,230)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(240,20)" to="(240,140)"/> <wire from="(240,20)" to="(480,20)"/> <wire from="(240,230)" to="(240,320)"/> <wire from="(240,230)" to="(250,230)"/> <wire from="(240,320)" to="(240,420)"/> <wire from="(240,320)" to="(250,320)"/> <wire from="(240,420)" to="(250,420)"/> <wire from="(330,150)" to="(360,150)"/> <wire from="(330,240)" to="(370,240)"/> <wire from="(330,330)" to="(380,330)"/> <wire from="(330,430)" to="(390,430)"/> <wire from="(360,80)" to="(360,150)"/> <wire from="(360,80)" to="(670,80)"/> <wire from="(370,90)" to="(370,240)"/> <wire from="(370,90)" to="(660,90)"/> <wire from="(380,100)" to="(380,330)"/> <wire from="(380,100)" to="(650,100)"/> <wire from="(390,110)" to="(390,430)"/> <wire from="(390,110)" to="(640,110)"/> <wire from="(410,190)" to="(410,500)"/> <wire from="(410,190)" to="(490,190)"/> <wire from="(420,280)" to="(420,520)"/> <wire from="(420,280)" to="(490,280)"/> <wire from="(430,370)" to="(430,530)"/> <wire from="(430,370)" to="(490,370)"/> <wire from="(440,460)" to="(440,550)"/> <wire from="(440,460)" to="(490,460)"/> <wire from="(460,180)" to="(460,270)"/> <wire from="(460,180)" to="(490,180)"/> <wire from="(460,270)" to="(460,360)"/> <wire from="(460,270)" to="(490,270)"/> <wire from="(460,360)" to="(460,450)"/> <wire from="(460,360)" to="(490,360)"/> <wire from="(460,40)" to="(460,180)"/> <wire from="(460,40)" to="(500,40)"/> <wire from="(460,450)" to="(490,450)"/> <wire from="(470,160)" to="(470,250)"/> <wire from="(470,160)" to="(490,160)"/> <wire from="(470,250)" to="(470,340)"/> <wire from="(470,250)" to="(490,250)"/> <wire from="(470,30)" to="(470,160)"/> <wire from="(470,30)" to="(500,30)"/> <wire from="(470,340)" to="(470,430)"/> <wire from="(470,340)" to="(490,340)"/> <wire from="(470,430)" to="(490,430)"/> <wire from="(480,150)" to="(480,240)"/> <wire from="(480,150)" to="(490,150)"/> <wire from="(480,20)" to="(480,150)"/> <wire from="(480,20)" to="(500,20)"/> <wire from="(480,240)" to="(480,330)"/> <wire from="(480,240)" to="(490,240)"/> <wire from="(480,330)" to="(480,420)"/> <wire from="(480,330)" to="(490,330)"/> <wire from="(480,420)" to="(490,420)"/> <wire from="(570,160)" to="(630,160)"/> <wire from="(570,250)" to="(610,250)"/> <wire from="(570,340)" to="(600,340)"/> <wire from="(570,430)" to="(600,430)"/> <wire from="(600,340)" to="(600,390)"/> <wire from="(600,390)" to="(730,390)"/> <wire from="(600,420)" to="(600,430)"/> <wire from="(600,420)" to="(730,420)"/> <wire from="(610,250)" to="(610,360)"/> <wire from="(610,360)" to="(730,360)"/> <wire from="(630,160)" to="(630,330)"/> <wire from="(630,330)" to="(730,330)"/> <wire from="(640,110)" to="(640,300)"/> <wire from="(640,300)" to="(730,300)"/> <wire from="(650,100)" to="(650,270)"/> <wire from="(650,270)" to="(730,270)"/> <wire from="(660,240)" to="(730,240)"/> <wire from="(660,90)" to="(660,240)"/> <wire from="(670,210)" to="(730,210)"/> <wire from="(670,80)" to="(670,210)"/> </circuit> <circuit name="REGS_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="REGS_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="160" stroke="#000000" stroke-width="2" width="70" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="85" y="42">REGS_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="83">Y/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="94">SB/Y</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="113">X/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="123">SB/X</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="143">S/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="154">S/S</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="164">SB/S</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="173">S/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="203">SBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="105" y="83">SBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="103" y="113">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="90" y="201">Y</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="101" y="201">X</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="111" y="201">S</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="80,140" x="50" y="80"/> <circ-port dir="in" pin="80,170" x="50" y="90"/> <circ-port dir="in" pin="80,200" x="50" y="110"/> <circ-port dir="in" pin="80,230" x="50" y="120"/> <circ-port dir="in" pin="80,290" x="50" y="140"/> <circ-port dir="in" pin="80,320" x="50" y="150"/> <circ-port dir="in" pin="80,350" x="50" y="160"/> <circ-port dir="in" pin="80,380" x="50" y="170"/> <circ-port dir="in" pin="80,450" x="50" y="200"/> <circ-port dir="in" pin="80,60" x="50" y="60"/> <circ-port dir="out" pin="710,110" x="120" y="110"/> <circ-port dir="out" pin="710,210" x="90" y="210"/> <circ-port dir="out" pin="710,250" x="100" y="210"/> <circ-port dir="out" pin="710,290" x="110" y="210"/> <circ-port dir="out" pin="710,60" x="120" y="80"/> </appear> <comp lib="0" loc="(710,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADLx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(710,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Y_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(710,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="X_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(710,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(710,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SBx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(80,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Y_SB"/> </comp> <comp lib="0" loc="(80,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_Y"/> </comp> <comp lib="0" loc="(80,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="X_SB"/> </comp> <comp lib="0" loc="(80,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_X"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_ADL"/> </comp> <comp lib="0" loc="(80,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_S"/> </comp> <comp lib="0" loc="(80,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_S"/> </comp> <comp lib="0" loc="(80,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_SB"/> </comp> <comp lib="0" loc="(80,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SBx_in"/> </comp> <comp lib="0" loc="(80,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="1" loc="(200,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,130)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,230)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(560,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(560,330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(560,380)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(240,370)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="6" loc="(100,320)" name="Text"> <a name="text" val="unused"/> </comp> <comp loc="(290,130)" name="DFF_Level"> <a name="label" val="Y"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,230)" name="DFF_Level"> <a name="label" val="X"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,360)" name="D_Latch"> <a name="label" val="S_in"/> <a name="labelloc" val="south"/> </comp> <comp loc="(410,360)" name="D_Latch"> <a name="label" val="S_out"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,230)" to="(130,240)"/> <wire from="(130,240)" to="(220,240)"/> <wire from="(130,280)" to="(130,380)"/> <wire from="(130,280)" to="(550,280)"/> <wire from="(130,90)" to="(130,140)"/> <wire from="(130,90)" to="(550,90)"/> <wire from="(160,120)" to="(160,220)"/> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,220)" to="(160,300)"/> <wire from="(160,220)" to="(180,220)"/> <wire from="(160,300)" to="(160,320)"/> <wire from="(160,300)" to="(360,300)"/> <wire from="(160,320)" to="(180,320)"/> <wire from="(160,60)" to="(160,120)"/> <wire from="(170,380)" to="(170,450)"/> <wire from="(170,380)" to="(210,380)"/> <wire from="(170,450)" to="(260,450)"/> <wire from="(180,140)" to="(180,170)"/> <wire from="(180,140)" to="(220,140)"/> <wire from="(180,340)" to="(180,350)"/> <wire from="(180,340)" to="(220,340)"/> <wire from="(190,360)" to="(190,410)"/> <wire from="(190,360)" to="(210,360)"/> <wire from="(190,410)" to="(430,410)"/> <wire from="(200,120)" to="(220,120)"/> <wire from="(200,220)" to="(220,220)"/> <wire from="(200,320)" to="(280,320)"/> <wire from="(220,340)" to="(220,350)"/> <wire from="(240,370)" to="(290,370)"/> <wire from="(250,130)" to="(290,130)"/> <wire from="(250,230)" to="(290,230)"/> <wire from="(260,150)" to="(260,250)"/> <wire from="(260,150)" to="(290,150)"/> <wire from="(260,250)" to="(260,450)"/> <wire from="(260,250)" to="(290,250)"/> <wire from="(280,320)" to="(280,350)"/> <wire from="(280,350)" to="(290,350)"/> <wire from="(330,130)" to="(470,130)"/> <wire from="(330,230)" to="(480,230)"/> <wire from="(330,370)" to="(370,370)"/> <wire from="(360,300)" to="(360,350)"/> <wire from="(360,350)" to="(370,350)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(430,330)" to="(430,370)"/> <wire from="(430,330)" to="(470,330)"/> <wire from="(430,370)" to="(430,410)"/> <wire from="(470,130)" to="(470,170)"/> <wire from="(470,130)" to="(540,130)"/> <wire from="(470,170)" to="(690,170)"/> <wire from="(470,330)" to="(470,410)"/> <wire from="(470,330)" to="(490,330)"/> <wire from="(470,410)" to="(690,410)"/> <wire from="(480,230)" to="(480,250)"/> <wire from="(480,230)" to="(540,230)"/> <wire from="(480,250)" to="(710,250)"/> <wire from="(490,330)" to="(490,380)"/> <wire from="(490,330)" to="(540,330)"/> <wire from="(490,380)" to="(540,380)"/> <wire from="(520,290)" to="(520,350)"/> <wire from="(520,350)" to="(550,350)"/> <wire from="(550,200)" to="(550,220)"/> <wire from="(550,280)" to="(550,320)"/> <wire from="(550,350)" to="(550,370)"/> <wire from="(550,90)" to="(550,120)"/> <wire from="(560,130)" to="(580,130)"/> <wire from="(560,230)" to="(590,230)"/> <wire from="(560,330)" to="(610,330)"/> <wire from="(560,380)" to="(670,380)"/> <wire from="(580,50)" to="(580,130)"/> <wire from="(580,50)" to="(630,50)"/> <wire from="(590,60)" to="(590,230)"/> <wire from="(590,60)" to="(630,60)"/> <wire from="(610,70)" to="(610,330)"/> <wire from="(610,70)" to="(630,70)"/> <wire from="(630,50)" to="(630,60)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(630,60)" to="(710,60)"/> <wire from="(670,110)" to="(670,380)"/> <wire from="(670,110)" to="(710,110)"/> <wire from="(690,170)" to="(690,210)"/> <wire from="(690,210)" to="(710,210)"/> <wire from="(690,290)" to="(690,410)"/> <wire from="(690,290)" to="(710,290)"/> <wire from="(80,140)" to="(130,140)"/> <wire from="(80,170)" to="(180,170)"/> <wire from="(80,200)" to="(550,200)"/> <wire from="(80,230)" to="(130,230)"/> <wire from="(80,290)" to="(520,290)"/> <wire from="(80,350)" to="(180,350)"/> <wire from="(80,380)" to="(130,380)"/> <wire from="(80,450)" to="(170,450)"/> <wire from="(80,60)" to="(160,60)"/> </circuit> <circuit name="REGS"> <a name="appearance" val="custom"/> <a name="circuit" val="REGS"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#a8de22" height="240" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="116" y="43">REGS (X, Y, S)</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="77" y="239">SB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="144" y="239">ADL OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="147" y="120">SB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="83">Y/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="94">SB/Y</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">X/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="124">SB/X</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="143">S/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="153">S/S</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="163">SB/S</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="173">S/SB</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="100,110" x="50" y="80"/> <circ-port dir="in" pin="100,140" x="50" y="90"/> <circ-port dir="in" pin="100,170" x="50" y="110"/> <circ-port dir="in" pin="100,200" x="50" y="120"/> <circ-port dir="in" pin="100,260" x="50" y="140"/> <circ-port dir="in" pin="100,290" x="50" y="150"/> <circ-port dir="in" pin="100,320" x="50" y="160"/> <circ-port dir="in" pin="100,350" x="50" y="170"/> <circ-port dir="in" pin="100,410" x="50" y="200"/> <circ-port dir="in" pin="100,440" x="50" y="210"/> <circ-port dir="in" pin="100,470" x="50" y="220"/> <circ-port dir="in" pin="100,500" x="50" y="230"/> <circ-port dir="in" pin="100,530" x="50" y="240"/> <circ-port dir="in" pin="100,560" x="50" y="250"/> <circ-port dir="in" pin="100,590" x="50" y="260"/> <circ-port dir="in" pin="100,60" x="50" y="60"/> <circ-port dir="in" pin="100,620" x="50" y="270"/> <circ-port dir="out" pin="1270,870" x="140" y="290"/> <circ-port dir="out" pin="1430,100" x="180" y="90"/> <circ-port dir="out" pin="1430,130" x="180" y="100"/> <circ-port dir="out" pin="1430,160" x="180" y="110"/> <circ-port dir="out" pin="1430,190" x="180" y="120"/> <circ-port dir="out" pin="1430,220" x="180" y="130"/> <circ-port dir="out" pin="1430,250" x="180" y="140"/> <circ-port dir="out" pin="1430,280" x="180" y="150"/> <circ-port dir="out" pin="1430,380" x="180" y="200"/> <circ-port dir="out" pin="1430,410" x="180" y="210"/> <circ-port dir="out" pin="1430,440" x="180" y="220"/> <circ-port dir="out" pin="1430,470" x="180" y="230"/> <circ-port dir="out" pin="1430,500" x="180" y="240"/> <circ-port dir="out" pin="1430,530" x="180" y="250"/> <circ-port dir="out" pin="1430,560" x="180" y="260"/> <circ-port dir="out" pin="1430,590" x="180" y="270"/> <circ-port dir="out" pin="1430,70" x="180" y="80"/> <circ-port dir="out" pin="350,880" x="110" y="290"/> <circ-port dir="out" pin="710,880" x="80" y="290"/> </appear> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Y_SB"/> </comp> <comp lib="0" loc="(100,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_Y"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="X_SB"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_X"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_ADL"/> </comp> <comp lib="0" loc="(100,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_S"/> </comp> <comp lib="0" loc="(100,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_S"/> </comp> <comp lib="0" loc="(100,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_SB"/> </comp> <comp lib="0" loc="(100,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(100,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(100,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(100,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(100,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(100,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(100,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(1000,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(1010,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(120,110)" name="Tunnel"> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,140)" name="Tunnel"> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,170)" name="Tunnel"> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,200)" name="Tunnel"> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,260)" name="Tunnel"> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,290)" name="Tunnel"> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,320)" name="Tunnel"> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,350)" name="Tunnel"> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1260,870)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1270,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1430,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1430,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(190,880)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(280,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(280,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(290,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(300,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(310,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(320,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(330,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(330,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(330,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(340,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(350,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Y_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(540,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(540,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(540,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(550,860)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(560,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(580,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(590,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(710,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="X_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(750,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(750,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(760,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(770,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(790,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Y_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="X_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(800,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_SB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(960,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(960,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(960,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_Y"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_X"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(970,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SB_S"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(980,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="S_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp loc="(1030,170)" name="REGS_BIT"> <a name="label" val="r3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(1030,450)" name="REGS_BIT"> <a name="label" val="r7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,170)" name="REGS_BIT"> <a name="label" val="r0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(360,450)" name="REGS_BIT"> <a name="label" val="r4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(610,170)" name="REGS_BIT"> <a name="label" val="r1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(610,450)" name="REGS_BIT"> <a name="label" val="r5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(820,170)" name="REGS_BIT"> <a name="label" val="r2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(820,450)" name="REGS_BIT"> <a name="label" val="r6"/> <a name="labelloc" val="east"/> </comp> <wire from="(100,110)" to="(120,110)"/> <wire from="(100,140)" to="(120,140)"/> <wire from="(100,170)" to="(120,170)"/> <wire from="(100,200)" to="(120,200)"/> <wire from="(100,260)" to="(120,260)"/> <wire from="(100,290)" to="(120,290)"/> <wire from="(100,320)" to="(120,320)"/> <wire from="(100,350)" to="(120,350)"/> <wire from="(100,410)" to="(210,410)"/> <wire from="(100,440)" to="(240,440)"/> <wire from="(100,470)" to="(250,470)"/> <wire from="(100,500)" to="(260,500)"/> <wire from="(100,530)" to="(250,530)"/> <wire from="(100,560)" to="(230,560)"/> <wire from="(100,590)" to="(210,590)"/> <wire from="(100,60)" to="(350,60)"/> <wire from="(100,620)" to="(180,620)"/> <wire from="(1000,260)" to="(1030,260)"/> <wire from="(1010,190)" to="(1030,190)"/> <wire from="(1010,220)" to="(1030,220)"/> <wire from="(1010,280)" to="(1030,280)"/> <wire from="(1010,470)" to="(1030,470)"/> <wire from="(1010,500)" to="(1030,500)"/> <wire from="(1010,540)" to="(1030,540)"/> <wire from="(1010,560)" to="(1030,560)"/> <wire from="(1020,170)" to="(1020,450)"/> <wire from="(1020,170)" to="(1030,170)"/> <wire from="(1020,450)" to="(1030,450)"/> <wire from="(1020,60)" to="(1020,170)"/> <wire from="(1070,320)" to="(1070,360)"/> <wire from="(1070,360)" to="(1130,360)"/> <wire from="(1070,600)" to="(1070,670)"/> <wire from="(1080,320)" to="(1080,400)"/> <wire from="(1080,400)" to="(1150,400)"/> <wire from="(1080,600)" to="(1080,830)"/> <wire from="(1090,320)" to="(1090,330)"/> <wire from="(1090,330)" to="(1210,330)"/> <wire from="(1090,600)" to="(1090,810)"/> <wire from="(1090,810)" to="(1250,810)"/> <wire from="(110,670)" to="(110,860)"/> <wire from="(110,670)" to="(130,670)"/> <wire from="(1100,190)" to="(1260,190)"/> <wire from="(1100,220)" to="(1170,220)"/> <wire from="(1100,470)" to="(1220,470)"/> <wire from="(1100,500)" to="(1130,500)"/> <wire from="(1130,50)" to="(1130,360)"/> <wire from="(1130,500)" to="(1130,780)"/> <wire from="(1130,780)" to="(1410,780)"/> <wire from="(1140,720)" to="(1140,730)"/> <wire from="(1140,730)" to="(1220,730)"/> <wire from="(1150,400)" to="(1150,800)"/> <wire from="(1170,220)" to="(1170,720)"/> <wire from="(1170,720)" to="(1370,720)"/> <wire from="(1180,120)" to="(1180,850)"/> <wire from="(1190,70)" to="(1190,850)"/> <wire from="(120,680)" to="(120,860)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(1200,340)" to="(1200,850)"/> <wire from="(1210,330)" to="(1210,850)"/> <wire from="(1220,280)" to="(1220,470)"/> <wire from="(1220,280)" to="(1430,280)"/> <wire from="(1220,730)" to="(1220,850)"/> <wire from="(1230,740)" to="(1230,850)"/> <wire from="(1240,790)" to="(1240,850)"/> <wire from="(1250,810)" to="(1250,850)"/> <wire from="(1260,160)" to="(1260,190)"/> <wire from="(1260,160)" to="(1430,160)"/> <wire from="(1260,870)" to="(1270,870)"/> <wire from="(130,390)" to="(130,670)"/> <wire from="(130,390)" to="(400,390)"/> <wire from="(130,690)" to="(130,860)"/> <wire from="(130,690)" to="(150,690)"/> <wire from="(1300,190)" to="(1300,650)"/> <wire from="(1300,190)" to="(1430,190)"/> <wire from="(1310,220)" to="(1310,640)"/> <wire from="(1310,220)" to="(1430,220)"/> <wire from="(1320,250)" to="(1320,630)"/> <wire from="(1320,250)" to="(1430,250)"/> <wire from="(1330,130)" to="(1430,130)"/> <wire from="(1330,40)" to="(1330,130)"/> <wire from="(1340,380)" to="(1340,690)"/> <wire from="(1340,380)" to="(1430,380)"/> <wire from="(1350,410)" to="(1350,700)"/> <wire from="(1350,410)" to="(1430,410)"/> <wire from="(1360,100)" to="(1430,100)"/> <wire from="(1360,30)" to="(1360,100)"/> <wire from="(1360,440)" to="(1360,710)"/> <wire from="(1360,440)" to="(1430,440)"/> <wire from="(1370,470)" to="(1370,720)"/> <wire from="(1370,470)" to="(1430,470)"/> <wire from="(1380,500)" to="(1380,750)"/> <wire from="(1380,500)" to="(1430,500)"/> <wire from="(1390,20)" to="(1390,70)"/> <wire from="(1390,530)" to="(1390,760)"/> <wire from="(1390,530)" to="(1430,530)"/> <wire from="(1390,70)" to="(1430,70)"/> <wire from="(140,600)" to="(140,680)"/> <wire from="(140,600)" to="(170,600)"/> <wire from="(140,700)" to="(140,860)"/> <wire from="(140,700)" to="(160,700)"/> <wire from="(1400,560)" to="(1400,770)"/> <wire from="(1400,560)" to="(1430,560)"/> <wire from="(1410,590)" to="(1410,780)"/> <wire from="(1410,590)" to="(1430,590)"/> <wire from="(150,610)" to="(150,690)"/> <wire from="(150,610)" to="(180,610)"/> <wire from="(150,710)" to="(150,860)"/> <wire from="(150,710)" to="(170,710)"/> <wire from="(160,650)" to="(160,700)"/> <wire from="(160,650)" to="(190,650)"/> <wire from="(160,720)" to="(160,860)"/> <wire from="(160,720)" to="(200,720)"/> <wire from="(170,130)" to="(170,600)"/> <wire from="(170,130)" to="(490,130)"/> <wire from="(170,660)" to="(170,710)"/> <wire from="(170,660)" to="(400,660)"/> <wire from="(170,750)" to="(170,860)"/> <wire from="(170,750)" to="(190,750)"/> <wire from="(180,50)" to="(180,610)"/> <wire from="(180,50)" to="(720,50)"/> <wire from="(180,620)" to="(180,730)"/> <wire from="(180,730)" to="(990,730)"/> <wire from="(180,760)" to="(180,860)"/> <wire from="(180,760)" to="(210,760)"/> <wire from="(190,40)" to="(190,650)"/> <wire from="(190,40)" to="(730,40)"/> <wire from="(190,670)" to="(190,750)"/> <wire from="(190,670)" to="(360,670)"/> <wire from="(190,880)" to="(350,880)"/> <wire from="(200,640)" to="(200,720)"/> <wire from="(200,640)" to="(650,640)"/> <wire from="(210,310)" to="(210,410)"/> <wire from="(210,310)" to="(360,310)"/> <wire from="(210,590)" to="(210,630)"/> <wire from="(210,630)" to="(780,630)"/> <wire from="(210,690)" to="(210,760)"/> <wire from="(210,690)" to="(430,690)"/> <wire from="(230,560)" to="(230,620)"/> <wire from="(230,620)" to="(540,620)"/> <wire from="(240,330)" to="(240,440)"/> <wire from="(240,330)" to="(480,330)"/> <wire from="(250,400)" to="(250,470)"/> <wire from="(250,400)" to="(700,400)"/> <wire from="(250,530)" to="(250,590)"/> <wire from="(250,590)" to="(360,590)"/> <wire from="(260,410)" to="(260,500)"/> <wire from="(260,410)" to="(920,410)"/> <wire from="(280,200)" to="(360,200)"/> <wire from="(280,230)" to="(360,230)"/> <wire from="(280,270)" to="(360,270)"/> <wire from="(290,250)" to="(360,250)"/> <wire from="(300,480)" to="(360,480)"/> <wire from="(300,510)" to="(360,510)"/> <wire from="(300,550)" to="(360,550)"/> <wire from="(310,530)" to="(360,530)"/> <wire from="(320,260)" to="(360,260)"/> <wire from="(330,190)" to="(360,190)"/> <wire from="(330,220)" to="(360,220)"/> <wire from="(330,280)" to="(360,280)"/> <wire from="(340,470)" to="(360,470)"/> <wire from="(340,500)" to="(360,500)"/> <wire from="(340,540)" to="(360,540)"/> <wire from="(340,560)" to="(360,560)"/> <wire from="(350,170)" to="(350,450)"/> <wire from="(350,170)" to="(360,170)"/> <wire from="(350,450)" to="(360,450)"/> <wire from="(350,60)" to="(350,170)"/> <wire from="(350,60)" to="(600,60)"/> <wire from="(360,650)" to="(360,670)"/> <wire from="(360,650)" to="(430,650)"/> <wire from="(400,320)" to="(400,390)"/> <wire from="(400,600)" to="(400,660)"/> <wire from="(410,320)" to="(410,340)"/> <wire from="(410,340)" to="(490,340)"/> <wire from="(410,600)" to="(410,780)"/> <wire from="(410,780)" to="(510,780)"/> <wire from="(420,320)" to="(420,390)"/> <wire from="(420,390)" to="(460,390)"/> <wire from="(420,600)" to="(420,710)"/> <wire from="(420,710)" to="(860,710)"/> <wire from="(430,190)" to="(470,190)"/> <wire from="(430,220)" to="(470,220)"/> <wire from="(430,470)" to="(460,470)"/> <wire from="(430,500)" to="(450,500)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(430,660)" to="(860,660)"/> <wire from="(430,670)" to="(1070,670)"/> <wire from="(430,670)" to="(430,690)"/> <wire from="(450,500)" to="(450,750)"/> <wire from="(450,750)" to="(1380,750)"/> <wire from="(460,120)" to="(1180,120)"/> <wire from="(460,120)" to="(460,390)"/> <wire from="(460,470)" to="(460,650)"/> <wire from="(460,650)" to="(1300,650)"/> <wire from="(470,20)" to="(1390,20)"/> <wire from="(470,20)" to="(470,190)"/> <wire from="(470,220)" to="(470,690)"/> <wire from="(470,690)" to="(1340,690)"/> <wire from="(470,790)" to="(470,840)"/> <wire from="(470,790)" to="(490,790)"/> <wire from="(480,310)" to="(480,330)"/> <wire from="(480,310)" to="(610,310)"/> <wire from="(480,820)" to="(480,840)"/> <wire from="(480,820)" to="(720,820)"/> <wire from="(490,130)" to="(490,330)"/> <wire from="(490,330)" to="(650,330)"/> <wire from="(490,340)" to="(490,790)"/> <wire from="(490,810)" to="(490,840)"/> <wire from="(490,810)" to="(920,810)"/> <wire from="(500,800)" to="(1150,800)"/> <wire from="(500,800)" to="(500,840)"/> <wire from="(510,780)" to="(510,840)"/> <wire from="(520,780)" to="(520,840)"/> <wire from="(520,780)" to="(660,780)"/> <wire from="(530,790)" to="(530,840)"/> <wire from="(530,790)" to="(870,790)"/> <wire from="(540,200)" to="(610,200)"/> <wire from="(540,230)" to="(610,230)"/> <wire from="(540,270)" to="(610,270)"/> <wire from="(540,590)" to="(540,620)"/> <wire from="(540,590)" to="(610,590)"/> <wire from="(540,830)" to="(1080,830)"/> <wire from="(540,830)" to="(540,840)"/> <wire from="(550,250)" to="(610,250)"/> <wire from="(550,480)" to="(610,480)"/> <wire from="(550,510)" to="(610,510)"/> <wire from="(550,550)" to="(610,550)"/> <wire from="(550,860)" to="(660,860)"/> <wire from="(560,530)" to="(610,530)"/> <wire from="(580,260)" to="(610,260)"/> <wire from="(590,190)" to="(610,190)"/> <wire from="(590,220)" to="(610,220)"/> <wire from="(590,280)" to="(610,280)"/> <wire from="(590,470)" to="(610,470)"/> <wire from="(590,500)" to="(610,500)"/> <wire from="(590,540)" to="(610,540)"/> <wire from="(590,560)" to="(610,560)"/> <wire from="(600,170)" to="(600,450)"/> <wire from="(600,170)" to="(610,170)"/> <wire from="(600,450)" to="(610,450)"/> <wire from="(600,60)" to="(600,170)"/> <wire from="(600,60)" to="(810,60)"/> <wire from="(650,320)" to="(650,330)"/> <wire from="(650,600)" to="(650,640)"/> <wire from="(660,320)" to="(660,340)"/> <wire from="(660,340)" to="(720,340)"/> <wire from="(660,600)" to="(660,780)"/> <wire from="(660,860)" to="(660,880)"/> <wire from="(660,880)" to="(710,880)"/> <wire from="(670,320)" to="(670,370)"/> <wire from="(670,370)" to="(900,370)"/> <wire from="(670,600)" to="(670,740)"/> <wire from="(670,740)" to="(1230,740)"/> <wire from="(680,190)" to="(700,190)"/> <wire from="(680,220)" to="(710,220)"/> <wire from="(680,470)" to="(700,470)"/> <wire from="(680,500)" to="(690,500)"/> <wire from="(690,500)" to="(690,760)"/> <wire from="(690,760)" to="(1390,760)"/> <wire from="(700,30)" to="(1360,30)"/> <wire from="(700,30)" to="(700,190)"/> <wire from="(700,310)" to="(700,400)"/> <wire from="(700,310)" to="(820,310)"/> <wire from="(700,470)" to="(700,640)"/> <wire from="(700,640)" to="(1310,640)"/> <wire from="(710,220)" to="(710,700)"/> <wire from="(710,700)" to="(1350,700)"/> <wire from="(720,330)" to="(860,330)"/> <wire from="(720,340)" to="(720,820)"/> <wire from="(720,50)" to="(720,330)"/> <wire from="(730,40)" to="(730,50)"/> <wire from="(730,50)" to="(1130,50)"/> <wire from="(750,200)" to="(820,200)"/> <wire from="(750,230)" to="(820,230)"/> <wire from="(750,270)" to="(820,270)"/> <wire from="(760,250)" to="(820,250)"/> <wire from="(760,480)" to="(820,480)"/> <wire from="(760,510)" to="(820,510)"/> <wire from="(760,550)" to="(820,550)"/> <wire from="(770,530)" to="(820,530)"/> <wire from="(780,590)" to="(780,630)"/> <wire from="(780,590)" to="(820,590)"/> <wire from="(790,260)" to="(820,260)"/> <wire from="(800,190)" to="(820,190)"/> <wire from="(800,220)" to="(820,220)"/> <wire from="(800,280)" to="(820,280)"/> <wire from="(800,470)" to="(820,470)"/> <wire from="(800,500)" to="(820,500)"/> <wire from="(800,540)" to="(820,540)"/> <wire from="(800,560)" to="(820,560)"/> <wire from="(810,170)" to="(810,450)"/> <wire from="(810,170)" to="(820,170)"/> <wire from="(810,450)" to="(820,450)"/> <wire from="(810,60)" to="(1020,60)"/> <wire from="(810,60)" to="(810,170)"/> <wire from="(860,320)" to="(860,330)"/> <wire from="(860,600)" to="(860,660)"/> <wire from="(860,710)" to="(860,720)"/> <wire from="(860,720)" to="(1140,720)"/> <wire from="(870,320)" to="(870,390)"/> <wire from="(870,390)" to="(930,390)"/> <wire from="(870,600)" to="(870,790)"/> <wire from="(880,320)" to="(880,340)"/> <wire from="(880,340)" to="(1200,340)"/> <wire from="(880,600)" to="(880,790)"/> <wire from="(880,790)" to="(1240,790)"/> <wire from="(890,190)" to="(910,190)"/> <wire from="(890,220)" to="(910,220)"/> <wire from="(890,470)" to="(930,470)"/> <wire from="(890,500)" to="(900,500)"/> <wire from="(900,500)" to="(900,770)"/> <wire from="(900,70)" to="(1190,70)"/> <wire from="(900,70)" to="(900,370)"/> <wire from="(900,770)" to="(1400,770)"/> <wire from="(910,220)" to="(910,710)"/> <wire from="(910,40)" to="(1330,40)"/> <wire from="(910,40)" to="(910,190)"/> <wire from="(910,710)" to="(1360,710)"/> <wire from="(920,310)" to="(1030,310)"/> <wire from="(920,310)" to="(920,410)"/> <wire from="(920,430)" to="(920,810)"/> <wire from="(920,430)" to="(930,430)"/> <wire from="(930,390)" to="(930,430)"/> <wire from="(930,470)" to="(930,630)"/> <wire from="(930,630)" to="(1320,630)"/> <wire from="(960,200)" to="(1030,200)"/> <wire from="(960,230)" to="(1030,230)"/> <wire from="(960,270)" to="(1030,270)"/> <wire from="(970,250)" to="(1030,250)"/> <wire from="(970,480)" to="(1030,480)"/> <wire from="(970,510)" to="(1030,510)"/> <wire from="(970,550)" to="(1030,550)"/> <wire from="(980,530)" to="(1030,530)"/> <wire from="(990,590)" to="(1030,590)"/> <wire from="(990,590)" to="(990,730)"/> </circuit> <circuit name="DL_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="DL_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="139" stroke="#000000" stroke-width="2" width="90" x="50" y="51"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="44">DL_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="64">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="74">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="93">DL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="103">DL/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">DL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="133">RD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="154">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="63" y="174">Dx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="101" y="180">DOR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="180">DL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="124" y="73">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="123" y="93">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="113">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="127" y="132">Dx</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="100,170" x="50" y="90"/> <circ-port dir="in" pin="100,200" x="50" y="100"/> <circ-port dir="in" pin="100,230" x="50" y="110"/> <circ-port dir="in" pin="100,280" x="50" y="130"/> <circ-port dir="in" pin="100,380" x="50" y="150"/> <circ-port dir="in" pin="100,430" x="50" y="170"/> <circ-port dir="in" pin="100,60" x="50" y="60"/> <circ-port dir="in" pin="100,90" x="50" y="70"/> <circ-port dir="out" pin="570,160" x="140" y="90"/> <circ-port dir="out" pin="570,200" x="140" y="110"/> <circ-port dir="out" pin="570,240" x="140" y="70"/> <circ-port dir="out" pin="570,410" x="140" y="130"/> <circ-port dir="out" pin="570,460" x="100" y="190"/> <circ-port dir="out" pin="570,500" x="120" y="190"/> </appear> <comp lib="0" loc="(100,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_ADL"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_ADH"/> </comp> <comp lib="0" loc="(100,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_DB"/> </comp> <comp lib="0" loc="(100,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(100,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DBx_in"/> </comp> <comp lib="0" loc="(100,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Dx_in"/> </comp> <comp lib="0" loc="(100,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(100,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(570,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADLx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADHx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Dx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DOR_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_Debug"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(250,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,120)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(470,210)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(470,300)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(500,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(500,350)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(510,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(310,160)" name="D_Latch"> <a name="label" val="DL"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(310,370)" name="D_Latch"> <a name="label" val="DOR"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,170)" to="(130,170)"/> <wire from="(100,200)" to="(440,200)"/> <wire from="(100,230)" to="(380,230)"/> <wire from="(100,280)" to="(370,280)"/> <wire from="(100,380)" to="(230,380)"/> <wire from="(100,430)" to="(180,430)"/> <wire from="(100,60)" to="(210,60)"/> <wire from="(100,90)" to="(240,90)"/> <wire from="(130,110)" to="(130,170)"/> <wire from="(130,110)" to="(440,110)"/> <wire from="(180,170)" to="(180,430)"/> <wire from="(180,170)" to="(230,170)"/> <wire from="(210,360)" to="(270,360)"/> <wire from="(210,60)" to="(210,360)"/> <wire from="(210,60)" to="(390,60)"/> <wire from="(240,150)" to="(270,150)"/> <wire from="(240,90)" to="(240,150)"/> <wire from="(240,90)" to="(510,90)"/> <wire from="(250,170)" to="(270,170)"/> <wire from="(250,380)" to="(270,380)"/> <wire from="(310,170)" to="(360,170)"/> <wire from="(310,380)" to="(340,380)"/> <wire from="(340,380)" to="(340,410)"/> <wire from="(340,410)" to="(390,410)"/> <wire from="(360,170)" to="(360,500)"/> <wire from="(360,170)" to="(410,170)"/> <wire from="(360,500)" to="(570,500)"/> <wire from="(370,280)" to="(370,370)"/> <wire from="(370,370)" to="(430,370)"/> <wire from="(380,230)" to="(380,290)"/> <wire from="(380,290)" to="(440,290)"/> <wire from="(390,130)" to="(390,220)"/> <wire from="(390,130)" to="(440,130)"/> <wire from="(390,220)" to="(390,310)"/> <wire from="(390,220)" to="(440,220)"/> <wire from="(390,310)" to="(440,310)"/> <wire from="(390,410)" to="(390,460)"/> <wire from="(390,410)" to="(490,410)"/> <wire from="(390,460)" to="(570,460)"/> <wire from="(390,60)" to="(390,130)"/> <wire from="(390,60)" to="(510,60)"/> <wire from="(410,170)" to="(410,260)"/> <wire from="(410,170)" to="(480,170)"/> <wire from="(410,260)" to="(410,350)"/> <wire from="(410,260)" to="(480,260)"/> <wire from="(410,350)" to="(480,350)"/> <wire from="(450,370)" to="(500,370)"/> <wire from="(470,120)" to="(490,120)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,300)" to="(490,300)"/> <wire from="(490,120)" to="(490,160)"/> <wire from="(490,210)" to="(490,250)"/> <wire from="(490,300)" to="(490,340)"/> <wire from="(500,170)" to="(530,170)"/> <wire from="(500,260)" to="(530,260)"/> <wire from="(500,350)" to="(540,350)"/> <wire from="(500,370)" to="(500,400)"/> <wire from="(510,410)" to="(570,410)"/> <wire from="(530,160)" to="(530,170)"/> <wire from="(530,160)" to="(570,160)"/> <wire from="(530,200)" to="(530,260)"/> <wire from="(530,200)" to="(570,200)"/> <wire from="(540,240)" to="(540,350)"/> <wire from="(540,240)" to="(570,240)"/> </circuit> <circuit name="DL"> <a name="appearance" val="custom"/> <a name="circuit" val="DL"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#55c293" height="405" stroke="#000000" stroke-width="2" width="150" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="126" y="45">DATA LATCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="74">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="85">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="134">DL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="154">DL/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="174">DL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="309">DB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="164" y="309">ADH OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="165" y="208">ADL OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="109">DB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="409">DATA IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="162" y="407">DATA OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">WR</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="80,160" x="50" y="110"/> <circ-port dir="in" pin="80,230" x="50" y="130"/> <circ-port dir="in" pin="80,260" x="50" y="150"/> <circ-port dir="in" pin="80,290" x="50" y="170"/> <circ-port dir="in" pin="80,340" x="50" y="270"/> <circ-port dir="in" pin="80,370" x="50" y="280"/> <circ-port dir="in" pin="80,400" x="50" y="290"/> <circ-port dir="in" pin="80,430" x="50" y="300"/> <circ-port dir="in" pin="80,460" x="50" y="310"/> <circ-port dir="in" pin="80,490" x="50" y="320"/> <circ-port dir="in" pin="80,50" x="50" y="70"/> <circ-port dir="in" pin="80,520" x="50" y="330"/> <circ-port dir="in" pin="80,550" x="50" y="340"/> <circ-port dir="in" pin="80,670" x="50" y="370"/> <circ-port dir="in" pin="80,700" x="50" y="380"/> <circ-port dir="in" pin="80,730" x="50" y="390"/> <circ-port dir="in" pin="80,760" x="50" y="400"/> <circ-port dir="in" pin="80,790" x="50" y="410"/> <circ-port dir="in" pin="80,80" x="50" y="80"/> <circ-port dir="in" pin="80,820" x="50" y="420"/> <circ-port dir="in" pin="80,850" x="50" y="430"/> <circ-port dir="in" pin="80,880" x="50" y="440"/> <circ-port dir="out" pin="1250,1010" x="200" y="430"/> <circ-port dir="out" pin="1250,1040" x="200" y="440"/> <circ-port dir="out" pin="1250,120" x="200" y="90"/> <circ-port dir="out" pin="1250,150" x="200" y="100"/> <circ-port dir="out" pin="1250,180" x="200" y="110"/> <circ-port dir="out" pin="1250,210" x="200" y="120"/> <circ-port dir="out" pin="1250,240" x="200" y="130"/> <circ-port dir="out" pin="1250,270" x="200" y="140"/> <circ-port dir="out" pin="1250,320" x="200" y="170"/> <circ-port dir="out" pin="1250,350" x="200" y="180"/> <circ-port dir="out" pin="1250,380" x="200" y="190"/> <circ-port dir="out" pin="1250,410" x="200" y="200"/> <circ-port dir="out" pin="1250,440" x="200" y="210"/> <circ-port dir="out" pin="1250,470" x="200" y="220"/> <circ-port dir="out" pin="1250,500" x="200" y="230"/> <circ-port dir="out" pin="1250,530" x="200" y="240"/> <circ-port dir="out" pin="1250,570" x="200" y="270"/> <circ-port dir="out" pin="1250,60" x="200" y="70"/> <circ-port dir="out" pin="1250,600" x="200" y="280"/> <circ-port dir="out" pin="1250,630" x="200" y="290"/> <circ-port dir="out" pin="1250,660" x="200" y="300"/> <circ-port dir="out" pin="1250,690" x="200" y="310"/> <circ-port dir="out" pin="1250,720" x="200" y="320"/> <circ-port dir="out" pin="1250,750" x="200" y="330"/> <circ-port dir="out" pin="1250,780" x="200" y="340"/> <circ-port dir="out" pin="1250,830" x="200" y="370"/> <circ-port dir="out" pin="1250,860" x="200" y="380"/> <circ-port dir="out" pin="1250,890" x="200" y="390"/> <circ-port dir="out" pin="1250,90" x="200" y="80"/> <circ-port dir="out" pin="1250,920" x="200" y="400"/> <circ-port dir="out" pin="1250,950" x="200" y="410"/> <circ-port dir="out" pin="1250,980" x="200" y="420"/> <circ-port dir="out" pin="420,1130" x="100" y="460"/> <circ-port dir="out" pin="900,1130" x="150" y="460"/> </appear> <comp lib="0" loc="(110,230)" name="Tunnel"> <a name="label" val="DL_ADL"/> </comp> <comp lib="0" loc="(110,260)" name="Tunnel"> <a name="label" val="DL_ADH"/> </comp> <comp lib="0" loc="(110,290)" name="Tunnel"> <a name="label" val="DL_DB"/> </comp> <comp lib="0" loc="(1250,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,890)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1250,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="D_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(210,200)" name="Constant"/> <comp lib="0" loc="(290,150)" name="Tunnel"> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(380,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(380,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(380,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(380,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(390,1130)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(400,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(410,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(420,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DL_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(80,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="WR"/> </comp> <comp lib="0" loc="(80,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_ADL"/> </comp> <comp lib="0" loc="(80,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_ADH"/> </comp> <comp lib="0" loc="(80,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_DB"/> </comp> <comp lib="0" loc="(80,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(80,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(80,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(80,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(80,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(80,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(80,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(80,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(80,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(80,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D0"/> </comp> <comp lib="0" loc="(80,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D1"/> </comp> <comp lib="0" loc="(80,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D2"/> </comp> <comp lib="0" loc="(80,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D3"/> </comp> <comp lib="0" loc="(80,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D4"/> </comp> <comp lib="0" loc="(80,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(80,820)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D5"/> </comp> <comp lib="0" loc="(80,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D6"/> </comp> <comp lib="0" loc="(80,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D7"/> </comp> <comp lib="0" loc="(830,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(830,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RD"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(850,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(860,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DL_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(870,1130)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(900,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DOR_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(270,150)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(210,150)" name="D_Latch"> <a name="label" val="rd_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(470,130)" name="DL_BIT"> <a name="label" val="dl0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,310)" name="DL_BIT"> <a name="label" val="dl1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,490)" name="DL_BIT"> <a name="label" val="dl2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(470,670)" name="DL_BIT"> <a name="label" val="dl3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(920,130)" name="DL_BIT"> <a name="label" val="dl4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(920,310)" name="DL_BIT"> <a name="label" val="dl5"/> <a name="labelloc" val="east"/> </comp> <comp loc="(920,490)" name="DL_BIT"> <a name="label" val="dl6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(920,670)" name="DL_BIT"> <a name="label" val="dl7"/> <a name="labelloc" val="east"/> </comp> <wire from="(1010,140)" to="(1100,140)"/> <wire from="(1010,160)" to="(1060,160)"/> <wire from="(1010,180)" to="(1090,180)"/> <wire from="(1010,200)" to="(1080,200)"/> <wire from="(1010,320)" to="(1110,320)"/> <wire from="(1010,340)" to="(1050,340)"/> <wire from="(1010,360)" to="(1150,360)"/> <wire from="(1010,380)" to="(1040,380)"/> <wire from="(1010,500)" to="(1120,500)"/> <wire from="(1010,520)" to="(1130,520)"/> <wire from="(1010,540)" to="(1160,540)"/> <wire from="(1010,560)" to="(1190,560)"/> <wire from="(1010,680)" to="(1100,680)"/> <wire from="(1010,700)" to="(1120,700)"/> <wire from="(1010,720)" to="(1140,720)"/> <wire from="(1010,740)" to="(1130,740)"/> <wire from="(1040,380)" to="(1040,490)"/> <wire from="(1040,490)" to="(1180,490)"/> <wire from="(1040,630)" to="(1040,1010)"/> <wire from="(1040,630)" to="(1250,630)"/> <wire from="(1050,340)" to="(1050,470)"/> <wire from="(1050,470)" to="(1250,470)"/> <wire from="(1050,600)" to="(1050,1000)"/> <wire from="(1050,600)" to="(1250,600)"/> <wire from="(1060,160)" to="(1060,440)"/> <wire from="(1060,440)" to="(1250,440)"/> <wire from="(1060,570)" to="(1060,990)"/> <wire from="(1060,570)" to="(1250,570)"/> <wire from="(1070,380)" to="(1070,970)"/> <wire from="(1070,380)" to="(1250,380)"/> <wire from="(1080,200)" to="(1080,220)"/> <wire from="(1080,220)" to="(1170,220)"/> <wire from="(1080,350)" to="(1080,950)"/> <wire from="(1080,350)" to="(1250,350)"/> <wire from="(1090,180)" to="(1090,200)"/> <wire from="(1090,200)" to="(1140,200)"/> <wire from="(1090,330)" to="(1090,940)"/> <wire from="(1090,330)" to="(1130,330)"/> <wire from="(1100,140)" to="(1100,180)"/> <wire from="(1100,180)" to="(1250,180)"/> <wire from="(1100,270)" to="(1100,680)"/> <wire from="(1100,270)" to="(1250,270)"/> <wire from="(1100,690)" to="(1100,1020)"/> <wire from="(1100,690)" to="(1130,690)"/> <wire from="(1110,150)" to="(1250,150)"/> <wire from="(1110,210)" to="(1110,320)"/> <wire from="(1110,210)" to="(1250,210)"/> <wire from="(1110,30)" to="(1110,150)"/> <wire from="(1110,410)" to="(1110,980)"/> <wire from="(1110,410)" to="(1250,410)"/> <wire from="(1120,100)" to="(1120,120)"/> <wire from="(1120,120)" to="(1250,120)"/> <wire from="(1120,240)" to="(1120,500)"/> <wire from="(1120,240)" to="(1250,240)"/> <wire from="(1120,530)" to="(1120,700)"/> <wire from="(1120,530)" to="(1250,530)"/> <wire from="(1130,1040)" to="(1250,1040)"/> <wire from="(1130,320)" to="(1130,330)"/> <wire from="(1130,320)" to="(1250,320)"/> <wire from="(1130,500)" to="(1130,520)"/> <wire from="(1130,500)" to="(1250,500)"/> <wire from="(1130,660)" to="(1130,690)"/> <wire from="(1130,660)" to="(1250,660)"/> <wire from="(1130,740)" to="(1130,1040)"/> <wire from="(1140,200)" to="(1140,690)"/> <wire from="(1140,690)" to="(1250,690)"/> <wire from="(1140,720)" to="(1140,780)"/> <wire from="(1140,780)" to="(1250,780)"/> <wire from="(1150,360)" to="(1150,720)"/> <wire from="(1150,720)" to="(1250,720)"/> <wire from="(1160,540)" to="(1160,750)"/> <wire from="(1160,750)" to="(1250,750)"/> <wire from="(1170,220)" to="(1170,950)"/> <wire from="(1170,950)" to="(1250,950)"/> <wire from="(1180,490)" to="(1180,980)"/> <wire from="(1180,980)" to="(1250,980)"/> <wire from="(1190,1010)" to="(1250,1010)"/> <wire from="(1190,560)" to="(1190,1010)"/> <wire from="(120,880)" to="(120,930)"/> <wire from="(120,930)" to="(800,930)"/> <wire from="(1210,20)" to="(1210,830)"/> <wire from="(1210,830)" to="(1250,830)"/> <wire from="(1220,10)" to="(1220,860)"/> <wire from="(1220,860)" to="(1250,860)"/> <wire from="(1230,40)" to="(1230,890)"/> <wire from="(1230,890)" to="(1250,890)"/> <wire from="(1230,920)" to="(1230,960)"/> <wire from="(1230,920)" to="(1250,920)"/> <wire from="(130,850)" to="(130,920)"/> <wire from="(130,920)" to="(710,920)"/> <wire from="(140,820)" to="(140,910)"/> <wire from="(140,910)" to="(720,910)"/> <wire from="(150,140)" to="(170,140)"/> <wire from="(150,50)" to="(150,140)"/> <wire from="(150,50)" to="(460,50)"/> <wire from="(150,790)" to="(150,890)"/> <wire from="(150,890)" to="(730,890)"/> <wire from="(160,550)" to="(160,870)"/> <wire from="(160,870)" to="(780,870)"/> <wire from="(170,520)" to="(170,860)"/> <wire from="(170,860)" to="(760,860)"/> <wire from="(180,490)" to="(180,840)"/> <wire from="(180,840)" to="(750,840)"/> <wire from="(190,460)" to="(190,830)"/> <wire from="(190,830)" to="(740,830)"/> <wire from="(210,160)" to="(220,160)"/> <wire from="(210,200)" to="(230,200)"/> <wire from="(210,760)" to="(210,780)"/> <wire from="(210,780)" to="(470,780)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(220,140)" to="(240,140)"/> <wire from="(220,430)" to="(220,760)"/> <wire from="(220,760)" to="(470,760)"/> <wire from="(230,160)" to="(230,200)"/> <wire from="(230,160)" to="(240,160)"/> <wire from="(230,230)" to="(230,340)"/> <wire from="(230,230)" to="(420,230)"/> <wire from="(230,400)" to="(230,580)"/> <wire from="(230,580)" to="(470,580)"/> <wire from="(240,240)" to="(240,670)"/> <wire from="(240,240)" to="(470,240)"/> <wire from="(250,420)" to="(250,700)"/> <wire from="(250,420)" to="(470,420)"/> <wire from="(250,80)" to="(250,130)"/> <wire from="(250,80)" to="(450,80)"/> <wire from="(260,370)" to="(260,400)"/> <wire from="(260,400)" to="(470,400)"/> <wire from="(260,600)" to="(260,730)"/> <wire from="(260,600)" to="(470,600)"/> <wire from="(270,150)" to="(290,150)"/> <wire from="(280,1090)" to="(310,1090)"/> <wire from="(280,280)" to="(280,1090)"/> <wire from="(280,280)" to="(540,280)"/> <wire from="(290,1080)" to="(320,1080)"/> <wire from="(290,460)" to="(290,1080)"/> <wire from="(290,460)" to="(540,460)"/> <wire from="(300,1070)" to="(330,1070)"/> <wire from="(300,640)" to="(300,1070)"/> <wire from="(300,640)" to="(540,640)"/> <wire from="(310,1060)" to="(340,1060)"/> <wire from="(310,1090)" to="(310,1110)"/> <wire from="(310,820)" to="(310,1060)"/> <wire from="(310,820)" to="(540,820)"/> <wire from="(320,1010)" to="(430,1010)"/> <wire from="(320,1080)" to="(320,1110)"/> <wire from="(320,270)" to="(320,1010)"/> <wire from="(320,270)" to="(520,270)"/> <wire from="(330,1000)" to="(440,1000)"/> <wire from="(330,1070)" to="(330,1110)"/> <wire from="(330,450)" to="(330,1000)"/> <wire from="(330,450)" to="(520,450)"/> <wire from="(340,1060)" to="(340,1110)"/> <wire from="(340,630)" to="(340,990)"/> <wire from="(340,630)" to="(520,630)"/> <wire from="(340,990)" to="(450,990)"/> <wire from="(350,1030)" to="(350,1110)"/> <wire from="(350,1030)" to="(690,1030)"/> <wire from="(350,810)" to="(350,980)"/> <wire from="(350,810)" to="(520,810)"/> <wire from="(350,980)" to="(460,980)"/> <wire from="(360,1040)" to="(360,1110)"/> <wire from="(360,1040)" to="(770,1040)"/> <wire from="(370,1050)" to="(370,1110)"/> <wire from="(370,1050)" to="(790,1050)"/> <wire from="(380,1060)" to="(380,1110)"/> <wire from="(380,1060)" to="(990,1060)"/> <wire from="(380,210)" to="(410,210)"/> <wire from="(380,390)" to="(410,390)"/> <wire from="(380,570)" to="(410,570)"/> <wire from="(380,750)" to="(410,750)"/> <wire from="(390,1130)" to="(420,1130)"/> <wire from="(400,190)" to="(420,190)"/> <wire from="(400,370)" to="(420,370)"/> <wire from="(400,550)" to="(420,550)"/> <wire from="(400,730)" to="(420,730)"/> <wire from="(410,150)" to="(420,150)"/> <wire from="(410,170)" to="(470,170)"/> <wire from="(410,200)" to="(410,210)"/> <wire from="(410,200)" to="(470,200)"/> <wire from="(410,330)" to="(420,330)"/> <wire from="(410,350)" to="(470,350)"/> <wire from="(410,380)" to="(410,390)"/> <wire from="(410,380)" to="(470,380)"/> <wire from="(410,510)" to="(420,510)"/> <wire from="(410,530)" to="(470,530)"/> <wire from="(410,560)" to="(410,570)"/> <wire from="(410,560)" to="(470,560)"/> <wire from="(410,690)" to="(420,690)"/> <wire from="(410,710)" to="(470,710)"/> <wire from="(410,740)" to="(410,750)"/> <wire from="(410,740)" to="(470,740)"/> <wire from="(420,150)" to="(420,160)"/> <wire from="(420,160)" to="(470,160)"/> <wire from="(420,180)" to="(420,190)"/> <wire from="(420,180)" to="(470,180)"/> <wire from="(420,220)" to="(420,230)"/> <wire from="(420,220)" to="(470,220)"/> <wire from="(420,330)" to="(420,340)"/> <wire from="(420,340)" to="(470,340)"/> <wire from="(420,360)" to="(420,370)"/> <wire from="(420,360)" to="(470,360)"/> <wire from="(420,510)" to="(420,520)"/> <wire from="(420,520)" to="(470,520)"/> <wire from="(420,540)" to="(420,550)"/> <wire from="(420,540)" to="(470,540)"/> <wire from="(420,690)" to="(420,700)"/> <wire from="(420,700)" to="(470,700)"/> <wire from="(420,720)" to="(420,730)"/> <wire from="(420,720)" to="(470,720)"/> <wire from="(430,1010)" to="(430,1100)"/> <wire from="(430,1100)" to="(790,1100)"/> <wire from="(440,1000)" to="(440,1090)"/> <wire from="(440,1090)" to="(800,1090)"/> <wire from="(450,1080)" to="(810,1080)"/> <wire from="(450,140)" to="(450,320)"/> <wire from="(450,140)" to="(470,140)"/> <wire from="(450,320)" to="(450,500)"/> <wire from="(450,320)" to="(470,320)"/> <wire from="(450,500)" to="(450,680)"/> <wire from="(450,500)" to="(470,500)"/> <wire from="(450,680)" to="(470,680)"/> <wire from="(450,80)" to="(450,140)"/> <wire from="(450,80)" to="(900,80)"/> <wire from="(450,990)" to="(450,1080)"/> <wire from="(460,1070)" to="(820,1070)"/> <wire from="(460,130)" to="(460,310)"/> <wire from="(460,130)" to="(470,130)"/> <wire from="(460,310)" to="(460,490)"/> <wire from="(460,310)" to="(470,310)"/> <wire from="(460,490)" to="(460,670)"/> <wire from="(460,490)" to="(470,490)"/> <wire from="(460,50)" to="(460,130)"/> <wire from="(460,50)" to="(910,50)"/> <wire from="(460,670)" to="(470,670)"/> <wire from="(460,980)" to="(460,1070)"/> <wire from="(520,260)" to="(520,270)"/> <wire from="(520,440)" to="(520,450)"/> <wire from="(520,620)" to="(520,630)"/> <wire from="(520,800)" to="(520,810)"/> <wire from="(540,260)" to="(540,280)"/> <wire from="(540,440)" to="(540,460)"/> <wire from="(540,620)" to="(540,640)"/> <wire from="(540,800)" to="(540,820)"/> <wire from="(560,140)" to="(650,140)"/> <wire from="(560,160)" to="(680,160)"/> <wire from="(560,180)" to="(620,180)"/> <wire from="(560,200)" to="(690,200)"/> <wire from="(560,320)" to="(660,320)"/> <wire from="(560,340)" to="(660,340)"/> <wire from="(560,360)" to="(610,360)"/> <wire from="(560,380)" to="(700,380)"/> <wire from="(560,500)" to="(670,500)"/> <wire from="(560,520)" to="(650,520)"/> <wire from="(560,540)" to="(600,540)"/> <wire from="(560,560)" to="(590,560)"/> <wire from="(560,680)" to="(630,680)"/> <wire from="(560,700)" to="(640,700)"/> <wire from="(560,720)" to="(590,720)"/> <wire from="(560,740)" to="(580,740)"/> <wire from="(580,740)" to="(580,960)"/> <wire from="(580,960)" to="(1230,960)"/> <wire from="(590,1020)" to="(1100,1020)"/> <wire from="(590,40)" to="(1230,40)"/> <wire from="(590,40)" to="(590,560)"/> <wire from="(590,720)" to="(590,1020)"/> <wire from="(600,1010)" to="(1040,1010)"/> <wire from="(600,540)" to="(600,1010)"/> <wire from="(610,1000)" to="(1050,1000)"/> <wire from="(610,360)" to="(610,1000)"/> <wire from="(620,180)" to="(620,990)"/> <wire from="(620,990)" to="(1060,990)"/> <wire from="(630,30)" to="(1110,30)"/> <wire from="(630,30)" to="(630,680)"/> <wire from="(640,700)" to="(640,980)"/> <wire from="(640,980)" to="(1110,980)"/> <wire from="(650,520)" to="(650,970)"/> <wire from="(650,60)" to="(1250,60)"/> <wire from="(650,60)" to="(650,140)"/> <wire from="(650,970)" to="(1070,970)"/> <wire from="(660,340)" to="(660,950)"/> <wire from="(660,90)" to="(1250,90)"/> <wire from="(660,90)" to="(660,320)"/> <wire from="(660,950)" to="(1080,950)"/> <wire from="(670,100)" to="(1120,100)"/> <wire from="(670,100)" to="(670,500)"/> <wire from="(680,160)" to="(680,940)"/> <wire from="(680,940)" to="(1090,940)"/> <wire from="(690,20)" to="(1210,20)"/> <wire from="(690,20)" to="(690,200)"/> <wire from="(690,400)" to="(690,1030)"/> <wire from="(690,400)" to="(710,400)"/> <wire from="(700,10)" to="(1220,10)"/> <wire from="(700,10)" to="(700,380)"/> <wire from="(710,280)" to="(710,400)"/> <wire from="(710,280)" to="(990,280)"/> <wire from="(710,600)" to="(710,920)"/> <wire from="(710,600)" to="(920,600)"/> <wire from="(720,420)" to="(720,910)"/> <wire from="(720,420)" to="(920,420)"/> <wire from="(730,240)" to="(730,890)"/> <wire from="(730,240)" to="(920,240)"/> <wire from="(740,220)" to="(740,830)"/> <wire from="(740,220)" to="(920,220)"/> <wire from="(750,400)" to="(750,840)"/> <wire from="(750,400)" to="(920,400)"/> <wire from="(760,580)" to="(760,860)"/> <wire from="(760,580)" to="(920,580)"/> <wire from="(770,460)" to="(770,1040)"/> <wire from="(770,460)" to="(990,460)"/> <wire from="(780,440)" to="(780,750)"/> <wire from="(780,440)" to="(880,440)"/> <wire from="(780,750)" to="(800,750)"/> <wire from="(780,760)" to="(780,870)"/> <wire from="(780,760)" to="(920,760)"/> <wire from="(790,1100)" to="(790,1110)"/> <wire from="(790,640)" to="(790,1050)"/> <wire from="(790,640)" to="(990,640)"/> <wire from="(80,160)" to="(170,160)"/> <wire from="(80,230)" to="(110,230)"/> <wire from="(80,260)" to="(110,260)"/> <wire from="(80,290)" to="(110,290)"/> <wire from="(80,340)" to="(230,340)"/> <wire from="(80,370)" to="(260,370)"/> <wire from="(80,400)" to="(230,400)"/> <wire from="(80,430)" to="(220,430)"/> <wire from="(80,460)" to="(190,460)"/> <wire from="(80,490)" to="(180,490)"/> <wire from="(80,50)" to="(150,50)"/> <wire from="(80,520)" to="(170,520)"/> <wire from="(80,550)" to="(160,550)"/> <wire from="(80,670)" to="(240,670)"/> <wire from="(80,700)" to="(250,700)"/> <wire from="(80,730)" to="(260,730)"/> <wire from="(80,760)" to="(210,760)"/> <wire from="(80,790)" to="(150,790)"/> <wire from="(80,80)" to="(250,80)"/> <wire from="(80,820)" to="(140,820)"/> <wire from="(80,850)" to="(130,850)"/> <wire from="(80,880)" to="(120,880)"/> <wire from="(800,1090)" to="(800,1110)"/> <wire from="(800,750)" to="(800,770)"/> <wire from="(800,770)" to="(830,770)"/> <wire from="(800,780)" to="(800,930)"/> <wire from="(800,780)" to="(920,780)"/> <wire from="(810,1080)" to="(810,1110)"/> <wire from="(820,1070)" to="(820,1110)"/> <wire from="(830,210)" to="(860,210)"/> <wire from="(830,390)" to="(860,390)"/> <wire from="(830,570)" to="(860,570)"/> <wire from="(830,750)" to="(860,750)"/> <wire from="(830,770)" to="(830,1110)"/> <wire from="(840,1080)" to="(840,1110)"/> <wire from="(840,1080)" to="(880,1080)"/> <wire from="(850,1090)" to="(850,1110)"/> <wire from="(850,1090)" to="(890,1090)"/> <wire from="(850,190)" to="(870,190)"/> <wire from="(850,370)" to="(870,370)"/> <wire from="(850,550)" to="(870,550)"/> <wire from="(850,730)" to="(870,730)"/> <wire from="(860,1100)" to="(860,1110)"/> <wire from="(860,1100)" to="(970,1100)"/> <wire from="(860,150)" to="(870,150)"/> <wire from="(860,170)" to="(920,170)"/> <wire from="(860,200)" to="(860,210)"/> <wire from="(860,200)" to="(920,200)"/> <wire from="(860,330)" to="(870,330)"/> <wire from="(860,350)" to="(920,350)"/> <wire from="(860,380)" to="(860,390)"/> <wire from="(860,380)" to="(920,380)"/> <wire from="(860,510)" to="(870,510)"/> <wire from="(860,530)" to="(920,530)"/> <wire from="(860,560)" to="(860,570)"/> <wire from="(860,560)" to="(920,560)"/> <wire from="(860,690)" to="(870,690)"/> <wire from="(860,710)" to="(920,710)"/> <wire from="(860,740)" to="(860,750)"/> <wire from="(860,740)" to="(920,740)"/> <wire from="(870,1130)" to="(900,1130)"/> <wire from="(870,150)" to="(870,160)"/> <wire from="(870,160)" to="(920,160)"/> <wire from="(870,180)" to="(870,190)"/> <wire from="(870,180)" to="(920,180)"/> <wire from="(870,330)" to="(870,340)"/> <wire from="(870,340)" to="(920,340)"/> <wire from="(870,360)" to="(870,370)"/> <wire from="(870,360)" to="(920,360)"/> <wire from="(870,510)" to="(870,520)"/> <wire from="(870,520)" to="(920,520)"/> <wire from="(870,540)" to="(870,550)"/> <wire from="(870,540)" to="(920,540)"/> <wire from="(870,690)" to="(870,700)"/> <wire from="(870,700)" to="(920,700)"/> <wire from="(870,720)" to="(870,730)"/> <wire from="(870,720)" to="(920,720)"/> <wire from="(880,270)" to="(880,440)"/> <wire from="(880,270)" to="(970,270)"/> <wire from="(880,450)" to="(880,1080)"/> <wire from="(880,450)" to="(970,450)"/> <wire from="(890,630)" to="(890,1090)"/> <wire from="(890,630)" to="(970,630)"/> <wire from="(900,140)" to="(900,320)"/> <wire from="(900,140)" to="(920,140)"/> <wire from="(900,320)" to="(900,500)"/> <wire from="(900,320)" to="(920,320)"/> <wire from="(900,500)" to="(900,680)"/> <wire from="(900,500)" to="(920,500)"/> <wire from="(900,680)" to="(920,680)"/> <wire from="(900,80)" to="(900,140)"/> <wire from="(910,130)" to="(910,310)"/> <wire from="(910,130)" to="(920,130)"/> <wire from="(910,310)" to="(910,490)"/> <wire from="(910,310)" to="(920,310)"/> <wire from="(910,490)" to="(910,670)"/> <wire from="(910,490)" to="(920,490)"/> <wire from="(910,50)" to="(910,130)"/> <wire from="(910,670)" to="(920,670)"/> <wire from="(970,260)" to="(970,270)"/> <wire from="(970,440)" to="(970,450)"/> <wire from="(970,620)" to="(970,630)"/> <wire from="(970,800)" to="(970,1100)"/> <wire from="(990,260)" to="(990,280)"/> <wire from="(990,440)" to="(990,460)"/> <wire from="(990,620)" to="(990,640)"/> <wire from="(990,800)" to="(990,1060)"/> </circuit> <circuit name="ALU"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#f05951" height="570" stroke="#000000" stroke-width="2" width="140" x="50" y="30"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="118" y="22">ALU</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="156" y="149">SB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="157" y="246">DB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="156" y="345">ADL OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="155" y="445">ADH OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="555">ADL IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="468">DB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="379">SB IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="44">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="63">NDB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="74">DB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="84">0/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="94">SB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="104">ADL/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="114">ADD/SB06</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="123">ADD/SB7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="133">ADD/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="153">ANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="164">EORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="174">ORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="183">SRS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="193">SUMS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="213">SB/AC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="223">AC/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="233">AC/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="244">SB/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="254">SB/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="293">/ACIN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="303">/DAA</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="314">/DSA</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="173" y="43">ACR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="173" y="54">AVR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="79" y="573">ADH IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="514">SB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="524">DB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="534">ADH_Dirty</text> <circ-anchor facing="east" x="50" y="40"/> <circ-port dir="in" pin="1260,440" x="50" y="510"/> <circ-port dir="in" pin="1260,470" x="50" y="520"/> <circ-port dir="in" pin="1260,500" x="50" y="530"/> <circ-port dir="in" pin="140,1010" x="50" y="370"/> <circ-port dir="in" pin="140,1040" x="50" y="380"/> <circ-port dir="in" pin="140,1070" x="50" y="390"/> <circ-port dir="in" pin="140,1100" x="50" y="400"/> <circ-port dir="in" pin="140,1130" x="50" y="410"/> <circ-port dir="in" pin="140,140" x="50" y="60"/> <circ-port dir="in" pin="140,170" x="50" y="70"/> <circ-port dir="in" pin="140,200" x="50" y="80"/> <circ-port dir="in" pin="140,230" x="50" y="90"/> <circ-port dir="in" pin="140,260" x="50" y="100"/> <circ-port dir="in" pin="140,290" x="50" y="110"/> <circ-port dir="in" pin="140,320" x="50" y="120"/> <circ-port dir="in" pin="140,350" x="50" y="130"/> <circ-port dir="in" pin="140,400" x="50" y="150"/> <circ-port dir="in" pin="140,430" x="50" y="160"/> <circ-port dir="in" pin="140,460" x="50" y="170"/> <circ-port dir="in" pin="140,490" x="50" y="180"/> <circ-port dir="in" pin="140,50" x="50" y="40"/> <circ-port dir="in" pin="140,520" x="50" y="190"/> <circ-port dir="in" pin="140,570" x="50" y="210"/> <circ-port dir="in" pin="140,600" x="50" y="220"/> <circ-port dir="in" pin="140,630" x="50" y="230"/> <circ-port dir="in" pin="140,660" x="50" y="240"/> <circ-port dir="in" pin="140,690" x="50" y="250"/> <circ-port dir="in" pin="140,800" x="50" y="290"/> <circ-port dir="in" pin="140,830" x="50" y="300"/> <circ-port dir="in" pin="140,860" x="50" y="310"/> <circ-port dir="in" pin="140,920" x="50" y="340"/> <circ-port dir="in" pin="140,950" x="50" y="350"/> <circ-port dir="in" pin="140,980" x="50" y="360"/> <circ-port dir="in" pin="320,1010" x="50" y="460"/> <circ-port dir="in" pin="320,1040" x="50" y="470"/> <circ-port dir="in" pin="320,1070" x="50" y="480"/> <circ-port dir="in" pin="320,1100" x="50" y="490"/> <circ-port dir="in" pin="320,1130" x="50" y="500"/> <circ-port dir="in" pin="320,920" x="50" y="430"/> <circ-port dir="in" pin="320,950" x="50" y="440"/> <circ-port dir="in" pin="320,980" x="50" y="450"/> <circ-port dir="in" pin="600,920" x="50" y="550"/> <circ-port dir="in" pin="600,960" x="50" y="570"/> <circ-port dir="out" pin="1030,1010" x="190" y="140"/> <circ-port dir="out" pin="1030,1040" x="190" y="150"/> <circ-port dir="out" pin="1030,1070" x="190" y="160"/> <circ-port dir="out" pin="1030,1100" x="190" y="170"/> <circ-port dir="out" pin="1030,1130" x="190" y="180"/> <circ-port dir="out" pin="1030,920" x="190" y="110"/> <circ-port dir="out" pin="1030,950" x="190" y="120"/> <circ-port dir="out" pin="1030,980" x="190" y="130"/> <circ-port dir="out" pin="1200,1010" x="190" y="240"/> <circ-port dir="out" pin="1200,1040" x="190" y="250"/> <circ-port dir="out" pin="1200,1070" x="190" y="260"/> <circ-port dir="out" pin="1200,1100" x="190" y="270"/> <circ-port dir="out" pin="1200,1130" x="190" y="280"/> <circ-port dir="out" pin="1200,920" x="190" y="210"/> <circ-port dir="out" pin="1200,950" x="190" y="220"/> <circ-port dir="out" pin="1200,980" x="190" y="230"/> <circ-port dir="out" pin="1400,1010" x="190" y="340"/> <circ-port dir="out" pin="1400,1040" x="190" y="350"/> <circ-port dir="out" pin="1400,1070" x="190" y="360"/> <circ-port dir="out" pin="1400,1100" x="190" y="370"/> <circ-port dir="out" pin="1400,1130" x="190" y="380"/> <circ-port dir="out" pin="1400,920" x="190" y="310"/> <circ-port dir="out" pin="1400,950" x="190" y="320"/> <circ-port dir="out" pin="1400,980" x="190" y="330"/> <circ-port dir="out" pin="1410,520" x="150" y="600"/> <circ-port dir="out" pin="1570,1010" x="190" y="440"/> <circ-port dir="out" pin="1570,1040" x="190" y="450"/> <circ-port dir="out" pin="1570,1070" x="190" y="460"/> <circ-port dir="out" pin="1570,1100" x="190" y="470"/> <circ-port dir="out" pin="1570,1130" x="190" y="480"/> <circ-port dir="out" pin="1570,920" x="190" y="410"/> <circ-port dir="out" pin="1570,950" x="190" y="420"/> <circ-port dir="out" pin="1570,980" x="190" y="430"/> <circ-port dir="out" pin="1660,120" x="190" y="40"/> <circ-port dir="out" pin="1660,190" x="190" y="50"/> <circ-port dir="out" pin="530,690" x="90" y="600"/> <circ-port dir="out" pin="530,720" x="110" y="600"/> <circ-port dir="out" pin="930,470" x="130" y="600"/> </appear> <comp lib="0" loc="(1020,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1020,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1030,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1030,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1100,350)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1110,1060)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1200,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1260,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_Dirty"/> </comp> <comp lib="0" loc="(1260,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_Dirty"/> </comp> <comp lib="0" loc="(1260,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_Dirty"/> </comp> <comp lib="0" loc="(1270,200)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1310,280)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1320,1060)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(140,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(140,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(140,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(140,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(140,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(140,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="NDB_ADD"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_ADD"/> </comp> <comp lib="0" loc="(140,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADD"/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ADD"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB06"/> </comp> <comp lib="0" loc="(140,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB7"/> </comp> <comp lib="0" loc="(140,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_ADL"/> </comp> <comp lib="0" loc="(140,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(140,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(140,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(140,490)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(140,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SUMS"/> </comp> <comp lib="0" loc="(140,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_AC"/> </comp> <comp lib="0" loc="(140,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_SB"/> </comp> <comp lib="0" loc="(140,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_DB"/> </comp> <comp lib="0" loc="(140,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_DB"/> </comp> <comp lib="0" loc="(140,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADH"/> </comp> <comp lib="0" loc="(140,800)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ACIN"/> </comp> <comp lib="0" loc="(140,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DAA"/> </comp> <comp lib="0" loc="(140,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DSA"/> </comp> <comp lib="0" loc="(140,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(140,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(140,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(1400,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1400,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1410,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AC_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1470,1060)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1570,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ACR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1660,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AVR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(200,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(230,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(250,970)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(280,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(320,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(320,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(320,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(320,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(320,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(320,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(320,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(320,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(400,300)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(400,440)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,540)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,640)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(440,970)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(530,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AI_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(530,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BI_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(600,240)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,330)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,430)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,530)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,920)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(600,960)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(820,250)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(930,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADD_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(940,1060)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="1" loc="(1010,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(760,720)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(760,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(790,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(840,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(840,740)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,600)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(1045,595)" name="Text"> <a name="text" val="ACR"/> </comp> <comp lib="6" loc="(1055,190)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="6" loc="(1280,340)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="6" loc="(735,355)" name="Text"> <a name="text" val="x8"/> </comp> <comp lib="6" loc="(965,730)" name="Text"> <a name="text" val="AVR"/> </comp> <comp loc="(1140,200)" name="ALU_BCD"/> <comp loc="(1350,210)" name="ALU_AC"/> <comp loc="(440,200)" name="ALU_OPS"/> <comp loc="(680,200)" name="BCD_CARRY"/> <comp loc="(860,200)" name="ALU_ADD"/> <comp loc="(900,570)" name="D_Latch"> <a name="label" val="DCLatch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,650)" name="D_Latch"> <a name="label" val="ACLatch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(900,730)" name="D_Latch"> <a name="label" val="AVRLatch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,600)" to="(1090,600)"/> <wire from="(1020,210)" to="(1030,210)"/> <wire from="(1020,300)" to="(1050,300)"/> <wire from="(1030,210)" to="(1030,450)"/> <wire from="(1030,450)" to="(1120,450)"/> <wire from="(1050,300)" to="(1050,400)"/> <wire from="(1050,400)" to="(1130,400)"/> <wire from="(1060,200)" to="(1060,370)"/> <wire from="(1060,370)" to="(1140,370)"/> <wire from="(1090,130)" to="(1090,250)"/> <wire from="(1090,250)" to="(1140,250)"/> <wire from="(1090,260)" to="(1090,600)"/> <wire from="(1090,260)" to="(1120,260)"/> <wire from="(1100,1060)" to="(1110,1060)"/> <wire from="(1100,120)" to="(1100,240)"/> <wire from="(1100,240)" to="(1140,240)"/> <wire from="(1100,350)" to="(1100,710)"/> <wire from="(1100,710)" to="(1100,860)"/> <wire from="(1100,710)" to="(1310,710)"/> <wire from="(1100,900)" to="(1100,1060)"/> <wire from="(1100,900)" to="(1390,900)"/> <wire from="(1110,140)" to="(1110,210)"/> <wire from="(1110,210)" to="(1140,210)"/> <wire from="(1120,120)" to="(1120,220)"/> <wire from="(1120,120)" to="(1660,120)"/> <wire from="(1120,220)" to="(1120,260)"/> <wire from="(1120,220)" to="(1140,220)"/> <wire from="(1120,270)" to="(1140,270)"/> <wire from="(1120,280)" to="(1140,280)"/> <wire from="(1120,290)" to="(1140,290)"/> <wire from="(1120,300)" to="(1140,300)"/> <wire from="(1120,310)" to="(1140,310)"/> <wire from="(1120,320)" to="(1140,320)"/> <wire from="(1120,330)" to="(1140,330)"/> <wire from="(1120,340)" to="(1140,340)"/> <wire from="(1120,450)" to="(1120,590)"/> <wire from="(1120,590)" to="(1120,880)"/> <wire from="(1120,590)" to="(1590,590)"/> <wire from="(1130,1000)" to="(1150,1000)"/> <wire from="(1130,1010)" to="(1200,1010)"/> <wire from="(1130,1020)" to="(1160,1020)"/> <wire from="(1130,1030)" to="(1150,1030)"/> <wire from="(1130,1040)" to="(1140,1040)"/> <wire from="(1130,1050)" to="(1130,1130)"/> <wire from="(1130,1130)" to="(1200,1130)"/> <wire from="(1130,200)" to="(1140,200)"/> <wire from="(1130,400)" to="(1130,840)"/> <wire from="(1130,50)" to="(1130,200)"/> <wire from="(1130,50)" to="(1340,50)"/> <wire from="(1130,840)" to="(1310,840)"/> <wire from="(1130,920)" to="(1130,980)"/> <wire from="(1130,920)" to="(1200,920)"/> <wire from="(1130,990)" to="(1140,990)"/> <wire from="(1140,1040)" to="(1140,1100)"/> <wire from="(1140,1100)" to="(1200,1100)"/> <wire from="(1140,950)" to="(1140,990)"/> <wire from="(1140,950)" to="(1200,950)"/> <wire from="(1150,1030)" to="(1150,1070)"/> <wire from="(1150,1070)" to="(1200,1070)"/> <wire from="(1150,980)" to="(1150,1000)"/> <wire from="(1150,980)" to="(1200,980)"/> <wire from="(1160,1020)" to="(1160,1040)"/> <wire from="(1160,1040)" to="(1200,1040)"/> <wire from="(1230,210)" to="(1250,210)"/> <wire from="(1230,220)" to="(1250,220)"/> <wire from="(1230,230)" to="(1250,230)"/> <wire from="(1230,240)" to="(1250,240)"/> <wire from="(1230,250)" to="(1250,250)"/> <wire from="(1230,260)" to="(1250,260)"/> <wire from="(1230,270)" to="(1250,270)"/> <wire from="(1230,280)" to="(1250,280)"/> <wire from="(1260,440)" to="(1290,440)"/> <wire from="(1260,470)" to="(1300,470)"/> <wire from="(1260,500)" to="(1340,500)"/> <wire from="(1270,200)" to="(1280,200)"/> <wire from="(1280,200)" to="(1280,320)"/> <wire from="(1280,320)" to="(1350,320)"/> <wire from="(1290,430)" to="(1290,440)"/> <wire from="(1290,430)" to="(1350,430)"/> <wire from="(1300,280)" to="(1310,280)"/> <wire from="(1300,440)" to="(1300,470)"/> <wire from="(1300,440)" to="(1350,440)"/> <wire from="(1300,90)" to="(1300,280)"/> <wire from="(1310,1060)" to="(1320,1060)"/> <wire from="(1310,360)" to="(1310,710)"/> <wire from="(1310,360)" to="(1350,360)"/> <wire from="(1310,840)" to="(1310,1060)"/> <wire from="(1320,380)" to="(1320,820)"/> <wire from="(1320,380)" to="(1350,380)"/> <wire from="(1330,230)" to="(1350,230)"/> <wire from="(1330,240)" to="(1350,240)"/> <wire from="(1330,250)" to="(1350,250)"/> <wire from="(1330,260)" to="(1350,260)"/> <wire from="(1330,270)" to="(1350,270)"/> <wire from="(1330,400)" to="(1330,800)"/> <wire from="(1330,400)" to="(1350,400)"/> <wire from="(1340,1000)" to="(1360,1000)"/> <wire from="(1340,1010)" to="(1400,1010)"/> <wire from="(1340,1020)" to="(1370,1020)"/> <wire from="(1340,1030)" to="(1360,1030)"/> <wire from="(1340,1040)" to="(1350,1040)"/> <wire from="(1340,1050)" to="(1340,1130)"/> <wire from="(1340,1130)" to="(1400,1130)"/> <wire from="(1340,210)" to="(1350,210)"/> <wire from="(1340,450)" to="(1340,500)"/> <wire from="(1340,450)" to="(1350,450)"/> <wire from="(1340,50)" to="(1340,210)"/> <wire from="(1340,920)" to="(1340,980)"/> <wire from="(1340,920)" to="(1400,920)"/> <wire from="(1340,990)" to="(1350,990)"/> <wire from="(1350,1040)" to="(1350,1100)"/> <wire from="(1350,1100)" to="(1400,1100)"/> <wire from="(1350,950)" to="(1350,990)"/> <wire from="(1350,950)" to="(1400,950)"/> <wire from="(1360,1030)" to="(1360,1070)"/> <wire from="(1360,1070)" to="(1400,1070)"/> <wire from="(1360,980)" to="(1360,1000)"/> <wire from="(1360,980)" to="(1400,980)"/> <wire from="(1370,1020)" to="(1370,1040)"/> <wire from="(1370,1040)" to="(1400,1040)"/> <wire from="(1390,670)" to="(1390,900)"/> <wire from="(1390,670)" to="(1580,670)"/> <wire from="(140,1010)" to="(230,1010)"/> <wire from="(140,1040)" to="(200,1040)"/> <wire from="(140,1070)" to="(210,1070)"/> <wire from="(140,1100)" to="(220,1100)"/> <wire from="(140,1130)" to="(230,1130)"/> <wire from="(140,140)" to="(260,140)"/> <wire from="(140,170)" to="(250,170)"/> <wire from="(140,200)" to="(240,200)"/> <wire from="(140,230)" to="(230,230)"/> <wire from="(140,260)" to="(220,260)"/> <wire from="(140,290)" to="(180,290)"/> <wire from="(140,320)" to="(180,320)"/> <wire from="(140,350)" to="(180,350)"/> <wire from="(140,400)" to="(220,400)"/> <wire from="(140,430)" to="(230,430)"/> <wire from="(140,460)" to="(240,460)"/> <wire from="(140,490)" to="(250,490)"/> <wire from="(140,50)" to="(850,50)"/> <wire from="(140,520)" to="(260,520)"/> <wire from="(140,570)" to="(210,570)"/> <wire from="(140,600)" to="(200,600)"/> <wire from="(140,630)" to="(190,630)"/> <wire from="(140,660)" to="(210,660)"/> <wire from="(140,690)" to="(190,690)"/> <wire from="(140,800)" to="(290,800)"/> <wire from="(140,830)" to="(300,830)"/> <wire from="(140,860)" to="(180,860)"/> <wire from="(140,920)" to="(230,920)"/> <wire from="(140,950)" to="(220,950)"/> <wire from="(140,980)" to="(210,980)"/> <wire from="(1400,480)" to="(1400,520)"/> <wire from="(1400,520)" to="(1410,520)"/> <wire from="(1450,360)" to="(1590,360)"/> <wire from="(1450,380)" to="(1580,380)"/> <wire from="(1450,400)" to="(1570,400)"/> <wire from="(1460,1060)" to="(1470,1060)"/> <wire from="(1460,720)" to="(1460,1060)"/> <wire from="(1460,720)" to="(1570,720)"/> <wire from="(1490,1000)" to="(1510,1000)"/> <wire from="(1490,1010)" to="(1570,1010)"/> <wire from="(1490,1020)" to="(1520,1020)"/> <wire from="(1490,1030)" to="(1510,1030)"/> <wire from="(1490,1040)" to="(1500,1040)"/> <wire from="(1490,1050)" to="(1490,1130)"/> <wire from="(1490,1130)" to="(1570,1130)"/> <wire from="(1490,920)" to="(1490,980)"/> <wire from="(1490,920)" to="(1570,920)"/> <wire from="(1490,990)" to="(1500,990)"/> <wire from="(1500,1040)" to="(1500,1100)"/> <wire from="(1500,1100)" to="(1570,1100)"/> <wire from="(1500,950)" to="(1500,990)"/> <wire from="(1500,950)" to="(1570,950)"/> <wire from="(1510,1030)" to="(1510,1070)"/> <wire from="(1510,1070)" to="(1570,1070)"/> <wire from="(1510,980)" to="(1510,1000)"/> <wire from="(1510,980)" to="(1570,980)"/> <wire from="(1520,1020)" to="(1520,1040)"/> <wire from="(1520,1040)" to="(1570,1040)"/> <wire from="(1570,400)" to="(1570,720)"/> <wire from="(1580,380)" to="(1580,670)"/> <wire from="(1590,360)" to="(1590,590)"/> <wire from="(1610,190)" to="(1610,630)"/> <wire from="(1610,190)" to="(1660,190)"/> <wire from="(180,290)" to="(180,310)"/> <wire from="(180,330)" to="(180,350)"/> <wire from="(180,840)" to="(180,860)"/> <wire from="(180,840)" to="(310,840)"/> <wire from="(190,630)" to="(190,650)"/> <wire from="(190,650)" to="(210,650)"/> <wire from="(190,670)" to="(190,690)"/> <wire from="(190,670)" to="(210,670)"/> <wire from="(200,1020)" to="(200,1040)"/> <wire from="(200,1020)" to="(230,1020)"/> <wire from="(200,600)" to="(200,640)"/> <wire from="(200,640)" to="(210,640)"/> <wire from="(200,70)" to="(200,300)"/> <wire from="(200,70)" to="(810,70)"/> <wire from="(210,1000)" to="(230,1000)"/> <wire from="(210,1030)" to="(210,1070)"/> <wire from="(210,1030)" to="(230,1030)"/> <wire from="(210,570)" to="(210,630)"/> <wire from="(210,980)" to="(210,1000)"/> <wire from="(220,1040)" to="(220,1100)"/> <wire from="(220,1040)" to="(230,1040)"/> <wire from="(220,260)" to="(220,350)"/> <wire from="(220,350)" to="(260,350)"/> <wire from="(220,360)" to="(220,400)"/> <wire from="(220,360)" to="(260,360)"/> <wire from="(220,950)" to="(220,990)"/> <wire from="(220,990)" to="(230,990)"/> <wire from="(230,1050)" to="(230,1130)"/> <wire from="(230,230)" to="(230,340)"/> <wire from="(230,340)" to="(260,340)"/> <wire from="(230,370)" to="(230,430)"/> <wire from="(230,370)" to="(260,370)"/> <wire from="(230,620)" to="(320,620)"/> <wire from="(230,920)" to="(230,980)"/> <wire from="(240,200)" to="(240,330)"/> <wire from="(240,330)" to="(260,330)"/> <wire from="(240,380)" to="(240,460)"/> <wire from="(240,380)" to="(260,380)"/> <wire from="(250,170)" to="(250,320)"/> <wire from="(250,320)" to="(260,320)"/> <wire from="(250,390)" to="(250,490)"/> <wire from="(250,390)" to="(260,390)"/> <wire from="(250,860)" to="(250,970)"/> <wire from="(250,860)" to="(350,860)"/> <wire from="(260,140)" to="(260,310)"/> <wire from="(260,400)" to="(260,520)"/> <wire from="(280,300)" to="(400,300)"/> <wire from="(290,110)" to="(290,800)"/> <wire from="(290,110)" to="(370,110)"/> <wire from="(300,120)" to="(300,830)"/> <wire from="(300,120)" to="(650,120)"/> <wire from="(310,130)" to="(1090,130)"/> <wire from="(310,130)" to="(310,840)"/> <wire from="(320,1010)" to="(420,1010)"/> <wire from="(320,1040)" to="(390,1040)"/> <wire from="(320,1070)" to="(400,1070)"/> <wire from="(320,1100)" to="(410,1100)"/> <wire from="(320,1130)" to="(420,1130)"/> <wire from="(320,90)" to="(1300,90)"/> <wire from="(320,90)" to="(320,620)"/> <wire from="(320,920)" to="(420,920)"/> <wire from="(320,950)" to="(410,950)"/> <wire from="(320,980)" to="(400,980)"/> <wire from="(350,340)" to="(440,340)"/> <wire from="(350,440)" to="(350,860)"/> <wire from="(350,440)" to="(400,440)"/> <wire from="(350,80)" to="(350,340)"/> <wire from="(350,80)" to="(800,80)"/> <wire from="(350,860)" to="(1100,860)"/> <wire from="(370,110)" to="(370,330)"/> <wire from="(370,110)" to="(670,110)"/> <wire from="(370,330)" to="(440,330)"/> <wire from="(370,540)" to="(370,790)"/> <wire from="(370,540)" to="(400,540)"/> <wire from="(370,790)" to="(440,790)"/> <wire from="(390,1020)" to="(390,1040)"/> <wire from="(390,1020)" to="(420,1020)"/> <wire from="(400,1000)" to="(420,1000)"/> <wire from="(400,1030)" to="(400,1070)"/> <wire from="(400,1030)" to="(420,1030)"/> <wire from="(400,640)" to="(400,770)"/> <wire from="(400,770)" to="(630,770)"/> <wire from="(400,980)" to="(400,1000)"/> <wire from="(410,1040)" to="(410,1100)"/> <wire from="(410,1040)" to="(420,1040)"/> <wire from="(410,950)" to="(410,990)"/> <wire from="(410,990)" to="(420,990)"/> <wire from="(420,1050)" to="(420,1130)"/> <wire from="(420,200)" to="(440,200)"/> <wire from="(420,210)" to="(440,210)"/> <wire from="(420,220)" to="(440,220)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(420,240)" to="(440,240)"/> <wire from="(420,250)" to="(440,250)"/> <wire from="(420,260)" to="(440,260)"/> <wire from="(420,270)" to="(440,270)"/> <wire from="(420,280)" to="(440,280)"/> <wire from="(420,290)" to="(440,290)"/> <wire from="(420,360)" to="(440,360)"/> <wire from="(420,370)" to="(440,370)"/> <wire from="(420,380)" to="(440,380)"/> <wire from="(420,390)" to="(440,390)"/> <wire from="(420,400)" to="(440,400)"/> <wire from="(420,410)" to="(440,410)"/> <wire from="(420,420)" to="(440,420)"/> <wire from="(420,430)" to="(440,430)"/> <wire from="(420,460)" to="(440,460)"/> <wire from="(420,470)" to="(440,470)"/> <wire from="(420,480)" to="(440,480)"/> <wire from="(420,490)" to="(440,490)"/> <wire from="(420,500)" to="(440,500)"/> <wire from="(420,510)" to="(440,510)"/> <wire from="(420,520)" to="(440,520)"/> <wire from="(420,530)" to="(440,530)"/> <wire from="(420,560)" to="(440,560)"/> <wire from="(420,570)" to="(440,570)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(420,590)" to="(440,590)"/> <wire from="(420,600)" to="(440,600)"/> <wire from="(420,610)" to="(440,610)"/> <wire from="(420,620)" to="(440,620)"/> <wire from="(420,630)" to="(440,630)"/> <wire from="(420,920)" to="(420,980)"/> <wire from="(440,790)" to="(440,820)"/> <wire from="(440,820)" to="(1320,820)"/> <wire from="(440,820)" to="(440,970)"/> <wire from="(480,670)" to="(480,690)"/> <wire from="(480,690)" to="(530,690)"/> <wire from="(520,670)" to="(520,720)"/> <wire from="(520,720)" to="(530,720)"/> <wire from="(560,200)" to="(590,200)"/> <wire from="(560,210)" to="(680,210)"/> <wire from="(560,220)" to="(620,220)"/> <wire from="(560,230)" to="(640,230)"/> <wire from="(560,250)" to="(580,250)"/> <wire from="(560,260)" to="(580,260)"/> <wire from="(560,270)" to="(580,270)"/> <wire from="(560,280)" to="(580,280)"/> <wire from="(560,290)" to="(580,290)"/> <wire from="(560,300)" to="(580,300)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(560,320)" to="(580,320)"/> <wire from="(560,340)" to="(580,340)"/> <wire from="(560,350)" to="(580,350)"/> <wire from="(560,360)" to="(580,360)"/> <wire from="(560,370)" to="(580,370)"/> <wire from="(560,380)" to="(580,380)"/> <wire from="(560,390)" to="(580,390)"/> <wire from="(560,400)" to="(580,400)"/> <wire from="(560,410)" to="(580,410)"/> <wire from="(560,440)" to="(580,440)"/> <wire from="(560,450)" to="(580,450)"/> <wire from="(560,460)" to="(580,460)"/> <wire from="(560,470)" to="(580,470)"/> <wire from="(560,480)" to="(580,480)"/> <wire from="(560,490)" to="(580,490)"/> <wire from="(560,500)" to="(580,500)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(560,540)" to="(580,540)"/> <wire from="(560,550)" to="(580,550)"/> <wire from="(560,560)" to="(580,560)"/> <wire from="(560,570)" to="(580,570)"/> <wire from="(560,580)" to="(580,580)"/> <wire from="(560,590)" to="(580,590)"/> <wire from="(560,600)" to="(580,600)"/> <wire from="(560,610)" to="(580,610)"/> <wire from="(580,410)" to="(580,420)"/> <wire from="(580,420)" to="(610,420)"/> <wire from="(590,140)" to="(1110,140)"/> <wire from="(590,140)" to="(590,200)"/> <wire from="(600,240)" to="(630,240)"/> <wire from="(600,330)" to="(650,330)"/> <wire from="(600,430)" to="(660,430)"/> <wire from="(600,530)" to="(670,530)"/> <wire from="(600,920)" to="(630,920)"/> <wire from="(600,960)" to="(810,960)"/> <wire from="(610,420)" to="(610,610)"/> <wire from="(610,610)" to="(670,610)"/> <wire from="(620,220)" to="(620,590)"/> <wire from="(620,590)" to="(690,590)"/> <wire from="(630,240)" to="(630,370)"/> <wire from="(630,370)" to="(840,370)"/> <wire from="(630,770)" to="(630,920)"/> <wire from="(640,230)" to="(640,560)"/> <wire from="(640,560)" to="(710,560)"/> <wire from="(650,120)" to="(1100,120)"/> <wire from="(650,120)" to="(650,220)"/> <wire from="(650,220)" to="(680,220)"/> <wire from="(650,240)" to="(650,330)"/> <wire from="(650,240)" to="(680,240)"/> <wire from="(660,260)" to="(660,430)"/> <wire from="(660,260)" to="(680,260)"/> <wire from="(670,110)" to="(670,200)"/> <wire from="(670,200)" to="(680,200)"/> <wire from="(670,280)" to="(670,530)"/> <wire from="(670,280)" to="(680,280)"/> <wire from="(670,610)" to="(670,730)"/> <wire from="(670,730)" to="(720,730)"/> <wire from="(690,590)" to="(690,710)"/> <wire from="(690,710)" to="(690,760)"/> <wire from="(690,710)" to="(720,710)"/> <wire from="(690,760)" to="(720,760)"/> <wire from="(710,560)" to="(710,660)"/> <wire from="(710,660)" to="(710,780)"/> <wire from="(710,660)" to="(820,660)"/> <wire from="(710,780)" to="(720,780)"/> <wire from="(760,720)" to="(770,720)"/> <wire from="(760,770)" to="(770,770)"/> <wire from="(770,210)" to="(800,210)"/> <wire from="(770,230)" to="(780,230)"/> <wire from="(770,720)" to="(770,730)"/> <wire from="(770,730)" to="(810,730)"/> <wire from="(780,230)" to="(780,580)"/> <wire from="(780,580)" to="(860,580)"/> <wire from="(790,770)" to="(800,770)"/> <wire from="(800,750)" to="(800,770)"/> <wire from="(800,750)" to="(810,750)"/> <wire from="(800,80)" to="(800,210)"/> <wire from="(810,250)" to="(820,250)"/> <wire from="(810,70)" to="(810,250)"/> <wire from="(810,800)" to="(1330,800)"/> <wire from="(810,800)" to="(810,960)"/> <wire from="(840,220)" to="(860,220)"/> <wire from="(840,230)" to="(860,230)"/> <wire from="(840,240)" to="(860,240)"/> <wire from="(840,270)" to="(840,370)"/> <wire from="(840,270)" to="(860,270)"/> <wire from="(840,660)" to="(860,660)"/> <wire from="(840,740)" to="(860,740)"/> <wire from="(850,200)" to="(850,560)"/> <wire from="(850,200)" to="(860,200)"/> <wire from="(850,50)" to="(1130,50)"/> <wire from="(850,50)" to="(850,200)"/> <wire from="(850,560)" to="(850,640)"/> <wire from="(850,560)" to="(860,560)"/> <wire from="(850,640)" to="(850,720)"/> <wire from="(850,640)" to="(860,640)"/> <wire from="(850,720)" to="(860,720)"/> <wire from="(900,560)" to="(920,560)"/> <wire from="(900,640)" to="(920,640)"/> <wire from="(900,740)" to="(990,740)"/> <wire from="(920,1060)" to="(940,1060)"/> <wire from="(920,400)" to="(920,470)"/> <wire from="(920,470)" to="(930,470)"/> <wire from="(920,560)" to="(920,590)"/> <wire from="(920,590)" to="(930,590)"/> <wire from="(920,610)" to="(920,640)"/> <wire from="(920,610)" to="(930,610)"/> <wire from="(920,880)" to="(1120,880)"/> <wire from="(920,880)" to="(920,1060)"/> <wire from="(960,1000)" to="(980,1000)"/> <wire from="(960,1010)" to="(1030,1010)"/> <wire from="(960,1020)" to="(990,1020)"/> <wire from="(960,1030)" to="(980,1030)"/> <wire from="(960,1040)" to="(970,1040)"/> <wire from="(960,1050)" to="(960,1130)"/> <wire from="(960,1130)" to="(1030,1130)"/> <wire from="(960,920)" to="(1030,920)"/> <wire from="(960,920)" to="(960,980)"/> <wire from="(960,990)" to="(970,990)"/> <wire from="(970,1040)" to="(970,1100)"/> <wire from="(970,1100)" to="(1030,1100)"/> <wire from="(970,600)" to="(990,600)"/> <wire from="(970,950)" to="(1030,950)"/> <wire from="(970,950)" to="(970,990)"/> <wire from="(980,1030)" to="(980,1070)"/> <wire from="(980,1070)" to="(1030,1070)"/> <wire from="(980,200)" to="(1060,200)"/> <wire from="(980,220)" to="(1000,220)"/> <wire from="(980,230)" to="(1000,230)"/> <wire from="(980,240)" to="(1000,240)"/> <wire from="(980,250)" to="(1000,250)"/> <wire from="(980,260)" to="(1000,260)"/> <wire from="(980,270)" to="(1000,270)"/> <wire from="(980,280)" to="(1000,280)"/> <wire from="(980,290)" to="(1000,290)"/> <wire from="(980,310)" to="(1000,310)"/> <wire from="(980,320)" to="(1000,320)"/> <wire from="(980,330)" to="(1000,330)"/> <wire from="(980,340)" to="(1000,340)"/> <wire from="(980,350)" to="(1000,350)"/> <wire from="(980,360)" to="(1000,360)"/> <wire from="(980,370)" to="(1000,370)"/> <wire from="(980,380)" to="(1000,380)"/> <wire from="(980,980)" to="(1030,980)"/> <wire from="(980,980)" to="(980,1000)"/> <wire from="(990,1020)" to="(990,1040)"/> <wire from="(990,1040)" to="(1030,1040)"/> <wire from="(990,630)" to="(1610,630)"/> <wire from="(990,630)" to="(990,740)"/> </circuit> <circuit name="PC"> <a name="appearance" val="custom"/> <a name="circuit" val="PC"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#f2a219" height="350" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="42">PC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="115">DB OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="137" y="260">ADL OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="135" y="348">ADH OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="348">ADH IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="78" y="260">ADL IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="64">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="83">ADH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="93">PCH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="103">PCH/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="114">PCH/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="133">ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="143">PCL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="153">PCL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="163">PCL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="183">#1/PC</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="160,130" x="50" y="130"/> <circ-port dir="in" pin="160,160" x="50" y="140"/> <circ-port dir="in" pin="160,190" x="50" y="150"/> <circ-port dir="in" pin="160,220" x="50" y="160"/> <circ-port dir="in" pin="160,270" x="50" y="80"/> <circ-port dir="in" pin="160,300" x="50" y="90"/> <circ-port dir="in" pin="160,330" x="50" y="100"/> <circ-port dir="in" pin="160,360" x="50" y="110"/> <circ-port dir="in" pin="160,430" x="50" y="180"/> <circ-port dir="in" pin="160,520" x="50" y="220"/> <circ-port dir="in" pin="160,550" x="50" y="230"/> <circ-port dir="in" pin="160,580" x="50" y="240"/> <circ-port dir="in" pin="160,60" x="50" y="60"/> <circ-port dir="in" pin="160,610" x="50" y="250"/> <circ-port dir="in" pin="160,640" x="50" y="260"/> <circ-port dir="in" pin="160,670" x="50" y="270"/> <circ-port dir="in" pin="160,700" x="50" y="280"/> <circ-port dir="in" pin="160,730" x="50" y="290"/> <circ-port dir="in" pin="160,780" x="50" y="310"/> <circ-port dir="in" pin="160,810" x="50" y="320"/> <circ-port dir="in" pin="160,840" x="50" y="330"/> <circ-port dir="in" pin="160,870" x="50" y="340"/> <circ-port dir="in" pin="160,900" x="50" y="350"/> <circ-port dir="in" pin="160,930" x="50" y="360"/> <circ-port dir="in" pin="160,960" x="50" y="370"/> <circ-port dir="in" pin="160,990" x="50" y="380"/> <circ-port dir="out" pin="1000,120" x="170" y="100"/> <circ-port dir="out" pin="1000,150" x="170" y="110"/> <circ-port dir="out" pin="1000,180" x="170" y="120"/> <circ-port dir="out" pin="1000,210" x="170" y="130"/> <circ-port dir="out" pin="1000,240" x="170" y="140"/> <circ-port dir="out" pin="1000,270" x="170" y="150"/> <circ-port dir="out" pin="1000,320" x="170" y="220"/> <circ-port dir="out" pin="1000,350" x="170" y="230"/> <circ-port dir="out" pin="1000,380" x="170" y="240"/> <circ-port dir="out" pin="1000,410" x="170" y="250"/> <circ-port dir="out" pin="1000,440" x="170" y="260"/> <circ-port dir="out" pin="1000,470" x="170" y="270"/> <circ-port dir="out" pin="1000,500" x="170" y="280"/> <circ-port dir="out" pin="1000,530" x="170" y="290"/> <circ-port dir="out" pin="1000,580" x="170" y="310"/> <circ-port dir="out" pin="1000,60" x="170" y="80"/> <circ-port dir="out" pin="1000,610" x="170" y="320"/> <circ-port dir="out" pin="1000,640" x="170" y="330"/> <circ-port dir="out" pin="1000,670" x="170" y="340"/> <circ-port dir="out" pin="1000,700" x="170" y="350"/> <circ-port dir="out" pin="1000,730" x="170" y="360"/> <circ-port dir="out" pin="1000,760" x="170" y="370"/> <circ-port dir="out" pin="1000,790" x="170" y="380"/> <circ-port dir="out" pin="1000,90" x="170" y="90"/> <circ-port dir="out" pin="910,870" x="90" y="400"/> <circ-port dir="out" pin="910,960" x="130" y="400"/> </appear> <comp lib="0" loc="(1000,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1000,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(160,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_PCL"/> </comp> <comp lib="0" loc="(160,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_PCL"/> </comp> <comp lib="0" loc="(160,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_ADL"/> </comp> <comp lib="0" loc="(160,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_PCH"/> </comp> <comp lib="0" loc="(160,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_PCH"/> </comp> <comp lib="0" loc="(160,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="0" loc="(160,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(160,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IPC"/> </comp> <comp lib="0" loc="(160,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(160,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(160,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(160,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(160,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(160,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(160,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(160,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(160,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(160,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH1"/> </comp> <comp lib="0" loc="(160,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(160,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH3"/> </comp> <comp lib="0" loc="(160,900)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH4"/> </comp> <comp lib="0" loc="(160,930)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH5"/> </comp> <comp lib="0" loc="(160,960)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(160,990)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH7"/> </comp> <comp lib="0" loc="(250,580)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(250,830)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(390,340)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(390,700)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(590,140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(590,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(590,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(590,590)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(650,810)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(650,900)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(730,810)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(730,900)" name="Splitter"> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(820,870)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(820,960)" name="Splitter"> <a name="facing" val="north"/> <a name="fanout" val="16"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(900,210)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(900,470)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(900,710)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(910,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PC_Debug"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(910,960)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCS_Debug"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp loc="(430,150)" name="PCL"/> <comp loc="(430,510)" name="PCH"/> <wire from="(160,130)" to="(340,130)"/> <wire from="(160,160)" to="(330,160)"/> <wire from="(160,190)" to="(320,190)"/> <wire from="(160,220)" to="(430,220)"/> <wire from="(160,270)" to="(310,270)"/> <wire from="(160,300)" to="(300,300)"/> <wire from="(160,330)" to="(280,330)"/> <wire from="(160,360)" to="(270,360)"/> <wire from="(160,430)" to="(230,430)"/> <wire from="(160,520)" to="(230,520)"/> <wire from="(160,550)" to="(220,550)"/> <wire from="(160,580)" to="(210,580)"/> <wire from="(160,60)" to="(360,60)"/> <wire from="(160,610)" to="(200,610)"/> <wire from="(160,640)" to="(200,640)"/> <wire from="(160,670)" to="(210,670)"/> <wire from="(160,700)" to="(220,700)"/> <wire from="(160,730)" to="(230,730)"/> <wire from="(160,780)" to="(230,780)"/> <wire from="(160,810)" to="(220,810)"/> <wire from="(160,840)" to="(210,840)"/> <wire from="(160,870)" to="(230,870)"/> <wire from="(160,900)" to="(200,900)"/> <wire from="(160,930)" to="(210,930)"/> <wire from="(160,960)" to="(220,960)"/> <wire from="(160,990)" to="(230,990)"/> <wire from="(200,610)" to="(200,620)"/> <wire from="(200,620)" to="(230,620)"/> <wire from="(200,630)" to="(200,640)"/> <wire from="(200,630)" to="(230,630)"/> <wire from="(200,880)" to="(200,900)"/> <wire from="(200,880)" to="(230,880)"/> <wire from="(210,580)" to="(210,610)"/> <wire from="(210,610)" to="(230,610)"/> <wire from="(210,640)" to="(210,670)"/> <wire from="(210,640)" to="(230,640)"/> <wire from="(210,840)" to="(210,860)"/> <wire from="(210,860)" to="(230,860)"/> <wire from="(210,890)" to="(210,930)"/> <wire from="(210,890)" to="(230,890)"/> <wire from="(220,550)" to="(220,600)"/> <wire from="(220,600)" to="(230,600)"/> <wire from="(220,650)" to="(220,700)"/> <wire from="(220,650)" to="(230,650)"/> <wire from="(220,810)" to="(220,850)"/> <wire from="(220,850)" to="(230,850)"/> <wire from="(220,900)" to="(220,960)"/> <wire from="(220,900)" to="(230,900)"/> <wire from="(230,170)" to="(230,430)"/> <wire from="(230,170)" to="(430,170)"/> <wire from="(230,520)" to="(230,590)"/> <wire from="(230,660)" to="(230,730)"/> <wire from="(230,780)" to="(230,840)"/> <wire from="(230,910)" to="(230,990)"/> <wire from="(250,390)" to="(250,580)"/> <wire from="(250,390)" to="(390,390)"/> <wire from="(250,830)" to="(390,830)"/> <wire from="(270,360)" to="(270,580)"/> <wire from="(270,580)" to="(430,580)"/> <wire from="(280,330)" to="(280,570)"/> <wire from="(280,570)" to="(430,570)"/> <wire from="(300,300)" to="(300,560)"/> <wire from="(300,560)" to="(430,560)"/> <wire from="(310,270)" to="(310,550)"/> <wire from="(310,550)" to="(430,550)"/> <wire from="(320,190)" to="(320,210)"/> <wire from="(320,210)" to="(430,210)"/> <wire from="(330,160)" to="(330,200)"/> <wire from="(330,200)" to="(430,200)"/> <wire from="(340,130)" to="(340,190)"/> <wire from="(340,190)" to="(430,190)"/> <wire from="(360,150)" to="(360,510)"/> <wire from="(360,150)" to="(430,150)"/> <wire from="(360,510)" to="(430,510)"/> <wire from="(360,60)" to="(360,150)"/> <wire from="(390,340)" to="(390,390)"/> <wire from="(390,700)" to="(390,830)"/> <wire from="(400,470)" to="(400,530)"/> <wire from="(400,470)" to="(600,470)"/> <wire from="(400,530)" to="(430,530)"/> <wire from="(410,260)" to="(430,260)"/> <wire from="(410,270)" to="(430,270)"/> <wire from="(410,280)" to="(430,280)"/> <wire from="(410,290)" to="(430,290)"/> <wire from="(410,300)" to="(430,300)"/> <wire from="(410,310)" to="(430,310)"/> <wire from="(410,320)" to="(430,320)"/> <wire from="(410,330)" to="(430,330)"/> <wire from="(410,620)" to="(430,620)"/> <wire from="(410,630)" to="(430,630)"/> <wire from="(410,640)" to="(430,640)"/> <wire from="(410,650)" to="(430,650)"/> <wire from="(410,660)" to="(430,660)"/> <wire from="(410,670)" to="(430,670)"/> <wire from="(410,680)" to="(430,680)"/> <wire from="(410,690)" to="(430,690)"/> <wire from="(470,380)" to="(470,440)"/> <wire from="(470,440)" to="(730,440)"/> <wire from="(470,740)" to="(470,810)"/> <wire from="(470,810)" to="(650,810)"/> <wire from="(510,380)" to="(510,420)"/> <wire from="(510,420)" to="(640,420)"/> <wire from="(510,740)" to="(510,900)"/> <wire from="(510,900)" to="(650,900)"/> <wire from="(550,150)" to="(570,150)"/> <wire from="(550,160)" to="(570,160)"/> <wire from="(550,170)" to="(570,170)"/> <wire from="(550,180)" to="(570,180)"/> <wire from="(550,190)" to="(570,190)"/> <wire from="(550,200)" to="(570,200)"/> <wire from="(550,210)" to="(570,210)"/> <wire from="(550,220)" to="(570,220)"/> <wire from="(550,240)" to="(570,240)"/> <wire from="(550,250)" to="(570,250)"/> <wire from="(550,260)" to="(570,260)"/> <wire from="(550,270)" to="(570,270)"/> <wire from="(550,280)" to="(570,280)"/> <wire from="(550,290)" to="(570,290)"/> <wire from="(550,300)" to="(570,300)"/> <wire from="(550,310)" to="(570,310)"/> <wire from="(550,340)" to="(600,340)"/> <wire from="(550,510)" to="(570,510)"/> <wire from="(550,520)" to="(570,520)"/> <wire from="(550,530)" to="(570,530)"/> <wire from="(550,540)" to="(570,540)"/> <wire from="(550,550)" to="(570,550)"/> <wire from="(550,560)" to="(570,560)"/> <wire from="(550,570)" to="(570,570)"/> <wire from="(550,580)" to="(570,580)"/> <wire from="(550,600)" to="(570,600)"/> <wire from="(550,610)" to="(570,610)"/> <wire from="(550,620)" to="(570,620)"/> <wire from="(550,630)" to="(570,630)"/> <wire from="(550,640)" to="(570,640)"/> <wire from="(550,650)" to="(570,650)"/> <wire from="(550,660)" to="(570,660)"/> <wire from="(550,670)" to="(570,670)"/> <wire from="(590,120)" to="(590,140)"/> <wire from="(590,120)" to="(820,120)"/> <wire from="(590,230)" to="(750,230)"/> <wire from="(590,500)" to="(820,500)"/> <wire from="(590,590)" to="(750,590)"/> <wire from="(600,340)" to="(600,470)"/> <wire from="(640,420)" to="(640,880)"/> <wire from="(640,880)" to="(730,880)"/> <wire from="(660,830)" to="(660,850)"/> <wire from="(660,920)" to="(660,940)"/> <wire from="(670,830)" to="(670,850)"/> <wire from="(670,920)" to="(670,940)"/> <wire from="(680,830)" to="(680,850)"/> <wire from="(680,920)" to="(680,940)"/> <wire from="(690,830)" to="(690,850)"/> <wire from="(690,920)" to="(690,940)"/> <wire from="(700,830)" to="(700,850)"/> <wire from="(700,920)" to="(700,940)"/> <wire from="(710,830)" to="(710,850)"/> <wire from="(710,920)" to="(710,940)"/> <wire from="(720,830)" to="(720,850)"/> <wire from="(720,920)" to="(720,940)"/> <wire from="(730,440)" to="(730,810)"/> <wire from="(730,830)" to="(730,850)"/> <wire from="(730,880)" to="(730,900)"/> <wire from="(730,920)" to="(730,940)"/> <wire from="(740,830)" to="(740,850)"/> <wire from="(740,920)" to="(740,940)"/> <wire from="(750,210)" to="(750,230)"/> <wire from="(750,210)" to="(900,210)"/> <wire from="(750,230)" to="(750,590)"/> <wire from="(750,830)" to="(750,850)"/> <wire from="(750,920)" to="(750,940)"/> <wire from="(760,830)" to="(760,850)"/> <wire from="(760,920)" to="(760,940)"/> <wire from="(770,830)" to="(770,850)"/> <wire from="(770,920)" to="(770,940)"/> <wire from="(780,830)" to="(780,850)"/> <wire from="(780,920)" to="(780,940)"/> <wire from="(790,830)" to="(790,850)"/> <wire from="(790,920)" to="(790,940)"/> <wire from="(800,830)" to="(800,850)"/> <wire from="(800,920)" to="(800,940)"/> <wire from="(810,830)" to="(810,850)"/> <wire from="(810,920)" to="(810,940)"/> <wire from="(820,120)" to="(820,470)"/> <wire from="(820,470)" to="(900,470)"/> <wire from="(820,500)" to="(820,710)"/> <wire from="(820,710)" to="(900,710)"/> <wire from="(820,870)" to="(910,870)"/> <wire from="(820,960)" to="(910,960)"/> <wire from="(920,130)" to="(930,130)"/> <wire from="(920,140)" to="(940,140)"/> <wire from="(920,150)" to="(950,150)"/> <wire from="(920,160)" to="(960,160)"/> <wire from="(920,170)" to="(960,170)"/> <wire from="(920,180)" to="(950,180)"/> <wire from="(920,190)" to="(940,190)"/> <wire from="(920,200)" to="(930,200)"/> <wire from="(920,390)" to="(930,390)"/> <wire from="(920,400)" to="(940,400)"/> <wire from="(920,410)" to="(950,410)"/> <wire from="(920,420)" to="(960,420)"/> <wire from="(920,430)" to="(960,430)"/> <wire from="(920,440)" to="(950,440)"/> <wire from="(920,450)" to="(940,450)"/> <wire from="(920,460)" to="(930,460)"/> <wire from="(920,630)" to="(930,630)"/> <wire from="(920,640)" to="(940,640)"/> <wire from="(920,650)" to="(950,650)"/> <wire from="(920,660)" to="(960,660)"/> <wire from="(920,670)" to="(950,670)"/> <wire from="(920,680)" to="(940,680)"/> <wire from="(920,690)" to="(930,690)"/> <wire from="(920,700)" to="(920,790)"/> <wire from="(920,790)" to="(1000,790)"/> <wire from="(930,200)" to="(930,270)"/> <wire from="(930,270)" to="(1000,270)"/> <wire from="(930,320)" to="(1000,320)"/> <wire from="(930,320)" to="(930,390)"/> <wire from="(930,460)" to="(930,530)"/> <wire from="(930,530)" to="(1000,530)"/> <wire from="(930,580)" to="(1000,580)"/> <wire from="(930,580)" to="(930,630)"/> <wire from="(930,60)" to="(1000,60)"/> <wire from="(930,60)" to="(930,130)"/> <wire from="(930,690)" to="(930,760)"/> <wire from="(930,760)" to="(1000,760)"/> <wire from="(940,190)" to="(940,240)"/> <wire from="(940,240)" to="(1000,240)"/> <wire from="(940,350)" to="(1000,350)"/> <wire from="(940,350)" to="(940,400)"/> <wire from="(940,450)" to="(940,500)"/> <wire from="(940,500)" to="(1000,500)"/> <wire from="(940,610)" to="(1000,610)"/> <wire from="(940,610)" to="(940,640)"/> <wire from="(940,680)" to="(940,730)"/> <wire from="(940,730)" to="(1000,730)"/> <wire from="(940,90)" to="(1000,90)"/> <wire from="(940,90)" to="(940,140)"/> <wire from="(950,120)" to="(1000,120)"/> <wire from="(950,120)" to="(950,150)"/> <wire from="(950,180)" to="(950,210)"/> <wire from="(950,210)" to="(1000,210)"/> <wire from="(950,380)" to="(1000,380)"/> <wire from="(950,380)" to="(950,410)"/> <wire from="(950,440)" to="(950,470)"/> <wire from="(950,470)" to="(1000,470)"/> <wire from="(950,640)" to="(1000,640)"/> <wire from="(950,640)" to="(950,650)"/> <wire from="(950,670)" to="(950,700)"/> <wire from="(950,700)" to="(1000,700)"/> <wire from="(960,150)" to="(1000,150)"/> <wire from="(960,150)" to="(960,160)"/> <wire from="(960,170)" to="(960,180)"/> <wire from="(960,180)" to="(1000,180)"/> <wire from="(960,410)" to="(1000,410)"/> <wire from="(960,410)" to="(960,420)"/> <wire from="(960,430)" to="(960,440)"/> <wire from="(960,440)" to="(1000,440)"/> <wire from="(960,660)" to="(960,670)"/> <wire from="(960,670)" to="(1000,670)"/> </circuit> <circuit name="ABL_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="ABL_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="60" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="43">ABL_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="64">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="74">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="94">ADL/ABL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="104">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="117" y="73">Ax</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="140,160" x="50" y="90"/> <circ-port dir="in" pin="140,220" x="50" y="100"/> <circ-port dir="in" pin="140,50" x="50" y="60"/> <circ-port dir="in" pin="140,90" x="50" y="70"/> <circ-port dir="out" pin="410,180" x="130" y="70"/> </appear> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ABL"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADLx"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(410,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(240,220)" name="NOT Gate"> <a name="label" val="not1"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,120)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(125,115)" name="Text"> <a name="text" val="not used"/> </comp> <comp loc="(310,160)" name="DFF_Level"/> <wire from="(140,160)" to="(200,160)"/> <wire from="(140,220)" to="(220,220)"/> <wire from="(140,50)" to="(200,50)"/> <wire from="(200,110)" to="(240,110)"/> <wire from="(200,130)" to="(200,160)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(200,50)" to="(200,110)"/> <wire from="(240,220)" to="(290,220)"/> <wire from="(270,120)" to="(290,120)"/> <wire from="(290,120)" to="(290,160)"/> <wire from="(290,160)" to="(310,160)"/> <wire from="(290,180)" to="(290,220)"/> <wire from="(290,180)" to="(310,180)"/> <wire from="(350,180)" to="(410,180)"/> </circuit> <circuit name="ABH_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="ABH_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="60" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="44">ABH_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="64">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="73">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="94">ADH/ABH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="104">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="118" y="73">Ax</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="130,160" x="50" y="90"/> <circ-port dir="in" pin="130,220" x="50" y="100"/> <circ-port dir="in" pin="130,50" x="50" y="60"/> <circ-port dir="in" pin="130,90" x="50" y="70"/> <circ-port dir="out" pin="400,180" x="130" y="70"/> </appear> <comp lib="0" loc="(130,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_ABH"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADHx"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(400,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Ax"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(230,220)" name="NOT Gate"> <a name="label" val="not1"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,120)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(120,115)" name="Text"> <a name="text" val="not used"/> </comp> <comp loc="(300,160)" name="DFF_Level"/> <wire from="(130,160)" to="(190,160)"/> <wire from="(130,220)" to="(210,220)"/> <wire from="(130,50)" to="(190,50)"/> <wire from="(190,110)" to="(230,110)"/> <wire from="(190,130)" to="(190,160)"/> <wire from="(190,130)" to="(230,130)"/> <wire from="(190,50)" to="(190,110)"/> <wire from="(230,220)" to="(280,220)"/> <wire from="(260,120)" to="(280,120)"/> <wire from="(280,120)" to="(280,160)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(280,180)" to="(280,220)"/> <wire from="(280,180)" to="(300,180)"/> <wire from="(340,180)" to="(400,180)"/> </circuit> <circuit name="PCL_EVEN_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="PCL_EVEN_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCL_Even_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="114">PCL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="133">sout</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,110" x="50" y="80"/> <circ-port dir="in" pin="120,180" x="50" y="100"/> <circ-port dir="in" pin="120,210" x="50" y="110"/> <circ-port dir="in" pin="120,240" x="50" y="120"/> <circ-port dir="in" pin="120,270" x="50" y="130"/> <circ-port dir="in" pin="120,310" x="50" y="150"/> <circ-port dir="in" pin="120,60" x="50" y="60"/> <circ-port dir="out" pin="630,110" x="130" y="90"/> <circ-port dir="out" pin="630,160" x="130" y="70"/> <circ-port dir="out" pin="630,250" x="130" y="120"/> <circ-port dir="out" pin="630,290" x="130" y="130"/> <circ-port dir="out" pin="630,420" x="90" y="160"/> <circ-port dir="out" pin="630,450" x="110" y="160"/> </appear> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_PCL"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_PCL"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_ADL"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(120,310)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADLx_in"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(370,300)" name="Constant"/> <comp lib="0" loc="(630,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADLx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCLS_Debug"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,470)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,410)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,440)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(580,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(380,130)" name="DFF_Posedge"> <a name="label" val="PCL"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,300)" name="DFF_Level"> <a name="label" val="PCLS"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(210,110)"/> <wire from="(120,180)" to="(280,180)"/> <wire from="(120,210)" to="(320,210)"/> <wire from="(120,240)" to="(240,240)"/> <wire from="(120,270)" to="(250,270)"/> <wire from="(120,310)" to="(290,310)"/> <wire from="(120,60)" to="(370,60)"/> <wire from="(150,330)" to="(150,460)"/> <wire from="(150,330)" to="(190,330)"/> <wire from="(150,460)" to="(170,460)"/> <wire from="(150,480)" to="(150,510)"/> <wire from="(150,480)" to="(170,480)"/> <wire from="(150,510)" to="(240,510)"/> <wire from="(190,330)" to="(190,400)"/> <wire from="(190,330)" to="(210,330)"/> <wire from="(190,400)" to="(260,400)"/> <wire from="(210,110)" to="(210,330)"/> <wire from="(210,470)" to="(220,470)"/> <wire from="(220,470)" to="(220,530)"/> <wire from="(220,470)" to="(270,470)"/> <wire from="(220,530)" to="(580,530)"/> <wire from="(240,420)" to="(240,510)"/> <wire from="(240,420)" to="(260,420)"/> <wire from="(240,510)" to="(460,510)"/> <wire from="(240,90)" to="(240,240)"/> <wire from="(240,90)" to="(540,90)"/> <wire from="(250,70)" to="(250,270)"/> <wire from="(250,70)" to="(570,70)"/> <wire from="(280,180)" to="(280,260)"/> <wire from="(280,260)" to="(320,260)"/> <wire from="(290,220)" to="(290,240)"/> <wire from="(290,220)" to="(480,220)"/> <wire from="(290,240)" to="(310,240)"/> <wire from="(290,290)" to="(290,310)"/> <wire from="(290,290)" to="(310,290)"/> <wire from="(290,470)" to="(300,470)"/> <wire from="(300,410)" to="(310,410)"/> <wire from="(300,450)" to="(300,470)"/> <wire from="(300,450)" to="(320,450)"/> <wire from="(310,410)" to="(310,430)"/> <wire from="(310,430)" to="(320,430)"/> <wire from="(320,210)" to="(320,230)"/> <wire from="(320,260)" to="(320,280)"/> <wire from="(330,240)" to="(340,240)"/> <wire from="(330,290)" to="(340,290)"/> <wire from="(340,240)" to="(340,290)"/> <wire from="(340,290)" to="(340,320)"/> <wire from="(340,320)" to="(380,320)"/> <wire from="(350,150)" to="(350,190)"/> <wire from="(350,150)" to="(380,150)"/> <wire from="(350,190)" to="(440,190)"/> <wire from="(350,440)" to="(440,440)"/> <wire from="(370,130)" to="(380,130)"/> <wire from="(370,300)" to="(380,300)"/> <wire from="(370,60)" to="(370,130)"/> <wire from="(420,150)" to="(440,150)"/> <wire from="(420,300)" to="(510,300)"/> <wire from="(420,320)" to="(460,320)"/> <wire from="(440,190)" to="(440,440)"/> <wire from="(460,150)" to="(480,150)"/> <wire from="(460,320)" to="(460,510)"/> <wire from="(460,320)" to="(570,320)"/> <wire from="(480,110)" to="(480,150)"/> <wire from="(480,110)" to="(560,110)"/> <wire from="(480,150)" to="(480,220)"/> <wire from="(480,150)" to="(530,150)"/> <wire from="(510,300)" to="(510,450)"/> <wire from="(510,450)" to="(630,450)"/> <wire from="(530,150)" to="(530,160)"/> <wire from="(530,160)" to="(530,420)"/> <wire from="(530,160)" to="(560,160)"/> <wire from="(530,420)" to="(630,420)"/> <wire from="(540,130)" to="(570,130)"/> <wire from="(540,90)" to="(540,130)"/> <wire from="(570,130)" to="(570,150)"/> <wire from="(570,290)" to="(570,320)"/> <wire from="(570,290)" to="(630,290)"/> <wire from="(570,70)" to="(570,100)"/> <wire from="(580,110)" to="(630,110)"/> <wire from="(580,160)" to="(630,160)"/> <wire from="(580,250)" to="(580,530)"/> <wire from="(580,250)" to="(630,250)"/> </circuit> <circuit name="PCL_ODD_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="PCL_ODD_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCL_Odd_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="114">PCL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,120" x="50" y="80"/> <circ-port dir="in" pin="110,160" x="50" y="100"/> <circ-port dir="in" pin="110,190" x="50" y="110"/> <circ-port dir="in" pin="110,220" x="50" y="120"/> <circ-port dir="in" pin="110,250" x="50" y="130"/> <circ-port dir="in" pin="110,290" x="50" y="150"/> <circ-port dir="in" pin="110,40" x="50" y="60"/> <circ-port dir="out" pin="670,140" x="130" y="70"/> <circ-port dir="out" pin="670,230" x="130" y="120"/> <circ-port dir="out" pin="670,270" x="130" y="130"/> <circ-port dir="out" pin="670,400" x="90" y="160"/> <circ-port dir="out" pin="670,430" x="110" y="160"/> <circ-port dir="out" pin="670,90" x="130" y="90"/> </appear> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_PCL"/> </comp> <comp lib="0" loc="(110,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_PCL"/> </comp> <comp lib="0" loc="(110,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_ADL"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADLx_in"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(400,280)" name="Constant"/> <comp lib="0" loc="(670,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADLx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCLS_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(670,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,450)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,270)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(380,420)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(610,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(410,110)" name="DFF_Posedge"> <a name="label" val="PCL"/> <a name="labelloc" val="south"/> </comp> <comp loc="(410,280)" name="DFF_Level"> <a name="label" val="PCLS"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,120)" to="(240,120)"/> <wire from="(110,160)" to="(290,160)"/> <wire from="(110,190)" to="(350,190)"/> <wire from="(110,220)" to="(270,220)"/> <wire from="(110,250)" to="(280,250)"/> <wire from="(110,290)" to="(320,290)"/> <wire from="(110,40)" to="(400,40)"/> <wire from="(150,400)" to="(150,460)"/> <wire from="(150,400)" to="(230,400)"/> <wire from="(150,460)" to="(150,490)"/> <wire from="(150,460)" to="(160,460)"/> <wire from="(150,490)" to="(490,490)"/> <wire from="(180,310)" to="(180,440)"/> <wire from="(180,310)" to="(220,310)"/> <wire from="(180,440)" to="(200,440)"/> <wire from="(180,460)" to="(200,460)"/> <wire from="(220,310)" to="(220,380)"/> <wire from="(220,310)" to="(240,310)"/> <wire from="(220,380)" to="(290,380)"/> <wire from="(240,120)" to="(240,310)"/> <wire from="(240,450)" to="(250,450)"/> <wire from="(250,400)" to="(290,400)"/> <wire from="(250,450)" to="(250,510)"/> <wire from="(250,450)" to="(300,450)"/> <wire from="(250,510)" to="(610,510)"/> <wire from="(270,70)" to="(270,220)"/> <wire from="(270,70)" to="(570,70)"/> <wire from="(280,50)" to="(280,250)"/> <wire from="(280,50)" to="(600,50)"/> <wire from="(290,160)" to="(290,240)"/> <wire from="(290,240)" to="(350,240)"/> <wire from="(320,180)" to="(320,220)"/> <wire from="(320,180)" to="(510,180)"/> <wire from="(320,220)" to="(340,220)"/> <wire from="(320,270)" to="(320,290)"/> <wire from="(320,270)" to="(340,270)"/> <wire from="(320,450)" to="(330,450)"/> <wire from="(330,390)" to="(340,390)"/> <wire from="(330,430)" to="(330,450)"/> <wire from="(330,430)" to="(350,430)"/> <wire from="(340,390)" to="(340,410)"/> <wire from="(340,410)" to="(350,410)"/> <wire from="(350,190)" to="(350,210)"/> <wire from="(350,240)" to="(350,260)"/> <wire from="(360,220)" to="(370,220)"/> <wire from="(360,270)" to="(370,270)"/> <wire from="(370,220)" to="(370,270)"/> <wire from="(370,270)" to="(370,300)"/> <wire from="(370,300)" to="(410,300)"/> <wire from="(380,130)" to="(380,170)"/> <wire from="(380,130)" to="(410,130)"/> <wire from="(380,170)" to="(470,170)"/> <wire from="(380,420)" to="(470,420)"/> <wire from="(400,110)" to="(410,110)"/> <wire from="(400,280)" to="(410,280)"/> <wire from="(400,40)" to="(400,110)"/> <wire from="(450,130)" to="(510,130)"/> <wire from="(450,280)" to="(540,280)"/> <wire from="(450,300)" to="(490,300)"/> <wire from="(470,170)" to="(470,420)"/> <wire from="(490,300)" to="(490,490)"/> <wire from="(490,300)" to="(600,300)"/> <wire from="(510,130)" to="(510,180)"/> <wire from="(510,130)" to="(560,130)"/> <wire from="(510,90)" to="(510,130)"/> <wire from="(510,90)" to="(590,90)"/> <wire from="(540,280)" to="(540,430)"/> <wire from="(540,430)" to="(670,430)"/> <wire from="(560,130)" to="(560,140)"/> <wire from="(560,140)" to="(560,400)"/> <wire from="(560,140)" to="(590,140)"/> <wire from="(560,400)" to="(670,400)"/> <wire from="(570,110)" to="(600,110)"/> <wire from="(570,70)" to="(570,110)"/> <wire from="(600,110)" to="(600,130)"/> <wire from="(600,270)" to="(600,300)"/> <wire from="(600,270)" to="(670,270)"/> <wire from="(600,50)" to="(600,80)"/> <wire from="(610,140)" to="(670,140)"/> <wire from="(610,230)" to="(610,510)"/> <wire from="(610,230)" to="(670,230)"/> <wire from="(610,90)" to="(670,90)"/> </circuit> <circuit name="PCH_EVEN_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="PCH_EVEN_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCH_Even_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="114">PCH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCH/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCH/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,120" x="50" y="80"/> <circ-port dir="in" pin="120,160" x="50" y="100"/> <circ-port dir="in" pin="120,190" x="50" y="110"/> <circ-port dir="in" pin="120,220" x="50" y="120"/> <circ-port dir="in" pin="120,250" x="50" y="130"/> <circ-port dir="in" pin="120,290" x="50" y="150"/> <circ-port dir="in" pin="120,40" x="50" y="60"/> <circ-port dir="out" pin="680,140" x="130" y="70"/> <circ-port dir="out" pin="680,230" x="130" y="120"/> <circ-port dir="out" pin="680,270" x="130" y="130"/> <circ-port dir="out" pin="680,400" x="90" y="160"/> <circ-port dir="out" pin="680,430" x="110" y="160"/> <circ-port dir="out" pin="680,90" x="130" y="90"/> </appear> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_PCH"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_PCH"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="0" loc="(120,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADHx_out"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(410,280)" name="Constant"/> <comp lib="0" loc="(680,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCHS_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,450)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,400)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,220)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(370,270)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(390,420)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(420,110)" name="DFF_Posedge"> <a name="label" val="PCH"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,280)" name="DFF_Level"> <a name="label" val="PCHS"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(250,120)"/> <wire from="(120,160)" to="(300,160)"/> <wire from="(120,190)" to="(360,190)"/> <wire from="(120,220)" to="(280,220)"/> <wire from="(120,250)" to="(290,250)"/> <wire from="(120,290)" to="(330,290)"/> <wire from="(120,40)" to="(410,40)"/> <wire from="(160,400)" to="(160,460)"/> <wire from="(160,400)" to="(240,400)"/> <wire from="(160,460)" to="(160,490)"/> <wire from="(160,460)" to="(170,460)"/> <wire from="(160,490)" to="(500,490)"/> <wire from="(190,310)" to="(190,440)"/> <wire from="(190,310)" to="(230,310)"/> <wire from="(190,440)" to="(210,440)"/> <wire from="(190,460)" to="(210,460)"/> <wire from="(230,310)" to="(230,380)"/> <wire from="(230,310)" to="(250,310)"/> <wire from="(230,380)" to="(300,380)"/> <wire from="(250,120)" to="(250,310)"/> <wire from="(250,450)" to="(260,450)"/> <wire from="(260,400)" to="(300,400)"/> <wire from="(260,450)" to="(260,510)"/> <wire from="(260,450)" to="(310,450)"/> <wire from="(260,510)" to="(620,510)"/> <wire from="(280,70)" to="(280,220)"/> <wire from="(280,70)" to="(580,70)"/> <wire from="(290,50)" to="(290,250)"/> <wire from="(290,50)" to="(610,50)"/> <wire from="(300,160)" to="(300,240)"/> <wire from="(300,240)" to="(360,240)"/> <wire from="(330,180)" to="(330,220)"/> <wire from="(330,180)" to="(520,180)"/> <wire from="(330,220)" to="(350,220)"/> <wire from="(330,270)" to="(330,290)"/> <wire from="(330,270)" to="(350,270)"/> <wire from="(330,450)" to="(340,450)"/> <wire from="(340,390)" to="(350,390)"/> <wire from="(340,430)" to="(340,450)"/> <wire from="(340,430)" to="(360,430)"/> <wire from="(350,390)" to="(350,410)"/> <wire from="(350,410)" to="(360,410)"/> <wire from="(360,190)" to="(360,210)"/> <wire from="(360,240)" to="(360,260)"/> <wire from="(370,220)" to="(380,220)"/> <wire from="(370,270)" to="(380,270)"/> <wire from="(380,220)" to="(380,270)"/> <wire from="(380,270)" to="(380,300)"/> <wire from="(380,300)" to="(420,300)"/> <wire from="(390,130)" to="(390,170)"/> <wire from="(390,130)" to="(420,130)"/> <wire from="(390,170)" to="(480,170)"/> <wire from="(390,420)" to="(480,420)"/> <wire from="(410,110)" to="(420,110)"/> <wire from="(410,280)" to="(420,280)"/> <wire from="(410,40)" to="(410,110)"/> <wire from="(460,130)" to="(520,130)"/> <wire from="(460,280)" to="(550,280)"/> <wire from="(460,300)" to="(500,300)"/> <wire from="(480,170)" to="(480,420)"/> <wire from="(500,300)" to="(500,490)"/> <wire from="(500,300)" to="(610,300)"/> <wire from="(520,130)" to="(520,180)"/> <wire from="(520,130)" to="(570,130)"/> <wire from="(520,90)" to="(520,130)"/> <wire from="(520,90)" to="(600,90)"/> <wire from="(550,280)" to="(550,430)"/> <wire from="(550,430)" to="(680,430)"/> <wire from="(570,130)" to="(570,140)"/> <wire from="(570,140)" to="(570,400)"/> <wire from="(570,140)" to="(600,140)"/> <wire from="(570,400)" to="(680,400)"/> <wire from="(580,110)" to="(610,110)"/> <wire from="(580,70)" to="(580,110)"/> <wire from="(610,110)" to="(610,130)"/> <wire from="(610,270)" to="(610,300)"/> <wire from="(610,270)" to="(680,270)"/> <wire from="(610,50)" to="(610,80)"/> <wire from="(620,140)" to="(680,140)"/> <wire from="(620,230)" to="(620,510)"/> <wire from="(620,230)" to="(680,230)"/> <wire from="(620,90)" to="(680,90)"/> </circuit> <circuit name="PCH_ODD_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="PCH_ODD_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="110" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="89" y="42">PCH_Odd_Bit</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="123">cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="104">ADH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="83">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="63">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="124">PCH/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="114">PCH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="73">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="153">ADHx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="134">PCH/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="113" y="93">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="134">sout</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,100" x="50" y="80"/> <circ-port dir="in" pin="120,170" x="50" y="100"/> <circ-port dir="in" pin="120,200" x="50" y="110"/> <circ-port dir="in" pin="120,230" x="50" y="120"/> <circ-port dir="in" pin="120,260" x="50" y="130"/> <circ-port dir="in" pin="120,300" x="50" y="150"/> <circ-port dir="in" pin="120,50" x="50" y="60"/> <circ-port dir="out" pin="630,100" x="130" y="90"/> <circ-port dir="out" pin="630,150" x="130" y="70"/> <circ-port dir="out" pin="630,240" x="130" y="120"/> <circ-port dir="out" pin="630,280" x="130" y="130"/> <circ-port dir="out" pin="630,410" x="90" y="160"/> <circ-port dir="out" pin="630,440" x="110" y="160"/> </appear> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_PCH"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_PCH"/> </comp> <comp lib="0" loc="(120,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADHx_in"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(370,290)" name="Constant"/> <comp lib="0" loc="(630,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DBx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADHx_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCHS_Debug"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,400)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,430)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(580,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(380,120)" name="DFF_Posedge"> <a name="label" val="PCH"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,290)" name="DFF_Level"> <a name="label" val="PCHS"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,100)" to="(210,100)"/> <wire from="(120,170)" to="(280,170)"/> <wire from="(120,200)" to="(320,200)"/> <wire from="(120,230)" to="(240,230)"/> <wire from="(120,260)" to="(250,260)"/> <wire from="(120,300)" to="(290,300)"/> <wire from="(120,50)" to="(370,50)"/> <wire from="(150,320)" to="(150,450)"/> <wire from="(150,320)" to="(190,320)"/> <wire from="(150,450)" to="(170,450)"/> <wire from="(150,470)" to="(150,500)"/> <wire from="(150,470)" to="(170,470)"/> <wire from="(150,500)" to="(240,500)"/> <wire from="(190,320)" to="(190,390)"/> <wire from="(190,320)" to="(210,320)"/> <wire from="(190,390)" to="(260,390)"/> <wire from="(210,100)" to="(210,320)"/> <wire from="(210,460)" to="(220,460)"/> <wire from="(220,460)" to="(220,520)"/> <wire from="(220,460)" to="(270,460)"/> <wire from="(220,520)" to="(580,520)"/> <wire from="(240,410)" to="(240,500)"/> <wire from="(240,410)" to="(260,410)"/> <wire from="(240,500)" to="(460,500)"/> <wire from="(240,80)" to="(240,230)"/> <wire from="(240,80)" to="(540,80)"/> <wire from="(250,60)" to="(250,260)"/> <wire from="(250,60)" to="(570,60)"/> <wire from="(280,170)" to="(280,250)"/> <wire from="(280,250)" to="(320,250)"/> <wire from="(290,210)" to="(290,230)"/> <wire from="(290,210)" to="(480,210)"/> <wire from="(290,230)" to="(310,230)"/> <wire from="(290,280)" to="(290,300)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(290,460)" to="(300,460)"/> <wire from="(300,400)" to="(310,400)"/> <wire from="(300,440)" to="(300,460)"/> <wire from="(300,440)" to="(320,440)"/> <wire from="(310,400)" to="(310,420)"/> <wire from="(310,420)" to="(320,420)"/> <wire from="(320,200)" to="(320,220)"/> <wire from="(320,250)" to="(320,270)"/> <wire from="(330,230)" to="(340,230)"/> <wire from="(330,280)" to="(340,280)"/> <wire from="(340,230)" to="(340,280)"/> <wire from="(340,280)" to="(340,310)"/> <wire from="(340,310)" to="(380,310)"/> <wire from="(350,140)" to="(350,180)"/> <wire from="(350,140)" to="(380,140)"/> <wire from="(350,180)" to="(440,180)"/> <wire from="(350,430)" to="(440,430)"/> <wire from="(370,120)" to="(380,120)"/> <wire from="(370,290)" to="(380,290)"/> <wire from="(370,50)" to="(370,120)"/> <wire from="(420,140)" to="(440,140)"/> <wire from="(420,290)" to="(510,290)"/> <wire from="(420,310)" to="(460,310)"/> <wire from="(440,180)" to="(440,430)"/> <wire from="(460,140)" to="(480,140)"/> <wire from="(460,310)" to="(460,500)"/> <wire from="(460,310)" to="(570,310)"/> <wire from="(480,100)" to="(480,140)"/> <wire from="(480,100)" to="(560,100)"/> <wire from="(480,140)" to="(480,210)"/> <wire from="(480,140)" to="(530,140)"/> <wire from="(510,290)" to="(510,440)"/> <wire from="(510,440)" to="(630,440)"/> <wire from="(530,140)" to="(530,150)"/> <wire from="(530,150)" to="(530,410)"/> <wire from="(530,150)" to="(560,150)"/> <wire from="(530,410)" to="(630,410)"/> <wire from="(540,120)" to="(570,120)"/> <wire from="(540,80)" to="(540,120)"/> <wire from="(570,120)" to="(570,140)"/> <wire from="(570,280)" to="(570,310)"/> <wire from="(570,280)" to="(630,280)"/> <wire from="(570,60)" to="(570,90)"/> <wire from="(580,100)" to="(630,100)"/> <wire from="(580,150)" to="(630,150)"/> <wire from="(580,240)" to="(580,520)"/> <wire from="(580,240)" to="(630,240)"/> </circuit> <circuit name="PCL"> <a name="appearance" val="custom"/> <a name="circuit" val="PCL"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="245" stroke="#000000" stroke-width="2" width="120" x="40" y="35"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="28">PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="53">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="57" y="73">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="93">ADL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="104">PCL/PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">PCL/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="124">PCL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="200">ADL In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="86">ADL Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="136" y="176">DB Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="140" y="243">PCLC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="269">PCL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="121" y="269">PCLS</text> <circ-anchor facing="east" x="40" y="50"/> <circ-port dir="in" pin="100,110" x="40" y="70"/> <circ-port dir="in" pin="100,180" x="40" y="90"/> <circ-port dir="in" pin="100,210" x="40" y="100"/> <circ-port dir="in" pin="100,240" x="40" y="110"/> <circ-port dir="in" pin="100,270" x="40" y="120"/> <circ-port dir="in" pin="100,30" x="40" y="50"/> <circ-port dir="in" pin="100,580" x="40" y="160"/> <circ-port dir="in" pin="100,610" x="40" y="170"/> <circ-port dir="in" pin="100,640" x="40" y="180"/> <circ-port dir="in" pin="100,670" x="40" y="190"/> <circ-port dir="in" pin="100,700" x="40" y="200"/> <circ-port dir="in" pin="100,730" x="40" y="210"/> <circ-port dir="in" pin="100,760" x="40" y="220"/> <circ-port dir="in" pin="100,790" x="40" y="230"/> <circ-port dir="out" pin="750,300" x="160" y="50"/> <circ-port dir="out" pin="750,330" x="160" y="60"/> <circ-port dir="out" pin="750,360" x="160" y="70"/> <circ-port dir="out" pin="750,390" x="160" y="80"/> <circ-port dir="out" pin="750,420" x="160" y="90"/> <circ-port dir="out" pin="750,450" x="160" y="100"/> <circ-port dir="out" pin="750,480" x="160" y="110"/> <circ-port dir="out" pin="750,510" x="160" y="120"/> <circ-port dir="out" pin="750,670" x="160" y="140"/> <circ-port dir="out" pin="750,700" x="160" y="150"/> <circ-port dir="out" pin="750,730" x="160" y="160"/> <circ-port dir="out" pin="750,760" x="160" y="170"/> <circ-port dir="out" pin="750,790" x="160" y="180"/> <circ-port dir="out" pin="750,820" x="160" y="190"/> <circ-port dir="out" pin="750,850" x="160" y="200"/> <circ-port dir="out" pin="750,880" x="160" y="210"/> <circ-port dir="out" pin="780,130" x="120" y="280"/> <circ-port dir="out" pin="780,70" x="80" y="280"/> <circ-port dir="out" pin="910,1220" x="160" y="240"/> </appear> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_PCL"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_PCL"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_ADL"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(100,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(100,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(100,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(100,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(100,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(100,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(100,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(110,180)" name="Tunnel"> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,210)" name="Tunnel"> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,240)" name="Tunnel"> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,270)" name="Tunnel"> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(210,1150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(210,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_ADL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(250,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,1330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(280,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCL_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(290,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADL_PCL"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(500,1410)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,1450)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(750,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,820)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(750,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCLS_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(780,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCL_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(910,1220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCLC"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(880,1220)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp loc="(310,1090)" name="PCL_EVEN_BIT"> <a name="label" val="pcl6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,1260)" name="PCL_ODD_BIT"> <a name="label" val="pcl7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,240)" name="PCL_ODD_BIT"> <a name="label" val="pcl1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,410)" name="PCL_EVEN_BIT"> <a name="label" val="pcl2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,580)" name="PCL_ODD_BIT"> <a name="label" val="pcl3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,70)" name="PCL_EVEN_BIT"> <a name="label" val="pcl0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,750)" name="PCL_EVEN_BIT"> <a name="label" val="pcl4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(310,920)" name="PCL_ODD_BIT"> <a name="label" val="pcl5"/> <a name="labelloc" val="east"/> </comp> <wire from="(100,110)" to="(160,110)"/> <wire from="(100,180)" to="(110,180)"/> <wire from="(100,210)" to="(110,210)"/> <wire from="(100,240)" to="(110,240)"/> <wire from="(100,270)" to="(110,270)"/> <wire from="(100,30)" to="(300,30)"/> <wire from="(100,580)" to="(170,580)"/> <wire from="(100,610)" to="(180,610)"/> <wire from="(100,640)" to="(120,640)"/> <wire from="(100,670)" to="(310,670)"/> <wire from="(100,700)" to="(150,700)"/> <wire from="(100,730)" to="(140,730)"/> <wire from="(100,760)" to="(130,760)"/> <wire from="(100,790)" to="(120,790)"/> <wire from="(120,1350)" to="(310,1350)"/> <wire from="(120,620)" to="(120,640)"/> <wire from="(120,620)" to="(190,620)"/> <wire from="(120,790)" to="(120,1350)"/> <wire from="(130,1180)" to="(310,1180)"/> <wire from="(130,760)" to="(130,1180)"/> <wire from="(140,1010)" to="(310,1010)"/> <wire from="(140,730)" to="(140,1010)"/> <wire from="(150,700)" to="(150,840)"/> <wire from="(150,840)" to="(310,840)"/> <wire from="(160,90)" to="(160,110)"/> <wire from="(160,90)" to="(210,90)"/> <wire from="(170,160)" to="(170,580)"/> <wire from="(170,160)" to="(310,160)"/> <wire from="(180,330)" to="(180,610)"/> <wire from="(180,330)" to="(310,330)"/> <wire from="(190,500)" to="(190,620)"/> <wire from="(190,500)" to="(310,500)"/> <wire from="(210,1150)" to="(310,1150)"/> <wire from="(210,130)" to="(310,130)"/> <wire from="(210,1320)" to="(310,1320)"/> <wire from="(210,20)" to="(210,90)"/> <wire from="(210,20)" to="(730,20)"/> <wire from="(210,300)" to="(310,300)"/> <wire from="(210,470)" to="(310,470)"/> <wire from="(210,640)" to="(310,640)"/> <wire from="(210,810)" to="(310,810)"/> <wire from="(210,90)" to="(310,90)"/> <wire from="(210,980)" to="(310,980)"/> <wire from="(250,1140)" to="(310,1140)"/> <wire from="(250,120)" to="(310,120)"/> <wire from="(250,1310)" to="(310,1310)"/> <wire from="(250,290)" to="(310,290)"/> <wire from="(250,460)" to="(310,460)"/> <wire from="(250,630)" to="(310,630)"/> <wire from="(250,800)" to="(310,800)"/> <wire from="(250,970)" to="(310,970)"/> <wire from="(280,1160)" to="(310,1160)"/> <wire from="(280,1330)" to="(310,1330)"/> <wire from="(280,140)" to="(310,140)"/> <wire from="(280,310)" to="(310,310)"/> <wire from="(280,480)" to="(310,480)"/> <wire from="(280,650)" to="(310,650)"/> <wire from="(280,820)" to="(310,820)"/> <wire from="(280,990)" to="(310,990)"/> <wire from="(290,1060)" to="(290,1110)"/> <wire from="(290,1060)" to="(400,1060)"/> <wire from="(290,110)" to="(310,110)"/> <wire from="(290,1110)" to="(310,1110)"/> <wire from="(290,1130)" to="(310,1130)"/> <wire from="(290,1230)" to="(290,1280)"/> <wire from="(290,1230)" to="(400,1230)"/> <wire from="(290,1280)" to="(310,1280)"/> <wire from="(290,1300)" to="(310,1300)"/> <wire from="(290,210)" to="(290,260)"/> <wire from="(290,210)" to="(400,210)"/> <wire from="(290,260)" to="(310,260)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(290,380)" to="(290,430)"/> <wire from="(290,380)" to="(400,380)"/> <wire from="(290,430)" to="(310,430)"/> <wire from="(290,450)" to="(310,450)"/> <wire from="(290,550)" to="(290,600)"/> <wire from="(290,550)" to="(400,550)"/> <wire from="(290,600)" to="(310,600)"/> <wire from="(290,620)" to="(310,620)"/> <wire from="(290,720)" to="(290,770)"/> <wire from="(290,720)" to="(400,720)"/> <wire from="(290,770)" to="(310,770)"/> <wire from="(290,790)" to="(310,790)"/> <wire from="(290,890)" to="(290,940)"/> <wire from="(290,890)" to="(400,890)"/> <wire from="(290,940)" to="(310,940)"/> <wire from="(290,960)" to="(310,960)"/> <wire from="(300,1090)" to="(300,1260)"/> <wire from="(300,1090)" to="(310,1090)"/> <wire from="(300,1260)" to="(310,1260)"/> <wire from="(300,240)" to="(300,410)"/> <wire from="(300,240)" to="(310,240)"/> <wire from="(300,30)" to="(300,70)"/> <wire from="(300,410)" to="(300,580)"/> <wire from="(300,410)" to="(310,410)"/> <wire from="(300,580)" to="(300,750)"/> <wire from="(300,580)" to="(310,580)"/> <wire from="(300,70)" to="(300,240)"/> <wire from="(300,70)" to="(310,70)"/> <wire from="(300,750)" to="(300,920)"/> <wire from="(300,750)" to="(310,750)"/> <wire from="(300,920)" to="(300,1090)"/> <wire from="(300,920)" to="(310,920)"/> <wire from="(350,1020)" to="(350,1040)"/> <wire from="(350,1040)" to="(470,1040)"/> <wire from="(350,1190)" to="(350,1210)"/> <wire from="(350,1210)" to="(480,1210)"/> <wire from="(350,1360)" to="(350,1380)"/> <wire from="(350,1380)" to="(490,1380)"/> <wire from="(350,170)" to="(350,190)"/> <wire from="(350,190)" to="(420,190)"/> <wire from="(350,340)" to="(350,370)"/> <wire from="(350,370)" to="(430,370)"/> <wire from="(350,510)" to="(350,530)"/> <wire from="(350,530)" to="(440,530)"/> <wire from="(350,680)" to="(350,700)"/> <wire from="(350,700)" to="(450,700)"/> <wire from="(350,850)" to="(350,870)"/> <wire from="(350,870)" to="(460,870)"/> <wire from="(370,1020)" to="(370,1030)"/> <wire from="(370,1030)" to="(570,1030)"/> <wire from="(370,1190)" to="(370,1200)"/> <wire from="(370,1200)" to="(580,1200)"/> <wire from="(370,1360)" to="(370,1370)"/> <wire from="(370,1370)" to="(590,1370)"/> <wire from="(370,170)" to="(370,180)"/> <wire from="(370,180)" to="(520,180)"/> <wire from="(370,340)" to="(370,350)"/> <wire from="(370,350)" to="(530,350)"/> <wire from="(370,510)" to="(370,520)"/> <wire from="(370,520)" to="(540,520)"/> <wire from="(370,680)" to="(370,690)"/> <wire from="(370,690)" to="(550,690)"/> <wire from="(370,850)" to="(370,860)"/> <wire from="(370,860)" to="(560,860)"/> <wire from="(390,100)" to="(690,100)"/> <wire from="(390,1100)" to="(640,1100)"/> <wire from="(390,1120)" to="(690,1120)"/> <wire from="(390,1150)" to="(400,1150)"/> <wire from="(390,1160)" to="(610,1160)"/> <wire from="(390,1270)" to="(650,1270)"/> <wire from="(390,1290)" to="(700,1290)"/> <wire from="(390,130)" to="(400,130)"/> <wire from="(390,1330)" to="(710,1330)"/> <wire from="(390,140)" to="(590,140)"/> <wire from="(390,250)" to="(700,250)"/> <wire from="(390,270)" to="(680,270)"/> <wire from="(390,300)" to="(400,300)"/> <wire from="(390,310)" to="(580,310)"/> <wire from="(390,420)" to="(600,420)"/> <wire from="(390,440)" to="(670,440)"/> <wire from="(390,470)" to="(400,470)"/> <wire from="(390,480)" to="(510,480)"/> <wire from="(390,590)" to="(610,590)"/> <wire from="(390,610)" to="(660,610)"/> <wire from="(390,640)" to="(400,640)"/> <wire from="(390,650)" to="(500,650)"/> <wire from="(390,760)" to="(620,760)"/> <wire from="(390,780)" to="(660,780)"/> <wire from="(390,80)" to="(710,80)"/> <wire from="(390,810)" to="(400,810)"/> <wire from="(390,820)" to="(490,820)"/> <wire from="(390,930)" to="(630,930)"/> <wire from="(390,950)" to="(680,950)"/> <wire from="(390,980)" to="(400,980)"/> <wire from="(390,990)" to="(600,990)"/> <wire from="(400,1150)" to="(400,1230)"/> <wire from="(400,130)" to="(400,210)"/> <wire from="(400,300)" to="(400,380)"/> <wire from="(400,470)" to="(400,550)"/> <wire from="(400,640)" to="(400,720)"/> <wire from="(400,810)" to="(400,890)"/> <wire from="(400,980)" to="(400,1060)"/> <wire from="(420,190)" to="(420,1390)"/> <wire from="(430,370)" to="(430,1390)"/> <wire from="(440,530)" to="(440,1390)"/> <wire from="(450,700)" to="(450,1390)"/> <wire from="(460,870)" to="(460,1390)"/> <wire from="(470,1040)" to="(470,1390)"/> <wire from="(480,1210)" to="(480,1390)"/> <wire from="(490,1230)" to="(800,1230)"/> <wire from="(490,1380)" to="(490,1390)"/> <wire from="(490,820)" to="(490,1230)"/> <wire from="(500,1220)" to="(720,1220)"/> <wire from="(500,1410)" to="(980,1410)"/> <wire from="(500,650)" to="(500,1220)"/> <wire from="(510,1210)" to="(710,1210)"/> <wire from="(510,480)" to="(510,1210)"/> <wire from="(520,180)" to="(520,1430)"/> <wire from="(530,350)" to="(530,1430)"/> <wire from="(540,520)" to="(540,1430)"/> <wire from="(550,690)" to="(550,1430)"/> <wire from="(560,860)" to="(560,1430)"/> <wire from="(570,1030)" to="(570,1430)"/> <wire from="(580,1190)" to="(800,1190)"/> <wire from="(580,1200)" to="(580,1430)"/> <wire from="(580,310)" to="(580,1190)"/> <wire from="(590,1180)" to="(800,1180)"/> <wire from="(590,1370)" to="(590,1430)"/> <wire from="(590,140)" to="(590,1180)"/> <wire from="(600,1240)" to="(800,1240)"/> <wire from="(600,1450)" to="(990,1450)"/> <wire from="(600,360)" to="(600,420)"/> <wire from="(600,360)" to="(750,360)"/> <wire from="(600,990)" to="(600,1240)"/> <wire from="(610,1160)" to="(610,1250)"/> <wire from="(610,1250)" to="(800,1250)"/> <wire from="(610,390)" to="(610,590)"/> <wire from="(610,390)" to="(750,390)"/> <wire from="(620,420)" to="(620,760)"/> <wire from="(620,420)" to="(750,420)"/> <wire from="(630,450)" to="(630,930)"/> <wire from="(630,450)" to="(750,450)"/> <wire from="(640,480)" to="(640,1100)"/> <wire from="(640,480)" to="(750,480)"/> <wire from="(650,510)" to="(650,1270)"/> <wire from="(650,510)" to="(750,510)"/> <wire from="(660,610)" to="(660,760)"/> <wire from="(660,760)" to="(750,760)"/> <wire from="(660,780)" to="(660,790)"/> <wire from="(660,790)" to="(750,790)"/> <wire from="(670,440)" to="(670,730)"/> <wire from="(670,730)" to="(750,730)"/> <wire from="(680,270)" to="(680,700)"/> <wire from="(680,700)" to="(750,700)"/> <wire from="(680,820)" to="(680,950)"/> <wire from="(680,820)" to="(750,820)"/> <wire from="(690,100)" to="(690,670)"/> <wire from="(690,670)" to="(750,670)"/> <wire from="(690,850)" to="(690,1120)"/> <wire from="(690,850)" to="(750,850)"/> <wire from="(700,250)" to="(700,330)"/> <wire from="(700,330)" to="(750,330)"/> <wire from="(700,880)" to="(700,1290)"/> <wire from="(700,880)" to="(750,880)"/> <wire from="(710,1200)" to="(710,1210)"/> <wire from="(710,1200)" to="(800,1200)"/> <wire from="(710,1260)" to="(710,1330)"/> <wire from="(710,1260)" to="(800,1260)"/> <wire from="(710,300)" to="(750,300)"/> <wire from="(710,80)" to="(710,300)"/> <wire from="(720,1210)" to="(720,1220)"/> <wire from="(720,1210)" to="(800,1210)"/> <wire from="(730,20)" to="(730,260)"/> <wire from="(730,260)" to="(840,260)"/> <wire from="(740,1000)" to="(740,1220)"/> <wire from="(740,1000)" to="(840,1000)"/> <wire from="(740,1220)" to="(800,1220)"/> <wire from="(750,190)" to="(980,190)"/> <wire from="(750,70)" to="(750,190)"/> <wire from="(750,70)" to="(780,70)"/> <wire from="(760,130)" to="(760,170)"/> <wire from="(760,130)" to="(780,130)"/> <wire from="(760,170)" to="(990,170)"/> <wire from="(840,260)" to="(840,1000)"/> <wire from="(880,1220)" to="(910,1220)"/> <wire from="(980,190)" to="(980,1410)"/> <wire from="(990,170)" to="(990,1450)"/> </circuit> <circuit name="PCH"> <a name="appearance" val="custom"/> <a name="circuit" val="PCH"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="245" stroke="#000000" stroke-width="2" width="120" x="40" y="35"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="102" y="28">PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="136" y="176">DB Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="200">ADH In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="134" y="86">ADH Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="104">PCH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="66" y="124">PCH/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="61" y="53">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="57" y="73">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="93">ADH/PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="114">PCH/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="81" y="269">PCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="121" y="269">PCHS</text> <circ-anchor facing="east" x="40" y="50"/> <circ-port dir="in" pin="100,110" x="40" y="70"/> <circ-port dir="in" pin="100,180" x="40" y="90"/> <circ-port dir="in" pin="100,210" x="40" y="100"/> <circ-port dir="in" pin="100,240" x="40" y="110"/> <circ-port dir="in" pin="100,270" x="40" y="120"/> <circ-port dir="in" pin="100,30" x="40" y="50"/> <circ-port dir="in" pin="100,390" x="40" y="160"/> <circ-port dir="in" pin="100,420" x="40" y="170"/> <circ-port dir="in" pin="100,450" x="40" y="180"/> <circ-port dir="in" pin="100,480" x="40" y="190"/> <circ-port dir="in" pin="100,510" x="40" y="200"/> <circ-port dir="in" pin="100,540" x="40" y="210"/> <circ-port dir="in" pin="100,570" x="40" y="220"/> <circ-port dir="in" pin="100,600" x="40" y="230"/> <circ-port dir="out" pin="720,1430" x="80" y="280"/> <circ-port dir="out" pin="890,1430" x="120" y="280"/> <circ-port dir="out" pin="950,260" x="160" y="50"/> <circ-port dir="out" pin="950,290" x="160" y="60"/> <circ-port dir="out" pin="950,320" x="160" y="70"/> <circ-port dir="out" pin="950,350" x="160" y="80"/> <circ-port dir="out" pin="950,380" x="160" y="90"/> <circ-port dir="out" pin="950,410" x="160" y="100"/> <circ-port dir="out" pin="950,440" x="160" y="110"/> <circ-port dir="out" pin="950,470" x="160" y="120"/> <circ-port dir="out" pin="950,570" x="160" y="140"/> <circ-port dir="out" pin="950,600" x="160" y="150"/> <circ-port dir="out" pin="950,630" x="160" y="160"/> <circ-port dir="out" pin="950,660" x="160" y="170"/> <circ-port dir="out" pin="950,690" x="160" y="180"/> <circ-port dir="out" pin="950,720" x="160" y="190"/> <circ-port dir="out" pin="950,750" x="160" y="200"/> <circ-port dir="out" pin="950,780" x="160" y="210"/> </appear> <comp lib="0" loc="(100,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_PCH"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_PCH"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="0" loc="(100,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(100,30)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(100,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH0"/> </comp> <comp lib="0" loc="(100,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH1"/> </comp> <comp lib="0" loc="(100,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH2"/> </comp> <comp lib="0" loc="(100,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH3"/> </comp> <comp lib="0" loc="(100,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH4"/> </comp> <comp lib="0" loc="(100,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH5"/> </comp> <comp lib="0" loc="(100,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH6"/> </comp> <comp lib="0" loc="(100,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH7"/> </comp> <comp lib="0" loc="(110,180)" name="Tunnel"> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,210)" name="Tunnel"> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,240)" name="Tunnel"> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(110,270)" name="Tunnel"> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 10"/> </comp> <comp lib="0" loc="(230,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,1290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(230,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_ADH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,1120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,1280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(270,960)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,1140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,1300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,820)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(300,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCH_DB"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,1110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,1270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(310,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ADH_PCH"/> <a name="labelfont" val="SansSerif plain 8"/> </comp> <comp lib="0" loc="(690,1390)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(720,1430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCH_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(800,1390)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(890,1430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PCHS_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(950,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_out7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,570)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,630)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,660)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,690)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,720)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,750)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(950,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,640)" name="NOR Gate"/> <comp lib="6" loc="(590,630)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="PCHC"/> </comp> <comp loc="(330,1070)" name="PCH_EVEN_BIT"> <a name="label" val="pch6"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,110)" name="PCH_EVEN_BIT"> <a name="label" val="pch0"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,1230)" name="PCH_ODD_BIT"> <a name="label" val="pch7"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,270)" name="PCH_ODD_BIT"> <a name="label" val="pch1"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,430)" name="PCH_EVEN_BIT"> <a name="label" val="pch2"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,590)" name="PCH_ODD_BIT"> <a name="label" val="pch3"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,750)" name="PCH_EVEN_BIT"> <a name="label" val="pch4"/> <a name="labelloc" val="east"/> </comp> <comp loc="(330,910)" name="PCH_ODD_BIT"> <a name="label" val="pch5"/> <a name="labelloc" val="east"/> </comp> <wire from="(100,110)" to="(120,110)"/> <wire from="(100,180)" to="(110,180)"/> <wire from="(100,210)" to="(110,210)"/> <wire from="(100,240)" to="(110,240)"/> <wire from="(100,270)" to="(110,270)"/> <wire from="(100,30)" to="(320,30)"/> <wire from="(100,390)" to="(110,390)"/> <wire from="(100,420)" to="(130,420)"/> <wire from="(100,450)" to="(170,450)"/> <wire from="(100,480)" to="(160,480)"/> <wire from="(100,510)" to="(150,510)"/> <wire from="(100,540)" to="(140,540)"/> <wire from="(100,570)" to="(130,570)"/> <wire from="(100,600)" to="(120,600)"/> <wire from="(110,290)" to="(110,390)"/> <wire from="(110,290)" to="(210,290)"/> <wire from="(120,110)" to="(120,130)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,130)" to="(330,130)"/> <wire from="(120,1320)" to="(330,1320)"/> <wire from="(120,600)" to="(120,1320)"/> <wire from="(130,1160)" to="(330,1160)"/> <wire from="(130,360)" to="(130,420)"/> <wire from="(130,360)" to="(330,360)"/> <wire from="(130,570)" to="(130,1160)"/> <wire from="(140,1000)" to="(330,1000)"/> <wire from="(140,540)" to="(140,1000)"/> <wire from="(150,510)" to="(150,840)"/> <wire from="(150,840)" to="(330,840)"/> <wire from="(160,110)" to="(180,110)"/> <wire from="(160,480)" to="(160,680)"/> <wire from="(160,680)" to="(330,680)"/> <wire from="(170,450)" to="(170,520)"/> <wire from="(170,520)" to="(330,520)"/> <wire from="(180,40)" to="(180,110)"/> <wire from="(180,40)" to="(520,40)"/> <wire from="(210,200)" to="(210,290)"/> <wire from="(210,200)" to="(330,200)"/> <wire from="(230,1130)" to="(330,1130)"/> <wire from="(230,1290)" to="(330,1290)"/> <wire from="(230,170)" to="(330,170)"/> <wire from="(230,330)" to="(330,330)"/> <wire from="(230,490)" to="(330,490)"/> <wire from="(230,650)" to="(330,650)"/> <wire from="(230,810)" to="(330,810)"/> <wire from="(230,970)" to="(330,970)"/> <wire from="(270,1120)" to="(330,1120)"/> <wire from="(270,1280)" to="(330,1280)"/> <wire from="(270,160)" to="(330,160)"/> <wire from="(270,320)" to="(330,320)"/> <wire from="(270,480)" to="(330,480)"/> <wire from="(270,640)" to="(330,640)"/> <wire from="(270,800)" to="(330,800)"/> <wire from="(270,960)" to="(330,960)"/> <wire from="(300,1140)" to="(330,1140)"/> <wire from="(300,1300)" to="(330,1300)"/> <wire from="(300,180)" to="(330,180)"/> <wire from="(300,340)" to="(330,340)"/> <wire from="(300,500)" to="(330,500)"/> <wire from="(300,660)" to="(330,660)"/> <wire from="(300,820)" to="(330,820)"/> <wire from="(300,980)" to="(330,980)"/> <wire from="(310,1040)" to="(310,1090)"/> <wire from="(310,1040)" to="(420,1040)"/> <wire from="(310,1090)" to="(330,1090)"/> <wire from="(310,1110)" to="(330,1110)"/> <wire from="(310,1200)" to="(310,1250)"/> <wire from="(310,1200)" to="(420,1200)"/> <wire from="(310,1250)" to="(330,1250)"/> <wire from="(310,1270)" to="(330,1270)"/> <wire from="(310,150)" to="(330,150)"/> <wire from="(310,240)" to="(310,290)"/> <wire from="(310,240)" to="(420,240)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(310,310)" to="(330,310)"/> <wire from="(310,400)" to="(310,450)"/> <wire from="(310,400)" to="(420,400)"/> <wire from="(310,450)" to="(330,450)"/> <wire from="(310,470)" to="(330,470)"/> <wire from="(310,560)" to="(310,610)"/> <wire from="(310,560)" to="(420,560)"/> <wire from="(310,610)" to="(330,610)"/> <wire from="(310,630)" to="(330,630)"/> <wire from="(310,720)" to="(310,770)"/> <wire from="(310,720)" to="(600,720)"/> <wire from="(310,770)" to="(330,770)"/> <wire from="(310,790)" to="(330,790)"/> <wire from="(310,880)" to="(310,930)"/> <wire from="(310,880)" to="(420,880)"/> <wire from="(310,930)" to="(330,930)"/> <wire from="(310,950)" to="(330,950)"/> <wire from="(320,1070)" to="(320,1230)"/> <wire from="(320,1070)" to="(330,1070)"/> <wire from="(320,110)" to="(320,270)"/> <wire from="(320,110)" to="(330,110)"/> <wire from="(320,1230)" to="(330,1230)"/> <wire from="(320,270)" to="(320,430)"/> <wire from="(320,270)" to="(330,270)"/> <wire from="(320,30)" to="(320,110)"/> <wire from="(320,430)" to="(320,590)"/> <wire from="(320,430)" to="(330,430)"/> <wire from="(320,590)" to="(320,750)"/> <wire from="(320,590)" to="(330,590)"/> <wire from="(320,750)" to="(320,910)"/> <wire from="(320,750)" to="(330,750)"/> <wire from="(320,910)" to="(320,1070)"/> <wire from="(320,910)" to="(330,910)"/> <wire from="(370,1010)" to="(370,1030)"/> <wire from="(370,1030)" to="(660,1030)"/> <wire from="(370,1170)" to="(370,1190)"/> <wire from="(370,1190)" to="(670,1190)"/> <wire from="(370,1330)" to="(370,1350)"/> <wire from="(370,1350)" to="(680,1350)"/> <wire from="(370,210)" to="(370,230)"/> <wire from="(370,230)" to="(610,230)"/> <wire from="(370,370)" to="(370,390)"/> <wire from="(370,390)" to="(620,390)"/> <wire from="(370,530)" to="(370,550)"/> <wire from="(370,550)" to="(630,550)"/> <wire from="(370,690)" to="(370,710)"/> <wire from="(370,710)" to="(640,710)"/> <wire from="(370,850)" to="(370,870)"/> <wire from="(370,870)" to="(650,870)"/> <wire from="(390,1010)" to="(390,1020)"/> <wire from="(390,1020)" to="(770,1020)"/> <wire from="(390,1170)" to="(390,1180)"/> <wire from="(390,1180)" to="(780,1180)"/> <wire from="(390,1330)" to="(390,1340)"/> <wire from="(390,1340)" to="(790,1340)"/> <wire from="(390,210)" to="(390,220)"/> <wire from="(390,220)" to="(720,220)"/> <wire from="(390,370)" to="(390,380)"/> <wire from="(390,380)" to="(730,380)"/> <wire from="(390,530)" to="(390,540)"/> <wire from="(390,540)" to="(740,540)"/> <wire from="(390,690)" to="(390,700)"/> <wire from="(390,700)" to="(750,700)"/> <wire from="(390,850)" to="(390,860)"/> <wire from="(390,860)" to="(760,860)"/> <wire from="(410,1080)" to="(820,1080)"/> <wire from="(410,1100)" to="(900,1100)"/> <wire from="(410,1130)" to="(420,1130)"/> <wire from="(410,120)" to="(920,120)"/> <wire from="(410,1240)" to="(830,1240)"/> <wire from="(410,1260)" to="(910,1260)"/> <wire from="(410,140)" to="(910,140)"/> <wire from="(410,170)" to="(420,170)"/> <wire from="(410,180)" to="(510,180)"/> <wire from="(410,280)" to="(930,280)"/> <wire from="(410,300)" to="(900,300)"/> <wire from="(410,330)" to="(420,330)"/> <wire from="(410,340)" to="(500,340)"/> <wire from="(410,440)" to="(780,440)"/> <wire from="(410,460)" to="(890,460)"/> <wire from="(410,490)" to="(420,490)"/> <wire from="(410,500)" to="(490,500)"/> <wire from="(410,600)" to="(790,600)"/> <wire from="(410,620)" to="(440,620)"/> <wire from="(410,660)" to="(530,660)"/> <wire from="(410,760)" to="(800,760)"/> <wire from="(410,780)" to="(880,780)"/> <wire from="(410,810)" to="(420,810)"/> <wire from="(410,920)" to="(810,920)"/> <wire from="(410,940)" to="(890,940)"/> <wire from="(410,970)" to="(420,970)"/> <wire from="(420,1130)" to="(420,1200)"/> <wire from="(420,170)" to="(420,240)"/> <wire from="(420,330)" to="(420,400)"/> <wire from="(420,490)" to="(420,560)"/> <wire from="(420,810)" to="(420,880)"/> <wire from="(420,970)" to="(420,1040)"/> <wire from="(440,570)" to="(440,620)"/> <wire from="(440,570)" to="(880,570)"/> <wire from="(490,500)" to="(490,650)"/> <wire from="(490,650)" to="(530,650)"/> <wire from="(500,340)" to="(500,640)"/> <wire from="(500,640)" to="(530,640)"/> <wire from="(510,180)" to="(510,630)"/> <wire from="(510,630)" to="(530,630)"/> <wire from="(520,40)" to="(520,620)"/> <wire from="(520,620)" to="(530,620)"/> <wire from="(590,640)" to="(600,640)"/> <wire from="(600,640)" to="(600,720)"/> <wire from="(610,230)" to="(610,1370)"/> <wire from="(620,390)" to="(620,1370)"/> <wire from="(630,550)" to="(630,1370)"/> <wire from="(640,710)" to="(640,1370)"/> <wire from="(650,870)" to="(650,1370)"/> <wire from="(660,1030)" to="(660,1370)"/> <wire from="(670,1190)" to="(670,1370)"/> <wire from="(680,1350)" to="(680,1370)"/> <wire from="(690,1390)" to="(710,1390)"/> <wire from="(710,1390)" to="(710,1430)"/> <wire from="(710,1430)" to="(720,1430)"/> <wire from="(720,220)" to="(720,1370)"/> <wire from="(730,380)" to="(730,1370)"/> <wire from="(740,540)" to="(740,1370)"/> <wire from="(750,700)" to="(750,1370)"/> <wire from="(760,860)" to="(760,1370)"/> <wire from="(770,1020)" to="(770,1370)"/> <wire from="(780,1180)" to="(780,1370)"/> <wire from="(780,320)" to="(780,440)"/> <wire from="(780,320)" to="(950,320)"/> <wire from="(790,1340)" to="(790,1370)"/> <wire from="(790,350)" to="(790,600)"/> <wire from="(790,350)" to="(950,350)"/> <wire from="(800,1390)" to="(880,1390)"/> <wire from="(800,380)" to="(800,760)"/> <wire from="(800,380)" to="(950,380)"/> <wire from="(810,410)" to="(810,920)"/> <wire from="(810,410)" to="(950,410)"/> <wire from="(820,440)" to="(820,1080)"/> <wire from="(820,440)" to="(950,440)"/> <wire from="(830,470)" to="(830,1240)"/> <wire from="(830,470)" to="(950,470)"/> <wire from="(880,1390)" to="(880,1430)"/> <wire from="(880,1430)" to="(890,1430)"/> <wire from="(880,570)" to="(880,660)"/> <wire from="(880,660)" to="(950,660)"/> <wire from="(880,690)" to="(880,780)"/> <wire from="(880,690)" to="(950,690)"/> <wire from="(890,460)" to="(890,630)"/> <wire from="(890,630)" to="(950,630)"/> <wire from="(890,720)" to="(890,940)"/> <wire from="(890,720)" to="(950,720)"/> <wire from="(900,300)" to="(900,600)"/> <wire from="(900,600)" to="(950,600)"/> <wire from="(900,750)" to="(900,1100)"/> <wire from="(900,750)" to="(950,750)"/> <wire from="(910,140)" to="(910,570)"/> <wire from="(910,570)" to="(950,570)"/> <wire from="(910,780)" to="(910,1260)"/> <wire from="(910,780)" to="(950,780)"/> <wire from="(920,120)" to="(920,260)"/> <wire from="(920,260)" to="(950,260)"/> <wire from="(930,280)" to="(930,290)"/> <wire from="(930,290)" to="(950,290)"/> </circuit> <circuit name="ALU_OPS"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_OPS"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="480" stroke="#000000" stroke-width="2" width="120" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="111" y="40">ALU_OPS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="83">carry6</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="152" y="145">/res</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="151" y="235">nor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="335">nand</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="153" y="437">xor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="460">ADL In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="359">DB In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="258">SB In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="193">/ACIN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="203">DC3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="63">NDB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="93">SB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="74">DB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="83">0/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="104">ADL/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="154">SUMS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="133">ORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="113">ANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="143">SRS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="123">EORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="90" y="521">AI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="130" y="521">BI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="93">/carry7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="63">/carry3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="150" y="73">carry4</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,100" x="50" y="70"/> <circ-port dir="in" pin="120,1000" x="50" y="370"/> <circ-port dir="in" pin="120,1030" x="50" y="380"/> <circ-port dir="in" pin="120,1060" x="50" y="390"/> <circ-port dir="in" pin="120,1120" x="50" y="420"/> <circ-port dir="in" pin="120,1150" x="50" y="430"/> <circ-port dir="in" pin="120,1180" x="50" y="440"/> <circ-port dir="in" pin="120,1210" x="50" y="450"/> <circ-port dir="in" pin="120,1240" x="50" y="460"/> <circ-port dir="in" pin="120,1270" x="50" y="470"/> <circ-port dir="in" pin="120,130" x="50" y="80"/> <circ-port dir="in" pin="120,1300" x="50" y="480"/> <circ-port dir="in" pin="120,1330" x="50" y="490"/> <circ-port dir="in" pin="120,160" x="50" y="90"/> <circ-port dir="in" pin="120,190" x="50" y="100"/> <circ-port dir="in" pin="120,300" x="50" y="110"/> <circ-port dir="in" pin="120,330" x="50" y="120"/> <circ-port dir="in" pin="120,360" x="50" y="130"/> <circ-port dir="in" pin="120,390" x="50" y="140"/> <circ-port dir="in" pin="120,420" x="50" y="150"/> <circ-port dir="in" pin="120,480" x="50" y="190"/> <circ-port dir="in" pin="120,510" x="50" y="200"/> <circ-port dir="in" pin="120,580" x="50" y="220"/> <circ-port dir="in" pin="120,610" x="50" y="230"/> <circ-port dir="in" pin="120,640" x="50" y="240"/> <circ-port dir="in" pin="120,670" x="50" y="250"/> <circ-port dir="in" pin="120,70" x="50" y="60"/> <circ-port dir="in" pin="120,700" x="50" y="260"/> <circ-port dir="in" pin="120,730" x="50" y="270"/> <circ-port dir="in" pin="120,760" x="50" y="280"/> <circ-port dir="in" pin="120,790" x="50" y="290"/> <circ-port dir="in" pin="120,850" x="50" y="320"/> <circ-port dir="in" pin="120,880" x="50" y="330"/> <circ-port dir="in" pin="120,910" x="50" y="340"/> <circ-port dir="in" pin="120,940" x="50" y="350"/> <circ-port dir="in" pin="120,970" x="50" y="360"/> <circ-port dir="out" pin="1380,1370" x="130" y="530"/> <circ-port dir="out" pin="1570,10" x="170" y="60"/> <circ-port dir="out" pin="1570,100" x="170" y="90"/> <circ-port dir="out" pin="1570,1010" x="170" y="420"/> <circ-port dir="out" pin="1570,1040" x="170" y="430"/> <circ-port dir="out" pin="1570,1070" x="170" y="440"/> <circ-port dir="out" pin="1570,1100" x="170" y="450"/> <circ-port dir="out" pin="1570,1130" x="170" y="460"/> <circ-port dir="out" pin="1570,1160" x="170" y="470"/> <circ-port dir="out" pin="1570,140" x="170" y="110"/> <circ-port dir="out" pin="1570,170" x="170" y="120"/> <circ-port dir="out" pin="1570,200" x="170" y="130"/> <circ-port dir="out" pin="1570,230" x="170" y="140"/> <circ-port dir="out" pin="1570,260" x="170" y="150"/> <circ-port dir="out" pin="1570,290" x="170" y="160"/> <circ-port dir="out" pin="1570,320" x="170" y="170"/> <circ-port dir="out" pin="1570,350" x="170" y="180"/> <circ-port dir="out" pin="1570,40" x="170" y="70"/> <circ-port dir="out" pin="1570,410" x="170" y="200"/> <circ-port dir="out" pin="1570,440" x="170" y="210"/> <circ-port dir="out" pin="1570,470" x="170" y="220"/> <circ-port dir="out" pin="1570,500" x="170" y="230"/> <circ-port dir="out" pin="1570,530" x="170" y="240"/> <circ-port dir="out" pin="1570,560" x="170" y="250"/> <circ-port dir="out" pin="1570,590" x="170" y="260"/> <circ-port dir="out" pin="1570,620" x="170" y="270"/> <circ-port dir="out" pin="1570,680" x="170" y="300"/> <circ-port dir="out" pin="1570,70" x="170" y="80"/> <circ-port dir="out" pin="1570,710" x="170" y="310"/> <circ-port dir="out" pin="1570,740" x="170" y="320"/> <circ-port dir="out" pin="1570,770" x="170" y="330"/> <circ-port dir="out" pin="1570,800" x="170" y="340"/> <circ-port dir="out" pin="1570,830" x="170" y="350"/> <circ-port dir="out" pin="1570,860" x="170" y="360"/> <circ-port dir="out" pin="1570,890" x="170" y="370"/> <circ-port dir="out" pin="1570,950" x="170" y="400"/> <circ-port dir="out" pin="1570,980" x="170" y="410"/> <circ-port dir="out" pin="820,1370" x="90" y="530"/> </appear> <comp lib="0" loc="(1000,1170)" name="Constant"/> <comp lib="0" loc="(1150,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_ADD"/> </comp> <comp lib="0" loc="(120,1000)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB5"/> </comp> <comp lib="0" loc="(120,1030)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB6"/> </comp> <comp lib="0" loc="(120,1060)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB7"/> </comp> <comp lib="0" loc="(120,1120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL0"/> </comp> <comp lib="0" loc="(120,1150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL1"/> </comp> <comp lib="0" loc="(120,1180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL2"/> </comp> <comp lib="0" loc="(120,1210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL3"/> </comp> <comp lib="0" loc="(120,1240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL4"/> </comp> <comp lib="0" loc="(120,1270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL5"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADD"/> </comp> <comp lib="0" loc="(120,1300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL6"/> </comp> <comp lib="0" loc="(120,1330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL7"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ADD"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(120,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(120,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(120,390)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(120,420)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SUMS"/> </comp> <comp lib="0" loc="(120,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_cin"/> </comp> <comp lib="0" loc="(120,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DC3"/> </comp> <comp lib="0" loc="(120,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(120,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(120,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(120,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="NDB_ADD"/> </comp> <comp lib="0" loc="(120,700)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(120,730)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(120,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(120,790)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(120,850)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB0"/> </comp> <comp lib="0" loc="(120,880)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB1"/> </comp> <comp lib="0" loc="(120,910)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB2"/> </comp> <comp lib="0" loc="(120,940)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB3"/> </comp> <comp lib="0" loc="(120,970)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB4"/> </comp> <comp lib="0" loc="(1200,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1250,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1270,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1300,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1310,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1310,1370)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1350,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1380,1370)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BI_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1400,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,1030)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,1130)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,210)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,320)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,480)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,590)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,750)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1500,850)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1570,10)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_carry3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_carry7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1010)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1040)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1070)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,1160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="res7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="carry4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nor7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="carry6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,710)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,740)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,770)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,800)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,830)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,860)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,890)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="nand7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,950)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1570,980)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="xor1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,1140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,1250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,610)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,710)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,880)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(170,980)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(200,150)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(210,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(260,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(310,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(360,1130)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(360,170)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(360,460)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(360,840)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(530,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(580,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(630,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(680,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(710,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(730,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(750,1320)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(750,1370)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="north"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(780,620)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(820,1370)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AI_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(850,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(900,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(940,840)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(950,670)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(980,1130)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(980,170)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="0" loc="(980,460)" name="Splitter"> <a name="fanout" val="10"/> <a name="incoming" val="10"/> </comp> <comp lib="1" loc="(550,1200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,1170)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp loc="(1010,1030)" name="ALU_ODD_BIT"> <a name="label" val="alu7"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,360)" name="ALU_ODD_BIT"> <a name="label" val="alu5"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,70)" name="ALU_EVEN_BIT"> <a name="label" val="alu4"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,740)" name="ALU_EVEN_BIT"> <a name="label" val="alu6"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,1030)" name="ALU_ODD_BIT"> <a name="label" val="alu3"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,360)" name="ALU_ODD_BIT"> <a name="label" val="alu1"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,70)" name="ALU_EVEN_BIT"> <a name="label" val="alu0"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,740)" name="ALU_EVEN_BIT"> <a name="label" val="alu2"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,100)" to="(1010,100)"/> <wire from="(1000,1030)" to="(1010,1030)"/> <wire from="(1000,1040)" to="(1010,1040)"/> <wire from="(1000,1050)" to="(1010,1050)"/> <wire from="(1000,1060)" to="(1010,1060)"/> <wire from="(1000,1070)" to="(1010,1070)"/> <wire from="(1000,1080)" to="(1010,1080)"/> <wire from="(1000,1090)" to="(1010,1090)"/> <wire from="(1000,110)" to="(1010,110)"/> <wire from="(1000,1100)" to="(1010,1100)"/> <wire from="(1000,1110)" to="(1010,1110)"/> <wire from="(1000,1120)" to="(1010,1120)"/> <wire from="(1000,1170)" to="(1010,1170)"/> <wire from="(1000,120)" to="(1010,120)"/> <wire from="(1000,130)" to="(1010,130)"/> <wire from="(1000,140)" to="(1010,140)"/> <wire from="(1000,150)" to="(1010,150)"/> <wire from="(1000,160)" to="(1010,160)"/> <wire from="(1000,210)" to="(1000,310)"/> <wire from="(1000,210)" to="(1010,210)"/> <wire from="(1000,310)" to="(1100,310)"/> <wire from="(1000,360)" to="(1010,360)"/> <wire from="(1000,370)" to="(1010,370)"/> <wire from="(1000,380)" to="(1010,380)"/> <wire from="(1000,390)" to="(1010,390)"/> <wire from="(1000,400)" to="(1010,400)"/> <wire from="(1000,410)" to="(1010,410)"/> <wire from="(1000,420)" to="(1010,420)"/> <wire from="(1000,430)" to="(1010,430)"/> <wire from="(1000,440)" to="(1010,440)"/> <wire from="(1000,450)" to="(1010,450)"/> <wire from="(1000,500)" to="(1000,590)"/> <wire from="(1000,500)" to="(1010,500)"/> <wire from="(1000,590)" to="(1100,590)"/> <wire from="(1000,70)" to="(1010,70)"/> <wire from="(1000,80)" to="(1010,80)"/> <wire from="(1000,880)" to="(1000,970)"/> <wire from="(1000,880)" to="(1010,880)"/> <wire from="(1000,90)" to="(1010,90)"/> <wire from="(1000,970)" to="(1100,970)"/> <wire from="(1030,1230)" to="(1030,1250)"/> <wire from="(1030,1250)" to="(1330,1250)"/> <wire from="(1030,270)" to="(1030,290)"/> <wire from="(1030,290)" to="(1330,290)"/> <wire from="(1030,560)" to="(1030,580)"/> <wire from="(1030,580)" to="(1320,580)"/> <wire from="(1030,940)" to="(1030,960)"/> <wire from="(1030,960)" to="(1320,960)"/> <wire from="(1070,1230)" to="(1070,1240)"/> <wire from="(1070,1240)" to="(1380,1240)"/> <wire from="(1070,270)" to="(1070,280)"/> <wire from="(1070,280)" to="(1380,280)"/> <wire from="(1070,560)" to="(1070,570)"/> <wire from="(1070,570)" to="(1370,570)"/> <wire from="(1070,940)" to="(1070,950)"/> <wire from="(1070,950)" to="(1370,950)"/> <wire from="(1090,100)" to="(1110,100)"/> <wire from="(1090,1040)" to="(1130,1040)"/> <wire from="(1090,1060)" to="(1360,1060)"/> <wire from="(1090,1090)" to="(1180,1090)"/> <wire from="(1090,1100)" to="(1100,1100)"/> <wire from="(1090,1110)" to="(1280,1110)"/> <wire from="(1090,130)" to="(1180,130)"/> <wire from="(1090,140)" to="(1120,140)"/> <wire from="(1090,150)" to="(1280,150)"/> <wire from="(1090,370)" to="(1120,370)"/> <wire from="(1090,390)" to="(1110,390)"/> <wire from="(1090,420)" to="(1170,420)"/> <wire from="(1090,430)" to="(1100,430)"/> <wire from="(1090,440)" to="(1270,440)"/> <wire from="(1090,750)" to="(1120,750)"/> <wire from="(1090,770)" to="(1110,770)"/> <wire from="(1090,80)" to="(1130,80)"/> <wire from="(1090,800)" to="(1170,800)"/> <wire from="(1090,810)" to="(1100,810)"/> <wire from="(1090,820)" to="(1270,820)"/> <wire from="(1100,1100)" to="(1230,1100)"/> <wire from="(1100,310)" to="(1100,430)"/> <wire from="(1100,430)" to="(1220,430)"/> <wire from="(1100,590)" to="(1100,810)"/> <wire from="(1100,810)" to="(1220,810)"/> <wire from="(1100,970)" to="(1100,1100)"/> <wire from="(1110,100)" to="(1110,300)"/> <wire from="(1110,100)" to="(1260,100)"/> <wire from="(1110,390)" to="(1110,700)"/> <wire from="(1110,770)" to="(1110,980)"/> <wire from="(1110,770)" to="(1420,770)"/> <wire from="(1120,140)" to="(1230,140)"/> <wire from="(1120,30)" to="(1120,140)"/> <wire from="(1120,370)" to="(1120,640)"/> <wire from="(1120,640)" to="(1130,640)"/> <wire from="(1120,650)" to="(1120,750)"/> <wire from="(1120,650)" to="(1130,650)"/> <wire from="(1130,660)" to="(1130,1040)"/> <wire from="(1130,80)" to="(1130,630)"/> <wire from="(1150,540)" to="(1150,620)"/> <wire from="(1150,540)" to="(1440,540)"/> <wire from="(1170,420)" to="(1170,640)"/> <wire from="(1170,640)" to="(1180,640)"/> <wire from="(1170,650)" to="(1170,800)"/> <wire from="(1170,650)" to="(1180,650)"/> <wire from="(1180,130)" to="(1180,630)"/> <wire from="(1180,660)" to="(1180,1090)"/> <wire from="(120,100)" to="(170,100)"/> <wire from="(120,1000)" to="(150,1000)"/> <wire from="(120,1030)" to="(140,1030)"/> <wire from="(120,1060)" to="(150,1060)"/> <wire from="(120,1120)" to="(150,1120)"/> <wire from="(120,1150)" to="(140,1150)"/> <wire from="(120,1180)" to="(140,1180)"/> <wire from="(120,1210)" to="(150,1210)"/> <wire from="(120,1240)" to="(150,1240)"/> <wire from="(120,1270)" to="(150,1270)"/> <wire from="(120,130)" to="(160,130)"/> <wire from="(120,1300)" to="(140,1300)"/> <wire from="(120,1330)" to="(150,1330)"/> <wire from="(120,160)" to="(150,160)"/> <wire from="(120,190)" to="(140,190)"/> <wire from="(120,300)" to="(140,300)"/> <wire from="(120,330)" to="(150,330)"/> <wire from="(120,360)" to="(160,360)"/> <wire from="(120,390)" to="(170,390)"/> <wire from="(120,420)" to="(180,420)"/> <wire from="(120,480)" to="(210,480)"/> <wire from="(120,510)" to="(350,510)"/> <wire from="(120,580)" to="(150,580)"/> <wire from="(120,610)" to="(140,610)"/> <wire from="(120,640)" to="(150,640)"/> <wire from="(120,670)" to="(150,670)"/> <wire from="(120,70)" to="(180,70)"/> <wire from="(120,700)" to="(150,700)"/> <wire from="(120,730)" to="(150,730)"/> <wire from="(120,760)" to="(140,760)"/> <wire from="(120,790)" to="(150,790)"/> <wire from="(120,850)" to="(150,850)"/> <wire from="(120,880)" to="(140,880)"/> <wire from="(120,910)" to="(150,910)"/> <wire from="(120,940)" to="(150,940)"/> <wire from="(120,970)" to="(150,970)"/> <wire from="(1200,550)" to="(1200,620)"/> <wire from="(1200,550)" to="(1460,550)"/> <wire from="(1220,430)" to="(1220,640)"/> <wire from="(1220,640)" to="(1230,640)"/> <wire from="(1220,650)" to="(1220,810)"/> <wire from="(1220,650)" to="(1230,650)"/> <wire from="(1230,1340)" to="(1230,1350)"/> <wire from="(1230,140)" to="(1230,630)"/> <wire from="(1230,660)" to="(1230,1100)"/> <wire from="(1240,1340)" to="(1240,1350)"/> <wire from="(1250,1340)" to="(1250,1350)"/> <wire from="(1250,560)" to="(1250,620)"/> <wire from="(1250,560)" to="(1450,560)"/> <wire from="(1260,1340)" to="(1260,1350)"/> <wire from="(1260,40)" to="(1260,100)"/> <wire from="(1260,40)" to="(1570,40)"/> <wire from="(1270,1300)" to="(1270,1320)"/> <wire from="(1270,1340)" to="(1270,1350)"/> <wire from="(1270,440)" to="(1270,640)"/> <wire from="(1270,640)" to="(1280,640)"/> <wire from="(1270,650)" to="(1270,820)"/> <wire from="(1270,650)" to="(1280,650)"/> <wire from="(1280,1340)" to="(1280,1350)"/> <wire from="(1280,150)" to="(1280,630)"/> <wire from="(1280,660)" to="(1280,1110)"/> <wire from="(1290,1340)" to="(1290,1350)"/> <wire from="(1300,1340)" to="(1300,1350)"/> <wire from="(1300,590)" to="(1300,620)"/> <wire from="(1300,590)" to="(1440,590)"/> <wire from="(1310,10)" to="(1310,1260)"/> <wire from="(1310,10)" to="(1570,10)"/> <wire from="(1310,1320)" to="(1410,1320)"/> <wire from="(1310,1370)" to="(1380,1370)"/> <wire from="(1320,580)" to="(1320,640)"/> <wire from="(1320,640)" to="(1330,640)"/> <wire from="(1320,650)" to="(1320,960)"/> <wire from="(1320,650)" to="(1330,650)"/> <wire from="(1330,290)" to="(1330,630)"/> <wire from="(1330,660)" to="(1330,1250)"/> <wire from="(1350,620)" to="(1350,1290)"/> <wire from="(1360,100)" to="(1360,1060)"/> <wire from="(1360,100)" to="(1570,100)"/> <wire from="(1370,570)" to="(1370,640)"/> <wire from="(1370,640)" to="(1380,640)"/> <wire from="(1370,650)" to="(1370,950)"/> <wire from="(1370,650)" to="(1380,650)"/> <wire from="(1380,280)" to="(1380,630)"/> <wire from="(1380,660)" to="(1380,1240)"/> <wire from="(140,1010)" to="(140,1030)"/> <wire from="(140,1010)" to="(150,1010)"/> <wire from="(140,1150)" to="(140,1160)"/> <wire from="(140,1160)" to="(150,1160)"/> <wire from="(140,1170)" to="(140,1180)"/> <wire from="(140,1170)" to="(150,1170)"/> <wire from="(140,1280)" to="(140,1300)"/> <wire from="(140,1280)" to="(150,1280)"/> <wire from="(140,190)" to="(140,200)"/> <wire from="(140,200)" to="(180,200)"/> <wire from="(140,210)" to="(140,300)"/> <wire from="(140,210)" to="(180,210)"/> <wire from="(140,610)" to="(140,630)"/> <wire from="(140,630)" to="(150,630)"/> <wire from="(140,740)" to="(140,760)"/> <wire from="(140,740)" to="(150,740)"/> <wire from="(140,880)" to="(140,900)"/> <wire from="(140,900)" to="(150,900)"/> <wire from="(1400,210)" to="(1400,320)"/> <wire from="(1400,210)" to="(1500,210)"/> <wire from="(1400,620)" to="(1410,620)"/> <wire from="(1410,620)" to="(1410,1320)"/> <wire from="(1420,70)" to="(1420,770)"/> <wire from="(1420,70)" to="(1570,70)"/> <wire from="(1430,1030)" to="(1500,1030)"/> <wire from="(1430,600)" to="(1430,1030)"/> <wire from="(1440,1130)" to="(1500,1130)"/> <wire from="(1440,320)" to="(1440,540)"/> <wire from="(1440,320)" to="(1500,320)"/> <wire from="(1440,590)" to="(1440,1130)"/> <wire from="(1450,560)" to="(1450,850)"/> <wire from="(1450,850)" to="(1500,850)"/> <wire from="(1460,330)" to="(1460,480)"/> <wire from="(1460,480)" to="(1500,480)"/> <wire from="(1460,550)" to="(1460,590)"/> <wire from="(1460,590)" to="(1500,590)"/> <wire from="(1460,710)" to="(1460,750)"/> <wire from="(1460,750)" to="(1500,750)"/> <wire from="(150,1020)" to="(150,1060)"/> <wire from="(150,1120)" to="(150,1150)"/> <wire from="(150,1180)" to="(150,1210)"/> <wire from="(150,1240)" to="(150,1260)"/> <wire from="(150,1290)" to="(150,1330)"/> <wire from="(150,160)" to="(150,190)"/> <wire from="(150,190)" to="(180,190)"/> <wire from="(150,220)" to="(150,330)"/> <wire from="(150,220)" to="(180,220)"/> <wire from="(150,580)" to="(150,620)"/> <wire from="(150,650)" to="(150,670)"/> <wire from="(150,700)" to="(150,720)"/> <wire from="(150,750)" to="(150,790)"/> <wire from="(150,850)" to="(150,890)"/> <wire from="(150,920)" to="(150,940)"/> <wire from="(150,970)" to="(150,990)"/> <wire from="(1520,1000)" to="(1530,1000)"/> <wire from="(1520,1010)" to="(1570,1010)"/> <wire from="(1520,1020)" to="(1520,1040)"/> <wire from="(1520,1040)" to="(1570,1040)"/> <wire from="(1520,1070)" to="(1520,1090)"/> <wire from="(1520,1070)" to="(1570,1070)"/> <wire from="(1520,1100)" to="(1570,1100)"/> <wire from="(1520,1110)" to="(1530,1110)"/> <wire from="(1520,1120)" to="(1520,1160)"/> <wire from="(1520,1160)" to="(1570,1160)"/> <wire from="(1520,140)" to="(1520,170)"/> <wire from="(1520,140)" to="(1570,140)"/> <wire from="(1520,180)" to="(1530,180)"/> <wire from="(1520,190)" to="(1530,190)"/> <wire from="(1520,200)" to="(1520,230)"/> <wire from="(1520,230)" to="(1570,230)"/> <wire from="(1520,260)" to="(1520,280)"/> <wire from="(1520,260)" to="(1570,260)"/> <wire from="(1520,290)" to="(1570,290)"/> <wire from="(1520,300)" to="(1530,300)"/> <wire from="(1520,310)" to="(1520,350)"/> <wire from="(1520,350)" to="(1570,350)"/> <wire from="(1520,410)" to="(1520,440)"/> <wire from="(1520,410)" to="(1570,410)"/> <wire from="(1520,450)" to="(1530,450)"/> <wire from="(1520,460)" to="(1530,460)"/> <wire from="(1520,470)" to="(1520,500)"/> <wire from="(1520,500)" to="(1570,500)"/> <wire from="(1520,530)" to="(1520,550)"/> <wire from="(1520,530)" to="(1570,530)"/> <wire from="(1520,560)" to="(1570,560)"/> <wire from="(1520,570)" to="(1530,570)"/> <wire from="(1520,580)" to="(1520,620)"/> <wire from="(1520,620)" to="(1570,620)"/> <wire from="(1520,680)" to="(1520,710)"/> <wire from="(1520,680)" to="(1570,680)"/> <wire from="(1520,720)" to="(1530,720)"/> <wire from="(1520,730)" to="(1530,730)"/> <wire from="(1520,740)" to="(1520,770)"/> <wire from="(1520,770)" to="(1570,770)"/> <wire from="(1520,800)" to="(1520,810)"/> <wire from="(1520,800)" to="(1570,800)"/> <wire from="(1520,820)" to="(1540,820)"/> <wire from="(1520,830)" to="(1530,830)"/> <wire from="(1520,840)" to="(1520,890)"/> <wire from="(1520,890)" to="(1570,890)"/> <wire from="(1520,950)" to="(1520,990)"/> <wire from="(1520,950)" to="(1570,950)"/> <wire from="(1530,1110)" to="(1530,1130)"/> <wire from="(1530,1130)" to="(1570,1130)"/> <wire from="(1530,170)" to="(1530,180)"/> <wire from="(1530,170)" to="(1570,170)"/> <wire from="(1530,190)" to="(1530,200)"/> <wire from="(1530,200)" to="(1570,200)"/> <wire from="(1530,300)" to="(1530,320)"/> <wire from="(1530,320)" to="(1570,320)"/> <wire from="(1530,440)" to="(1530,450)"/> <wire from="(1530,440)" to="(1570,440)"/> <wire from="(1530,460)" to="(1530,470)"/> <wire from="(1530,470)" to="(1570,470)"/> <wire from="(1530,570)" to="(1530,590)"/> <wire from="(1530,590)" to="(1570,590)"/> <wire from="(1530,710)" to="(1530,720)"/> <wire from="(1530,710)" to="(1570,710)"/> <wire from="(1530,730)" to="(1530,740)"/> <wire from="(1530,740)" to="(1570,740)"/> <wire from="(1530,830)" to="(1530,860)"/> <wire from="(1530,860)" to="(1570,860)"/> <wire from="(1530,980)" to="(1530,1000)"/> <wire from="(1530,980)" to="(1570,980)"/> <wire from="(1540,820)" to="(1540,830)"/> <wire from="(1540,830)" to="(1570,830)"/> <wire from="(160,130)" to="(160,180)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(160,230)" to="(160,360)"/> <wire from="(160,230)" to="(180,230)"/> <wire from="(170,100)" to="(170,170)"/> <wire from="(170,1140)" to="(210,1140)"/> <wire from="(170,1250)" to="(220,1250)"/> <wire from="(170,170)" to="(180,170)"/> <wire from="(170,240)" to="(170,390)"/> <wire from="(170,240)" to="(180,240)"/> <wire from="(170,610)" to="(190,610)"/> <wire from="(170,710)" to="(950,710)"/> <wire from="(170,880)" to="(260,880)"/> <wire from="(170,980)" to="(900,980)"/> <wire from="(180,250)" to="(180,420)"/> <wire from="(180,70)" to="(180,160)"/> <wire from="(190,610)" to="(190,690)"/> <wire from="(190,690)" to="(310,690)"/> <wire from="(200,10)" to="(200,150)"/> <wire from="(200,10)" to="(350,10)"/> <wire from="(210,190)" to="(210,480)"/> <wire from="(210,190)" to="(390,190)"/> <wire from="(210,670)" to="(210,1140)"/> <wire from="(220,1250)" to="(220,1270)"/> <wire from="(220,1270)" to="(850,1270)"/> <wire from="(230,1210)" to="(390,1210)"/> <wire from="(230,250)" to="(230,630)"/> <wire from="(230,250)" to="(390,250)"/> <wire from="(230,640)" to="(240,640)"/> <wire from="(230,650)" to="(240,650)"/> <wire from="(230,660)" to="(230,1210)"/> <wire from="(240,540)" to="(240,640)"/> <wire from="(240,540)" to="(390,540)"/> <wire from="(240,650)" to="(240,920)"/> <wire from="(240,920)" to="(390,920)"/> <wire from="(260,670)" to="(260,880)"/> <wire from="(280,1200)" to="(390,1200)"/> <wire from="(280,240)" to="(280,630)"/> <wire from="(280,240)" to="(390,240)"/> <wire from="(280,640)" to="(290,640)"/> <wire from="(280,650)" to="(290,650)"/> <wire from="(280,660)" to="(280,1200)"/> <wire from="(290,530)" to="(290,640)"/> <wire from="(290,530)" to="(390,530)"/> <wire from="(290,650)" to="(290,910)"/> <wire from="(290,910)" to="(390,910)"/> <wire from="(300,600)" to="(300,860)"/> <wire from="(300,600)" to="(490,600)"/> <wire from="(300,860)" to="(390,860)"/> <wire from="(310,1150)" to="(390,1150)"/> <wire from="(310,320)" to="(310,480)"/> <wire from="(310,320)" to="(490,320)"/> <wire from="(310,480)" to="(390,480)"/> <wire from="(310,670)" to="(310,690)"/> <wire from="(310,990)" to="(310,1150)"/> <wire from="(310,990)" to="(490,990)"/> <wire from="(320,1130)" to="(360,1130)"/> <wire from="(320,700)" to="(320,840)"/> <wire from="(320,700)" to="(360,700)"/> <wire from="(320,840)" to="(320,1130)"/> <wire from="(320,840)" to="(360,840)"/> <wire from="(330,1190)" to="(390,1190)"/> <wire from="(330,230)" to="(330,630)"/> <wire from="(330,230)" to="(390,230)"/> <wire from="(330,640)" to="(340,640)"/> <wire from="(330,650)" to="(340,650)"/> <wire from="(330,660)" to="(330,1190)"/> <wire from="(340,1170)" to="(340,1300)"/> <wire from="(340,1170)" to="(390,1170)"/> <wire from="(340,1300)" to="(800,1300)"/> <wire from="(340,520)" to="(340,640)"/> <wire from="(340,520)" to="(390,520)"/> <wire from="(340,650)" to="(340,900)"/> <wire from="(340,900)" to="(390,900)"/> <wire from="(350,10)" to="(350,170)"/> <wire from="(350,10)" to="(970,10)"/> <wire from="(350,1290)" to="(520,1290)"/> <wire from="(350,170)" to="(350,460)"/> <wire from="(350,170)" to="(360,170)"/> <wire from="(350,460)" to="(350,490)"/> <wire from="(350,460)" to="(360,460)"/> <wire from="(350,490)" to="(360,490)"/> <wire from="(350,510)" to="(350,1290)"/> <wire from="(360,490)" to="(360,700)"/> <wire from="(380,100)" to="(390,100)"/> <wire from="(380,1030)" to="(390,1030)"/> <wire from="(380,1040)" to="(390,1040)"/> <wire from="(380,1050)" to="(390,1050)"/> <wire from="(380,1060)" to="(390,1060)"/> <wire from="(380,1070)" to="(390,1070)"/> <wire from="(380,1080)" to="(390,1080)"/> <wire from="(380,1090)" to="(390,1090)"/> <wire from="(380,110)" to="(390,110)"/> <wire from="(380,1100)" to="(390,1100)"/> <wire from="(380,1110)" to="(390,1110)"/> <wire from="(380,1120)" to="(390,1120)"/> <wire from="(380,120)" to="(390,120)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(380,140)" to="(390,140)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(380,160)" to="(390,160)"/> <wire from="(380,210)" to="(380,300)"/> <wire from="(380,210)" to="(390,210)"/> <wire from="(380,300)" to="(480,300)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(380,370)" to="(390,370)"/> <wire from="(380,380)" to="(390,380)"/> <wire from="(380,390)" to="(390,390)"/> <wire from="(380,400)" to="(390,400)"/> <wire from="(380,410)" to="(390,410)"/> <wire from="(380,420)" to="(390,420)"/> <wire from="(380,430)" to="(390,430)"/> <wire from="(380,440)" to="(390,440)"/> <wire from="(380,450)" to="(390,450)"/> <wire from="(380,500)" to="(380,590)"/> <wire from="(380,500)" to="(390,500)"/> <wire from="(380,590)" to="(480,590)"/> <wire from="(380,70)" to="(390,70)"/> <wire from="(380,740)" to="(390,740)"/> <wire from="(380,750)" to="(390,750)"/> <wire from="(380,760)" to="(390,760)"/> <wire from="(380,770)" to="(390,770)"/> <wire from="(380,780)" to="(390,780)"/> <wire from="(380,790)" to="(390,790)"/> <wire from="(380,80)" to="(390,80)"/> <wire from="(380,800)" to="(390,800)"/> <wire from="(380,810)" to="(390,810)"/> <wire from="(380,820)" to="(390,820)"/> <wire from="(380,830)" to="(390,830)"/> <wire from="(380,880)" to="(380,970)"/> <wire from="(380,880)" to="(390,880)"/> <wire from="(380,90)" to="(390,90)"/> <wire from="(380,970)" to="(480,970)"/> <wire from="(410,1230)" to="(410,1250)"/> <wire from="(410,1250)" to="(710,1250)"/> <wire from="(410,270)" to="(410,290)"/> <wire from="(410,290)" to="(710,290)"/> <wire from="(410,560)" to="(410,580)"/> <wire from="(410,580)" to="(700,580)"/> <wire from="(410,940)" to="(410,960)"/> <wire from="(410,960)" to="(700,960)"/> <wire from="(450,1230)" to="(450,1240)"/> <wire from="(450,1240)" to="(760,1240)"/> <wire from="(450,270)" to="(450,280)"/> <wire from="(450,280)" to="(760,280)"/> <wire from="(450,560)" to="(450,570)"/> <wire from="(450,570)" to="(750,570)"/> <wire from="(450,940)" to="(450,950)"/> <wire from="(450,950)" to="(750,950)"/> <wire from="(470,100)" to="(490,100)"/> <wire from="(470,1040)" to="(510,1040)"/> <wire from="(470,1060)" to="(520,1060)"/> <wire from="(470,1090)" to="(560,1090)"/> <wire from="(470,1100)" to="(480,1100)"/> <wire from="(470,1110)" to="(660,1110)"/> <wire from="(470,130)" to="(560,130)"/> <wire from="(470,140)" to="(610,140)"/> <wire from="(470,150)" to="(660,150)"/> <wire from="(470,370)" to="(500,370)"/> <wire from="(470,390)" to="(490,390)"/> <wire from="(470,420)" to="(550,420)"/> <wire from="(470,430)" to="(480,430)"/> <wire from="(470,440)" to="(650,440)"/> <wire from="(470,750)" to="(500,750)"/> <wire from="(470,770)" to="(490,770)"/> <wire from="(470,80)" to="(510,80)"/> <wire from="(470,800)" to="(550,800)"/> <wire from="(470,810)" to="(480,810)"/> <wire from="(470,820)" to="(650,820)"/> <wire from="(480,1100)" to="(610,1100)"/> <wire from="(480,300)" to="(480,430)"/> <wire from="(480,430)" to="(600,430)"/> <wire from="(480,590)" to="(480,810)"/> <wire from="(480,810)" to="(600,810)"/> <wire from="(480,970)" to="(480,1100)"/> <wire from="(490,100)" to="(490,320)"/> <wire from="(490,390)" to="(490,600)"/> <wire from="(490,770)" to="(490,990)"/> <wire from="(500,370)" to="(500,640)"/> <wire from="(500,640)" to="(510,640)"/> <wire from="(500,650)" to="(500,750)"/> <wire from="(500,650)" to="(510,650)"/> <wire from="(510,660)" to="(510,1040)"/> <wire from="(510,80)" to="(510,630)"/> <wire from="(520,1060)" to="(520,1130)"/> <wire from="(520,1130)" to="(520,1160)"/> <wire from="(520,1130)" to="(660,1130)"/> <wire from="(520,1160)" to="(580,1160)"/> <wire from="(520,1200)" to="(520,1290)"/> <wire from="(520,1200)" to="(530,1200)"/> <wire from="(530,320)" to="(1400,320)"/> <wire from="(530,320)" to="(530,620)"/> <wire from="(550,1200)" to="(560,1200)"/> <wire from="(550,420)" to="(550,640)"/> <wire from="(550,640)" to="(560,640)"/> <wire from="(550,650)" to="(550,800)"/> <wire from="(550,650)" to="(560,650)"/> <wire from="(560,1180)" to="(560,1200)"/> <wire from="(560,1180)" to="(580,1180)"/> <wire from="(560,130)" to="(560,630)"/> <wire from="(560,660)" to="(560,1090)"/> <wire from="(580,330)" to="(1460,330)"/> <wire from="(580,330)" to="(580,620)"/> <wire from="(600,430)" to="(600,640)"/> <wire from="(600,640)" to="(610,640)"/> <wire from="(600,650)" to="(600,810)"/> <wire from="(600,650)" to="(610,650)"/> <wire from="(610,1170)" to="(830,1170)"/> <wire from="(610,140)" to="(610,630)"/> <wire from="(610,660)" to="(610,1100)"/> <wire from="(630,590)" to="(630,620)"/> <wire from="(630,590)" to="(990,590)"/> <wire from="(650,440)" to="(650,640)"/> <wire from="(650,640)" to="(660,640)"/> <wire from="(650,650)" to="(650,820)"/> <wire from="(650,650)" to="(660,650)"/> <wire from="(660,1130)" to="(660,1220)"/> <wire from="(660,1220)" to="(990,1220)"/> <wire from="(660,150)" to="(660,630)"/> <wire from="(660,660)" to="(660,1110)"/> <wire from="(670,1340)" to="(670,1350)"/> <wire from="(680,1340)" to="(680,1350)"/> <wire from="(680,600)" to="(1430,600)"/> <wire from="(680,600)" to="(680,620)"/> <wire from="(690,1340)" to="(690,1350)"/> <wire from="(700,1340)" to="(700,1350)"/> <wire from="(700,580)" to="(700,640)"/> <wire from="(700,640)" to="(710,640)"/> <wire from="(700,650)" to="(700,960)"/> <wire from="(700,650)" to="(710,650)"/> <wire from="(710,1290)" to="(710,1320)"/> <wire from="(710,1290)" to="(740,1290)"/> <wire from="(710,1340)" to="(710,1350)"/> <wire from="(710,290)" to="(710,630)"/> <wire from="(710,660)" to="(710,1250)"/> <wire from="(720,1340)" to="(720,1350)"/> <wire from="(730,1340)" to="(730,1350)"/> <wire from="(730,620)" to="(740,620)"/> <wire from="(740,1340)" to="(740,1350)"/> <wire from="(740,620)" to="(740,1290)"/> <wire from="(750,1320)" to="(860,1320)"/> <wire from="(750,1370)" to="(820,1370)"/> <wire from="(750,570)" to="(750,640)"/> <wire from="(750,640)" to="(760,640)"/> <wire from="(750,650)" to="(750,950)"/> <wire from="(750,650)" to="(760,650)"/> <wire from="(760,280)" to="(760,630)"/> <wire from="(760,660)" to="(760,1240)"/> <wire from="(780,620)" to="(790,620)"/> <wire from="(790,1250)" to="(970,1250)"/> <wire from="(790,620)" to="(790,1250)"/> <wire from="(800,30)" to="(1120,30)"/> <wire from="(800,30)" to="(800,1300)"/> <wire from="(830,190)" to="(1010,190)"/> <wire from="(830,190)" to="(830,1170)"/> <wire from="(850,670)" to="(850,1270)"/> <wire from="(860,1290)" to="(1350,1290)"/> <wire from="(860,1290)" to="(860,1320)"/> <wire from="(870,1210)" to="(1010,1210)"/> <wire from="(870,250)" to="(1010,250)"/> <wire from="(870,250)" to="(870,630)"/> <wire from="(870,640)" to="(880,640)"/> <wire from="(870,650)" to="(880,650)"/> <wire from="(870,660)" to="(870,1210)"/> <wire from="(880,540)" to="(1010,540)"/> <wire from="(880,540)" to="(880,640)"/> <wire from="(880,650)" to="(880,920)"/> <wire from="(880,920)" to="(1010,920)"/> <wire from="(890,1130)" to="(980,1130)"/> <wire from="(890,510)" to="(890,840)"/> <wire from="(890,510)" to="(960,510)"/> <wire from="(890,840)" to="(890,1130)"/> <wire from="(890,840)" to="(940,840)"/> <wire from="(900,670)" to="(900,980)"/> <wire from="(910,700)" to="(1110,700)"/> <wire from="(910,700)" to="(910,860)"/> <wire from="(910,860)" to="(1010,860)"/> <wire from="(920,1200)" to="(1010,1200)"/> <wire from="(920,240)" to="(1010,240)"/> <wire from="(920,240)" to="(920,630)"/> <wire from="(920,640)" to="(930,640)"/> <wire from="(920,650)" to="(930,650)"/> <wire from="(920,660)" to="(920,1200)"/> <wire from="(930,530)" to="(1010,530)"/> <wire from="(930,530)" to="(930,640)"/> <wire from="(930,650)" to="(930,910)"/> <wire from="(930,910)" to="(1010,910)"/> <wire from="(940,1150)" to="(1010,1150)"/> <wire from="(940,300)" to="(1110,300)"/> <wire from="(940,300)" to="(940,480)"/> <wire from="(940,480)" to="(1010,480)"/> <wire from="(940,980)" to="(1110,980)"/> <wire from="(940,980)" to="(940,1150)"/> <wire from="(950,670)" to="(950,710)"/> <wire from="(960,170)" to="(960,460)"/> <wire from="(960,170)" to="(970,170)"/> <wire from="(960,460)" to="(960,510)"/> <wire from="(960,460)" to="(980,460)"/> <wire from="(960,740)" to="(1010,740)"/> <wire from="(960,750)" to="(1010,750)"/> <wire from="(960,760)" to="(1010,760)"/> <wire from="(960,770)" to="(1010,770)"/> <wire from="(960,780)" to="(1010,780)"/> <wire from="(960,790)" to="(1010,790)"/> <wire from="(960,800)" to="(1010,800)"/> <wire from="(960,810)" to="(1010,810)"/> <wire from="(960,820)" to="(1010,820)"/> <wire from="(960,830)" to="(1010,830)"/> <wire from="(970,10)" to="(970,170)"/> <wire from="(970,1190)" to="(1010,1190)"/> <wire from="(970,1250)" to="(970,1300)"/> <wire from="(970,1300)" to="(1270,1300)"/> <wire from="(970,170)" to="(980,170)"/> <wire from="(970,230)" to="(1010,230)"/> <wire from="(970,230)" to="(970,630)"/> <wire from="(970,640)" to="(980,640)"/> <wire from="(970,650)" to="(980,650)"/> <wire from="(970,660)" to="(970,1190)"/> <wire from="(980,520)" to="(1010,520)"/> <wire from="(980,520)" to="(980,640)"/> <wire from="(980,650)" to="(980,900)"/> <wire from="(980,900)" to="(1010,900)"/> <wire from="(990,1220)" to="(990,1260)"/> <wire from="(990,1260)" to="(1310,1260)"/> <wire from="(990,590)" to="(990,710)"/> <wire from="(990,710)" to="(1460,710)"/> </circuit> <circuit name="ALU_EVEN_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_EVEN_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="41">ALU_EVEN_BIT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="179">/cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="59">NDB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="129">nand</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="89">SB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="70">DB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="119">nor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="198">pres</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="150">SUMS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="230">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="129">ORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="109">ANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="79">0/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="139">SRS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="139">xor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="240">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="119">EORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="114" y="89">cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="219">SBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="100">ADL/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="116" y="69">/res</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,120" x="50" y="80"/> <circ-port dir="in" pin="120,150" x="50" y="90"/> <circ-port dir="in" pin="120,180" x="50" y="100"/> <circ-port dir="in" pin="120,290" x="50" y="110"/> <circ-port dir="in" pin="120,320" x="50" y="120"/> <circ-port dir="in" pin="120,350" x="50" y="130"/> <circ-port dir="in" pin="120,380" x="50" y="140"/> <circ-port dir="in" pin="120,410" x="50" y="150"/> <circ-port dir="in" pin="120,470" x="50" y="180"/> <circ-port dir="in" pin="120,500" x="50" y="200"/> <circ-port dir="in" pin="120,590" x="50" y="220"/> <circ-port dir="in" pin="120,60" x="50" y="60"/> <circ-port dir="in" pin="120,620" x="50" y="230"/> <circ-port dir="in" pin="120,650" x="50" y="240"/> <circ-port dir="in" pin="120,90" x="50" y="70"/> <circ-port dir="out" pin="390,150" x="70" y="260"/> <circ-port dir="out" pin="390,300" x="110" y="260"/> <circ-port dir="out" pin="690,100" x="130" y="70"/> <circ-port dir="out" pin="690,130" x="130" y="90"/> <circ-port dir="out" pin="690,240" x="130" y="120"/> <circ-port dir="out" pin="690,270" x="130" y="130"/> <circ-port dir="out" pin="690,300" x="130" y="140"/> </appear> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADD"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ADD"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SUMS"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_cin"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="prev_res"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SBx"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="NDB_ADD"/> </comp> <comp lib="0" loc="(120,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DBx"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADLx"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_ADD"/> </comp> <comp lib="0" loc="(230,50)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp lib="0" loc="(340,70)" name="Constant"/> <comp lib="0" loc="(390,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AI_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BI_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_res"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_nor"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_nand"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_xor"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(250,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,50)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(260,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,190)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,420)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,580)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,650)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,760)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,780)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,40)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(670,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(400,555)" name="Text"> <a name="text" val="xnor"/> </comp> <comp lib="6" loc="(415,675)" name="Text"> <a name="text" val="xor"/> </comp> <comp loc="(400,220)" name="D_Latch"> <a name="label" val="BI"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,80)" name="D_Latch"> <a name="label" val="AI"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,150)" to="(170,150)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(120,290)" to="(250,290)"/> <wire from="(120,320)" to="(240,320)"/> <wire from="(120,350)" to="(560,350)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(120,410)" to="(230,410)"/> <wire from="(120,470)" to="(250,470)"/> <wire from="(120,500)" to="(270,500)"/> <wire from="(120,590)" to="(190,590)"/> <wire from="(120,60)" to="(200,60)"/> <wire from="(120,620)" to="(200,620)"/> <wire from="(120,650)" to="(220,650)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(140,130)" to="(270,130)"/> <wire from="(140,370)" to="(140,380)"/> <wire from="(140,370)" to="(570,370)"/> <wire from="(140,90)" to="(140,130)"/> <wire from="(160,30)" to="(160,120)"/> <wire from="(160,30)" to="(250,30)"/> <wire from="(170,180)" to="(170,210)"/> <wire from="(170,210)" to="(270,210)"/> <wire from="(170,70)" to="(170,150)"/> <wire from="(170,70)" to="(250,70)"/> <wire from="(190,90)" to="(190,590)"/> <wire from="(190,90)" to="(240,90)"/> <wire from="(200,120)" to="(240,120)"/> <wire from="(200,150)" to="(200,620)"/> <wire from="(200,150)" to="(220,150)"/> <wire from="(200,60)" to="(200,120)"/> <wire from="(220,150)" to="(220,190)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(220,230)" to="(220,650)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(230,380)" to="(230,410)"/> <wire from="(230,380)" to="(580,380)"/> <wire from="(230,50)" to="(240,50)"/> <wire from="(240,120)" to="(240,170)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(240,320)" to="(240,330)"/> <wire from="(240,330)" to="(550,330)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(250,290)" to="(250,320)"/> <wire from="(250,30)" to="(250,40)"/> <wire from="(250,320)" to="(520,320)"/> <wire from="(250,470)" to="(250,640)"/> <wire from="(250,640)" to="(250,750)"/> <wire from="(250,640)" to="(330,640)"/> <wire from="(250,70)" to="(250,80)"/> <wire from="(250,750)" to="(380,750)"/> <wire from="(260,50)" to="(270,50)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(270,130)" to="(270,140)"/> <wire from="(270,170)" to="(270,180)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(270,390)" to="(270,500)"/> <wire from="(270,390)" to="(530,390)"/> <wire from="(270,50)" to="(270,90)"/> <wire from="(270,530)" to="(270,790)"/> <wire from="(270,530)" to="(330,530)"/> <wire from="(270,790)" to="(440,790)"/> <wire from="(270,90)" to="(360,90)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(290,150)" to="(290,190)"/> <wire from="(290,190)" to="(290,230)"/> <wire from="(290,230)" to="(360,230)"/> <wire from="(290,590)" to="(290,770)"/> <wire from="(290,590)" to="(310,590)"/> <wire from="(290,770)" to="(380,770)"/> <wire from="(310,260)" to="(310,430)"/> <wire from="(310,260)" to="(470,260)"/> <wire from="(310,430)" to="(310,500)"/> <wire from="(310,430)" to="(380,430)"/> <wire from="(310,500)" to="(380,500)"/> <wire from="(310,540)" to="(310,590)"/> <wire from="(310,540)" to="(450,540)"/> <wire from="(310,590)" to="(380,590)"/> <wire from="(320,620)" to="(320,660)"/> <wire from="(320,620)" to="(440,620)"/> <wire from="(320,660)" to="(320,710)"/> <wire from="(320,660)" to="(380,660)"/> <wire from="(320,710)" to="(380,710)"/> <wire from="(330,270)" to="(330,410)"/> <wire from="(330,270)" to="(490,270)"/> <wire from="(330,410)" to="(330,480)"/> <wire from="(330,410)" to="(380,410)"/> <wire from="(330,480)" to="(380,480)"/> <wire from="(330,530)" to="(330,570)"/> <wire from="(330,530)" to="(480,530)"/> <wire from="(330,570)" to="(340,570)"/> <wire from="(340,210)" to="(360,210)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(350,640)" to="(360,640)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,640)" to="(360,690)"/> <wire from="(360,640)" to="(380,640)"/> <wire from="(360,690)" to="(380,690)"/> <wire from="(380,130)" to="(380,150)"/> <wire from="(380,130)" to="(420,130)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(380,280)" to="(380,300)"/> <wire from="(380,280)" to="(420,280)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(400,70)" to="(420,70)"/> <wire from="(420,210)" to="(420,280)"/> <wire from="(420,210)" to="(470,210)"/> <wire from="(420,420)" to="(450,420)"/> <wire from="(420,490)" to="(480,490)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(420,650)" to="(430,650)"/> <wire from="(420,70)" to="(420,130)"/> <wire from="(420,70)" to="(490,70)"/> <wire from="(420,700)" to="(430,700)"/> <wire from="(420,760)" to="(430,760)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(430,660)" to="(470,660)"/> <wire from="(430,680)" to="(430,700)"/> <wire from="(430,680)" to="(440,680)"/> <wire from="(430,760)" to="(430,770)"/> <wire from="(430,770)" to="(470,770)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(440,580)" to="(640,580)"/> <wire from="(450,420)" to="(450,540)"/> <wire from="(450,420)" to="(600,420)"/> <wire from="(460,680)" to="(470,680)"/> <wire from="(460,790)" to="(470,790)"/> <wire from="(470,210)" to="(470,260)"/> <wire from="(480,490)" to="(480,530)"/> <wire from="(480,490)" to="(620,490)"/> <wire from="(490,70)" to="(490,270)"/> <wire from="(500,670)" to="(610,670)"/> <wire from="(500,780)" to="(630,780)"/> <wire from="(520,20)" to="(520,320)"/> <wire from="(520,20)" to="(630,20)"/> <wire from="(530,160)" to="(530,390)"/> <wire from="(530,160)" to="(620,160)"/> <wire from="(540,120)" to="(540,300)"/> <wire from="(540,120)" to="(620,120)"/> <wire from="(540,300)" to="(640,300)"/> <wire from="(550,100)" to="(550,330)"/> <wire from="(550,100)" to="(630,100)"/> <wire from="(560,60)" to="(560,350)"/> <wire from="(560,60)" to="(630,60)"/> <wire from="(570,140)" to="(570,370)"/> <wire from="(570,140)" to="(630,140)"/> <wire from="(580,180)" to="(580,380)"/> <wire from="(580,180)" to="(630,180)"/> <wire from="(590,240)" to="(620,240)"/> <wire from="(590,80)" to="(590,240)"/> <wire from="(590,80)" to="(620,80)"/> <wire from="(600,270)" to="(600,420)"/> <wire from="(600,270)" to="(690,270)"/> <wire from="(600,40)" to="(600,270)"/> <wire from="(600,40)" to="(620,40)"/> <wire from="(610,200)" to="(610,670)"/> <wire from="(610,200)" to="(620,200)"/> <wire from="(620,240)" to="(620,490)"/> <wire from="(620,240)" to="(690,240)"/> <wire from="(630,100)" to="(630,110)"/> <wire from="(630,140)" to="(630,150)"/> <wire from="(630,180)" to="(630,190)"/> <wire from="(630,20)" to="(630,30)"/> <wire from="(630,220)" to="(630,780)"/> <wire from="(630,220)" to="(670,220)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(640,120)" to="(650,120)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(640,200)" to="(650,200)"/> <wire from="(640,300)" to="(640,580)"/> <wire from="(640,300)" to="(650,300)"/> <wire from="(640,40)" to="(650,40)"/> <wire from="(640,80)" to="(650,80)"/> <wire from="(650,100)" to="(650,120)"/> <wire from="(650,100)" to="(690,100)"/> <wire from="(650,120)" to="(650,160)"/> <wire from="(650,160)" to="(650,200)"/> <wire from="(650,40)" to="(650,80)"/> <wire from="(650,80)" to="(650,100)"/> <wire from="(670,130)" to="(670,220)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(670,300)" to="(690,300)"/> </circuit> <circuit name="ALU_ODD_BIT"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_ODD_BIT"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="80" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="92" y="41">ALU_ODD_BIT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="64" y="179">cin</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="59">NDB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="129">nand</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="89">SB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="70">DB/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="119">nor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="198">pres</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="150">SUMS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="230">DBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="129">ORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="109">ANDS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="79">0/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="139">SRS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="115" y="139">xor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="240">ADLx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="119">EORS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="114" y="89">/cout</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="65" y="219">SBx</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="100">ADL/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="116" y="69">/res</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,120" x="50" y="80"/> <circ-port dir="in" pin="120,150" x="50" y="90"/> <circ-port dir="in" pin="120,180" x="50" y="100"/> <circ-port dir="in" pin="120,290" x="50" y="110"/> <circ-port dir="in" pin="120,320" x="50" y="120"/> <circ-port dir="in" pin="120,350" x="50" y="130"/> <circ-port dir="in" pin="120,380" x="50" y="140"/> <circ-port dir="in" pin="120,410" x="50" y="150"/> <circ-port dir="in" pin="120,470" x="50" y="180"/> <circ-port dir="in" pin="120,500" x="50" y="200"/> <circ-port dir="in" pin="120,590" x="50" y="220"/> <circ-port dir="in" pin="120,60" x="50" y="60"/> <circ-port dir="in" pin="120,620" x="50" y="230"/> <circ-port dir="in" pin="120,650" x="50" y="240"/> <circ-port dir="in" pin="120,90" x="50" y="70"/> <circ-port dir="out" pin="390,150" x="70" y="260"/> <circ-port dir="out" pin="390,300" x="110" y="260"/> <circ-port dir="out" pin="690,100" x="130" y="70"/> <circ-port dir="out" pin="690,130" x="130" y="90"/> <circ-port dir="out" pin="690,240" x="130" y="120"/> <circ-port dir="out" pin="690,270" x="130" y="130"/> <circ-port dir="out" pin="690,300" x="130" y="140"/> </appear> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADD"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_ADD"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ANDS"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EORS"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ORS"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SRS"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SUMS"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="prev_res"/> </comp> <comp lib="0" loc="(120,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SBx"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="NDB_ADD"/> </comp> <comp lib="0" loc="(120,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DBx"/> </comp> <comp lib="0" loc="(120,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADLx"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_ADD"/> </comp> <comp lib="0" loc="(230,50)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp lib="0" loc="(340,70)" name="Constant"/> <comp lib="0" loc="(390,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AI_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BI_Debug"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_res"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_nor"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_nand"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="r_xor"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(250,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,50)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(260,90)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,190)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(340,570)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,770)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,420)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,580)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,650)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,760)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,670)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,780)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,40)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(640,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="6" loc="(400,555)" name="Text"> <a name="text" val="xor"/> </comp> <comp lib="6" loc="(415,675)" name="Text"> <a name="text" val="xor"/> </comp> <comp loc="(400,220)" name="D_Latch"> <a name="label" val="BI"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,80)" name="D_Latch"> <a name="label" val="AI"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(160,120)"/> <wire from="(120,150)" to="(170,150)"/> <wire from="(120,180)" to="(170,180)"/> <wire from="(120,290)" to="(250,290)"/> <wire from="(120,320)" to="(240,320)"/> <wire from="(120,350)" to="(560,350)"/> <wire from="(120,380)" to="(140,380)"/> <wire from="(120,410)" to="(230,410)"/> <wire from="(120,470)" to="(250,470)"/> <wire from="(120,500)" to="(270,500)"/> <wire from="(120,590)" to="(190,590)"/> <wire from="(120,60)" to="(200,60)"/> <wire from="(120,620)" to="(200,620)"/> <wire from="(120,650)" to="(220,650)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(140,130)" to="(270,130)"/> <wire from="(140,370)" to="(140,380)"/> <wire from="(140,370)" to="(570,370)"/> <wire from="(140,90)" to="(140,130)"/> <wire from="(160,30)" to="(160,120)"/> <wire from="(160,30)" to="(250,30)"/> <wire from="(170,180)" to="(170,210)"/> <wire from="(170,210)" to="(270,210)"/> <wire from="(170,70)" to="(170,150)"/> <wire from="(170,70)" to="(250,70)"/> <wire from="(190,90)" to="(190,590)"/> <wire from="(190,90)" to="(240,90)"/> <wire from="(200,120)" to="(240,120)"/> <wire from="(200,150)" to="(200,620)"/> <wire from="(200,150)" to="(220,150)"/> <wire from="(200,60)" to="(200,120)"/> <wire from="(220,150)" to="(220,190)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(220,230)" to="(220,650)"/> <wire from="(220,230)" to="(260,230)"/> <wire from="(230,380)" to="(230,410)"/> <wire from="(230,380)" to="(580,380)"/> <wire from="(230,50)" to="(240,50)"/> <wire from="(240,120)" to="(240,170)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(240,320)" to="(240,330)"/> <wire from="(240,330)" to="(550,330)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(250,290)" to="(250,320)"/> <wire from="(250,30)" to="(250,40)"/> <wire from="(250,320)" to="(520,320)"/> <wire from="(250,470)" to="(250,640)"/> <wire from="(250,640)" to="(250,750)"/> <wire from="(250,640)" to="(330,640)"/> <wire from="(250,70)" to="(250,80)"/> <wire from="(250,750)" to="(380,750)"/> <wire from="(260,50)" to="(270,50)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(270,130)" to="(270,140)"/> <wire from="(270,170)" to="(270,180)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(270,390)" to="(270,500)"/> <wire from="(270,390)" to="(530,390)"/> <wire from="(270,50)" to="(270,90)"/> <wire from="(270,530)" to="(270,590)"/> <wire from="(270,530)" to="(480,530)"/> <wire from="(270,590)" to="(270,770)"/> <wire from="(270,590)" to="(380,590)"/> <wire from="(270,770)" to="(340,770)"/> <wire from="(270,90)" to="(360,90)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(280,190)" to="(290,190)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(290,150)" to="(290,190)"/> <wire from="(290,190)" to="(290,230)"/> <wire from="(290,230)" to="(360,230)"/> <wire from="(290,540)" to="(290,570)"/> <wire from="(290,540)" to="(450,540)"/> <wire from="(290,570)" to="(320,570)"/> <wire from="(300,610)" to="(300,790)"/> <wire from="(300,610)" to="(360,610)"/> <wire from="(300,790)" to="(440,790)"/> <wire from="(310,260)" to="(310,430)"/> <wire from="(310,260)" to="(470,260)"/> <wire from="(310,430)" to="(310,500)"/> <wire from="(310,430)" to="(380,430)"/> <wire from="(310,500)" to="(380,500)"/> <wire from="(320,620)" to="(320,660)"/> <wire from="(320,620)" to="(440,620)"/> <wire from="(320,660)" to="(320,710)"/> <wire from="(320,660)" to="(380,660)"/> <wire from="(320,710)" to="(380,710)"/> <wire from="(330,270)" to="(330,410)"/> <wire from="(330,270)" to="(490,270)"/> <wire from="(330,410)" to="(330,480)"/> <wire from="(330,410)" to="(380,410)"/> <wire from="(330,480)" to="(380,480)"/> <wire from="(340,210)" to="(360,210)"/> <wire from="(340,570)" to="(360,570)"/> <wire from="(340,70)" to="(360,70)"/> <wire from="(350,640)" to="(360,640)"/> <wire from="(360,570)" to="(360,610)"/> <wire from="(360,570)" to="(380,570)"/> <wire from="(360,640)" to="(360,690)"/> <wire from="(360,640)" to="(380,640)"/> <wire from="(360,690)" to="(380,690)"/> <wire from="(360,770)" to="(380,770)"/> <wire from="(380,130)" to="(380,150)"/> <wire from="(380,130)" to="(420,130)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(380,280)" to="(380,300)"/> <wire from="(380,280)" to="(420,280)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(400,70)" to="(420,70)"/> <wire from="(420,210)" to="(420,280)"/> <wire from="(420,210)" to="(470,210)"/> <wire from="(420,420)" to="(450,420)"/> <wire from="(420,490)" to="(480,490)"/> <wire from="(420,580)" to="(440,580)"/> <wire from="(420,650)" to="(430,650)"/> <wire from="(420,70)" to="(420,130)"/> <wire from="(420,70)" to="(490,70)"/> <wire from="(420,700)" to="(430,700)"/> <wire from="(420,760)" to="(430,760)"/> <wire from="(430,650)" to="(430,660)"/> <wire from="(430,660)" to="(470,660)"/> <wire from="(430,680)" to="(430,700)"/> <wire from="(430,680)" to="(440,680)"/> <wire from="(430,760)" to="(430,770)"/> <wire from="(430,770)" to="(470,770)"/> <wire from="(440,580)" to="(440,620)"/> <wire from="(440,580)" to="(640,580)"/> <wire from="(450,420)" to="(450,540)"/> <wire from="(450,420)" to="(600,420)"/> <wire from="(460,680)" to="(470,680)"/> <wire from="(460,790)" to="(470,790)"/> <wire from="(470,210)" to="(470,260)"/> <wire from="(480,490)" to="(480,530)"/> <wire from="(480,490)" to="(620,490)"/> <wire from="(490,70)" to="(490,270)"/> <wire from="(500,670)" to="(610,670)"/> <wire from="(500,780)" to="(630,780)"/> <wire from="(520,20)" to="(520,320)"/> <wire from="(520,20)" to="(630,20)"/> <wire from="(530,160)" to="(530,390)"/> <wire from="(530,160)" to="(620,160)"/> <wire from="(540,120)" to="(540,300)"/> <wire from="(540,120)" to="(620,120)"/> <wire from="(540,300)" to="(640,300)"/> <wire from="(550,100)" to="(550,330)"/> <wire from="(550,100)" to="(630,100)"/> <wire from="(560,60)" to="(560,350)"/> <wire from="(560,60)" to="(630,60)"/> <wire from="(570,140)" to="(570,370)"/> <wire from="(570,140)" to="(630,140)"/> <wire from="(580,180)" to="(580,380)"/> <wire from="(580,180)" to="(630,180)"/> <wire from="(590,240)" to="(620,240)"/> <wire from="(590,80)" to="(590,240)"/> <wire from="(590,80)" to="(620,80)"/> <wire from="(600,270)" to="(600,420)"/> <wire from="(600,270)" to="(690,270)"/> <wire from="(600,40)" to="(600,270)"/> <wire from="(600,40)" to="(620,40)"/> <wire from="(610,200)" to="(610,670)"/> <wire from="(610,200)" to="(620,200)"/> <wire from="(620,240)" to="(620,490)"/> <wire from="(620,240)" to="(690,240)"/> <wire from="(630,100)" to="(630,110)"/> <wire from="(630,140)" to="(630,150)"/> <wire from="(630,180)" to="(630,190)"/> <wire from="(630,20)" to="(630,30)"/> <wire from="(630,220)" to="(630,780)"/> <wire from="(630,220)" to="(670,220)"/> <wire from="(630,60)" to="(630,70)"/> <wire from="(640,120)" to="(650,120)"/> <wire from="(640,160)" to="(650,160)"/> <wire from="(640,200)" to="(650,200)"/> <wire from="(640,300)" to="(640,580)"/> <wire from="(640,300)" to="(690,300)"/> <wire from="(640,40)" to="(650,40)"/> <wire from="(640,80)" to="(650,80)"/> <wire from="(650,100)" to="(650,120)"/> <wire from="(650,100)" to="(690,100)"/> <wire from="(650,120)" to="(650,160)"/> <wire from="(650,160)" to="(650,200)"/> <wire from="(650,40)" to="(650,80)"/> <wire from="(650,80)" to="(650,100)"/> <wire from="(670,130)" to="(670,220)"/> <wire from="(670,130)" to="(690,130)"/> </circuit> <circuit name="BCD_CARRY"> <a name="appearance" val="custom"/> <a name="circuit" val="BCD_CARRY"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="100" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="43">BCD_CARRY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="60">/ACIN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="70" y="70">carry4</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="67" y="98">nors</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="119">nands</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="139">xors</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="121" y="70">DC3</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="122" y="90">DC7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="80">/DAA</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,140" x="50" y="60"/> <circ-port dir="in" pin="120,180" x="50" y="70"/> <circ-port dir="in" pin="120,220" x="50" y="80"/> <circ-port dir="in" pin="140,380" x="50" y="100"/> <circ-port dir="in" pin="140,480" x="50" y="120"/> <circ-port dir="in" pin="140,580" x="50" y="140"/> <circ-port dir="out" pin="880,200" x="140" y="70"/> <circ-port dir="out" pin="880,510" x="140" y="90"/> </appear> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ACIN"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry4"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DAA"/> </comp> <comp lib="0" loc="(140,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nors"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="nands"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="xors"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,380)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(160,480)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(160,580)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(880,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DC3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(880,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DC7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(330,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,150)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,460)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(560,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,190)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(580,500)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(600,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,260)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,450)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,600)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,190)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,500)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(770,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(770,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,200)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(820,510)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(366,584)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="and5"/> </comp> <comp lib="6" loc="(367,484)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="and5"/> </comp> <comp lib="6" loc="(388,384)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="~/carry4"/> </comp> <comp lib="6" loc="(419,132)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="and1"/> </comp> <comp lib="6" loc="(497,532)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="~nxor6"/> </comp> <comp lib="6" loc="(559,244)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="and1"/> </comp> <comp lib="6" loc="(590,185)" name="Text"> <a name="text" val="c"/> </comp> <comp lib="6" loc="(609,541)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="nxor6"/> </comp> <comp lib="6" loc="(615,130)" name="Text"> <a name="text" val="b"/> </comp> <comp lib="6" loc="(675,165)" name="Text"> <a name="text" val="~(b | c)"/> </comp> <comp lib="6" loc="(675,260)" name="Text"> <a name="text" val="a"/> </comp> <wire from="(120,140)" to="(310,140)"/> <wire from="(120,180)" to="(300,180)"/> <wire from="(120,220)" to="(150,220)"/> <wire from="(140,380)" to="(160,380)"/> <wire from="(140,480)" to="(160,480)"/> <wire from="(140,580)" to="(160,580)"/> <wire from="(150,70)" to="(150,220)"/> <wire from="(150,70)" to="(730,70)"/> <wire from="(180,300)" to="(190,300)"/> <wire from="(180,320)" to="(270,320)"/> <wire from="(180,400)" to="(210,400)"/> <wire from="(180,410)" to="(200,410)"/> <wire from="(180,420)" to="(220,420)"/> <wire from="(180,450)" to="(310,450)"/> <wire from="(180,460)" to="(530,460)"/> <wire from="(180,510)" to="(240,510)"/> <wire from="(180,530)" to="(250,530)"/> <wire from="(180,550)" to="(300,550)"/> <wire from="(180,560)" to="(460,560)"/> <wire from="(180,570)" to="(280,570)"/> <wire from="(190,190)" to="(190,300)"/> <wire from="(190,190)" to="(350,190)"/> <wire from="(200,100)" to="(200,250)"/> <wire from="(200,100)" to="(390,100)"/> <wire from="(200,250)" to="(200,410)"/> <wire from="(200,250)" to="(540,250)"/> <wire from="(210,160)" to="(210,400)"/> <wire from="(210,160)" to="(310,160)"/> <wire from="(220,90)" to="(220,420)"/> <wire from="(220,90)" to="(390,90)"/> <wire from="(240,210)" to="(240,510)"/> <wire from="(240,210)" to="(520,210)"/> <wire from="(250,230)" to="(250,530)"/> <wire from="(250,230)" to="(510,230)"/> <wire from="(270,240)" to="(270,320)"/> <wire from="(270,240)" to="(440,240)"/> <wire from="(280,440)" to="(280,570)"/> <wire from="(280,440)" to="(570,440)"/> <wire from="(300,180)" to="(300,390)"/> <wire from="(300,390)" to="(410,390)"/> <wire from="(300,510)" to="(300,550)"/> <wire from="(300,510)" to="(520,510)"/> <wire from="(330,450)" to="(350,450)"/> <wire from="(340,150)" to="(350,150)"/> <wire from="(350,150)" to="(350,160)"/> <wire from="(350,160)" to="(360,160)"/> <wire from="(350,180)" to="(350,190)"/> <wire from="(350,180)" to="(360,180)"/> <wire from="(350,450)" to="(350,490)"/> <wire from="(350,490)" to="(350,590)"/> <wire from="(350,490)" to="(520,490)"/> <wire from="(350,590)" to="(570,590)"/> <wire from="(390,100)" to="(390,140)"/> <wire from="(390,140)" to="(400,140)"/> <wire from="(400,170)" to="(410,170)"/> <wire from="(410,170)" to="(410,270)"/> <wire from="(410,170)" to="(520,170)"/> <wire from="(410,270)" to="(570,270)"/> <wire from="(410,390)" to="(410,480)"/> <wire from="(410,480)" to="(410,610)"/> <wire from="(410,480)" to="(520,480)"/> <wire from="(410,610)" to="(570,610)"/> <wire from="(410,90)" to="(440,90)"/> <wire from="(420,140)" to="(430,140)"/> <wire from="(430,140)" to="(430,200)"/> <wire from="(430,200)" to="(520,200)"/> <wire from="(440,130)" to="(450,130)"/> <wire from="(440,150)" to="(440,240)"/> <wire from="(440,150)" to="(450,150)"/> <wire from="(440,240)" to="(530,240)"/> <wire from="(440,90)" to="(440,130)"/> <wire from="(440,90)" to="(510,90)"/> <wire from="(460,520)" to="(460,560)"/> <wire from="(460,520)" to="(520,520)"/> <wire from="(460,560)" to="(530,560)"/> <wire from="(490,140)" to="(500,140)"/> <wire from="(500,140)" to="(500,180)"/> <wire from="(500,180)" to="(520,180)"/> <wire from="(510,130)" to="(570,130)"/> <wire from="(510,150)" to="(510,230)"/> <wire from="(510,150)" to="(570,150)"/> <wire from="(510,90)" to="(510,130)"/> <wire from="(530,230)" to="(530,240)"/> <wire from="(530,230)" to="(630,230)"/> <wire from="(530,550)" to="(530,560)"/> <wire from="(530,550)" to="(580,550)"/> <wire from="(550,460)" to="(570,460)"/> <wire from="(560,250)" to="(570,250)"/> <wire from="(580,190)" to="(630,190)"/> <wire from="(580,500)" to="(630,500)"/> <wire from="(600,550)" to="(630,550)"/> <wire from="(610,140)" to="(620,140)"/> <wire from="(610,260)" to="(620,260)"/> <wire from="(610,450)" to="(620,450)"/> <wire from="(610,600)" to="(620,600)"/> <wire from="(620,140)" to="(620,170)"/> <wire from="(620,170)" to="(630,170)"/> <wire from="(620,250)" to="(620,260)"/> <wire from="(620,250)" to="(630,250)"/> <wire from="(620,450)" to="(620,480)"/> <wire from="(620,480)" to="(630,480)"/> <wire from="(620,570)" to="(620,600)"/> <wire from="(620,570)" to="(630,570)"/> <wire from="(670,180)" to="(690,180)"/> <wire from="(670,240)" to="(680,240)"/> <wire from="(670,490)" to="(690,490)"/> <wire from="(670,560)" to="(680,560)"/> <wire from="(680,200)" to="(680,240)"/> <wire from="(680,200)" to="(690,200)"/> <wire from="(680,510)" to="(680,560)"/> <wire from="(680,510)" to="(690,510)"/> <wire from="(720,190)" to="(790,190)"/> <wire from="(720,500)" to="(790,500)"/> <wire from="(730,210)" to="(730,520)"/> <wire from="(730,210)" to="(750,210)"/> <wire from="(730,520)" to="(750,520)"/> <wire from="(730,70)" to="(730,210)"/> <wire from="(770,210)" to="(790,210)"/> <wire from="(770,520)" to="(790,520)"/> <wire from="(820,200)" to="(880,200)"/> <wire from="(820,510)" to="(880,510)"/> </circuit> <circuit name="ALU_ADD"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_ADD"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="210" stroke="#000000" stroke-width="2" width="120" x="50" y="60"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="109" y="50">ADDER_HOLD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="70">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="79" y="90">ADD/SB06</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="109">ADD/ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="99">ADD/SB7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="139">/res In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="109" y="255">ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="142" y="210">ADL Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="145" y="120">SB Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="140" y="69">/ADDx Out</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="120,140" x="50" y="90"/> <circ-port dir="in" pin="120,170" x="50" y="100"/> <circ-port dir="in" pin="120,200" x="50" y="110"/> <circ-port dir="in" pin="120,70" x="50" y="70"/> <circ-port dir="in" pin="180,280" x="50" y="140"/> <circ-port dir="out" pin="580,70" x="170" y="70"/> <circ-port dir="out" pin="660,140" x="170" y="90"/> <circ-port dir="out" pin="660,170" x="170" y="100"/> <circ-port dir="out" pin="660,200" x="170" y="110"/> <circ-port dir="out" pin="660,230" x="170" y="120"/> <circ-port dir="out" pin="660,260" x="170" y="130"/> <circ-port dir="out" pin="660,290" x="170" y="140"/> <circ-port dir="out" pin="660,320" x="170" y="150"/> <circ-port dir="out" pin="660,350" x="170" y="160"/> <circ-port dir="out" pin="660,410" x="170" y="180"/> <circ-port dir="out" pin="660,440" x="170" y="190"/> <circ-port dir="out" pin="660,470" x="170" y="200"/> <circ-port dir="out" pin="660,500" x="170" y="210"/> <circ-port dir="out" pin="660,530" x="170" y="220"/> <circ-port dir="out" pin="660,560" x="170" y="230"/> <circ-port dir="out" pin="660,590" x="170" y="240"/> <circ-port dir="out" pin="660,620" x="170" y="250"/> <circ-port dir="out" pin="660,680" x="110" y="270"/> </appear> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB06"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB7"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_ADL"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(180,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_res"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(220,430)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(550,30)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(570,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ADDx"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(660,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,500)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,530)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADD_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(620,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,230)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,350)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,410)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,470)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,500)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,560)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,590)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(620,620)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(360,140)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,210)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,280)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,350)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,420)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,490)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,560)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(360,630)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <wire from="(120,140)" to="(260,140)"/> <wire from="(120,170)" to="(250,170)"/> <wire from="(120,200)" to="(210,200)"/> <wire from="(120,70)" to="(310,70)"/> <wire from="(180,280)" to="(190,280)"/> <wire from="(190,280)" to="(190,430)"/> <wire from="(190,430)" to="(220,430)"/> <wire from="(210,200)" to="(210,450)"/> <wire from="(210,450)" to="(460,450)"/> <wire from="(240,150)" to="(240,350)"/> <wire from="(240,150)" to="(320,150)"/> <wire from="(240,360)" to="(260,360)"/> <wire from="(240,370)" to="(270,370)"/> <wire from="(240,380)" to="(280,380)"/> <wire from="(240,390)" to="(270,390)"/> <wire from="(240,400)" to="(260,400)"/> <wire from="(240,410)" to="(250,410)"/> <wire from="(240,420)" to="(240,640)"/> <wire from="(240,640)" to="(320,640)"/> <wire from="(250,170)" to="(250,240)"/> <wire from="(250,240)" to="(460,240)"/> <wire from="(250,410)" to="(250,570)"/> <wire from="(250,570)" to="(320,570)"/> <wire from="(260,140)" to="(260,170)"/> <wire from="(260,170)" to="(460,170)"/> <wire from="(260,220)" to="(260,360)"/> <wire from="(260,220)" to="(320,220)"/> <wire from="(260,400)" to="(260,500)"/> <wire from="(260,500)" to="(320,500)"/> <wire from="(270,290)" to="(270,370)"/> <wire from="(270,290)" to="(320,290)"/> <wire from="(270,390)" to="(270,430)"/> <wire from="(270,430)" to="(320,430)"/> <wire from="(280,360)" to="(280,380)"/> <wire from="(280,360)" to="(320,360)"/> <wire from="(310,130)" to="(310,200)"/> <wire from="(310,130)" to="(320,130)"/> <wire from="(310,200)" to="(310,270)"/> <wire from="(310,200)" to="(320,200)"/> <wire from="(310,270)" to="(310,340)"/> <wire from="(310,270)" to="(320,270)"/> <wire from="(310,340)" to="(310,410)"/> <wire from="(310,340)" to="(320,340)"/> <wire from="(310,410)" to="(310,480)"/> <wire from="(310,410)" to="(320,410)"/> <wire from="(310,480)" to="(310,550)"/> <wire from="(310,480)" to="(320,480)"/> <wire from="(310,550)" to="(310,620)"/> <wire from="(310,550)" to="(320,550)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(310,70)" to="(310,130)"/> <wire from="(360,130)" to="(380,130)"/> <wire from="(360,150)" to="(380,150)"/> <wire from="(360,200)" to="(390,200)"/> <wire from="(360,220)" to="(390,220)"/> <wire from="(360,270)" to="(400,270)"/> <wire from="(360,290)" to="(400,290)"/> <wire from="(360,340)" to="(410,340)"/> <wire from="(360,360)" to="(410,360)"/> <wire from="(360,410)" to="(420,410)"/> <wire from="(360,430)" to="(420,430)"/> <wire from="(360,480)" to="(430,480)"/> <wire from="(360,500)" to="(430,500)"/> <wire from="(360,550)" to="(440,550)"/> <wire from="(360,570)" to="(440,570)"/> <wire from="(360,620)" to="(450,620)"/> <wire from="(360,640)" to="(450,640)"/> <wire from="(380,150)" to="(380,690)"/> <wire from="(380,150)" to="(480,150)"/> <wire from="(380,40)" to="(380,130)"/> <wire from="(380,40)" to="(530,40)"/> <wire from="(380,690)" to="(550,690)"/> <wire from="(390,220)" to="(390,700)"/> <wire from="(390,220)" to="(490,220)"/> <wire from="(390,50)" to="(390,200)"/> <wire from="(390,50)" to="(530,50)"/> <wire from="(390,700)" to="(550,700)"/> <wire from="(400,290)" to="(400,710)"/> <wire from="(400,290)" to="(500,290)"/> <wire from="(400,60)" to="(400,270)"/> <wire from="(400,60)" to="(530,60)"/> <wire from="(400,710)" to="(550,710)"/> <wire from="(410,360)" to="(410,720)"/> <wire from="(410,360)" to="(510,360)"/> <wire from="(410,70)" to="(410,340)"/> <wire from="(410,70)" to="(530,70)"/> <wire from="(410,720)" to="(550,720)"/> <wire from="(420,430)" to="(420,730)"/> <wire from="(420,430)" to="(520,430)"/> <wire from="(420,730)" to="(550,730)"/> <wire from="(420,80)" to="(420,410)"/> <wire from="(420,80)" to="(530,80)"/> <wire from="(430,500)" to="(430,740)"/> <wire from="(430,500)" to="(510,500)"/> <wire from="(430,740)" to="(550,740)"/> <wire from="(430,90)" to="(430,480)"/> <wire from="(430,90)" to="(530,90)"/> <wire from="(440,100)" to="(440,550)"/> <wire from="(440,100)" to="(530,100)"/> <wire from="(440,570)" to="(440,750)"/> <wire from="(440,570)" to="(500,570)"/> <wire from="(440,750)" to="(550,750)"/> <wire from="(450,110)" to="(450,620)"/> <wire from="(450,110)" to="(530,110)"/> <wire from="(450,640)" to="(450,760)"/> <wire from="(450,640)" to="(490,640)"/> <wire from="(450,760)" to="(550,760)"/> <wire from="(460,120)" to="(460,170)"/> <wire from="(460,120)" to="(610,120)"/> <wire from="(460,240)" to="(460,330)"/> <wire from="(460,330)" to="(610,330)"/> <wire from="(460,390)" to="(460,450)"/> <wire from="(460,390)" to="(610,390)"/> <wire from="(480,140)" to="(480,150)"/> <wire from="(480,140)" to="(590,140)"/> <wire from="(490,170)" to="(490,220)"/> <wire from="(490,170)" to="(580,170)"/> <wire from="(490,620)" to="(490,640)"/> <wire from="(490,620)" to="(600,620)"/> <wire from="(490,640)" to="(550,640)"/> <wire from="(500,200)" to="(500,290)"/> <wire from="(500,200)" to="(570,200)"/> <wire from="(500,570)" to="(500,590)"/> <wire from="(500,570)" to="(540,570)"/> <wire from="(500,590)" to="(600,590)"/> <wire from="(510,230)" to="(510,360)"/> <wire from="(510,230)" to="(560,230)"/> <wire from="(510,500)" to="(510,560)"/> <wire from="(510,500)" to="(530,500)"/> <wire from="(510,560)" to="(600,560)"/> <wire from="(520,260)" to="(520,430)"/> <wire from="(520,260)" to="(600,260)"/> <wire from="(520,430)" to="(520,530)"/> <wire from="(520,530)" to="(600,530)"/> <wire from="(530,290)" to="(530,500)"/> <wire from="(530,290)" to="(600,290)"/> <wire from="(540,320)" to="(540,570)"/> <wire from="(540,320)" to="(600,320)"/> <wire from="(550,30)" to="(560,30)"/> <wire from="(550,350)" to="(550,640)"/> <wire from="(550,350)" to="(600,350)"/> <wire from="(560,230)" to="(560,500)"/> <wire from="(560,230)" to="(600,230)"/> <wire from="(560,30)" to="(560,70)"/> <wire from="(560,500)" to="(600,500)"/> <wire from="(560,70)" to="(580,70)"/> <wire from="(570,200)" to="(570,470)"/> <wire from="(570,200)" to="(600,200)"/> <wire from="(570,470)" to="(600,470)"/> <wire from="(570,680)" to="(660,680)"/> <wire from="(580,170)" to="(580,440)"/> <wire from="(580,170)" to="(600,170)"/> <wire from="(580,440)" to="(600,440)"/> <wire from="(590,140)" to="(590,410)"/> <wire from="(590,140)" to="(600,140)"/> <wire from="(590,410)" to="(600,410)"/> <wire from="(610,120)" to="(610,130)"/> <wire from="(610,130)" to="(610,160)"/> <wire from="(610,160)" to="(610,190)"/> <wire from="(610,190)" to="(610,220)"/> <wire from="(610,220)" to="(610,250)"/> <wire from="(610,250)" to="(610,280)"/> <wire from="(610,280)" to="(610,310)"/> <wire from="(610,330)" to="(610,340)"/> <wire from="(610,390)" to="(610,400)"/> <wire from="(610,400)" to="(610,430)"/> <wire from="(610,430)" to="(610,460)"/> <wire from="(610,460)" to="(610,490)"/> <wire from="(610,490)" to="(610,520)"/> <wire from="(610,520)" to="(610,550)"/> <wire from="(610,550)" to="(610,580)"/> <wire from="(610,580)" to="(610,610)"/> <wire from="(620,140)" to="(660,140)"/> <wire from="(620,170)" to="(660,170)"/> <wire from="(620,200)" to="(660,200)"/> <wire from="(620,230)" to="(660,230)"/> <wire from="(620,260)" to="(660,260)"/> <wire from="(620,290)" to="(660,290)"/> <wire from="(620,320)" to="(660,320)"/> <wire from="(620,350)" to="(660,350)"/> <wire from="(620,410)" to="(660,410)"/> <wire from="(620,440)" to="(660,440)"/> <wire from="(620,470)" to="(660,470)"/> <wire from="(620,500)" to="(660,500)"/> <wire from="(620,530)" to="(660,530)"/> <wire from="(620,560)" to="(660,560)"/> <wire from="(620,590)" to="(660,590)"/> <wire from="(620,620)" to="(660,620)"/> </circuit> <circuit name="ALU_BCD"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_BCD"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="200" stroke="#000000" stroke-width="2" width="90" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="95" y="41">BCD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="60">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="80">ACR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="99">/DAA</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="68" y="110">/DSA</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="164">SB In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="229">/ADDx In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="112" y="104">BCD Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="70">/carry3</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,110" x="50" y="70"/> <circ-port dir="in" pin="120,140" x="50" y="80"/> <circ-port dir="in" pin="120,210" x="50" y="100"/> <circ-port dir="in" pin="120,240" x="50" y="110"/> <circ-port dir="in" pin="120,400" x="50" y="130"/> <circ-port dir="in" pin="120,430" x="50" y="140"/> <circ-port dir="in" pin="120,460" x="50" y="150"/> <circ-port dir="in" pin="120,490" x="50" y="160"/> <circ-port dir="in" pin="120,630" x="50" y="170"/> <circ-port dir="in" pin="120,660" x="50" y="180"/> <circ-port dir="in" pin="120,690" x="50" y="190"/> <circ-port dir="in" pin="120,70" x="50" y="60"/> <circ-port dir="in" pin="120,720" x="50" y="200"/> <circ-port dir="in" pin="160,870" x="50" y="230"/> <circ-port dir="out" pin="690,400" x="140" y="70"/> <circ-port dir="out" pin="690,430" x="140" y="80"/> <circ-port dir="out" pin="690,460" x="140" y="90"/> <circ-port dir="out" pin="690,490" x="140" y="100"/> <circ-port dir="out" pin="690,630" x="140" y="110"/> <circ-port dir="out" pin="690,660" x="140" y="120"/> <circ-port dir="out" pin="690,690" x="140" y="130"/> <circ-port dir="out" pin="690,720" x="140" y="140"/> </appear> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_carry3"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DAA"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DSA"/> </comp> <comp lib="0" loc="(120,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB0"/> </comp> <comp lib="0" loc="(120,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB1"/> </comp> <comp lib="0" loc="(120,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB2"/> </comp> <comp lib="0" loc="(120,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB3"/> </comp> <comp lib="0" loc="(120,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB4"/> </comp> <comp lib="0" loc="(120,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB5"/> </comp> <comp lib="0" loc="(120,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB6"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(120,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SB7"/> </comp> <comp lib="0" loc="(160,870)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ADDx"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,870)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="out7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,500)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,530)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,760)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,130)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,450)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,480)" name="NAND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,510)" name="NAND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,540)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,680)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,710)" name="NAND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,740)" name="NAND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,770)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,470)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,530)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,700)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,760)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,650)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,430)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,460)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,490)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,660)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,690)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,720)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(295,375)" name="Text"> <a name="text" val="DAAL"/> </comp> <comp lib="6" loc="(510,180)" name="Text"> <a name="text" val="DAAH"/> </comp> <comp lib="6" loc="(510,240)" name="Text"> <a name="text" val="DSAL"/> </comp> <comp lib="6" loc="(515,120)" name="Text"> <a name="text" val="DAAL"/> </comp> <comp lib="6" loc="(515,320)" name="Text"> <a name="text" val="DSAH"/> </comp> <comp lib="6" loc="(580,385)" name="Text"> <a name="text" val="DSAL"/> </comp> <comp lib="6" loc="(740,570)" name="Text"> <a name="text" val="DAAH"/> </comp> <comp lib="6" loc="(770,615)" name="Text"> <a name="text" val="DSAH"/> </comp> <comp loc="(400,120)" name="D_Latch"> <a name="label" val="daal_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,190)" name="D_Latch"> <a name="label" val="daah_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,260)" name="D_Latch"> <a name="label" val="dsal_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,330)" name="D_Latch"> <a name="label" val="dsah_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,210)" to="(190,210)"/> <wire from="(120,240)" to="(190,240)"/> <wire from="(120,400)" to="(690,400)"/> <wire from="(120,430)" to="(460,430)"/> <wire from="(120,460)" to="(310,460)"/> <wire from="(120,490)" to="(190,490)"/> <wire from="(120,630)" to="(690,630)"/> <wire from="(120,660)" to="(480,660)"/> <wire from="(120,690)" to="(200,690)"/> <wire from="(120,70)" to="(350,70)"/> <wire from="(120,720)" to="(190,720)"/> <wire from="(160,110)" to="(230,110)"/> <wire from="(160,870)" to="(180,870)"/> <wire from="(190,200)" to="(190,210)"/> <wire from="(190,200)" to="(220,200)"/> <wire from="(190,240)" to="(190,280)"/> <wire from="(190,280)" to="(270,280)"/> <wire from="(190,490)" to="(190,560)"/> <wire from="(190,560)" to="(520,560)"/> <wire from="(190,640)" to="(190,720)"/> <wire from="(190,640)" to="(450,640)"/> <wire from="(200,60)" to="(200,140)"/> <wire from="(200,60)" to="(420,60)"/> <wire from="(200,650)" to="(200,690)"/> <wire from="(200,650)" to="(460,650)"/> <wire from="(200,800)" to="(210,800)"/> <wire from="(200,810)" to="(220,810)"/> <wire from="(200,840)" to="(230,840)"/> <wire from="(200,850)" to="(240,850)"/> <wire from="(210,440)" to="(210,490)"/> <wire from="(210,440)" to="(330,440)"/> <wire from="(210,490)" to="(210,520)"/> <wire from="(210,490)" to="(250,490)"/> <wire from="(210,520)" to="(210,800)"/> <wire from="(210,520)" to="(250,520)"/> <wire from="(220,510)" to="(220,540)"/> <wire from="(220,510)" to="(250,510)"/> <wire from="(220,540)" to="(220,810)"/> <wire from="(220,540)" to="(250,540)"/> <wire from="(230,110)" to="(230,140)"/> <wire from="(230,140)" to="(270,140)"/> <wire from="(230,670)" to="(230,720)"/> <wire from="(230,670)" to="(330,670)"/> <wire from="(230,720)" to="(230,750)"/> <wire from="(230,720)" to="(250,720)"/> <wire from="(230,750)" to="(230,840)"/> <wire from="(230,750)" to="(250,750)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(240,740)" to="(240,770)"/> <wire from="(240,740)" to="(250,740)"/> <wire from="(240,770)" to="(240,850)"/> <wire from="(240,770)" to="(250,770)"/> <wire from="(250,120)" to="(250,200)"/> <wire from="(250,120)" to="(290,120)"/> <wire from="(250,200)" to="(360,200)"/> <wire from="(270,140)" to="(270,260)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(270,260)" to="(290,260)"/> <wire from="(270,280)" to="(270,340)"/> <wire from="(270,280)" to="(290,280)"/> <wire from="(270,340)" to="(310,340)"/> <wire from="(290,500)" to="(350,500)"/> <wire from="(290,530)" to="(360,530)"/> <wire from="(290,730)" to="(350,730)"/> <wire from="(290,760)" to="(360,760)"/> <wire from="(310,420)" to="(310,460)"/> <wire from="(310,420)" to="(450,420)"/> <wire from="(320,370)" to="(320,550)"/> <wire from="(320,370)" to="(350,370)"/> <wire from="(320,550)" to="(360,550)"/> <wire from="(320,580)" to="(320,780)"/> <wire from="(320,580)" to="(350,580)"/> <wire from="(320,780)" to="(360,780)"/> <wire from="(330,130)" to="(360,130)"/> <wire from="(330,270)" to="(360,270)"/> <wire from="(330,340)" to="(360,340)"/> <wire from="(330,440)" to="(330,470)"/> <wire from="(330,440)" to="(360,440)"/> <wire from="(330,470)" to="(350,470)"/> <wire from="(330,670)" to="(330,700)"/> <wire from="(330,670)" to="(360,670)"/> <wire from="(330,700)" to="(350,700)"/> <wire from="(340,390)" to="(340,490)"/> <wire from="(340,390)" to="(490,390)"/> <wire from="(340,490)" to="(340,520)"/> <wire from="(340,490)" to="(360,490)"/> <wire from="(340,520)" to="(360,520)"/> <wire from="(340,600)" to="(340,720)"/> <wire from="(340,600)" to="(490,600)"/> <wire from="(340,720)" to="(340,750)"/> <wire from="(340,720)" to="(360,720)"/> <wire from="(340,750)" to="(360,750)"/> <wire from="(350,110)" to="(350,180)"/> <wire from="(350,110)" to="(360,110)"/> <wire from="(350,180)" to="(350,250)"/> <wire from="(350,180)" to="(360,180)"/> <wire from="(350,250)" to="(350,320)"/> <wire from="(350,250)" to="(360,250)"/> <wire from="(350,320)" to="(360,320)"/> <wire from="(350,370)" to="(350,460)"/> <wire from="(350,370)" to="(500,370)"/> <wire from="(350,460)" to="(360,460)"/> <wire from="(350,580)" to="(350,690)"/> <wire from="(350,580)" to="(500,580)"/> <wire from="(350,690)" to="(360,690)"/> <wire from="(350,70)" to="(350,110)"/> <wire from="(400,130)" to="(560,130)"/> <wire from="(400,200)" to="(460,200)"/> <wire from="(400,250)" to="(600,250)"/> <wire from="(400,340)" to="(460,340)"/> <wire from="(400,450)" to="(400,460)"/> <wire from="(400,460)" to="(410,460)"/> <wire from="(400,480)" to="(410,480)"/> <wire from="(400,510)" to="(400,520)"/> <wire from="(400,520)" to="(410,520)"/> <wire from="(400,540)" to="(410,540)"/> <wire from="(400,680)" to="(400,690)"/> <wire from="(400,690)" to="(410,690)"/> <wire from="(400,710)" to="(410,710)"/> <wire from="(400,740)" to="(400,750)"/> <wire from="(400,750)" to="(410,750)"/> <wire from="(400,770)" to="(410,770)"/> <wire from="(420,180)" to="(420,320)"/> <wire from="(420,180)" to="(430,180)"/> <wire from="(420,320)" to="(460,320)"/> <wire from="(420,60)" to="(420,180)"/> <wire from="(440,470)" to="(460,470)"/> <wire from="(440,530)" to="(510,530)"/> <wire from="(440,700)" to="(500,700)"/> <wire from="(440,760)" to="(470,760)"/> <wire from="(450,180)" to="(460,180)"/> <wire from="(450,420)" to="(450,480)"/> <wire from="(450,480)" to="(500,480)"/> <wire from="(450,640)" to="(450,730)"/> <wire from="(450,730)" to="(530,730)"/> <wire from="(460,430)" to="(460,440)"/> <wire from="(460,440)" to="(530,440)"/> <wire from="(460,450)" to="(460,470)"/> <wire from="(460,450)" to="(590,450)"/> <wire from="(460,650)" to="(460,690)"/> <wire from="(460,690)" to="(510,690)"/> <wire from="(470,710)" to="(470,760)"/> <wire from="(470,710)" to="(590,710)"/> <wire from="(480,660)" to="(480,670)"/> <wire from="(480,670)" to="(530,670)"/> <wire from="(490,390)" to="(490,430)"/> <wire from="(490,390)" to="(600,390)"/> <wire from="(490,430)" to="(510,430)"/> <wire from="(490,600)" to="(490,660)"/> <wire from="(490,600)" to="(790,600)"/> <wire from="(490,660)" to="(510,660)"/> <wire from="(500,190)" to="(770,190)"/> <wire from="(500,330)" to="(790,330)"/> <wire from="(500,370)" to="(500,410)"/> <wire from="(500,370)" to="(560,370)"/> <wire from="(500,410)" to="(510,410)"/> <wire from="(500,470)" to="(500,480)"/> <wire from="(500,470)" to="(530,470)"/> <wire from="(500,580)" to="(500,640)"/> <wire from="(500,580)" to="(770,580)"/> <wire from="(500,640)" to="(510,640)"/> <wire from="(500,680)" to="(500,700)"/> <wire from="(500,680)" to="(590,680)"/> <wire from="(510,480)" to="(510,530)"/> <wire from="(510,480)" to="(590,480)"/> <wire from="(510,690)" to="(510,700)"/> <wire from="(510,700)" to="(530,700)"/> <wire from="(520,500)" to="(520,560)"/> <wire from="(520,500)" to="(530,500)"/> <wire from="(550,420)" to="(590,420)"/> <wire from="(550,440)" to="(590,440)"/> <wire from="(550,470)" to="(590,470)"/> <wire from="(550,500)" to="(590,500)"/> <wire from="(550,650)" to="(590,650)"/> <wire from="(550,670)" to="(590,670)"/> <wire from="(550,700)" to="(590,700)"/> <wire from="(550,730)" to="(590,730)"/> <wire from="(560,130)" to="(560,370)"/> <wire from="(600,250)" to="(600,390)"/> <wire from="(630,430)" to="(690,430)"/> <wire from="(630,460)" to="(690,460)"/> <wire from="(630,490)" to="(690,490)"/> <wire from="(630,660)" to="(690,660)"/> <wire from="(630,690)" to="(690,690)"/> <wire from="(630,720)" to="(690,720)"/> <wire from="(770,190)" to="(770,580)"/> <wire from="(790,330)" to="(790,600)"/> </circuit> <circuit name="ALU_AC"> <a name="appearance" val="custom"/> <a name="circuit" val="ALU_AC"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="290" stroke="#000000" stroke-width="2" width="100" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="101" y="41">AC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="70">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="90">SB/AC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="100">AC/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="131">SB/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="110">AC/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="121">SB/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="179">BCD In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="220">SB In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="99" y="327">AC Dbg</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="124" y="259">ADH Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="125" y="239">DB Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="126" y="220">SB Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="240">DB In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="72" y="259">ADH In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="290">SB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="300">DB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="310">ADH_Dirty</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="130,100" x="50" y="70"/> <circ-port dir="in" pin="130,180" x="50" y="90"/> <circ-port dir="in" pin="130,210" x="50" y="100"/> <circ-port dir="in" pin="130,240" x="50" y="110"/> <circ-port dir="in" pin="130,270" x="50" y="120"/> <circ-port dir="in" pin="130,300" x="50" y="130"/> <circ-port dir="in" pin="130,590" x="50" y="290"/> <circ-port dir="in" pin="130,620" x="50" y="300"/> <circ-port dir="in" pin="130,650" x="50" y="310"/> <circ-port dir="in" pin="190,440" x="50" y="180"/> <circ-port dir="in" pin="610,340" x="50" y="220"/> <circ-port dir="in" pin="610,410" x="50" y="240"/> <circ-port dir="in" pin="610,480" x="50" y="260"/> <circ-port dir="out" pin="690,40" x="100" y="340"/> <circ-port dir="out" pin="890,340" x="150" y="220"/> <circ-port dir="out" pin="890,410" x="150" y="240"/> <circ-port dir="out" pin="890,480" x="150" y="260"/> </appear> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_AC"/> </comp> <comp lib="0" loc="(130,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_SB"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_DB"/> </comp> <comp lib="0" loc="(130,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_DB"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADH"/> </comp> <comp lib="0" loc="(130,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_Dirty"/> </comp> <comp lib="0" loc="(130,620)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_Dirty"/> </comp> <comp lib="0" loc="(130,650)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_Dirty"/> </comp> <comp lib="0" loc="(190,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ins"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(210,440)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(490,40)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(610,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(610,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(610,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(690,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="AC_Debug"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(890,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(890,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(890,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(330,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,250)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,390)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,460)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,600)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,670)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(690,260)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(720,220)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(730,550)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(740,640)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(750,580)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(760,670)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(830,550)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(840,640)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(850,580)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(860,670)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp loc="(400,170)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,240)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,310)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,380)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,450)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,520)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,590)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <comp loc="(400,660)" name="D_Latch"> <a name="labelloc" val="south"/> </comp> <wire from="(130,100)" to="(350,100)"/> <wire from="(130,180)" to="(150,180)"/> <wire from="(130,210)" to="(170,210)"/> <wire from="(130,240)" to="(180,240)"/> <wire from="(130,270)" to="(190,270)"/> <wire from="(130,300)" to="(200,300)"/> <wire from="(130,590)" to="(190,590)"/> <wire from="(130,620)" to="(180,620)"/> <wire from="(130,650)" to="(160,650)"/> <wire from="(150,150)" to="(150,180)"/> <wire from="(150,150)" to="(320,150)"/> <wire from="(160,650)" to="(160,730)"/> <wire from="(160,730)" to="(780,730)"/> <wire from="(170,70)" to="(170,210)"/> <wire from="(170,70)" to="(710,70)"/> <wire from="(180,620)" to="(180,720)"/> <wire from="(180,720)" to="(640,720)"/> <wire from="(180,80)" to="(180,240)"/> <wire from="(180,80)" to="(680,80)"/> <wire from="(190,440)" to="(210,440)"/> <wire from="(190,590)" to="(190,710)"/> <wire from="(190,710)" to="(660,710)"/> <wire from="(190,90)" to="(190,270)"/> <wire from="(190,90)" to="(810,90)"/> <wire from="(200,120)" to="(200,300)"/> <wire from="(200,120)" to="(840,120)"/> <wire from="(230,180)" to="(230,360)"/> <wire from="(230,180)" to="(310,180)"/> <wire from="(230,370)" to="(240,370)"/> <wire from="(230,380)" to="(250,380)"/> <wire from="(230,390)" to="(310,390)"/> <wire from="(230,400)" to="(270,400)"/> <wire from="(230,410)" to="(250,410)"/> <wire from="(230,420)" to="(240,420)"/> <wire from="(230,430)" to="(230,670)"/> <wire from="(230,670)" to="(310,670)"/> <wire from="(240,250)" to="(240,370)"/> <wire from="(240,250)" to="(310,250)"/> <wire from="(240,420)" to="(240,600)"/> <wire from="(240,600)" to="(310,600)"/> <wire from="(250,320)" to="(250,380)"/> <wire from="(250,320)" to="(310,320)"/> <wire from="(250,410)" to="(250,530)"/> <wire from="(250,530)" to="(310,530)"/> <wire from="(270,400)" to="(270,460)"/> <wire from="(270,460)" to="(310,460)"/> <wire from="(320,150)" to="(320,170)"/> <wire from="(320,170)" to="(320,240)"/> <wire from="(320,240)" to="(320,310)"/> <wire from="(320,310)" to="(320,380)"/> <wire from="(320,380)" to="(320,450)"/> <wire from="(320,450)" to="(320,520)"/> <wire from="(320,520)" to="(320,590)"/> <wire from="(320,590)" to="(320,660)"/> <wire from="(330,180)" to="(360,180)"/> <wire from="(330,250)" to="(360,250)"/> <wire from="(330,320)" to="(360,320)"/> <wire from="(330,390)" to="(360,390)"/> <wire from="(330,460)" to="(360,460)"/> <wire from="(330,530)" to="(360,530)"/> <wire from="(330,600)" to="(360,600)"/> <wire from="(330,670)" to="(360,670)"/> <wire from="(350,100)" to="(350,160)"/> <wire from="(350,160)" to="(350,230)"/> <wire from="(350,160)" to="(360,160)"/> <wire from="(350,230)" to="(350,300)"/> <wire from="(350,230)" to="(360,230)"/> <wire from="(350,300)" to="(350,370)"/> <wire from="(350,300)" to="(360,300)"/> <wire from="(350,370)" to="(350,440)"/> <wire from="(350,370)" to="(360,370)"/> <wire from="(350,440)" to="(350,510)"/> <wire from="(350,440)" to="(360,440)"/> <wire from="(350,510)" to="(350,580)"/> <wire from="(350,510)" to="(360,510)"/> <wire from="(350,580)" to="(350,650)"/> <wire from="(350,580)" to="(360,580)"/> <wire from="(350,650)" to="(360,650)"/> <wire from="(400,160)" to="(410,160)"/> <wire from="(400,230)" to="(420,230)"/> <wire from="(400,300)" to="(430,300)"/> <wire from="(400,370)" to="(440,370)"/> <wire from="(400,440)" to="(450,440)"/> <wire from="(400,510)" to="(460,510)"/> <wire from="(400,580)" to="(470,580)"/> <wire from="(400,650)" to="(450,650)"/> <wire from="(410,60)" to="(410,160)"/> <wire from="(420,60)" to="(420,230)"/> <wire from="(430,60)" to="(430,300)"/> <wire from="(440,60)" to="(440,370)"/> <wire from="(450,60)" to="(450,440)"/> <wire from="(450,610)" to="(450,650)"/> <wire from="(450,610)" to="(480,610)"/> <wire from="(460,60)" to="(460,510)"/> <wire from="(470,60)" to="(470,580)"/> <wire from="(480,60)" to="(480,610)"/> <wire from="(490,40)" to="(520,40)"/> <wire from="(520,220)" to="(650,220)"/> <wire from="(520,40)" to="(520,220)"/> <wire from="(520,40)" to="(690,40)"/> <wire from="(610,340)" to="(630,340)"/> <wire from="(610,410)" to="(680,410)"/> <wire from="(610,480)" to="(620,480)"/> <wire from="(620,480)" to="(620,690)"/> <wire from="(620,690)" to="(790,690)"/> <wire from="(630,340)" to="(630,670)"/> <wire from="(630,340)" to="(740,340)"/> <wire from="(630,670)" to="(740,670)"/> <wire from="(640,560)" to="(640,720)"/> <wire from="(640,560)" to="(700,560)"/> <wire from="(650,220)" to="(650,260)"/> <wire from="(650,220)" to="(700,220)"/> <wire from="(650,260)" to="(670,260)"/> <wire from="(650,300)" to="(650,540)"/> <wire from="(650,300)" to="(810,300)"/> <wire from="(650,540)" to="(700,540)"/> <wire from="(660,310)" to="(660,630)"/> <wire from="(660,310)" to="(840,310)"/> <wire from="(660,630)" to="(710,630)"/> <wire from="(660,650)" to="(660,710)"/> <wire from="(660,650)" to="(710,650)"/> <wire from="(660,710)" to="(770,710)"/> <wire from="(680,410)" to="(680,580)"/> <wire from="(680,580)" to="(730,580)"/> <wire from="(680,80)" to="(680,250)"/> <wire from="(690,260)" to="(880,260)"/> <wire from="(700,540)" to="(800,540)"/> <wire from="(710,630)" to="(810,630)"/> <wire from="(710,70)" to="(710,210)"/> <wire from="(720,220)" to="(870,220)"/> <wire from="(730,550)" to="(740,550)"/> <wire from="(740,340)" to="(740,460)"/> <wire from="(740,460)" to="(780,460)"/> <wire from="(740,550)" to="(740,570)"/> <wire from="(740,640)" to="(750,640)"/> <wire from="(750,580)" to="(760,580)"/> <wire from="(750,640)" to="(750,660)"/> <wire from="(760,340)" to="(760,580)"/> <wire from="(760,340)" to="(870,340)"/> <wire from="(760,600)" to="(760,670)"/> <wire from="(760,600)" to="(880,600)"/> <wire from="(770,560)" to="(770,710)"/> <wire from="(770,560)" to="(800,560)"/> <wire from="(780,460)" to="(780,580)"/> <wire from="(780,580)" to="(830,580)"/> <wire from="(780,650)" to="(780,730)"/> <wire from="(780,650)" to="(810,650)"/> <wire from="(790,670)" to="(790,690)"/> <wire from="(790,670)" to="(840,670)"/> <wire from="(810,90)" to="(810,300)"/> <wire from="(830,550)" to="(840,550)"/> <wire from="(840,120)" to="(840,310)"/> <wire from="(840,550)" to="(840,570)"/> <wire from="(840,640)" to="(850,640)"/> <wire from="(850,580)" to="(860,580)"/> <wire from="(850,640)" to="(850,660)"/> <wire from="(860,410)" to="(860,580)"/> <wire from="(860,410)" to="(880,410)"/> <wire from="(860,670)" to="(870,670)"/> <wire from="(870,220)" to="(870,340)"/> <wire from="(870,340)" to="(870,670)"/> <wire from="(870,340)" to="(890,340)"/> <wire from="(880,260)" to="(880,410)"/> <wire from="(880,410)" to="(890,410)"/> <wire from="(880,480)" to="(880,600)"/> <wire from="(880,480)" to="(890,480)"/> </circuit> <circuit name="ADD_SB7_Logic"> <a name="appearance" val="custom"/> <a name="circuit" val="ADD_SB7_Logic"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="115" stroke="#000000" stroke-width="2" width="90" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="48">ADD_SB7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="114" y="69">#ADD/SB7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="69">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="79">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="75" y="98">/C_OUT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="119">/ready</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="65" y="139">SR</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="159">/ROR</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="160,140" x="50" y="100"/> <circ-port dir="in" pin="160,230" x="50" y="120"/> <circ-port dir="in" pin="160,350" x="50" y="140"/> <circ-port dir="in" pin="160,460" x="50" y="160"/> <circ-port dir="in" pin="160,50" x="50" y="70"/> <circ-port dir="in" pin="160,80" x="50" y="80"/> <circ-port dir="out" pin="890,410" x="140" y="70"/> </appear> <comp lib="0" loc="(160,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_C_OUT"/> </comp> <comp lib="0" loc="(160,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(160,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SR"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_ROR"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(160,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(890,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ADD_SB7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(690,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(870,410)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(650,260)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="6" loc="(670,335)" name="Text"> <a name="text" val="FF"/> </comp> <comp loc="(280,130)" name="D_Latch"> <a name="label" val="cout_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(280,220)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,230)" name="D_Latch"> <a name="label" val="mux_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,420)" name="D_Latch"> <a name="label" val="sr_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,320)" name="D_Latch"> <a name="label" val="ff_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,250)" name="D_Latch"> <a name="label" val="ff_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,420)" name="D_Latch"> <a name="label" val="sr_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,140)" to="(180,140)"/> <wire from="(160,230)" to="(240,230)"/> <wire from="(160,350)" to="(230,350)"/> <wire from="(160,460)" to="(800,460)"/> <wire from="(160,50)" to="(220,50)"/> <wire from="(160,80)" to="(230,80)"/> <wire from="(200,140)" to="(240,140)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,50)" to="(220,210)"/> <wire from="(220,50)" to="(710,50)"/> <wire from="(230,120)" to="(240,120)"/> <wire from="(230,270)" to="(230,350)"/> <wire from="(230,270)" to="(260,270)"/> <wire from="(230,350)" to="(230,430)"/> <wire from="(230,430)" to="(510,430)"/> <wire from="(230,80)" to="(230,120)"/> <wire from="(230,80)" to="(390,80)"/> <wire from="(280,140)" to="(540,140)"/> <wire from="(280,210)" to="(310,210)"/> <wire from="(280,270)" to="(310,270)"/> <wire from="(310,210)" to="(310,230)"/> <wire from="(310,230)" to="(330,230)"/> <wire from="(310,250)" to="(310,270)"/> <wire from="(310,250)" to="(330,250)"/> <wire from="(370,240)" to="(400,240)"/> <wire from="(390,220)" to="(400,220)"/> <wire from="(390,80)" to="(390,220)"/> <wire from="(390,80)" to="(500,80)"/> <wire from="(440,220)" to="(630,220)"/> <wire from="(500,310)" to="(500,410)"/> <wire from="(500,310)" to="(540,310)"/> <wire from="(500,410)" to="(510,410)"/> <wire from="(500,80)" to="(500,310)"/> <wire from="(500,80)" to="(810,80)"/> <wire from="(520,330)" to="(520,380)"/> <wire from="(520,330)" to="(540,330)"/> <wire from="(520,380)" to="(800,380)"/> <wire from="(540,140)" to="(540,270)"/> <wire from="(540,270)" to="(620,270)"/> <wire from="(550,430)" to="(720,430)"/> <wire from="(580,310)" to="(590,310)"/> <wire from="(590,250)" to="(590,310)"/> <wire from="(590,250)" to="(620,250)"/> <wire from="(630,220)" to="(630,240)"/> <wire from="(650,260)" to="(670,260)"/> <wire from="(690,260)" to="(720,260)"/> <wire from="(710,240)" to="(710,410)"/> <wire from="(710,240)" to="(720,240)"/> <wire from="(710,410)" to="(720,410)"/> <wire from="(710,50)" to="(710,240)"/> <wire from="(710,50)" to="(810,50)"/> <wire from="(760,260)" to="(800,260)"/> <wire from="(760,410)" to="(830,410)"/> <wire from="(800,260)" to="(800,380)"/> <wire from="(800,380)" to="(800,400)"/> <wire from="(800,400)" to="(830,400)"/> <wire from="(800,420)" to="(800,460)"/> <wire from="(800,420)" to="(830,420)"/> <wire from="(870,410)" to="(890,410)"/> </circuit> <circuit name="PRECHARGE"> <a name="appearance" val="custom"/> <a name="circuit" val="PRECHARGE"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="105" stroke="#000000" stroke-width="2" width="70" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="84" y="91">SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="111">DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="130">ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="83" y="149">ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="67" y="61">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="87" y="47">PRECHARGE</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="70">0/ADD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="72" y="79">SB/ADD</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="130,40" x="50" y="60"/> <circ-port dir="in" pin="130,60" x="50" y="70"/> <circ-port dir="in" pin="130,80" x="50" y="80"/> <circ-port dir="in" pin="190,150" x="50" y="90"/> <circ-port dir="in" pin="190,280" x="50" y="110"/> <circ-port dir="in" pin="190,400" x="50" y="130"/> <circ-port dir="in" pin="190,540" x="50" y="150"/> <circ-port dir="out" pin="360,150" x="120" y="90"/> <circ-port dir="out" pin="360,280" x="120" y="110"/> <circ-port dir="out" pin="360,400" x="120" y="130"/> <circ-port dir="out" pin="360,540" x="120" y="150"/> </appear> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADD"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_ADD"/> </comp> <comp lib="0" loc="(190,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SB_In"/> <a name="pull" val="up"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_In"/> <a name="pull" val="up"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_In"/> <a name="pull" val="up"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_In"/> <a name="pull" val="up"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,230)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,350)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,490)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(240,90)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(360,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(360,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(360,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(360,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(160,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,60)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(280,220)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(280,340)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(280,480)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(280,80)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="6" loc="(380,595)" name="Text"> <a name="text" val="Take into account that the tristate bus inputs are pulled up to 1, to simulate precharge."/> </comp> <wire from="(130,40)" to="(140,40)"/> <wire from="(130,60)" to="(170,60)"/> <wire from="(130,80)" to="(160,80)"/> <wire from="(160,40)" to="(160,50)"/> <wire from="(160,50)" to="(170,50)"/> <wire from="(160,70)" to="(160,80)"/> <wire from="(160,70)" to="(170,70)"/> <wire from="(190,150)" to="(220,150)"/> <wire from="(190,280)" to="(210,280)"/> <wire from="(190,400)" to="(200,400)"/> <wire from="(190,540)" to="(200,540)"/> <wire from="(200,330)" to="(200,400)"/> <wire from="(200,330)" to="(250,330)"/> <wire from="(200,470)" to="(200,540)"/> <wire from="(200,470)" to="(250,470)"/> <wire from="(200,60)" to="(220,60)"/> <wire from="(210,210)" to="(210,280)"/> <wire from="(210,210)" to="(250,210)"/> <wire from="(220,40)" to="(220,60)"/> <wire from="(220,40)" to="(260,40)"/> <wire from="(220,70)" to="(220,150)"/> <wire from="(220,70)" to="(250,70)"/> <wire from="(230,230)" to="(250,230)"/> <wire from="(230,350)" to="(250,350)"/> <wire from="(230,490)" to="(250,490)"/> <wire from="(240,90)" to="(250,90)"/> <wire from="(260,200)" to="(260,320)"/> <wire from="(260,320)" to="(260,460)"/> <wire from="(260,40)" to="(260,60)"/> <wire from="(260,60)" to="(260,200)"/> <wire from="(280,220)" to="(310,220)"/> <wire from="(280,340)" to="(310,340)"/> <wire from="(280,480)" to="(310,480)"/> <wire from="(280,80)" to="(310,80)"/> <wire from="(310,150)" to="(360,150)"/> <wire from="(310,220)" to="(310,280)"/> <wire from="(310,280)" to="(360,280)"/> <wire from="(310,340)" to="(310,400)"/> <wire from="(310,400)" to="(360,400)"/> <wire from="(310,480)" to="(310,540)"/> <wire from="(310,540)" to="(360,540)"/> <wire from="(310,80)" to="(310,150)"/> </circuit> <circuit name="CONST_GEN"> <a name="appearance" val="custom"/> <a name="circuit" val="CONST_GEN"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="103" stroke="#000000" stroke-width="2" width="91" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="79">0/ADL2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="59">0/ADL0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="69">0/ADL1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="89">0/ADH0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="77" y="99">0/ADH17</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="94" y="118">ADL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="94" y="138">ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="40">CONST_GEN</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,120" x="50" y="80"/> <circ-port dir="in" pin="110,290" x="50" y="90"/> <circ-port dir="in" pin="110,320" x="50" y="100"/> <circ-port dir="in" pin="110,60" x="50" y="60"/> <circ-port dir="in" pin="110,90" x="50" y="70"/> <circ-port dir="in" pin="160,460" x="50" y="140"/> <circ-port dir="in" pin="170,230" x="50" y="120"/> <circ-port dir="out" pin="460,450" x="140" y="140"/> <circ-port dir="out" pin="500,230" x="140" y="120"/> </appear> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADL2"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADH0"/> </comp> <comp lib="0" loc="(110,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADH17"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADL0"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Z_ADL1"/> </comp> <comp lib="0" loc="(160,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADH_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADL_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,460)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(200,230)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(450,450)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(460,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(470,230)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(500,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADL_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(320,350)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,380)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,410)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,440)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,470)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,500)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,530)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,560)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,150)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,180)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,210)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <wire from="(110,120)" to="(300,120)"/> <wire from="(110,290)" to="(280,290)"/> <wire from="(110,320)" to="(270,320)"/> <wire from="(110,60)" to="(320,60)"/> <wire from="(110,90)" to="(310,90)"/> <wire from="(160,460)" to="(170,460)"/> <wire from="(170,230)" to="(200,230)"/> <wire from="(190,340)" to="(190,380)"/> <wire from="(190,340)" to="(290,340)"/> <wire from="(190,390)" to="(200,390)"/> <wire from="(190,400)" to="(290,400)"/> <wire from="(190,410)" to="(260,410)"/> <wire from="(190,420)" to="(250,420)"/> <wire from="(190,430)" to="(240,430)"/> <wire from="(190,440)" to="(230,440)"/> <wire from="(190,450)" to="(220,450)"/> <wire from="(200,370)" to="(200,390)"/> <wire from="(200,370)" to="(290,370)"/> <wire from="(220,150)" to="(240,150)"/> <wire from="(220,160)" to="(290,160)"/> <wire from="(220,170)" to="(280,170)"/> <wire from="(220,180)" to="(270,180)"/> <wire from="(220,190)" to="(260,190)"/> <wire from="(220,200)" to="(250,200)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,220)" to="(230,220)"/> <wire from="(220,450)" to="(220,550)"/> <wire from="(220,550)" to="(290,550)"/> <wire from="(230,220)" to="(230,270)"/> <wire from="(230,270)" to="(440,270)"/> <wire from="(230,440)" to="(230,520)"/> <wire from="(230,520)" to="(290,520)"/> <wire from="(240,140)" to="(240,150)"/> <wire from="(240,140)" to="(340,140)"/> <wire from="(240,210)" to="(240,260)"/> <wire from="(240,260)" to="(430,260)"/> <wire from="(240,430)" to="(240,490)"/> <wire from="(240,490)" to="(290,490)"/> <wire from="(250,200)" to="(250,250)"/> <wire from="(250,250)" to="(420,250)"/> <wire from="(250,420)" to="(250,460)"/> <wire from="(250,460)" to="(290,460)"/> <wire from="(260,190)" to="(260,240)"/> <wire from="(260,240)" to="(410,240)"/> <wire from="(260,410)" to="(260,430)"/> <wire from="(260,430)" to="(290,430)"/> <wire from="(270,180)" to="(270,230)"/> <wire from="(270,230)" to="(400,230)"/> <wire from="(270,320)" to="(270,390)"/> <wire from="(270,390)" to="(270,420)"/> <wire from="(270,390)" to="(280,390)"/> <wire from="(270,420)" to="(270,450)"/> <wire from="(270,420)" to="(280,420)"/> <wire from="(270,450)" to="(270,480)"/> <wire from="(270,450)" to="(280,450)"/> <wire from="(270,480)" to="(270,510)"/> <wire from="(270,480)" to="(280,480)"/> <wire from="(270,510)" to="(270,540)"/> <wire from="(270,510)" to="(280,510)"/> <wire from="(270,540)" to="(270,570)"/> <wire from="(270,540)" to="(280,540)"/> <wire from="(270,570)" to="(280,570)"/> <wire from="(280,170)" to="(280,200)"/> <wire from="(280,200)" to="(340,200)"/> <wire from="(280,290)" to="(280,360)"/> <wire from="(290,160)" to="(290,170)"/> <wire from="(290,170)" to="(340,170)"/> <wire from="(300,120)" to="(300,220)"/> <wire from="(300,220)" to="(330,220)"/> <wire from="(310,190)" to="(330,190)"/> <wire from="(310,90)" to="(310,190)"/> <wire from="(320,160)" to="(330,160)"/> <wire from="(320,350)" to="(410,350)"/> <wire from="(320,380)" to="(430,380)"/> <wire from="(320,410)" to="(340,410)"/> <wire from="(320,440)" to="(350,440)"/> <wire from="(320,470)" to="(360,470)"/> <wire from="(320,500)" to="(370,500)"/> <wire from="(320,530)" to="(380,530)"/> <wire from="(320,560)" to="(390,560)"/> <wire from="(320,60)" to="(320,160)"/> <wire from="(340,390)" to="(340,410)"/> <wire from="(340,390)" to="(430,390)"/> <wire from="(350,400)" to="(350,440)"/> <wire from="(350,400)" to="(430,400)"/> <wire from="(360,410)" to="(360,470)"/> <wire from="(360,410)" to="(430,410)"/> <wire from="(370,150)" to="(450,150)"/> <wire from="(370,180)" to="(380,180)"/> <wire from="(370,210)" to="(390,210)"/> <wire from="(370,420)" to="(370,500)"/> <wire from="(370,420)" to="(430,420)"/> <wire from="(380,160)" to="(380,180)"/> <wire from="(380,160)" to="(450,160)"/> <wire from="(380,430)" to="(380,530)"/> <wire from="(380,430)" to="(430,430)"/> <wire from="(390,170)" to="(390,210)"/> <wire from="(390,170)" to="(450,170)"/> <wire from="(390,440)" to="(390,560)"/> <wire from="(390,440)" to="(430,440)"/> <wire from="(400,180)" to="(400,230)"/> <wire from="(400,180)" to="(450,180)"/> <wire from="(410,190)" to="(410,240)"/> <wire from="(410,190)" to="(450,190)"/> <wire from="(410,350)" to="(410,370)"/> <wire from="(410,370)" to="(430,370)"/> <wire from="(420,200)" to="(420,250)"/> <wire from="(420,200)" to="(450,200)"/> <wire from="(430,210)" to="(430,260)"/> <wire from="(430,210)" to="(450,210)"/> <wire from="(440,220)" to="(440,270)"/> <wire from="(440,220)" to="(450,220)"/> <wire from="(450,450)" to="(460,450)"/> <wire from="(470,230)" to="(500,230)"/> </circuit> <circuit name="BUS_MUX_HACK"> <a name="appearance" val="custom"/> <a name="circuit" val="BUS_MUX_HACK"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="130" stroke="#000000" stroke-width="2" width="110" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="61">Y/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="71">X/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="81">S/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="91">AC/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="73" y="101">AC/SB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="80" y="111">ADD/SB06</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="76" y="121">ADD/SB7</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="131">PCL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="75" y="141">PCH/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="78" y="151">PCH/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="74" y="161">DL/ADH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="170">DL/DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="133" y="69">SB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="133" y="80">DB_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="130" y="91">ADH_Dirty</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="106" y="40">BUS_MUX_HACK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="7" text-anchor="middle" x="130" y="119">SB/DB Conflict</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,110" x="50" y="80"/> <circ-port dir="in" pin="110,200" x="50" y="90"/> <circ-port dir="in" pin="110,230" x="50" y="100"/> <circ-port dir="in" pin="110,260" x="50" y="110"/> <circ-port dir="in" pin="110,290" x="50" y="120"/> <circ-port dir="in" pin="110,340" x="50" y="130"/> <circ-port dir="in" pin="110,370" x="50" y="140"/> <circ-port dir="in" pin="110,400" x="50" y="150"/> <circ-port dir="in" pin="110,450" x="50" y="160"/> <circ-port dir="in" pin="110,480" x="50" y="170"/> <circ-port dir="in" pin="110,50" x="50" y="60"/> <circ-port dir="in" pin="110,80" x="50" y="70"/> <circ-port dir="out" pin="570,160" x="160" y="70"/> <circ-port dir="out" pin="570,200" x="160" y="80"/> <circ-port dir="out" pin="570,240" x="160" y="90"/> <circ-port dir="out" pin="570,280" x="160" y="120"/> </appear> <comp lib="0" loc="(110,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="S_SB"/> </comp> <comp lib="0" loc="(110,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_DB"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AC_SB"/> </comp> <comp lib="0" loc="(110,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB06"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="ADD_SB7"/> </comp> <comp lib="0" loc="(110,340)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCL_DB"/> </comp> <comp lib="0" loc="(110,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_DB"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCH_ADH"/> </comp> <comp lib="0" loc="(110,450)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_ADH"/> </comp> <comp lib="0" loc="(110,480)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DL_DB"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Y_SB"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="X_SB"/> </comp> <comp lib="0" loc="(490,170)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(490,210)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(570,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SB_Dirty"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_Dirty"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ADH_Dirty"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(570,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SBDB_Clutch"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,270)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,440)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,100)" name="OR Gate"/> <comp lib="1" loc="(360,220)" name="OR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(480,110)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(530,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(530,200)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <wire from="(110,110)" to="(210,110)"/> <wire from="(110,200)" to="(310,200)"/> <wire from="(110,230)" to="(220,230)"/> <wire from="(110,260)" to="(130,260)"/> <wire from="(110,290)" to="(120,290)"/> <wire from="(110,340)" to="(240,340)"/> <wire from="(110,370)" to="(250,370)"/> <wire from="(110,400)" to="(290,400)"/> <wire from="(110,450)" to="(320,450)"/> <wire from="(110,480)" to="(260,480)"/> <wire from="(110,50)" to="(220,50)"/> <wire from="(110,80)" to="(210,80)"/> <wire from="(120,280)" to="(120,290)"/> <wire from="(120,280)" to="(130,280)"/> <wire from="(160,270)" to="(230,270)"/> <wire from="(210,100)" to="(210,110)"/> <wire from="(210,100)" to="(310,100)"/> <wire from="(210,80)" to="(210,90)"/> <wire from="(210,90)" to="(310,90)"/> <wire from="(220,110)" to="(220,230)"/> <wire from="(220,110)" to="(310,110)"/> <wire from="(220,50)" to="(220,80)"/> <wire from="(220,80)" to="(310,80)"/> <wire from="(230,120)" to="(230,270)"/> <wire from="(230,120)" to="(310,120)"/> <wire from="(240,210)" to="(240,340)"/> <wire from="(240,210)" to="(310,210)"/> <wire from="(250,230)" to="(250,370)"/> <wire from="(250,230)" to="(310,230)"/> <wire from="(260,240)" to="(260,480)"/> <wire from="(260,240)" to="(310,240)"/> <wire from="(290,400)" to="(290,430)"/> <wire from="(290,430)" to="(320,430)"/> <wire from="(350,440)" to="(400,440)"/> <wire from="(360,100)" to="(400,100)"/> <wire from="(360,220)" to="(400,220)"/> <wire from="(400,100)" to="(400,150)"/> <wire from="(400,100)" to="(450,100)"/> <wire from="(400,150)" to="(500,150)"/> <wire from="(400,190)" to="(400,220)"/> <wire from="(400,190)" to="(500,190)"/> <wire from="(400,220)" to="(420,220)"/> <wire from="(400,240)" to="(400,440)"/> <wire from="(400,240)" to="(570,240)"/> <wire from="(420,120)" to="(420,220)"/> <wire from="(420,120)" to="(450,120)"/> <wire from="(480,110)" to="(490,110)"/> <wire from="(490,110)" to="(510,110)"/> <wire from="(490,170)" to="(500,170)"/> <wire from="(490,210)" to="(500,210)"/> <wire from="(490,90)" to="(490,110)"/> <wire from="(490,90)" to="(550,90)"/> <wire from="(510,110)" to="(510,140)"/> <wire from="(510,140)" to="(510,180)"/> <wire from="(530,160)" to="(570,160)"/> <wire from="(530,200)" to="(570,200)"/> <wire from="(550,280)" to="(570,280)"/> <wire from="(550,90)" to="(550,280)"/> </circuit> <circuit name="D_Latch"> <a name="appearance" val="custom"/> <a name="circuit" val="D_Latch"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="clabelup" val="north"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#0eff00" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="44">DLATCH</text> <ellipse cx="90" cy="80" fill="none" rx="4" ry="4" stroke="#000000" stroke-width="2"/> <circ-anchor facing="east" x="90" y="70"/> <circ-port dir="in" pin="120,140" x="50" y="60"/> <circ-port dir="in" pin="120,200" x="50" y="80"/> <circ-port dir="out" pin="390,160" x="90" y="60"/> <circ-port dir="out" pin="390,180" x="90" y="80"/> </appear> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(390,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Q"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NOT_Q"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(250,140)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(140,200)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,160)" to="(220,160)"/> <wire from="(140,180)" to="(140,200)"/> <wire from="(140,180)" to="(210,180)"/> <wire from="(210,150)" to="(210,180)"/> <wire from="(210,150)" to="(240,150)"/> <wire from="(220,160)" to="(220,190)"/> <wire from="(220,190)" to="(240,190)"/> <wire from="(300,150)" to="(330,150)"/> <wire from="(300,190)" to="(330,190)"/> <wire from="(330,150)" to="(330,160)"/> <wire from="(330,160)" to="(390,160)"/> <wire from="(330,180)" to="(330,190)"/> <wire from="(330,180)" to="(390,180)"/> </circuit> <circuit name="DFF_Level"> <a name="appearance" val="custom"/> <a name="circuit" val="DFF_Level"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ffc228" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="69" y="43">DFF_HI</text> <ellipse cx="90" cy="80" fill="none" rx="4" ry="4" stroke="#000000" stroke-width="2"/> <rect fill="none" height="8" stroke="#000000" stroke-width="2" width="7" x="50" y="56"/> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,140" x="50" y="60"/> <circ-port dir="in" pin="120,200" x="50" y="80"/> <circ-port dir="out" pin="350,160" x="90" y="60"/> <circ-port dir="out" pin="350,180" x="90" y="80"/> </appear> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D"/> </comp> <comp lib="0" loc="(350,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Q"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NOT_Q"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(220,140)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="6" loc="(235,260)" name="Text"> <a name="text" val="To simplify importing into Logisim Evo."/> </comp> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(140,200)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,160)" to="(190,160)"/> <wire from="(140,180)" to="(140,200)"/> <wire from="(140,180)" to="(180,180)"/> <wire from="(180,150)" to="(180,180)"/> <wire from="(180,150)" to="(210,150)"/> <wire from="(190,160)" to="(190,190)"/> <wire from="(190,190)" to="(210,190)"/> <wire from="(270,150)" to="(310,150)"/> <wire from="(270,190)" to="(310,190)"/> <wire from="(310,150)" to="(310,160)"/> <wire from="(310,160)" to="(350,160)"/> <wire from="(310,180)" to="(310,190)"/> <wire from="(310,180)" to="(350,180)"/> </circuit> <circuit name="DFF_Posedge"> <a name="appearance" val="custom"/> <a name="circuit" val="DFF_Posedge"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#ffad30" height="40" stroke="#000000" stroke-width="2" width="40" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="9" text-anchor="middle" x="71" y="42">DFF_PosEdge</text> <ellipse cx="90" cy="80" fill="none" rx="4" ry="4" stroke="#000000" stroke-width="2"/> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,140" x="50" y="60"/> <circ-port dir="in" pin="120,200" x="50" y="80"/> <circ-port dir="out" pin="370,160" x="90" y="60"/> <circ-port dir="out" pin="370,180" x="90" y="80"/> </appear> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EN"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D"/> </comp> <comp lib="0" loc="(370,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Q"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="NOT_Q"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(230,140)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="falling"/> </comp> <comp lib="6" loc="(250,125)" name="Text"> <a name="text" val="posedge"/> </comp> <comp lib="6" loc="(250,260)" name="Text"> <a name="text" val="To simplify importing into Logisim Evo."/> </comp> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,200)" to="(180,200)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,160)" to="(210,160)"/> <wire from="(180,150)" to="(180,200)"/> <wire from="(180,150)" to="(220,150)"/> <wire from="(210,160)" to="(210,190)"/> <wire from="(210,190)" to="(220,190)"/> <wire from="(280,150)" to="(320,150)"/> <wire from="(280,190)" to="(320,190)"/> <wire from="(320,150)" to="(320,160)"/> <wire from="(320,160)" to="(370,160)"/> <wire from="(320,180)" to="(320,190)"/> <wire from="(320,180)" to="(370,180)"/> </circuit> <circuit name="DecoderWithBus"> <a name="appearance" val="evolution"/> <a name="circuit" val="DecoderWithBus"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TX"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(150,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="IR"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1560,600)" name="Splitter"> <a name="bit0" val="63"/> <a name="bit1" val="62"/> <a name="bit10" val="53"/> <a name="bit11" val="52"/> <a name="bit12" val="51"/> <a name="bit13" val="50"/> <a name="bit14" val="49"/> <a name="bit15" val="48"/> <a name="bit16" val="47"/> <a name="bit17" val="46"/> <a name="bit18" val="45"/> <a name="bit19" val="44"/> <a name="bit2" val="61"/> <a name="bit20" val="43"/> <a name="bit21" val="42"/> <a name="bit22" val="41"/> <a name="bit23" val="40"/> <a name="bit24" val="39"/> <a name="bit25" val="38"/> <a name="bit26" val="37"/> <a name="bit27" val="36"/> <a name="bit28" val="35"/> <a name="bit29" val="34"/> <a name="bit3" val="60"/> <a name="bit30" val="33"/> <a name="bit31" val="32"/> <a name="bit32" val="31"/> <a name="bit33" val="30"/> <a name="bit34" val="29"/> <a name="bit35" val="28"/> <a name="bit36" val="27"/> <a name="bit37" val="26"/> <a name="bit38" val="25"/> <a name="bit39" val="24"/> <a name="bit4" val="59"/> <a name="bit40" val="23"/> <a name="bit41" val="22"/> <a name="bit42" val="21"/> <a name="bit43" val="20"/> <a name="bit44" val="19"/> <a name="bit45" val="18"/> <a name="bit46" val="17"/> <a name="bit47" val="16"/> <a name="bit48" val="15"/> <a name="bit49" val="14"/> <a name="bit5" val="58"/> <a name="bit50" val="13"/> <a name="bit51" val="12"/> <a name="bit52" val="11"/> <a name="bit53" val="10"/> <a name="bit54" val="9"/> <a name="bit55" val="8"/> <a name="bit56" val="7"/> <a name="bit57" val="6"/> <a name="bit58" val="5"/> <a name="bit59" val="4"/> <a name="bit6" val="57"/> <a name="bit60" val="3"/> <a name="bit61" val="2"/> <a name="bit62" val="1"/> <a name="bit63" val="0"/> <a name="bit7" val="56"/> <a name="bit8" val="55"/> <a name="bit9" val="54"/> <a name="facing" val="north"/> <a name="fanout" val="64"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(1620,320)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1680,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="dec1"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="64"/> </comp> <comp lib="0" loc="(1680,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="dec2"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="64"/> </comp> <comp lib="0" loc="(1680,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="IMPL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1680,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="pp"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(230,390)" name="Splitter"> <a name="bit0" val="5"/> <a name="bit1" val="4"/> <a name="bit2" val="3"/> <a name="bit3" val="2"/> <a name="bit4" val="1"/> <a name="bit5" val="0"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(920,540)" name="Splitter"> <a name="bit0" val="63"/> <a name="bit1" val="62"/> <a name="bit10" val="53"/> <a name="bit11" val="52"/> <a name="bit12" val="51"/> <a name="bit13" val="50"/> <a name="bit14" val="49"/> <a name="bit15" val="48"/> <a name="bit16" val="47"/> <a name="bit17" val="46"/> <a name="bit18" val="45"/> <a name="bit19" val="44"/> <a name="bit2" val="61"/> <a name="bit20" val="43"/> <a name="bit21" val="42"/> <a name="bit22" val="41"/> <a name="bit23" val="40"/> <a name="bit24" val="39"/> <a name="bit25" val="38"/> <a name="bit26" val="37"/> <a name="bit27" val="36"/> <a name="bit28" val="35"/> <a name="bit29" val="34"/> <a name="bit3" val="60"/> <a name="bit30" val="33"/> <a name="bit31" val="32"/> <a name="bit32" val="31"/> <a name="bit33" val="30"/> <a name="bit34" val="29"/> <a name="bit35" val="28"/> <a name="bit36" val="27"/> <a name="bit37" val="26"/> <a name="bit38" val="25"/> <a name="bit39" val="24"/> <a name="bit4" val="59"/> <a name="bit40" val="23"/> <a name="bit41" val="22"/> <a name="bit42" val="21"/> <a name="bit43" val="20"/> <a name="bit44" val="19"/> <a name="bit45" val="18"/> <a name="bit46" val="17"/> <a name="bit47" val="16"/> <a name="bit48" val="15"/> <a name="bit49" val="14"/> <a name="bit5" val="58"/> <a name="bit50" val="13"/> <a name="bit51" val="12"/> <a name="bit52" val="11"/> <a name="bit53" val="10"/> <a name="bit54" val="9"/> <a name="bit55" val="8"/> <a name="bit56" val="7"/> <a name="bit57" val="6"/> <a name="bit58" val="5"/> <a name="bit59" val="4"/> <a name="bit6" val="57"/> <a name="bit60" val="3"/> <a name="bit61" val="2"/> <a name="bit62" val="1"/> <a name="bit63" val="0"/> <a name="bit7" val="56"/> <a name="bit8" val="55"/> <a name="bit9" val="54"/> <a name="facing" val="north"/> <a name="fanout" val="64"/> <a name="incoming" val="64"/> </comp> <comp loc="(270,330)" name="DECODER_TRANS"> <a name="label" val="dec_tran"/> </comp> <wire from="(1000,470)" to="(1000,580)"/> <wire from="(1010,470)" to="(1010,580)"/> <wire from="(1020,470)" to="(1020,580)"/> <wire from="(1030,470)" to="(1030,580)"/> <wire from="(1040,470)" to="(1040,580)"/> <wire from="(1050,470)" to="(1050,580)"/> <wire from="(1060,470)" to="(1060,580)"/> <wire from="(1070,470)" to="(1070,580)"/> <wire from="(1080,470)" to="(1080,580)"/> <wire from="(1090,470)" to="(1090,580)"/> <wire from="(1100,470)" to="(1100,580)"/> <wire from="(1110,470)" to="(1110,580)"/> <wire from="(1120,470)" to="(1120,580)"/> <wire from="(1130,470)" to="(1130,580)"/> <wire from="(1140,470)" to="(1140,580)"/> <wire from="(1150,470)" to="(1150,580)"/> <wire from="(1160,470)" to="(1160,580)"/> <wire from="(1170,470)" to="(1170,580)"/> <wire from="(1180,470)" to="(1180,580)"/> <wire from="(1190,470)" to="(1190,580)"/> <wire from="(1200,470)" to="(1200,580)"/> <wire from="(1210,470)" to="(1210,580)"/> <wire from="(1220,470)" to="(1220,580)"/> <wire from="(1230,470)" to="(1230,580)"/> <wire from="(1240,470)" to="(1240,580)"/> <wire from="(1250,470)" to="(1250,580)"/> <wire from="(1260,470)" to="(1260,580)"/> <wire from="(1270,470)" to="(1270,580)"/> <wire from="(1280,470)" to="(1280,580)"/> <wire from="(1290,470)" to="(1290,580)"/> <wire from="(1300,470)" to="(1300,580)"/> <wire from="(1310,470)" to="(1310,580)"/> <wire from="(1320,470)" to="(1320,580)"/> <wire from="(1330,470)" to="(1330,580)"/> <wire from="(1340,470)" to="(1340,580)"/> <wire from="(1350,470)" to="(1350,580)"/> <wire from="(1360,470)" to="(1360,580)"/> <wire from="(1370,470)" to="(1370,580)"/> <wire from="(1380,470)" to="(1380,580)"/> <wire from="(1390,470)" to="(1390,580)"/> <wire from="(1400,470)" to="(1400,580)"/> <wire from="(1410,470)" to="(1410,580)"/> <wire from="(1420,470)" to="(1420,580)"/> <wire from="(1430,470)" to="(1430,580)"/> <wire from="(1440,470)" to="(1440,580)"/> <wire from="(1450,470)" to="(1450,580)"/> <wire from="(1460,470)" to="(1460,580)"/> <wire from="(1470,470)" to="(1470,580)"/> <wire from="(1480,470)" to="(1480,580)"/> <wire from="(1490,470)" to="(1490,580)"/> <wire from="(150,310)" to="(210,310)"/> <wire from="(150,370)" to="(180,370)"/> <wire from="(1500,470)" to="(1500,580)"/> <wire from="(1510,470)" to="(1510,580)"/> <wire from="(1520,470)" to="(1520,580)"/> <wire from="(1530,470)" to="(1530,580)"/> <wire from="(1540,470)" to="(1540,580)"/> <wire from="(1550,470)" to="(1550,580)"/> <wire from="(1560,470)" to="(1560,500)"/> <wire from="(1560,500)" to="(1610,500)"/> <wire from="(1560,600)" to="(1680,600)"/> <wire from="(1570,470)" to="(1570,490)"/> <wire from="(1570,490)" to="(1620,490)"/> <wire from="(1580,330)" to="(1600,330)"/> <wire from="(1580,340)" to="(1600,340)"/> <wire from="(1580,350)" to="(1600,350)"/> <wire from="(1580,360)" to="(1600,360)"/> <wire from="(1580,370)" to="(1600,370)"/> <wire from="(1580,380)" to="(1600,380)"/> <wire from="(1580,390)" to="(1600,390)"/> <wire from="(1580,400)" to="(1600,400)"/> <wire from="(1590,570)" to="(1590,620)"/> <wire from="(1590,570)" to="(1680,570)"/> <wire from="(1610,500)" to="(1610,630)"/> <wire from="(1610,630)" to="(1680,630)"/> <wire from="(1620,320)" to="(1650,320)"/> <wire from="(1620,490)" to="(1620,660)"/> <wire from="(1620,660)" to="(1680,660)"/> <wire from="(1650,230)" to="(1650,320)"/> <wire from="(180,230)" to="(1650,230)"/> <wire from="(180,230)" to="(180,370)"/> <wire from="(210,310)" to="(210,390)"/> <wire from="(210,390)" to="(230,390)"/> <wire from="(250,330)" to="(270,330)"/> <wire from="(250,340)" to="(270,340)"/> <wire from="(250,350)" to="(270,350)"/> <wire from="(250,360)" to="(270,360)"/> <wire from="(250,370)" to="(270,370)"/> <wire from="(250,380)" to="(270,380)"/> <wire from="(250,500)" to="(250,570)"/> <wire from="(250,500)" to="(930,500)"/> <wire from="(250,570)" to="(930,570)"/> <wire from="(260,490)" to="(260,560)"/> <wire from="(260,490)" to="(920,490)"/> <wire from="(260,560)" to="(920,560)"/> <wire from="(280,470)" to="(280,520)"/> <wire from="(290,470)" to="(290,520)"/> <wire from="(300,470)" to="(300,520)"/> <wire from="(310,470)" to="(310,520)"/> <wire from="(320,470)" to="(320,520)"/> <wire from="(330,470)" to="(330,520)"/> <wire from="(340,470)" to="(340,520)"/> <wire from="(350,470)" to="(350,520)"/> <wire from="(360,470)" to="(360,520)"/> <wire from="(370,470)" to="(370,520)"/> <wire from="(380,470)" to="(380,520)"/> <wire from="(390,470)" to="(390,520)"/> <wire from="(400,470)" to="(400,520)"/> <wire from="(410,470)" to="(410,520)"/> <wire from="(420,470)" to="(420,520)"/> <wire from="(430,470)" to="(430,520)"/> <wire from="(440,470)" to="(440,520)"/> <wire from="(450,470)" to="(450,520)"/> <wire from="(460,470)" to="(460,520)"/> <wire from="(470,470)" to="(470,520)"/> <wire from="(480,470)" to="(480,520)"/> <wire from="(490,470)" to="(490,520)"/> <wire from="(500,470)" to="(500,520)"/> <wire from="(510,470)" to="(510,520)"/> <wire from="(520,470)" to="(520,520)"/> <wire from="(530,470)" to="(530,520)"/> <wire from="(540,470)" to="(540,520)"/> <wire from="(550,470)" to="(550,520)"/> <wire from="(560,470)" to="(560,520)"/> <wire from="(570,470)" to="(570,520)"/> <wire from="(580,470)" to="(580,520)"/> <wire from="(590,470)" to="(590,520)"/> <wire from="(600,470)" to="(600,520)"/> <wire from="(610,470)" to="(610,520)"/> <wire from="(620,470)" to="(620,520)"/> <wire from="(630,470)" to="(630,520)"/> <wire from="(640,470)" to="(640,520)"/> <wire from="(650,470)" to="(650,520)"/> <wire from="(660,470)" to="(660,520)"/> <wire from="(670,470)" to="(670,520)"/> <wire from="(680,470)" to="(680,520)"/> <wire from="(690,470)" to="(690,520)"/> <wire from="(700,470)" to="(700,520)"/> <wire from="(710,470)" to="(710,520)"/> <wire from="(720,470)" to="(720,520)"/> <wire from="(730,470)" to="(730,520)"/> <wire from="(740,470)" to="(740,520)"/> <wire from="(750,470)" to="(750,520)"/> <wire from="(760,470)" to="(760,520)"/> <wire from="(770,470)" to="(770,520)"/> <wire from="(780,470)" to="(780,520)"/> <wire from="(790,470)" to="(790,520)"/> <wire from="(800,470)" to="(800,520)"/> <wire from="(810,470)" to="(810,520)"/> <wire from="(820,470)" to="(820,520)"/> <wire from="(830,470)" to="(830,520)"/> <wire from="(840,470)" to="(840,520)"/> <wire from="(850,470)" to="(850,520)"/> <wire from="(860,470)" to="(860,520)"/> <wire from="(870,470)" to="(870,520)"/> <wire from="(880,470)" to="(880,520)"/> <wire from="(890,470)" to="(890,520)"/> <wire from="(900,470)" to="(900,520)"/> <wire from="(900,550)" to="(900,620)"/> <wire from="(900,550)" to="(920,550)"/> <wire from="(900,620)" to="(1590,620)"/> <wire from="(910,470)" to="(910,520)"/> <wire from="(920,470)" to="(920,490)"/> <wire from="(920,540)" to="(920,550)"/> <wire from="(920,560)" to="(920,580)"/> <wire from="(930,470)" to="(930,500)"/> <wire from="(930,570)" to="(930,580)"/> <wire from="(940,470)" to="(940,580)"/> <wire from="(950,470)" to="(950,580)"/> <wire from="(960,470)" to="(960,580)"/> <wire from="(970,470)" to="(970,580)"/> <wire from="(980,470)" to="(980,580)"/> <wire from="(990,470)" to="(990,580)"/> </circuit> <circuit name="TopPart"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="TopPart"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp loc="(280,160)" name="DecoderWithBus"> <a name="label" val="decoder"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,160)" name="DispatchUnit"> <a name="label" val="disp"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> </circuit> <circuit name="DispatchUnit"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispatchUnit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1010,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1010,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1020,600)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="0"/> <a name="bit33" val="none"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="1"/> <a name="bit37" val="2"/> <a name="bit38" val="3"/> <a name="bit39" val="4"/> <a name="bit4" val="none"/> <a name="bit40" val="5"/> <a name="bit41" val="6"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="7"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(1020,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1020,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(120,720)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="none"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="none"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="0"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="1"/> <a name="bit59" val="2"/> <a name="bit6" val="none"/> <a name="bit60" val="3"/> <a name="bit61" val="4"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="5"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(1340,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="STOR"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1350,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_T1X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ACRL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRES2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ready"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IPC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,870)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="STOR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,950)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_IR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1350,980)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FETCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(150,570)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="none"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="none"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="0"/> <a name="bit43" val="1"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(150,860)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="0"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="none"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(190,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(190,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PC_DB"/> </comp> <comp lib="0" loc="(190,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(190,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(190,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(190,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BRTAKEN"/> </comp> <comp lib="0" loc="(190,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(190,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IMPLIED"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TWOCYCLE"/> </comp> <comp lib="0" loc="(190,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(190,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ADL_PCL"/> </comp> <comp lib="0" loc="(190,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(190,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(190,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(200,60)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,90)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(270,980)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="dec2"/> <a name="radix" val="16"/> <a name="width" val="64"/> </comp> <comp lib="0" loc="(300,560)" name="Tunnel"> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(300,690)" name="Tunnel"> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(310,980)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="0"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="1"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="none"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="none"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(340,950)" name="Tunnel"> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,970)" name="Tunnel"> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(350,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(440,810)" name="Tunnel"> <a name="label" val="REST"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(450,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(480,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="STOR"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(530,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(530,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(530,890)" name="Tunnel"> <a name="label" val="STOR"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(540,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(570,180)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="none"/> <a name="bit34" val="0"/> <a name="bit35" val="none"/> <a name="bit36" val="1"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(570,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(580,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(620,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(620,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(960,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="REST"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(970,980)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(980,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(980,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(980,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(990,470)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="none"/> <a name="bit15" val="none"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="none"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="0"/> <a name="bit28" val="1"/> <a name="bit29" val="none"/> <a name="bit3" val="none"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit32" val="none"/> <a name="bit33" val="none"/> <a name="bit34" val="none"/> <a name="bit35" val="none"/> <a name="bit36" val="none"/> <a name="bit37" val="none"/> <a name="bit38" val="none"/> <a name="bit39" val="none"/> <a name="bit4" val="none"/> <a name="bit40" val="none"/> <a name="bit41" val="none"/> <a name="bit42" val="none"/> <a name="bit43" val="none"/> <a name="bit44" val="none"/> <a name="bit45" val="none"/> <a name="bit46" val="none"/> <a name="bit47" val="none"/> <a name="bit48" val="none"/> <a name="bit49" val="none"/> <a name="bit5" val="none"/> <a name="bit50" val="none"/> <a name="bit51" val="none"/> <a name="bit52" val="none"/> <a name="bit53" val="none"/> <a name="bit54" val="none"/> <a name="bit55" val="none"/> <a name="bit56" val="none"/> <a name="bit57" val="none"/> <a name="bit58" val="none"/> <a name="bit59" val="none"/> <a name="bit6" val="none"/> <a name="bit60" val="none"/> <a name="bit61" val="none"/> <a name="bit62" val="none"/> <a name="bit63" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="incoming" val="64"/> </comp> <comp lib="0" loc="(990,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(220,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,690)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(410,810)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,890)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(255,830)" name="Text"> <a name="text" val="/STORE"/> </comp> <comp loc="(1160,970)" name="DispFetch"> <a name="label" val="fetch_unit"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1180,410)" name="DispCompletionUnit"> <a name="label" val="comp"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1180,780)" name="DispIncrementPC"> <a name="label" val="incpc"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1190,170)" name="DispShortCycle"> <a name="label" val="short"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,540)" name="DispRMWCycle"> <a name="label" val="rmw"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,320)" name="DispACRLatch"> <a name="label" val="acrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(760,110)" name="DispReadyRW"> <a name="label" val="ready_rw"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,410)" to="(1050,410)"/> <wire from="(1000,510)" to="(1000,520)"/> <wire from="(1000,510)" to="(1050,510)"/> <wire from="(1010,170)" to="(1060,170)"/> <wire from="(1010,210)" to="(1010,280)"/> <wire from="(1010,210)" to="(1060,210)"/> <wire from="(1010,280)" to="(1240,280)"/> <wire from="(1010,450)" to="(1050,450)"/> <wire from="(1010,460)" to="(1050,460)"/> <wire from="(1010,470)" to="(1010,480)"/> <wire from="(1010,470)" to="(1050,470)"/> <wire from="(1010,520)" to="(1010,540)"/> <wire from="(1010,520)" to="(1050,520)"/> <wire from="(1010,780)" to="(1050,780)"/> <wire from="(1020,330)" to="(1020,360)"/> <wire from="(1020,360)" to="(1340,360)"/> <wire from="(1020,380)" to="(1020,480)"/> <wire from="(1020,480)" to="(1050,480)"/> <wire from="(1020,630)" to="(1050,630)"/> <wire from="(1020,880)" to="(1050,880)"/> <wire from="(1030,200)" to="(1030,490)"/> <wire from="(1030,200)" to="(1060,200)"/> <wire from="(1030,30)" to="(1030,200)"/> <wire from="(1030,490)" to="(1050,490)"/> <wire from="(1030,620)" to="(1030,700)"/> <wire from="(1030,620)" to="(1050,620)"/> <wire from="(1030,700)" to="(1290,700)"/> <wire from="(1030,800)" to="(1030,970)"/> <wire from="(1030,800)" to="(1050,800)"/> <wire from="(1030,970)" to="(1060,970)"/> <wire from="(1040,220)" to="(1040,320)"/> <wire from="(1040,220)" to="(1060,220)"/> <wire from="(1040,320)" to="(1210,320)"/> <wire from="(1040,530)" to="(1050,530)"/> <wire from="(1040,540)" to="(1050,540)"/> <wire from="(1040,550)" to="(1050,550)"/> <wire from="(1040,560)" to="(1050,560)"/> <wire from="(1040,570)" to="(1050,570)"/> <wire from="(1040,580)" to="(1050,580)"/> <wire from="(1040,590)" to="(1050,590)"/> <wire from="(1040,600)" to="(1040,680)"/> <wire from="(1040,600)" to="(1050,600)"/> <wire from="(1040,680)" to="(1310,680)"/> <wire from="(1050,240)" to="(1050,310)"/> <wire from="(1050,240)" to="(1060,240)"/> <wire from="(1050,310)" to="(1220,310)"/> <wire from="(1160,970)" to="(1220,970)"/> <wire from="(1160,980)" to="(1350,980)"/> <wire from="(1180,410)" to="(1350,410)"/> <wire from="(1180,420)" to="(1220,420)"/> <wire from="(1180,430)" to="(1210,430)"/> <wire from="(1180,780)" to="(1240,780)"/> <wire from="(1180,790)" to="(1350,790)"/> <wire from="(1190,170)" to="(1250,170)"/> <wire from="(1190,180)" to="(1230,180)"/> <wire from="(1190,190)" to="(1240,190)"/> <wire from="(1190,200)" to="(1220,200)"/> <wire from="(120,720)" to="(120,890)"/> <wire from="(120,890)" to="(150,890)"/> <wire from="(1210,320)" to="(1210,430)"/> <wire from="(1220,200)" to="(1220,240)"/> <wire from="(1220,240)" to="(1350,240)"/> <wire from="(1220,310)" to="(1220,420)"/> <wire from="(1220,950)" to="(1220,970)"/> <wire from="(1220,950)" to="(1350,950)"/> <wire from="(1230,180)" to="(1230,210)"/> <wire from="(1230,210)" to="(1350,210)"/> <wire from="(1240,150)" to="(1240,190)"/> <wire from="(1240,150)" to="(1310,150)"/> <wire from="(1240,280)" to="(1240,780)"/> <wire from="(1250,170)" to="(1250,180)"/> <wire from="(1250,180)" to="(1290,180)"/> <wire from="(1260,300)" to="(1260,340)"/> <wire from="(1260,300)" to="(1350,300)"/> <wire from="(1270,330)" to="(1270,350)"/> <wire from="(1270,330)" to="(1330,330)"/> <wire from="(1290,180)" to="(1290,700)"/> <wire from="(1290,180)" to="(1350,180)"/> <wire from="(1290,700)" to="(1290,1050)"/> <wire from="(1310,150)" to="(1310,680)"/> <wire from="(1310,150)" to="(1350,150)"/> <wire from="(1330,330)" to="(1330,720)"/> <wire from="(1330,330)" to="(1350,330)"/> <wire from="(1340,360)" to="(1340,380)"/> <wire from="(1340,380)" to="(1350,380)"/> <wire from="(1340,870)" to="(1350,870)"/> <wire from="(140,630)" to="(140,670)"/> <wire from="(140,630)" to="(200,630)"/> <wire from="(140,680)" to="(150,680)"/> <wire from="(140,690)" to="(220,690)"/> <wire from="(140,700)" to="(150,700)"/> <wire from="(140,710)" to="(140,750)"/> <wire from="(140,750)" to="(200,750)"/> <wire from="(150,570)" to="(150,590)"/> <wire from="(150,590)" to="(390,590)"/> <wire from="(150,660)" to="(150,680)"/> <wire from="(150,660)" to="(190,660)"/> <wire from="(150,700)" to="(150,720)"/> <wire from="(150,720)" to="(190,720)"/> <wire from="(150,860)" to="(150,890)"/> <wire from="(150,890)" to="(300,890)"/> <wire from="(170,550)" to="(240,550)"/> <wire from="(170,560)" to="(170,570)"/> <wire from="(170,570)" to="(240,570)"/> <wire from="(170,840)" to="(200,840)"/> <wire from="(190,160)" to="(540,160)"/> <wire from="(190,190)" to="(550,190)"/> <wire from="(190,220)" to="(600,220)"/> <wire from="(190,250)" to="(340,250)"/> <wire from="(190,280)" to="(460,280)"/> <wire from="(190,310)" to="(480,310)"/> <wire from="(190,340)" to="(430,340)"/> <wire from="(190,370)" to="(400,370)"/> <wire from="(190,400)" to="(880,400)"/> <wire from="(190,430)" to="(470,430)"/> <wire from="(190,460)" to="(480,460)"/> <wire from="(190,490)" to="(740,490)"/> <wire from="(190,60)" to="(200,60)"/> <wire from="(190,660)" to="(190,680)"/> <wire from="(190,680)" to="(220,680)"/> <wire from="(190,700)" to="(190,720)"/> <wire from="(190,700)" to="(220,700)"/> <wire from="(190,90)" to="(200,90)"/> <wire from="(200,630)" to="(200,670)"/> <wire from="(200,670)" to="(220,670)"/> <wire from="(200,710)" to="(200,750)"/> <wire from="(200,710)" to="(220,710)"/> <wire from="(220,840)" to="(350,840)"/> <wire from="(270,980)" to="(300,980)"/> <wire from="(280,560)" to="(300,560)"/> <wire from="(280,690)" to="(300,690)"/> <wire from="(300,1000)" to="(590,1000)"/> <wire from="(300,890)" to="(300,980)"/> <wire from="(300,980)" to="(300,1000)"/> <wire from="(300,980)" to="(310,980)"/> <wire from="(330,950)" to="(330,960)"/> <wire from="(330,950)" to="(340,950)"/> <wire from="(330,970)" to="(340,970)"/> <wire from="(340,30)" to="(1030,30)"/> <wire from="(340,30)" to="(340,250)"/> <wire from="(350,800)" to="(370,800)"/> <wire from="(350,820)" to="(350,840)"/> <wire from="(350,820)" to="(370,820)"/> <wire from="(350,840)" to="(350,900)"/> <wire from="(350,900)" to="(460,900)"/> <wire from="(390,240)" to="(390,450)"/> <wire from="(390,240)" to="(560,240)"/> <wire from="(390,450)" to="(390,590)"/> <wire from="(390,450)" to="(760,450)"/> <wire from="(390,590)" to="(390,770)"/> <wire from="(390,770)" to="(590,770)"/> <wire from="(400,370)" to="(400,610)"/> <wire from="(400,610)" to="(530,610)"/> <wire from="(410,810)" to="(440,810)"/> <wire from="(430,340)" to="(430,370)"/> <wire from="(430,370)" to="(600,370)"/> <wire from="(450,880)" to="(460,880)"/> <wire from="(460,280)" to="(460,760)"/> <wire from="(460,760)" to="(650,760)"/> <wire from="(470,430)" to="(470,720)"/> <wire from="(470,720)" to="(690,720)"/> <wire from="(480,140)" to="(620,140)"/> <wire from="(480,310)" to="(480,430)"/> <wire from="(480,430)" to="(530,430)"/> <wire from="(480,460)" to="(480,680)"/> <wire from="(480,680)" to="(710,680)"/> <wire from="(500,890)" to="(530,890)"/> <wire from="(530,120)" to="(620,120)"/> <wire from="(530,330)" to="(620,330)"/> <wire from="(530,430)" to="(530,480)"/> <wire from="(530,480)" to="(920,480)"/> <wire from="(530,610)" to="(530,750)"/> <wire from="(530,750)" to="(660,750)"/> <wire from="(540,130)" to="(540,160)"/> <wire from="(540,130)" to="(620,130)"/> <wire from="(540,550)" to="(640,550)"/> <wire from="(540,560)" to="(540,650)"/> <wire from="(540,560)" to="(640,560)"/> <wire from="(540,650)" to="(890,650)"/> <wire from="(550,150)" to="(550,190)"/> <wire from="(550,150)" to="(620,150)"/> <wire from="(560,180)" to="(560,240)"/> <wire from="(560,180)" to="(570,180)"/> <wire from="(570,110)" to="(620,110)"/> <wire from="(570,320)" to="(620,320)"/> <wire from="(580,190)" to="(580,250)"/> <wire from="(580,190)" to="(620,190)"/> <wire from="(580,250)" to="(850,250)"/> <wire from="(580,270)" to="(580,350)"/> <wire from="(580,270)" to="(800,270)"/> <wire from="(580,350)" to="(620,350)"/> <wire from="(580,540)" to="(640,540)"/> <wire from="(590,160)" to="(620,160)"/> <wire from="(590,170)" to="(620,170)"/> <wire from="(590,180)" to="(590,240)"/> <wire from="(590,180)" to="(620,180)"/> <wire from="(590,240)" to="(840,240)"/> <wire from="(590,770)" to="(590,1000)"/> <wire from="(600,200)" to="(600,220)"/> <wire from="(600,200)" to="(620,200)"/> <wire from="(600,340)" to="(600,370)"/> <wire from="(600,340)" to="(620,340)"/> <wire from="(600,370)" to="(600,420)"/> <wire from="(600,420)" to="(910,420)"/> <wire from="(620,570)" to="(640,570)"/> <wire from="(620,590)" to="(630,590)"/> <wire from="(630,580)" to="(630,590)"/> <wire from="(630,580)" to="(640,580)"/> <wire from="(650,760)" to="(650,820)"/> <wire from="(650,820)" to="(1050,820)"/> <wire from="(660,750)" to="(660,870)"/> <wire from="(660,870)" to="(1050,870)"/> <wire from="(690,720)" to="(690,970)"/> <wire from="(690,970)" to="(1030,970)"/> <wire from="(710,680)" to="(710,860)"/> <wire from="(710,860)" to="(1050,860)"/> <wire from="(740,380)" to="(1020,380)"/> <wire from="(740,380)" to="(740,490)"/> <wire from="(740,540)" to="(840,540)"/> <wire from="(740,550)" to="(850,550)"/> <wire from="(750,320)" to="(780,320)"/> <wire from="(750,330)" to="(1020,330)"/> <wire from="(760,110)" to="(820,110)"/> <wire from="(760,120)" to="(800,120)"/> <wire from="(760,130)" to="(830,130)"/> <wire from="(760,450)" to="(760,490)"/> <wire from="(760,490)" to="(900,490)"/> <wire from="(780,320)" to="(780,460)"/> <wire from="(780,460)" to="(970,460)"/> <wire from="(800,120)" to="(800,270)"/> <wire from="(800,270)" to="(800,810)"/> <wire from="(800,810)" to="(1050,810)"/> <wire from="(820,60)" to="(820,110)"/> <wire from="(820,60)" to="(890,60)"/> <wire from="(830,90)" to="(1350,90)"/> <wire from="(830,90)" to="(830,130)"/> <wire from="(840,240)" to="(840,340)"/> <wire from="(840,340)" to="(1260,340)"/> <wire from="(840,340)" to="(840,540)"/> <wire from="(850,250)" to="(850,350)"/> <wire from="(850,350)" to="(1270,350)"/> <wire from="(850,350)" to="(850,550)"/> <wire from="(880,230)" to="(1060,230)"/> <wire from="(880,230)" to="(880,400)"/> <wire from="(890,1000)" to="(1060,1000)"/> <wire from="(890,200)" to="(890,450)"/> <wire from="(890,200)" to="(980,200)"/> <wire from="(890,450)" to="(890,650)"/> <wire from="(890,450)" to="(960,450)"/> <wire from="(890,60)" to="(1350,60)"/> <wire from="(890,60)" to="(890,200)"/> <wire from="(890,650)" to="(890,840)"/> <wire from="(890,840)" to="(1050,840)"/> <wire from="(890,840)" to="(890,1000)"/> <wire from="(900,490)" to="(900,600)"/> <wire from="(900,490)" to="(990,490)"/> <wire from="(900,600)" to="(1020,600)"/> <wire from="(910,420)" to="(910,830)"/> <wire from="(910,830)" to="(1050,830)"/> <wire from="(920,480)" to="(920,610)"/> <wire from="(920,610)" to="(1050,610)"/> <wire from="(920,610)" to="(920,850)"/> <wire from="(920,850)" to="(1050,850)"/> <wire from="(940,540)" to="(1010,540)"/> <wire from="(940,540)" to="(940,720)"/> <wire from="(940,720)" to="(1330,720)"/> <wire from="(960,420)" to="(1050,420)"/> <wire from="(960,430)" to="(1050,430)"/> <wire from="(960,430)" to="(960,450)"/> <wire from="(970,180)" to="(1060,180)"/> <wire from="(970,440)" to="(1050,440)"/> <wire from="(970,440)" to="(970,460)"/> <wire from="(970,470)" to="(980,470)"/> <wire from="(970,790)" to="(1050,790)"/> <wire from="(970,980)" to="(1060,980)"/> <wire from="(980,190)" to="(1060,190)"/> <wire from="(980,190)" to="(980,200)"/> <wire from="(980,470)" to="(980,480)"/> <wire from="(980,480)" to="(1010,480)"/> <wire from="(980,500)" to="(1050,500)"/> <wire from="(980,640)" to="(1050,640)"/> <wire from="(980,890)" to="(1050,890)"/> <wire from="(990,1050)" to="(1290,1050)"/> <wire from="(990,470)" to="(990,490)"/> <wire from="(990,520)" to="(1000,520)"/> <wire from="(990,990)" to="(1060,990)"/> <wire from="(990,990)" to="(990,1050)"/> </circuit> <circuit name="DispReadyRW"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispReadyRW"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1120,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ready"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1200,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1290,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NotReadyPhi1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(130,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STOR"/> </comp> <comp lib="0" loc="(130,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PC_DB"/> </comp> <comp lib="0" loc="(130,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D98"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D100"/> </comp> <comp lib="0" loc="(130,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T6"/> </comp> <comp lib="0" loc="(130,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(130,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DORES"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(130,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(140,60)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(140,90)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(510,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(820,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(820,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(430,340)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(760,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(760,470)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(910,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(1155,410)" name="Text"> <a name="text" val="ReadyDelay"/> </comp> <comp lib="6" loc="(685,180)" name="Text"> <a name="text" val="RDY"/> </comp> <comp lib="6" loc="(820,365)" name="Text"> <a name="text" val="RDY_FF"/> </comp> <comp loc="(1120,450)" name="D_Latch"> <a name="label" val="rdydelay_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1250,450)" name="D_Latch"> <a name="label" val="rdydelay_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,330)" name="D_Latch"> <a name="label" val="wr_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,310)" name="D_Latch"> <a name="label" val="ready_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,460)" name="D_Latch"> <a name="label" val="ready_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,320)" to="(1010,460)"/> <wire from="(1010,320)" to="(1120,320)"/> <wire from="(1010,460)" to="(1080,460)"/> <wire from="(1070,440)" to="(1080,440)"/> <wire from="(1120,460)" to="(1210,460)"/> <wire from="(1200,440)" to="(1210,440)"/> <wire from="(1250,460)" to="(1290,460)"/> <wire from="(130,160)" to="(710,160)"/> <wire from="(130,220)" to="(340,220)"/> <wire from="(130,250)" to="(330,250)"/> <wire from="(130,290)" to="(320,290)"/> <wire from="(130,320)" to="(310,320)"/> <wire from="(130,360)" to="(350,360)"/> <wire from="(130,400)" to="(310,400)"/> <wire from="(130,500)" to="(710,500)"/> <wire from="(130,60)" to="(140,60)"/> <wire from="(130,90)" to="(140,90)"/> <wire from="(310,320)" to="(310,350)"/> <wire from="(310,350)" to="(350,350)"/> <wire from="(310,370)" to="(310,400)"/> <wire from="(310,370)" to="(350,370)"/> <wire from="(320,290)" to="(320,330)"/> <wire from="(320,330)" to="(350,330)"/> <wire from="(330,250)" to="(330,320)"/> <wire from="(330,320)" to="(350,320)"/> <wire from="(340,220)" to="(340,310)"/> <wire from="(340,310)" to="(350,310)"/> <wire from="(430,340)" to="(540,340)"/> <wire from="(510,320)" to="(540,320)"/> <wire from="(580,320)" to="(680,320)"/> <wire from="(680,320)" to="(680,470)"/> <wire from="(680,470)" to="(720,470)"/> <wire from="(710,160)" to="(710,310)"/> <wire from="(710,310)" to="(720,310)"/> <wire from="(710,330)" to="(710,380)"/> <wire from="(710,330)" to="(720,330)"/> <wire from="(710,380)" to="(910,380)"/> <wire from="(710,400)" to="(710,460)"/> <wire from="(710,400)" to="(930,400)"/> <wire from="(710,460)" to="(720,460)"/> <wire from="(710,480)" to="(710,500)"/> <wire from="(710,480)" to="(720,480)"/> <wire from="(760,320)" to="(830,320)"/> <wire from="(760,470)" to="(800,470)"/> <wire from="(800,470)" to="(800,560)"/> <wire from="(800,470)" to="(830,470)"/> <wire from="(800,560)" to="(1130,560)"/> <wire from="(820,300)" to="(830,300)"/> <wire from="(820,450)" to="(830,450)"/> <wire from="(870,320)" to="(890,320)"/> <wire from="(870,450)" to="(910,450)"/> <wire from="(910,320)" to="(930,320)"/> <wire from="(910,380)" to="(910,450)"/> <wire from="(930,320)" to="(1010,320)"/> <wire from="(930,320)" to="(930,400)"/> </circuit> <circuit name="DispShortCycle"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispShortCycle"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1090,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,740)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_T1X"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(240,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(240,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(240,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(240,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(250,120)" name="Tunnel"> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(250,60)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(250,90)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(260,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BRA"/> </comp> <comp lib="0" loc="(260,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ENDS"/> </comp> <comp lib="0" loc="(260,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TWOCYCLE"/> </comp> <comp lib="0" loc="(260,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TRESX"/> </comp> <comp lib="0" loc="(360,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(410,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(630,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(670,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(770,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(790,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(790,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(790,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(790,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(400,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,680)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,580)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,630)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,240)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,500)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,590)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,740)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(830,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(990,640)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(635,500)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="6" loc="(700,310)" name="Text"> <a name="text" val="STEP_FF"/> </comp> <comp lib="6" loc="(745,655)" name="Text"> <a name="text" val="T0_FF"/> </comp> <comp lib="6" loc="(890,490)" name="Text"> <a name="text" val="TRES1"/> </comp> <comp loc="(460,220)" name="D_Latch"> <a name="label" val="nready_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(460,580)" name="D_Latch"> <a name="label" val="comp_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(460,650)" name="D_Latch"> <a name="label" val="comp_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(460,720)" name="D_Latch"> <a name="label" val="comp_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(840,230)" name="D_Latch"> <a name="label" val="step_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(840,330)" name="D_Latch"> <a name="label" val="step_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(840,420)" name="D_Latch"> <a name="label" val="t1_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(840,580)" name="D_Latch"> <a name="label" val="t0_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(840,730)" name="D_Latch"> <a name="label" val="t1x_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(240,120)" to="(250,120)"/> <wire from="(240,170)" to="(680,170)"/> <wire from="(240,60)" to="(250,60)"/> <wire from="(240,90)" to="(250,90)"/> <wire from="(260,350)" to="(690,350)"/> <wire from="(260,510)" to="(690,510)"/> <wire from="(260,660)" to="(420,660)"/> <wire from="(260,730)" to="(420,730)"/> <wire from="(300,540)" to="(300,590)"/> <wire from="(300,540)" to="(920,540)"/> <wire from="(300,590)" to="(420,590)"/> <wire from="(360,230)" to="(380,230)"/> <wire from="(400,230)" to="(420,230)"/> <wire from="(400,570)" to="(420,570)"/> <wire from="(400,640)" to="(420,640)"/> <wire from="(400,710)" to="(420,710)"/> <wire from="(410,210)" to="(420,210)"/> <wire from="(460,210)" to="(580,210)"/> <wire from="(460,570)" to="(620,570)"/> <wire from="(460,640)" to="(480,640)"/> <wire from="(460,710)" to="(480,710)"/> <wire from="(480,640)" to="(480,670)"/> <wire from="(480,670)" to="(500,670)"/> <wire from="(480,690)" to="(480,710)"/> <wire from="(480,690)" to="(500,690)"/> <wire from="(530,680)" to="(550,680)"/> <wire from="(550,590)" to="(550,680)"/> <wire from="(550,590)" to="(620,590)"/> <wire from="(580,210)" to="(580,240)"/> <wire from="(580,240)" to="(690,240)"/> <wire from="(590,620)" to="(590,690)"/> <wire from="(590,620)" to="(620,620)"/> <wire from="(590,690)" to="(650,690)"/> <wire from="(610,640)" to="(610,670)"/> <wire from="(610,640)" to="(620,640)"/> <wire from="(610,670)" to="(880,670)"/> <wire from="(630,750)" to="(690,750)"/> <wire from="(650,690)" to="(650,730)"/> <wire from="(650,690)" to="(900,690)"/> <wire from="(650,730)" to="(690,730)"/> <wire from="(660,270)" to="(660,330)"/> <wire from="(660,270)" to="(860,270)"/> <wire from="(660,330)" to="(690,330)"/> <wire from="(660,580)" to="(690,580)"/> <wire from="(660,630)" to="(670,630)"/> <wire from="(670,390)" to="(670,410)"/> <wire from="(670,390)" to="(750,390)"/> <wire from="(670,410)" to="(690,410)"/> <wire from="(670,430)" to="(690,430)"/> <wire from="(670,460)" to="(670,490)"/> <wire from="(670,460)" to="(740,460)"/> <wire from="(670,490)" to="(690,490)"/> <wire from="(670,600)" to="(670,630)"/> <wire from="(670,600)" to="(690,600)"/> <wire from="(680,170)" to="(680,230)"/> <wire from="(680,230)" to="(690,230)"/> <wire from="(680,250)" to="(680,290)"/> <wire from="(680,250)" to="(690,250)"/> <wire from="(680,290)" to="(860,290)"/> <wire from="(730,240)" to="(800,240)"/> <wire from="(730,340)" to="(750,340)"/> <wire from="(730,420)" to="(740,420)"/> <wire from="(730,500)" to="(780,500)"/> <wire from="(730,590)" to="(780,590)"/> <wire from="(730,740)" to="(800,740)"/> <wire from="(740,420)" to="(740,460)"/> <wire from="(750,340)" to="(750,390)"/> <wire from="(750,340)" to="(800,340)"/> <wire from="(770,720)" to="(800,720)"/> <wire from="(780,430)" to="(780,500)"/> <wire from="(780,430)" to="(800,430)"/> <wire from="(780,500)" to="(810,500)"/> <wire from="(780,590)" to="(780,640)"/> <wire from="(780,590)" to="(800,590)"/> <wire from="(780,640)" to="(920,640)"/> <wire from="(790,220)" to="(800,220)"/> <wire from="(790,320)" to="(800,320)"/> <wire from="(790,410)" to="(800,410)"/> <wire from="(790,570)" to="(800,570)"/> <wire from="(830,500)" to="(920,500)"/> <wire from="(840,220)" to="(860,220)"/> <wire from="(840,320)" to="(860,320)"/> <wire from="(840,430)" to="(1090,430)"/> <wire from="(840,570)" to="(900,570)"/> <wire from="(840,720)" to="(880,720)"/> <wire from="(840,740)" to="(1090,740)"/> <wire from="(860,220)" to="(860,270)"/> <wire from="(860,290)" to="(860,320)"/> <wire from="(880,670)" to="(880,720)"/> <wire from="(900,570)" to="(900,690)"/> <wire from="(920,500)" to="(920,540)"/> <wire from="(920,570)" to="(1090,570)"/> <wire from="(920,570)" to="(920,640)"/> <wire from="(920,640)" to="(970,640)"/> <wire from="(990,640)" to="(1090,640)"/> </circuit> <circuit name="DispRMWCycle"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispRMWCycle"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1020,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1020,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(210,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(210,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(210,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SHIFT"/> </comp> <comp lib="0" loc="(210,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_MemOP"/> </comp> <comp lib="0" loc="(210,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(220,110)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(220,140)" name="Tunnel"> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(220,80)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(250,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(360,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(400,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(720,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(820,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(320,260)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,180)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,350)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,340)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(920,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="6" loc="(475,150)" name="Text"> <a name="text" val="T6_FF"/> </comp> <comp loc="(410,250)" name="D_Latch"> <a name="label" val="t67_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,140)" name="D_Latch"> <a name="label" val="t6_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,220)" name="D_Latch"> <a name="label" val="t6_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(770,330)" name="D_Latch"> <a name="label" val="t7_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,330)" name="D_Latch"> <a name="label" val="t7_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(210,110)" to="(220,110)"/> <wire from="(210,140)" to="(220,140)"/> <wire from="(210,230)" to="(270,230)"/> <wire from="(210,260)" to="(280,260)"/> <wire from="(210,80)" to="(220,80)"/> <wire from="(250,290)" to="(270,290)"/> <wire from="(270,230)" to="(270,250)"/> <wire from="(270,250)" to="(280,250)"/> <wire from="(270,270)" to="(270,290)"/> <wire from="(270,270)" to="(280,270)"/> <wire from="(320,260)" to="(370,260)"/> <wire from="(360,240)" to="(370,240)"/> <wire from="(390,100)" to="(390,170)"/> <wire from="(390,100)" to="(620,100)"/> <wire from="(390,170)" to="(410,170)"/> <wire from="(400,190)" to="(410,190)"/> <wire from="(410,240)" to="(480,240)"/> <wire from="(440,180)" to="(460,180)"/> <wire from="(460,180)" to="(460,220)"/> <wire from="(460,220)" to="(480,220)"/> <wire from="(520,230)" to="(560,230)"/> <wire from="(540,150)" to="(540,180)"/> <wire from="(540,150)" to="(560,150)"/> <wire from="(540,180)" to="(620,180)"/> <wire from="(550,130)" to="(560,130)"/> <wire from="(550,210)" to="(560,210)"/> <wire from="(560,350)" to="(580,350)"/> <wire from="(600,130)" to="(620,130)"/> <wire from="(600,230)" to="(620,230)"/> <wire from="(600,350)" to="(640,350)"/> <wire from="(620,100)" to="(620,130)"/> <wire from="(620,180)" to="(620,230)"/> <wire from="(620,230)" to="(1020,230)"/> <wire from="(620,230)" to="(620,330)"/> <wire from="(620,330)" to="(640,330)"/> <wire from="(680,340)" to="(730,340)"/> <wire from="(720,320)" to="(730,320)"/> <wire from="(770,340)" to="(830,340)"/> <wire from="(820,320)" to="(830,320)"/> <wire from="(870,340)" to="(900,340)"/> <wire from="(920,340)" to="(1020,340)"/> </circuit> <circuit name="DispCompletionUnit"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispCompletionUnit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1020,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(1150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TRES2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1150,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_TRESX"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1150,780)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ENDS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D91"/> </comp> <comp lib="0" loc="(170,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D92"/> </comp> <comp lib="0" loc="(170,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D96"/> </comp> <comp lib="0" loc="(170,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D100"/> </comp> <comp lib="0" loc="(170,550)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D101"/> </comp> <comp lib="0" loc="(170,580)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D102"/> </comp> <comp lib="0" loc="(170,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D103"/> </comp> <comp lib="0" loc="(170,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D104"/> </comp> <comp lib="0" loc="(170,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="D105"/> </comp> <comp lib="0" loc="(170,740)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T0"/> </comp> <comp lib="0" loc="(170,780)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BRTAKEN"/> </comp> <comp lib="0" loc="(170,830)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(170,890)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(170,920)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(180,890)" name="Tunnel"> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(180,920)" name="Tunnel"> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(190,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(190,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACRL1"/> </comp> <comp lib="0" loc="(190,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="REST"/> </comp> <comp lib="0" loc="(190,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BRK6E"/> </comp> <comp lib="0" loc="(190,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESP"/> </comp> <comp lib="0" loc="(190,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SHIFT"/> </comp> <comp lib="0" loc="(190,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_MemOP"/> </comp> <comp lib="0" loc="(190,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T7"/> </comp> <comp lib="0" loc="(190,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(190,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(200,110)" name="Tunnel"> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,350)" name="Tunnel"> <a name="label" val="RESP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,390)" name="Tunnel"> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,410)" name="Tunnel"> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,430)" name="Tunnel"> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,50)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(200,80)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(340,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(480,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(540,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SHIFT"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_MemOP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(550,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(560,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(650,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="T7"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(650,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(760,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(830,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_ready"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(870,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESP"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(990,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1000,280)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,600)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(360,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,790)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,830)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,750)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,520)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,780)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(740,590)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(850,200)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(890,560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(950,520)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(510,760)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="6" loc="(775,510)" name="Text"> <a name="text" val="ENDS"/> </comp> <comp lib="6" loc="(820,585)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="ENDX"/> </comp> <comp loc="(1040,510)" name="D_Latch"> <a name="label" val="tresx_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1090,190)" name="D_Latch"> <a name="label" val="tres2_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,200)" name="D_Latch"> <a name="label" val="tresx_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,750)" name="D_Latch"> <a name="label" val="ends_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,820)" name="D_Latch"> <a name="label" val="ends_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,280)" to="(1030,280)"/> <wire from="(1020,180)" to="(1050,180)"/> <wire from="(1030,200)" to="(1030,280)"/> <wire from="(1030,200)" to="(1050,200)"/> <wire from="(1030,280)" to="(1150,280)"/> <wire from="(1040,520)" to="(1060,520)"/> <wire from="(1060,450)" to="(1060,520)"/> <wire from="(1090,200)" to="(1150,200)"/> <wire from="(170,190)" to="(190,190)"/> <wire from="(170,220)" to="(210,220)"/> <wire from="(170,470)" to="(570,470)"/> <wire from="(170,520)" to="(210,520)"/> <wire from="(170,550)" to="(200,550)"/> <wire from="(170,580)" to="(190,580)"/> <wire from="(170,610)" to="(230,610)"/> <wire from="(170,640)" to="(190,640)"/> <wire from="(170,670)" to="(200,670)"/> <wire from="(170,740)" to="(420,740)"/> <wire from="(170,780)" to="(350,780)"/> <wire from="(170,830)" to="(400,830)"/> <wire from="(170,890)" to="(180,890)"/> <wire from="(170,920)" to="(180,920)"/> <wire from="(190,110)" to="(200,110)"/> <wire from="(190,150)" to="(770,150)"/> <wire from="(190,190)" to="(190,200)"/> <wire from="(190,200)" to="(210,200)"/> <wire from="(190,290)" to="(770,290)"/> <wire from="(190,320)" to="(830,320)"/> <wire from="(190,350)" to="(200,350)"/> <wire from="(190,390)" to="(200,390)"/> <wire from="(190,410)" to="(200,410)"/> <wire from="(190,430)" to="(200,430)"/> <wire from="(190,50)" to="(200,50)"/> <wire from="(190,580)" to="(190,590)"/> <wire from="(190,590)" to="(230,590)"/> <wire from="(190,620)" to="(190,640)"/> <wire from="(190,620)" to="(230,620)"/> <wire from="(190,80)" to="(200,80)"/> <wire from="(200,550)" to="(200,580)"/> <wire from="(200,580)" to="(230,580)"/> <wire from="(200,630)" to="(200,670)"/> <wire from="(200,630)" to="(230,630)"/> <wire from="(210,520)" to="(210,570)"/> <wire from="(210,570)" to="(230,570)"/> <wire from="(250,210)" to="(570,210)"/> <wire from="(310,600)" to="(340,600)"/> <wire from="(340,800)" to="(350,800)"/> <wire from="(360,600)" to="(680,600)"/> <wire from="(380,790)" to="(410,790)"/> <wire from="(410,760)" to="(410,790)"/> <wire from="(410,760)" to="(420,760)"/> <wire from="(420,830)" to="(470,830)"/> <wire from="(460,750)" to="(480,750)"/> <wire from="(470,770)" to="(470,830)"/> <wire from="(470,770)" to="(480,770)"/> <wire from="(480,710)" to="(490,710)"/> <wire from="(490,710)" to="(490,740)"/> <wire from="(510,760)" to="(570,760)"/> <wire from="(540,520)" to="(550,520)"/> <wire from="(550,550)" to="(570,550)"/> <wire from="(550,740)" to="(570,740)"/> <wire from="(550,810)" to="(570,810)"/> <wire from="(550,830)" to="(570,830)"/> <wire from="(560,190)" to="(570,190)"/> <wire from="(570,470)" to="(570,510)"/> <wire from="(570,510)" to="(590,510)"/> <wire from="(570,520)" to="(590,520)"/> <wire from="(570,530)" to="(570,550)"/> <wire from="(570,530)" to="(590,530)"/> <wire from="(610,190)" to="(790,190)"/> <wire from="(610,740)" to="(640,740)"/> <wire from="(610,810)" to="(640,810)"/> <wire from="(630,520)" to="(660,520)"/> <wire from="(640,740)" to="(640,770)"/> <wire from="(640,770)" to="(670,770)"/> <wire from="(640,790)" to="(640,810)"/> <wire from="(640,790)" to="(670,790)"/> <wire from="(650,580)" to="(680,580)"/> <wire from="(650,630)" to="(660,630)"/> <wire from="(660,520)" to="(660,570)"/> <wire from="(660,570)" to="(680,570)"/> <wire from="(660,610)" to="(660,630)"/> <wire from="(660,610)" to="(680,610)"/> <wire from="(710,780)" to="(760,780)"/> <wire from="(740,590)" to="(840,590)"/> <wire from="(760,210)" to="(790,210)"/> <wire from="(760,520)" to="(760,780)"/> <wire from="(760,520)" to="(910,520)"/> <wire from="(760,780)" to="(1150,780)"/> <wire from="(770,150)" to="(770,180)"/> <wire from="(770,180)" to="(790,180)"/> <wire from="(770,220)" to="(770,290)"/> <wire from="(770,220)" to="(790,220)"/> <wire from="(830,280)" to="(830,320)"/> <wire from="(830,280)" to="(960,280)"/> <wire from="(830,550)" to="(850,550)"/> <wire from="(840,570)" to="(840,590)"/> <wire from="(840,570)" to="(850,570)"/> <wire from="(850,200)" to="(940,200)"/> <wire from="(870,490)" to="(880,490)"/> <wire from="(880,490)" to="(880,510)"/> <wire from="(880,510)" to="(910,510)"/> <wire from="(890,560)" to="(900,560)"/> <wire from="(900,530)" to="(900,560)"/> <wire from="(900,530)" to="(910,530)"/> <wire from="(940,200)" to="(940,270)"/> <wire from="(940,270)" to="(960,270)"/> <wire from="(940,290)" to="(940,450)"/> <wire from="(940,290)" to="(960,290)"/> <wire from="(940,450)" to="(1060,450)"/> <wire from="(950,520)" to="(1000,520)"/> <wire from="(990,500)" to="(1000,500)"/> </circuit> <circuit name="DispACRLatch"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispACRLatch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(170,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(170,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(180,50)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(180,80)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(540,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(540,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(730,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ACRL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(730,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ACRL2"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(310,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,180)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(470,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="6" loc="(425,305)" name="Text"> <a name="text" val="ACRL_FF"/> </comp> <comp loc="(590,200)" name="D_Latch"> <a name="label" val="acr_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(590,300)" name="D_Latch"> <a name="label" val="acr_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,140)" to="(300,140)"/> <wire from="(170,190)" to="(290,190)"/> <wire from="(170,50)" to="(180,50)"/> <wire from="(170,80)" to="(180,80)"/> <wire from="(300,140)" to="(300,170)"/> <wire from="(300,170)" to="(330,170)"/> <wire from="(310,190)" to="(340,190)"/> <wire from="(340,190)" to="(340,240)"/> <wire from="(340,190)" to="(370,190)"/> <wire from="(340,240)" to="(360,240)"/> <wire from="(340,260)" to="(340,350)"/> <wire from="(340,260)" to="(360,260)"/> <wire from="(340,350)" to="(630,350)"/> <wire from="(350,170)" to="(370,170)"/> <wire from="(400,180)" to="(420,180)"/> <wire from="(400,250)" to="(420,250)"/> <wire from="(420,180)" to="(420,200)"/> <wire from="(420,200)" to="(430,200)"/> <wire from="(420,220)" to="(420,250)"/> <wire from="(420,220)" to="(430,220)"/> <wire from="(470,210)" to="(480,210)"/> <wire from="(480,140)" to="(480,210)"/> <wire from="(480,140)" to="(730,140)"/> <wire from="(480,210)" to="(550,210)"/> <wire from="(500,250)" to="(500,310)"/> <wire from="(500,250)" to="(610,250)"/> <wire from="(500,310)" to="(550,310)"/> <wire from="(540,190)" to="(550,190)"/> <wire from="(540,290)" to="(550,290)"/> <wire from="(590,210)" to="(610,210)"/> <wire from="(590,310)" to="(630,310)"/> <wire from="(610,210)" to="(610,250)"/> <wire from="(630,310)" to="(630,350)"/> <wire from="(630,310)" to="(730,310)"/> </circuit> <circuit name="DispIncrementPC"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispIncrementPC"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1290,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BRA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1290,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_IPC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(220,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(220,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NotReadyPhi1"/> </comp> <comp lib="0" loc="(220,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BRFW"/> </comp> <comp lib="0" loc="(220,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ACR"/> </comp> <comp lib="0" loc="(220,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(220,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BRTAKEN"/> </comp> <comp lib="0" loc="(220,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ADL_PCL"/> </comp> <comp lib="0" loc="(220,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI1"/> </comp> <comp lib="0" loc="(220,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_IMPLIED"/> </comp> <comp lib="0" loc="(220,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BR2"/> </comp> <comp lib="0" loc="(220,700)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BR3"/> </comp> <comp lib="0" loc="(220,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(230,50)" name="Tunnel"> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,670)" name="Tunnel"> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,700)" name="Tunnel"> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(230,80)" name="Tunnel"> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(270,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(270,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(390,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(430,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BR3"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(610,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(610,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI2"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(990,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(990,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="0" loc="(990,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PHI1"/> <a name="labelfont" val="SansSerif bold 12"/> </comp> <comp lib="1" loc="(1140,510)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1220,480)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(320,540)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,440)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,530)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,520)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,270)" name="XOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(750,240)" name="AND Gate"> <a name="negate0" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(870,590)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="6" loc="(1185,545)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Crazy combo (check out tran!)"/> </comp> <comp lib="6" loc="(790,225)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Branch 2"/> </comp> <comp lib="6" loc="(795,560)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Branch 3"/> </comp> <comp lib="6" loc="(860,110)" name="Text"> <a name="font" val="SansSerif plain 12"/> <a name="text" val="Branch 1"/> </comp> <comp loc="(1040,440)" name="D_Latch"> <a name="label" val="ipc_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1040,510)" name="D_Latch"> <a name="label" val="ipc_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1040,580)" name="D_Latch"> <a name="label" val="ipc_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(660,200)" name="D_Latch"> <a name="label" val="br_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(660,510)" name="D_Latch"> <a name="label" val="br_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1040,430)" to="(1160,430)"/> <wire from="(1040,500)" to="(1110,500)"/> <wire from="(1040,570)" to="(1090,570)"/> <wire from="(1090,520)" to="(1090,570)"/> <wire from="(1090,520)" to="(1110,520)"/> <wire from="(1140,510)" to="(1160,510)"/> <wire from="(1160,430)" to="(1160,470)"/> <wire from="(1160,470)" to="(1180,470)"/> <wire from="(1160,490)" to="(1160,510)"/> <wire from="(1160,490)" to="(1180,490)"/> <wire from="(1220,480)" to="(1290,480)"/> <wire from="(220,130)" to="(890,130)"/> <wire from="(220,240)" to="(500,240)"/> <wire from="(220,270)" to="(540,270)"/> <wire from="(220,300)" to="(580,300)"/> <wire from="(220,380)" to="(720,380)"/> <wire from="(220,430)" to="(400,430)"/> <wire from="(220,490)" to="(380,490)"/> <wire from="(220,50)" to="(230,50)"/> <wire from="(220,600)" to="(280,600)"/> <wire from="(220,670)" to="(230,670)"/> <wire from="(220,700)" to="(230,700)"/> <wire from="(220,80)" to="(230,80)"/> <wire from="(270,530)" to="(280,530)"/> <wire from="(270,550)" to="(280,550)"/> <wire from="(300,600)" to="(830,600)"/> <wire from="(320,540)" to="(340,540)"/> <wire from="(360,540)" to="(400,540)"/> <wire from="(380,490)" to="(380,520)"/> <wire from="(380,520)" to="(400,520)"/> <wire from="(390,450)" to="(400,450)"/> <wire from="(430,200)" to="(460,200)"/> <wire from="(430,440)" to="(460,440)"/> <wire from="(440,530)" to="(480,530)"/> <wire from="(460,440)" to="(460,510)"/> <wire from="(460,510)" to="(480,510)"/> <wire from="(480,200)" to="(520,200)"/> <wire from="(500,220)" to="(500,240)"/> <wire from="(500,220)" to="(520,220)"/> <wire from="(520,520)" to="(620,520)"/> <wire from="(540,260)" to="(540,270)"/> <wire from="(540,260)" to="(620,260)"/> <wire from="(560,210)" to="(620,210)"/> <wire from="(600,300)" to="(610,300)"/> <wire from="(610,190)" to="(620,190)"/> <wire from="(610,280)" to="(610,300)"/> <wire from="(610,280)" to="(620,280)"/> <wire from="(610,500)" to="(620,500)"/> <wire from="(660,210)" to="(690,210)"/> <wire from="(660,270)" to="(690,270)"/> <wire from="(660,500)" to="(690,500)"/> <wire from="(690,210)" to="(690,230)"/> <wire from="(690,230)" to="(710,230)"/> <wire from="(690,250)" to="(690,270)"/> <wire from="(690,250)" to="(720,250)"/> <wire from="(690,500)" to="(690,590)"/> <wire from="(690,590)" to="(830,590)"/> <wire from="(720,380)" to="(720,580)"/> <wire from="(720,580)" to="(830,580)"/> <wire from="(750,240)" to="(820,240)"/> <wire from="(820,240)" to="(1290,240)"/> <wire from="(820,240)" to="(820,520)"/> <wire from="(820,520)" to="(1000,520)"/> <wire from="(870,590)" to="(1000,590)"/> <wire from="(890,130)" to="(890,450)"/> <wire from="(890,450)" to="(1000,450)"/> <wire from="(990,430)" to="(1000,430)"/> <wire from="(990,500)" to="(1000,500)"/> <wire from="(990,570)" to="(1000,570)"/> </circuit> <circuit name="DispFetch"> <a name="appearance" val="evolution"/> <a name="circuit" val="DispFetch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="B_OUT"/> </comp> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PHI2"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T1"/> </comp> <comp lib="0" loc="(150,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ready"/> </comp> <comp lib="0" loc="(560,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_IR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FETCH"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(420,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,220)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp loc="(310,210)" name="D_Latch"> <a name="label" val="fetch_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,150)" to="(430,150)"/> <wire from="(150,200)" to="(270,200)"/> <wire from="(150,220)" to="(270,220)"/> <wire from="(150,270)" to="(370,270)"/> <wire from="(310,220)" to="(380,220)"/> <wire from="(370,240)" to="(370,270)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(420,230)" to="(430,230)"/> <wire from="(430,150)" to="(430,210)"/> <wire from="(430,210)" to="(450,210)"/> <wire from="(430,230)" to="(430,260)"/> <wire from="(430,230)" to="(450,230)"/> <wire from="(430,260)" to="(560,260)"/> <wire from="(490,220)" to="(560,220)"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="3.8.0" version="1.0"> This file is intended to be loaded by Logisim-evolution v3.8.0(https://github.com/logisim-evolution/). <lib desc="#Wiring" name="0"> <tool name="Pin"> <a name="appearance" val="classic"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"/> <lib desc="#Memory" name="4"/> <lib desc="#I/O" name="5"/> <lib desc="#TTL" name="6"/> <lib desc="#TCL" name="7"/> <lib desc="#Base" name="8"/> <lib desc="#BFH-Praktika" name="9"/> <lib desc="#Input/Output-Extra" name="10"/> <lib desc="#Soc" name="11"/> <main name="PPU_2C02G"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="8" map="Button2" name="Menu Tool"/> <tool lib="8" map="Button3" name="Menu Tool"/> <tool lib="8" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="8" name="Poke Tool"/> <tool lib="8" name="Edit Tool"/> <tool lib="8" name="Wiring Tool"/> <tool lib="8" name="Text Tool"/> <sep/> <tool lib="0" name="Pin"/> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> </tool> <sep/> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> <tool lib="1" name="XOR Gate"/> <tool lib="1" name="NAND Gate"/> <tool lib="1" name="NOR Gate"/> <sep/> <tool lib="4" name="D Flip-Flop"/> <tool lib="4" name="Register"/> </toolbar> <circuit name="PPU_Test"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_Test"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Clock"/> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(140,150)" name="Constant"/> <comp lib="0" loc="(140,170)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,190)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(140,210)" name="Constant"/> <comp lib="0" loc="(140,250)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(500,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="5" loc="(450,110)" name="LED"/> <comp loc="(400,110)" name="PPU_2C02G"/> <wire from="(130,110)" to="(180,110)"/> <wire from="(140,130)" to="(180,130)"/> <wire from="(140,150)" to="(180,150)"/> <wire from="(140,170)" to="(180,170)"/> <wire from="(140,190)" to="(180,190)"/> <wire from="(140,210)" to="(180,210)"/> <wire from="(140,250)" to="(180,250)"/> <wire from="(400,110)" to="(450,110)"/> <wire from="(400,170)" to="(430,170)"/> <wire from="(400,190)" to="(430,190)"/> <wire from="(400,210)" to="(430,210)"/> <wire from="(400,230)" to="(430,230)"/> <wire from="(400,250)" to="(430,250)"/> <wire from="(400,270)" to="(500,270)"/> </circuit> <circuit name="PPU_2C02G"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_2C02G"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1160,1130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1160,1320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1430,1400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(150,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(150,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RS"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(150,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(150,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="EXT_in"/> <a name="tristate" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(150,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(1560,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1570,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1570,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,320)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1730,1570)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1760,1220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1760,1420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1760,1440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1760,1500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1840,890)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(190,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="D_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="AD_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(2330,1090)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(2360,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2360,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2360,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2360,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2360,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2910,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(2910,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3320,960)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(3330,1680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3340,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3340,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3480,490)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(3530,470)" name="Constant"/> <comp lib="0" loc="(3600,1430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3600,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3610,1310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3610,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3610,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3650,410)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="8"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(3730,1730)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(3860,1300)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="0"/> <a name="bit7" val="none"/> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3860,600)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="0"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(3910,1620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(3910,1640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(4040,1320)" name="Constant"/> <comp lib="0" loc="(4040,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(4050,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(4050,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(4160,1260)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="8"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(4200,340)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(4510,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_INT"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(4510,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="D_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(4510,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(4510,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_RD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4510,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4510,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ALE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(4510,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="AD_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(4510,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="A8_13"/> <a name="output" val="true"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(4510,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VOUT"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(490,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,1180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,1420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(600,1570)" name="Constant"/> <comp lib="0" loc="(600,1780)" name="Constant"/> <comp lib="0" loc="(600,420)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(640,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(640,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,810)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(860,100)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,80)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="1" loc="(3740,450)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(3750,370)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(3770,450)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(3890,1600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4250,1300)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(4260,1220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4290,1300)" name="Controlled Inverter"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(4490,120)" name="Controlled Inverter"> <a name="control" val="left"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4490,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4490,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4490,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(4490,330)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="6"/> </comp> <comp lib="1" loc="(620,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(770,1580)" name="NOT Gate"> <a name="width" val="8"/> </comp> <comp lib="1" loc="(770,1790)" name="NOT Gate"> <a name="width" val="8"/> </comp> <comp lib="1" loc="(780,1740)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(800,1790)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="8"/> </comp> <comp lib="8" loc="(4075,1255)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="/RD"/> </comp> <comp loc="(1010,780)" name="RegSelect"> <a name="label" val="regops"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1180,330)" name="HV_Decoders"> <a name="label" val="hv_dec"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,1090)" name="PPU_CTRL0"> <a name="label" val="ctrl0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,1280)" name="PPU_CTRL1"> <a name="label" val="ctrl1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1790,240)" name="HV_FSM"> <a name="label" val="fsm"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1980,1220)" name="Clip"> <a name="label" val="clipper"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1980,1420)" name="VRAM_Control"> <a name="label" val="vram_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1980,1660)" name="ReadBuffer"> <a name="label" val="rb"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(2580,250)" name="MotionPictureBuffer"> <a name="label" val="fifo"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(2580,620)" name="StillPictureGen"> <a name="label" val="data_reader"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3130,1620)" name="PPU_MUX"> <a name="label" val="mx"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3560,1620)" name="CRAM_Block"> <a name="label" val="cram"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3650,470)" name="DLatch_x8"/> <comp loc="(3830,1310)" name="SPR0_Hit"> <a name="label" val="alien_feature"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(3830,610)" name="OAM_Eval"> <a name="label" val="eval"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(4130,1580)" name="VideoGen"> <a name="label" val="video_gen"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(4160,1320)" name="DLatch_x8"/> <comp loc="(4270,640)" name="OAM_Block"> <a name="label" val="oam"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,110)" name="ResetPad"> <a name="label" val="respad"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(720,1570)" name="DLatch_x8"/> <comp loc="(720,1780)" name="DLatch_x8"/> <comp loc="(770,1160)" name="Reg_RW_Decoder"> <a name="label" val="rw_decode"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(770,1380)" name="EXTPads"/> <comp loc="(770,860)" name="SCC_FirstSecond"> <a name="label" val="scc_first_scnd"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(850,80)" name="PCLK_Ntsc"> <a name="label" val="pclk"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(860,330)" name="HV_Counters"> <a name="label" val="hv"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,1000)" to="(1090,1000)"/> <wire from="(1010,1020)" to="(1020,1020)"/> <wire from="(1010,780)" to="(1140,780)"/> <wire from="(1010,800)" to="(1510,800)"/> <wire from="(1010,820)" to="(1150,820)"/> <wire from="(1010,840)" to="(1520,840)"/> <wire from="(1010,860)" to="(1120,860)"/> <wire from="(1010,880)" to="(1040,880)"/> <wire from="(1010,900)" to="(1130,900)"/> <wire from="(1010,920)" to="(1060,920)"/> <wire from="(1010,940)" to="(1180,940)"/> <wire from="(1010,960)" to="(1050,960)"/> <wire from="(1010,980)" to="(1070,980)"/> <wire from="(1020,1020)" to="(1020,2000)"/> <wire from="(1020,2000)" to="(3170,2000)"/> <wire from="(1040,2020)" to="(3180,2020)"/> <wire from="(1040,880)" to="(1040,2020)"/> <wire from="(1050,740)" to="(1050,960)"/> <wire from="(1060,2050)" to="(3160,2050)"/> <wire from="(1060,920)" to="(1060,2050)"/> <wire from="(1070,1300)" to="(1170,1300)"/> <wire from="(1070,980)" to="(1070,1300)"/> <wire from="(1090,1000)" to="(1090,1110)"/> <wire from="(1090,1000)" to="(2140,1000)"/> <wire from="(1090,1110)" to="(1170,1110)"/> <wire from="(1100,1150)" to="(1100,1340)"/> <wire from="(1100,1150)" to="(1170,1150)"/> <wire from="(1100,1340)" to="(1100,1790)"/> <wire from="(1100,1340)" to="(1170,1340)"/> <wire from="(1100,1790)" to="(1160,1790)"/> <wire from="(1120,1010)" to="(2150,1010)"/> <wire from="(1120,860)" to="(1120,1010)"/> <wire from="(1130,1020)" to="(2160,1020)"/> <wire from="(1130,900)" to="(1130,1020)"/> <wire from="(1140,1030)" to="(2170,1030)"/> <wire from="(1140,780)" to="(1140,1030)"/> <wire from="(1150,1040)" to="(2180,1040)"/> <wire from="(1150,820)" to="(1150,1040)"/> <wire from="(1160,1130)" to="(1170,1130)"/> <wire from="(1160,1320)" to="(1170,1320)"/> <wire from="(1160,1790)" to="(1160,1980)"/> <wire from="(1160,1980)" to="(2310,1980)"/> <wire from="(1180,330)" to="(1230,330)"/> <wire from="(1180,350)" to="(1270,350)"/> <wire from="(1180,720)" to="(1180,940)"/> <wire from="(1180,940)" to="(1300,940)"/> <wire from="(1230,330)" to="(1230,400)"/> <wire from="(1230,400)" to="(1570,400)"/> <wire from="(1260,1580)" to="(1260,1800)"/> <wire from="(1260,1800)" to="(1740,1800)"/> <wire from="(1270,350)" to="(1270,380)"/> <wire from="(1270,380)" to="(1570,380)"/> <wire from="(1300,130)" to="(1300,460)"/> <wire from="(1300,130)" to="(3170,130)"/> <wire from="(1300,460)" to="(1300,940)"/> <wire from="(1300,460)" to="(1570,460)"/> <wire from="(1320,510)" to="(1320,970)"/> <wire from="(1320,970)" to="(1850,970)"/> <wire from="(1330,170)" to="(1330,420)"/> <wire from="(1330,420)" to="(1570,420)"/> <wire from="(1350,270)" to="(1350,360)"/> <wire from="(1350,360)" to="(1570,360)"/> <wire from="(1350,40)" to="(1350,270)"/> <wire from="(1350,40)" to="(3260,40)"/> <wire from="(1360,250)" to="(1360,340)"/> <wire from="(1360,340)" to="(1570,340)"/> <wire from="(1390,1090)" to="(2120,1090)"/> <wire from="(1390,1110)" to="(2130,1110)"/> <wire from="(1390,1130)" to="(2140,1130)"/> <wire from="(1390,1150)" to="(2110,1150)"/> <wire from="(1390,1170)" to="(1420,1170)"/> <wire from="(1390,1190)" to="(1470,1190)"/> <wire from="(1390,1280)" to="(1470,1280)"/> <wire from="(1390,1300)" to="(1460,1300)"/> <wire from="(1390,1320)" to="(1450,1320)"/> <wire from="(1390,1340)" to="(1540,1340)"/> <wire from="(1390,1360)" to="(1490,1360)"/> <wire from="(1390,1380)" to="(1550,1380)"/> <wire from="(1390,1400)" to="(1410,1400)"/> <wire from="(1390,1420)" to="(1410,1420)"/> <wire from="(1390,1440)" to="(1410,1440)"/> <wire from="(1410,1400)" to="(1410,1410)"/> <wire from="(1410,1430)" to="(1410,1440)"/> <wire from="(1420,1170)" to="(1420,1250)"/> <wire from="(1430,1400)" to="(1440,1400)"/> <wire from="(1440,1400)" to="(1440,1960)"/> <wire from="(1440,1960)" to="(3730,1960)"/> <wire from="(1450,280)" to="(1450,1320)"/> <wire from="(1450,280)" to="(1570,280)"/> <wire from="(1460,300)" to="(1460,1300)"/> <wire from="(1460,300)" to="(1570,300)"/> <wire from="(1470,1280)" to="(1470,1940)"/> <wire from="(1470,1940)" to="(3260,1940)"/> <wire from="(1470,440)" to="(1470,1190)"/> <wire from="(1470,440)" to="(1570,440)"/> <wire from="(1490,320)" to="(1490,1360)"/> <wire from="(1490,320)" to="(1570,320)"/> <wire from="(150,110)" to="(260,110)"/> <wire from="(150,190)" to="(430,190)"/> <wire from="(150,280)" to="(350,280)"/> <wire from="(150,320)" to="(160,320)"/> <wire from="(150,370)" to="(310,370)"/> <wire from="(150,60)" to="(220,60)"/> <wire from="(1510,1460)" to="(1510,1930)"/> <wire from="(1510,1460)" to="(1760,1460)"/> <wire from="(1510,1930)" to="(3270,1930)"/> <wire from="(1510,800)" to="(1510,1460)"/> <wire from="(1520,1480)" to="(1760,1480)"/> <wire from="(1520,840)" to="(1520,1480)"/> <wire from="(1540,1300)" to="(1540,1340)"/> <wire from="(1540,1300)" to="(1760,1300)"/> <wire from="(1550,1320)" to="(1550,1380)"/> <wire from="(1550,1320)" to="(1760,1320)"/> <wire from="(1560,480)" to="(1570,480)"/> <wire from="(1570,1680)" to="(1570,1840)"/> <wire from="(1570,1680)" to="(1760,1680)"/> <wire from="(1570,1840)" to="(2330,1840)"/> <wire from="(1610,2090)" to="(3810,2090)"/> <wire from="(1610,980)" to="(1610,2090)"/> <wire from="(1610,980)" to="(1920,980)"/> <wire from="(1620,2100)" to="(3820,2100)"/> <wire from="(1620,990)" to="(1620,2100)"/> <wire from="(1620,990)" to="(1930,990)"/> <wire from="(1650,1060)" to="(1650,1540)"/> <wire from="(1650,1060)" to="(1960,1060)"/> <wire from="(1650,1540)" to="(1650,1780)"/> <wire from="(1650,1540)" to="(1760,1540)"/> <wire from="(1650,1780)" to="(2720,1780)"/> <wire from="(1670,1380)" to="(1670,1520)"/> <wire from="(1670,1380)" to="(2030,1380)"/> <wire from="(1670,1520)" to="(1760,1520)"/> <wire from="(1680,1200)" to="(1680,1240)"/> <wire from="(1680,1200)" to="(1950,1200)"/> <wire from="(1680,1240)" to="(1760,1240)"/> <wire from="(1690,1180)" to="(1690,1260)"/> <wire from="(1690,1180)" to="(1880,1180)"/> <wire from="(1690,1260)" to="(1760,1260)"/> <wire from="(1700,1170)" to="(1700,1280)"/> <wire from="(1700,1170)" to="(1870,1170)"/> <wire from="(1700,1280)" to="(1760,1280)"/> <wire from="(1710,1570)" to="(1710,1860)"/> <wire from="(1710,1570)" to="(1730,1570)"/> <wire from="(1710,1860)" to="(2630,1860)"/> <wire from="(1740,1620)" to="(1740,1700)"/> <wire from="(1740,1620)" to="(2030,1620)"/> <wire from="(1740,1700)" to="(1760,1700)"/> <wire from="(1740,1720)" to="(1740,1800)"/> <wire from="(1740,1720)" to="(1760,1720)"/> <wire from="(1740,1800)" to="(2190,1800)"/> <wire from="(1750,1560)" to="(1760,1560)"/> <wire from="(1750,1630)" to="(1750,1660)"/> <wire from="(1750,1630)" to="(2000,1630)"/> <wire from="(1750,1660)" to="(1760,1660)"/> <wire from="(1790,240)" to="(2220,240)"/> <wire from="(1790,260)" to="(2210,260)"/> <wire from="(1790,280)" to="(2200,280)"/> <wire from="(1790,300)" to="(2190,300)"/> <wire from="(1790,320)" to="(2070,320)"/> <wire from="(1790,340)" to="(2180,340)"/> <wire from="(1790,360)" to="(2160,360)"/> <wire from="(1790,380)" to="(2170,380)"/> <wire from="(1790,400)" to="(1970,400)"/> <wire from="(1790,420)" to="(1900,420)"/> <wire from="(1790,440)" to="(1870,440)"/> <wire from="(1790,460)" to="(2010,460)"/> <wire from="(1790,480)" to="(1880,480)"/> <wire from="(1790,500)" to="(2020,500)"/> <wire from="(1790,520)" to="(1830,520)"/> <wire from="(1790,540)" to="(2000,540)"/> <wire from="(1790,560)" to="(1920,560)"/> <wire from="(1790,580)" to="(1840,580)"/> <wire from="(1790,600)" to="(1930,600)"/> <wire from="(1790,620)" to="(1850,620)"/> <wire from="(1790,640)" to="(1950,640)"/> <wire from="(1790,660)" to="(2130,660)"/> <wire from="(1790,680)" to="(2100,680)"/> <wire from="(1790,700)" to="(2110,700)"/> <wire from="(1790,720)" to="(2090,720)"/> <wire from="(1790,740)" to="(2060,740)"/> <wire from="(1790,760)" to="(1860,760)"/> <wire from="(1790,780)" to="(1990,780)"/> <wire from="(1790,800)" to="(1980,800)"/> <wire from="(1790,820)" to="(1960,820)"/> <wire from="(1790,840)" to="(1820,840)"/> <wire from="(1790,860)" to="(2080,860)"/> <wire from="(1790,880)" to="(1810,880)"/> <wire from="(1790,900)" to="(1820,900)"/> <wire from="(1790,920)" to="(1800,920)"/> <wire from="(1800,910)" to="(1800,920)"/> <wire from="(1800,910)" to="(1820,910)"/> <wire from="(1810,880)" to="(1810,920)"/> <wire from="(1810,920)" to="(1820,920)"/> <wire from="(1820,30)" to="(1820,840)"/> <wire from="(1820,30)" to="(3680,30)"/> <wire from="(1830,80)" to="(1830,520)"/> <wire from="(1830,80)" to="(3200,80)"/> <wire from="(1840,60)" to="(1840,580)"/> <wire from="(1840,60)" to="(3280,60)"/> <wire from="(1840,890)" to="(1850,890)"/> <wire from="(1850,220)" to="(1850,620)"/> <wire from="(1850,220)" to="(2250,220)"/> <wire from="(1850,890)" to="(1850,970)"/> <wire from="(1860,120)" to="(1860,760)"/> <wire from="(1870,440)" to="(1870,1170)"/> <wire from="(1880,480)" to="(1880,1180)"/> <wire from="(190,230)" to="(240,230)"/> <wire from="(190,430)" to="(270,430)"/> <wire from="(1900,160)" to="(1900,420)"/> <wire from="(1900,160)" to="(3140,160)"/> <wire from="(1920,560)" to="(1920,980)"/> <wire from="(1930,600)" to="(1930,990)"/> <wire from="(1950,640)" to="(1950,1200)"/> <wire from="(1950,640)" to="(2040,640)"/> <wire from="(1960,1060)" to="(2360,1060)"/> <wire from="(1960,110)" to="(1960,820)"/> <wire from="(1960,820)" to="(1960,1060)"/> <wire from="(1970,170)" to="(1970,400)"/> <wire from="(1970,170)" to="(3100,170)"/> <wire from="(1970,400)" to="(2030,400)"/> <wire from="(1980,1170)" to="(2170,1170)"/> <wire from="(1980,1220)" to="(1990,1220)"/> <wire from="(1980,1240)" to="(2070,1240)"/> <wire from="(1980,1420)" to="(2290,1420)"/> <wire from="(1980,1440)" to="(2230,1440)"/> <wire from="(1980,1460)" to="(2080,1460)"/> <wire from="(1980,1480)" to="(2030,1480)"/> <wire from="(1980,1500)" to="(2070,1500)"/> <wire from="(1980,1520)" to="(2060,1520)"/> <wire from="(1980,1540)" to="(2400,1540)"/> <wire from="(1980,1560)" to="(2000,1560)"/> <wire from="(1980,1660)" to="(2460,1660)"/> <wire from="(1980,800)" to="(1980,1170)"/> <wire from="(1990,1200)" to="(1990,1220)"/> <wire from="(1990,1200)" to="(2360,1200)"/> <wire from="(1990,20)" to="(1990,780)"/> <wire from="(1990,780)" to="(2040,780)"/> <wire from="(2000,1560)" to="(2000,1630)"/> <wire from="(2000,540)" to="(2000,960)"/> <wire from="(2000,960)" to="(2250,960)"/> <wire from="(2010,460)" to="(2010,980)"/> <wire from="(2010,980)" to="(2360,980)"/> <wire from="(2020,430)" to="(2020,500)"/> <wire from="(2020,430)" to="(2360,430)"/> <wire from="(2030,1480)" to="(2030,1620)"/> <wire from="(2030,400)" to="(2030,1380)"/> <wire from="(2040,1390)" to="(3030,1390)"/> <wire from="(2040,450)" to="(2040,600)"/> <wire from="(2040,450)" to="(2360,450)"/> <wire from="(2040,600)" to="(2040,640)"/> <wire from="(2040,600)" to="(3450,600)"/> <wire from="(2040,780)" to="(2040,930)"/> <wire from="(2040,930)" to="(2040,1390)"/> <wire from="(2040,930)" to="(2230,930)"/> <wire from="(2060,1520)" to="(2060,2140)"/> <wire from="(2060,2140)" to="(4370,2140)"/> <wire from="(2060,740)" to="(2060,880)"/> <wire from="(2060,880)" to="(2360,880)"/> <wire from="(2070,1500)" to="(2070,2150)"/> <wire from="(2070,200)" to="(2070,320)"/> <wire from="(2070,200)" to="(3090,200)"/> <wire from="(2070,2150)" to="(4380,2150)"/> <wire from="(2070,320)" to="(2150,320)"/> <wire from="(2070,530)" to="(2070,1240)"/> <wire from="(2070,530)" to="(2360,530)"/> <wire from="(2080,1450)" to="(2460,1450)"/> <wire from="(2080,1460)" to="(2080,2160)"/> <wire from="(2080,2160)" to="(4390,2160)"/> <wire from="(2080,860)" to="(2080,1450)"/> <wire from="(2090,720)" to="(2090,940)"/> <wire from="(2090,940)" to="(2360,940)"/> <wire from="(2100,680)" to="(2100,920)"/> <wire from="(2100,920)" to="(2360,920)"/> <wire from="(2110,1150)" to="(2110,1280)"/> <wire from="(2110,1280)" to="(2350,1280)"/> <wire from="(2110,700)" to="(2110,900)"/> <wire from="(2110,900)" to="(2360,900)"/> <wire from="(2120,1090)" to="(2120,1260)"/> <wire from="(2120,1260)" to="(2360,1260)"/> <wire from="(2130,1110)" to="(2130,1240)"/> <wire from="(2130,1240)" to="(2360,1240)"/> <wire from="(2130,590)" to="(2130,660)"/> <wire from="(2130,590)" to="(3120,590)"/> <wire from="(2130,660)" to="(2130,860)"/> <wire from="(2130,860)" to="(2360,860)"/> <wire from="(2140,1130)" to="(2140,1220)"/> <wire from="(2140,1220)" to="(2360,1220)"/> <wire from="(2140,660)" to="(2140,1000)"/> <wire from="(2140,660)" to="(2360,660)"/> <wire from="(2150,320)" to="(2150,490)"/> <wire from="(2150,490)" to="(2230,490)"/> <wire from="(2150,680)" to="(2150,1010)"/> <wire from="(2150,680)" to="(2360,680)"/> <wire from="(2160,360)" to="(2160,480)"/> <wire from="(2160,480)" to="(2240,480)"/> <wire from="(2160,700)" to="(2160,1020)"/> <wire from="(2160,700)" to="(2360,700)"/> <wire from="(2170,1170)" to="(2170,2070)"/> <wire from="(2170,190)" to="(2170,310)"/> <wire from="(2170,190)" to="(3110,190)"/> <wire from="(2170,2070)" to="(3300,2070)"/> <wire from="(2170,310)" to="(2170,380)"/> <wire from="(2170,310)" to="(2250,310)"/> <wire from="(2170,720)" to="(2170,1030)"/> <wire from="(2170,720)" to="(2360,720)"/> <wire from="(2180,330)" to="(2180,340)"/> <wire from="(2180,330)" to="(2360,330)"/> <wire from="(2180,740)" to="(2180,1040)"/> <wire from="(2180,740)" to="(2360,740)"/> <wire from="(2190,1120)" to="(2190,1800)"/> <wire from="(2190,1120)" to="(2360,1120)"/> <wire from="(2190,300)" to="(2190,350)"/> <wire from="(2190,350)" to="(2360,350)"/> <wire from="(2190,510)" to="(2190,1120)"/> <wire from="(2190,510)" to="(2360,510)"/> <wire from="(220,2190)" to="(3690,2190)"/> <wire from="(220,60)" to="(220,2190)"/> <wire from="(220,60)" to="(570,60)"/> <wire from="(2200,280)" to="(2200,370)"/> <wire from="(2200,370)" to="(2360,370)"/> <wire from="(2210,260)" to="(2210,390)"/> <wire from="(2210,390)" to="(2360,390)"/> <wire from="(2220,1370)" to="(2730,1370)"/> <wire from="(2220,240)" to="(2220,410)"/> <wire from="(2220,410)" to="(2360,410)"/> <wire from="(2220,840)" to="(2220,1370)"/> <wire from="(2220,840)" to="(2360,840)"/> <wire from="(2230,1040)" to="(2360,1040)"/> <wire from="(2230,1160)" to="(2230,1440)"/> <wire from="(2230,1160)" to="(2360,1160)"/> <wire from="(2230,490)" to="(2230,820)"/> <wire from="(2230,820)" to="(2360,820)"/> <wire from="(2230,930)" to="(2230,1040)"/> <wire from="(2240,480)" to="(2240,800)"/> <wire from="(2240,800)" to="(2360,800)"/> <wire from="(2250,1000)" to="(2360,1000)"/> <wire from="(2250,1090)" to="(2250,1520)"/> <wire from="(2250,1090)" to="(2330,1090)"/> <wire from="(2250,110)" to="(2250,220)"/> <wire from="(2250,110)" to="(3220,110)"/> <wire from="(2250,1520)" to="(3890,1520)"/> <wire from="(2250,220)" to="(2250,290)"/> <wire from="(2250,290)" to="(2280,290)"/> <wire from="(2250,310)" to="(2250,780)"/> <wire from="(2250,310)" to="(2360,310)"/> <wire from="(2250,780)" to="(2360,780)"/> <wire from="(2250,960)" to="(2250,1000)"/> <wire from="(2280,290)" to="(2280,960)"/> <wire from="(2280,290)" to="(2360,290)"/> <wire from="(2280,960)" to="(2360,960)"/> <wire from="(2290,1020)" to="(2290,1420)"/> <wire from="(2290,1020)" to="(2360,1020)"/> <wire from="(2290,1420)" to="(2380,1420)"/> <wire from="(2300,180)" to="(2300,490)"/> <wire from="(2300,180)" to="(3880,180)"/> <wire from="(2300,490)" to="(2360,490)"/> <wire from="(2310,1100)" to="(2360,1100)"/> <wire from="(2310,1140)" to="(2310,1980)"/> <wire from="(2310,1140)" to="(2360,1140)"/> <wire from="(2310,1980)" to="(3320,1980)"/> <wire from="(2310,220)" to="(2310,470)"/> <wire from="(2310,220)" to="(3360,220)"/> <wire from="(2310,470)" to="(2310,1100)"/> <wire from="(2310,470)" to="(2360,470)"/> <wire from="(2330,1180)" to="(2330,1840)"/> <wire from="(2330,1180)" to="(2360,1180)"/> <wire from="(2350,1080)" to="(2360,1080)"/> <wire from="(2350,1280)" to="(2350,1340)"/> <wire from="(2350,1280)" to="(2360,1280)"/> <wire from="(2350,1340)" to="(3060,1340)"/> <wire from="(2380,1420)" to="(2380,1910)"/> <wire from="(2380,1910)" to="(3240,1910)"/> <wire from="(240,130)" to="(260,130)"/> <wire from="(240,1790)" to="(610,1790)"/> <wire from="(240,20)" to="(1990,20)"/> <wire from="(240,20)" to="(240,130)"/> <wire from="(240,230)" to="(240,1790)"/> <wire from="(2400,1540)" to="(2400,1820)"/> <wire from="(2400,1820)" to="(2700,1820)"/> <wire from="(2460,1450)" to="(2460,1550)"/> <wire from="(2460,1550)" to="(2460,1660)"/> <wire from="(2460,1550)" to="(3570,1550)"/> <wire from="(2580,250)" to="(3000,250)"/> <wire from="(2580,270)" to="(2760,270)"/> <wire from="(2580,290)" to="(2770,290)"/> <wire from="(2580,310)" to="(2780,310)"/> <wire from="(2580,330)" to="(2790,330)"/> <wire from="(2580,350)" to="(2750,350)"/> <wire from="(2580,370)" to="(2730,370)"/> <wire from="(2580,620)" to="(2630,620)"/> <wire from="(2580,640)" to="(2680,640)"/> <wire from="(2580,660)" to="(2650,660)"/> <wire from="(2630,620)" to="(2630,1860)"/> <wire from="(2630,620)" to="(2950,620)"/> <wire from="(2650,1800)" to="(2910,1800)"/> <wire from="(2650,660)" to="(2650,1800)"/> <wire from="(2680,1490)" to="(2680,1680)"/> <wire from="(2680,1490)" to="(3100,1490)"/> <wire from="(2680,1680)" to="(2910,1680)"/> <wire from="(2680,640)" to="(2680,1490)"/> <wire from="(270,1580)" to="(610,1580)"/> <wire from="(270,430)" to="(270,1580)"/> <wire from="(2700,1820)" to="(2700,1890)"/> <wire from="(2700,1820)" to="(2910,1820)"/> <wire from="(2700,1890)" to="(3200,1890)"/> <wire from="(2720,670)" to="(2720,1780)"/> <wire from="(2720,670)" to="(3510,670)"/> <wire from="(2730,370)" to="(2730,1370)"/> <wire from="(2750,1660)" to="(2910,1660)"/> <wire from="(2750,350)" to="(2750,1660)"/> <wire from="(2760,1700)" to="(2910,1700)"/> <wire from="(2760,270)" to="(2760,1700)"/> <wire from="(2770,1720)" to="(2910,1720)"/> <wire from="(2770,290)" to="(2770,1720)"/> <wire from="(2780,1740)" to="(2910,1740)"/> <wire from="(2780,310)" to="(2780,1740)"/> <wire from="(2790,1760)" to="(2910,1760)"/> <wire from="(2790,330)" to="(2790,1760)"/> <wire from="(2820,1780)" to="(2820,2120)"/> <wire from="(2820,1780)" to="(2910,1780)"/> <wire from="(2950,340)" to="(2950,620)"/> <wire from="(2950,340)" to="(3460,340)"/> <wire from="(3000,1350)" to="(3610,1350)"/> <wire from="(3000,250)" to="(3000,1350)"/> <wire from="(3030,770)" to="(3030,1390)"/> <wire from="(3030,770)" to="(3410,770)"/> <wire from="(3060,970)" to="(3060,1340)"/> <wire from="(3060,970)" to="(3610,970)"/> <wire from="(3090,200)" to="(3090,830)"/> <wire from="(3090,830)" to="(3610,830)"/> <wire from="(310,1380)" to="(550,1380)"/> <wire from="(310,370)" to="(310,1380)"/> <wire from="(3100,1330)" to="(3100,1490)"/> <wire from="(3100,1330)" to="(3610,1330)"/> <wire from="(3100,170)" to="(3100,810)"/> <wire from="(3100,810)" to="(3610,810)"/> <wire from="(3110,190)" to="(3110,790)"/> <wire from="(3110,790)" to="(3530,790)"/> <wire from="(3120,590)" to="(3120,990)"/> <wire from="(3120,990)" to="(3610,990)"/> <wire from="(3130,1620)" to="(3220,1620)"/> <wire from="(3130,1640)" to="(3140,1640)"/> <wire from="(3140,1010)" to="(3610,1010)"/> <wire from="(3140,160)" to="(3140,1010)"/> <wire from="(3140,1640)" to="(3140,2130)"/> <wire from="(3160,870)" to="(3160,2050)"/> <wire from="(3160,870)" to="(3610,870)"/> <wire from="(3170,1240)" to="(3170,2000)"/> <wire from="(3170,1240)" to="(3920,1240)"/> <wire from="(3170,130)" to="(3170,650)"/> <wire from="(3170,650)" to="(3440,650)"/> <wire from="(3180,1260)" to="(3180,2020)"/> <wire from="(3180,1260)" to="(3930,1260)"/> <wire from="(3200,1700)" to="(3200,1890)"/> <wire from="(3200,1700)" to="(3340,1700)"/> <wire from="(3200,750)" to="(3610,750)"/> <wire from="(3200,80)" to="(3200,750)"/> <wire from="(3220,110)" to="(3220,730)"/> <wire from="(3220,1620)" to="(3220,1780)"/> <wire from="(3220,1780)" to="(3340,1780)"/> <wire from="(3220,730)" to="(3610,730)"/> <wire from="(3240,1720)" to="(3240,1910)"/> <wire from="(3240,1720)" to="(3340,1720)"/> <wire from="(3260,1760)" to="(3260,1940)"/> <wire from="(3260,1760)" to="(3340,1760)"/> <wire from="(3260,40)" to="(3260,960)"/> <wire from="(3260,960)" to="(3320,960)"/> <wire from="(3270,1660)" to="(3270,1930)"/> <wire from="(3270,1660)" to="(3340,1660)"/> <wire from="(3280,60)" to="(3280,690)"/> <wire from="(3280,690)" to="(3550,690)"/> <wire from="(3300,1740)" to="(3300,2070)"/> <wire from="(3300,1740)" to="(3340,1740)"/> <wire from="(3300,2070)" to="(3760,2070)"/> <wire from="(3320,1800)" to="(3320,1980)"/> <wire from="(3320,1800)" to="(3340,1800)"/> <wire from="(3320,1980)" to="(4320,1980)"/> <wire from="(3330,1680)" to="(3340,1680)"/> <wire from="(3340,950)" to="(3610,950)"/> <wire from="(3360,220)" to="(3360,930)"/> <wire from="(3360,220)" to="(4290,220)"/> <wire from="(3360,930)" to="(3610,930)"/> <wire from="(3410,1450)" to="(3610,1450)"/> <wire from="(3410,770)" to="(3410,1450)"/> <wire from="(3410,770)" to="(3610,770)"/> <wire from="(3440,1410)" to="(3610,1410)"/> <wire from="(3440,650)" to="(3440,1410)"/> <wire from="(3440,650)" to="(3610,650)"/> <wire from="(3450,1160)" to="(3450,1390)"/> <wire from="(3450,1160)" to="(3970,1160)"/> <wire from="(3450,1390)" to="(3610,1390)"/> <wire from="(3450,600)" to="(3450,710)"/> <wire from="(3450,710)" to="(3450,1160)"/> <wire from="(3450,710)" to="(3610,710)"/> <wire from="(3460,340)" to="(3460,490)"/> <wire from="(3460,340)" to="(4200,340)"/> <wire from="(3460,490)" to="(3480,490)"/> <wire from="(3470,570)" to="(3470,850)"/> <wire from="(3470,570)" to="(4310,570)"/> <wire from="(3470,850)" to="(3610,850)"/> <wire from="(350,280)" to="(350,810)"/> <wire from="(350,810)" to="(750,810)"/> <wire from="(3500,480)" to="(3540,480)"/> <wire from="(3510,1110)" to="(3940,1110)"/> <wire from="(3510,210)" to="(3510,410)"/> <wire from="(3510,210)" to="(4370,210)"/> <wire from="(3510,410)" to="(3580,410)"/> <wire from="(3510,670)" to="(3510,1110)"/> <wire from="(3510,670)" to="(3610,670)"/> <wire from="(3530,1130)" to="(3950,1130)"/> <wire from="(3530,470)" to="(3540,470)"/> <wire from="(3530,790)" to="(3530,1130)"/> <wire from="(3530,790)" to="(3610,790)"/> <wire from="(3540,1200)" to="(3540,1370)"/> <wire from="(3540,1200)" to="(3860,1200)"/> <wire from="(3540,1370)" to="(3610,1370)"/> <wire from="(3550,1150)" to="(3960,1150)"/> <wire from="(3550,690)" to="(3550,1150)"/> <wire from="(3550,690)" to="(3610,690)"/> <wire from="(3560,1620)" to="(3790,1620)"/> <wire from="(3560,1640)" to="(3780,1640)"/> <wire from="(3560,1660)" to="(3570,1660)"/> <wire from="(3570,1550)" to="(3570,1660)"/> <wire from="(3570,1550)" to="(3920,1550)"/> <wire from="(3580,1090)" to="(4040,1090)"/> <wire from="(3580,370)" to="(3580,410)"/> <wire from="(3580,370)" to="(3730,370)"/> <wire from="(3580,410)" to="(3600,410)"/> <wire from="(3580,910)" to="(3580,1090)"/> <wire from="(3580,910)" to="(3610,910)"/> <wire from="(3600,1430)" to="(3610,1430)"/> <wire from="(3600,380)" to="(3600,410)"/> <wire from="(3600,380)" to="(3630,380)"/> <wire from="(3600,410)" to="(3610,410)"/> <wire from="(3600,890)" to="(3610,890)"/> <wire from="(3630,380)" to="(3630,390)"/> <wire from="(3650,410)" to="(3680,410)"/> <wire from="(3650,470)" to="(3680,470)"/> <wire from="(3680,120)" to="(4460,120)"/> <wire from="(3680,30)" to="(3680,120)"/> <wire from="(3680,410)" to="(3680,440)"/> <wire from="(3680,440)" to="(3700,440)"/> <wire from="(3680,460)" to="(3680,470)"/> <wire from="(3680,460)" to="(3700,460)"/> <wire from="(3690,1580)" to="(3690,2190)"/> <wire from="(3690,1580)" to="(3840,1580)"/> <wire from="(370,2220)" to="(3840,2220)"/> <wire from="(370,300)" to="(370,2220)"/> <wire from="(370,300)" to="(540,300)"/> <wire from="(3730,1730)" to="(3730,1960)"/> <wire from="(3740,450)" to="(3750,450)"/> <wire from="(3750,1700)" to="(3910,1700)"/> <wire from="(3750,1710)" to="(3760,1710)"/> <wire from="(3750,1720)" to="(3750,1760)"/> <wire from="(3750,1760)" to="(3910,1760)"/> <wire from="(3750,370)" to="(3760,370)"/> <wire from="(3760,1710)" to="(3760,1740)"/> <wire from="(3760,1740)" to="(3910,1740)"/> <wire from="(3760,1820)" to="(3760,2070)"/> <wire from="(3760,1820)" to="(3910,1820)"/> <wire from="(3760,370)" to="(3760,440)"/> <wire from="(3770,450)" to="(3970,450)"/> <wire from="(3780,1640)" to="(3780,1720)"/> <wire from="(3780,1720)" to="(3910,1720)"/> <wire from="(3790,1620)" to="(3790,1680)"/> <wire from="(3790,1680)" to="(3910,1680)"/> <wire from="(3810,1780)" to="(3810,2090)"/> <wire from="(3810,1780)" to="(3910,1780)"/> <wire from="(3820,1800)" to="(3820,2100)"/> <wire from="(3820,1800)" to="(3910,1800)"/> <wire from="(3830,1310)" to="(3840,1310)"/> <wire from="(3830,610)" to="(3840,610)"/> <wire from="(3830,630)" to="(3940,630)"/> <wire from="(3830,650)" to="(3930,650)"/> <wire from="(3830,670)" to="(3910,670)"/> <wire from="(3830,690)" to="(3920,690)"/> <wire from="(3830,710)" to="(3890,710)"/> <wire from="(3830,730)" to="(3880,730)"/> <wire from="(3830,750)" to="(3860,750)"/> <wire from="(3840,1580)" to="(3840,1600)"/> <wire from="(3840,1580)" to="(3910,1580)"/> <wire from="(3840,1600)" to="(3870,1600)"/> <wire from="(3840,1660)" to="(3840,2220)"/> <wire from="(3840,1660)" to="(3910,1660)"/> <wire from="(3860,1300)" to="(3870,1300)"/> <wire from="(3860,600)" to="(3870,600)"/> <wire from="(3860,750)" to="(3860,1200)"/> <wire from="(3870,1050)" to="(3870,1300)"/> <wire from="(3870,1050)" to="(4280,1050)"/> <wire from="(3870,1300)" to="(3920,1300)"/> <wire from="(3870,600)" to="(3870,1050)"/> <wire from="(3880,180)" to="(3880,730)"/> <wire from="(3890,1600)" to="(3910,1600)"/> <wire from="(3890,710)" to="(3890,1520)"/> <wire from="(390,1090)" to="(1170,1090)"/> <wire from="(390,1090)" to="(390,1280)"/> <wire from="(390,1280)" to="(1170,1280)"/> <wire from="(390,1280)" to="(390,1680)"/> <wire from="(390,1680)" to="(1570,1680)"/> <wire from="(390,280)" to="(390,860)"/> <wire from="(390,280)" to="(500,280)"/> <wire from="(390,860)" to="(390,1090)"/> <wire from="(390,860)" to="(550,860)"/> <wire from="(3910,670)" to="(3910,760)"/> <wire from="(3910,760)" to="(4050,760)"/> <wire from="(3920,1300)" to="(3920,1330)"/> <wire from="(3920,1330)" to="(3920,1550)"/> <wire from="(3920,1330)" to="(4050,1330)"/> <wire from="(3920,690)" to="(3920,740)"/> <wire from="(3920,740)" to="(4050,740)"/> <wire from="(3920,860)" to="(3920,1240)"/> <wire from="(3920,860)" to="(4050,860)"/> <wire from="(3930,650)" to="(3930,700)"/> <wire from="(3930,700)" to="(4050,700)"/> <wire from="(3930,840)" to="(3930,1260)"/> <wire from="(3930,840)" to="(4050,840)"/> <wire from="(3940,630)" to="(3940,680)"/> <wire from="(3940,680)" to="(4050,680)"/> <wire from="(3940,720)" to="(3940,1110)"/> <wire from="(3940,720)" to="(4050,720)"/> <wire from="(3950,780)" to="(3950,1130)"/> <wire from="(3950,780)" to="(4050,780)"/> <wire from="(3960,1260)" to="(3960,1510)"/> <wire from="(3960,1260)" to="(4090,1260)"/> <wire from="(3960,1510)" to="(4170,1510)"/> <wire from="(3960,820)" to="(3960,1150)"/> <wire from="(3960,820)" to="(4050,820)"/> <wire from="(3970,300)" to="(3970,450)"/> <wire from="(3970,300)" to="(4510,300)"/> <wire from="(3970,800)" to="(3970,1160)"/> <wire from="(3970,800)" to="(4050,800)"/> <wire from="(4040,1090)" to="(4320,1090)"/> <wire from="(4040,1320)" to="(4050,1320)"/> <wire from="(4040,880)" to="(4050,880)"/> <wire from="(4040,900)" to="(4040,1090)"/> <wire from="(4040,900)" to="(4050,900)"/> <wire from="(4090,1220)" to="(4090,1260)"/> <wire from="(4090,1220)" to="(4240,1220)"/> <wire from="(4090,1260)" to="(4110,1260)"/> <wire from="(4110,1230)" to="(4110,1260)"/> <wire from="(4110,1230)" to="(4140,1230)"/> <wire from="(4110,1260)" to="(4120,1260)"/> <wire from="(4130,1580)" to="(4450,1580)"/> <wire from="(4140,1230)" to="(4140,1240)"/> <wire from="(4160,1260)" to="(4190,1260)"/> <wire from="(4160,1320)" to="(4190,1320)"/> <wire from="(4170,1510)" to="(4170,2200)"/> <wire from="(4190,1260)" to="(4190,1290)"/> <wire from="(4190,1290)" to="(4210,1290)"/> <wire from="(4190,1310)" to="(4190,1320)"/> <wire from="(4190,1310)" to="(4210,1310)"/> <wire from="(4220,330)" to="(4470,330)"/> <wire from="(4250,1300)" to="(4260,1300)"/> <wire from="(4260,1220)" to="(4270,1220)"/> <wire from="(4270,1220)" to="(4270,1290)"/> <wire from="(4270,640)" to="(4290,640)"/> <wire from="(4270,660)" to="(4280,660)"/> <wire from="(4270,680)" to="(4310,680)"/> <wire from="(4280,660)" to="(4280,1050)"/> <wire from="(4290,1300)" to="(4410,1300)"/> <wire from="(4290,220)" to="(4290,640)"/> <wire from="(430,1160)" to="(550,1160)"/> <wire from="(430,190)" to="(430,630)"/> <wire from="(430,630)" to="(430,1160)"/> <wire from="(430,630)" to="(570,630)"/> <wire from="(4310,570)" to="(4310,680)"/> <wire from="(4320,1090)" to="(4320,1980)"/> <wire from="(4340,180)" to="(4340,2250)"/> <wire from="(4340,180)" to="(4510,180)"/> <wire from="(4370,210)" to="(4370,2140)"/> <wire from="(4370,210)" to="(4470,210)"/> <wire from="(4380,270)" to="(4380,2150)"/> <wire from="(4380,270)" to="(4470,270)"/> <wire from="(4390,240)" to="(4390,2160)"/> <wire from="(4390,240)" to="(4470,240)"/> <wire from="(4410,150)" to="(4410,1300)"/> <wire from="(4410,150)" to="(4510,150)"/> <wire from="(4450,360)" to="(4450,1580)"/> <wire from="(4450,360)" to="(4510,360)"/> <wire from="(4460,100)" to="(4460,120)"/> <wire from="(4460,100)" to="(4480,100)"/> <wire from="(4460,120)" to="(4470,120)"/> <wire from="(4480,100)" to="(4480,110)"/> <wire from="(4490,120)" to="(4510,120)"/> <wire from="(4490,210)" to="(4510,210)"/> <wire from="(4490,240)" to="(4510,240)"/> <wire from="(4490,270)" to="(4510,270)"/> <wire from="(4490,330)" to="(4510,330)"/> <wire from="(450,1230)" to="(450,1740)"/> <wire from="(450,1230)" to="(790,1230)"/> <wire from="(450,1740)" to="(760,1740)"/> <wire from="(480,110)" to="(540,110)"/> <wire from="(480,130)" to="(500,130)"/> <wire from="(490,880)" to="(550,880)"/> <wire from="(500,130)" to="(500,280)"/> <wire from="(500,1440)" to="(500,2130)"/> <wire from="(500,1440)" to="(550,1440)"/> <wire from="(500,2130)" to="(3140,2130)"/> <wire from="(500,720)" to="(1180,720)"/> <wire from="(500,720)" to="(500,900)"/> <wire from="(500,900)" to="(550,900)"/> <wire from="(510,1250)" to="(1420,1250)"/> <wire from="(510,1250)" to="(510,1400)"/> <wire from="(510,1400)" to="(550,1400)"/> <wire from="(510,740)" to="(1050,740)"/> <wire from="(510,740)" to="(510,920)"/> <wire from="(510,920)" to="(550,920)"/> <wire from="(540,110)" to="(540,170)"/> <wire from="(540,1180)" to="(550,1180)"/> <wire from="(540,170)" to="(540,300)"/> <wire from="(540,170)" to="(610,170)"/> <wire from="(540,300)" to="(540,370)"/> <wire from="(540,370)" to="(640,370)"/> <wire from="(570,100)" to="(600,100)"/> <wire from="(570,60)" to="(570,80)"/> <wire from="(570,630)" to="(570,840)"/> <wire from="(570,80)" to="(570,100)"/> <wire from="(570,80)" to="(630,80)"/> <wire from="(570,840)" to="(790,840)"/> <wire from="(600,1570)" to="(610,1570)"/> <wire from="(600,1780)" to="(610,1780)"/> <wire from="(600,420)" to="(600,510)"/> <wire from="(600,510)" to="(1320,510)"/> <wire from="(610,120)" to="(610,170)"/> <wire from="(610,120)" to="(630,120)"/> <wire from="(610,170)" to="(1330,170)"/> <wire from="(620,100)" to="(630,100)"/> <wire from="(620,390)" to="(640,390)"/> <wire from="(620,400)" to="(630,400)"/> <wire from="(620,410)" to="(620,430)"/> <wire from="(620,430)" to="(640,430)"/> <wire from="(630,400)" to="(630,410)"/> <wire from="(630,410)" to="(640,410)"/> <wire from="(720,1580)" to="(740,1580)"/> <wire from="(720,1790)" to="(740,1790)"/> <wire from="(770,1160)" to="(990,1160)"/> <wire from="(770,1180)" to="(790,1180)"/> <wire from="(770,1380)" to="(940,1380)"/> <wire from="(770,1400)" to="(850,1400)"/> <wire from="(770,1580)" to="(1260,1580)"/> <wire from="(770,1790)" to="(780,1790)"/> <wire from="(770,780)" to="(790,780)"/> <wire from="(770,790)" to="(780,790)"/> <wire from="(770,800)" to="(770,820)"/> <wire from="(770,820)" to="(790,820)"/> <wire from="(770,860)" to="(790,860)"/> <wire from="(770,880)" to="(790,880)"/> <wire from="(780,1740)" to="(790,1740)"/> <wire from="(780,790)" to="(780,800)"/> <wire from="(780,800)" to="(790,800)"/> <wire from="(790,1180)" to="(790,1230)"/> <wire from="(790,1740)" to="(790,1780)"/> <wire from="(800,1790)" to="(1100,1790)"/> <wire from="(850,100)" to="(860,100)"/> <wire from="(850,1400)" to="(850,2250)"/> <wire from="(850,2250)" to="(4340,2250)"/> <wire from="(850,80)" to="(860,80)"/> <wire from="(860,330)" to="(880,330)"/> <wire from="(860,350)" to="(900,350)"/> <wire from="(880,250)" to="(1360,250)"/> <wire from="(880,250)" to="(880,330)"/> <wire from="(880,330)" to="(960,330)"/> <wire from="(900,270)" to="(1350,270)"/> <wire from="(900,270)" to="(900,350)"/> <wire from="(900,350)" to="(960,350)"/> <wire from="(930,110)" to="(1960,110)"/> <wire from="(930,110)" to="(930,390)"/> <wire from="(930,390)" to="(960,390)"/> <wire from="(940,120)" to="(1860,120)"/> <wire from="(940,120)" to="(940,370)"/> <wire from="(940,1380)" to="(940,2120)"/> <wire from="(940,2120)" to="(2820,2120)"/> <wire from="(940,370)" to="(960,370)"/> <wire from="(990,1160)" to="(990,2200)"/> <wire from="(990,2200)" to="(4170,2200)"/> </circuit> <circuit name="HV_FSM"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="HV_FSM"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(100,780)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VBL_EN"/> </comp> <comp lib="0" loc="(100,810)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(100,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(1040,880)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1090,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H5_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H4_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H3_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H2_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_H2_D"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H1_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_H1_D"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H0_DD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H0_D"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="S_EV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CLIP_O"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SC_CNT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CLIP_B"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_HPOS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_EVAL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="E_EV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BURST"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="I_OAM2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAR_O"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_VIS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_FNT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FTB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FTA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_FO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,620)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FAT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RESCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,710)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PICTURE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BLNK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,860)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="INT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,880)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1090,910)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="V_IN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,930)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="HC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1090,950)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,860)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(150,520)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="24"/> <a name="incoming" val="24"/> </comp> <comp lib="0" loc="(170,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_OBCLIP"/> </comp> <comp lib="0" loc="(170,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_BGCLIP"/> </comp> <comp lib="0" loc="(170,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BLACK"/> </comp> <comp lib="0" loc="(170,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="H"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="V"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VPLA_out"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="HPLA_out"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(380,390)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="9"/> </comp> <comp lib="1" loc="(210,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(600,690)" name="VBlankInterrupt"> <a name="label" val="VB_Intr_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,860)" name="HVCountersControl"> <a name="label" val="HV_Counter_Ctrl_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,350)" name="DelayedH"> <a name="label" val="DelayedH_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,550)" name="EvenOdd"> <a name="label" val="EvenOdd_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(950,330)" name="HPosLogic"> <a name="label" val="HPos_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(970,680)" name="VPosLogic"> <a name="label" val="VPos_inst"/> <a name="labelfont" val="SansSerif plain 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,510)" to="(280,510)"/> <wire from="(100,780)" to="(230,780)"/> <wire from="(100,810)" to="(240,810)"/> <wire from="(100,840)" to="(250,840)"/> <wire from="(1000,360)" to="(1000,370)"/> <wire from="(1000,360)" to="(1090,360)"/> <wire from="(1000,470)" to="(1000,540)"/> <wire from="(1000,540)" to="(1090,540)"/> <wire from="(1000,670)" to="(1000,690)"/> <wire from="(1000,670)" to="(1090,670)"/> <wire from="(1000,700)" to="(1000,710)"/> <wire from="(1000,710)" to="(1090,710)"/> <wire from="(1010,380)" to="(1010,610)"/> <wire from="(1010,640)" to="(1010,720)"/> <wire from="(1020,340)" to="(1020,620)"/> <wire from="(1020,630)" to="(1020,690)"/> <wire from="(1020,690)" to="(1020,730)"/> <wire from="(1020,690)" to="(1090,690)"/> <wire from="(1030,380)" to="(1030,390)"/> <wire from="(1030,380)" to="(1090,380)"/> <wire from="(1030,460)" to="(1030,520)"/> <wire from="(1030,520)" to="(1090,520)"/> <wire from="(1030,570)" to="(1030,680)"/> <wire from="(1040,450)" to="(1040,500)"/> <wire from="(1040,500)" to="(1090,500)"/> <wire from="(1040,880)" to="(1090,880)"/> <wire from="(1050,440)" to="(1050,480)"/> <wire from="(1050,480)" to="(1090,480)"/> <wire from="(1050,590)" to="(1050,620)"/> <wire from="(1050,620)" to="(1090,620)"/> <wire from="(1060,430)" to="(1060,460)"/> <wire from="(1060,460)" to="(1090,460)"/> <wire from="(1060,580)" to="(1060,600)"/> <wire from="(1060,600)" to="(1090,600)"/> <wire from="(1070,420)" to="(1070,440)"/> <wire from="(1070,440)" to="(1090,440)"/> <wire from="(1070,560)" to="(1070,580)"/> <wire from="(1070,580)" to="(1090,580)"/> <wire from="(1080,330)" to="(1080,340)"/> <wire from="(1080,340)" to="(1090,340)"/> <wire from="(1080,410)" to="(1080,420)"/> <wire from="(1080,420)" to="(1090,420)"/> <wire from="(1080,550)" to="(1080,560)"/> <wire from="(1080,560)" to="(1090,560)"/> <wire from="(1080,730)" to="(1080,740)"/> <wire from="(1080,730)" to="(1090,730)"/> <wire from="(120,450)" to="(120,860)"/> <wire from="(120,450)" to="(210,450)"/> <wire from="(120,60)" to="(450,60)"/> <wire from="(120,860)" to="(120,970)"/> <wire from="(120,860)" to="(140,860)"/> <wire from="(120,90)" to="(440,90)"/> <wire from="(120,970)" to="(760,970)"/> <wire from="(150,460)" to="(150,520)"/> <wire from="(150,460)" to="(180,460)"/> <wire from="(160,870)" to="(160,890)"/> <wire from="(160,890)" to="(490,890)"/> <wire from="(170,120)" to="(770,120)"/> <wire from="(170,150)" to="(740,150)"/> <wire from="(170,180)" to="(730,180)"/> <wire from="(170,220)" to="(400,220)"/> <wire from="(170,270)" to="(250,270)"/> <wire from="(170,330)" to="(210,330)"/> <wire from="(170,400)" to="(180,400)"/> <wire from="(170,580)" to="(190,580)"/> <wire from="(170,760)" to="(170,870)"/> <wire from="(170,870)" to="(490,870)"/> <wire from="(180,400)" to="(180,460)"/> <wire from="(180,460)" to="(180,500)"/> <wire from="(180,500)" to="(760,500)"/> <wire from="(210,330)" to="(210,450)"/> <wire from="(210,580)" to="(390,580)"/> <wire from="(230,720)" to="(230,780)"/> <wire from="(230,720)" to="(490,720)"/> <wire from="(240,740)" to="(240,810)"/> <wire from="(240,740)" to="(490,740)"/> <wire from="(250,270)" to="(250,380)"/> <wire from="(250,380)" to="(380,380)"/> <wire from="(250,750)" to="(250,840)"/> <wire from="(250,750)" to="(490,750)"/> <wire from="(280,510)" to="(280,560)"/> <wire from="(280,560)" to="(480,560)"/> <wire from="(380,380)" to="(380,390)"/> <wire from="(390,570)" to="(390,580)"/> <wire from="(390,570)" to="(480,570)"/> <wire from="(400,220)" to="(400,370)"/> <wire from="(400,370)" to="(480,370)"/> <wire from="(400,400)" to="(400,550)"/> <wire from="(400,550)" to="(480,550)"/> <wire from="(420,580)" to="(420,630)"/> <wire from="(420,580)" to="(480,580)"/> <wire from="(420,630)" to="(1020,630)"/> <wire from="(420,630)" to="(420,730)"/> <wire from="(420,730)" to="(490,730)"/> <wire from="(430,640)" to="(1010,640)"/> <wire from="(430,640)" to="(430,710)"/> <wire from="(430,710)" to="(490,710)"/> <wire from="(430,820)" to="(430,880)"/> <wire from="(430,820)" to="(660,820)"/> <wire from="(430,880)" to="(490,880)"/> <wire from="(440,360)" to="(440,700)"/> <wire from="(440,360)" to="(480,360)"/> <wire from="(440,700)" to="(440,860)"/> <wire from="(440,700)" to="(490,700)"/> <wire from="(440,860)" to="(490,860)"/> <wire from="(440,90)" to="(440,360)"/> <wire from="(440,90)" to="(790,90)"/> <wire from="(450,350)" to="(450,690)"/> <wire from="(450,350)" to="(480,350)"/> <wire from="(450,60)" to="(450,350)"/> <wire from="(450,60)" to="(800,60)"/> <wire from="(450,690)" to="(490,690)"/> <wire from="(600,690)" to="(690,690)"/> <wire from="(600,700)" to="(680,700)"/> <wire from="(610,860)" to="(810,860)"/> <wire from="(610,870)" to="(800,870)"/> <wire from="(610,880)" to="(790,880)"/> <wire from="(620,350)" to="(630,350)"/> <wire from="(620,360)" to="(640,360)"/> <wire from="(620,370)" to="(650,370)"/> <wire from="(620,380)" to="(660,380)"/> <wire from="(620,390)" to="(670,390)"/> <wire from="(620,400)" to="(680,400)"/> <wire from="(620,410)" to="(690,410)"/> <wire from="(620,420)" to="(700,420)"/> <wire from="(620,430)" to="(710,430)"/> <wire from="(620,550)" to="(660,550)"/> <wire from="(630,190)" to="(630,350)"/> <wire from="(630,190)" to="(810,190)"/> <wire from="(640,200)" to="(640,360)"/> <wire from="(640,200)" to="(820,200)"/> <wire from="(650,210)" to="(650,370)"/> <wire from="(650,210)" to="(830,210)"/> <wire from="(660,220)" to="(660,380)"/> <wire from="(660,220)" to="(840,220)"/> <wire from="(660,550)" to="(660,820)"/> <wire from="(670,230)" to="(670,390)"/> <wire from="(670,230)" to="(850,230)"/> <wire from="(680,240)" to="(680,400)"/> <wire from="(680,240)" to="(860,240)"/> <wire from="(680,700)" to="(680,790)"/> <wire from="(680,790)" to="(870,790)"/> <wire from="(690,250)" to="(690,410)"/> <wire from="(690,250)" to="(870,250)"/> <wire from="(690,690)" to="(690,780)"/> <wire from="(690,780)" to="(880,780)"/> <wire from="(700,260)" to="(700,420)"/> <wire from="(700,260)" to="(880,260)"/> <wire from="(710,270)" to="(1090,270)"/> <wire from="(710,270)" to="(710,430)"/> <wire from="(730,180)" to="(730,390)"/> <wire from="(730,390)" to="(730,730)"/> <wire from="(730,390)" to="(830,390)"/> <wire from="(730,730)" to="(840,730)"/> <wire from="(740,150)" to="(740,370)"/> <wire from="(740,370)" to="(830,370)"/> <wire from="(760,350)" to="(760,500)"/> <wire from="(760,350)" to="(830,350)"/> <wire from="(760,620)" to="(1020,620)"/> <wire from="(760,620)" to="(760,710)"/> <wire from="(760,710)" to="(840,710)"/> <wire from="(760,720)" to="(760,970)"/> <wire from="(760,720)" to="(840,720)"/> <wire from="(770,120)" to="(770,360)"/> <wire from="(770,360)" to="(830,360)"/> <wire from="(770,610)" to="(1010,610)"/> <wire from="(770,610)" to="(770,700)"/> <wire from="(770,700)" to="(840,700)"/> <wire from="(790,340)" to="(790,690)"/> <wire from="(790,340)" to="(830,340)"/> <wire from="(790,690)" to="(840,690)"/> <wire from="(790,880)" to="(790,950)"/> <wire from="(790,90)" to="(790,340)"/> <wire from="(790,950)" to="(1090,950)"/> <wire from="(800,330)" to="(800,680)"/> <wire from="(800,330)" to="(830,330)"/> <wire from="(800,60)" to="(800,330)"/> <wire from="(800,680)" to="(840,680)"/> <wire from="(800,870)" to="(800,930)"/> <wire from="(800,930)" to="(1090,930)"/> <wire from="(810,110)" to="(1090,110)"/> <wire from="(810,110)" to="(810,190)"/> <wire from="(810,380)" to="(810,570)"/> <wire from="(810,380)" to="(830,380)"/> <wire from="(810,570)" to="(1030,570)"/> <wire from="(810,860)" to="(810,910)"/> <wire from="(810,910)" to="(1090,910)"/> <wire from="(820,130)" to="(1090,130)"/> <wire from="(820,130)" to="(820,200)"/> <wire from="(830,150)" to="(1090,150)"/> <wire from="(830,150)" to="(830,210)"/> <wire from="(840,170)" to="(1090,170)"/> <wire from="(840,170)" to="(840,220)"/> <wire from="(850,190)" to="(1090,190)"/> <wire from="(850,190)" to="(850,230)"/> <wire from="(860,210)" to="(1090,210)"/> <wire from="(860,210)" to="(860,240)"/> <wire from="(870,230)" to="(1090,230)"/> <wire from="(870,230)" to="(870,250)"/> <wire from="(870,790)" to="(870,890)"/> <wire from="(870,890)" to="(1020,890)"/> <wire from="(880,250)" to="(1090,250)"/> <wire from="(880,250)" to="(880,260)"/> <wire from="(880,780)" to="(880,860)"/> <wire from="(880,860)" to="(1090,860)"/> <wire from="(950,330)" to="(970,330)"/> <wire from="(950,340)" to="(1020,340)"/> <wire from="(950,350)" to="(980,350)"/> <wire from="(950,360)" to="(990,360)"/> <wire from="(950,370)" to="(1000,370)"/> <wire from="(950,380)" to="(1010,380)"/> <wire from="(950,390)" to="(1030,390)"/> <wire from="(950,400)" to="(1090,400)"/> <wire from="(950,410)" to="(1080,410)"/> <wire from="(950,420)" to="(1070,420)"/> <wire from="(950,430)" to="(1060,430)"/> <wire from="(950,440)" to="(1050,440)"/> <wire from="(950,450)" to="(1040,450)"/> <wire from="(950,460)" to="(1030,460)"/> <wire from="(950,470)" to="(1000,470)"/> <wire from="(950,480)" to="(990,480)"/> <wire from="(950,490)" to="(980,490)"/> <wire from="(950,500)" to="(970,500)"/> <wire from="(950,510)" to="(960,510)"/> <wire from="(960,510)" to="(960,590)"/> <wire from="(960,590)" to="(1050,590)"/> <wire from="(970,300)" to="(1090,300)"/> <wire from="(970,300)" to="(970,330)"/> <wire from="(970,500)" to="(970,580)"/> <wire from="(970,580)" to="(1060,580)"/> <wire from="(970,680)" to="(1030,680)"/> <wire from="(970,690)" to="(1000,690)"/> <wire from="(970,700)" to="(1000,700)"/> <wire from="(970,710)" to="(990,710)"/> <wire from="(970,720)" to="(1010,720)"/> <wire from="(970,730)" to="(1020,730)"/> <wire from="(980,320)" to="(1090,320)"/> <wire from="(980,320)" to="(980,350)"/> <wire from="(980,490)" to="(980,560)"/> <wire from="(980,560)" to="(1070,560)"/> <wire from="(990,330)" to="(1080,330)"/> <wire from="(990,330)" to="(990,360)"/> <wire from="(990,480)" to="(990,550)"/> <wire from="(990,550)" to="(1080,550)"/> <wire from="(990,710)" to="(990,740)"/> <wire from="(990,740)" to="(1080,740)"/> </circuit> <circuit name="DLatch"> <a name="appearance" val="custom"/> <a name="circuit" val="DLatch"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="#2cff4e" height="40" stroke="#000000" width="40" x="50" y="50"/> <ellipse cx="90" cy="80" fill="none" rx="5" ry="5" stroke="#000000" stroke-width="2"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="42">DL</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,130" x="50" y="60"/> <circ-port dir="in" pin="120,210" x="50" y="80"/> <circ-port dir="out" pin="370,130" x="90" y="60"/> <circ-port dir="out" pin="370,210" x="90" y="80"/> </appear> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Value"/> </comp> <comp lib="0" loc="(370,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="ValOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_ValOut"/> <a name="output" val="true"/> </comp> <comp lib="4" loc="(230,140)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <wire from="(120,130)" to="(170,130)"/> <wire from="(120,210)" to="(190,210)"/> <wire from="(170,130)" to="(170,190)"/> <wire from="(170,190)" to="(220,190)"/> <wire from="(190,150)" to="(190,210)"/> <wire from="(190,150)" to="(220,150)"/> <wire from="(280,150)" to="(330,150)"/> <wire from="(280,190)" to="(330,190)"/> <wire from="(330,130)" to="(330,150)"/> <wire from="(330,130)" to="(370,130)"/> <wire from="(330,190)" to="(330,210)"/> <wire from="(330,210)" to="(370,210)"/> </circuit> <circuit name="DelayedH"> <a name="appearance" val="evolution"/> <a name="circuit" val="DelayedH"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="150" stroke="#000000" width="100" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="65" y="60">PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="65" y="70">/PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="69" y="170">H_Input</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="60">H0''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="138" y="70">H0'</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="89">H1''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="138" y="99">/H1'</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="119">H2''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="138" y="129">/H2'</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="149">H3''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="169">H4''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="139" y="189">H5''</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="39">DELAYED H</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,50" x="50" y="60"/> <circ-port dir="in" pin="110,90" x="50" y="70"/> <circ-port dir="in" pin="170,280" x="50" y="170"/> <circ-port dir="out" pin="560,130" x="150" y="190"/> <circ-port dir="out" pin="560,210" x="150" y="170"/> <circ-port dir="out" pin="560,290" x="150" y="150"/> <circ-port dir="out" pin="560,350" x="150" y="120"/> <circ-port dir="out" pin="560,380" x="150" y="130"/> <circ-port dir="out" pin="560,430" x="150" y="90"/> <circ-port dir="out" pin="560,460" x="150" y="100"/> <circ-port dir="out" pin="560,510" x="150" y="60"/> <circ-port dir="out" pin="560,540" x="150" y="70"/> </appear> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(170,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="H_Input"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(200,280)" name="Splitter"> <a name="bit0" val="8"/> <a name="bit1" val="7"/> <a name="bit2" val="6"/> <a name="bit3" val="5"/> <a name="bit5" val="3"/> <a name="bit6" val="2"/> <a name="bit7" val="1"/> <a name="bit8" val="0"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(560,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H5_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H4_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H3_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H2_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_H2_Dash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H1_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_H1_Dash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,510)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H0_DashDash"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,540)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="H0_Dash"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(550,380)" name="Buffer"/> <comp lib="1" loc="(550,510)" name="Buffer"/> <comp lib="1" loc="(550,540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp loc="(320,110)" name="DLatch"> <a name="label" val="h5_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,190)" name="DLatch"> <a name="label" val="h4_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,270)" name="DLatch"> <a name="label" val="h3_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,350)" name="DLatch"> <a name="label" val="h2_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,430)" name="DLatch"> <a name="label" val="h1_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,510)" name="DLatch"> <a name="label" val="h0_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,110)" name="DLatch"> <a name="label" val="h5_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,190)" name="DLatch"> <a name="label" val="h4_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,270)" name="DLatch"> <a name="label" val="h3_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,350)" name="DLatch"> <a name="label" val="h2_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,430)" name="DLatch"> <a name="label" val="h1_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,510)" name="DLatch"> <a name="label" val="h0_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,50)" to="(420,50)"/> <wire from="(110,90)" to="(300,90)"/> <wire from="(170,280)" to="(200,280)"/> <wire from="(220,220)" to="(240,220)"/> <wire from="(220,230)" to="(250,230)"/> <wire from="(220,240)" to="(280,240)"/> <wire from="(220,250)" to="(270,250)"/> <wire from="(220,260)" to="(260,260)"/> <wire from="(220,270)" to="(250,270)"/> <wire from="(240,130)" to="(240,220)"/> <wire from="(240,130)" to="(320,130)"/> <wire from="(250,210)" to="(250,230)"/> <wire from="(250,210)" to="(320,210)"/> <wire from="(250,270)" to="(250,530)"/> <wire from="(250,530)" to="(320,530)"/> <wire from="(260,260)" to="(260,450)"/> <wire from="(260,450)" to="(320,450)"/> <wire from="(270,250)" to="(270,370)"/> <wire from="(270,370)" to="(320,370)"/> <wire from="(280,240)" to="(280,290)"/> <wire from="(280,290)" to="(320,290)"/> <wire from="(300,110)" to="(300,190)"/> <wire from="(300,110)" to="(320,110)"/> <wire from="(300,190)" to="(300,270)"/> <wire from="(300,190)" to="(320,190)"/> <wire from="(300,270)" to="(300,350)"/> <wire from="(300,270)" to="(320,270)"/> <wire from="(300,350)" to="(300,430)"/> <wire from="(300,350)" to="(320,350)"/> <wire from="(300,430)" to="(300,510)"/> <wire from="(300,430)" to="(320,430)"/> <wire from="(300,510)" to="(320,510)"/> <wire from="(300,90)" to="(300,110)"/> <wire from="(360,130)" to="(440,130)"/> <wire from="(360,210)" to="(440,210)"/> <wire from="(360,290)" to="(440,290)"/> <wire from="(360,370)" to="(400,370)"/> <wire from="(360,450)" to="(400,450)"/> <wire from="(360,530)" to="(400,530)"/> <wire from="(400,370)" to="(400,400)"/> <wire from="(400,370)" to="(440,370)"/> <wire from="(400,400)" to="(520,400)"/> <wire from="(400,450)" to="(400,480)"/> <wire from="(400,450)" to="(440,450)"/> <wire from="(400,480)" to="(540,480)"/> <wire from="(400,530)" to="(400,570)"/> <wire from="(400,530)" to="(440,530)"/> <wire from="(400,570)" to="(510,570)"/> <wire from="(420,110)" to="(420,190)"/> <wire from="(420,110)" to="(440,110)"/> <wire from="(420,190)" to="(420,270)"/> <wire from="(420,190)" to="(440,190)"/> <wire from="(420,270)" to="(420,350)"/> <wire from="(420,270)" to="(440,270)"/> <wire from="(420,350)" to="(420,430)"/> <wire from="(420,350)" to="(440,350)"/> <wire from="(420,430)" to="(420,510)"/> <wire from="(420,430)" to="(440,430)"/> <wire from="(420,50)" to="(420,110)"/> <wire from="(420,510)" to="(440,510)"/> <wire from="(480,130)" to="(560,130)"/> <wire from="(480,210)" to="(560,210)"/> <wire from="(480,290)" to="(560,290)"/> <wire from="(480,370)" to="(510,370)"/> <wire from="(480,450)" to="(530,450)"/> <wire from="(480,530)" to="(500,530)"/> <wire from="(500,510)" to="(500,530)"/> <wire from="(500,510)" to="(530,510)"/> <wire from="(510,350)" to="(510,370)"/> <wire from="(510,350)" to="(560,350)"/> <wire from="(510,540)" to="(510,570)"/> <wire from="(510,540)" to="(530,540)"/> <wire from="(520,380)" to="(520,400)"/> <wire from="(520,380)" to="(530,380)"/> <wire from="(530,430)" to="(530,450)"/> <wire from="(530,430)" to="(560,430)"/> <wire from="(540,460)" to="(540,480)"/> <wire from="(540,460)" to="(560,460)"/> <wire from="(550,380)" to="(560,380)"/> <wire from="(550,510)" to="(560,510)"/> <wire from="(550,540)" to="(560,540)"/> </circuit> <circuit name="EvenOdd"> <a name="appearance" val="evolution"/> <a name="circuit" val="EvenOdd"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="80" stroke="#000000" width="100" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="99" y="39">EVEN/ODD</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="62" y="60">V8</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="64" y="80">RES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="71" y="100">/HPLA_5</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="82" y="119">RESCL(VCLR)</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="122" y="59">EvenOddOut</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,110" x="50" y="80"/> <circ-port dir="in" pin="110,170" x="50" y="100"/> <circ-port dir="in" pin="110,230" x="50" y="120"/> <circ-port dir="in" pin="110,50" x="50" y="60"/> <circ-port dir="out" pin="710,160" x="150" y="60"/> </appear> <comp lib="0" loc="(110,110)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_HPLA_5"/> </comp> <comp lib="0" loc="(110,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="V8"/> </comp> <comp lib="0" loc="(710,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="EvenOddOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(290,230)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(500,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,160)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,160)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(260,170)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(440,170)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(285,205)" name="Text"> <a name="text" val="FF_1"/> </comp> <comp lib="8" loc="(485,145)" name="Text"> <a name="text" val="FF_2"/> </comp> <wire from="(110,110)" to="(190,110)"/> <wire from="(110,170)" to="(150,170)"/> <wire from="(110,230)" to="(140,230)"/> <wire from="(110,50)" to="(240,50)"/> <wire from="(140,230)" to="(140,270)"/> <wire from="(140,270)" to="(590,270)"/> <wire from="(150,170)" to="(150,260)"/> <wire from="(150,260)" to="(580,260)"/> <wire from="(190,70)" to="(190,110)"/> <wire from="(190,70)" to="(540,70)"/> <wire from="(210,160)" to="(230,160)"/> <wire from="(210,180)" to="(210,230)"/> <wire from="(210,180)" to="(230,180)"/> <wire from="(210,230)" to="(260,230)"/> <wire from="(210,90)" to="(210,160)"/> <wire from="(210,90)" to="(520,90)"/> <wire from="(240,50)" to="(240,150)"/> <wire from="(240,50)" to="(420,50)"/> <wire from="(260,170)" to="(290,170)"/> <wire from="(260,230)" to="(260,250)"/> <wire from="(260,230)" to="(290,230)"/> <wire from="(260,250)" to="(380,250)"/> <wire from="(310,170)" to="(350,170)"/> <wire from="(310,230)" to="(350,230)"/> <wire from="(350,170)" to="(350,230)"/> <wire from="(380,180)" to="(380,250)"/> <wire from="(380,180)" to="(410,180)"/> <wire from="(390,120)" to="(390,160)"/> <wire from="(390,120)" to="(610,120)"/> <wire from="(390,160)" to="(410,160)"/> <wire from="(420,50)" to="(420,150)"/> <wire from="(440,170)" to="(480,170)"/> <wire from="(500,170)" to="(520,170)"/> <wire from="(520,170)" to="(550,170)"/> <wire from="(520,90)" to="(520,170)"/> <wire from="(540,150)" to="(550,150)"/> <wire from="(540,70)" to="(540,150)"/> <wire from="(580,180)" to="(580,260)"/> <wire from="(580,180)" to="(630,180)"/> <wire from="(590,160)" to="(610,160)"/> <wire from="(590,210)" to="(590,270)"/> <wire from="(590,210)" to="(600,210)"/> <wire from="(610,120)" to="(610,150)"/> <wire from="(610,150)" to="(610,160)"/> <wire from="(610,150)" to="(650,150)"/> <wire from="(620,210)" to="(640,210)"/> <wire from="(630,160)" to="(630,180)"/> <wire from="(630,160)" to="(650,160)"/> <wire from="(640,170)" to="(640,210)"/> <wire from="(640,170)" to="(650,170)"/> <wire from="(690,160)" to="(710,160)"/> </circuit> <circuit name="EvenOdd_PAL"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="EvenOdd_PAL"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_D"/> </comp> <comp lib="0" loc="(130,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="VPLA_8"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="VPLA_9"/> </comp> <comp lib="0" loc="(130,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(670,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EvenOddOut"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(380,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(380,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,280)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,280)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(140,220)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="311"/> </comp> <comp lib="8" loc="(140,295)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="265"/> </comp> <comp lib="8" loc="(315,295)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(320,210)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(360,325)" name="Text"> <a name="text" val="FF_1"/> </comp> <comp loc="(220,210)" name="DLatch"> <a name="label" val="latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(220,280)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(450,270)" name="DLatch"> <a name="label" val="latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,120)" to="(440,120)"/> <wire from="(130,150)" to="(530,150)"/> <wire from="(130,180)" to="(550,180)"/> <wire from="(130,230)" to="(220,230)"/> <wire from="(130,300)" to="(220,300)"/> <wire from="(130,90)" to="(210,90)"/> <wire from="(210,210)" to="(210,280)"/> <wire from="(210,210)" to="(220,210)"/> <wire from="(210,280)" to="(220,280)"/> <wire from="(210,90)" to="(210,210)"/> <wire from="(210,90)" to="(600,90)"/> <wire from="(260,210)" to="(310,210)"/> <wire from="(260,280)" to="(290,280)"/> <wire from="(290,280)" to="(290,300)"/> <wire from="(290,300)" to="(340,300)"/> <wire from="(310,210)" to="(310,220)"/> <wire from="(310,220)" to="(340,220)"/> <wire from="(330,240)" to="(330,260)"/> <wire from="(330,240)" to="(340,240)"/> <wire from="(330,260)" to="(390,260)"/> <wire from="(330,270)" to="(330,280)"/> <wire from="(330,270)" to="(400,270)"/> <wire from="(330,280)" to="(340,280)"/> <wire from="(380,230)" to="(400,230)"/> <wire from="(380,290)" to="(390,290)"/> <wire from="(390,260)" to="(390,290)"/> <wire from="(390,290)" to="(450,290)"/> <wire from="(400,230)" to="(400,270)"/> <wire from="(440,120)" to="(440,270)"/> <wire from="(440,270)" to="(450,270)"/> <wire from="(490,290)" to="(540,290)"/> <wire from="(530,150)" to="(530,270)"/> <wire from="(530,270)" to="(540,270)"/> <wire from="(550,180)" to="(550,220)"/> <wire from="(550,220)" to="(560,220)"/> <wire from="(580,220)" to="(610,220)"/> <wire from="(580,280)" to="(620,280)"/> <wire from="(600,290)" to="(620,290)"/> <wire from="(600,90)" to="(600,290)"/> <wire from="(610,220)" to="(610,270)"/> <wire from="(610,270)" to="(620,270)"/> <wire from="(660,280)" to="(670,280)"/> </circuit> <circuit name="HPosLogic"> <a name="appearance" val="evolution"/> <a name="circuit" val="HPosLogic"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="220" stroke="#000000" width="130" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="39">HPOS LOGIC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="68" y="60">PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="68" y="70">/PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="71" y="109">HPLA In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="130">/OBCLIP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="150">/BGCLIP</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="69" y="169">VSYNC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="68" y="190">BLACK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="163" y="60">S/EV</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="160" y="70">CLIP_O</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="160" y="80">CLIP_B</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="159" y="90">0/HPOS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="162" y="99">/EVAL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="163" y="109">E/EV</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="160" y="119">I/OAM2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="160" y="129">PAR/O</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="164" y="139">/VIS</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="164" y="150">#F/NT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="164" y="160">F/TB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="164" y="170">F/TA</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="165" y="180">/FO</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="163" y="190">F/AT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="159" y="209">BPORCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="161" y="220">SC/CNT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="166" y="229">/HB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="161" y="239">BURST</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="161" y="249">SYNC</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="120,520" x="50" y="130"/> <circ-port dir="in" pin="120,560" x="50" y="150"/> <circ-port dir="in" pin="120,640" x="50" y="170"/> <circ-port dir="in" pin="120,680" x="50" y="190"/> <circ-port dir="in" pin="170,40" x="50" y="60"/> <circ-port dir="in" pin="170,400" x="50" y="110"/> <circ-port dir="in" pin="170,80" x="50" y="70"/> <circ-port dir="out" pin="1140,1110" x="180" y="180"/> <circ-port dir="out" pin="1140,120" x="180" y="60"/> <circ-port dir="out" pin="1140,1230" x="180" y="190"/> <circ-port dir="out" pin="1140,360" x="180" y="90"/> <circ-port dir="out" pin="1140,440" x="180" y="100"/> <circ-port dir="out" pin="1140,520" x="180" y="110"/> <circ-port dir="out" pin="1140,600" x="180" y="120"/> <circ-port dir="out" pin="1140,680" x="180" y="130"/> <circ-port dir="out" pin="1140,760" x="180" y="140"/> <circ-port dir="out" pin="1140,840" x="180" y="150"/> <circ-port dir="out" pin="1140,910" x="180" y="160"/> <circ-port dir="out" pin="1140,990" x="180" y="170"/> <circ-port dir="out" pin="1150,190" x="180" y="70"/> <circ-port dir="out" pin="1150,270" x="180" y="80"/> <circ-port dir="out" pin="1600,590" x="180" y="240"/> <circ-port dir="out" pin="1600,670" x="180" y="250"/> <circ-port dir="out" pin="1620,160" x="180" y="210"/> <circ-port dir="out" pin="1620,350" x="180" y="230"/> <circ-port dir="out" pin="1640,260" x="180" y="220"/> </appear> <comp lib="0" loc="(1140,1110)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_FO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="S_EV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,1230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="F_AT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Z_HPOS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_EVAL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="E_EV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,600)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="I_OAM2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PAR_O"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,760)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_VIS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,840)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_F_NT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,910)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="F_TB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1140,990)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="F_TA"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1150,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CLIP_O"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1150,270)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="CLIP_B"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1160,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_OBCLIP"/> </comp> <comp lib="0" loc="(1160,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_BGCLIP"/> </comp> <comp lib="0" loc="(120,520)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_OBCLIP"/> </comp> <comp lib="0" loc="(120,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_BGCLIP"/> </comp> <comp lib="0" loc="(120,640)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VSYNC"/> </comp> <comp lib="0" loc="(120,680)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BLACK"/> </comp> <comp lib="0" loc="(140,520)" name="Tunnel"> <a name="label" val="n_OBCLIP"/> </comp> <comp lib="0" loc="(140,560)" name="Tunnel"> <a name="label" val="n_BGCLIP"/> </comp> <comp lib="0" loc="(140,640)" name="Tunnel"> <a name="label" val="VSYNC"/> </comp> <comp lib="0" loc="(140,680)" name="Tunnel"> <a name="label" val="BLACK"/> </comp> <comp lib="0" loc="(1440,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="VSYNC"/> </comp> <comp lib="0" loc="(1560,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLACK"/> </comp> <comp lib="0" loc="(1600,590)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BURST"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1600,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1620,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BPORCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1620,350)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_HB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1640,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SC_CNT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="HPLA_In"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(200,400)" name="Splitter"> <a name="fanout" val="24"/> <a name="incoming" val="24"/> </comp> <comp lib="1" loc="(1020,1230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1070,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1070,760)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1070,840)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1110,1110)" name="Buffer"/> <comp lib="1" loc="(1110,1230)" name="Buffer"/> <comp lib="1" loc="(1110,760)" name="Buffer"/> <comp lib="1" loc="(1120,910)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1120,990)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1140,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1140,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1360,680)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1530,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,430)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,510)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,590)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1530,670)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1630,260)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(610,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(940,1110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(960,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(960,440)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(1330,110)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="17"/> </comp> <comp lib="8" loc="(1335,190)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="18"/> </comp> <comp lib="8" loc="(1335,270)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="19"/> </comp> <comp lib="8" loc="(1335,350)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="20"/> </comp> <comp lib="8" loc="(1335,430)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="21"/> </comp> <comp lib="8" loc="(1335,510)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="22"/> </comp> <comp lib="8" loc="(1520,130)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(1520,180)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(1520,290)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(1520,335)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(1520,450)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(1520,500)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(1550,415)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="BURST_FF"/> </comp> <comp lib="8" loc="(1555,375)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="HBLANK_FF"/> </comp> <comp lib="8" loc="(1555,95)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="BPORCH_FF"/> </comp> <comp lib="8" loc="(445,110)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="0"/> </comp> <comp lib="8" loc="(445,160)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="1"/> </comp> <comp lib="8" loc="(595,130)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(600,175)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(630,90)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="FPORCH_FF"/> </comp> <comp lib="8" loc="(685,185)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="/FPORCH"/> </comp> <comp lib="8" loc="(790,1070)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="14"/> </comp> <comp lib="8" loc="(790,115)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="2"/> </comp> <comp lib="8" loc="(790,1150)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="15"/> </comp> <comp lib="8" loc="(790,1230)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="16"/> </comp> <comp lib="8" loc="(790,190)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="3"/> </comp> <comp lib="8" loc="(790,270)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="4"/> </comp> <comp lib="8" loc="(790,350)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="5"/> </comp> <comp lib="8" loc="(790,430)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="6"/> </comp> <comp lib="8" loc="(790,510)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="7"/> </comp> <comp lib="8" loc="(790,595)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="8"/> </comp> <comp lib="8" loc="(790,670)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="9"/> </comp> <comp lib="8" loc="(790,750)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="10"/> </comp> <comp lib="8" loc="(790,830)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="11"/> </comp> <comp lib="8" loc="(790,910)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="12"/> </comp> <comp lib="8" loc="(790,990)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="13"/> </comp> <comp loc="(1010,180)" name="DLatch"> <a name="label" val="clpo_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1010,260)" name="DLatch"> <a name="label" val="clpb_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,100)" name="DLatch"> <a name="label" val="bp_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,180)" name="DLatch"> <a name="label" val="bp_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,260)" name="DLatch"> <a name="label" val="hb_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,340)" name="DLatch"> <a name="label" val="hb_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,420)" name="DLatch"> <a name="label" val="cb_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,500)" name="DLatch"> <a name="label" val="cb_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,580)" name="DLatch"> <a name="label" val="sync_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1390,660)" name="DLatch"> <a name="label" val="sync_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,100)" name="DLatch"> <a name="label" val="fp_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,180)" name="DLatch"> <a name="label" val="fp_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,100)" name="DLatch"> <a name="label" val="sev_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,1060)" name="DLatch"> <a name="label" val="fo_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,1140)" name="DLatch"> <a name="label" val="fo_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,1220)" name="DLatch"> <a name="label" val="fat_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,180)" name="DLatch"> <a name="label" val="clpo_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,260)" name="DLatch"> <a name="label" val="clpb_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,340)" name="DLatch"> <a name="label" val="hpos_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,420)" name="DLatch"> <a name="label" val="eval_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,500)" name="DLatch"> <a name="label" val="eev_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,580)" name="DLatch"> <a name="label" val="ioam_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,660)" name="DLatch"> <a name="label" val="paro_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,740)" name="DLatch"> <a name="label" val="nvis_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,820)" name="DLatch"> <a name="label" val="fnt_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,900)" name="DLatch"> <a name="label" val="ftb_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(830,980)" name="DLatch"> <a name="label" val="fta_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,100)" name="DLatch"> <a name="label" val="sev_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,1090)" name="DLatch"> <a name="label" val="fo_latch3"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,340)" name="DLatch"> <a name="label" val="hpos_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,420)" name="DLatch"> <a name="label" val="eval_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,500)" name="DLatch"> <a name="label" val="eev_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,580)" name="DLatch"> <a name="label" val="ioam_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,660)" name="DLatch"> <a name="label" val="paro_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,740)" name="DLatch"> <a name="label" val="nvis_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,820)" name="DLatch"> <a name="label" val="fnt_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,900)" name="DLatch"> <a name="label" val="ftb_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,980)" name="DLatch"> <a name="label" val="fta_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1020,1090)" to="(1060,1090)"/> <wire from="(1020,1110)" to="(1090,1110)"/> <wire from="(1020,120)" to="(1140,120)"/> <wire from="(1020,1230)" to="(1090,1230)"/> <wire from="(1020,360)" to="(1140,360)"/> <wire from="(1020,440)" to="(1050,440)"/> <wire from="(1020,520)" to="(1140,520)"/> <wire from="(1020,600)" to="(1140,600)"/> <wire from="(1020,680)" to="(1140,680)"/> <wire from="(1020,760)" to="(1050,760)"/> <wire from="(1020,840)" to="(1050,840)"/> <wire from="(1020,900)" to="(1080,900)"/> <wire from="(1020,980)" to="(1080,980)"/> <wire from="(1050,180)" to="(1060,180)"/> <wire from="(1050,260)" to="(1100,260)"/> <wire from="(1060,1000)" to="(1060,1090)"/> <wire from="(1060,1000)" to="(1080,1000)"/> <wire from="(1060,180)" to="(1060,200)"/> <wire from="(1060,200)" to="(1100,200)"/> <wire from="(1060,920)" to="(1060,1000)"/> <wire from="(1060,920)" to="(1080,920)"/> <wire from="(1070,440)" to="(1140,440)"/> <wire from="(1070,760)" to="(1090,760)"/> <wire from="(1070,840)" to="(1140,840)"/> <wire from="(1080,170)" to="(1080,180)"/> <wire from="(1080,170)" to="(1170,170)"/> <wire from="(1080,180)" to="(1100,180)"/> <wire from="(1080,280)" to="(1080,290)"/> <wire from="(1080,280)" to="(1100,280)"/> <wire from="(1080,290)" to="(1170,290)"/> <wire from="(1110,1110)" to="(1140,1110)"/> <wire from="(1110,1230)" to="(1140,1230)"/> <wire from="(1110,760)" to="(1140,760)"/> <wire from="(1120,910)" to="(1140,910)"/> <wire from="(1120,990)" to="(1140,990)"/> <wire from="(1140,190)" to="(1150,190)"/> <wire from="(1140,270)" to="(1150,270)"/> <wire from="(1160,150)" to="(1170,150)"/> <wire from="(1160,310)" to="(1170,310)"/> <wire from="(1170,150)" to="(1170,170)"/> <wire from="(1170,290)" to="(1170,310)"/> <wire from="(120,520)" to="(140,520)"/> <wire from="(120,560)" to="(140,560)"/> <wire from="(120,640)" to="(140,640)"/> <wire from="(120,680)" to="(140,680)"/> <wire from="(1240,470)" to="(1240,680)"/> <wire from="(1240,680)" to="(1340,680)"/> <wire from="(1250,120)" to="(1250,1280)"/> <wire from="(1250,120)" to="(1390,120)"/> <wire from="(1260,200)" to="(1260,1290)"/> <wire from="(1260,200)" to="(1390,200)"/> <wire from="(1270,280)" to="(1270,1300)"/> <wire from="(1270,280)" to="(1390,280)"/> <wire from="(1280,360)" to="(1280,1310)"/> <wire from="(1280,360)" to="(1390,360)"/> <wire from="(1290,440)" to="(1290,1320)"/> <wire from="(1290,440)" to="(1390,440)"/> <wire from="(1300,520)" to="(1300,1330)"/> <wire from="(1300,520)" to="(1390,520)"/> <wire from="(1340,550)" to="(1340,600)"/> <wire from="(1340,550)" to="(1570,550)"/> <wire from="(1340,600)" to="(1390,600)"/> <wire from="(1360,40)" to="(1360,580)"/> <wire from="(1360,40)" to="(1500,40)"/> <wire from="(1360,580)" to="(1360,660)"/> <wire from="(1360,580)" to="(1390,580)"/> <wire from="(1360,660)" to="(1390,660)"/> <wire from="(1360,680)" to="(1390,680)"/> <wire from="(1380,100)" to="(1380,180)"/> <wire from="(1380,100)" to="(1390,100)"/> <wire from="(1380,180)" to="(1380,260)"/> <wire from="(1380,180)" to="(1390,180)"/> <wire from="(1380,260)" to="(1380,340)"/> <wire from="(1380,260)" to="(1390,260)"/> <wire from="(1380,340)" to="(1380,420)"/> <wire from="(1380,340)" to="(1390,340)"/> <wire from="(1380,420)" to="(1380,500)"/> <wire from="(1380,420)" to="(1390,420)"/> <wire from="(1380,500)" to="(1390,500)"/> <wire from="(1380,60)" to="(1380,100)"/> <wire from="(1380,60)" to="(1500,60)"/> <wire from="(1430,100)" to="(1490,100)"/> <wire from="(1430,180)" to="(1490,180)"/> <wire from="(1430,260)" to="(1490,260)"/> <wire from="(1430,340)" to="(1490,340)"/> <wire from="(1430,420)" to="(1490,420)"/> <wire from="(1430,500)" to="(1490,500)"/> <wire from="(1430,580)" to="(1490,580)"/> <wire from="(1430,660)" to="(1490,660)"/> <wire from="(1440,730)" to="(1470,730)"/> <wire from="(1460,600)" to="(1460,630)"/> <wire from="(1460,600)" to="(1490,600)"/> <wire from="(1460,630)" to="(1550,630)"/> <wire from="(1470,120)" to="(1470,150)"/> <wire from="(1470,120)" to="(1490,120)"/> <wire from="(1470,150)" to="(1550,150)"/> <wire from="(1470,160)" to="(1470,200)"/> <wire from="(1470,160)" to="(1560,160)"/> <wire from="(1470,200)" to="(1490,200)"/> <wire from="(1470,280)" to="(1470,310)"/> <wire from="(1470,280)" to="(1490,280)"/> <wire from="(1470,310)" to="(1550,310)"/> <wire from="(1470,320)" to="(1470,360)"/> <wire from="(1470,320)" to="(1560,320)"/> <wire from="(1470,360)" to="(1490,360)"/> <wire from="(1470,440)" to="(1470,470)"/> <wire from="(1470,440)" to="(1490,440)"/> <wire from="(1470,470)" to="(1550,470)"/> <wire from="(1470,480)" to="(1470,520)"/> <wire from="(1470,480)" to="(1570,480)"/> <wire from="(1470,520)" to="(1490,520)"/> <wire from="(1470,680)" to="(1470,730)"/> <wire from="(1470,680)" to="(1490,680)"/> <wire from="(1530,110)" to="(1560,110)"/> <wire from="(1530,190)" to="(1550,190)"/> <wire from="(1530,270)" to="(1560,270)"/> <wire from="(1530,350)" to="(1550,350)"/> <wire from="(1530,430)" to="(1570,430)"/> <wire from="(1530,510)" to="(1550,510)"/> <wire from="(1530,590)" to="(1600,590)"/> <wire from="(1530,670)" to="(1550,670)"/> <wire from="(1550,150)" to="(1550,190)"/> <wire from="(1550,190)" to="(1580,190)"/> <wire from="(1550,310)" to="(1550,350)"/> <wire from="(1550,350)" to="(1620,350)"/> <wire from="(1550,470)" to="(1550,510)"/> <wire from="(1550,510)" to="(1570,510)"/> <wire from="(1550,630)" to="(1550,670)"/> <wire from="(1550,670)" to="(1600,670)"/> <wire from="(1560,110)" to="(1560,160)"/> <wire from="(1560,230)" to="(1570,230)"/> <wire from="(1560,270)" to="(1560,320)"/> <wire from="(1560,270)" to="(1590,270)"/> <wire from="(1570,230)" to="(1570,250)"/> <wire from="(1570,250)" to="(1590,250)"/> <wire from="(1570,430)" to="(1570,480)"/> <wire from="(1570,510)" to="(1570,550)"/> <wire from="(1580,160)" to="(1580,190)"/> <wire from="(1580,160)" to="(1620,160)"/> <wire from="(1630,260)" to="(1640,260)"/> <wire from="(170,40)" to="(970,40)"/> <wire from="(170,400)" to="(200,400)"/> <wire from="(170,80)" to="(200,80)"/> <wire from="(200,60)" to="(200,80)"/> <wire from="(200,60)" to="(470,60)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(220,170)" to="(460,170)"/> <wire from="(220,180)" to="(440,180)"/> <wire from="(220,190)" to="(430,190)"/> <wire from="(220,200)" to="(420,200)"/> <wire from="(220,210)" to="(410,210)"/> <wire from="(220,220)" to="(400,220)"/> <wire from="(220,230)" to="(390,230)"/> <wire from="(220,240)" to="(380,240)"/> <wire from="(220,250)" to="(370,250)"/> <wire from="(220,260)" to="(360,260)"/> <wire from="(220,270)" to="(350,270)"/> <wire from="(220,280)" to="(340,280)"/> <wire from="(220,290)" to="(330,290)"/> <wire from="(220,300)" to="(320,300)"/> <wire from="(220,310)" to="(310,310)"/> <wire from="(220,320)" to="(300,320)"/> <wire from="(220,330)" to="(290,330)"/> <wire from="(220,340)" to="(280,340)"/> <wire from="(220,350)" to="(270,350)"/> <wire from="(220,360)" to="(260,360)"/> <wire from="(220,370)" to="(250,370)"/> <wire from="(220,380)" to="(240,380)"/> <wire from="(230,120)" to="(230,160)"/> <wire from="(230,120)" to="(480,120)"/> <wire from="(240,1330)" to="(1300,1330)"/> <wire from="(240,380)" to="(240,1330)"/> <wire from="(250,1320)" to="(1290,1320)"/> <wire from="(250,370)" to="(250,1320)"/> <wire from="(260,1310)" to="(1280,1310)"/> <wire from="(260,360)" to="(260,1310)"/> <wire from="(270,1300)" to="(1270,1300)"/> <wire from="(270,350)" to="(270,1300)"/> <wire from="(280,1290)" to="(1260,1290)"/> <wire from="(280,340)" to="(280,1290)"/> <wire from="(290,1280)" to="(1250,1280)"/> <wire from="(290,330)" to="(290,1280)"/> <wire from="(300,1240)" to="(830,1240)"/> <wire from="(300,320)" to="(300,1240)"/> <wire from="(310,1160)" to="(830,1160)"/> <wire from="(310,310)" to="(310,1160)"/> <wire from="(320,1080)" to="(830,1080)"/> <wire from="(320,300)" to="(320,1080)"/> <wire from="(330,1000)" to="(830,1000)"/> <wire from="(330,290)" to="(330,1000)"/> <wire from="(340,280)" to="(340,920)"/> <wire from="(340,920)" to="(830,920)"/> <wire from="(350,270)" to="(350,840)"/> <wire from="(350,840)" to="(830,840)"/> <wire from="(360,260)" to="(360,760)"/> <wire from="(360,760)" to="(830,760)"/> <wire from="(370,250)" to="(370,680)"/> <wire from="(370,680)" to="(830,680)"/> <wire from="(380,240)" to="(380,600)"/> <wire from="(380,600)" to="(830,600)"/> <wire from="(390,230)" to="(390,520)"/> <wire from="(390,520)" to="(830,520)"/> <wire from="(400,220)" to="(400,300)"/> <wire from="(400,300)" to="(730,300)"/> <wire from="(410,210)" to="(410,290)"/> <wire from="(410,290)" to="(740,290)"/> <wire from="(420,200)" to="(420,280)"/> <wire from="(420,280)" to="(830,280)"/> <wire from="(430,190)" to="(430,270)"/> <wire from="(430,270)" to="(740,270)"/> <wire from="(440,180)" to="(440,250)"/> <wire from="(440,250)" to="(730,250)"/> <wire from="(460,170)" to="(460,200)"/> <wire from="(460,200)" to="(480,200)"/> <wire from="(470,100)" to="(470,180)"/> <wire from="(470,100)" to="(480,100)"/> <wire from="(470,180)" to="(480,180)"/> <wire from="(470,60)" to="(470,100)"/> <wire from="(470,60)" to="(820,60)"/> <wire from="(520,100)" to="(570,100)"/> <wire from="(520,180)" to="(570,180)"/> <wire from="(550,120)" to="(550,150)"/> <wire from="(550,120)" to="(570,120)"/> <wire from="(550,150)" to="(630,150)"/> <wire from="(550,200)" to="(550,220)"/> <wire from="(550,200)" to="(570,200)"/> <wire from="(550,220)" to="(650,220)"/> <wire from="(610,110)" to="(650,110)"/> <wire from="(610,190)" to="(630,190)"/> <wire from="(630,150)" to="(630,190)"/> <wire from="(630,190)" to="(700,190)"/> <wire from="(650,110)" to="(650,220)"/> <wire from="(700,190)" to="(700,470)"/> <wire from="(700,470)" to="(1240,470)"/> <wire from="(730,120)" to="(730,250)"/> <wire from="(730,120)" to="(830,120)"/> <wire from="(730,300)" to="(730,440)"/> <wire from="(730,440)" to="(830,440)"/> <wire from="(740,200)" to="(740,270)"/> <wire from="(740,200)" to="(830,200)"/> <wire from="(740,290)" to="(740,360)"/> <wire from="(740,360)" to="(830,360)"/> <wire from="(820,100)" to="(820,180)"/> <wire from="(820,100)" to="(830,100)"/> <wire from="(820,1060)" to="(820,1140)"/> <wire from="(820,1060)" to="(830,1060)"/> <wire from="(820,1140)" to="(820,1220)"/> <wire from="(820,1140)" to="(830,1140)"/> <wire from="(820,1220)" to="(830,1220)"/> <wire from="(820,180)" to="(820,260)"/> <wire from="(820,180)" to="(830,180)"/> <wire from="(820,260)" to="(820,340)"/> <wire from="(820,260)" to="(830,260)"/> <wire from="(820,340)" to="(820,420)"/> <wire from="(820,340)" to="(830,340)"/> <wire from="(820,420)" to="(820,500)"/> <wire from="(820,420)" to="(830,420)"/> <wire from="(820,500)" to="(820,580)"/> <wire from="(820,500)" to="(830,500)"/> <wire from="(820,580)" to="(820,660)"/> <wire from="(820,580)" to="(830,580)"/> <wire from="(820,60)" to="(1380,60)"/> <wire from="(820,60)" to="(820,100)"/> <wire from="(820,660)" to="(820,740)"/> <wire from="(820,660)" to="(830,660)"/> <wire from="(820,740)" to="(820,820)"/> <wire from="(820,740)" to="(830,740)"/> <wire from="(820,820)" to="(820,900)"/> <wire from="(820,820)" to="(830,820)"/> <wire from="(820,900)" to="(820,980)"/> <wire from="(820,900)" to="(830,900)"/> <wire from="(820,980)" to="(820,1060)"/> <wire from="(820,980)" to="(830,980)"/> <wire from="(870,1000)" to="(980,1000)"/> <wire from="(870,1060)" to="(890,1060)"/> <wire from="(870,1140)" to="(890,1140)"/> <wire from="(870,120)" to="(980,120)"/> <wire from="(870,1240)" to="(980,1240)"/> <wire from="(870,180)" to="(900,180)"/> <wire from="(870,280)" to="(900,280)"/> <wire from="(870,340)" to="(900,340)"/> <wire from="(870,360)" to="(980,360)"/> <wire from="(870,420)" to="(890,420)"/> <wire from="(870,500)" to="(900,500)"/> <wire from="(870,520)" to="(980,520)"/> <wire from="(870,600)" to="(980,600)"/> <wire from="(870,680)" to="(980,680)"/> <wire from="(870,760)" to="(980,760)"/> <wire from="(870,840)" to="(980,840)"/> <wire from="(870,920)" to="(980,920)"/> <wire from="(890,1060)" to="(890,1100)"/> <wire from="(890,1100)" to="(900,1100)"/> <wire from="(890,1120)" to="(890,1140)"/> <wire from="(890,1120)" to="(900,1120)"/> <wire from="(890,420)" to="(890,440)"/> <wire from="(890,440)" to="(920,440)"/> <wire from="(900,180)" to="(900,220)"/> <wire from="(900,220)" to="(920,220)"/> <wire from="(900,240)" to="(900,280)"/> <wire from="(900,240)" to="(920,240)"/> <wire from="(900,340)" to="(900,430)"/> <wire from="(900,430)" to="(920,430)"/> <wire from="(900,450)" to="(900,500)"/> <wire from="(900,450)" to="(920,450)"/> <wire from="(940,1110)" to="(960,1110)"/> <wire from="(960,1110)" to="(960,1220)"/> <wire from="(960,1110)" to="(980,1110)"/> <wire from="(960,1220)" to="(980,1220)"/> <wire from="(960,230)" to="(990,230)"/> <wire from="(960,440)" to="(980,440)"/> <wire from="(970,100)" to="(970,180)"/> <wire from="(970,100)" to="(980,100)"/> <wire from="(970,1090)" to="(980,1090)"/> <wire from="(970,180)" to="(1010,180)"/> <wire from="(970,180)" to="(970,260)"/> <wire from="(970,260)" to="(1010,260)"/> <wire from="(970,260)" to="(970,340)"/> <wire from="(970,340)" to="(970,420)"/> <wire from="(970,340)" to="(980,340)"/> <wire from="(970,40)" to="(1360,40)"/> <wire from="(970,40)" to="(970,100)"/> <wire from="(970,420)" to="(970,500)"/> <wire from="(970,420)" to="(980,420)"/> <wire from="(970,500)" to="(970,580)"/> <wire from="(970,500)" to="(980,500)"/> <wire from="(970,580)" to="(970,660)"/> <wire from="(970,580)" to="(980,580)"/> <wire from="(970,660)" to="(970,740)"/> <wire from="(970,660)" to="(980,660)"/> <wire from="(970,740)" to="(970,820)"/> <wire from="(970,740)" to="(980,740)"/> <wire from="(970,820)" to="(970,900)"/> <wire from="(970,820)" to="(980,820)"/> <wire from="(970,900)" to="(970,980)"/> <wire from="(970,900)" to="(980,900)"/> <wire from="(970,980)" to="(970,1090)"/> <wire from="(970,980)" to="(980,980)"/> <wire from="(990,200)" to="(1010,200)"/> <wire from="(990,200)" to="(990,230)"/> <wire from="(990,230)" to="(990,280)"/> <wire from="(990,280)" to="(1010,280)"/> </circuit> <circuit name="VPosLogic"> <a name="appearance" val="evolution"/> <a name="circuit" val="VPosLogic"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="140" stroke="#000000" width="130" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="68" y="60">PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="119" y="39">VPOS LOGIC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="68" y="70">/PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="65" y="90">/HB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="72" y="110">BPORCH</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="69" y="130">BLACK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="71" y="170">VPLA In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="156" y="59">/PICTURE</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="146" y="69">RESCL (VCLR)</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="161" y="89">VSYNC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="162" y="100">/VSET</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="166" y="120">VB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="163" y="130">BLNK</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="170,160" x="50" y="90"/> <circ-port dir="in" pin="170,200" x="50" y="110"/> <circ-port dir="in" pin="170,40" x="50" y="60"/> <circ-port dir="in" pin="170,400" x="50" y="170"/> <circ-port dir="in" pin="170,80" x="50" y="70"/> <circ-port dir="in" pin="180,560" x="50" y="130"/> <circ-port dir="out" pin="1130,230" x="180" y="120"/> <circ-port dir="out" pin="1130,610" x="180" y="70"/> <circ-port dir="out" pin="1170,430" x="180" y="130"/> <circ-port dir="out" pin="490,610" x="180" y="100"/> <circ-port dir="out" pin="700,130" x="180" y="90"/> <circ-port dir="out" pin="700,410" x="180" y="60"/> </appear> <comp lib="0" loc="(1130,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="VB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1130,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RESCL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1170,430)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="BLNK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,160)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_HB"/> </comp> <comp lib="0" loc="(170,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BPORCH"/> </comp> <comp lib="0" loc="(170,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VPLA_In"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(180,560)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="BLACK"/> </comp> <comp lib="0" loc="(200,400)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(490,610)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_VSET"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="VSYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,410)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="n_PICTURE"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(1020,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1020,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1020,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1020,410)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1100,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1100,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1100,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1160,430)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,140)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,220)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,370)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,450)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,410)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(670,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(1010,160)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(1015,260)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(1025,345)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(1025,430)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(1030,125)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="VB_FF"/> </comp> <comp lib="8" loc="(1035,305)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="BLNK_FF"/> </comp> <comp lib="8" loc="(265,325)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="2"/> </comp> <comp lib="8" loc="(285,605)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="4"/> </comp> <comp lib="8" loc="(290,145)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="0"/> </comp> <comp lib="8" loc="(290,475)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="3"/> </comp> <comp lib="8" loc="(295,245)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="1"/> </comp> <comp lib="8" loc="(405,495)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="PICTURE_FF"/> </comp> <comp lib="8" loc="(415,265)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="VSYNC_FF"/> </comp> <comp lib="8" loc="(420,365)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(420,450)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(430,135)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(430,220)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(825,140)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="5"/> </comp> <comp lib="8" loc="(835,230)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="6"/> </comp> <comp lib="8" loc="(845,410)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="7"/> </comp> <comp lib="8" loc="(855,600)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="8"/> </comp> <comp loc="(330,590)" name="DLatch"> <a name="label" val="vset_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,360)" name="DLatch"> <a name="label" val="pic_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,440)" name="DLatch"> <a name="label" val="pic_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,130)" name="DLatch"> <a name="label" val="vsync_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,130)" name="DLatch"> <a name="label" val="vb_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,220)" name="DLatch"> <a name="label" val="vb_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,400)" name="DLatch"> <a name="label" val="blnk_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(880,590)" name="DLatch"> <a name="label" val="vclr_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(980,590)" name="DLatch"> <a name="label" val="vclr_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1020,140)" to="(1050,140)"/> <wire from="(1020,230)" to="(1040,230)"/> <wire from="(1020,320)" to="(1050,320)"/> <wire from="(1020,410)" to="(1040,410)"/> <wire from="(1020,610)" to="(1130,610)"/> <wire from="(1040,180)" to="(1040,230)"/> <wire from="(1040,230)" to="(1080,230)"/> <wire from="(1040,360)" to="(1040,410)"/> <wire from="(1040,410)" to="(1080,410)"/> <wire from="(1050,140)" to="(1050,200)"/> <wire from="(1050,320)" to="(1050,380)"/> <wire from="(1100,230)" to="(1130,230)"/> <wire from="(1100,410)" to="(1110,410)"/> <wire from="(1100,450)" to="(1110,450)"/> <wire from="(1110,410)" to="(1110,420)"/> <wire from="(1110,420)" to="(1120,420)"/> <wire from="(1110,440)" to="(1110,450)"/> <wire from="(1110,440)" to="(1120,440)"/> <wire from="(1160,430)" to="(1170,430)"/> <wire from="(170,160)" to="(200,160)"/> <wire from="(170,200)" to="(280,200)"/> <wire from="(170,40)" to="(480,40)"/> <wire from="(170,400)" to="(200,400)"/> <wire from="(170,80)" to="(310,80)"/> <wire from="(180,560)" to="(800,560)"/> <wire from="(200,110)" to="(200,160)"/> <wire from="(200,110)" to="(320,110)"/> <wire from="(220,310)" to="(230,310)"/> <wire from="(220,320)" to="(240,320)"/> <wire from="(220,330)" to="(300,330)"/> <wire from="(220,340)" to="(290,340)"/> <wire from="(220,350)" to="(280,350)"/> <wire from="(220,360)" to="(270,360)"/> <wire from="(220,370)" to="(260,370)"/> <wire from="(220,380)" to="(250,380)"/> <wire from="(220,390)" to="(240,390)"/> <wire from="(230,150)" to="(230,310)"/> <wire from="(230,150)" to="(330,150)"/> <wire from="(240,250)" to="(240,320)"/> <wire from="(240,250)" to="(320,250)"/> <wire from="(240,390)" to="(240,670)"/> <wire from="(240,670)" to="(850,670)"/> <wire from="(250,380)" to="(250,660)"/> <wire from="(250,660)" to="(840,660)"/> <wire from="(260,370)" to="(260,650)"/> <wire from="(260,650)" to="(830,650)"/> <wire from="(270,360)" to="(270,640)"/> <wire from="(270,640)" to="(820,640)"/> <wire from="(280,200)" to="(280,310)"/> <wire from="(280,310)" to="(320,310)"/> <wire from="(280,350)" to="(280,610)"/> <wire from="(280,610)" to="(330,610)"/> <wire from="(290,340)" to="(290,460)"/> <wire from="(290,460)" to="(330,460)"/> <wire from="(300,330)" to="(300,380)"/> <wire from="(300,380)" to="(330,380)"/> <wire from="(310,590)" to="(330,590)"/> <wire from="(310,80)" to="(310,590)"/> <wire from="(310,80)" to="(870,80)"/> <wire from="(320,110)" to="(320,130)"/> <wire from="(320,110)" to="(490,110)"/> <wire from="(320,130)" to="(320,210)"/> <wire from="(320,130)" to="(330,130)"/> <wire from="(320,210)" to="(330,210)"/> <wire from="(320,230)" to="(320,250)"/> <wire from="(320,230)" to="(330,230)"/> <wire from="(320,310)" to="(320,360)"/> <wire from="(320,310)" to="(470,310)"/> <wire from="(320,360)" to="(320,440)"/> <wire from="(320,360)" to="(330,360)"/> <wire from="(320,440)" to="(330,440)"/> <wire from="(360,140)" to="(400,140)"/> <wire from="(360,220)" to="(400,220)"/> <wire from="(360,370)" to="(390,370)"/> <wire from="(360,450)" to="(390,450)"/> <wire from="(370,390)" to="(370,420)"/> <wire from="(370,390)" to="(390,390)"/> <wire from="(370,420)" to="(440,420)"/> <wire from="(370,430)" to="(370,470)"/> <wire from="(370,430)" to="(450,430)"/> <wire from="(370,470)" to="(390,470)"/> <wire from="(370,610)" to="(490,610)"/> <wire from="(380,160)" to="(380,190)"/> <wire from="(380,160)" to="(400,160)"/> <wire from="(380,190)" to="(450,190)"/> <wire from="(380,200)" to="(380,240)"/> <wire from="(380,200)" to="(460,200)"/> <wire from="(380,240)" to="(400,240)"/> <wire from="(430,380)" to="(450,380)"/> <wire from="(430,460)" to="(440,460)"/> <wire from="(440,150)" to="(460,150)"/> <wire from="(440,230)" to="(450,230)"/> <wire from="(440,420)" to="(440,460)"/> <wire from="(450,190)" to="(450,230)"/> <wire from="(450,380)" to="(450,430)"/> <wire from="(450,380)" to="(510,380)"/> <wire from="(460,150)" to="(460,200)"/> <wire from="(460,150)" to="(500,150)"/> <wire from="(470,310)" to="(470,460)"/> <wire from="(470,460)" to="(510,460)"/> <wire from="(480,360)" to="(480,440)"/> <wire from="(480,360)" to="(510,360)"/> <wire from="(480,40)" to="(480,360)"/> <wire from="(480,40)" to="(590,40)"/> <wire from="(480,440)" to="(510,440)"/> <wire from="(490,110)" to="(490,130)"/> <wire from="(490,130)" to="(500,130)"/> <wire from="(540,140)" to="(550,140)"/> <wire from="(550,140)" to="(550,150)"/> <wire from="(550,150)" to="(600,150)"/> <wire from="(550,360)" to="(570,360)"/> <wire from="(550,440)" to="(570,440)"/> <wire from="(570,360)" to="(570,400)"/> <wire from="(570,400)" to="(590,400)"/> <wire from="(570,420)" to="(570,440)"/> <wire from="(570,420)" to="(590,420)"/> <wire from="(590,130)" to="(600,130)"/> <wire from="(590,40)" to="(590,130)"/> <wire from="(590,40)" to="(940,40)"/> <wire from="(630,410)" to="(650,410)"/> <wire from="(640,130)" to="(700,130)"/> <wire from="(670,410)" to="(700,410)"/> <wire from="(800,450)" to="(1080,450)"/> <wire from="(800,450)" to="(800,560)"/> <wire from="(820,150)" to="(820,640)"/> <wire from="(820,150)" to="(880,150)"/> <wire from="(830,240)" to="(830,650)"/> <wire from="(830,240)" to="(880,240)"/> <wire from="(840,420)" to="(840,660)"/> <wire from="(840,420)" to="(880,420)"/> <wire from="(850,610)" to="(850,670)"/> <wire from="(850,610)" to="(880,610)"/> <wire from="(870,130)" to="(870,220)"/> <wire from="(870,130)" to="(880,130)"/> <wire from="(870,220)" to="(870,400)"/> <wire from="(870,220)" to="(880,220)"/> <wire from="(870,400)" to="(870,590)"/> <wire from="(870,400)" to="(880,400)"/> <wire from="(870,590)" to="(880,590)"/> <wire from="(870,80)" to="(1080,80)"/> <wire from="(870,80)" to="(870,130)"/> <wire from="(920,130)" to="(980,130)"/> <wire from="(920,220)" to="(950,220)"/> <wire from="(920,400)" to="(980,400)"/> <wire from="(920,610)" to="(980,610)"/> <wire from="(940,40)" to="(1080,40)"/> <wire from="(940,40)" to="(940,590)"/> <wire from="(940,590)" to="(980,590)"/> <wire from="(950,220)" to="(950,310)"/> <wire from="(950,220)" to="(980,220)"/> <wire from="(950,310)" to="(980,310)"/> <wire from="(950,330)" to="(950,360)"/> <wire from="(950,330)" to="(980,330)"/> <wire from="(950,360)" to="(1040,360)"/> <wire from="(960,150)" to="(960,180)"/> <wire from="(960,150)" to="(980,150)"/> <wire from="(960,180)" to="(1040,180)"/> <wire from="(960,200)" to="(1050,200)"/> <wire from="(960,200)" to="(960,240)"/> <wire from="(960,240)" to="(980,240)"/> <wire from="(960,380)" to="(1050,380)"/> <wire from="(960,380)" to="(960,420)"/> <wire from="(960,420)" to="(980,420)"/> </circuit> <circuit name="HVCountersControl"> <a name="appearance" val="evolution"/> <a name="circuit" val="HVCountersControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="70" stroke="#000000" width="90" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="96" y="39">H/V CNT CTRL</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="66" y="60">/PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="71" y="80">HPLA_23</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="77" y="90">EvenOddOut</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="69" y="99">VPLA_2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="125" y="59">V_IN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="127" y="79">HC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="128" y="99">VC</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="140,130" x="50" y="80"/> <circ-port dir="in" pin="140,170" x="50" y="90"/> <circ-port dir="in" pin="140,210" x="50" y="100"/> <circ-port dir="in" pin="140,50" x="50" y="60"/> <circ-port dir="out" pin="510,150" x="140" y="80"/> <circ-port dir="out" pin="510,200" x="140" y="100"/> <circ-port dir="out" pin="510,80" x="140" y="60"/> </appear> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="HPLA_23"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="EvenOddOut"/> </comp> <comp lib="0" loc="(140,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VPLA_2"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(510,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="HC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(510,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="VC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(510,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="V_IN"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(240,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(480,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(310,130)" name="DLatch"> <a name="label" val="ctrl_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(310,230)" name="DLatch"> <a name="label" val="ctrl_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,130)" to="(170,130)"/> <wire from="(140,170)" to="(170,170)"/> <wire from="(140,210)" to="(240,210)"/> <wire from="(140,50)" to="(290,50)"/> <wire from="(170,130)" to="(170,140)"/> <wire from="(170,140)" to="(200,140)"/> <wire from="(170,160)" to="(170,170)"/> <wire from="(170,160)" to="(200,160)"/> <wire from="(170,80)" to="(170,130)"/> <wire from="(170,80)" to="(510,80)"/> <wire from="(240,150)" to="(310,150)"/> <wire from="(240,210)" to="(240,250)"/> <wire from="(240,250)" to="(310,250)"/> <wire from="(290,130)" to="(290,230)"/> <wire from="(290,130)" to="(310,130)"/> <wire from="(290,230)" to="(310,230)"/> <wire from="(290,50)" to="(290,130)"/> <wire from="(350,150)" to="(390,150)"/> <wire from="(350,250)" to="(390,250)"/> <wire from="(390,150)" to="(390,190)"/> <wire from="(390,150)" to="(510,150)"/> <wire from="(390,190)" to="(410,190)"/> <wire from="(390,210)" to="(390,250)"/> <wire from="(390,210)" to="(440,210)"/> <wire from="(430,190)" to="(440,190)"/> <wire from="(480,200)" to="(510,200)"/> </circuit> <circuit name="VBlankInterrupt"> <a name="appearance" val="evolution"/> <a name="circuit" val="VBlankInterrupt"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="110" stroke="#000000" width="110" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="105" y="38">VBLANK INT</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="65" y="60">PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="65" y="70">/PCLK</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="66" y="89">/VSET</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="80" y="99">VCLR(RESCL)</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="70" y="120">VBL_EN</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="64" y="139">/R2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="66" y="150">/DBE</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="140" y="90">DB7 Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="8" text-anchor="middle" x="147" y="70">INT</text> <circ-anchor facing="east" x="50" y="60"/> <circ-port dir="in" pin="110,150" x="50" y="90"/> <circ-port dir="in" pin="110,200" x="50" y="120"/> <circ-port dir="in" pin="110,250" x="50" y="100"/> <circ-port dir="in" pin="110,320" x="50" y="140"/> <circ-port dir="in" pin="110,360" x="50" y="150"/> <circ-port dir="in" pin="110,50" x="50" y="60"/> <circ-port dir="in" pin="110,90" x="50" y="70"/> <circ-port dir="out" pin="790,150" x="160" y="70"/> <circ-port dir="out" pin="790,260" x="160" y="90"/> </appear> <comp lib="0" loc="(110,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_VSET"/> </comp> <comp lib="0" loc="(110,200)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="VBL"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(110,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(110,360)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(790,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="INT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(790,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB7_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(280,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,150)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(520,330)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(710,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(760,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(210,375)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="Read Enabler"/> </comp> <comp lib="8" loc="(375,360)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="R2_EN"/> </comp> <comp lib="8" loc="(384,61)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="NegEdge Detect"/> </comp> <comp lib="8" loc="(495,295)" name="Text"> <a name="font" val="SansSerif plain 14"/> <a name="text" val="INT_FF"/> </comp> <comp lib="8" loc="(505,320)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(510,240)" name="Text"> <a name="text" val="S"/> </comp> <comp loc="(270,140)" name="DLatch"> <a name="label" val="vset_latch1"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,140)" name="DLatch"> <a name="label" val="vset_latch2"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(670,240)" name="DLatch"> <a name="label" val="db_latch"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,150)" to="(210,150)"/> <wire from="(110,200)" to="(560,200)"/> <wire from="(110,250)" to="(420,250)"/> <wire from="(110,320)" to="(210,320)"/> <wire from="(110,360)" to="(210,360)"/> <wire from="(110,50)" to="(250,50)"/> <wire from="(110,90)" to="(330,90)"/> <wire from="(210,150)" to="(250,150)"/> <wire from="(210,320)" to="(210,330)"/> <wire from="(210,330)" to="(240,330)"/> <wire from="(210,350)" to="(210,360)"/> <wire from="(210,350)" to="(240,350)"/> <wire from="(210,70)" to="(210,150)"/> <wire from="(210,70)" to="(440,70)"/> <wire from="(250,140)" to="(270,140)"/> <wire from="(250,150)" to="(250,160)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(250,50)" to="(250,140)"/> <wire from="(280,340)" to="(350,340)"/> <wire from="(310,160)" to="(350,160)"/> <wire from="(330,140)" to="(350,140)"/> <wire from="(330,90)" to="(330,140)"/> <wire from="(330,90)" to="(460,90)"/> <wire from="(350,340)" to="(350,370)"/> <wire from="(350,340)" to="(480,340)"/> <wire from="(350,370)" to="(610,370)"/> <wire from="(390,140)" to="(420,140)"/> <wire from="(420,140)" to="(420,160)"/> <wire from="(420,160)" to="(480,160)"/> <wire from="(420,250)" to="(420,330)"/> <wire from="(420,330)" to="(480,330)"/> <wire from="(440,150)" to="(480,150)"/> <wire from="(440,70)" to="(440,150)"/> <wire from="(460,140)" to="(480,140)"/> <wire from="(460,210)" to="(460,240)"/> <wire from="(460,210)" to="(530,210)"/> <wire from="(460,240)" to="(480,240)"/> <wire from="(460,260)" to="(460,280)"/> <wire from="(460,260)" to="(480,260)"/> <wire from="(460,280)" to="(530,280)"/> <wire from="(460,300)" to="(460,320)"/> <wire from="(460,300)" to="(540,300)"/> <wire from="(460,320)" to="(480,320)"/> <wire from="(460,90)" to="(460,140)"/> <wire from="(520,150)" to="(530,150)"/> <wire from="(520,250)" to="(540,250)"/> <wire from="(520,330)" to="(530,330)"/> <wire from="(530,150)" to="(530,210)"/> <wire from="(530,280)" to="(530,330)"/> <wire from="(530,330)" to="(550,330)"/> <wire from="(540,250)" to="(540,300)"/> <wire from="(560,140)" to="(560,200)"/> <wire from="(560,140)" to="(630,140)"/> <wire from="(570,330)" to="(590,330)"/> <wire from="(590,160)" to="(590,330)"/> <wire from="(590,160)" to="(670,160)"/> <wire from="(590,330)" to="(640,330)"/> <wire from="(610,200)" to="(610,240)"/> <wire from="(610,200)" to="(750,200)"/> <wire from="(610,240)" to="(610,370)"/> <wire from="(610,240)" to="(630,240)"/> <wire from="(640,260)" to="(640,330)"/> <wire from="(640,260)" to="(670,260)"/> <wire from="(650,140)" to="(670,140)"/> <wire from="(650,240)" to="(670,240)"/> <wire from="(710,150)" to="(790,150)"/> <wire from="(710,260)" to="(740,260)"/> <wire from="(750,200)" to="(750,250)"/> <wire from="(760,260)" to="(790,260)"/> </circuit> <circuit name="Pads"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Pads"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_WR"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DPad_In"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(140,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RD"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBx_In"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RSx_Pad"/> </comp> <comp lib="0" loc="(140,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE_Pad"/> </comp> <comp lib="0" loc="(140,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ALE"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ADPad_In"/> </comp> <comp lib="0" loc="(140,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RD"/> </comp> <comp lib="0" loc="(140,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PAx"/> </comp> <comp lib="0" loc="(140,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PA8"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RnW_Pad"/> </comp> <comp lib="0" loc="(150,140)" name="Constant"/> <comp lib="0" loc="(150,240)" name="Constant"/> <comp lib="0" loc="(150,450)" name="Constant"/> <comp lib="0" loc="(150,540)" name="Constant"/> <comp lib="0" loc="(320,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DBx_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(320,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DPad_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(320,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RSx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_DBE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ALE_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PDx"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ADPad_Out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Ax_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(320,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RnW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(580,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RD_int"/> </comp> <comp lib="0" loc="(580,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="WR_int"/> </comp> <comp lib="0" loc="(580,60)" name="Constant"/> <comp lib="0" loc="(580,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="EXT_Pad_In"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(590,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SLAVE"/> </comp> <comp lib="0" loc="(590,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(590,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EXT_OUT"/> </comp> <comp lib="0" loc="(590,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(590,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(590,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="INT"/> </comp> <comp lib="0" loc="(760,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_RD_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_WR_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RES"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_INT_Pad"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(800,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT_Pad_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(800,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT_IN"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(200,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,470)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,500)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,590)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,530)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,290)" name="Buffer"/> <comp lib="1" loc="(280,340)" name="NOT Gate"> <a name="label" val="strong"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,390)" name="Buffer"/> <comp lib="1" loc="(280,470)" name="Buffer"/> <comp lib="1" loc="(280,530)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(280,590)" name="Buffer"/> <comp lib="1" loc="(280,80)" name="Buffer"/> <comp lib="1" loc="(310,230)" name="Controlled Inverter"> <a name="control" val="left"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,370)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,460)" name="Controlled Inverter"> <a name="control" val="left"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,580)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,250)" name="Buffer"/> <comp lib="1" loc="(690,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(730,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(740,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(750,160)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(760,310)" name="Buffer"/> <comp lib="1" loc="(770,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(790,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(790,90)" name="Buffer"/> <comp lib="8" loc="(590,535)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="RD"/> </comp> <comp lib="8" loc="(590,575)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="WR"/> </comp> <comp lib="8" loc="(625,295)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(630,395)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(660,480)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="&quot;self-notif1&quot;"/> </comp> <comp lib="8" loc="(725,365)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Reset_FF"/> </comp> <comp loc="(160,140)" name="DLatch"/> <comp loc="(160,240)" name="DLatch"/> <comp loc="(160,450)" name="DLatch"/> <comp loc="(160,540)" name="DLatch"/> <comp loc="(590,60)" name="DLatch"/> <comp loc="(620,170)" name="DLatch"/> <wire from="(140,110)" to="(220,110)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(140,210)" to="(190,210)"/> <wire from="(140,260)" to="(160,260)"/> <wire from="(140,290)" to="(180,290)"/> <wire from="(140,340)" to="(170,340)"/> <wire from="(140,390)" to="(220,390)"/> <wire from="(140,470)" to="(160,470)"/> <wire from="(140,510)" to="(200,510)"/> <wire from="(140,560)" to="(160,560)"/> <wire from="(140,590)" to="(220,590)"/> <wire from="(140,80)" to="(180,80)"/> <wire from="(150,140)" to="(160,140)"/> <wire from="(150,240)" to="(160,240)"/> <wire from="(150,450)" to="(160,450)"/> <wire from="(150,540)" to="(160,540)"/> <wire from="(190,200)" to="(190,210)"/> <wire from="(190,200)" to="(250,200)"/> <wire from="(190,210)" to="(190,220)"/> <wire from="(190,220)" to="(210,220)"/> <wire from="(190,340)" to="(200,340)"/> <wire from="(200,160)" to="(220,160)"/> <wire from="(200,240)" to="(210,240)"/> <wire from="(200,290)" to="(220,290)"/> <wire from="(200,470)" to="(220,470)"/> <wire from="(200,500)" to="(200,510)"/> <wire from="(200,500)" to="(220,500)"/> <wire from="(200,510)" to="(200,520)"/> <wire from="(200,520)" to="(210,520)"/> <wire from="(200,540)" to="(210,540)"/> <wire from="(200,80)" to="(220,80)"/> <wire from="(220,340)" to="(230,340)"/> <wire from="(240,110)" to="(270,110)"/> <wire from="(240,160)" to="(260,160)"/> <wire from="(240,290)" to="(260,290)"/> <wire from="(240,390)" to="(260,390)"/> <wire from="(240,470)" to="(260,470)"/> <wire from="(240,500)" to="(270,500)"/> <wire from="(240,590)" to="(260,590)"/> <wire from="(240,80)" to="(260,80)"/> <wire from="(250,230)" to="(290,230)"/> <wire from="(250,340)" to="(260,340)"/> <wire from="(250,530)" to="(260,530)"/> <wire from="(270,110)" to="(270,150)"/> <wire from="(270,200)" to="(300,200)"/> <wire from="(270,500)" to="(270,520)"/> <wire from="(280,160)" to="(320,160)"/> <wire from="(280,290)" to="(320,290)"/> <wire from="(280,340)" to="(320,340)"/> <wire from="(280,390)" to="(320,390)"/> <wire from="(280,470)" to="(320,470)"/> <wire from="(280,530)" to="(320,530)"/> <wire from="(280,590)" to="(320,590)"/> <wire from="(280,80)" to="(320,80)"/> <wire from="(300,200)" to="(300,220)"/> <wire from="(310,230)" to="(320,230)"/> <wire from="(580,540)" to="(660,540)"/> <wire from="(580,580)" to="(660,580)"/> <wire from="(580,60)" to="(590,60)"/> <wire from="(580,80)" to="(590,80)"/> <wire from="(590,110)" to="(650,110)"/> <wire from="(590,170)" to="(620,170)"/> <wire from="(590,190)" to="(620,190)"/> <wire from="(590,250)" to="(630,250)"/> <wire from="(590,380)" to="(640,380)"/> <wire from="(590,460)" to="(650,460)"/> <wire from="(600,270)" to="(600,300)"/> <wire from="(600,270)" to="(730,270)"/> <wire from="(600,300)" to="(640,300)"/> <wire from="(630,320)" to="(630,340)"/> <wire from="(630,320)" to="(640,320)"/> <wire from="(630,340)" to="(690,340)"/> <wire from="(630,350)" to="(630,360)"/> <wire from="(630,350)" to="(700,350)"/> <wire from="(630,360)" to="(640,360)"/> <wire from="(630,80)" to="(640,80)"/> <wire from="(650,110)" to="(650,150)"/> <wire from="(650,110)" to="(670,110)"/> <wire from="(650,150)" to="(670,150)"/> <wire from="(650,250)" to="(670,250)"/> <wire from="(650,440)" to="(650,460)"/> <wire from="(650,440)" to="(670,440)"/> <wire from="(650,460)" to="(660,460)"/> <wire from="(660,170)" to="(710,170)"/> <wire from="(660,80)" to="(670,80)"/> <wire from="(670,100)" to="(670,110)"/> <wire from="(670,100)" to="(700,100)"/> <wire from="(670,440)" to="(670,450)"/> <wire from="(680,310)" to="(700,310)"/> <wire from="(680,370)" to="(690,370)"/> <wire from="(680,460)" to="(770,460)"/> <wire from="(680,540)" to="(760,540)"/> <wire from="(680,580)" to="(760,580)"/> <wire from="(690,150)" to="(700,150)"/> <wire from="(690,250)" to="(730,250)"/> <wire from="(690,340)" to="(690,370)"/> <wire from="(690,80)" to="(700,80)"/> <wire from="(700,140)" to="(700,150)"/> <wire from="(700,140)" to="(750,140)"/> <wire from="(700,150)" to="(710,150)"/> <wire from="(700,310)" to="(700,350)"/> <wire from="(700,310)" to="(710,310)"/> <wire from="(730,250)" to="(730,270)"/> <wire from="(730,250)" to="(770,250)"/> <wire from="(730,310)" to="(740,310)"/> <wire from="(740,90)" to="(770,90)"/> <wire from="(750,160)" to="(770,160)"/> <wire from="(760,310)" to="(770,310)"/> <wire from="(770,140)" to="(780,140)"/> <wire from="(780,140)" to="(780,150)"/> <wire from="(790,160)" to="(800,160)"/> <wire from="(790,90)" to="(800,90)"/> </circuit> <circuit name="PCLK_Ntsc"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PCLK_Ntsc"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(760,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PCLK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PCLK"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(720,190)" name="Buffer"/> <comp lib="1" loc="(720,250)" name="Buffer"/> <comp lib="1" loc="(750,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(525,170)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="8" loc="(635,285)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="PCLK_FF"/> </comp> <comp loc="(230,160)" name="DLatch"> <a name="label" val="pclk_1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(300,160)" name="DLatch"> <a name="label" val="pclk_2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(370,160)" name="DLatch"> <a name="label" val="pclk_3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,160)" name="DLatch"> <a name="label" val="pclk_4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(220,120)"/> <wire from="(120,170)" to="(160,170)"/> <wire from="(120,90)" to="(290,90)"/> <wire from="(140,190)" to="(140,220)"/> <wire from="(140,190)" to="(160,190)"/> <wire from="(140,220)" to="(500,220)"/> <wire from="(200,180)" to="(230,180)"/> <wire from="(220,120)" to="(220,160)"/> <wire from="(220,120)" to="(360,120)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(270,180)" to="(300,180)"/> <wire from="(290,160)" to="(300,160)"/> <wire from="(290,90)" to="(290,160)"/> <wire from="(290,90)" to="(430,90)"/> <wire from="(340,180)" to="(370,180)"/> <wire from="(360,120)" to="(360,160)"/> <wire from="(360,120)" to="(490,120)"/> <wire from="(360,160)" to="(370,160)"/> <wire from="(410,180)" to="(440,180)"/> <wire from="(430,160)" to="(440,160)"/> <wire from="(430,90)" to="(430,160)"/> <wire from="(430,90)" to="(490,90)"/> <wire from="(480,180)" to="(500,180)"/> <wire from="(500,180)" to="(500,220)"/> <wire from="(500,180)" to="(560,180)"/> <wire from="(560,180)" to="(560,260)"/> <wire from="(560,180)" to="(580,180)"/> <wire from="(560,260)" to="(620,260)"/> <wire from="(600,180)" to="(620,180)"/> <wire from="(600,220)" to="(600,240)"/> <wire from="(600,220)" to="(670,220)"/> <wire from="(600,240)" to="(620,240)"/> <wire from="(610,200)" to="(610,230)"/> <wire from="(610,200)" to="(620,200)"/> <wire from="(610,230)" to="(670,230)"/> <wire from="(660,190)" to="(670,190)"/> <wire from="(660,250)" to="(670,250)"/> <wire from="(670,190)" to="(670,220)"/> <wire from="(670,190)" to="(700,190)"/> <wire from="(670,230)" to="(670,250)"/> <wire from="(670,250)" to="(700,250)"/> <wire from="(720,190)" to="(730,190)"/> <wire from="(720,250)" to="(730,250)"/> <wire from="(750,190)" to="(760,190)"/> <wire from="(750,250)" to="(760,250)"/> </circuit> <circuit name="PCLK_Pal"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PCLK_Pal"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1080,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PCLK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1080,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PCLK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="1" loc="(1040,260)" name="Buffer"/> <comp lib="1" loc="(1040,320)" name="Buffer"/> <comp lib="1" loc="(1070,260)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1070,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(360,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(740,260)" name="NOT Gate"/> <comp lib="1" loc="(820,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(820,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(920,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(980,260)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(980,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(850,240)" name="Text"> <a name="text" val="PCLK"/> </comp> <comp lib="8" loc="(955,355)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="PCLK_FF"/> </comp> <comp loc="(240,190)" name="DLatch"> <a name="label" val="pclk_1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,190)" name="DLatch"> <a name="label" val="pclk_2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(460,190)" name="DLatch"> <a name="label" val="pclk_3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(540,190)" name="DLatch"> <a name="label" val="pclk_4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,190)" name="DLatch"> <a name="label" val="pclk_5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(700,190)" name="DLatch"> <a name="label" val="pclk_6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1040,260)" to="(1050,260)"/> <wire from="(1040,320)" to="(1050,320)"/> <wire from="(1070,260)" to="(1080,260)"/> <wire from="(1070,320)" to="(1080,320)"/> <wire from="(120,120)" to="(230,120)"/> <wire from="(120,300)" to="(300,300)"/> <wire from="(120,90)" to="(370,90)"/> <wire from="(220,210)" to="(220,360)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,360)" to="(840,360)"/> <wire from="(230,120)" to="(230,190)"/> <wire from="(230,120)" to="(450,120)"/> <wire from="(230,190)" to="(240,190)"/> <wire from="(280,190)" to="(300,190)"/> <wire from="(300,190)" to="(300,200)"/> <wire from="(300,200)" to="(320,200)"/> <wire from="(300,220)" to="(300,300)"/> <wire from="(300,220)" to="(320,220)"/> <wire from="(360,210)" to="(380,210)"/> <wire from="(370,190)" to="(380,190)"/> <wire from="(370,90)" to="(370,190)"/> <wire from="(370,90)" to="(530,90)"/> <wire from="(420,210)" to="(460,210)"/> <wire from="(450,120)" to="(450,190)"/> <wire from="(450,120)" to="(610,120)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(500,210)" to="(540,210)"/> <wire from="(530,190)" to="(540,190)"/> <wire from="(530,90)" to="(530,190)"/> <wire from="(530,90)" to="(690,90)"/> <wire from="(580,210)" to="(600,210)"/> <wire from="(600,210)" to="(600,320)"/> <wire from="(600,210)" to="(620,210)"/> <wire from="(600,320)" to="(780,320)"/> <wire from="(610,120)" to="(610,190)"/> <wire from="(610,120)" to="(740,120)"/> <wire from="(610,190)" to="(620,190)"/> <wire from="(660,210)" to="(680,210)"/> <wire from="(680,210)" to="(680,260)"/> <wire from="(680,210)" to="(700,210)"/> <wire from="(680,260)" to="(710,260)"/> <wire from="(690,190)" to="(700,190)"/> <wire from="(690,90)" to="(690,190)"/> <wire from="(690,90)" to="(740,90)"/> <wire from="(740,210)" to="(760,210)"/> <wire from="(740,260)" to="(780,260)"/> <wire from="(760,210)" to="(760,240)"/> <wire from="(760,240)" to="(760,300)"/> <wire from="(760,240)" to="(780,240)"/> <wire from="(760,300)" to="(780,300)"/> <wire from="(820,250)" to="(880,250)"/> <wire from="(820,310)" to="(840,310)"/> <wire from="(840,310)" to="(840,360)"/> <wire from="(880,250)" to="(880,330)"/> <wire from="(880,250)" to="(900,250)"/> <wire from="(880,330)" to="(940,330)"/> <wire from="(920,250)" to="(940,250)"/> <wire from="(920,290)" to="(920,310)"/> <wire from="(920,290)" to="(990,290)"/> <wire from="(920,310)" to="(940,310)"/> <wire from="(930,270)" to="(930,300)"/> <wire from="(930,270)" to="(940,270)"/> <wire from="(930,300)" to="(990,300)"/> <wire from="(980,260)" to="(990,260)"/> <wire from="(980,320)" to="(990,320)"/> <wire from="(990,260)" to="(1020,260)"/> <wire from="(990,260)" to="(990,290)"/> <wire from="(990,300)" to="(990,320)"/> <wire from="(990,320)" to="(1020,320)"/> </circuit> <circuit name="PCLK_Test"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PCLK_Test"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,160)" name="Clock"> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(180,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="1" loc="(220,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="5" loc="(500,190)" name="LED"/> <comp lib="5" loc="(500,210)" name="LED"/> <comp lib="5" loc="(500,340)" name="LED"/> <comp lib="5" loc="(500,360)" name="LED"/> <comp loc="(480,190)" name="PCLK_Ntsc"/> <comp loc="(480,340)" name="PCLK_Pal"/> <wire from="(160,160)" to="(190,160)"/> <wire from="(180,230)" to="(230,230)"/> <wire from="(190,160)" to="(190,210)"/> <wire from="(190,160)" to="(250,160)"/> <wire from="(190,210)" to="(200,210)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(230,230)" to="(230,380)"/> <wire from="(230,230)" to="(260,230)"/> <wire from="(230,380)" to="(260,380)"/> <wire from="(240,210)" to="(240,360)"/> <wire from="(240,210)" to="(260,210)"/> <wire from="(240,360)" to="(260,360)"/> <wire from="(250,160)" to="(250,190)"/> <wire from="(250,190)" to="(250,340)"/> <wire from="(250,190)" to="(260,190)"/> <wire from="(250,340)" to="(260,340)"/> <wire from="(480,190)" to="(500,190)"/> <wire from="(480,210)" to="(500,210)"/> <wire from="(480,340)" to="(500,340)"/> <wire from="(480,360)" to="(500,360)"/> </circuit> <circuit name="VRAM_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="VRAM_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R7"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W7"/> </comp> <comp lib="0" loc="(120,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(120,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_Dash"/> </comp> <comp lib="0" loc="(120,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(130,260)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,280)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,300)" name="Tunnel"> <a name="label" val="n_R7"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,320)" name="Tunnel"> <a name="label" val="n_W7"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,340)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,360)" name="Tunnel"> <a name="label" val="H0_Dash"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,380)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(130,950)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,780)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_Dash"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(140,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(150,930)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R7"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_W7"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(170,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(190,1030)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PA8_13"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(220,840)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="tmp_1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(230,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="tmp_2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(240,1020)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(260,40)" name="Tunnel"> <a name="label" val="W7_EN"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(260,460)" name="Tunnel"> <a name="label" val="R7_EN"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(270,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(270,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(360,840)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ALE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(390,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(420,940)" name="Tunnel"> <a name="label" val="TH_MUX"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(430,980)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TH_MUX"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(450,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(450,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(490,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(500,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(510,750)" name="Tunnel"> <a name="label" val="tmp_2"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(550,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(560,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(560,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(600,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_Dash"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(600,970)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="R7_EN"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(610,810)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(620,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(630,270)" name="Tunnel"> <a name="label" val="tmp_1"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(630,990)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH_MUX"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(650,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TH_MUX"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(660,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD_RB"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(720,660)" name="Tunnel"> <a name="label" val="PD_RB"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(730,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PD_RB"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(760,980)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="XRB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_PAR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PD_RB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(860,870)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RD"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,810)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,70)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,840)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,530)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,590)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,840)" name="Buffer"/> <comp lib="1" loc="(360,980)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(400,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,520)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,980)" name="Buffer"/> <comp lib="1" loc="(500,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,750)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,140)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,560)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,510)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(600,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(620,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,690)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,970)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(700,980)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,440)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,860)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(740,380)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(740,980)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(800,870)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(840,870)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(480,510)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(480,90)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(245,140)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="W7_FF"/> </comp> <comp lib="8" loc="(245,565)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="R7_FF"/> </comp> <comp lib="8" loc="(485,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="WR_FF"/> </comp> <comp lib="8" loc="(485,580)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="RD_FF"/> </comp> <comp loc="(160,930)" name="DLatch"> <a name="label" val="blnk_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(280,240)" name="DLatch"> <a name="label" val="wr_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(280,660)" name="DLatch"> <a name="label" val="rd_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,240)" name="DLatch"> <a name="label" val="wr_latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,660)" name="DLatch"> <a name="label" val="rd_latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,240)" name="DLatch"> <a name="label" val="wr_latch4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,660)" name="DLatch"> <a name="label" val="rd_latch4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,370)" name="DLatch"> <a name="label" val="tstep_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,490)" name="DLatch"> <a name="label" val="rd_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(570,70)" name="DLatch"> <a name="label" val="wr_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,810)" name="DLatch"> <a name="label" val="h0_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,260)" to="(130,260)"/> <wire from="(120,280)" to="(130,280)"/> <wire from="(120,300)" to="(130,300)"/> <wire from="(120,320)" to="(130,320)"/> <wire from="(120,340)" to="(130,340)"/> <wire from="(120,360)" to="(130,360)"/> <wire from="(120,380)" to="(130,380)"/> <wire from="(130,950)" to="(160,950)"/> <wire from="(140,780)" to="(150,780)"/> <wire from="(140,810)" to="(160,810)"/> <wire from="(140,840)" to="(150,840)"/> <wire from="(150,780)" to="(150,800)"/> <wire from="(150,800)" to="(160,800)"/> <wire from="(150,820)" to="(150,840)"/> <wire from="(150,820)" to="(160,820)"/> <wire from="(150,930)" to="(160,930)"/> <wire from="(170,480)" to="(190,480)"/> <wire from="(170,500)" to="(190,500)"/> <wire from="(170,60)" to="(190,60)"/> <wire from="(170,80)" to="(190,80)"/> <wire from="(190,1030)" to="(240,1030)"/> <wire from="(200,810)" to="(220,810)"/> <wire from="(200,950)" to="(280,950)"/> <wire from="(220,810)" to="(220,830)"/> <wire from="(220,830)" to="(250,830)"/> <wire from="(220,840)" to="(250,840)"/> <wire from="(230,210)" to="(230,260)"/> <wire from="(230,210)" to="(640,210)"/> <wire from="(230,260)" to="(270,260)"/> <wire from="(230,490)" to="(250,490)"/> <wire from="(230,630)" to="(230,680)"/> <wire from="(230,630)" to="(640,630)"/> <wire from="(230,680)" to="(280,680)"/> <wire from="(230,70)" to="(250,70)"/> <wire from="(230,860)" to="(240,860)"/> <wire from="(240,1020)" to="(240,1030)"/> <wire from="(240,850)" to="(240,860)"/> <wire from="(240,850)" to="(250,850)"/> <wire from="(250,40)" to="(250,70)"/> <wire from="(250,40)" to="(260,40)"/> <wire from="(250,460)" to="(250,490)"/> <wire from="(250,460)" to="(260,460)"/> <wire from="(250,490)" to="(270,490)"/> <wire from="(250,70)" to="(270,70)"/> <wire from="(260,1000)" to="(280,1000)"/> <wire from="(260,1010)" to="(280,1010)"/> <wire from="(260,180)" to="(260,200)"/> <wire from="(260,180)" to="(280,180)"/> <wire from="(260,200)" to="(460,200)"/> <wire from="(260,600)" to="(260,620)"/> <wire from="(260,600)" to="(280,600)"/> <wire from="(260,620)" to="(450,620)"/> <wire from="(260,960)" to="(280,960)"/> <wire from="(260,970)" to="(280,970)"/> <wire from="(260,980)" to="(280,980)"/> <wire from="(260,990)" to="(280,990)"/> <wire from="(270,100)" to="(280,100)"/> <wire from="(270,120)" to="(270,140)"/> <wire from="(270,120)" to="(280,120)"/> <wire from="(270,140)" to="(340,140)"/> <wire from="(270,150)" to="(270,160)"/> <wire from="(270,150)" to="(330,150)"/> <wire from="(270,160)" to="(280,160)"/> <wire from="(270,240)" to="(280,240)"/> <wire from="(270,260)" to="(270,340)"/> <wire from="(270,260)" to="(280,260)"/> <wire from="(270,340)" to="(460,340)"/> <wire from="(270,490)" to="(270,520)"/> <wire from="(270,490)" to="(340,490)"/> <wire from="(270,520)" to="(280,520)"/> <wire from="(270,540)" to="(270,560)"/> <wire from="(270,540)" to="(280,540)"/> <wire from="(270,560)" to="(340,560)"/> <wire from="(270,570)" to="(270,580)"/> <wire from="(270,570)" to="(330,570)"/> <wire from="(270,580)" to="(280,580)"/> <wire from="(270,660)" to="(280,660)"/> <wire from="(270,70)" to="(270,100)"/> <wire from="(270,70)" to="(340,70)"/> <wire from="(290,840)" to="(310,840)"/> <wire from="(320,110)" to="(330,110)"/> <wire from="(320,170)" to="(340,170)"/> <wire from="(320,260)" to="(350,260)"/> <wire from="(320,530)" to="(330,530)"/> <wire from="(320,590)" to="(340,590)"/> <wire from="(320,660)" to="(340,660)"/> <wire from="(320,680)" to="(330,680)"/> <wire from="(330,110)" to="(330,150)"/> <wire from="(330,110)" to="(360,110)"/> <wire from="(330,530)" to="(330,570)"/> <wire from="(330,530)" to="(360,530)"/> <wire from="(330,680)" to="(330,760)"/> <wire from="(330,680)" to="(390,680)"/> <wire from="(330,760)" to="(460,760)"/> <wire from="(330,840)" to="(360,840)"/> <wire from="(340,140)" to="(340,170)"/> <wire from="(340,490)" to="(340,510)"/> <wire from="(340,510)" to="(360,510)"/> <wire from="(340,560)" to="(340,590)"/> <wire from="(340,660)" to="(340,710)"/> <wire from="(340,70)" to="(340,90)"/> <wire from="(340,710)" to="(570,710)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(350,260)" to="(350,300)"/> <wire from="(350,260)" to="(390,260)"/> <wire from="(350,300)" to="(560,300)"/> <wire from="(360,980)" to="(380,980)"/> <wire from="(380,240)" to="(390,240)"/> <wire from="(400,100)" to="(450,100)"/> <wire from="(400,520)" to="(450,520)"/> <wire from="(400,980)" to="(410,980)"/> <wire from="(410,940)" to="(410,980)"/> <wire from="(410,940)" to="(420,940)"/> <wire from="(410,980)" to="(430,980)"/> <wire from="(430,240)" to="(450,240)"/> <wire from="(430,260)" to="(460,260)"/> <wire from="(430,680)" to="(450,680)"/> <wire from="(430,720)" to="(430,740)"/> <wire from="(430,720)" to="(560,720)"/> <wire from="(430,740)" to="(460,740)"/> <wire from="(440,140)" to="(510,140)"/> <wire from="(440,500)" to="(440,560)"/> <wire from="(440,500)" to="(450,500)"/> <wire from="(440,560)" to="(510,560)"/> <wire from="(440,80)" to="(440,140)"/> <wire from="(440,80)" to="(450,80)"/> <wire from="(450,240)" to="(450,320)"/> <wire from="(450,320)" to="(460,320)"/> <wire from="(450,470)" to="(460,470)"/> <wire from="(450,50)" to="(460,50)"/> <wire from="(450,620)" to="(450,680)"/> <wire from="(450,680)" to="(500,680)"/> <wire from="(460,200)" to="(460,260)"/> <wire from="(460,260)" to="(500,260)"/> <wire from="(460,470)" to="(460,490)"/> <wire from="(460,50)" to="(460,70)"/> <wire from="(480,510)" to="(510,510)"/> <wire from="(480,90)" to="(510,90)"/> <wire from="(490,660)" to="(500,660)"/> <wire from="(500,330)" to="(510,330)"/> <wire from="(500,750)" to="(510,750)"/> <wire from="(510,330)" to="(510,390)"/> <wire from="(510,330)" to="(770,330)"/> <wire from="(510,390)" to="(510,430)"/> <wire from="(510,390)" to="(560,390)"/> <wire from="(510,430)" to="(580,430)"/> <wire from="(530,140)" to="(540,140)"/> <wire from="(530,510)" to="(540,510)"/> <wire from="(530,560)" to="(540,560)"/> <wire from="(530,90)" to="(540,90)"/> <wire from="(540,240)" to="(560,240)"/> <wire from="(540,510)" to="(540,560)"/> <wire from="(540,510)" to="(570,510)"/> <wire from="(540,660)" to="(560,660)"/> <wire from="(540,680)" to="(580,680)"/> <wire from="(540,90)" to="(540,140)"/> <wire from="(540,90)" to="(570,90)"/> <wire from="(550,370)" to="(560,370)"/> <wire from="(560,240)" to="(560,260)"/> <wire from="(560,260)" to="(580,260)"/> <wire from="(560,280)" to="(560,300)"/> <wire from="(560,280)" to="(580,280)"/> <wire from="(560,490)" to="(570,490)"/> <wire from="(560,660)" to="(560,720)"/> <wire from="(560,70)" to="(570,70)"/> <wire from="(570,700)" to="(570,710)"/> <wire from="(570,700)" to="(580,700)"/> <wire from="(600,370)" to="(670,370)"/> <wire from="(600,430)" to="(670,430)"/> <wire from="(600,830)" to="(620,830)"/> <wire from="(600,970)" to="(620,970)"/> <wire from="(610,510)" to="(640,510)"/> <wire from="(610,810)" to="(620,810)"/> <wire from="(610,90)" to="(640,90)"/> <wire from="(620,270)" to="(630,270)"/> <wire from="(620,690)" to="(710,690)"/> <wire from="(620,870)" to="(640,870)"/> <wire from="(630,990)" to="(660,990)"/> <wire from="(640,510)" to="(640,630)"/> <wire from="(640,90)" to="(640,210)"/> <wire from="(640,970)" to="(660,970)"/> <wire from="(650,450)" to="(670,450)"/> <wire from="(660,390)" to="(670,390)"/> <wire from="(660,810)" to="(680,810)"/> <wire from="(660,870)" to="(700,870)"/> <wire from="(680,810)" to="(680,850)"/> <wire from="(680,850)" to="(700,850)"/> <wire from="(700,980)" to="(720,980)"/> <wire from="(710,380)" to="(720,380)"/> <wire from="(710,440)" to="(770,440)"/> <wire from="(710,660)" to="(710,690)"/> <wire from="(710,660)" to="(720,660)"/> <wire from="(710,690)" to="(770,690)"/> <wire from="(730,860)" to="(760,860)"/> <wire from="(730,910)" to="(740,910)"/> <wire from="(740,380)" to="(770,380)"/> <wire from="(740,880)" to="(740,910)"/> <wire from="(740,880)" to="(760,880)"/> <wire from="(740,980)" to="(760,980)"/> <wire from="(800,870)" to="(820,870)"/> <wire from="(840,870)" to="(860,870)"/> </circuit> <circuit name="VRAM_Control_Test"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="VRAM_Control_Test"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(200,130)" name="Clock"> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(210,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R7"/> </comp> <comp lib="0" loc="(210,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W7"/> </comp> <comp lib="0" loc="(210,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(210,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_Dash"/> </comp> <comp lib="0" loc="(210,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(210,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PA_Top"/> <a name="width" val="6"/> </comp> <comp lib="1" loc="(300,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="5" loc="(530,170)" name="LED"/> <comp lib="5" loc="(530,190)" name="LED"/> <comp lib="5" loc="(530,210)" name="LED"/> <comp lib="5" loc="(530,230)" name="LED"/> <comp lib="5" loc="(530,250)" name="LED"/> <comp lib="5" loc="(530,270)" name="LED"/> <comp lib="5" loc="(530,290)" name="LED"/> <comp lib="5" loc="(530,310)" name="LED"/> <comp loc="(530,170)" name="VRAM_Control"/> <wire from="(200,130)" to="(250,130)"/> <wire from="(210,210)" to="(310,210)"/> <wire from="(210,230)" to="(310,230)"/> <wire from="(210,250)" to="(310,250)"/> <wire from="(210,270)" to="(310,270)"/> <wire from="(210,290)" to="(310,290)"/> <wire from="(210,330)" to="(270,330)"/> <wire from="(250,130)" to="(250,190)"/> <wire from="(250,130)" to="(270,130)"/> <wire from="(250,190)" to="(280,190)"/> <wire from="(270,130)" to="(270,170)"/> <wire from="(270,170)" to="(310,170)"/> <wire from="(270,310)" to="(270,330)"/> <wire from="(270,310)" to="(310,310)"/> <wire from="(300,190)" to="(310,190)"/> </circuit> <circuit name="Reg_RW_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Reg_RW_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(290,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_WR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(290,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_RD"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(170,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(230,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(110,120)" to="(160,120)"/> <wire from="(110,80)" to="(140,80)"/> <wire from="(140,140)" to="(190,140)"/> <wire from="(140,80)" to="(140,140)"/> <wire from="(140,80)" to="(150,80)"/> <wire from="(160,100)" to="(160,120)"/> <wire from="(160,100)" to="(190,100)"/> <wire from="(160,120)" to="(160,160)"/> <wire from="(160,160)" to="(190,160)"/> <wire from="(170,80)" to="(190,80)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(230,90)" to="(250,90)"/> <wire from="(270,150)" to="(290,150)"/> <wire from="(270,90)" to="(290,90)"/> </circuit> <circuit name="RW_Enabler"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RW_Enabler"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RegOp"/> </comp> <comp lib="0" loc="(250,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RegOp_Enable"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <wire from="(130,110)" to="(160,110)"/> <wire from="(130,70)" to="(160,70)"/> <wire from="(160,100)" to="(160,110)"/> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,70)" to="(160,80)"/> <wire from="(160,80)" to="(180,80)"/> <wire from="(220,90)" to="(250,90)"/> </circuit> <circuit name="SCC_FirstSecond"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SCC_FirstSecond"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W56"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(800,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SecondWrite"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(800,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FirstWrite"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(570,180)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(720,180)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(770,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(560,260)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(710,260)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(435,140)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="R2"/> </comp> <comp lib="8" loc="(440,220)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="W5/6"/> </comp> <comp lib="8" loc="(595,255)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="FF_1"/> </comp> <comp lib="8" loc="(745,255)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="FF_2"/> </comp> <comp loc="(420,150)" name="RW_Enabler"/> <comp loc="(420,230)" name="RW_Enabler"/> <wire from="(130,110)" to="(170,110)"/> <wire from="(130,150)" to="(200,150)"/> <wire from="(130,190)" to="(160,190)"/> <wire from="(130,70)" to="(520,70)"/> <wire from="(160,190)" to="(160,230)"/> <wire from="(160,230)" to="(200,230)"/> <wire from="(170,110)" to="(170,170)"/> <wire from="(170,170)" to="(170,250)"/> <wire from="(170,170)" to="(200,170)"/> <wire from="(170,250)" to="(200,250)"/> <wire from="(420,150)" to="(510,150)"/> <wire from="(420,230)" to="(540,230)"/> <wire from="(500,250)" to="(500,300)"/> <wire from="(500,250)" to="(530,250)"/> <wire from="(500,300)" to="(670,300)"/> <wire from="(510,150)" to="(510,180)"/> <wire from="(510,150)" to="(660,150)"/> <wire from="(510,180)" to="(530,180)"/> <wire from="(520,170)" to="(530,170)"/> <wire from="(520,190)" to="(520,210)"/> <wire from="(520,190)" to="(530,190)"/> <wire from="(520,210)" to="(570,210)"/> <wire from="(520,270)" to="(520,290)"/> <wire from="(520,270)" to="(530,270)"/> <wire from="(520,290)" to="(630,290)"/> <wire from="(520,70)" to="(520,170)"/> <wire from="(520,70)" to="(670,70)"/> <wire from="(540,230)" to="(540,240)"/> <wire from="(540,230)" to="(690,230)"/> <wire from="(560,260)" to="(570,260)"/> <wire from="(570,180)" to="(590,180)"/> <wire from="(570,210)" to="(570,260)"/> <wire from="(590,180)" to="(590,210)"/> <wire from="(590,180)" to="(640,180)"/> <wire from="(590,210)" to="(600,210)"/> <wire from="(620,210)" to="(630,210)"/> <wire from="(630,210)" to="(630,290)"/> <wire from="(630,90)" to="(630,210)"/> <wire from="(630,90)" to="(800,90)"/> <wire from="(640,120)" to="(640,180)"/> <wire from="(640,120)" to="(800,120)"/> <wire from="(640,180)" to="(640,270)"/> <wire from="(640,270)" to="(680,270)"/> <wire from="(660,150)" to="(660,180)"/> <wire from="(660,180)" to="(680,180)"/> <wire from="(670,170)" to="(680,170)"/> <wire from="(670,190)" to="(670,210)"/> <wire from="(670,190)" to="(680,190)"/> <wire from="(670,210)" to="(720,210)"/> <wire from="(670,250)" to="(670,300)"/> <wire from="(670,250)" to="(680,250)"/> <wire from="(670,300)" to="(780,300)"/> <wire from="(670,70)" to="(670,170)"/> <wire from="(690,230)" to="(690,240)"/> <wire from="(710,260)" to="(720,260)"/> <wire from="(720,180)" to="(740,180)"/> <wire from="(720,210)" to="(720,260)"/> <wire from="(740,180)" to="(740,210)"/> <wire from="(740,210)" to="(750,210)"/> <wire from="(770,210)" to="(780,210)"/> <wire from="(780,210)" to="(780,300)"/> </circuit> <circuit name="RegSelect"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegSelect"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(390,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W6_1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W6_2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W5_1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W5_2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(400,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W56"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_W0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_R4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(90,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RS1"/> </comp> <comp lib="0" loc="(90,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RS2"/> </comp> <comp lib="0" loc="(90,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(90,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="First"/> </comp> <comp lib="0" loc="(90,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Scnd"/> </comp> <comp lib="0" loc="(90,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RS0"/> </comp> <comp lib="1" loc="(120,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(130,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(140,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,180)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(300,240)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(300,300)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(300,360)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(380,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,440)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,180)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,240)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,300)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,360)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,420)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,480)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(650,600)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(680,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,420)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,480)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,540)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(680,600)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(100,60)" to="(100,70)"/> <wire from="(100,60)" to="(180,60)"/> <wire from="(100,70)" to="(100,110)"/> <wire from="(100,70)" to="(110,70)"/> <wire from="(110,100)" to="(110,140)"/> <wire from="(110,100)" to="(120,100)"/> <wire from="(110,260)" to="(110,380)"/> <wire from="(110,260)" to="(240,260)"/> <wire from="(110,380)" to="(240,380)"/> <wire from="(110,90)" to="(110,100)"/> <wire from="(110,90)" to="(540,90)"/> <wire from="(120,120)" to="(120,130)"/> <wire from="(120,120)" to="(220,120)"/> <wire from="(120,130)" to="(120,170)"/> <wire from="(120,130)" to="(130,130)"/> <wire from="(120,200)" to="(120,290)"/> <wire from="(120,200)" to="(240,200)"/> <wire from="(120,290)" to="(120,320)"/> <wire from="(120,320)" to="(240,320)"/> <wire from="(120,40)" to="(170,40)"/> <wire from="(130,70)" to="(190,70)"/> <wire from="(140,100)" to="(210,100)"/> <wire from="(150,130)" to="(570,130)"/> <wire from="(160,160)" to="(160,220)"/> <wire from="(160,160)" to="(240,160)"/> <wire from="(160,220)" to="(160,390)"/> <wire from="(160,220)" to="(240,220)"/> <wire from="(160,30)" to="(160,160)"/> <wire from="(160,30)" to="(500,30)"/> <wire from="(170,300)" to="(170,360)"/> <wire from="(170,300)" to="(240,300)"/> <wire from="(170,360)" to="(170,390)"/> <wire from="(170,360)" to="(240,360)"/> <wire from="(170,40)" to="(170,300)"/> <wire from="(170,40)" to="(510,40)"/> <wire from="(180,290)" to="(180,350)"/> <wire from="(180,290)" to="(240,290)"/> <wire from="(180,350)" to="(180,390)"/> <wire from="(180,350)" to="(240,350)"/> <wire from="(180,60)" to="(180,290)"/> <wire from="(180,60)" to="(520,60)"/> <wire from="(190,180)" to="(190,240)"/> <wire from="(190,180)" to="(240,180)"/> <wire from="(190,240)" to="(190,390)"/> <wire from="(190,240)" to="(240,240)"/> <wire from="(190,70)" to="(190,180)"/> <wire from="(190,70)" to="(530,70)"/> <wire from="(210,100)" to="(210,170)"/> <wire from="(210,100)" to="(550,100)"/> <wire from="(210,170)" to="(210,230)"/> <wire from="(210,170)" to="(240,170)"/> <wire from="(210,230)" to="(210,280)"/> <wire from="(210,230)" to="(240,230)"/> <wire from="(210,280)" to="(210,340)"/> <wire from="(210,280)" to="(240,280)"/> <wire from="(210,340)" to="(210,390)"/> <wire from="(210,340)" to="(240,340)"/> <wire from="(220,120)" to="(220,190)"/> <wire from="(220,120)" to="(560,120)"/> <wire from="(220,190)" to="(220,250)"/> <wire from="(220,190)" to="(240,190)"/> <wire from="(220,250)" to="(220,310)"/> <wire from="(220,250)" to="(240,250)"/> <wire from="(220,310)" to="(220,370)"/> <wire from="(220,310)" to="(240,310)"/> <wire from="(220,370)" to="(220,390)"/> <wire from="(220,370)" to="(240,370)"/> <wire from="(300,180)" to="(310,180)"/> <wire from="(300,240)" to="(320,240)"/> <wire from="(300,300)" to="(330,300)"/> <wire from="(300,360)" to="(340,360)"/> <wire from="(310,180)" to="(310,460)"/> <wire from="(310,180)" to="(360,180)"/> <wire from="(310,460)" to="(340,460)"/> <wire from="(320,240)" to="(320,450)"/> <wire from="(320,240)" to="(360,240)"/> <wire from="(320,450)" to="(340,450)"/> <wire from="(330,300)" to="(330,430)"/> <wire from="(330,300)" to="(360,300)"/> <wire from="(330,430)" to="(340,430)"/> <wire from="(340,360)" to="(340,420)"/> <wire from="(340,360)" to="(360,360)"/> <wire from="(380,180)" to="(390,180)"/> <wire from="(380,240)" to="(390,240)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(380,360)" to="(390,360)"/> <wire from="(500,30)" to="(500,310)"/> <wire from="(500,30)" to="(660,30)"/> <wire from="(500,310)" to="(500,430)"/> <wire from="(500,310)" to="(590,310)"/> <wire from="(500,430)" to="(500,550)"/> <wire from="(500,430)" to="(590,430)"/> <wire from="(500,550)" to="(500,610)"/> <wire from="(500,550)" to="(590,550)"/> <wire from="(500,610)" to="(500,620)"/> <wire from="(500,610)" to="(590,610)"/> <wire from="(510,190)" to="(510,250)"/> <wire from="(510,190)" to="(590,190)"/> <wire from="(510,250)" to="(510,370)"/> <wire from="(510,250)" to="(590,250)"/> <wire from="(510,370)" to="(510,490)"/> <wire from="(510,370)" to="(590,370)"/> <wire from="(510,40)" to="(510,190)"/> <wire from="(510,40)" to="(660,40)"/> <wire from="(510,490)" to="(510,620)"/> <wire from="(510,490)" to="(590,490)"/> <wire from="(520,290)" to="(520,470)"/> <wire from="(520,290)" to="(590,290)"/> <wire from="(520,470)" to="(520,530)"/> <wire from="(520,470)" to="(590,470)"/> <wire from="(520,530)" to="(520,590)"/> <wire from="(520,530)" to="(590,530)"/> <wire from="(520,590)" to="(520,620)"/> <wire from="(520,590)" to="(590,590)"/> <wire from="(520,60)" to="(520,290)"/> <wire from="(520,60)" to="(660,60)"/> <wire from="(530,170)" to="(530,230)"/> <wire from="(530,170)" to="(590,170)"/> <wire from="(530,230)" to="(530,350)"/> <wire from="(530,230)" to="(590,230)"/> <wire from="(530,350)" to="(530,410)"/> <wire from="(530,350)" to="(590,350)"/> <wire from="(530,410)" to="(530,620)"/> <wire from="(530,410)" to="(590,410)"/> <wire from="(530,70)" to="(530,170)"/> <wire from="(530,70)" to="(660,70)"/> <wire from="(540,340)" to="(540,400)"/> <wire from="(540,340)" to="(590,340)"/> <wire from="(540,400)" to="(540,460)"/> <wire from="(540,400)" to="(590,400)"/> <wire from="(540,460)" to="(540,520)"/> <wire from="(540,460)" to="(590,460)"/> <wire from="(540,520)" to="(540,620)"/> <wire from="(540,520)" to="(590,520)"/> <wire from="(540,90)" to="(540,340)"/> <wire from="(540,90)" to="(660,90)"/> <wire from="(550,100)" to="(550,160)"/> <wire from="(550,100)" to="(660,100)"/> <wire from="(550,160)" to="(550,220)"/> <wire from="(550,160)" to="(590,160)"/> <wire from="(550,220)" to="(550,280)"/> <wire from="(550,220)" to="(590,220)"/> <wire from="(550,280)" to="(550,580)"/> <wire from="(550,280)" to="(590,280)"/> <wire from="(550,580)" to="(550,620)"/> <wire from="(550,580)" to="(590,580)"/> <wire from="(560,120)" to="(560,260)"/> <wire from="(560,120)" to="(660,120)"/> <wire from="(560,260)" to="(560,320)"/> <wire from="(560,260)" to="(590,260)"/> <wire from="(560,320)" to="(560,380)"/> <wire from="(560,320)" to="(590,320)"/> <wire from="(560,380)" to="(560,500)"/> <wire from="(560,380)" to="(590,380)"/> <wire from="(560,500)" to="(560,560)"/> <wire from="(560,500)" to="(590,500)"/> <wire from="(560,560)" to="(560,620)"/> <wire from="(560,560)" to="(590,560)"/> <wire from="(570,130)" to="(570,200)"/> <wire from="(570,130)" to="(660,130)"/> <wire from="(570,200)" to="(570,440)"/> <wire from="(570,200)" to="(590,200)"/> <wire from="(570,440)" to="(570,620)"/> <wire from="(570,440)" to="(590,440)"/> <wire from="(570,620)" to="(590,620)"/> <wire from="(650,180)" to="(660,180)"/> <wire from="(650,240)" to="(660,240)"/> <wire from="(650,300)" to="(660,300)"/> <wire from="(650,360)" to="(660,360)"/> <wire from="(650,420)" to="(660,420)"/> <wire from="(650,480)" to="(660,480)"/> <wire from="(650,540)" to="(660,540)"/> <wire from="(650,600)" to="(660,600)"/> <wire from="(680,180)" to="(690,180)"/> <wire from="(680,240)" to="(690,240)"/> <wire from="(680,300)" to="(690,300)"/> <wire from="(680,360)" to="(690,360)"/> <wire from="(680,420)" to="(690,420)"/> <wire from="(680,480)" to="(690,480)"/> <wire from="(680,540)" to="(690,540)"/> <wire from="(680,600)" to="(690,600)"/> <wire from="(90,110)" to="(100,110)"/> <wire from="(90,140)" to="(110,140)"/> <wire from="(90,170)" to="(120,170)"/> <wire from="(90,260)" to="(110,260)"/> <wire from="(90,290)" to="(120,290)"/> <wire from="(90,30)" to="(160,30)"/> <wire from="(90,30)" to="(90,40)"/> <wire from="(90,40)" to="(100,40)"/> <wire from="(90,40)" to="(90,80)"/> </circuit> <circuit name="RegFF"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="RegFF"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Enable"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Val_in"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Res"/> </comp> <comp lib="0" loc="(290,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Val_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(240,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(190,150)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <wire from="(140,120)" to="(170,120)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(140,80)" to="(220,80)"/> <wire from="(150,140)" to="(160,140)"/> <wire from="(150,60)" to="(150,140)"/> <wire from="(150,60)" to="(270,60)"/> <wire from="(170,120)" to="(170,130)"/> <wire from="(190,150)" to="(220,150)"/> <wire from="(210,100)" to="(210,120)"/> <wire from="(210,100)" to="(220,100)"/> <wire from="(210,120)" to="(260,120)"/> <wire from="(240,150)" to="(260,150)"/> <wire from="(260,120)" to="(260,150)"/> <wire from="(260,90)" to="(270,90)"/> <wire from="(270,60)" to="(270,90)"/> <wire from="(270,90)" to="(290,90)"/> </circuit> <circuit name="PPU_CTRL0"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_CTRL0"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W0"/> </comp> <comp lib="0" loc="(180,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,250)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="I_1_32"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OBSEL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGSEL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="O_8_16"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SLAVE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VBL"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(125,290)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Bits 0 and 1 in the PAR Generator"/> </comp> <comp lib="8" loc="(200,90)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="W0_EN"/> </comp> <comp loc="(520,190)" name="RegFF"/> <comp loc="(520,290)" name="RegFF"/> <comp loc="(520,390)" name="RegFF"/> <comp loc="(520,490)" name="RegFF"/> <comp loc="(520,590)" name="RegFF"/> <comp loc="(520,90)" name="RegFF"/> <comp loc="(580,110)" name="DLatch"> <a name="label" val="i132_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,210)" name="DLatch"> <a name="label" val="obsel_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,310)" name="DLatch"> <a name="label" val="bgsel_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,410)" name="DLatch"> <a name="label" val="o816_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,120)" to="(120,120)"/> <wire from="(110,60)" to="(290,60)"/> <wire from="(110,90)" to="(140,90)"/> <wire from="(120,110)" to="(120,120)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(180,100)" to="(230,100)"/> <wire from="(180,250)" to="(190,250)"/> <wire from="(210,190)" to="(230,190)"/> <wire from="(210,200)" to="(260,200)"/> <wire from="(210,210)" to="(250,210)"/> <wire from="(210,220)" to="(240,220)"/> <wire from="(210,230)" to="(230,230)"/> <wire from="(210,240)" to="(220,240)"/> <wire from="(220,240)" to="(220,630)"/> <wire from="(220,630)" to="(300,630)"/> <wire from="(230,100)" to="(280,100)"/> <wire from="(230,130)" to="(230,190)"/> <wire from="(230,130)" to="(300,130)"/> <wire from="(230,230)" to="(230,530)"/> <wire from="(230,40)" to="(230,100)"/> <wire from="(230,40)" to="(380,40)"/> <wire from="(230,530)" to="(300,530)"/> <wire from="(240,220)" to="(240,430)"/> <wire from="(240,430)" to="(300,430)"/> <wire from="(250,210)" to="(250,330)"/> <wire from="(250,330)" to="(300,330)"/> <wire from="(260,200)" to="(260,230)"/> <wire from="(260,230)" to="(300,230)"/> <wire from="(280,100)" to="(280,110)"/> <wire from="(280,110)" to="(280,210)"/> <wire from="(280,110)" to="(300,110)"/> <wire from="(280,210)" to="(280,310)"/> <wire from="(280,210)" to="(300,210)"/> <wire from="(280,310)" to="(280,410)"/> <wire from="(280,310)" to="(300,310)"/> <wire from="(280,410)" to="(280,510)"/> <wire from="(280,410)" to="(300,410)"/> <wire from="(280,510)" to="(280,610)"/> <wire from="(280,510)" to="(300,510)"/> <wire from="(280,610)" to="(300,610)"/> <wire from="(290,190)" to="(290,290)"/> <wire from="(290,190)" to="(300,190)"/> <wire from="(290,290)" to="(290,390)"/> <wire from="(290,290)" to="(300,290)"/> <wire from="(290,390)" to="(290,490)"/> <wire from="(290,390)" to="(300,390)"/> <wire from="(290,490)" to="(290,590)"/> <wire from="(290,490)" to="(300,490)"/> <wire from="(290,590)" to="(300,590)"/> <wire from="(290,60)" to="(290,90)"/> <wire from="(290,90)" to="(290,190)"/> <wire from="(290,90)" to="(300,90)"/> <wire from="(400,40)" to="(560,40)"/> <wire from="(520,190)" to="(530,190)"/> <wire from="(520,290)" to="(530,290)"/> <wire from="(520,390)" to="(530,390)"/> <wire from="(520,490)" to="(690,490)"/> <wire from="(520,590)" to="(690,590)"/> <wire from="(520,90)" to="(530,90)"/> <wire from="(530,130)" to="(580,130)"/> <wire from="(530,190)" to="(530,230)"/> <wire from="(530,230)" to="(580,230)"/> <wire from="(530,290)" to="(530,330)"/> <wire from="(530,330)" to="(580,330)"/> <wire from="(530,390)" to="(530,430)"/> <wire from="(530,430)" to="(580,430)"/> <wire from="(530,90)" to="(530,130)"/> <wire from="(560,110)" to="(560,210)"/> <wire from="(560,110)" to="(580,110)"/> <wire from="(560,210)" to="(560,310)"/> <wire from="(560,210)" to="(580,210)"/> <wire from="(560,310)" to="(560,410)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(560,40)" to="(560,110)"/> <wire from="(560,410)" to="(580,410)"/> <wire from="(620,130)" to="(650,130)"/> <wire from="(620,230)" to="(690,230)"/> <wire from="(620,330)" to="(690,330)"/> <wire from="(620,430)" to="(650,430)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(670,430)" to="(690,430)"/> </circuit> <circuit name="PPU_CTRL1"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_CTRL1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W1"/> </comp> <comp lib="0" loc="(180,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,250)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_BGCLIP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_OBCLIP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BLACK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OBE"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_TR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_TG"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_TB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BnW"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,40)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(610,790)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,230)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(200,90)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="W1_EN"/> </comp> <comp loc="(520,190)" name="RegFF"/> <comp loc="(520,290)" name="RegFF"/> <comp loc="(520,390)" name="RegFF"/> <comp loc="(520,490)" name="RegFF"/> <comp loc="(520,590)" name="RegFF"/> <comp loc="(520,690)" name="RegFF"/> <comp loc="(520,790)" name="RegFF"/> <comp loc="(520,90)" name="RegFF"/> <comp loc="(580,210)" name="DLatch"> <a name="label" val="bgclip_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,310)" name="DLatch"> <a name="label" val="obclip_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,410)" name="DLatch"> <a name="label" val="bge_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,510)" name="DLatch"> <a name="label" val="obe_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,610)" name="DLatch"> <a name="label" val="tr_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(580,710)" name="DLatch"> <a name="label" val="tg_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,120)" to="(120,120)"/> <wire from="(110,60)" to="(290,60)"/> <wire from="(110,90)" to="(140,90)"/> <wire from="(120,110)" to="(120,120)"/> <wire from="(120,110)" to="(140,110)"/> <wire from="(180,100)" to="(230,100)"/> <wire from="(180,250)" to="(190,250)"/> <wire from="(210,170)" to="(220,170)"/> <wire from="(210,180)" to="(270,180)"/> <wire from="(210,190)" to="(260,190)"/> <wire from="(210,200)" to="(250,200)"/> <wire from="(210,210)" to="(240,210)"/> <wire from="(210,220)" to="(230,220)"/> <wire from="(210,230)" to="(220,230)"/> <wire from="(210,240)" to="(210,830)"/> <wire from="(210,830)" to="(300,830)"/> <wire from="(220,130)" to="(220,170)"/> <wire from="(220,130)" to="(300,130)"/> <wire from="(220,230)" to="(220,730)"/> <wire from="(220,730)" to="(300,730)"/> <wire from="(230,100)" to="(280,100)"/> <wire from="(230,220)" to="(230,630)"/> <wire from="(230,40)" to="(230,100)"/> <wire from="(230,40)" to="(380,40)"/> <wire from="(230,630)" to="(300,630)"/> <wire from="(240,210)" to="(240,530)"/> <wire from="(240,530)" to="(300,530)"/> <wire from="(250,200)" to="(250,430)"/> <wire from="(250,430)" to="(300,430)"/> <wire from="(260,190)" to="(260,330)"/> <wire from="(260,330)" to="(300,330)"/> <wire from="(270,180)" to="(270,230)"/> <wire from="(270,230)" to="(300,230)"/> <wire from="(280,100)" to="(280,110)"/> <wire from="(280,110)" to="(280,210)"/> <wire from="(280,110)" to="(300,110)"/> <wire from="(280,210)" to="(280,310)"/> <wire from="(280,210)" to="(300,210)"/> <wire from="(280,310)" to="(280,410)"/> <wire from="(280,310)" to="(300,310)"/> <wire from="(280,410)" to="(280,510)"/> <wire from="(280,410)" to="(300,410)"/> <wire from="(280,510)" to="(280,610)"/> <wire from="(280,510)" to="(300,510)"/> <wire from="(280,610)" to="(280,710)"/> <wire from="(280,610)" to="(300,610)"/> <wire from="(280,710)" to="(280,810)"/> <wire from="(280,710)" to="(300,710)"/> <wire from="(280,810)" to="(300,810)"/> <wire from="(290,190)" to="(290,290)"/> <wire from="(290,190)" to="(300,190)"/> <wire from="(290,290)" to="(290,390)"/> <wire from="(290,290)" to="(300,290)"/> <wire from="(290,390)" to="(290,490)"/> <wire from="(290,390)" to="(300,390)"/> <wire from="(290,490)" to="(290,590)"/> <wire from="(290,490)" to="(300,490)"/> <wire from="(290,590)" to="(290,690)"/> <wire from="(290,590)" to="(300,590)"/> <wire from="(290,60)" to="(290,90)"/> <wire from="(290,690)" to="(290,790)"/> <wire from="(290,690)" to="(300,690)"/> <wire from="(290,790)" to="(300,790)"/> <wire from="(290,90)" to="(290,190)"/> <wire from="(290,90)" to="(300,90)"/> <wire from="(400,40)" to="(560,40)"/> <wire from="(520,190)" to="(530,190)"/> <wire from="(520,290)" to="(530,290)"/> <wire from="(520,390)" to="(530,390)"/> <wire from="(520,490)" to="(530,490)"/> <wire from="(520,590)" to="(530,590)"/> <wire from="(520,690)" to="(530,690)"/> <wire from="(520,790)" to="(590,790)"/> <wire from="(520,90)" to="(690,90)"/> <wire from="(530,190)" to="(530,230)"/> <wire from="(530,230)" to="(580,230)"/> <wire from="(530,290)" to="(530,330)"/> <wire from="(530,330)" to="(580,330)"/> <wire from="(530,390)" to="(530,430)"/> <wire from="(530,430)" to="(580,430)"/> <wire from="(530,490)" to="(530,530)"/> <wire from="(530,530)" to="(580,530)"/> <wire from="(530,590)" to="(530,630)"/> <wire from="(530,630)" to="(580,630)"/> <wire from="(530,690)" to="(530,730)"/> <wire from="(530,730)" to="(580,730)"/> <wire from="(560,210)" to="(560,310)"/> <wire from="(560,210)" to="(580,210)"/> <wire from="(560,310)" to="(560,410)"/> <wire from="(560,310)" to="(580,310)"/> <wire from="(560,40)" to="(560,210)"/> <wire from="(560,410)" to="(560,510)"/> <wire from="(560,410)" to="(580,410)"/> <wire from="(560,510)" to="(560,610)"/> <wire from="(560,510)" to="(580,510)"/> <wire from="(560,610)" to="(560,710)"/> <wire from="(560,610)" to="(580,610)"/> <wire from="(560,710)" to="(580,710)"/> <wire from="(610,790)" to="(690,790)"/> <wire from="(620,230)" to="(650,230)"/> <wire from="(620,330)" to="(650,330)"/> <wire from="(620,410)" to="(640,410)"/> <wire from="(620,510)" to="(640,510)"/> <wire from="(620,630)" to="(690,630)"/> <wire from="(620,730)" to="(690,730)"/> <wire from="(640,410)" to="(640,450)"/> <wire from="(640,410)" to="(690,410)"/> <wire from="(640,450)" to="(650,450)"/> <wire from="(640,470)" to="(640,510)"/> <wire from="(640,470)" to="(650,470)"/> <wire from="(640,510)" to="(690,510)"/> <wire from="(670,230)" to="(690,230)"/> <wire from="(670,330)" to="(690,330)"/> </circuit> <circuit name="PPU_CTRL1_BLACK_PAL"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_CTRL1_BLACK_PAL"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLACK_Regs"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(730,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BLACK"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(310,180)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,180)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(280,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(440,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(285,160)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="BLACK_FF1"/> </comp> <comp lib="8" loc="(450,160)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="BLACK_FF2"/> </comp> <comp lib="8" loc="(620,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="/BLACK"/> </comp> <comp loc="(550,140)" name="DLatch"> <a name="label" val="black_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(670,140)" name="DLatch"> <a name="label" val="black_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,140)" to="(250,140)"/> <wire from="(150,50)" to="(260,50)"/> <wire from="(150,80)" to="(420,80)"/> <wire from="(230,120)" to="(230,180)"/> <wire from="(230,120)" to="(250,120)"/> <wire from="(230,180)" to="(260,180)"/> <wire from="(260,180)" to="(260,200)"/> <wire from="(260,180)" to="(310,180)"/> <wire from="(260,200)" to="(380,200)"/> <wire from="(260,50)" to="(260,110)"/> <wire from="(260,50)" to="(530,50)"/> <wire from="(280,130)" to="(310,130)"/> <wire from="(330,130)" to="(350,130)"/> <wire from="(330,180)" to="(350,180)"/> <wire from="(350,130)" to="(350,180)"/> <wire from="(380,140)" to="(380,200)"/> <wire from="(380,140)" to="(410,140)"/> <wire from="(390,120)" to="(390,180)"/> <wire from="(390,120)" to="(410,120)"/> <wire from="(390,180)" to="(430,180)"/> <wire from="(420,80)" to="(420,110)"/> <wire from="(420,80)" to="(650,80)"/> <wire from="(430,180)" to="(430,200)"/> <wire from="(430,180)" to="(470,180)"/> <wire from="(430,200)" to="(530,200)"/> <wire from="(440,130)" to="(470,130)"/> <wire from="(490,130)" to="(510,130)"/> <wire from="(490,180)" to="(510,180)"/> <wire from="(510,130)" to="(510,180)"/> <wire from="(530,140)" to="(550,140)"/> <wire from="(530,160)" to="(530,200)"/> <wire from="(530,160)" to="(550,160)"/> <wire from="(530,50)" to="(530,140)"/> <wire from="(590,160)" to="(670,160)"/> <wire from="(650,140)" to="(670,140)"/> <wire from="(650,80)" to="(650,140)"/> <wire from="(710,160)" to="(730,160)"/> </circuit> <circuit name="Clip"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Clip"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLIP_B"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLIP_O"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGE"/> </comp> <comp lib="0" loc="(140,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OBE"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(510,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_CLPB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(510,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CLPO"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(350,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,120)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,200)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(100,215)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="From FSM"/> </comp> <comp lib="8" loc="(110,350)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="From CtrlRegs"/> </comp> <comp loc="(200,160)" name="DLatch"> <a name="label" val="clipb_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,90)" name="DLatch"> <a name="label" val="nvis_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,180)" name="DLatch"> <a name="label" val="clipo_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,110)" to="(200,110)"/> <wire from="(140,150)" to="(160,150)"/> <wire from="(140,190)" to="(150,190)"/> <wire from="(140,280)" to="(310,280)"/> <wire from="(140,320)" to="(320,320)"/> <wire from="(140,70)" to="(190,70)"/> <wire from="(150,190)" to="(150,250)"/> <wire from="(150,250)" to="(300,250)"/> <wire from="(160,150)" to="(160,180)"/> <wire from="(160,180)" to="(200,180)"/> <wire from="(190,160)" to="(200,160)"/> <wire from="(190,70)" to="(190,90)"/> <wire from="(190,70)" to="(430,70)"/> <wire from="(190,90)" to="(190,160)"/> <wire from="(190,90)" to="(200,90)"/> <wire from="(240,160)" to="(270,160)"/> <wire from="(240,90)" to="(290,90)"/> <wire from="(270,120)" to="(270,160)"/> <wire from="(270,120)" to="(360,120)"/> <wire from="(290,190)" to="(360,190)"/> <wire from="(290,90)" to="(290,190)"/> <wire from="(290,90)" to="(310,90)"/> <wire from="(300,200)" to="(300,250)"/> <wire from="(300,200)" to="(360,200)"/> <wire from="(310,110)" to="(360,110)"/> <wire from="(310,130)" to="(310,280)"/> <wire from="(310,130)" to="(330,130)"/> <wire from="(310,90)" to="(310,110)"/> <wire from="(320,210)" to="(320,320)"/> <wire from="(320,210)" to="(330,210)"/> <wire from="(350,130)" to="(360,130)"/> <wire from="(350,210)" to="(360,210)"/> <wire from="(400,120)" to="(510,120)"/> <wire from="(400,200)" to="(440,200)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(430,70)" to="(430,180)"/> <wire from="(480,200)" to="(510,200)"/> </circuit> <circuit name="H_Carry"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="H_Carry"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H3"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H4"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H0"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H1"/> </comp> <comp lib="0" loc="(310,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CarryH"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(290,120)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <wire from="(140,120)" to="(210,120)"/> <wire from="(140,150)" to="(170,150)"/> <wire from="(140,180)" to="(180,180)"/> <wire from="(140,60)" to="(180,60)"/> <wire from="(140,90)" to="(170,90)"/> <wire from="(170,110)" to="(210,110)"/> <wire from="(170,130)" to="(170,150)"/> <wire from="(170,130)" to="(210,130)"/> <wire from="(170,90)" to="(170,110)"/> <wire from="(180,100)" to="(210,100)"/> <wire from="(180,140)" to="(180,180)"/> <wire from="(180,140)" to="(210,140)"/> <wire from="(180,60)" to="(180,100)"/> <wire from="(290,120)" to="(310,120)"/> </circuit> <circuit name="V_Carry"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="V_Carry"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_V2"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_V3"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_V4"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V_IN"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_V0"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_V1"/> </comp> <comp lib="0" loc="(310,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CarryV"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(180,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,120)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <wire from="(140,120)" to="(170,120)"/> <wire from="(140,150)" to="(170,150)"/> <wire from="(140,180)" to="(180,180)"/> <wire from="(140,220)" to="(160,220)"/> <wire from="(140,60)" to="(180,60)"/> <wire from="(140,90)" to="(170,90)"/> <wire from="(170,100)" to="(210,100)"/> <wire from="(170,110)" to="(170,120)"/> <wire from="(170,110)" to="(210,110)"/> <wire from="(170,130)" to="(170,150)"/> <wire from="(170,130)" to="(210,130)"/> <wire from="(170,90)" to="(170,100)"/> <wire from="(180,140)" to="(180,180)"/> <wire from="(180,140)" to="(210,140)"/> <wire from="(180,220)" to="(200,220)"/> <wire from="(180,60)" to="(180,90)"/> <wire from="(180,90)" to="(210,90)"/> <wire from="(200,150)" to="(200,220)"/> <wire from="(200,150)" to="(210,150)"/> <wire from="(290,120)" to="(310,120)"/> </circuit> <circuit name="CRAM_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CRAM_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(160,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PALx"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(170,120)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(280,130)" name="Constant"/> <comp lib="0" loc="(280,180)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(280,250)" name="Constant"/> <comp lib="0" loc="(280,80)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(380,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(380,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW0_4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(470,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(400,200)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,210)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,240)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,270)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,300)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,330)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,360)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,390)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(290,130)" name="Demultiplexer"> <a name="select" val="2"/> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(290,250)" name="Demultiplexer"> <a name="select" val="3"/> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(410,165)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="This `or` gate is not really there"/> </comp> <comp lib="8" loc="(505,180)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="It is used for the convenience of combining 0 and 4 outputs from DMX."/> </comp> <wire from="(120,310)" to="(270,310)"/> <wire from="(160,120)" to="(170,120)"/> <wire from="(190,100)" to="(260,100)"/> <wire from="(190,110)" to="(210,110)"/> <wire from="(190,70)" to="(230,70)"/> <wire from="(190,80)" to="(220,80)"/> <wire from="(190,90)" to="(260,90)"/> <wire from="(210,110)" to="(210,210)"/> <wire from="(210,210)" to="(260,210)"/> <wire from="(220,200)" to="(260,200)"/> <wire from="(220,80)" to="(220,200)"/> <wire from="(230,190)" to="(260,190)"/> <wire from="(230,70)" to="(230,190)"/> <wire from="(270,310)" to="(270,400)"/> <wire from="(270,400)" to="(410,400)"/> <wire from="(280,130)" to="(290,130)"/> <wire from="(280,180)" to="(310,180)"/> <wire from="(280,250)" to="(290,250)"/> <wire from="(280,80)" to="(310,80)"/> <wire from="(310,180)" to="(310,210)"/> <wire from="(310,80)" to="(310,110)"/> <wire from="(330,110)" to="(340,110)"/> <wire from="(330,120)" to="(350,120)"/> <wire from="(330,130)" to="(360,130)"/> <wire from="(330,140)" to="(380,140)"/> <wire from="(330,210)" to="(350,210)"/> <wire from="(330,220)" to="(400,220)"/> <wire from="(330,230)" to="(390,230)"/> <wire from="(330,240)" to="(380,240)"/> <wire from="(330,250)" to="(360,250)"/> <wire from="(330,260)" to="(370,260)"/> <wire from="(330,270)" to="(360,270)"/> <wire from="(330,280)" to="(350,280)"/> <wire from="(340,50)" to="(340,110)"/> <wire from="(340,50)" to="(380,50)"/> <wire from="(350,190)" to="(350,210)"/> <wire from="(350,190)" to="(370,190)"/> <wire from="(350,280)" to="(350,380)"/> <wire from="(350,380)" to="(430,380)"/> <wire from="(350,80)" to="(350,120)"/> <wire from="(350,80)" to="(380,80)"/> <wire from="(360,110)" to="(360,130)"/> <wire from="(360,110)" to="(380,110)"/> <wire from="(360,210)" to="(360,250)"/> <wire from="(360,210)" to="(370,210)"/> <wire from="(360,270)" to="(360,350)"/> <wire from="(360,350)" to="(430,350)"/> <wire from="(370,260)" to="(370,320)"/> <wire from="(370,320)" to="(430,320)"/> <wire from="(380,240)" to="(380,290)"/> <wire from="(380,290)" to="(430,290)"/> <wire from="(390,230)" to="(390,260)"/> <wire from="(390,260)" to="(430,260)"/> <wire from="(400,200)" to="(430,200)"/> <wire from="(400,220)" to="(400,230)"/> <wire from="(400,230)" to="(430,230)"/> <wire from="(410,220)" to="(410,250)"/> <wire from="(410,220)" to="(420,220)"/> <wire from="(410,250)" to="(410,280)"/> <wire from="(410,250)" to="(420,250)"/> <wire from="(410,280)" to="(410,310)"/> <wire from="(410,280)" to="(420,280)"/> <wire from="(410,310)" to="(410,340)"/> <wire from="(410,310)" to="(420,310)"/> <wire from="(410,340)" to="(410,370)"/> <wire from="(410,340)" to="(420,340)"/> <wire from="(410,370)" to="(410,400)"/> <wire from="(410,370)" to="(420,370)"/> <wire from="(410,400)" to="(420,400)"/> <wire from="(460,210)" to="(470,210)"/> <wire from="(460,240)" to="(470,240)"/> <wire from="(460,270)" to="(470,270)"/> <wire from="(460,300)" to="(470,300)"/> <wire from="(460,330)" to="(470,330)"/> <wire from="(460,360)" to="(470,360)"/> <wire from="(460,390)" to="(470,390)"/> </circuit> <circuit name="CB_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CB_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TH_MUX"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(140,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PICTURE"/> </comp> <comp lib="0" loc="(140,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BnW"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R7"/> </comp> <comp lib="0" loc="(370,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_BW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_CB_DB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(410,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_DB_CB"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(240,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,160)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,90)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(340,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,250)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,250)" name="Buffer"/> <comp loc="(240,240)" name="DLatch"> <a name="label" val="dbpar_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,120)" to="(170,120)"/> <wire from="(140,150)" to="(180,150)"/> <wire from="(140,180)" to="(190,180)"/> <wire from="(140,210)" to="(150,210)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(140,60)" to="(200,60)"/> <wire from="(140,90)" to="(160,90)"/> <wire from="(150,170)" to="(150,210)"/> <wire from="(150,170)" to="(250,170)"/> <wire from="(160,190)" to="(160,240)"/> <wire from="(160,190)" to="(290,190)"/> <wire from="(160,80)" to="(160,90)"/> <wire from="(160,80)" to="(250,80)"/> <wire from="(170,90)" to="(170,120)"/> <wire from="(170,90)" to="(250,90)"/> <wire from="(180,100)" to="(180,150)"/> <wire from="(180,100)" to="(220,100)"/> <wire from="(180,150)" to="(180,290)"/> <wire from="(180,290)" to="(300,290)"/> <wire from="(190,180)" to="(190,260)"/> <wire from="(190,260)" to="(240,260)"/> <wire from="(200,240)" to="(240,240)"/> <wire from="(200,60)" to="(200,240)"/> <wire from="(230,130)" to="(230,150)"/> <wire from="(230,130)" to="(350,130)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(240,100)" to="(250,100)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(280,240)" to="(320,240)"/> <wire from="(290,180)" to="(290,190)"/> <wire from="(290,180)" to="(300,180)"/> <wire from="(290,90)" to="(310,90)"/> <wire from="(300,260)" to="(300,290)"/> <wire from="(300,260)" to="(320,260)"/> <wire from="(330,90)" to="(350,90)"/> <wire from="(340,170)" to="(370,170)"/> <wire from="(350,90)" to="(350,130)"/> <wire from="(350,90)" to="(370,90)"/> <wire from="(360,250)" to="(380,250)"/> <wire from="(400,250)" to="(410,250)"/> </circuit> <circuit name="CB_Bit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CB_Bit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(130,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DB_CB"/> </comp> <comp lib="0" loc="(130,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CB_DB"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_val_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_OE"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(320,210)" name="Constant"/> <comp lib="0" loc="(370,310)" name="Transistor"> <a name="type" val="n"/> </comp> <comp lib="0" loc="(440,210)" name="Constant"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(690,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CB_Out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(310,170)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(310,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,130)" name="Buffer"/> <comp lib="1" loc="(350,170)" name="Buffer"/> <comp lib="1" loc="(350,210)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(410,210)" name="Controlled Buffer"> <a name="facing" val="west"/> </comp> <comp lib="1" loc="(420,360)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(630,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(640,360)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(405,265)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="In the original circuit here is the PCLK TriState, which connects the NOR outputs (why?)"/> </comp> <comp loc="(470,340)" name="DLatch"/> <comp loc="(540,340)" name="DLatch"/> <wire from="(130,130)" to="(170,130)"/> <wire from="(130,180)" to="(150,180)"/> <wire from="(130,210)" to="(140,210)"/> <wire from="(130,310)" to="(200,310)"/> <wire from="(130,340)" to="(180,340)"/> <wire from="(130,40)" to="(420,40)"/> <wire from="(130,420)" to="(370,420)"/> <wire from="(130,70)" to="(460,70)"/> <wire from="(140,90)" to="(140,210)"/> <wire from="(140,90)" to="(600,90)"/> <wire from="(150,110)" to="(150,180)"/> <wire from="(150,110)" to="(270,110)"/> <wire from="(170,130)" to="(170,170)"/> <wire from="(170,130)" to="(290,130)"/> <wire from="(170,170)" to="(190,170)"/> <wire from="(180,240)" to="(180,340)"/> <wire from="(180,240)" to="(360,240)"/> <wire from="(180,340)" to="(220,340)"/> <wire from="(200,250)" to="(200,310)"/> <wire from="(200,250)" to="(400,250)"/> <wire from="(200,310)" to="(220,310)"/> <wire from="(210,170)" to="(290,170)"/> <wire from="(220,280)" to="(220,310)"/> <wire from="(220,280)" to="(270,280)"/> <wire from="(220,340)" to="(220,360)"/> <wire from="(220,360)" to="(270,360)"/> <wire from="(260,300)" to="(260,320)"/> <wire from="(260,300)" to="(270,300)"/> <wire from="(260,320)" to="(330,320)"/> <wire from="(260,330)" to="(260,340)"/> <wire from="(260,330)" to="(320,330)"/> <wire from="(260,340)" to="(270,340)"/> <wire from="(270,110)" to="(270,150)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(270,150)" to="(280,150)"/> <wire from="(300,110)" to="(300,120)"/> <wire from="(300,150)" to="(300,160)"/> <wire from="(310,130)" to="(330,130)"/> <wire from="(310,170)" to="(330,170)"/> <wire from="(310,290)" to="(320,290)"/> <wire from="(310,350)" to="(330,350)"/> <wire from="(320,210)" to="(330,210)"/> <wire from="(320,290)" to="(320,330)"/> <wire from="(330,320)" to="(330,350)"/> <wire from="(330,350)" to="(380,350)"/> <wire from="(340,190)" to="(340,200)"/> <wire from="(340,190)" to="(420,190)"/> <wire from="(350,130)" to="(400,130)"/> <wire from="(350,170)" to="(360,170)"/> <wire from="(350,210)" to="(360,210)"/> <wire from="(360,170)" to="(360,210)"/> <wire from="(360,210)" to="(360,240)"/> <wire from="(360,240)" to="(690,240)"/> <wire from="(370,370)" to="(370,420)"/> <wire from="(370,370)" to="(380,370)"/> <wire from="(400,130)" to="(400,210)"/> <wire from="(400,210)" to="(400,250)"/> <wire from="(400,210)" to="(410,210)"/> <wire from="(400,250)" to="(680,250)"/> <wire from="(420,190)" to="(420,200)"/> <wire from="(420,360)" to="(430,360)"/> <wire from="(420,40)" to="(420,190)"/> <wire from="(420,40)" to="(530,40)"/> <wire from="(430,210)" to="(440,210)"/> <wire from="(450,360)" to="(460,360)"/> <wire from="(460,340)" to="(470,340)"/> <wire from="(460,360)" to="(460,420)"/> <wire from="(460,360)" to="(470,360)"/> <wire from="(460,420)" to="(690,420)"/> <wire from="(460,70)" to="(460,340)"/> <wire from="(510,360)" to="(540,360)"/> <wire from="(530,340)" to="(540,340)"/> <wire from="(530,40)" to="(530,340)"/> <wire from="(580,360)" to="(620,360)"/> <wire from="(600,340)" to="(610,340)"/> <wire from="(600,90)" to="(600,340)"/> <wire from="(630,340)" to="(630,350)"/> <wire from="(640,360)" to="(690,360)"/> <wire from="(680,210)" to="(680,250)"/> <wire from="(680,210)" to="(690,210)"/> </circuit> <circuit name="Vid_SR_Bit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Vid_SR_Bit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_shift_in"/> </comp> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(450,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_shift_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(450,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(450,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="shift_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(320,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(200,90)" name="DLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,90)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,110)" to="(200,110)"/> <wire from="(130,150)" to="(260,150)"/> <wire from="(130,30)" to="(180,30)"/> <wire from="(130,60)" to="(340,60)"/> <wire from="(180,30)" to="(180,90)"/> <wire from="(180,90)" to="(200,90)"/> <wire from="(240,90)" to="(260,90)"/> <wire from="(260,100)" to="(280,100)"/> <wire from="(260,120)" to="(260,150)"/> <wire from="(260,120)" to="(280,120)"/> <wire from="(260,90)" to="(260,100)"/> <wire from="(320,110)" to="(330,110)"/> <wire from="(330,110)" to="(330,150)"/> <wire from="(330,110)" to="(350,110)"/> <wire from="(330,150)" to="(450,150)"/> <wire from="(340,60)" to="(340,90)"/> <wire from="(340,90)" to="(350,90)"/> <wire from="(390,110)" to="(450,110)"/> <wire from="(390,90)" to="(450,90)"/> </circuit> <circuit name="PhaseShifter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PhaseShifter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1170,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PZ"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(120,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(680,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PG"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PB"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(770,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="P"/> <a name="width" val="13"/> </comp> <comp lib="0" loc="(780,640)" name="Splitter"> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="1" loc="(1150,360)" name="NOR Gate"> <a name="inputs" val="13"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(140,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(200,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(80,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(970,160)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,190)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,220)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,250)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,280)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,310)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,340)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,370)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,400)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,430)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,460)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(970,490)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(1010,565)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Except P4"/> </comp> <comp lib="8" loc="(530,205)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ2"/> </comp> <comp lib="8" loc="(540,225)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ3"/> </comp> <comp lib="8" loc="(545,375)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ6"/> </comp> <comp lib="8" loc="(545,500)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ8"/> </comp> <comp lib="8" loc="(545,630)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ10"/> </comp> <comp lib="8" loc="(550,305)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ1"/> </comp> <comp lib="8" loc="(550,465)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ7"/> </comp> <comp lib="8" loc="(550,60)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ0"/> </comp> <comp lib="8" loc="(550,740)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ11"/> </comp> <comp lib="8" loc="(550,775)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ12"/> </comp> <comp lib="8" loc="(580,335)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ5"/> </comp> <comp lib="8" loc="(580,595)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="PZ9"/> </comp> <comp loc="(490,210)" name="Vid_SR_Bit"> <a name="label" val="bit_4"/> </comp> <comp loc="(490,340)" name="Vid_SR_Bit"> <a name="label" val="bit_3"/> </comp> <comp loc="(490,470)" name="Vid_SR_Bit"> <a name="label" val="bit_2"/> </comp> <comp loc="(490,600)" name="Vid_SR_Bit"> <a name="label" val="bit_1"/> </comp> <comp loc="(490,730)" name="Vid_SR_Bit"> <a name="label" val="bit_0"/> </comp> <comp loc="(490,80)" name="Vid_SR_Bit"> <a name="label" val="bit_5"/> </comp> <wire from="(1000,340)" to="(1000,360)"/> <wire from="(1000,360)" to="(1070,360)"/> <wire from="(1010,310)" to="(1010,350)"/> <wire from="(1010,350)" to="(1070,350)"/> <wire from="(1020,280)" to="(1020,340)"/> <wire from="(1020,340)" to="(1070,340)"/> <wire from="(1020,380)" to="(1020,400)"/> <wire from="(1020,380)" to="(1070,380)"/> <wire from="(1030,250)" to="(1030,330)"/> <wire from="(1030,330)" to="(1070,330)"/> <wire from="(1030,390)" to="(1030,430)"/> <wire from="(1030,390)" to="(1070,390)"/> <wire from="(1040,220)" to="(1040,320)"/> <wire from="(1040,320)" to="(1070,320)"/> <wire from="(1040,400)" to="(1040,460)"/> <wire from="(1040,400)" to="(1070,400)"/> <wire from="(1050,190)" to="(1050,310)"/> <wire from="(1050,310)" to="(1070,310)"/> <wire from="(1050,410)" to="(1050,490)"/> <wire from="(1050,410)" to="(1070,410)"/> <wire from="(1060,160)" to="(1060,300)"/> <wire from="(1060,300)" to="(1070,300)"/> <wire from="(1060,420)" to="(1060,550)"/> <wire from="(1060,420)" to="(1070,420)"/> <wire from="(1150,360)" to="(1170,360)"/> <wire from="(120,30)" to="(260,30)"/> <wire from="(120,60)" to="(250,60)"/> <wire from="(120,90)" to="(240,90)"/> <wire from="(140,300)" to="(150,300)"/> <wire from="(150,180)" to="(150,240)"/> <wire from="(150,180)" to="(500,180)"/> <wire from="(150,240)" to="(160,240)"/> <wire from="(150,260)" to="(150,300)"/> <wire from="(150,260)" to="(160,260)"/> <wire from="(200,250)" to="(210,250)"/> <wire from="(210,250)" to="(210,310)"/> <wire from="(210,250)" to="(270,250)"/> <wire from="(210,310)" to="(620,310)"/> <wire from="(230,320)" to="(230,380)"/> <wire from="(230,320)" to="(530,320)"/> <wire from="(230,380)" to="(270,380)"/> <wire from="(230,440)" to="(230,510)"/> <wire from="(230,440)" to="(530,440)"/> <wire from="(230,510)" to="(270,510)"/> <wire from="(230,570)" to="(230,640)"/> <wire from="(230,570)" to="(530,570)"/> <wire from="(230,640)" to="(270,640)"/> <wire from="(230,700)" to="(230,770)"/> <wire from="(230,700)" to="(530,700)"/> <wire from="(230,770)" to="(270,770)"/> <wire from="(240,140)" to="(240,270)"/> <wire from="(240,140)" to="(270,140)"/> <wire from="(240,270)" to="(240,400)"/> <wire from="(240,270)" to="(270,270)"/> <wire from="(240,400)" to="(240,530)"/> <wire from="(240,400)" to="(270,400)"/> <wire from="(240,530)" to="(240,660)"/> <wire from="(240,530)" to="(270,530)"/> <wire from="(240,660)" to="(240,790)"/> <wire from="(240,660)" to="(270,660)"/> <wire from="(240,790)" to="(270,790)"/> <wire from="(240,90)" to="(240,140)"/> <wire from="(250,100)" to="(250,230)"/> <wire from="(250,100)" to="(270,100)"/> <wire from="(250,230)" to="(250,360)"/> <wire from="(250,230)" to="(270,230)"/> <wire from="(250,360)" to="(250,490)"/> <wire from="(250,360)" to="(270,360)"/> <wire from="(250,490)" to="(250,620)"/> <wire from="(250,490)" to="(270,490)"/> <wire from="(250,60)" to="(250,100)"/> <wire from="(250,620)" to="(250,750)"/> <wire from="(250,620)" to="(270,620)"/> <wire from="(250,750)" to="(270,750)"/> <wire from="(260,210)" to="(260,340)"/> <wire from="(260,210)" to="(270,210)"/> <wire from="(260,30)" to="(260,80)"/> <wire from="(260,340)" to="(260,470)"/> <wire from="(260,340)" to="(270,340)"/> <wire from="(260,470)" to="(260,600)"/> <wire from="(260,470)" to="(270,470)"/> <wire from="(260,600)" to="(260,730)"/> <wire from="(260,600)" to="(270,600)"/> <wire from="(260,730)" to="(270,730)"/> <wire from="(260,80)" to="(260,210)"/> <wire from="(260,80)" to="(270,80)"/> <wire from="(490,120)" to="(520,120)"/> <wire from="(490,230)" to="(530,230)"/> <wire from="(490,250)" to="(520,250)"/> <wire from="(490,360)" to="(530,360)"/> <wire from="(490,380)" to="(520,380)"/> <wire from="(490,490)" to="(530,490)"/> <wire from="(490,510)" to="(520,510)"/> <wire from="(490,620)" to="(530,620)"/> <wire from="(490,640)" to="(520,640)"/> <wire from="(490,750)" to="(500,750)"/> <wire from="(490,770)" to="(510,770)"/> <wire from="(490,80)" to="(500,80)"/> <wire from="(50,290)" to="(50,440)"/> <wire from="(50,290)" to="(60,290)"/> <wire from="(50,440)" to="(230,440)"/> <wire from="(500,750)" to="(500,780)"/> <wire from="(500,780)" to="(630,780)"/> <wire from="(500,80)" to="(500,180)"/> <wire from="(510,750)" to="(510,770)"/> <wire from="(510,750)" to="(600,750)"/> <wire from="(520,210)" to="(520,250)"/> <wire from="(520,210)" to="(630,210)"/> <wire from="(520,340)" to="(520,380)"/> <wire from="(520,340)" to="(600,340)"/> <wire from="(520,470)" to="(520,510)"/> <wire from="(520,470)" to="(650,470)"/> <wire from="(520,600)" to="(520,640)"/> <wire from="(520,600)" to="(610,600)"/> <wire from="(520,70)" to="(520,120)"/> <wire from="(520,70)" to="(570,70)"/> <wire from="(530,230)" to="(530,320)"/> <wire from="(530,230)" to="(590,230)"/> <wire from="(530,360)" to="(530,440)"/> <wire from="(530,360)" to="(640,360)"/> <wire from="(530,490)" to="(530,570)"/> <wire from="(530,490)" to="(660,490)"/> <wire from="(530,620)" to="(530,700)"/> <wire from="(530,620)" to="(680,620)"/> <wire from="(570,170)" to="(930,170)"/> <wire from="(570,70)" to="(570,170)"/> <wire from="(570,70)" to="(680,70)"/> <wire from="(590,230)" to="(590,260)"/> <wire from="(590,260)" to="(930,260)"/> <wire from="(600,130)" to="(600,340)"/> <wire from="(600,130)" to="(680,130)"/> <wire from="(600,340)" to="(630,340)"/> <wire from="(600,630)" to="(600,750)"/> <wire from="(600,630)" to="(690,630)"/> <wire from="(610,100)" to="(610,600)"/> <wire from="(610,100)" to="(680,100)"/> <wire from="(610,600)" to="(670,600)"/> <wire from="(620,200)" to="(620,310)"/> <wire from="(620,200)" to="(930,200)"/> <wire from="(630,210)" to="(630,230)"/> <wire from="(630,230)" to="(930,230)"/> <wire from="(630,290)" to="(630,340)"/> <wire from="(630,290)" to="(930,290)"/> <wire from="(630,640)" to="(630,780)"/> <wire from="(630,640)" to="(700,640)"/> <wire from="(640,320)" to="(640,360)"/> <wire from="(640,320)" to="(930,320)"/> <wire from="(650,350)" to="(650,470)"/> <wire from="(650,350)" to="(930,350)"/> <wire from="(660,380)" to="(660,490)"/> <wire from="(660,380)" to="(930,380)"/> <wire from="(670,410)" to="(670,600)"/> <wire from="(670,410)" to="(930,410)"/> <wire from="(680,440)" to="(680,620)"/> <wire from="(680,440)" to="(930,440)"/> <wire from="(690,470)" to="(690,630)"/> <wire from="(690,470)" to="(930,470)"/> <wire from="(700,500)" to="(700,640)"/> <wire from="(700,500)" to="(930,500)"/> <wire from="(770,670)" to="(780,670)"/> <wire from="(780,640)" to="(780,670)"/> <wire from="(80,290)" to="(90,290)"/> <wire from="(800,150)" to="(800,510)"/> <wire from="(800,150)" to="(940,150)"/> <wire from="(800,520)" to="(810,520)"/> <wire from="(800,530)" to="(820,530)"/> <wire from="(800,540)" to="(830,540)"/> <wire from="(800,550)" to="(1060,550)"/> <wire from="(800,560)" to="(840,560)"/> <wire from="(800,570)" to="(850,570)"/> <wire from="(800,580)" to="(860,580)"/> <wire from="(800,590)" to="(870,590)"/> <wire from="(800,600)" to="(880,600)"/> <wire from="(800,610)" to="(890,610)"/> <wire from="(800,620)" to="(900,620)"/> <wire from="(800,630)" to="(910,630)"/> <wire from="(810,180)" to="(810,520)"/> <wire from="(810,180)" to="(940,180)"/> <wire from="(820,210)" to="(820,530)"/> <wire from="(820,210)" to="(940,210)"/> <wire from="(830,240)" to="(830,540)"/> <wire from="(830,240)" to="(940,240)"/> <wire from="(840,270)" to="(840,560)"/> <wire from="(840,270)" to="(940,270)"/> <wire from="(850,300)" to="(850,570)"/> <wire from="(850,300)" to="(940,300)"/> <wire from="(860,330)" to="(860,580)"/> <wire from="(860,330)" to="(940,330)"/> <wire from="(870,360)" to="(870,590)"/> <wire from="(870,360)" to="(940,360)"/> <wire from="(880,390)" to="(880,600)"/> <wire from="(880,390)" to="(940,390)"/> <wire from="(890,420)" to="(890,610)"/> <wire from="(890,420)" to="(940,420)"/> <wire from="(90,120)" to="(270,120)"/> <wire from="(90,120)" to="(90,290)"/> <wire from="(90,290)" to="(100,290)"/> <wire from="(90,310)" to="(100,310)"/> <wire from="(90,310)" to="(90,380)"/> <wire from="(90,380)" to="(230,380)"/> <wire from="(900,450)" to="(900,620)"/> <wire from="(900,450)" to="(940,450)"/> <wire from="(910,480)" to="(910,630)"/> <wire from="(910,480)" to="(940,480)"/> <wire from="(970,160)" to="(1060,160)"/> <wire from="(970,190)" to="(1050,190)"/> <wire from="(970,220)" to="(1040,220)"/> <wire from="(970,250)" to="(1030,250)"/> <wire from="(970,280)" to="(1020,280)"/> <wire from="(970,310)" to="(1010,310)"/> <wire from="(970,340)" to="(1000,340)"/> <wire from="(970,370)" to="(1070,370)"/> <wire from="(970,400)" to="(1020,400)"/> <wire from="(970,430)" to="(1030,430)"/> <wire from="(970,460)" to="(1040,460)"/> <wire from="(970,490)" to="(1050,490)"/> </circuit> <circuit name="ChromaDecoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ChromaDecoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BURST"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CC0"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CC1"/> </comp> <comp lib="0" loc="(130,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CC2"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CC3"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(510,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PBLACK"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(550,110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(570,210)" name="Constant"/> <comp lib="0" loc="(630,130)" name="NoConnect"/> <comp lib="0" loc="(630,140)" name="NoConnect"/> <comp lib="0" loc="(630,150)" name="NoConnect"/> <comp lib="0" loc="(810,120)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="0" loc="(820,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="P"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="13"/> </comp> <comp lib="1" loc="(470,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,40)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="2" loc="(580,210)" name="Demultiplexer"> <a name="select" val="4"/> <a name="selloc" val="tr"/> </comp> <comp loc="(250,100)" name="DLatch"> <a name="label" val="cc0_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(250,170)" name="DLatch"> <a name="label" val="cc1_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(250,240)" name="DLatch"> <a name="label" val="cc2_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(250,310)" name="DLatch"> <a name="label" val="cc3_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,100)" name="DLatch"> <a name="label" val="cc0_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,170)" name="DLatch"> <a name="label" val="cc1_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,240)" name="DLatch"> <a name="label" val="cc2_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,310)" name="DLatch"> <a name="label" val="cc3_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,390)" name="DLatch"> <a name="label" val="burst_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,140)" to="(140,140)"/> <wire from="(130,190)" to="(160,190)"/> <wire from="(130,220)" to="(180,220)"/> <wire from="(130,250)" to="(180,250)"/> <wire from="(130,280)" to="(160,280)"/> <wire from="(130,40)" to="(240,40)"/> <wire from="(130,70)" to="(330,70)"/> <wire from="(140,140)" to="(140,410)"/> <wire from="(140,410)" to="(340,410)"/> <wire from="(160,120)" to="(160,190)"/> <wire from="(160,120)" to="(250,120)"/> <wire from="(160,280)" to="(160,330)"/> <wire from="(160,330)" to="(250,330)"/> <wire from="(180,190)" to="(180,220)"/> <wire from="(180,190)" to="(250,190)"/> <wire from="(180,250)" to="(180,260)"/> <wire from="(180,260)" to="(250,260)"/> <wire from="(240,100)" to="(240,170)"/> <wire from="(240,100)" to="(250,100)"/> <wire from="(240,170)" to="(240,240)"/> <wire from="(240,170)" to="(250,170)"/> <wire from="(240,240)" to="(240,310)"/> <wire from="(240,240)" to="(250,240)"/> <wire from="(240,310)" to="(250,310)"/> <wire from="(240,40)" to="(240,100)"/> <wire from="(290,120)" to="(340,120)"/> <wire from="(290,190)" to="(340,190)"/> <wire from="(290,260)" to="(340,260)"/> <wire from="(290,330)" to="(340,330)"/> <wire from="(330,100)" to="(330,170)"/> <wire from="(330,100)" to="(340,100)"/> <wire from="(330,170)" to="(330,240)"/> <wire from="(330,170)" to="(340,170)"/> <wire from="(330,240)" to="(330,310)"/> <wire from="(330,240)" to="(340,240)"/> <wire from="(330,310)" to="(330,390)"/> <wire from="(330,310)" to="(340,310)"/> <wire from="(330,390)" to="(340,390)"/> <wire from="(330,70)" to="(330,100)"/> <wire from="(380,120)" to="(530,120)"/> <wire from="(380,190)" to="(400,190)"/> <wire from="(380,260)" to="(410,260)"/> <wire from="(380,310)" to="(400,310)"/> <wire from="(380,390)" to="(400,390)"/> <wire from="(400,190)" to="(460,190)"/> <wire from="(400,30)" to="(400,190)"/> <wire from="(400,30)" to="(450,30)"/> <wire from="(400,310)" to="(400,340)"/> <wire from="(400,340)" to="(430,340)"/> <wire from="(400,360)" to="(400,390)"/> <wire from="(400,360)" to="(430,360)"/> <wire from="(410,260)" to="(470,260)"/> <wire from="(410,40)" to="(410,260)"/> <wire from="(410,40)" to="(450,40)"/> <wire from="(440,300)" to="(480,300)"/> <wire from="(440,50)" to="(440,300)"/> <wire from="(440,50)" to="(450,50)"/> <wire from="(460,130)" to="(460,190)"/> <wire from="(460,130)" to="(530,130)"/> <wire from="(470,140)" to="(470,260)"/> <wire from="(470,140)" to="(530,140)"/> <wire from="(470,350)" to="(480,350)"/> <wire from="(480,300)" to="(480,350)"/> <wire from="(480,350)" to="(500,350)"/> <wire from="(490,40)" to="(510,40)"/> <wire from="(500,150)" to="(500,350)"/> <wire from="(500,150)" to="(530,150)"/> <wire from="(550,100)" to="(550,110)"/> <wire from="(550,100)" to="(600,100)"/> <wire from="(570,210)" to="(580,210)"/> <wire from="(600,100)" to="(600,130)"/> <wire from="(620,130)" to="(630,130)"/> <wire from="(620,140)" to="(630,140)"/> <wire from="(620,150)" to="(630,150)"/> <wire from="(620,160)" to="(700,160)"/> <wire from="(620,170)" to="(730,170)"/> <wire from="(620,180)" to="(710,180)"/> <wire from="(620,190)" to="(720,190)"/> <wire from="(620,200)" to="(740,200)"/> <wire from="(620,210)" to="(710,210)"/> <wire from="(620,220)" to="(750,220)"/> <wire from="(620,230)" to="(690,230)"/> <wire from="(620,240)" to="(760,240)"/> <wire from="(620,250)" to="(680,250)"/> <wire from="(620,260)" to="(770,260)"/> <wire from="(620,270)" to="(670,270)"/> <wire from="(620,280)" to="(660,280)"/> <wire from="(660,100)" to="(660,280)"/> <wire from="(660,100)" to="(760,100)"/> <wire from="(670,110)" to="(670,270)"/> <wire from="(670,110)" to="(750,110)"/> <wire from="(680,120)" to="(680,250)"/> <wire from="(680,120)" to="(740,120)"/> <wire from="(690,140)" to="(690,230)"/> <wire from="(690,140)" to="(790,140)"/> <wire from="(700,130)" to="(700,160)"/> <wire from="(700,130)" to="(790,130)"/> <wire from="(710,150)" to="(710,180)"/> <wire from="(710,150)" to="(790,150)"/> <wire from="(710,210)" to="(710,250)"/> <wire from="(710,250)" to="(790,250)"/> <wire from="(720,190)" to="(720,230)"/> <wire from="(720,230)" to="(790,230)"/> <wire from="(730,170)" to="(730,210)"/> <wire from="(730,210)" to="(790,210)"/> <wire from="(740,120)" to="(740,160)"/> <wire from="(740,160)" to="(790,160)"/> <wire from="(740,180)" to="(740,200)"/> <wire from="(740,180)" to="(790,180)"/> <wire from="(750,110)" to="(750,190)"/> <wire from="(750,190)" to="(790,190)"/> <wire from="(750,200)" to="(750,220)"/> <wire from="(750,200)" to="(790,200)"/> <wire from="(760,100)" to="(760,170)"/> <wire from="(760,170)" to="(790,170)"/> <wire from="(760,220)" to="(760,240)"/> <wire from="(760,220)" to="(790,220)"/> <wire from="(770,240)" to="(770,260)"/> <wire from="(770,240)" to="(790,240)"/> <wire from="(810,120)" to="(820,120)"/> </circuit> <circuit name="LumaDecoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="LumaDecoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LL0"/> </comp> <comp lib="0" loc="(110,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_POUT"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LL1"/> </comp> <comp lib="0" loc="(400,80)" name="Splitter"> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(410,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LU"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(150,30)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(300,140)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,190)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,240)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,90)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(110,20)" to="(120,20)"/> <wire from="(110,260)" to="(250,260)"/> <wire from="(110,50)" to="(120,50)"/> <wire from="(120,20)" to="(120,30)"/> <wire from="(120,20)" to="(200,20)"/> <wire from="(120,30)" to="(130,30)"/> <wire from="(120,50)" to="(120,60)"/> <wire from="(120,50)" to="(210,50)"/> <wire from="(120,60)" to="(130,60)"/> <wire from="(150,30)" to="(180,30)"/> <wire from="(150,60)" to="(170,60)"/> <wire from="(170,240)" to="(260,240)"/> <wire from="(170,60)" to="(170,240)"/> <wire from="(170,60)" to="(190,60)"/> <wire from="(180,230)" to="(260,230)"/> <wire from="(180,30)" to="(180,230)"/> <wire from="(180,30)" to="(220,30)"/> <wire from="(190,190)" to="(260,190)"/> <wire from="(190,60)" to="(190,190)"/> <wire from="(190,60)" to="(260,60)"/> <wire from="(200,180)" to="(260,180)"/> <wire from="(200,20)" to="(200,180)"/> <wire from="(200,20)" to="(240,20)"/> <wire from="(210,140)" to="(260,140)"/> <wire from="(210,50)" to="(210,140)"/> <wire from="(210,50)" to="(230,50)"/> <wire from="(220,130)" to="(260,130)"/> <wire from="(220,30)" to="(220,130)"/> <wire from="(220,30)" to="(260,30)"/> <wire from="(230,50)" to="(230,90)"/> <wire from="(230,50)" to="(260,50)"/> <wire from="(230,90)" to="(260,90)"/> <wire from="(240,20)" to="(240,80)"/> <wire from="(240,20)" to="(260,20)"/> <wire from="(240,80)" to="(260,80)"/> <wire from="(250,100)" to="(250,150)"/> <wire from="(250,100)" to="(260,100)"/> <wire from="(250,150)" to="(250,200)"/> <wire from="(250,150)" to="(260,150)"/> <wire from="(250,200)" to="(250,250)"/> <wire from="(250,200)" to="(260,200)"/> <wire from="(250,250)" to="(250,260)"/> <wire from="(250,250)" to="(260,250)"/> <wire from="(300,140)" to="(310,140)"/> <wire from="(300,190)" to="(310,190)"/> <wire from="(300,240)" to="(310,240)"/> <wire from="(300,90)" to="(310,90)"/> <wire from="(330,140)" to="(340,140)"/> <wire from="(330,190)" to="(350,190)"/> <wire from="(330,240)" to="(360,240)"/> <wire from="(330,90)" to="(380,90)"/> <wire from="(340,100)" to="(340,140)"/> <wire from="(340,100)" to="(380,100)"/> <wire from="(350,110)" to="(350,190)"/> <wire from="(350,110)" to="(380,110)"/> <wire from="(360,120)" to="(360,240)"/> <wire from="(360,120)" to="(380,120)"/> <wire from="(400,80)" to="(410,80)"/> </circuit> <circuit name="Emphasis"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Emphasis"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PR"/> </comp> <comp lib="0" loc="(140,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PG"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PB"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TR"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TG"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TB"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_POUT"/> </comp> <comp lib="0" loc="(410,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TINT"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(270,110)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,170)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,230)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,170)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,170)" name="NOT Gate"> <a name="size" val="20"/> </comp> <wire from="(140,110)" to="(230,110)"/> <wire from="(140,140)" to="(210,140)"/> <wire from="(140,170)" to="(200,170)"/> <wire from="(140,220)" to="(170,220)"/> <wire from="(140,250)" to="(180,250)"/> <wire from="(140,280)" to="(190,280)"/> <wire from="(140,50)" to="(220,50)"/> <wire from="(170,120)" to="(170,220)"/> <wire from="(170,120)" to="(230,120)"/> <wire from="(180,180)" to="(180,250)"/> <wire from="(180,180)" to="(230,180)"/> <wire from="(190,240)" to="(190,280)"/> <wire from="(190,240)" to="(230,240)"/> <wire from="(200,170)" to="(200,230)"/> <wire from="(200,230)" to="(230,230)"/> <wire from="(210,140)" to="(210,170)"/> <wire from="(210,170)" to="(230,170)"/> <wire from="(220,100)" to="(220,160)"/> <wire from="(220,100)" to="(230,100)"/> <wire from="(220,160)" to="(220,220)"/> <wire from="(220,160)" to="(230,160)"/> <wire from="(220,220)" to="(230,220)"/> <wire from="(220,50)" to="(220,100)"/> <wire from="(270,110)" to="(290,110)"/> <wire from="(270,170)" to="(310,170)"/> <wire from="(270,230)" to="(290,230)"/> <wire from="(290,110)" to="(290,160)"/> <wire from="(290,160)" to="(310,160)"/> <wire from="(290,180)" to="(290,230)"/> <wire from="(290,180)" to="(310,180)"/> <wire from="(350,170)" to="(370,170)"/> <wire from="(390,170)" to="(410,170)"/> </circuit> <circuit name="Video_DAC"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Video_DAC"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SYNC"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PBLACK"/> </comp> <comp lib="0" loc="(140,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PICTURE"/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BURST"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TINT"/> </comp> <comp lib="0" loc="(140,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PZ"/> </comp> <comp lib="0" loc="(170,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LU"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(260,440)" name="Splitter"> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(640,140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="11"/> <a name="incoming" val="11"/> </comp> <comp lib="0" loc="(700,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_POUT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VidOut"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="1" loc="(230,240)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(260,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,510)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,550)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,600)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,640)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,690)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,280)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,320)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,140)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,280)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(545,65)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Instead of OR actually a direct connection of wires"/> </comp> <comp lib="8" loc="(690,320)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="L0 is the closest to GND. L10 is closest to Vdd."/> </comp> <comp loc="(300,150)" name="DLatch"> <a name="label" val="pic_out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(300,220)" name="DLatch"> <a name="label" val="black_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(300,290)" name="DLatch"> <a name="label" val="cb_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(300,80)" name="DLatch"> <a name="label" val="sync_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,140)" to="(170,140)"/> <wire from="(140,170)" to="(180,170)"/> <wire from="(140,200)" to="(200,200)"/> <wire from="(140,230)" to="(160,230)"/> <wire from="(140,260)" to="(140,350)"/> <wire from="(140,350)" to="(470,350)"/> <wire from="(140,40)" to="(290,40)"/> <wire from="(140,420)" to="(210,420)"/> <wire from="(160,230)" to="(160,250)"/> <wire from="(160,250)" to="(160,310)"/> <wire from="(160,250)" to="(190,250)"/> <wire from="(160,310)" to="(300,310)"/> <wire from="(170,100)" to="(170,140)"/> <wire from="(170,100)" to="(240,100)"/> <wire from="(170,140)" to="(170,240)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,390)" to="(250,390)"/> <wire from="(180,160)" to="(180,170)"/> <wire from="(180,160)" to="(220,160)"/> <wire from="(180,210)" to="(180,230)"/> <wire from="(180,210)" to="(270,210)"/> <wire from="(180,230)" to="(190,230)"/> <wire from="(200,180)" to="(200,200)"/> <wire from="(200,180)" to="(220,180)"/> <wire from="(210,360)" to="(210,420)"/> <wire from="(210,360)" to="(370,360)"/> <wire from="(210,420)" to="(210,470)"/> <wire from="(210,470)" to="(210,560)"/> <wire from="(210,470)" to="(360,470)"/> <wire from="(210,560)" to="(210,650)"/> <wire from="(210,560)" to="(360,560)"/> <wire from="(210,650)" to="(210,740)"/> <wire from="(210,650)" to="(360,650)"/> <wire from="(210,740)" to="(360,740)"/> <wire from="(230,240)" to="(250,240)"/> <wire from="(250,390)" to="(250,440)"/> <wire from="(250,440)" to="(260,440)"/> <wire from="(260,100)" to="(300,100)"/> <wire from="(260,170)" to="(270,170)"/> <wire from="(270,170)" to="(270,210)"/> <wire from="(270,170)" to="(300,170)"/> <wire from="(270,240)" to="(300,240)"/> <wire from="(280,400)" to="(330,400)"/> <wire from="(280,410)" to="(290,410)"/> <wire from="(280,420)" to="(310,420)"/> <wire from="(280,430)" to="(340,430)"/> <wire from="(290,150)" to="(290,220)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(290,220)" to="(290,290)"/> <wire from="(290,220)" to="(300,220)"/> <wire from="(290,290)" to="(300,290)"/> <wire from="(290,40)" to="(290,80)"/> <wire from="(290,410)" to="(290,680)"/> <wire from="(290,680)" to="(290,720)"/> <wire from="(290,680)" to="(360,680)"/> <wire from="(290,720)" to="(360,720)"/> <wire from="(290,80)" to="(290,150)"/> <wire from="(290,80)" to="(300,80)"/> <wire from="(310,420)" to="(310,590)"/> <wire from="(310,590)" to="(310,630)"/> <wire from="(310,590)" to="(360,590)"/> <wire from="(310,630)" to="(360,630)"/> <wire from="(330,400)" to="(330,500)"/> <wire from="(330,500)" to="(330,540)"/> <wire from="(330,500)" to="(360,500)"/> <wire from="(330,540)" to="(360,540)"/> <wire from="(340,100)" to="(610,100)"/> <wire from="(340,170)" to="(380,170)"/> <wire from="(340,240)" to="(390,240)"/> <wire from="(340,310)" to="(360,310)"/> <wire from="(340,410)" to="(340,430)"/> <wire from="(340,410)" to="(360,410)"/> <wire from="(340,430)" to="(340,450)"/> <wire from="(340,450)" to="(360,450)"/> <wire from="(350,430)" to="(350,440)"/> <wire from="(350,430)" to="(360,430)"/> <wire from="(350,440)" to="(410,440)"/> <wire from="(350,520)" to="(350,530)"/> <wire from="(350,520)" to="(360,520)"/> <wire from="(350,530)" to="(410,530)"/> <wire from="(350,610)" to="(350,620)"/> <wire from="(350,610)" to="(360,610)"/> <wire from="(350,620)" to="(410,620)"/> <wire from="(350,700)" to="(350,710)"/> <wire from="(350,700)" to="(360,700)"/> <wire from="(350,710)" to="(410,710)"/> <wire from="(360,270)" to="(360,310)"/> <wire from="(360,270)" to="(390,270)"/> <wire from="(360,310)" to="(360,330)"/> <wire from="(360,330)" to="(390,330)"/> <wire from="(370,290)" to="(370,360)"/> <wire from="(370,290)" to="(390,290)"/> <wire from="(380,110)" to="(380,170)"/> <wire from="(380,110)" to="(680,110)"/> <wire from="(380,300)" to="(380,310)"/> <wire from="(380,300)" to="(440,300)"/> <wire from="(380,310)" to="(390,310)"/> <wire from="(390,130)" to="(390,240)"/> <wire from="(390,130)" to="(540,130)"/> <wire from="(400,420)" to="(480,420)"/> <wire from="(400,460)" to="(410,460)"/> <wire from="(400,510)" to="(500,510)"/> <wire from="(400,550)" to="(410,550)"/> <wire from="(400,600)" to="(530,600)"/> <wire from="(400,640)" to="(410,640)"/> <wire from="(400,690)" to="(550,690)"/> <wire from="(400,730)" to="(410,730)"/> <wire from="(410,440)" to="(410,460)"/> <wire from="(410,460)" to="(490,460)"/> <wire from="(410,530)" to="(410,550)"/> <wire from="(410,550)" to="(510,550)"/> <wire from="(410,620)" to="(410,640)"/> <wire from="(410,640)" to="(540,640)"/> <wire from="(410,710)" to="(410,730)"/> <wire from="(410,730)" to="(560,730)"/> <wire from="(430,280)" to="(440,280)"/> <wire from="(430,320)" to="(460,320)"/> <wire from="(440,280)" to="(440,300)"/> <wire from="(440,280)" to="(450,280)"/> <wire from="(450,190)" to="(450,280)"/> <wire from="(450,190)" to="(620,190)"/> <wire from="(460,160)" to="(460,320)"/> <wire from="(460,160)" to="(620,160)"/> <wire from="(470,250)" to="(470,350)"/> <wire from="(470,250)" to="(620,250)"/> <wire from="(480,170)" to="(480,420)"/> <wire from="(480,170)" to="(620,170)"/> <wire from="(490,210)" to="(490,460)"/> <wire from="(490,210)" to="(620,210)"/> <wire from="(500,230)" to="(500,510)"/> <wire from="(500,230)" to="(620,230)"/> <wire from="(510,270)" to="(510,550)"/> <wire from="(510,270)" to="(570,270)"/> <wire from="(530,150)" to="(530,600)"/> <wire from="(530,150)" to="(540,150)"/> <wire from="(540,220)" to="(540,640)"/> <wire from="(540,220)" to="(620,220)"/> <wire from="(550,200)" to="(550,690)"/> <wire from="(550,200)" to="(620,200)"/> <wire from="(560,290)" to="(560,730)"/> <wire from="(560,290)" to="(570,290)"/> <wire from="(570,140)" to="(580,140)"/> <wire from="(580,140)" to="(580,180)"/> <wire from="(580,180)" to="(620,180)"/> <wire from="(600,280)" to="(610,280)"/> <wire from="(610,100)" to="(610,150)"/> <wire from="(610,150)" to="(620,150)"/> <wire from="(610,240)" to="(610,280)"/> <wire from="(610,240)" to="(620,240)"/> <wire from="(640,90)" to="(640,140)"/> <wire from="(640,90)" to="(700,90)"/> <wire from="(680,110)" to="(680,140)"/> <wire from="(680,140)" to="(700,140)"/> </circuit> <circuit name="VideoGen"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="VideoGen"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1050,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VOUT"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(130,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BURST"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SYNC"/> </comp> <comp lib="0" loc="(130,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PICTURE"/> </comp> <comp lib="0" loc="(130,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(130,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLK"/> </comp> <comp lib="0" loc="(140,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_LL"/> <a name="width" val="2"/> </comp> <comp lib="0" loc="(160,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CC"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(180,210)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(190,320)" name="Splitter"/> <comp lib="0" loc="(650,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TR"/> </comp> <comp lib="0" loc="(650,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TG"/> </comp> <comp lib="0" loc="(650,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TB"/> </comp> <comp lib="8" loc="(605,310)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Emphasis Ctrl"/> </comp> <comp lib="8" loc="(85,400)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Signal Features"/> </comp> <comp lib="8" loc="(95,275)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="&quot;Pixel&quot; Chroma/Luma"/> </comp> <comp loc="(1000,330)" name="Video_DAC"/> <comp loc="(1000,70)" name="Emphasis"/> <comp loc="(450,110)" name="ChromaDecoder"/> <comp loc="(450,300)" name="LumaDecoder"/> <comp loc="(720,90)" name="PhaseShifter"/> <wire from="(1000,330)" to="(1050,330)"/> <wire from="(1000,350)" to="(1010,350)"/> <wire from="(1000,70)" to="(1010,70)"/> <wire from="(1010,350)" to="(1010,520)"/> <wire from="(1010,350)" to="(1030,350)"/> <wire from="(1010,70)" to="(1010,300)"/> <wire from="(1030,40)" to="(1030,350)"/> <wire from="(130,110)" to="(230,110)"/> <wire from="(130,140)" to="(140,140)"/> <wire from="(130,170)" to="(150,170)"/> <wire from="(130,310)" to="(170,310)"/> <wire from="(130,340)" to="(150,340)"/> <wire from="(130,370)" to="(140,370)"/> <wire from="(130,40)" to="(500,40)"/> <wire from="(130,70)" to="(140,70)"/> <wire from="(140,130)" to="(140,140)"/> <wire from="(140,130)" to="(190,130)"/> <wire from="(140,250)" to="(180,250)"/> <wire from="(140,370)" to="(140,480)"/> <wire from="(140,480)" to="(660,480)"/> <wire from="(140,50)" to="(140,70)"/> <wire from="(140,50)" to="(490,50)"/> <wire from="(150,340)" to="(150,470)"/> <wire from="(150,470)" to="(650,470)"/> <wire from="(150,70)" to="(150,170)"/> <wire from="(150,70)" to="(480,70)"/> <wire from="(160,220)" to="(180,220)"/> <wire from="(170,150)" to="(170,310)"/> <wire from="(170,150)" to="(230,150)"/> <wire from="(170,310)" to="(170,410)"/> <wire from="(170,410)" to="(780,410)"/> <wire from="(180,210)" to="(180,220)"/> <wire from="(180,250)" to="(180,320)"/> <wire from="(180,320)" to="(190,320)"/> <wire from="(190,130)" to="(230,130)"/> <wire from="(190,90)" to="(190,130)"/> <wire from="(190,90)" to="(470,90)"/> <wire from="(200,170)" to="(230,170)"/> <wire from="(200,180)" to="(220,180)"/> <wire from="(200,190)" to="(210,190)"/> <wire from="(200,200)" to="(200,230)"/> <wire from="(200,230)" to="(230,230)"/> <wire from="(210,190)" to="(210,210)"/> <wire from="(210,210)" to="(230,210)"/> <wire from="(210,300)" to="(230,300)"/> <wire from="(210,310)" to="(220,310)"/> <wire from="(220,180)" to="(220,190)"/> <wire from="(220,190)" to="(230,190)"/> <wire from="(220,310)" to="(220,320)"/> <wire from="(220,320)" to="(230,320)"/> <wire from="(220,340)" to="(220,520)"/> <wire from="(220,340)" to="(230,340)"/> <wire from="(220,520)" to="(1010,520)"/> <wire from="(450,110)" to="(460,110)"/> <wire from="(450,130)" to="(450,150)"/> <wire from="(450,150)" to="(500,150)"/> <wire from="(450,300)" to="(530,300)"/> <wire from="(460,110)" to="(460,370)"/> <wire from="(460,370)" to="(780,370)"/> <wire from="(470,330)" to="(780,330)"/> <wire from="(470,90)" to="(470,330)"/> <wire from="(480,130)" to="(500,130)"/> <wire from="(480,70)" to="(480,130)"/> <wire from="(490,110)" to="(500,110)"/> <wire from="(490,50)" to="(490,110)"/> <wire from="(500,40)" to="(500,90)"/> <wire from="(530,300)" to="(530,450)"/> <wire from="(530,450)" to="(780,450)"/> <wire from="(650,220)" to="(750,220)"/> <wire from="(650,250)" to="(760,250)"/> <wire from="(650,280)" to="(770,280)"/> <wire from="(650,350)" to="(650,470)"/> <wire from="(650,350)" to="(780,350)"/> <wire from="(660,390)" to="(660,480)"/> <wire from="(660,390)" to="(780,390)"/> <wire from="(720,110)" to="(780,110)"/> <wire from="(720,130)" to="(780,130)"/> <wire from="(720,150)" to="(720,470)"/> <wire from="(720,470)" to="(780,470)"/> <wire from="(720,90)" to="(780,90)"/> <wire from="(730,300)" to="(1010,300)"/> <wire from="(730,300)" to="(730,430)"/> <wire from="(730,430)" to="(780,430)"/> <wire from="(750,150)" to="(750,220)"/> <wire from="(750,150)" to="(780,150)"/> <wire from="(760,170)" to="(760,250)"/> <wire from="(760,170)" to="(780,170)"/> <wire from="(760,40)" to="(1030,40)"/> <wire from="(760,40)" to="(760,70)"/> <wire from="(760,70)" to="(780,70)"/> <wire from="(770,190)" to="(770,280)"/> <wire from="(770,190)" to="(780,190)"/> </circuit> <circuit name="PICTURE_PAL"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PICTURE_PAL"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PICTURE_In"/> </comp> <comp lib="0" loc="(160,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(160,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(450,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PICTURE"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(130,90)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="From FSM"/> </comp> <comp lib="8" loc="(475,70)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="To VideoGen"/> </comp> <comp loc="(230,90)" name="DLatch"> <a name="label" val="npicture_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,90)" name="DLatch"> <a name="label" val="npicture_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,110)" to="(180,110)"/> <wire from="(160,20)" to="(330,20)"/> <wire from="(160,50)" to="(210,50)"/> <wire from="(200,110)" to="(230,110)"/> <wire from="(210,50)" to="(210,90)"/> <wire from="(210,90)" to="(230,90)"/> <wire from="(270,110)" to="(350,110)"/> <wire from="(330,20)" to="(330,90)"/> <wire from="(330,90)" to="(350,90)"/> <wire from="(390,90)" to="(450,90)"/> </circuit> <circuit name="DLatch_x4"> <a name="appearance" val="evolution"/> <a name="circuit" val="DLatch_x4"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="enable"/> </comp> <comp lib="0" loc="(150,190)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(390,150)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(390,90)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(400,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(400,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp loc="(240,130)" name="DLatch"/> <comp loc="(240,190)" name="DLatch"/> <comp loc="(240,250)" name="DLatch"/> <comp loc="(240,70)" name="DLatch"/> <wire from="(140,190)" to="(150,190)"/> <wire from="(140,50)" to="(230,50)"/> <wire from="(170,160)" to="(180,160)"/> <wire from="(170,170)" to="(200,170)"/> <wire from="(170,180)" to="(170,270)"/> <wire from="(170,270)" to="(240,270)"/> <wire from="(170,90)" to="(170,150)"/> <wire from="(170,90)" to="(240,90)"/> <wire from="(180,150)" to="(180,160)"/> <wire from="(180,150)" to="(240,150)"/> <wire from="(200,170)" to="(200,210)"/> <wire from="(200,210)" to="(240,210)"/> <wire from="(230,130)" to="(230,190)"/> <wire from="(230,130)" to="(240,130)"/> <wire from="(230,190)" to="(230,250)"/> <wire from="(230,190)" to="(240,190)"/> <wire from="(230,250)" to="(240,250)"/> <wire from="(230,50)" to="(230,70)"/> <wire from="(230,70)" to="(230,130)"/> <wire from="(230,70)" to="(240,70)"/> <wire from="(280,130)" to="(330,130)"/> <wire from="(280,150)" to="(310,150)"/> <wire from="(280,190)" to="(340,190)"/> <wire from="(280,210)" to="(360,210)"/> <wire from="(280,250)" to="(350,250)"/> <wire from="(280,270)" to="(370,270)"/> <wire from="(280,70)" to="(360,70)"/> <wire from="(280,90)" to="(320,90)"/> <wire from="(310,150)" to="(310,170)"/> <wire from="(310,170)" to="(370,170)"/> <wire from="(320,160)" to="(370,160)"/> <wire from="(320,90)" to="(320,160)"/> <wire from="(330,110)" to="(330,130)"/> <wire from="(330,110)" to="(370,110)"/> <wire from="(340,120)" to="(340,190)"/> <wire from="(340,120)" to="(370,120)"/> <wire from="(350,130)" to="(350,250)"/> <wire from="(350,130)" to="(370,130)"/> <wire from="(360,100)" to="(370,100)"/> <wire from="(360,180)" to="(360,210)"/> <wire from="(360,180)" to="(370,180)"/> <wire from="(360,70)" to="(360,100)"/> <wire from="(370,190)" to="(370,270)"/> <wire from="(390,150)" to="(400,150)"/> <wire from="(390,90)" to="(400,90)"/> </circuit> <circuit name="PPU_MUX"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PPU_MUX"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1230,460)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(1290,410)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1320,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAL_Out"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1330,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_EXT_Out"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(140,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZPRIO"/> </comp> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(160,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGC"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZCOL0"/> </comp> <comp lib="0" loc="(160,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZCOL1"/> </comp> <comp lib="0" loc="(160,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ZCOL2"/> </comp> <comp lib="0" loc="(160,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ZCOL3"/> </comp> <comp lib="0" loc="(160,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="EXT_In"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(160,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TH_MUX"/> </comp> <comp lib="0" loc="(170,670)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(230,610)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(260,450)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="1" loc="(1210,460)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(190,430)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(190,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,440)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="4"/> </comp> <comp lib="2" loc="(1160,460)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="4"/> </comp> <comp lib="2" loc="(1160,530)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(630,440)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="4"/> </comp> <comp lib="2" loc="(920,450)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="4"/> </comp> <comp loc="(1060,440)" name="DLatch_x4"> <a name="label" val="step3_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1180,510)" name="DLatch"> <a name="label" val="pal4_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,660)" name="DLatch"> <a name="label" val="tho4_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,440)" name="DLatch_x4"> <a name="label" val="step1_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,600)" name="DLatch_x4"> <a name="label" val="dir_color_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(550,220)" name="PPU_MUX_Control"/> <comp loc="(830,430)" name="DLatch_x4"> <a name="label" val="step2_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1060,450)" to="(1130,450)"/> <wire from="(1090,220)" to="(1090,520)"/> <wire from="(1090,520)" to="(1130,520)"/> <wire from="(1090,540)" to="(1090,680)"/> <wire from="(1090,540)" to="(1130,540)"/> <wire from="(1110,470)" to="(1110,610)"/> <wire from="(1110,470)" to="(1130,470)"/> <wire from="(1140,440)" to="(1140,510)"/> <wire from="(1140,510)" to="(1140,720)"/> <wire from="(1160,460)" to="(1190,460)"/> <wire from="(1160,530)" to="(1180,530)"/> <wire from="(1170,510)" to="(1180,510)"/> <wire from="(1170,90)" to="(1170,510)"/> <wire from="(1170,90)" to="(1190,90)"/> <wire from="(1210,460)" to="(1230,460)"/> <wire from="(1220,530)" to="(1260,530)"/> <wire from="(1250,420)" to="(1270,420)"/> <wire from="(1250,430)" to="(1270,430)"/> <wire from="(1250,440)" to="(1270,440)"/> <wire from="(1250,450)" to="(1270,450)"/> <wire from="(1260,460)" to="(1260,530)"/> <wire from="(1260,460)" to="(1270,460)"/> <wire from="(1290,410)" to="(1320,410)"/> <wire from="(140,240)" to="(440,240)"/> <wire from="(150,120)" to="(360,120)"/> <wire from="(150,90)" to="(270,90)"/> <wire from="(160,340)" to="(290,340)"/> <wire from="(160,390)" to="(230,390)"/> <wire from="(160,410)" to="(220,410)"/> <wire from="(160,430)" to="(170,430)"/> <wire from="(160,450)" to="(170,450)"/> <wire from="(160,550)" to="(850,550)"/> <wire from="(160,670)" to="(170,670)"/> <wire from="(160,720)" to="(1140,720)"/> <wire from="(190,430)" to="(210,430)"/> <wire from="(190,450)" to="(200,450)"/> <wire from="(190,620)" to="(210,620)"/> <wire from="(190,630)" to="(210,630)"/> <wire from="(190,640)" to="(210,640)"/> <wire from="(190,650)" to="(210,650)"/> <wire from="(190,660)" to="(220,660)"/> <wire from="(200,450)" to="(200,490)"/> <wire from="(200,490)" to="(240,490)"/> <wire from="(210,430)" to="(210,480)"/> <wire from="(210,480)" to="(240,480)"/> <wire from="(220,410)" to="(220,470)"/> <wire from="(220,470)" to="(240,470)"/> <wire from="(220,660)" to="(220,680)"/> <wire from="(220,680)" to="(290,680)"/> <wire from="(230,390)" to="(230,460)"/> <wire from="(230,460)" to="(240,460)"/> <wire from="(230,610)" to="(280,610)"/> <wire from="(260,450)" to="(280,450)"/> <wire from="(270,440)" to="(270,600)"/> <wire from="(270,440)" to="(280,440)"/> <wire from="(270,600)" to="(270,660)"/> <wire from="(270,600)" to="(280,600)"/> <wire from="(270,660)" to="(290,660)"/> <wire from="(270,90)" to="(270,440)"/> <wire from="(270,90)" to="(370,90)"/> <wire from="(290,250)" to="(290,340)"/> <wire from="(290,250)" to="(440,250)"/> <wire from="(290,340)" to="(540,340)"/> <wire from="(330,680)" to="(1090,680)"/> <wire from="(360,120)" to="(360,230)"/> <wire from="(360,120)" to="(710,120)"/> <wire from="(360,230)" to="(440,230)"/> <wire from="(370,220)" to="(440,220)"/> <wire from="(370,90)" to="(370,220)"/> <wire from="(370,90)" to="(940,90)"/> <wire from="(390,450)" to="(410,450)"/> <wire from="(390,610)" to="(1110,610)"/> <wire from="(410,260)" to="(410,450)"/> <wire from="(410,260)" to="(440,260)"/> <wire from="(410,450)" to="(600,450)"/> <wire from="(540,340)" to="(540,430)"/> <wire from="(540,430)" to="(600,430)"/> <wire from="(550,220)" to="(1090,220)"/> <wire from="(550,230)" to="(610,230)"/> <wire from="(550,240)" to="(900,240)"/> <wire from="(610,230)" to="(610,420)"/> <wire from="(630,440)" to="(650,440)"/> <wire from="(670,440)" to="(690,440)"/> <wire from="(690,440)" to="(690,660)"/> <wire from="(690,440)" to="(720,440)"/> <wire from="(690,660)" to="(1330,660)"/> <wire from="(710,120)" to="(1190,120)"/> <wire from="(710,120)" to="(710,430)"/> <wire from="(710,430)" to="(720,430)"/> <wire from="(830,440)" to="(890,440)"/> <wire from="(850,460)" to="(850,550)"/> <wire from="(850,460)" to="(890,460)"/> <wire from="(900,240)" to="(900,430)"/> <wire from="(920,450)" to="(950,450)"/> <wire from="(940,440)" to="(950,440)"/> <wire from="(940,90)" to="(1170,90)"/> <wire from="(940,90)" to="(940,440)"/> </circuit> <circuit name="PPU_MUX_Control"> <a name="appearance" val="evolution"/> <a name="circuit" val="PPU_MUX_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAL4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OCOL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1070,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(140,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZPRIO"/> </comp> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(160,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGC"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(160,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OBJC"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(170,340)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(200,380)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="1" loc="(360,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,280)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,220)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(650,230)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(730,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(900,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(685,225)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="OCOL"/> </comp> <comp lib="8" loc="(920,210)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="EXT"/> </comp> <comp loc="(1000,220)" name="DLatch"> <a name="label" val="ocol_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,260)" name="DLatch"> <a name="label" val="zprio_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,170)" name="DLatch"> <a name="label" val="bgc_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(750,270)" name="DLatch"> <a name="label" val="zcol_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1040,240)" to="(1070,240)"/> <wire from="(140,280)" to="(390,280)"/> <wire from="(150,120)" to="(740,120)"/> <wire from="(150,90)" to="(430,90)"/> <wire from="(160,340)" to="(170,340)"/> <wire from="(160,380)" to="(200,380)"/> <wire from="(190,180)" to="(190,300)"/> <wire from="(190,180)" to="(320,180)"/> <wire from="(190,310)" to="(210,310)"/> <wire from="(210,200)" to="(210,310)"/> <wire from="(210,200)" to="(320,200)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(220,350)" to="(260,350)"/> <wire from="(240,300)" to="(240,340)"/> <wire from="(240,300)" to="(320,300)"/> <wire from="(260,320)" to="(260,350)"/> <wire from="(260,320)" to="(320,320)"/> <wire from="(360,190)" to="(390,190)"/> <wire from="(360,310)" to="(550,310)"/> <wire from="(390,170)" to="(390,190)"/> <wire from="(390,170)" to="(410,170)"/> <wire from="(390,190)" to="(390,210)"/> <wire from="(390,210)" to="(440,210)"/> <wire from="(410,280)" to="(440,280)"/> <wire from="(430,260)" to="(440,260)"/> <wire from="(430,90)" to="(430,260)"/> <wire from="(430,90)" to="(990,90)"/> <wire from="(460,210)" to="(480,210)"/> <wire from="(480,190)" to="(480,210)"/> <wire from="(480,190)" to="(750,190)"/> <wire from="(480,210)" to="(510,210)"/> <wire from="(480,280)" to="(500,280)"/> <wire from="(500,230)" to="(500,280)"/> <wire from="(500,230)" to="(510,230)"/> <wire from="(550,220)" to="(620,220)"/> <wire from="(550,240)" to="(550,310)"/> <wire from="(550,240)" to="(580,240)"/> <wire from="(550,310)" to="(600,310)"/> <wire from="(600,240)" to="(620,240)"/> <wire from="(600,290)" to="(600,310)"/> <wire from="(600,290)" to="(710,290)"/> <wire from="(650,230)" to="(680,230)"/> <wire from="(680,230)" to="(680,330)"/> <wire from="(680,330)" to="(950,330)"/> <wire from="(730,290)" to="(750,290)"/> <wire from="(740,120)" to="(740,170)"/> <wire from="(740,120)" to="(990,120)"/> <wire from="(740,170)" to="(740,270)"/> <wire from="(740,170)" to="(750,170)"/> <wire from="(740,270)" to="(750,270)"/> <wire from="(790,170)" to="(820,170)"/> <wire from="(790,270)" to="(820,270)"/> <wire from="(820,170)" to="(820,210)"/> <wire from="(820,210)" to="(860,210)"/> <wire from="(820,230)" to="(820,270)"/> <wire from="(820,230)" to="(860,230)"/> <wire from="(900,220)" to="(930,220)"/> <wire from="(930,220)" to="(930,360)"/> <wire from="(930,360)" to="(1070,360)"/> <wire from="(950,240)" to="(1000,240)"/> <wire from="(950,240)" to="(950,330)"/> <wire from="(950,330)" to="(1070,330)"/> <wire from="(990,120)" to="(990,220)"/> <wire from="(990,220)" to="(1000,220)"/> </circuit> <circuit name="SPR0_Hit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="SPR0_Hit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SPR0HIT"/> </comp> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SPR0_EV"/> </comp> <comp lib="0" loc="(150,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(150,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(150,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(150,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(150,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(180,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGC"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(190,140)" name="Splitter"> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(550,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB6"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(270,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,170)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(430,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(490,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,340)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="8" loc="(380,160)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="STRIKE"/> </comp> <comp lib="8" loc="(380,325)" name="Text"> <a name="text" val="R"/> </comp> <comp lib="8" loc="(380,415)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(475,390)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="STRIKE_FF"/> </comp> <wire from="(150,170)" to="(300,170)"/> <wire from="(150,200)" to="(210,200)"/> <wire from="(150,230)" to="(230,230)"/> <wire from="(150,290)" to="(180,290)"/> <wire from="(150,310)" to="(150,320)"/> <wire from="(150,310)" to="(180,310)"/> <wire from="(150,370)" to="(260,370)"/> <wire from="(150,70)" to="(290,70)"/> <wire from="(180,140)" to="(190,140)"/> <wire from="(210,100)" to="(230,100)"/> <wire from="(210,110)" to="(220,110)"/> <wire from="(210,180)" to="(210,200)"/> <wire from="(210,180)" to="(300,180)"/> <wire from="(220,110)" to="(220,120)"/> <wire from="(220,120)" to="(230,120)"/> <wire from="(220,300)" to="(240,300)"/> <wire from="(230,190)" to="(230,230)"/> <wire from="(230,190)" to="(300,190)"/> <wire from="(260,300)" to="(470,300)"/> <wire from="(260,330)" to="(260,370)"/> <wire from="(260,330)" to="(390,330)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(280,110)" to="(280,160)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(290,70)" to="(290,150)"/> <wire from="(360,170)" to="(370,170)"/> <wire from="(370,170)" to="(370,400)"/> <wire from="(370,400)" to="(390,400)"/> <wire from="(380,350)" to="(380,360)"/> <wire from="(380,350)" to="(390,350)"/> <wire from="(380,360)" to="(440,360)"/> <wire from="(380,370)" to="(380,380)"/> <wire from="(380,370)" to="(450,370)"/> <wire from="(380,380)" to="(390,380)"/> <wire from="(430,340)" to="(450,340)"/> <wire from="(430,390)" to="(440,390)"/> <wire from="(440,360)" to="(440,390)"/> <wire from="(450,340)" to="(450,370)"/> <wire from="(450,340)" to="(490,340)"/> <wire from="(490,300)" to="(500,300)"/> <wire from="(500,300)" to="(500,330)"/> <wire from="(510,340)" to="(550,340)"/> </circuit> <circuit name="OAM_CounterBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="OAM_CounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BlockCount"/> </comp> <comp lib="0" loc="(150,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Reset"/> </comp> <comp lib="0" loc="(150,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(150,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry_in"/> </comp> <comp lib="0" loc="(150,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Clock"/> </comp> <comp lib="0" loc="(150,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(620,180)" name="Constant"/> <comp lib="0" loc="(750,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="carry_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(250,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(310,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,330)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(570,140)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(570,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(750,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(300,150)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(650,130)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="label" val="keep_ff"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(280,365)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="BlockCount can be used for the +4 counting mode."/> </comp> <comp lib="8" loc="(345,385)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="But in this case the carry circuity must be outside for the most significant bits."/> </comp> <comp lib="8" loc="(705,215)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="The value is actually stored on the FET gate (which acts as an inverter)."/> </comp> <comp loc="(360,130)" name="DLatch"> <a name="label" val="cnt_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,100)" to="(200,100)"/> <wire from="(150,200)" to="(420,200)"/> <wire from="(150,230)" to="(270,230)"/> <wire from="(150,300)" to="(520,300)"/> <wire from="(150,340)" to="(210,340)"/> <wire from="(150,40)" to="(350,40)"/> <wire from="(150,70)" to="(190,70)"/> <wire from="(190,50)" to="(190,70)"/> <wire from="(190,50)" to="(540,50)"/> <wire from="(200,60)" to="(200,100)"/> <wire from="(200,60)" to="(560,60)"/> <wire from="(210,110)" to="(210,340)"/> <wire from="(210,110)" to="(280,110)"/> <wire from="(210,340)" to="(230,340)"/> <wire from="(230,140)" to="(230,280)"/> <wire from="(230,140)" to="(270,140)"/> <wire from="(230,280)" to="(260,280)"/> <wire from="(250,160)" to="(250,180)"/> <wire from="(250,160)" to="(270,160)"/> <wire from="(250,180)" to="(340,180)"/> <wire from="(250,340)" to="(270,340)"/> <wire from="(260,250)" to="(260,280)"/> <wire from="(260,250)" to="(270,250)"/> <wire from="(260,280)" to="(260,320)"/> <wire from="(260,280)" to="(720,280)"/> <wire from="(260,320)" to="(270,320)"/> <wire from="(280,110)" to="(280,130)"/> <wire from="(300,150)" to="(360,150)"/> <wire from="(310,240)" to="(340,240)"/> <wire from="(310,330)" to="(750,330)"/> <wire from="(340,180)" to="(340,240)"/> <wire from="(340,240)" to="(450,240)"/> <wire from="(350,130)" to="(360,130)"/> <wire from="(350,40)" to="(350,130)"/> <wire from="(350,40)" to="(530,40)"/> <wire from="(400,130)" to="(440,130)"/> <wire from="(420,150)" to="(420,200)"/> <wire from="(420,150)" to="(440,150)"/> <wire from="(450,180)" to="(450,240)"/> <wire from="(450,180)" to="(550,180)"/> <wire from="(480,140)" to="(500,140)"/> <wire from="(500,100)" to="(500,140)"/> <wire from="(500,100)" to="(550,100)"/> <wire from="(520,140)" to="(520,300)"/> <wire from="(520,140)" to="(550,140)"/> <wire from="(530,160)" to="(560,160)"/> <wire from="(530,40)" to="(530,160)"/> <wire from="(540,120)" to="(560,120)"/> <wire from="(540,50)" to="(540,120)"/> <wire from="(560,120)" to="(560,130)"/> <wire from="(560,160)" to="(560,170)"/> <wire from="(560,60)" to="(560,90)"/> <wire from="(570,100)" to="(590,100)"/> <wire from="(570,140)" to="(590,140)"/> <wire from="(570,180)" to="(590,180)"/> <wire from="(590,100)" to="(590,140)"/> <wire from="(590,140)" to="(590,180)"/> <wire from="(590,140)" to="(640,140)"/> <wire from="(620,180)" to="(640,180)"/> <wire from="(700,180)" to="(720,180)"/> <wire from="(720,120)" to="(720,180)"/> <wire from="(720,120)" to="(760,120)"/> <wire from="(720,180)" to="(720,280)"/> <wire from="(720,80)" to="(720,120)"/> <wire from="(720,80)" to="(730,80)"/> <wire from="(750,80)" to="(760,80)"/> </circuit> <circuit name="OAM_CounterTest"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_CounterTest"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> <a name="width" val="2"/> </comp> <comp lib="0" loc="(130,60)" name="Clock"> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Reset"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BlockCount"/> </comp> <comp lib="0" loc="(140,450)" name="Splitter"/> <comp lib="0" loc="(240,270)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(240,300)" name="Constant"/> <comp lib="0" loc="(840,450)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(850,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="width" val="2"/> </comp> <comp loc="(390,240)" name="OAM_CounterBit"> <a name="label" val="bit0"/> </comp> <comp loc="(740,240)" name="OAM_CounterBit"> <a name="label" val="bit1"/> </comp> <wire from="(130,450)" to="(140,450)"/> <wire from="(130,60)" to="(250,60)"/> <wire from="(140,110)" to="(210,110)"/> <wire from="(140,130)" to="(200,130)"/> <wire from="(140,150)" to="(190,150)"/> <wire from="(140,170)" to="(520,170)"/> <wire from="(160,430)" to="(170,430)"/> <wire from="(160,440)" to="(550,440)"/> <wire from="(170,290)" to="(170,430)"/> <wire from="(170,290)" to="(260,290)"/> <wire from="(190,150)" to="(190,280)"/> <wire from="(190,150)" to="(530,150)"/> <wire from="(190,280)" to="(260,280)"/> <wire from="(200,130)" to="(200,260)"/> <wire from="(200,130)" to="(540,130)"/> <wire from="(200,260)" to="(260,260)"/> <wire from="(210,110)" to="(210,250)"/> <wire from="(210,110)" to="(550,110)"/> <wire from="(210,250)" to="(260,250)"/> <wire from="(240,270)" to="(260,270)"/> <wire from="(240,300)" to="(260,300)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(250,60)" to="(250,240)"/> <wire from="(250,60)" to="(600,60)"/> <wire from="(390,240)" to="(480,240)"/> <wire from="(390,260)" to="(420,260)"/> <wire from="(420,260)" to="(420,300)"/> <wire from="(420,300)" to="(610,300)"/> <wire from="(480,240)" to="(480,460)"/> <wire from="(480,460)" to="(820,460)"/> <wire from="(520,170)" to="(520,270)"/> <wire from="(520,270)" to="(610,270)"/> <wire from="(530,150)" to="(530,280)"/> <wire from="(530,280)" to="(610,280)"/> <wire from="(540,130)" to="(540,260)"/> <wire from="(540,260)" to="(610,260)"/> <wire from="(550,110)" to="(550,250)"/> <wire from="(550,250)" to="(610,250)"/> <wire from="(550,290)" to="(550,440)"/> <wire from="(550,290)" to="(610,290)"/> <wire from="(600,240)" to="(610,240)"/> <wire from="(600,60)" to="(600,240)"/> <wire from="(740,240)" to="(800,240)"/> <wire from="(800,240)" to="(800,470)"/> <wire from="(800,470)" to="(820,470)"/> <wire from="(840,450)" to="(850,450)"/> </circuit> <circuit name="OAM_MainCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_MainCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAM_x"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1090,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(120,390)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(120,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Mode4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OMOUT"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OMSTEP"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W3_Enable"/> </comp> <comp lib="0" loc="(140,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(160,120)" name="Tunnel"> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,150)" name="Tunnel"> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,180)" name="Tunnel"> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,220)" name="Tunnel"> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,280)" name="Tunnel"> <a name="label" val="in_0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,300)" name="Tunnel"> <a name="label" val="in_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,320)" name="Tunnel"> <a name="label" val="in_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,340)" name="Tunnel"> <a name="label" val="in_3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,360)" name="Tunnel"> <a name="label" val="in_4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,380)" name="Tunnel"> <a name="label" val="in_5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,400)" name="Tunnel"> <a name="label" val="in_6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,420)" name="Tunnel"> <a name="label" val="in_7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,50)" name="Tunnel"> <a name="label" val="Mode4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Mode4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Mode4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(290,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(340,170)" name="Constant"/> <comp lib="0" loc="(340,400)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(340,530)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(490,260)" name="NoConnect"/> <comp lib="0" loc="(490,390)" name="NoConnect"/> <comp lib="0" loc="(490,520)" name="NoConnect"/> <comp lib="0" loc="(520,110)" name="Tunnel"> <a name="label" val="OAM_0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,130)" name="Tunnel"> <a name="label" val="n_out0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,240)" name="Tunnel"> <a name="label" val="OAM_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,260)" name="Tunnel"> <a name="label" val="n_out1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,370)" name="Tunnel"> <a name="label" val="OAM_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,390)" name="Tunnel"> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,500)" name="Tunnel"> <a name="label" val="OAM_3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,520)" name="Tunnel"> <a name="label" val="n_out3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(560,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(560,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Reset"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,560)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="in_7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(70,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(70,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_out1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(710,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(710,270)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(710,400)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(710,530)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(860,130)" name="NoConnect"/> <comp lib="0" loc="(860,260)" name="NoConnect"/> <comp lib="0" loc="(860,390)" name="NoConnect"/> <comp lib="0" loc="(890,110)" name="Tunnel"> <a name="label" val="OAM_4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,130)" name="Tunnel"> <a name="label" val="n_out4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,240)" name="Tunnel"> <a name="label" val="OAM_5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,260)" name="Tunnel"> <a name="label" val="n_out5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,370)" name="Tunnel"> <a name="label" val="OAM_6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,390)" name="Tunnel"> <a name="label" val="n_out6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,500)" name="Tunnel"> <a name="label" val="OAM_7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(890,520)" name="Tunnel"> <a name="label" val="n_out7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(970,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OMV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(990,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAM_7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="1" loc="(130,520)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(160,440)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,520)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(170,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,530)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(240,450)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(240,50)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,600)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,190)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,320)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(630,450)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(660,600)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(360,40)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Mode4 = 0: Count +1"/> </comp> <comp lib="8" loc="(360,55)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Mode4 = 1: Count +4"/> </comp> <comp lib="8" loc="(400,635)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="External carry chain"/> </comp> <comp loc="(480,110)" name="OAM_CounterBit"> <a name="label" val="bit0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,240)" name="OAM_CounterBit"> <a name="label" val="bit1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,370)" name="OAM_CounterBit"> <a name="label" val="bit2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,500)" name="OAM_CounterBit"> <a name="label" val="bit3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(850,110)" name="OAM_CounterBit"> <a name="label" val="bit4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(850,240)" name="OAM_CounterBit"> <a name="label" val="bit5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(850,370)" name="OAM_CounterBit"> <a name="label" val="bit6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(850,500)" name="OAM_CounterBit"> <a name="label" val="bit7"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,180)" to="(1010,190)"/> <wire from="(1010,180)" to="(1070,180)"/> <wire from="(1020,190)" to="(1020,210)"/> <wire from="(1020,190)" to="(1070,190)"/> <wire from="(1030,200)" to="(1030,230)"/> <wire from="(1030,200)" to="(1070,200)"/> <wire from="(1040,210)" to="(1040,250)"/> <wire from="(1040,210)" to="(1070,210)"/> <wire from="(1050,220)" to="(1050,270)"/> <wire from="(1050,220)" to="(1070,220)"/> <wire from="(1060,230)" to="(1060,290)"/> <wire from="(1060,230)" to="(1070,230)"/> <wire from="(1070,240)" to="(1070,310)"/> <wire from="(1090,130)" to="(1090,160)"/> <wire from="(120,440)" to="(140,440)"/> <wire from="(130,520)" to="(140,520)"/> <wire from="(140,120)" to="(160,120)"/> <wire from="(140,150)" to="(160,150)"/> <wire from="(140,180)" to="(160,180)"/> <wire from="(140,220)" to="(160,220)"/> <wire from="(140,280)" to="(140,310)"/> <wire from="(140,280)" to="(180,280)"/> <wire from="(140,320)" to="(150,320)"/> <wire from="(140,330)" to="(160,330)"/> <wire from="(140,340)" to="(180,340)"/> <wire from="(140,350)" to="(170,350)"/> <wire from="(140,360)" to="(160,360)"/> <wire from="(140,370)" to="(150,370)"/> <wire from="(140,380)" to="(140,420)"/> <wire from="(140,40)" to="(200,40)"/> <wire from="(140,420)" to="(180,420)"/> <wire from="(140,70)" to="(150,70)"/> <wire from="(150,300)" to="(150,320)"/> <wire from="(150,300)" to="(180,300)"/> <wire from="(150,370)" to="(150,400)"/> <wire from="(150,400)" to="(180,400)"/> <wire from="(160,250)" to="(160,270)"/> <wire from="(160,320)" to="(160,330)"/> <wire from="(160,320)" to="(180,320)"/> <wire from="(160,360)" to="(160,380)"/> <wire from="(160,380)" to="(180,380)"/> <wire from="(160,440)" to="(170,440)"/> <wire from="(160,520)" to="(180,520)"/> <wire from="(170,350)" to="(170,360)"/> <wire from="(170,360)" to="(180,360)"/> <wire from="(170,440)" to="(170,540)"/> <wire from="(170,440)" to="(200,440)"/> <wire from="(170,540)" to="(200,540)"/> <wire from="(170,70)" to="(180,70)"/> <wire from="(180,460)" to="(180,520)"/> <wire from="(180,460)" to="(200,460)"/> <wire from="(180,520)" to="(200,520)"/> <wire from="(180,60)" to="(180,70)"/> <wire from="(180,60)" to="(200,60)"/> <wire from="(230,200)" to="(230,330)"/> <wire from="(230,200)" to="(490,200)"/> <wire from="(230,330)" to="(340,330)"/> <wire from="(230,530)" to="(240,530)"/> <wire from="(240,450)" to="(330,450)"/> <wire from="(240,50)" to="(260,50)"/> <wire from="(240,530)" to="(240,590)"/> <wire from="(240,590)" to="(250,590)"/> <wire from="(240,610)" to="(250,610)"/> <wire from="(250,590)" to="(260,590)"/> <wire from="(260,590)" to="(260,650)"/> <wire from="(260,650)" to="(600,650)"/> <wire from="(290,110)" to="(330,110)"/> <wire from="(290,130)" to="(350,130)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(290,170)" to="(310,170)"/> <wire from="(290,190)" to="(320,190)"/> <wire from="(290,220)" to="(340,220)"/> <wire from="(290,240)" to="(330,240)"/> <wire from="(290,260)" to="(350,260)"/> <wire from="(290,280)" to="(300,280)"/> <wire from="(290,300)" to="(310,300)"/> <wire from="(290,320)" to="(320,320)"/> <wire from="(290,350)" to="(340,350)"/> <wire from="(290,370)" to="(330,370)"/> <wire from="(290,390)" to="(350,390)"/> <wire from="(290,410)" to="(350,410)"/> <wire from="(290,430)" to="(300,430)"/> <wire from="(290,480)" to="(340,480)"/> <wire from="(290,500)" to="(330,500)"/> <wire from="(290,520)" to="(350,520)"/> <wire from="(290,540)" to="(350,540)"/> <wire from="(290,560)" to="(300,560)"/> <wire from="(290,600)" to="(320,600)"/> <wire from="(290,90)" to="(340,90)"/> <wire from="(300,140)" to="(300,150)"/> <wire from="(300,140)" to="(350,140)"/> <wire from="(300,270)" to="(300,280)"/> <wire from="(300,270)" to="(350,270)"/> <wire from="(300,420)" to="(300,430)"/> <wire from="(300,420)" to="(350,420)"/> <wire from="(300,550)" to="(300,560)"/> <wire from="(300,550)" to="(350,550)"/> <wire from="(310,150)" to="(310,170)"/> <wire from="(310,150)" to="(350,150)"/> <wire from="(310,280)" to="(310,300)"/> <wire from="(310,280)" to="(350,280)"/> <wire from="(320,160)" to="(320,190)"/> <wire from="(320,160)" to="(350,160)"/> <wire from="(320,290)" to="(320,320)"/> <wire from="(320,290)" to="(350,290)"/> <wire from="(320,560)" to="(320,600)"/> <wire from="(320,560)" to="(350,560)"/> <wire from="(330,110)" to="(330,120)"/> <wire from="(330,120)" to="(350,120)"/> <wire from="(330,240)" to="(330,250)"/> <wire from="(330,250)" to="(350,250)"/> <wire from="(330,370)" to="(330,380)"/> <wire from="(330,380)" to="(350,380)"/> <wire from="(330,430)" to="(330,450)"/> <wire from="(330,430)" to="(350,430)"/> <wire from="(330,500)" to="(330,510)"/> <wire from="(330,510)" to="(350,510)"/> <wire from="(340,110)" to="(350,110)"/> <wire from="(340,170)" to="(350,170)"/> <wire from="(340,220)" to="(340,240)"/> <wire from="(340,240)" to="(350,240)"/> <wire from="(340,300)" to="(340,330)"/> <wire from="(340,300)" to="(350,300)"/> <wire from="(340,350)" to="(340,370)"/> <wire from="(340,370)" to="(350,370)"/> <wire from="(340,400)" to="(350,400)"/> <wire from="(340,480)" to="(340,500)"/> <wire from="(340,500)" to="(350,500)"/> <wire from="(340,530)" to="(350,530)"/> <wire from="(340,90)" to="(340,110)"/> <wire from="(480,110)" to="(520,110)"/> <wire from="(480,120)" to="(510,120)"/> <wire from="(480,130)" to="(490,130)"/> <wire from="(480,240)" to="(520,240)"/> <wire from="(480,250)" to="(510,250)"/> <wire from="(480,260)" to="(490,260)"/> <wire from="(480,370)" to="(520,370)"/> <wire from="(480,380)" to="(510,380)"/> <wire from="(480,390)" to="(490,390)"/> <wire from="(480,500)" to="(520,500)"/> <wire from="(480,510)" to="(510,510)"/> <wire from="(480,520)" to="(490,520)"/> <wire from="(490,130)" to="(490,200)"/> <wire from="(510,120)" to="(510,130)"/> <wire from="(510,130)" to="(520,130)"/> <wire from="(510,250)" to="(510,260)"/> <wire from="(510,260)" to="(520,260)"/> <wire from="(510,380)" to="(510,390)"/> <wire from="(510,390)" to="(520,390)"/> <wire from="(510,510)" to="(510,520)"/> <wire from="(510,520)" to="(520,520)"/> <wire from="(540,550)" to="(570,550)"/> <wire from="(540,570)" to="(560,570)"/> <wire from="(540,590)" to="(550,590)"/> <wire from="(540,610)" to="(540,620)"/> <wire from="(540,620)" to="(580,620)"/> <wire from="(540,630)" to="(580,630)"/> <wire from="(550,300)" to="(560,300)"/> <wire from="(550,320)" to="(560,320)"/> <wire from="(550,340)" to="(570,340)"/> <wire from="(550,420)" to="(560,420)"/> <wire from="(550,440)" to="(550,450)"/> <wire from="(550,450)" to="(570,450)"/> <wire from="(550,460)" to="(570,460)"/> <wire from="(550,480)" to="(560,480)"/> <wire from="(550,590)" to="(550,610)"/> <wire from="(550,610)" to="(580,610)"/> <wire from="(560,190)" to="(580,190)"/> <wire from="(560,210)" to="(570,210)"/> <wire from="(560,300)" to="(560,310)"/> <wire from="(560,310)" to="(570,310)"/> <wire from="(560,320)" to="(560,330)"/> <wire from="(560,330)" to="(570,330)"/> <wire from="(560,420)" to="(560,440)"/> <wire from="(560,440)" to="(570,440)"/> <wire from="(560,470)" to="(560,480)"/> <wire from="(560,470)" to="(570,470)"/> <wire from="(560,570)" to="(560,590)"/> <wire from="(560,590)" to="(580,590)"/> <wire from="(570,200)" to="(570,210)"/> <wire from="(570,200)" to="(580,200)"/> <wire from="(570,300)" to="(600,300)"/> <wire from="(570,430)" to="(600,430)"/> <wire from="(570,550)" to="(570,580)"/> <wire from="(570,580)" to="(580,580)"/> <wire from="(580,180)" to="(600,180)"/> <wire from="(580,570)" to="(600,570)"/> <wire from="(600,180)" to="(600,300)"/> <wire from="(600,300)" to="(600,430)"/> <wire from="(600,430)" to="(600,570)"/> <wire from="(600,570)" to="(600,650)"/> <wire from="(620,190)" to="(700,190)"/> <wire from="(630,320)" to="(700,320)"/> <wire from="(630,450)" to="(700,450)"/> <wire from="(660,600)" to="(700,600)"/> <wire from="(670,110)" to="(700,110)"/> <wire from="(670,130)" to="(720,130)"/> <wire from="(670,150)" to="(720,150)"/> <wire from="(670,170)" to="(680,170)"/> <wire from="(670,220)" to="(710,220)"/> <wire from="(670,240)" to="(700,240)"/> <wire from="(670,260)" to="(720,260)"/> <wire from="(670,280)" to="(720,280)"/> <wire from="(670,300)" to="(680,300)"/> <wire from="(670,350)" to="(710,350)"/> <wire from="(670,370)" to="(700,370)"/> <wire from="(670,390)" to="(720,390)"/> <wire from="(670,410)" to="(720,410)"/> <wire from="(670,430)" to="(680,430)"/> <wire from="(670,480)" to="(710,480)"/> <wire from="(670,500)" to="(700,500)"/> <wire from="(670,520)" to="(720,520)"/> <wire from="(670,540)" to="(720,540)"/> <wire from="(670,560)" to="(680,560)"/> <wire from="(670,90)" to="(710,90)"/> <wire from="(680,160)" to="(680,170)"/> <wire from="(680,160)" to="(720,160)"/> <wire from="(680,290)" to="(680,300)"/> <wire from="(680,290)" to="(720,290)"/> <wire from="(680,420)" to="(680,430)"/> <wire from="(680,420)" to="(720,420)"/> <wire from="(680,550)" to="(680,560)"/> <wire from="(680,550)" to="(720,550)"/> <wire from="(70,500)" to="(80,500)"/> <wire from="(70,540)" to="(80,540)"/> <wire from="(700,110)" to="(700,120)"/> <wire from="(700,120)" to="(720,120)"/> <wire from="(700,170)" to="(700,190)"/> <wire from="(700,170)" to="(720,170)"/> <wire from="(700,240)" to="(700,250)"/> <wire from="(700,250)" to="(720,250)"/> <wire from="(700,300)" to="(700,320)"/> <wire from="(700,300)" to="(720,300)"/> <wire from="(700,370)" to="(700,380)"/> <wire from="(700,380)" to="(720,380)"/> <wire from="(700,430)" to="(700,450)"/> <wire from="(700,430)" to="(720,430)"/> <wire from="(700,500)" to="(700,510)"/> <wire from="(700,510)" to="(720,510)"/> <wire from="(700,560)" to="(700,600)"/> <wire from="(700,560)" to="(720,560)"/> <wire from="(710,110)" to="(720,110)"/> <wire from="(710,140)" to="(720,140)"/> <wire from="(710,220)" to="(710,240)"/> <wire from="(710,240)" to="(720,240)"/> <wire from="(710,270)" to="(720,270)"/> <wire from="(710,350)" to="(710,370)"/> <wire from="(710,370)" to="(720,370)"/> <wire from="(710,400)" to="(720,400)"/> <wire from="(710,480)" to="(710,500)"/> <wire from="(710,500)" to="(720,500)"/> <wire from="(710,530)" to="(720,530)"/> <wire from="(710,90)" to="(710,110)"/> <wire from="(80,270)" to="(160,270)"/> <wire from="(80,270)" to="(80,390)"/> <wire from="(80,390)" to="(120,390)"/> <wire from="(80,500)" to="(80,510)"/> <wire from="(80,510)" to="(90,510)"/> <wire from="(80,530)" to="(80,540)"/> <wire from="(80,530)" to="(90,530)"/> <wire from="(850,110)" to="(890,110)"/> <wire from="(850,120)" to="(880,120)"/> <wire from="(850,130)" to="(860,130)"/> <wire from="(850,240)" to="(890,240)"/> <wire from="(850,250)" to="(880,250)"/> <wire from="(850,260)" to="(860,260)"/> <wire from="(850,370)" to="(890,370)"/> <wire from="(850,380)" to="(880,380)"/> <wire from="(850,390)" to="(860,390)"/> <wire from="(850,500)" to="(890,500)"/> <wire from="(850,510)" to="(880,510)"/> <wire from="(850,520)" to="(860,520)"/> <wire from="(860,520)" to="(860,560)"/> <wire from="(860,560)" to="(970,560)"/> <wire from="(880,120)" to="(880,130)"/> <wire from="(880,130)" to="(890,130)"/> <wire from="(880,250)" to="(880,260)"/> <wire from="(880,260)" to="(890,260)"/> <wire from="(880,380)" to="(880,390)"/> <wire from="(880,390)" to="(890,390)"/> <wire from="(880,510)" to="(880,520)"/> <wire from="(880,520)" to="(890,520)"/> <wire from="(980,100)" to="(1000,100)"/> <wire from="(980,100)" to="(980,130)"/> <wire from="(980,130)" to="(1090,130)"/> <wire from="(990,170)" to="(1070,170)"/> <wire from="(990,190)" to="(1010,190)"/> <wire from="(990,210)" to="(1020,210)"/> <wire from="(990,230)" to="(1030,230)"/> <wire from="(990,250)" to="(1040,250)"/> <wire from="(990,270)" to="(1050,270)"/> <wire from="(990,290)" to="(1060,290)"/> <wire from="(990,310)" to="(1070,310)"/> </circuit> <circuit name="OAM_TempCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_TempCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ORES"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OSTEP"/> </comp> <comp lib="0" loc="(140,110)" name="Tunnel"> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(140,50)" name="Tunnel"> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(140,80)" name="Tunnel"> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Clock"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Step"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Load"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(270,110)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,140)" name="Constant"/> <comp lib="0" loc="(270,240)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,370)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,500)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(270,630)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(550,620)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TMV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(550,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAMTemp"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(550,80)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp loc="(420,210)" name="OAM_CounterBit"> <a name="label" val="bit1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,340)" name="OAM_CounterBit"> <a name="label" val="bit2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,470)" name="OAM_CounterBit"> <a name="label" val="bit3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,600)" name="OAM_CounterBit"> <a name="label" val="bit4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(420,80)" name="OAM_CounterBit"> <a name="label" val="bit0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,110)" to="(140,110)"/> <wire from="(120,50)" to="(140,50)"/> <wire from="(120,80)" to="(140,80)"/> <wire from="(190,170)" to="(190,270)"/> <wire from="(190,170)" to="(440,170)"/> <wire from="(190,270)" to="(290,270)"/> <wire from="(190,300)" to="(190,400)"/> <wire from="(190,300)" to="(440,300)"/> <wire from="(190,400)" to="(290,400)"/> <wire from="(190,430)" to="(190,530)"/> <wire from="(190,430)" to="(440,430)"/> <wire from="(190,530)" to="(290,530)"/> <wire from="(190,560)" to="(190,660)"/> <wire from="(190,560)" to="(440,560)"/> <wire from="(190,660)" to="(290,660)"/> <wire from="(240,100)" to="(290,100)"/> <wire from="(240,190)" to="(280,190)"/> <wire from="(240,210)" to="(270,210)"/> <wire from="(240,230)" to="(290,230)"/> <wire from="(240,320)" to="(280,320)"/> <wire from="(240,340)" to="(270,340)"/> <wire from="(240,360)" to="(290,360)"/> <wire from="(240,450)" to="(280,450)"/> <wire from="(240,470)" to="(270,470)"/> <wire from="(240,490)" to="(290,490)"/> <wire from="(240,580)" to="(280,580)"/> <wire from="(240,60)" to="(280,60)"/> <wire from="(240,600)" to="(270,600)"/> <wire from="(240,620)" to="(290,620)"/> <wire from="(240,80)" to="(270,80)"/> <wire from="(270,110)" to="(280,110)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(270,210)" to="(270,220)"/> <wire from="(270,220)" to="(290,220)"/> <wire from="(270,240)" to="(280,240)"/> <wire from="(270,340)" to="(270,350)"/> <wire from="(270,350)" to="(290,350)"/> <wire from="(270,370)" to="(280,370)"/> <wire from="(270,470)" to="(270,480)"/> <wire from="(270,480)" to="(290,480)"/> <wire from="(270,500)" to="(280,500)"/> <wire from="(270,600)" to="(270,610)"/> <wire from="(270,610)" to="(290,610)"/> <wire from="(270,630)" to="(280,630)"/> <wire from="(270,80)" to="(270,90)"/> <wire from="(270,90)" to="(290,90)"/> <wire from="(280,110)" to="(280,120)"/> <wire from="(280,110)" to="(290,110)"/> <wire from="(280,120)" to="(280,130)"/> <wire from="(280,120)" to="(290,120)"/> <wire from="(280,130)" to="(290,130)"/> <wire from="(280,190)" to="(280,210)"/> <wire from="(280,210)" to="(290,210)"/> <wire from="(280,240)" to="(280,250)"/> <wire from="(280,240)" to="(290,240)"/> <wire from="(280,250)" to="(280,260)"/> <wire from="(280,250)" to="(290,250)"/> <wire from="(280,260)" to="(290,260)"/> <wire from="(280,320)" to="(280,340)"/> <wire from="(280,340)" to="(290,340)"/> <wire from="(280,370)" to="(280,380)"/> <wire from="(280,370)" to="(290,370)"/> <wire from="(280,380)" to="(280,390)"/> <wire from="(280,380)" to="(290,380)"/> <wire from="(280,390)" to="(290,390)"/> <wire from="(280,450)" to="(280,470)"/> <wire from="(280,470)" to="(290,470)"/> <wire from="(280,500)" to="(280,510)"/> <wire from="(280,500)" to="(290,500)"/> <wire from="(280,510)" to="(280,520)"/> <wire from="(280,510)" to="(290,510)"/> <wire from="(280,520)" to="(290,520)"/> <wire from="(280,580)" to="(280,600)"/> <wire from="(280,60)" to="(280,80)"/> <wire from="(280,600)" to="(290,600)"/> <wire from="(280,630)" to="(280,640)"/> <wire from="(280,630)" to="(290,630)"/> <wire from="(280,640)" to="(280,650)"/> <wire from="(280,640)" to="(290,640)"/> <wire from="(280,650)" to="(290,650)"/> <wire from="(280,80)" to="(290,80)"/> <wire from="(420,100)" to="(440,100)"/> <wire from="(420,210)" to="(480,210)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(420,340)" to="(490,340)"/> <wire from="(420,360)" to="(440,360)"/> <wire from="(420,470)" to="(500,470)"/> <wire from="(420,490)" to="(440,490)"/> <wire from="(420,600)" to="(510,600)"/> <wire from="(420,620)" to="(550,620)"/> <wire from="(420,80)" to="(530,80)"/> <wire from="(440,100)" to="(440,170)"/> <wire from="(440,230)" to="(440,300)"/> <wire from="(440,360)" to="(440,430)"/> <wire from="(440,490)" to="(440,560)"/> <wire from="(480,100)" to="(480,210)"/> <wire from="(480,100)" to="(530,100)"/> <wire from="(490,110)" to="(490,340)"/> <wire from="(490,110)" to="(530,110)"/> <wire from="(500,120)" to="(500,470)"/> <wire from="(500,120)" to="(530,120)"/> <wire from="(510,130)" to="(510,600)"/> <wire from="(510,130)" to="(530,130)"/> <wire from="(530,80)" to="(530,90)"/> </circuit> <circuit name="OAM_CountersControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_CountersControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W3"/> </comp> <comp lib="0" loc="(100,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(120,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EVAL"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_D"/> </comp> <comp lib="0" loc="(120,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2_D"/> </comp> <comp lib="0" loc="(120,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OFETCH"/> </comp> <comp lib="0" loc="(120,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OMV"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(120,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TMV"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OMFG"/> </comp> <comp lib="0" loc="(130,120)" name="Tunnel"> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,150)" name="Tunnel"> <a name="label" val="n_VIS"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,180)" name="Tunnel"> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,210)" name="Tunnel"> <a name="label" val="n_EVAL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,240)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,270)" name="Tunnel"> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,300)" name="Tunnel"> <a name="label" val="H0_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,330)" name="Tunnel"> <a name="label" val="n_H2_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,360)" name="Tunnel"> <a name="label" val="OFETCH"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,390)" name="Tunnel"> <a name="label" val="OMV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,40)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,420)" name="Tunnel"> <a name="label" val="TMV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,90)" name="Tunnel"> <a name="label" val="OMFG"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,480)" name="Tunnel"> <a name="label" val="W3_Enable"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_VIS"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OFETCH"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_EVAL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TMV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMFG"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(340,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(390,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(430,800)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(430,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(470,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_H2_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_EVAL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(550,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(580,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,820)" name="Tunnel"> <a name="label" val="SPR_OV_Reg"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(640,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(650,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W3_Enable"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,170)" name="Tunnel"> <a name="label" val="OMSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,410)" name="Tunnel"> <a name="label" val="OAMCTR2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(710,210)" name="Tunnel"> <a name="label" val="OMOUT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(710,350)" name="Tunnel"> <a name="label" val="ORES"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(710,540)" name="Tunnel"> <a name="label" val="OSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(760,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(830,820)" name="Tunnel"> <a name="label" val="SPR_OV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="ORES"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAMCTR2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR_OV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR_OV_Reg"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W3_Enable"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(860,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OMOUT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(870,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ORES"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAMCTR2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SPR_OV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SPR_OV_Reg"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W3_Enable"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OMSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OMOUT"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(150,480)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,100)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,430)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,570)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,410)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(480,460)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,130)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(510,790)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(560,630)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,170)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,230)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,580)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,480)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,770)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,820)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(630,600)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(700,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(700,540)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(810,770)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(810,820)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(460,490)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="OAM2_CNT_FF"/> </comp> <comp lib="8" loc="(540,705)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Sprite Overflow"/> </comp> <comp lib="8" loc="(585,855)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="SPR_OV_REG_FF"/> </comp> <comp lib="8" loc="(685,325)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Temp Counter Control"/> </comp> <comp lib="8" loc="(690,60)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Main Counter Control"/> </comp> <comp lib="8" loc="(785,855)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="SPR_OV_FF"/> </comp> <comp loc="(260,160)" name="DLatch"> <a name="label" val="ofetch_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,340)" name="DLatch"> <a name="label" val="eval_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,420)" name="DLatch"> <a name="label" val="tmv_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,530)" name="DLatch"> <a name="label" val="nomfg_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,600)" name="DLatch"> <a name="label" val="ioam2_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,740)" name="DLatch"> <a name="label" val="omfg_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,830)" name="DLatch"> <a name="label" val="setov_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(400,80)" name="DLatch"> <a name="label" val="init_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(470,240)" name="DLatch"> <a name="label" val="omv_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,460)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,470)" to="(110,470)"/> <wire from="(100,490)" to="(100,500)"/> <wire from="(100,490)" to="(110,490)"/> <wire from="(120,120)" to="(130,120)"/> <wire from="(120,150)" to="(130,150)"/> <wire from="(120,180)" to="(130,180)"/> <wire from="(120,210)" to="(130,210)"/> <wire from="(120,240)" to="(130,240)"/> <wire from="(120,270)" to="(130,270)"/> <wire from="(120,300)" to="(130,300)"/> <wire from="(120,330)" to="(130,330)"/> <wire from="(120,360)" to="(130,360)"/> <wire from="(120,390)" to="(130,390)"/> <wire from="(120,40)" to="(130,40)"/> <wire from="(120,420)" to="(130,420)"/> <wire from="(120,90)" to="(130,90)"/> <wire from="(150,480)" to="(160,480)"/> <wire from="(190,300)" to="(760,300)"/> <wire from="(190,40)" to="(190,300)"/> <wire from="(190,40)" to="(760,40)"/> <wire from="(220,310)" to="(220,670)"/> <wire from="(220,310)" to="(760,310)"/> <wire from="(220,670)" to="(760,670)"/> <wire from="(220,680)" to="(220,880)"/> <wire from="(220,680)" to="(890,680)"/> <wire from="(220,880)" to="(890,880)"/> <wire from="(240,690)" to="(240,850)"/> <wire from="(240,690)" to="(780,690)"/> <wire from="(240,70)" to="(250,70)"/> <wire from="(240,850)" to="(320,850)"/> <wire from="(240,90)" to="(250,90)"/> <wire from="(250,160)" to="(260,160)"/> <wire from="(250,180)" to="(260,180)"/> <wire from="(280,340)" to="(290,340)"/> <wire from="(280,360)" to="(290,360)"/> <wire from="(280,420)" to="(290,420)"/> <wire from="(280,440)" to="(290,440)"/> <wire from="(280,550)" to="(290,550)"/> <wire from="(290,80)" to="(300,80)"/> <wire from="(300,110)" to="(310,110)"/> <wire from="(300,180)" to="(330,180)"/> <wire from="(300,80)" to="(300,90)"/> <wire from="(300,90)" to="(310,90)"/> <wire from="(310,230)" to="(320,230)"/> <wire from="(310,530)" to="(320,530)"/> <wire from="(310,550)" to="(320,550)"/> <wire from="(310,600)" to="(320,600)"/> <wire from="(310,620)" to="(320,620)"/> <wire from="(310,740)" to="(320,740)"/> <wire from="(310,760)" to="(320,760)"/> <wire from="(310,830)" to="(320,830)"/> <wire from="(320,200)" to="(320,230)"/> <wire from="(320,200)" to="(330,200)"/> <wire from="(330,340)" to="(340,340)"/> <wire from="(330,420)" to="(360,420)"/> <wire from="(340,340)" to="(340,360)"/> <wire from="(340,360)" to="(410,360)"/> <wire from="(340,480)" to="(350,480)"/> <wire from="(350,100)" to="(400,100)"/> <wire from="(350,440)" to="(350,480)"/> <wire from="(350,440)" to="(360,440)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,600)" to="(380,600)"/> <wire from="(360,740)" to="(390,740)"/> <wire from="(360,830)" to="(370,830)"/> <wire from="(370,190)" to="(390,190)"/> <wire from="(370,780)" to="(370,830)"/> <wire from="(370,780)" to="(450,780)"/> <wire from="(380,530)" to="(380,560)"/> <wire from="(380,560)" to="(390,560)"/> <wire from="(380,580)" to="(380,600)"/> <wire from="(380,580)" to="(390,580)"/> <wire from="(390,430)" to="(410,430)"/> <wire from="(390,740)" to="(390,770)"/> <wire from="(390,770)" to="(450,770)"/> <wire from="(390,80)" to="(400,80)"/> <wire from="(400,340)" to="(410,340)"/> <wire from="(410,190)" to="(520,190)"/> <wire from="(410,430)" to="(410,470)"/> <wire from="(410,470)" to="(440,470)"/> <wire from="(430,380)" to="(430,400)"/> <wire from="(430,380)" to="(470,380)"/> <wire from="(430,400)" to="(440,400)"/> <wire from="(430,420)" to="(430,430)"/> <wire from="(430,420)" to="(440,420)"/> <wire from="(430,430)" to="(500,430)"/> <wire from="(430,440)" to="(430,450)"/> <wire from="(430,440)" to="(490,440)"/> <wire from="(430,450)" to="(440,450)"/> <wire from="(430,570)" to="(530,570)"/> <wire from="(430,800)" to="(450,800)"/> <wire from="(430,830)" to="(440,830)"/> <wire from="(440,80)" to="(460,80)"/> <wire from="(440,810)" to="(440,830)"/> <wire from="(440,810)" to="(450,810)"/> <wire from="(450,350)" to="(470,350)"/> <wire from="(460,120)" to="(480,120)"/> <wire from="(460,240)" to="(470,240)"/> <wire from="(460,260)" to="(470,260)"/> <wire from="(460,80)" to="(460,120)"/> <wire from="(470,140)" to="(480,140)"/> <wire from="(470,350)" to="(470,380)"/> <wire from="(470,350)" to="(710,350)"/> <wire from="(480,410)" to="(490,410)"/> <wire from="(480,460)" to="(500,460)"/> <wire from="(490,410)" to="(490,440)"/> <wire from="(490,410)" to="(700,410)"/> <wire from="(500,430)" to="(500,460)"/> <wire from="(500,430)" to="(520,430)"/> <wire from="(510,130)" to="(520,130)"/> <wire from="(510,240)" to="(540,240)"/> <wire from="(510,790)" to="(520,790)"/> <wire from="(520,130)" to="(520,160)"/> <wire from="(520,160)" to="(530,160)"/> <wire from="(520,180)" to="(520,190)"/> <wire from="(520,180)" to="(530,180)"/> <wire from="(520,430)" to="(520,470)"/> <wire from="(520,430)" to="(780,430)"/> <wire from="(520,470)" to="(550,470)"/> <wire from="(520,590)" to="(530,590)"/> <wire from="(520,620)" to="(530,620)"/> <wire from="(520,640)" to="(530,640)"/> <wire from="(520,730)" to="(520,790)"/> <wire from="(520,730)" to="(550,730)"/> <wire from="(530,200)" to="(530,220)"/> <wire from="(530,200)" to="(580,200)"/> <wire from="(530,220)" to="(540,220)"/> <wire from="(540,490)" to="(550,490)"/> <wire from="(540,790)" to="(540,810)"/> <wire from="(540,790)" to="(610,790)"/> <wire from="(540,810)" to="(560,810)"/> <wire from="(550,730)" to="(550,760)"/> <wire from="(550,730)" to="(640,730)"/> <wire from="(550,760)" to="(560,760)"/> <wire from="(550,780)" to="(550,800)"/> <wire from="(550,780)" to="(560,780)"/> <wire from="(550,800)" to="(610,800)"/> <wire from="(550,830)" to="(560,830)"/> <wire from="(560,630)" to="(580,630)"/> <wire from="(570,170)" to="(580,170)"/> <wire from="(570,230)" to="(580,230)"/> <wire from="(570,580)" to="(580,580)"/> <wire from="(580,170)" to="(580,200)"/> <wire from="(580,170)" to="(640,170)"/> <wire from="(580,230)" to="(580,280)"/> <wire from="(580,280)" to="(800,280)"/> <wire from="(580,450)" to="(590,450)"/> <wire from="(580,580)" to="(580,590)"/> <wire from="(580,590)" to="(590,590)"/> <wire from="(580,610)" to="(580,630)"/> <wire from="(580,610)" to="(590,610)"/> <wire from="(590,450)" to="(590,460)"/> <wire from="(590,460)" to="(600,460)"/> <wire from="(590,480)" to="(600,480)"/> <wire from="(600,770)" to="(610,770)"/> <wire from="(600,820)" to="(610,820)"/> <wire from="(610,770)" to="(610,790)"/> <wire from="(610,800)" to="(610,820)"/> <wire from="(610,820)" to="(620,820)"/> <wire from="(630,600)" to="(650,600)"/> <wire from="(640,170)" to="(640,200)"/> <wire from="(640,170)" to="(700,170)"/> <wire from="(640,200)" to="(660,200)"/> <wire from="(640,460)" to="(650,460)"/> <wire from="(640,540)" to="(660,540)"/> <wire from="(640,730)" to="(640,770)"/> <wire from="(640,770)" to="(770,770)"/> <wire from="(650,220)" to="(660,220)"/> <wire from="(650,460)" to="(650,530)"/> <wire from="(650,530)" to="(660,530)"/> <wire from="(650,550)" to="(650,600)"/> <wire from="(650,550)" to="(660,550)"/> <wire from="(700,210)" to="(710,210)"/> <wire from="(700,540)" to="(710,540)"/> <wire from="(740,720)" to="(740,760)"/> <wire from="(740,720)" to="(800,720)"/> <wire from="(740,760)" to="(770,760)"/> <wire from="(750,790)" to="(750,810)"/> <wire from="(750,790)" to="(820,790)"/> <wire from="(750,810)" to="(770,810)"/> <wire from="(760,310)" to="(760,670)"/> <wire from="(760,40)" to="(760,300)"/> <wire from="(760,780)" to="(760,800)"/> <wire from="(760,780)" to="(770,780)"/> <wire from="(760,800)" to="(820,800)"/> <wire from="(760,830)" to="(770,830)"/> <wire from="(780,430)" to="(780,690)"/> <wire from="(800,280)" to="(800,720)"/> <wire from="(810,770)" to="(820,770)"/> <wire from="(810,820)" to="(820,820)"/> <wire from="(820,770)" to="(820,790)"/> <wire from="(820,800)" to="(820,820)"/> <wire from="(820,820)" to="(830,820)"/> <wire from="(860,110)" to="(870,110)"/> <wire from="(860,140)" to="(870,140)"/> <wire from="(860,170)" to="(870,170)"/> <wire from="(860,200)" to="(870,200)"/> <wire from="(860,230)" to="(870,230)"/> <wire from="(860,260)" to="(870,260)"/> <wire from="(860,50)" to="(870,50)"/> <wire from="(860,80)" to="(870,80)"/> <wire from="(890,680)" to="(890,880)"/> </circuit> <circuit name="OAM_CmpBitPair"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_CmpBitPair"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB_Even"/> </comp> <comp lib="0" loc="(130,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V_Even"/> </comp> <comp lib="0" loc="(130,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB_Odd"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V_Odd"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry_in"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(140,300)" name="Tunnel"> <a name="label" val="cin"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(380,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="cin"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(380,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="cin"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(590,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="cin"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(600,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="cin"/> <a name="labelfont" val="SansSerif bold 10"/> </comp> <comp lib="0" loc="(760,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OV_Odd"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="carry_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(760,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OV_Even"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(310,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,180)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,70)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(450,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,220)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(450,270)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,110)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,160)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(550,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,120)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,190)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,240)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(640,70)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(710,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(750,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(385,335)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Between pairs of bits the carry chain is preserved in direct logic."/> </comp> <comp lib="8" loc="(435,320)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Even and odd bits are combined into one circuit to compact the inverted carry chain."/> </comp> <comp loc="(180,170)" name="DLatch"> <a name="label" val="odd_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(180,80)" name="DLatch"> <a name="label" val="even_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(130,100)" to="(180,100)"/> <wire from="(130,130)" to="(250,130)"/> <wire from="(130,190)" to="(180,190)"/> <wire from="(130,220)" to="(250,220)"/> <wire from="(130,300)" to="(140,300)"/> <wire from="(130,50)" to="(170,50)"/> <wire from="(170,170)" to="(180,170)"/> <wire from="(170,50)" to="(170,80)"/> <wire from="(170,80)" to="(170,170)"/> <wire from="(170,80)" to="(180,80)"/> <wire from="(220,100)" to="(240,100)"/> <wire from="(220,190)" to="(240,190)"/> <wire from="(240,100)" to="(240,110)"/> <wire from="(240,110)" to="(270,110)"/> <wire from="(240,170)" to="(240,190)"/> <wire from="(240,170)" to="(270,170)"/> <wire from="(240,190)" to="(240,240)"/> <wire from="(240,240)" to="(270,240)"/> <wire from="(240,60)" to="(240,100)"/> <wire from="(240,60)" to="(270,60)"/> <wire from="(250,130)" to="(270,130)"/> <wire from="(250,190)" to="(250,220)"/> <wire from="(250,190)" to="(270,190)"/> <wire from="(250,220)" to="(270,220)"/> <wire from="(250,80)" to="(250,130)"/> <wire from="(250,80)" to="(270,80)"/> <wire from="(310,120)" to="(330,120)"/> <wire from="(310,180)" to="(320,180)"/> <wire from="(310,230)" to="(330,230)"/> <wire from="(310,70)" to="(390,70)"/> <wire from="(330,120)" to="(330,130)"/> <wire from="(330,130)" to="(360,130)"/> <wire from="(330,200)" to="(330,230)"/> <wire from="(330,200)" to="(390,200)"/> <wire from="(330,230)" to="(330,270)"/> <wire from="(330,270)" to="(410,270)"/> <wire from="(340,180)" to="(350,180)"/> <wire from="(350,180)" to="(350,220)"/> <wire from="(350,220)" to="(350,240)"/> <wire from="(350,220)" to="(410,220)"/> <wire from="(350,240)" to="(490,240)"/> <wire from="(360,130)" to="(360,150)"/> <wire from="(360,130)" to="(410,130)"/> <wire from="(360,150)" to="(360,260)"/> <wire from="(360,150)" to="(480,150)"/> <wire from="(360,260)" to="(410,260)"/> <wire from="(380,110)" to="(410,110)"/> <wire from="(380,290)" to="(390,290)"/> <wire from="(390,160)" to="(410,160)"/> <wire from="(390,180)" to="(390,200)"/> <wire from="(390,180)" to="(410,180)"/> <wire from="(390,200)" to="(510,200)"/> <wire from="(390,280)" to="(390,290)"/> <wire from="(390,280)" to="(410,280)"/> <wire from="(390,70)" to="(390,160)"/> <wire from="(390,70)" to="(420,70)"/> <wire from="(400,190)" to="(400,210)"/> <wire from="(400,190)" to="(460,190)"/> <wire from="(400,210)" to="(410,210)"/> <wire from="(400,230)" to="(400,250)"/> <wire from="(400,230)" to="(410,230)"/> <wire from="(400,250)" to="(460,250)"/> <wire from="(440,70)" to="(490,70)"/> <wire from="(450,120)" to="(470,120)"/> <wire from="(450,170)" to="(460,170)"/> <wire from="(450,220)" to="(480,220)"/> <wire from="(450,270)" to="(460,270)"/> <wire from="(460,170)" to="(460,190)"/> <wire from="(460,250)" to="(460,270)"/> <wire from="(470,120)" to="(470,170)"/> <wire from="(470,170)" to="(510,170)"/> <wire from="(480,120)" to="(480,150)"/> <wire from="(480,120)" to="(510,120)"/> <wire from="(480,220)" to="(480,300)"/> <wire from="(480,300)" to="(760,300)"/> <wire from="(490,100)" to="(490,150)"/> <wire from="(490,100)" to="(510,100)"/> <wire from="(490,150)" to="(510,150)"/> <wire from="(490,220)" to="(490,240)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(490,70)" to="(490,100)"/> <wire from="(550,110)" to="(560,110)"/> <wire from="(550,160)" to="(570,160)"/> <wire from="(550,210)" to="(560,210)"/> <wire from="(560,110)" to="(560,130)"/> <wire from="(560,130)" to="(610,130)"/> <wire from="(560,180)" to="(560,210)"/> <wire from="(560,180)" to="(600,180)"/> <wire from="(560,210)" to="(560,250)"/> <wire from="(560,250)" to="(610,250)"/> <wire from="(560,80)" to="(560,110)"/> <wire from="(560,80)" to="(600,80)"/> <wire from="(570,160)" to="(570,200)"/> <wire from="(570,200)" to="(570,230)"/> <wire from="(570,200)" to="(600,200)"/> <wire from="(570,230)" to="(610,230)"/> <wire from="(590,60)" to="(600,60)"/> <wire from="(600,110)" to="(610,110)"/> <wire from="(640,120)" to="(650,120)"/> <wire from="(640,190)" to="(650,190)"/> <wire from="(640,240)" to="(650,240)"/> <wire from="(640,70)" to="(650,70)"/> <wire from="(650,100)" to="(650,120)"/> <wire from="(650,100)" to="(670,100)"/> <wire from="(650,190)" to="(650,200)"/> <wire from="(650,200)" to="(670,200)"/> <wire from="(650,220)" to="(650,240)"/> <wire from="(650,220)" to="(670,220)"/> <wire from="(650,70)" to="(650,80)"/> <wire from="(650,80)" to="(670,80)"/> <wire from="(710,210)" to="(730,210)"/> <wire from="(710,90)" to="(730,90)"/> <wire from="(750,210)" to="(760,210)"/> <wire from="(750,90)" to="(760,90)"/> </circuit> <circuit name="OAM_Cmp"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Cmp"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,800)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COPY_OVF"/> </comp> <comp lib="0" loc="(150,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(150,370)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(280,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(520,610)" name="NoConnect"/> <comp lib="0" loc="(650,80)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(660,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OV"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(690,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OVZ"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,730)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(490,740)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,780)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(660,770)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(710,120)" name="Text"> <a name="text" val="OV = V - OB"/> </comp> <comp loc="(330,750)" name="DLatch"/> <comp loc="(520,230)" name="OAM_CmpBitPair"> <a name="label" val="bits23"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp loc="(520,400)" name="OAM_CmpBitPair"> <a name="label" val="bits45"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp loc="(520,570)" name="OAM_CmpBitPair"> <a name="label" val="bits67"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp loc="(520,60)" name="OAM_CmpBitPair"> <a name="label" val="bits01"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <wire from="(120,730)" to="(140,730)"/> <wire from="(130,50)" to="(290,50)"/> <wire from="(140,180)" to="(150,180)"/> <wire from="(140,370)" to="(150,370)"/> <wire from="(140,800)" to="(580,800)"/> <wire from="(160,730)" to="(460,730)"/> <wire from="(170,100)" to="(200,100)"/> <wire from="(170,110)" to="(280,110)"/> <wire from="(170,120)" to="(260,120)"/> <wire from="(170,130)" to="(250,130)"/> <wire from="(170,140)" to="(200,140)"/> <wire from="(170,150)" to="(190,150)"/> <wire from="(170,160)" to="(240,160)"/> <wire from="(170,170)" to="(230,170)"/> <wire from="(170,290)" to="(210,290)"/> <wire from="(170,300)" to="(220,300)"/> <wire from="(170,310)" to="(260,310)"/> <wire from="(170,320)" to="(270,320)"/> <wire from="(170,330)" to="(270,330)"/> <wire from="(170,340)" to="(260,340)"/> <wire from="(170,350)" to="(220,350)"/> <wire from="(170,360)" to="(180,360)"/> <wire from="(180,360)" to="(180,650)"/> <wire from="(180,650)" to="(220,650)"/> <wire from="(190,150)" to="(190,460)"/> <wire from="(190,460)" to="(300,460)"/> <wire from="(200,140)" to="(200,420)"/> <wire from="(200,420)" to="(300,420)"/> <wire from="(200,80)" to="(200,100)"/> <wire from="(200,80)" to="(300,80)"/> <wire from="(210,100)" to="(210,290)"/> <wire from="(210,100)" to="(300,100)"/> <wire from="(220,140)" to="(220,300)"/> <wire from="(220,140)" to="(300,140)"/> <wire from="(220,350)" to="(220,610)"/> <wire from="(220,610)" to="(300,610)"/> <wire from="(220,650)" to="(220,790)"/> <wire from="(220,650)" to="(300,650)"/> <wire from="(220,790)" to="(460,790)"/> <wire from="(230,170)" to="(230,630)"/> <wire from="(230,630)" to="(230,770)"/> <wire from="(230,630)" to="(300,630)"/> <wire from="(230,770)" to="(330,770)"/> <wire from="(240,160)" to="(240,590)"/> <wire from="(240,590)" to="(300,590)"/> <wire from="(250,130)" to="(250,290)"/> <wire from="(250,290)" to="(300,290)"/> <wire from="(260,120)" to="(260,250)"/> <wire from="(260,250)" to="(300,250)"/> <wire from="(260,270)" to="(260,310)"/> <wire from="(260,270)" to="(300,270)"/> <wire from="(260,340)" to="(260,480)"/> <wire from="(260,480)" to="(300,480)"/> <wire from="(270,310)" to="(270,320)"/> <wire from="(270,310)" to="(300,310)"/> <wire from="(270,330)" to="(270,440)"/> <wire from="(270,440)" to="(300,440)"/> <wire from="(280,110)" to="(280,120)"/> <wire from="(280,120)" to="(300,120)"/> <wire from="(280,160)" to="(300,160)"/> <wire from="(280,200)" to="(280,330)"/> <wire from="(280,200)" to="(530,200)"/> <wire from="(280,330)" to="(300,330)"/> <wire from="(280,370)" to="(280,500)"/> <wire from="(280,370)" to="(530,370)"/> <wire from="(280,500)" to="(300,500)"/> <wire from="(280,540)" to="(280,670)"/> <wire from="(280,540)" to="(530,540)"/> <wire from="(280,670)" to="(300,670)"/> <wire from="(290,230)" to="(290,400)"/> <wire from="(290,230)" to="(300,230)"/> <wire from="(290,400)" to="(290,570)"/> <wire from="(290,400)" to="(300,400)"/> <wire from="(290,50)" to="(290,60)"/> <wire from="(290,570)" to="(290,750)"/> <wire from="(290,570)" to="(300,570)"/> <wire from="(290,60)" to="(290,230)"/> <wire from="(290,60)" to="(300,60)"/> <wire from="(290,750)" to="(330,750)"/> <wire from="(370,770)" to="(460,770)"/> <wire from="(440,710)" to="(440,750)"/> <wire from="(440,710)" to="(620,710)"/> <wire from="(440,750)" to="(460,750)"/> <wire from="(490,740)" to="(520,740)"/> <wire from="(500,780)" to="(510,780)"/> <wire from="(510,780)" to="(510,790)"/> <wire from="(510,790)" to="(580,790)"/> <wire from="(520,100)" to="(530,100)"/> <wire from="(520,230)" to="(550,230)"/> <wire from="(520,250)" to="(560,250)"/> <wire from="(520,270)" to="(530,270)"/> <wire from="(520,400)" to="(540,400)"/> <wire from="(520,420)" to="(550,420)"/> <wire from="(520,440)" to="(530,440)"/> <wire from="(520,570)" to="(560,570)"/> <wire from="(520,590)" to="(570,590)"/> <wire from="(520,60)" to="(630,60)"/> <wire from="(520,740)" to="(520,780)"/> <wire from="(520,780)" to="(580,780)"/> <wire from="(520,80)" to="(620,80)"/> <wire from="(530,100)" to="(530,200)"/> <wire from="(530,270)" to="(530,370)"/> <wire from="(530,440)" to="(530,540)"/> <wire from="(540,400)" to="(540,740)"/> <wire from="(540,400)" to="(570,400)"/> <wire from="(540,740)" to="(580,740)"/> <wire from="(550,110)" to="(550,230)"/> <wire from="(550,110)" to="(630,110)"/> <wire from="(550,420)" to="(550,750)"/> <wire from="(550,420)" to="(580,420)"/> <wire from="(550,750)" to="(580,750)"/> <wire from="(560,120)" to="(560,250)"/> <wire from="(560,120)" to="(630,120)"/> <wire from="(560,250)" to="(620,250)"/> <wire from="(560,570)" to="(560,760)"/> <wire from="(560,570)" to="(590,570)"/> <wire from="(560,760)" to="(580,760)"/> <wire from="(570,130)" to="(570,400)"/> <wire from="(570,130)" to="(630,130)"/> <wire from="(570,590)" to="(570,770)"/> <wire from="(570,590)" to="(600,590)"/> <wire from="(570,770)" to="(580,770)"/> <wire from="(580,140)" to="(580,420)"/> <wire from="(580,140)" to="(630,140)"/> <wire from="(590,150)" to="(590,570)"/> <wire from="(590,150)" to="(630,150)"/> <wire from="(600,160)" to="(600,590)"/> <wire from="(600,160)" to="(630,160)"/> <wire from="(620,100)" to="(630,100)"/> <wire from="(620,250)" to="(620,710)"/> <wire from="(620,80)" to="(620,100)"/> <wire from="(630,60)" to="(630,90)"/> <wire from="(650,80)" to="(660,80)"/> <wire from="(660,770)" to="(690,770)"/> </circuit> <circuit name="OAM_EvalFSM"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_EvalFSM"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_F_NT"/> </comp> <comp lib="0" loc="(110,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(110,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(110,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(110,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="S_EV"/> </comp> <comp lib="0" loc="(110,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(110,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OVZ"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,40)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,70)" name="Tunnel"> <a name="label" val="n_PCLK2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(510,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(880,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COPY_OVF"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(880,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OMFG"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(880,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PD_FIFO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(880,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SPR0_EV"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(130,270)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(130,300)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(130,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(150,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(220,230)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(290,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,250)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(730,340)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(760,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(820,350)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(260,300)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="DO_COPY"/> </comp> <comp lib="8" loc="(525,240)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="COPY_STEP"/> </comp> <comp loc="(320,290)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(360,450)" name="PosedgeDFFE"> <a name="label" val="FF2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,150)" name="DLatch"> <a name="label" val="novz_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,290)" name="DLatch"> <a name="label" val="latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(380,80)" name="DLatch"> <a name="label" val="fnt_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,290)" name="DLatch"> <a name="label" val="latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,290)" name="DLatch"> <a name="label" val="latch4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(540,450)" name="PosedgeDFFE"> <a name="label" val="FF1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,290)" name="DLatch"> <a name="label" val="latch5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(620,290)" name="DLatch"> <a name="label" val="latch6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(630,100)" name="PosedgeDFFE"> <a name="label" val="FF3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,120)" to="(210,120)"/> <wire from="(110,150)" to="(130,150)"/> <wire from="(110,180)" to="(130,180)"/> <wire from="(110,210)" to="(120,210)"/> <wire from="(110,240)" to="(160,240)"/> <wire from="(110,40)" to="(110,70)"/> <wire from="(110,40)" to="(120,40)"/> <wire from="(110,70)" to="(130,70)"/> <wire from="(120,210)" to="(120,220)"/> <wire from="(120,220)" to="(160,220)"/> <wire from="(130,180)" to="(130,210)"/> <wire from="(130,210)" to="(160,210)"/> <wire from="(130,270)" to="(170,270)"/> <wire from="(130,300)" to="(160,300)"/> <wire from="(130,330)" to="(150,330)"/> <wire from="(150,150)" to="(220,150)"/> <wire from="(150,170)" to="(150,250)"/> <wire from="(150,170)" to="(380,170)"/> <wire from="(150,250)" to="(150,330)"/> <wire from="(150,250)" to="(160,250)"/> <wire from="(150,70)" to="(160,70)"/> <wire from="(160,300)" to="(160,500)"/> <wire from="(160,500)" to="(410,500)"/> <wire from="(170,270)" to="(170,460)"/> <wire from="(170,460)" to="(260,460)"/> <wire from="(190,360)" to="(190,470)"/> <wire from="(190,360)" to="(230,360)"/> <wire from="(190,470)" to="(260,470)"/> <wire from="(210,90)" to="(210,120)"/> <wire from="(210,90)" to="(250,90)"/> <wire from="(220,110)" to="(220,150)"/> <wire from="(220,110)" to="(250,110)"/> <wire from="(220,150)" to="(240,150)"/> <wire from="(220,230)" to="(230,230)"/> <wire from="(230,230)" to="(230,310)"/> <wire from="(230,310)" to="(230,360)"/> <wire from="(230,310)" to="(320,310)"/> <wire from="(230,360)" to="(780,360)"/> <wire from="(240,150)" to="(240,260)"/> <wire from="(240,260)" to="(260,260)"/> <wire from="(240,400)" to="(250,400)"/> <wire from="(250,220)" to="(250,240)"/> <wire from="(250,220)" to="(310,220)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(250,400)" to="(250,450)"/> <wire from="(250,400)" to="(430,400)"/> <wire from="(250,450)" to="(260,450)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(300,200)" to="(310,200)"/> <wire from="(300,250)" to="(310,250)"/> <wire from="(310,200)" to="(310,220)"/> <wire from="(310,220)" to="(370,220)"/> <wire from="(310,250)" to="(310,290)"/> <wire from="(310,250)" to="(430,250)"/> <wire from="(310,290)" to="(320,290)"/> <wire from="(320,100)" to="(380,100)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(360,460)" to="(400,460)"/> <wire from="(370,150)" to="(380,150)"/> <wire from="(370,220)" to="(370,290)"/> <wire from="(370,220)" to="(490,220)"/> <wire from="(370,290)" to="(380,290)"/> <wire from="(370,80)" to="(380,80)"/> <wire from="(400,460)" to="(400,470)"/> <wire from="(400,470)" to="(440,470)"/> <wire from="(410,460)" to="(410,500)"/> <wire from="(410,460)" to="(440,460)"/> <wire from="(420,170)" to="(450,170)"/> <wire from="(420,310)" to="(430,310)"/> <wire from="(420,80)" to="(450,80)"/> <wire from="(430,250)" to="(430,290)"/> <wire from="(430,250)" to="(550,250)"/> <wire from="(430,290)" to="(440,290)"/> <wire from="(430,310)" to="(430,350)"/> <wire from="(430,310)" to="(440,310)"/> <wire from="(430,350)" to="(690,350)"/> <wire from="(430,400)" to="(430,450)"/> <wire from="(430,450)" to="(440,450)"/> <wire from="(450,110)" to="(530,110)"/> <wire from="(450,120)" to="(450,170)"/> <wire from="(450,120)" to="(530,120)"/> <wire from="(450,80)" to="(450,110)"/> <wire from="(480,310)" to="(500,310)"/> <wire from="(490,220)" to="(490,290)"/> <wire from="(490,220)" to="(610,220)"/> <wire from="(490,290)" to="(500,290)"/> <wire from="(510,90)" to="(520,90)"/> <wire from="(520,100)" to="(530,100)"/> <wire from="(520,90)" to="(520,100)"/> <wire from="(540,310)" to="(550,310)"/> <wire from="(540,450)" to="(850,450)"/> <wire from="(550,250)" to="(550,290)"/> <wire from="(550,290)" to="(560,290)"/> <wire from="(550,310)" to="(550,340)"/> <wire from="(550,310)" to="(560,310)"/> <wire from="(550,340)" to="(690,340)"/> <wire from="(600,310)" to="(620,310)"/> <wire from="(610,220)" to="(610,290)"/> <wire from="(610,290)" to="(620,290)"/> <wire from="(630,100)" to="(690,100)"/> <wire from="(660,310)" to="(680,310)"/> <wire from="(680,310)" to="(680,330)"/> <wire from="(680,330)" to="(690,330)"/> <wire from="(690,40)" to="(690,100)"/> <wire from="(690,40)" to="(880,40)"/> <wire from="(730,340)" to="(740,340)"/> <wire from="(760,340)" to="(770,340)"/> <wire from="(770,100)" to="(770,340)"/> <wire from="(770,100)" to="(880,100)"/> <wire from="(770,340)" to="(780,340)"/> <wire from="(820,350)" to="(830,350)"/> <wire from="(830,130)" to="(830,350)"/> <wire from="(830,130)" to="(880,130)"/> <wire from="(850,70)" to="(850,450)"/> <wire from="(850,70)" to="(880,70)"/> </circuit> <circuit name="OAM_Address"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Address"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(140,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(210,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OAM_x"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(210,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OAMTemp"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(220,220)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(270,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(270,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(380,220)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(380,270)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(430,180)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(510,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAM8"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(510,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_OAM_x"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(200,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(210,50)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,90)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,180)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(360,270)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="8" loc="(165,75)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="H0''"/> </comp> <comp lib="8" loc="(325,85)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="OAP"/> </comp> <comp lib="8" loc="(575,140)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OAM8 = 1: Use Temp OAM"/> </comp> <comp lib="8" loc="(575,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OAM8 = 0: Use Main OAM"/> </comp> <wire from="(140,100)" to="(180,100)"/> <wire from="(140,40)" to="(180,40)"/> <wire from="(140,70)" to="(150,70)"/> <wire from="(150,60)" to="(150,70)"/> <wire from="(150,60)" to="(180,60)"/> <wire from="(200,100)" to="(240,100)"/> <wire from="(210,220)" to="(220,220)"/> <wire from="(210,280)" to="(330,280)"/> <wire from="(210,50)" to="(230,50)"/> <wire from="(230,50)" to="(230,80)"/> <wire from="(230,80)" to="(240,80)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(240,150)" to="(250,150)"/> <wire from="(240,160)" to="(250,160)"/> <wire from="(240,170)" to="(250,170)"/> <wire from="(240,180)" to="(250,180)"/> <wire from="(240,190)" to="(250,190)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(240,210)" to="(250,210)"/> <wire from="(270,130)" to="(360,130)"/> <wire from="(270,160)" to="(300,160)"/> <wire from="(280,90)" to="(290,90)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(290,90)" to="(290,110)"/> <wire from="(290,90)" to="(310,90)"/> <wire from="(300,160)" to="(300,260)"/> <wire from="(300,260)" to="(330,260)"/> <wire from="(320,110)" to="(340,110)"/> <wire from="(340,110)" to="(340,250)"/> <wire from="(340,110)" to="(510,110)"/> <wire from="(360,130)" to="(360,220)"/> <wire from="(360,220)" to="(380,220)"/> <wire from="(360,270)" to="(380,270)"/> <wire from="(400,190)" to="(410,190)"/> <wire from="(400,200)" to="(410,200)"/> <wire from="(400,210)" to="(410,210)"/> <wire from="(400,220)" to="(410,220)"/> <wire from="(400,230)" to="(410,230)"/> <wire from="(400,240)" to="(410,240)"/> <wire from="(400,250)" to="(410,250)"/> <wire from="(400,260)" to="(410,260)"/> <wire from="(430,180)" to="(450,180)"/> <wire from="(470,180)" to="(480,180)"/> <wire from="(480,40)" to="(480,180)"/> <wire from="(480,40)" to="(510,40)"/> </circuit> <circuit name="OAM_SprOV_Flag"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_SprOV_Flag"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(160,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SPR_OV_Reg"/> </comp> <comp lib="0" loc="(160,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(440,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB5"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(250,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(280,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(400,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,130)" to="(380,130)"/> <wire from="(160,70)" to="(210,70)"/> <wire from="(180,90)" to="(180,100)"/> <wire from="(180,90)" to="(210,90)"/> <wire from="(250,80)" to="(260,80)"/> <wire from="(280,80)" to="(360,80)"/> <wire from="(380,80)" to="(390,80)"/> <wire from="(390,80)" to="(390,120)"/> <wire from="(400,130)" to="(440,130)"/> </circuit> <circuit name="OAM_Eval"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Eval"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,750)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_F_NT"/> </comp> <comp lib="0" loc="(110,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="S_EV"/> </comp> <comp lib="0" loc="(1110,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_OAMx"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1110,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAM8"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OAMCTR2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SPR_OV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OV"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1110,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PD_FIFO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SPR0_EV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1110,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB5"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(130,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EVAL"/> </comp> <comp lib="0" loc="(130,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(130,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(130,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_D"/> </comp> <comp lib="0" loc="(130,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2_D"/> </comp> <comp lib="0" loc="(130,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OFETCH"/> </comp> <comp lib="0" loc="(130,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W3"/> </comp> <comp lib="0" loc="(130,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(370,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R2"/> </comp> <comp lib="0" loc="(380,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(380,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(380,620)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(380,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp loc="(1080,200)" name="OAM_Address"/> <comp loc="(1080,480)" name="OAM_EvalFSM"/> <comp loc="(430,200)" name="OAM_CountersControl"/> <comp loc="(760,200)" name="OAM_MainCounter"/> <comp loc="(760,420)" name="OAM_TempCounter"/> <comp loc="(760,580)" name="OAM_Cmp"/> <comp loc="(760,90)" name="OAM_SprOV_Flag"/> <wire from="(1080,200)" to="(1110,200)"/> <wire from="(1080,220)" to="(1110,220)"/> <wire from="(1080,480)" to="(1110,480)"/> <wire from="(1080,500)" to="(1110,500)"/> <wire from="(1080,520)" to="(1100,520)"/> <wire from="(1080,540)" to="(1090,540)"/> <wire from="(1090,540)" to="(1090,730)"/> <wire from="(110,750)" to="(120,750)"/> <wire from="(110,770)" to="(820,770)"/> <wire from="(1100,520)" to="(1100,720)"/> <wire from="(120,750)" to="(120,780)"/> <wire from="(120,780)" to="(800,780)"/> <wire from="(130,170)" to="(530,170)"/> <wire from="(130,240)" to="(200,240)"/> <wire from="(130,260)" to="(150,260)"/> <wire from="(130,280)" to="(140,280)"/> <wire from="(130,300)" to="(210,300)"/> <wire from="(130,320)" to="(210,320)"/> <wire from="(130,340)" to="(140,340)"/> <wire from="(130,360)" to="(210,360)"/> <wire from="(130,380)" to="(210,380)"/> <wire from="(130,400)" to="(210,400)"/> <wire from="(130,460)" to="(210,460)"/> <wire from="(130,480)" to="(190,480)"/> <wire from="(130,50)" to="(510,50)"/> <wire from="(130,80)" to="(180,80)"/> <wire from="(140,180)" to="(140,280)"/> <wire from="(140,180)" to="(520,180)"/> <wire from="(140,280)" to="(210,280)"/> <wire from="(140,340)" to="(140,740)"/> <wire from="(140,340)" to="(210,340)"/> <wire from="(140,740)" to="(810,740)"/> <wire from="(150,260)" to="(150,750)"/> <wire from="(150,260)" to="(210,260)"/> <wire from="(150,750)" to="(850,750)"/> <wire from="(160,220)" to="(160,730)"/> <wire from="(160,220)" to="(210,220)"/> <wire from="(160,730)" to="(520,730)"/> <wire from="(170,420)" to="(170,710)"/> <wire from="(170,420)" to="(210,420)"/> <wire from="(170,710)" to="(780,710)"/> <wire from="(180,440)" to="(180,700)"/> <wire from="(180,440)" to="(210,440)"/> <wire from="(180,60)" to="(180,80)"/> <wire from="(180,60)" to="(200,60)"/> <wire from="(180,700)" to="(770,700)"/> <wire from="(190,110)" to="(190,480)"/> <wire from="(190,110)" to="(540,110)"/> <wire from="(190,480)" to="(210,480)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(200,240)" to="(200,760)"/> <wire from="(200,240)" to="(210,240)"/> <wire from="(200,60)" to="(200,200)"/> <wire from="(200,60)" to="(500,60)"/> <wire from="(200,760)" to="(830,760)"/> <wire from="(370,90)" to="(540,90)"/> <wire from="(380,560)" to="(530,560)"/> <wire from="(380,600)" to="(540,600)"/> <wire from="(380,620)" to="(540,620)"/> <wire from="(380,640)" to="(540,640)"/> <wire from="(430,200)" to="(480,200)"/> <wire from="(430,220)" to="(490,220)"/> <wire from="(430,240)" to="(470,240)"/> <wire from="(430,260)" to="(460,260)"/> <wire from="(430,280)" to="(490,280)"/> <wire from="(430,300)" to="(440,300)"/> <wire from="(430,320)" to="(450,320)"/> <wire from="(430,340)" to="(480,340)"/> <wire from="(440,300)" to="(440,390)"/> <wire from="(440,390)" to="(1110,390)"/> <wire from="(440,390)" to="(440,540)"/> <wire from="(440,540)" to="(800,540)"/> <wire from="(450,130)" to="(450,320)"/> <wire from="(450,130)" to="(540,130)"/> <wire from="(460,260)" to="(460,460)"/> <wire from="(460,460)" to="(540,460)"/> <wire from="(470,240)" to="(470,440)"/> <wire from="(470,440)" to="(540,440)"/> <wire from="(480,200)" to="(480,260)"/> <wire from="(480,260)" to="(540,260)"/> <wire from="(480,300)" to="(480,340)"/> <wire from="(480,300)" to="(540,300)"/> <wire from="(490,220)" to="(490,240)"/> <wire from="(490,240)" to="(540,240)"/> <wire from="(490,280)" to="(490,370)"/> <wire from="(490,370)" to="(1110,370)"/> <wire from="(500,420)" to="(540,420)"/> <wire from="(500,60)" to="(500,420)"/> <wire from="(500,60)" to="(540,60)"/> <wire from="(510,50)" to="(510,580)"/> <wire from="(510,50)" to="(830,50)"/> <wire from="(510,580)" to="(540,580)"/> <wire from="(520,180)" to="(520,210)"/> <wire from="(520,180)" to="(840,180)"/> <wire from="(520,210)" to="(530,210)"/> <wire from="(520,220)" to="(520,730)"/> <wire from="(520,220)" to="(540,220)"/> <wire from="(520,730)" to="(1090,730)"/> <wire from="(530,170)" to="(530,200)"/> <wire from="(530,170)" to="(810,170)"/> <wire from="(530,200)" to="(540,200)"/> <wire from="(530,210)" to="(530,280)"/> <wire from="(530,280)" to="(540,280)"/> <wire from="(530,320)" to="(530,560)"/> <wire from="(530,320)" to="(540,320)"/> <wire from="(530,660)" to="(530,720)"/> <wire from="(530,660)" to="(540,660)"/> <wire from="(530,720)" to="(1100,720)"/> <wire from="(760,200)" to="(800,200)"/> <wire from="(760,220)" to="(780,220)"/> <wire from="(760,420)" to="(800,420)"/> <wire from="(760,440)" to="(770,440)"/> <wire from="(760,580)" to="(790,580)"/> <wire from="(760,600)" to="(760,640)"/> <wire from="(760,640)" to="(860,640)"/> <wire from="(760,90)" to="(1110,90)"/> <wire from="(770,440)" to="(770,700)"/> <wire from="(780,220)" to="(780,710)"/> <wire from="(790,190)" to="(790,320)"/> <wire from="(790,190)" to="(860,190)"/> <wire from="(790,320)" to="(850,320)"/> <wire from="(790,430)" to="(1110,430)"/> <wire from="(790,430)" to="(790,580)"/> <wire from="(800,200)" to="(800,260)"/> <wire from="(800,260)" to="(860,260)"/> <wire from="(800,280)" to="(800,420)"/> <wire from="(800,280)" to="(860,280)"/> <wire from="(800,540)" to="(800,580)"/> <wire from="(800,580)" to="(860,580)"/> <wire from="(800,590)" to="(800,780)"/> <wire from="(800,590)" to="(820,590)"/> <wire from="(810,170)" to="(810,240)"/> <wire from="(810,240)" to="(860,240)"/> <wire from="(810,300)" to="(810,520)"/> <wire from="(810,300)" to="(850,300)"/> <wire from="(810,520)" to="(810,740)"/> <wire from="(810,520)" to="(860,520)"/> <wire from="(820,500)" to="(820,590)"/> <wire from="(820,500)" to="(860,500)"/> <wire from="(820,600)" to="(820,770)"/> <wire from="(820,600)" to="(860,600)"/> <wire from="(830,480)" to="(860,480)"/> <wire from="(830,50)" to="(830,480)"/> <wire from="(830,540)" to="(830,760)"/> <wire from="(830,540)" to="(860,540)"/> <wire from="(840,180)" to="(840,620)"/> <wire from="(840,620)" to="(860,620)"/> <wire from="(850,220)" to="(850,300)"/> <wire from="(850,220)" to="(860,220)"/> <wire from="(850,320)" to="(850,560)"/> <wire from="(850,560)" to="(850,750)"/> <wire from="(850,560)" to="(860,560)"/> <wire from="(860,190)" to="(860,200)"/> </circuit> <circuit name="PosedgeDFFE"> <a name="appearance" val="evolution"/> <a name="circuit" val="PosedgeDFFE"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EN"/> </comp> <comp lib="0" loc="(370,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_Q"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(370,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Q"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,70)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="4" loc="(260,50)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> </comp> <wire from="(130,110)" to="(240,110)"/> <wire from="(130,50)" to="(160,50)"/> <wire from="(130,80)" to="(170,80)"/> <wire from="(160,50)" to="(160,60)"/> <wire from="(160,60)" to="(170,60)"/> <wire from="(210,70)" to="(220,70)"/> <wire from="(220,100)" to="(250,100)"/> <wire from="(220,70)" to="(220,100)"/> <wire from="(240,60)" to="(240,110)"/> <wire from="(240,60)" to="(250,60)"/> <wire from="(310,100)" to="(370,100)"/> <wire from="(310,60)" to="(370,60)"/> </circuit> <circuit name="PosedgeDFFE_Real"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PosedgeDFFE_Real"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(130,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLK"/> </comp> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EN"/> </comp> <comp lib="0" loc="(440,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_Q"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(440,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Q"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(210,60)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,120)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(370,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(320,80)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(345,60)" name="Text"> <a name="font" val="SansSerif bold 13"/> <a name="text" val="FF"/> </comp> <wire from="(130,110)" to="(230,110)"/> <wire from="(130,50)" to="(150,50)"/> <wire from="(130,80)" to="(140,80)"/> <wire from="(140,70)" to="(140,80)"/> <wire from="(140,70)" to="(170,70)"/> <wire from="(150,30)" to="(150,50)"/> <wire from="(150,30)" to="(300,30)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(210,60)" to="(240,60)"/> <wire from="(240,60)" to="(240,100)"/> <wire from="(250,110)" to="(260,110)"/> <wire from="(260,70)" to="(260,110)"/> <wire from="(260,70)" to="(290,70)"/> <wire from="(280,120)" to="(320,120)"/> <wire from="(280,90)" to="(280,120)"/> <wire from="(280,90)" to="(290,90)"/> <wire from="(300,30)" to="(300,60)"/> <wire from="(320,120)" to="(320,140)"/> <wire from="(320,120)" to="(350,120)"/> <wire from="(320,140)" to="(400,140)"/> <wire from="(320,80)" to="(350,80)"/> <wire from="(370,120)" to="(390,120)"/> <wire from="(370,80)" to="(390,80)"/> <wire from="(390,80)" to="(390,120)"/> <wire from="(390,80)" to="(410,80)"/> <wire from="(400,70)" to="(400,140)"/> <wire from="(400,70)" to="(440,70)"/> <wire from="(410,120)" to="(440,120)"/> <wire from="(410,80)" to="(410,120)"/> </circuit> <circuit name="OAM_Block"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Block"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OAM8"/> </comp> <comp lib="0" loc="(150,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(150,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(150,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(150,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OAMCTR2"/> </comp> <comp lib="0" loc="(150,510)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(150,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(150,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(150,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W4"/> </comp> <comp lib="0" loc="(150,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4"/> </comp> <comp lib="0" loc="(150,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(180,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_OAMx"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(810,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(810,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(820,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OFETCH"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(380,670)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,670)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(365,695)" name="Text"> <a name="font" val="SansSerif bold 9"/> <a name="text" val="Located next to RW Decoder"/> </comp> <comp loc="(480,110)" name="OAM_AddressDecoder"/> <comp loc="(480,430)" name="OAM_Control"/> <comp loc="(780,450)" name="OAM_Buffer"/> <comp loc="(780,70)" name="OAM"/> <wire from="(150,130)" to="(260,130)"/> <wire from="(150,30)" to="(210,30)"/> <wire from="(150,420)" to="(190,420)"/> <wire from="(150,450)" to="(220,450)"/> <wire from="(150,480)" to="(210,480)"/> <wire from="(150,510)" to="(200,510)"/> <wire from="(150,540)" to="(200,540)"/> <wire from="(150,570)" to="(230,570)"/> <wire from="(150,60)" to="(200,60)"/> <wire from="(150,600)" to="(240,600)"/> <wire from="(150,630)" to="(290,630)"/> <wire from="(150,660)" to="(250,660)"/> <wire from="(180,110)" to="(260,110)"/> <wire from="(190,420)" to="(190,710)"/> <wire from="(190,420)" to="(230,420)"/> <wire from="(190,710)" to="(480,710)"/> <wire from="(190,720)" to="(550,720)"/> <wire from="(200,400)" to="(240,400)"/> <wire from="(200,510)" to="(200,530)"/> <wire from="(200,530)" to="(260,530)"/> <wire from="(200,540)" to="(200,550)"/> <wire from="(200,550)" to="(260,550)"/> <wire from="(200,60)" to="(200,400)"/> <wire from="(210,150)" to="(210,390)"/> <wire from="(210,150)" to="(260,150)"/> <wire from="(210,30)" to="(210,150)"/> <wire from="(210,390)" to="(250,390)"/> <wire from="(210,480)" to="(210,510)"/> <wire from="(210,510)" to="(260,510)"/> <wire from="(220,450)" to="(220,490)"/> <wire from="(220,490)" to="(260,490)"/> <wire from="(230,420)" to="(230,470)"/> <wire from="(230,470)" to="(260,470)"/> <wire from="(230,570)" to="(230,700)"/> <wire from="(230,700)" to="(540,700)"/> <wire from="(240,400)" to="(240,450)"/> <wire from="(240,450)" to="(260,450)"/> <wire from="(240,570)" to="(240,600)"/> <wire from="(240,570)" to="(260,570)"/> <wire from="(250,390)" to="(250,430)"/> <wire from="(250,390)" to="(550,390)"/> <wire from="(250,430)" to="(260,430)"/> <wire from="(250,590)" to="(250,660)"/> <wire from="(250,590)" to="(260,590)"/> <wire from="(250,660)" to="(250,680)"/> <wire from="(250,680)" to="(340,680)"/> <wire from="(290,630)" to="(290,660)"/> <wire from="(290,660)" to="(340,660)"/> <wire from="(380,670)" to="(390,670)"/> <wire from="(410,670)" to="(530,670)"/> <wire from="(480,110)" to="(560,110)"/> <wire from="(480,130)" to="(560,130)"/> <wire from="(480,150)" to="(560,150)"/> <wire from="(480,170)" to="(560,170)"/> <wire from="(480,190)" to="(560,190)"/> <wire from="(480,210)" to="(560,210)"/> <wire from="(480,230)" to="(560,230)"/> <wire from="(480,250)" to="(560,250)"/> <wire from="(480,270)" to="(560,270)"/> <wire from="(480,310)" to="(520,310)"/> <wire from="(480,430)" to="(510,430)"/> <wire from="(480,450)" to="(500,450)"/> <wire from="(480,470)" to="(490,470)"/> <wire from="(480,490)" to="(480,710)"/> <wire from="(480,490)" to="(560,490)"/> <wire from="(490,470)" to="(490,530)"/> <wire from="(490,530)" to="(560,530)"/> <wire from="(500,450)" to="(500,510)"/> <wire from="(500,510)" to="(560,510)"/> <wire from="(510,430)" to="(510,640)"/> <wire from="(510,640)" to="(820,640)"/> <wire from="(520,380)" to="(520,590)"/> <wire from="(520,380)" to="(810,380)"/> <wire from="(520,590)" to="(560,590)"/> <wire from="(520,70)" to="(520,310)"/> <wire from="(520,70)" to="(560,70)"/> <wire from="(530,360)" to="(800,360)"/> <wire from="(530,470)" to="(530,670)"/> <wire from="(530,470)" to="(560,470)"/> <wire from="(530,90)" to="(530,360)"/> <wire from="(530,90)" to="(560,90)"/> <wire from="(540,550)" to="(540,700)"/> <wire from="(540,550)" to="(560,550)"/> <wire from="(550,390)" to="(550,450)"/> <wire from="(550,450)" to="(560,450)"/> <wire from="(550,570)" to="(550,720)"/> <wire from="(550,570)" to="(560,570)"/> <wire from="(780,450)" to="(810,450)"/> <wire from="(780,470)" to="(810,470)"/> <wire from="(780,490)" to="(800,490)"/> <wire from="(780,70)" to="(810,70)"/> <wire from="(800,360)" to="(800,490)"/> <wire from="(810,70)" to="(810,380)"/> </circuit> <circuit name="OAM_AddressDecoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_AddressDecoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,490)" name="Constant"/> <comp lib="0" loc="(140,810)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(180,650)" name="Splitter"> <a name="appear" val="right"/> <a name="bit0" val="31"/> <a name="bit1" val="30"/> <a name="bit10" val="21"/> <a name="bit11" val="20"/> <a name="bit12" val="19"/> <a name="bit13" val="18"/> <a name="bit14" val="17"/> <a name="bit15" val="16"/> <a name="bit16" val="15"/> <a name="bit17" val="14"/> <a name="bit18" val="13"/> <a name="bit19" val="12"/> <a name="bit2" val="29"/> <a name="bit20" val="11"/> <a name="bit21" val="10"/> <a name="bit22" val="9"/> <a name="bit23" val="8"/> <a name="bit24" val="7"/> <a name="bit25" val="6"/> <a name="bit26" val="5"/> <a name="bit27" val="4"/> <a name="bit28" val="3"/> <a name="bit29" val="2"/> <a name="bit3" val="28"/> <a name="bit30" val="1"/> <a name="bit31" val="0"/> <a name="bit4" val="27"/> <a name="bit5" val="26"/> <a name="bit6" val="25"/> <a name="bit7" val="24"/> <a name="bit8" val="23"/> <a name="bit9" val="22"/> <a name="facing" val="west"/> <a name="fanout" val="32"/> <a name="incoming" val="32"/> </comp> <comp lib="0" loc="(190,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_OAMx"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,210)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(190,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="UseTempOAM"/> </comp> <comp lib="0" loc="(240,210)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(270,810)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="32"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(270,870)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="5"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(520,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW4"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,480)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW6"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROW7"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,660)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ROWZ"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(520,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL_0_31"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(520,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="COL"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="1" loc="(280,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,730)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> <a name="width" val="32"/> </comp> <comp lib="1" loc="(470,770)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> <a name="width" val="5"/> </comp> <comp lib="1" loc="(490,180)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,240)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,300)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,360)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,420)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,480)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,540)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(490,600)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="2" loc="(110,490)" name="Demultiplexer"> <a name="select" val="5"/> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(545,815)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="During precharge all COL outputs are 0."/> </comp> <comp lib="8" loc="(670,305)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Unused for OB[2-4]"/> </comp> <comp lib="8" loc="(670,545)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="Unused for OB[2-4]"/> </comp> <wire from="(100,490)" to="(110,490)"/> <wire from="(130,300)" to="(130,330)"/> <wire from="(130,300)" to="(240,300)"/> <wire from="(140,810)" to="(220,810)"/> <wire from="(150,330)" to="(160,330)"/> <wire from="(150,340)" to="(160,340)"/> <wire from="(150,350)" to="(160,350)"/> <wire from="(150,360)" to="(160,360)"/> <wire from="(150,370)" to="(160,370)"/> <wire from="(150,380)" to="(160,380)"/> <wire from="(150,390)" to="(160,390)"/> <wire from="(150,400)" to="(160,400)"/> <wire from="(150,410)" to="(160,410)"/> <wire from="(150,420)" to="(160,420)"/> <wire from="(150,430)" to="(160,430)"/> <wire from="(150,440)" to="(160,440)"/> <wire from="(150,450)" to="(160,450)"/> <wire from="(150,460)" to="(160,460)"/> <wire from="(150,470)" to="(160,470)"/> <wire from="(150,480)" to="(160,480)"/> <wire from="(150,490)" to="(160,490)"/> <wire from="(150,500)" to="(160,500)"/> <wire from="(150,510)" to="(160,510)"/> <wire from="(150,520)" to="(160,520)"/> <wire from="(150,530)" to="(160,530)"/> <wire from="(150,540)" to="(160,540)"/> <wire from="(150,550)" to="(160,550)"/> <wire from="(150,560)" to="(160,560)"/> <wire from="(150,570)" to="(160,570)"/> <wire from="(150,580)" to="(160,580)"/> <wire from="(150,590)" to="(160,590)"/> <wire from="(150,600)" to="(160,600)"/> <wire from="(150,610)" to="(160,610)"/> <wire from="(150,620)" to="(160,620)"/> <wire from="(150,630)" to="(160,630)"/> <wire from="(150,640)" to="(160,640)"/> <wire from="(180,650)" to="(180,720)"/> <wire from="(180,720)" to="(440,720)"/> <wire from="(190,250)" to="(290,250)"/> <wire from="(210,130)" to="(230,130)"/> <wire from="(210,140)" to="(240,140)"/> <wire from="(210,150)" to="(250,150)"/> <wire from="(210,160)" to="(220,160)"/> <wire from="(210,170)" to="(220,170)"/> <wire from="(210,180)" to="(220,180)"/> <wire from="(210,190)" to="(220,190)"/> <wire from="(210,200)" to="(220,200)"/> <wire from="(220,780)" to="(220,810)"/> <wire from="(220,780)" to="(250,780)"/> <wire from="(220,810)" to="(220,840)"/> <wire from="(220,810)" to="(230,810)"/> <wire from="(220,840)" to="(220,870)"/> <wire from="(220,840)" to="(250,840)"/> <wire from="(220,870)" to="(230,870)"/> <wire from="(230,40)" to="(230,60)"/> <wire from="(230,40)" to="(400,40)"/> <wire from="(230,60)" to="(230,130)"/> <wire from="(230,60)" to="(260,60)"/> <wire from="(240,100)" to="(240,140)"/> <wire from="(240,100)" to="(260,100)"/> <wire from="(240,210)" to="(240,300)"/> <wire from="(240,300)" to="(240,760)"/> <wire from="(240,760)" to="(440,760)"/> <wire from="(240,80)" to="(240,100)"/> <wire from="(240,80)" to="(380,80)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(250,120)" to="(360,120)"/> <wire from="(250,140)" to="(250,150)"/> <wire from="(250,140)" to="(260,140)"/> <wire from="(250,780)" to="(250,790)"/> <wire from="(250,840)" to="(250,850)"/> <wire from="(270,810)" to="(380,810)"/> <wire from="(270,870)" to="(420,870)"/> <wire from="(280,100)" to="(390,100)"/> <wire from="(280,140)" to="(370,140)"/> <wire from="(280,60)" to="(410,60)"/> <wire from="(290,200)" to="(290,250)"/> <wire from="(290,200)" to="(320,200)"/> <wire from="(290,250)" to="(290,660)"/> <wire from="(290,660)" to="(520,660)"/> <wire from="(320,200)" to="(320,260)"/> <wire from="(320,200)" to="(430,200)"/> <wire from="(320,260)" to="(320,320)"/> <wire from="(320,260)" to="(430,260)"/> <wire from="(320,320)" to="(320,380)"/> <wire from="(320,320)" to="(430,320)"/> <wire from="(320,380)" to="(320,440)"/> <wire from="(320,380)" to="(430,380)"/> <wire from="(320,440)" to="(320,500)"/> <wire from="(320,440)" to="(430,440)"/> <wire from="(320,500)" to="(320,560)"/> <wire from="(320,500)" to="(430,500)"/> <wire from="(320,560)" to="(320,620)"/> <wire from="(320,560)" to="(430,560)"/> <wire from="(320,620)" to="(430,620)"/> <wire from="(360,120)" to="(360,430)"/> <wire from="(360,120)" to="(420,120)"/> <wire from="(360,430)" to="(360,490)"/> <wire from="(360,430)" to="(430,430)"/> <wire from="(360,490)" to="(360,550)"/> <wire from="(360,490)" to="(430,490)"/> <wire from="(360,550)" to="(360,610)"/> <wire from="(360,550)" to="(430,550)"/> <wire from="(360,610)" to="(430,610)"/> <wire from="(370,140)" to="(370,190)"/> <wire from="(370,140)" to="(420,140)"/> <wire from="(370,190)" to="(370,250)"/> <wire from="(370,190)" to="(430,190)"/> <wire from="(370,250)" to="(370,310)"/> <wire from="(370,250)" to="(430,250)"/> <wire from="(370,310)" to="(370,370)"/> <wire from="(370,310)" to="(430,310)"/> <wire from="(370,370)" to="(430,370)"/> <wire from="(380,290)" to="(380,350)"/> <wire from="(380,290)" to="(430,290)"/> <wire from="(380,350)" to="(380,530)"/> <wire from="(380,350)" to="(430,350)"/> <wire from="(380,530)" to="(380,590)"/> <wire from="(380,530)" to="(430,530)"/> <wire from="(380,590)" to="(430,590)"/> <wire from="(380,740)" to="(380,810)"/> <wire from="(380,740)" to="(430,740)"/> <wire from="(380,80)" to="(380,290)"/> <wire from="(380,80)" to="(420,80)"/> <wire from="(390,100)" to="(390,170)"/> <wire from="(390,100)" to="(420,100)"/> <wire from="(390,170)" to="(390,230)"/> <wire from="(390,170)" to="(430,170)"/> <wire from="(390,230)" to="(390,410)"/> <wire from="(390,230)" to="(430,230)"/> <wire from="(390,410)" to="(390,470)"/> <wire from="(390,410)" to="(430,410)"/> <wire from="(390,470)" to="(430,470)"/> <wire from="(400,220)" to="(400,340)"/> <wire from="(400,220)" to="(430,220)"/> <wire from="(400,340)" to="(400,460)"/> <wire from="(400,340)" to="(430,340)"/> <wire from="(400,40)" to="(400,220)"/> <wire from="(400,40)" to="(420,40)"/> <wire from="(400,460)" to="(400,580)"/> <wire from="(400,460)" to="(430,460)"/> <wire from="(400,580)" to="(430,580)"/> <wire from="(410,160)" to="(410,280)"/> <wire from="(410,160)" to="(430,160)"/> <wire from="(410,280)" to="(410,400)"/> <wire from="(410,280)" to="(430,280)"/> <wire from="(410,400)" to="(410,520)"/> <wire from="(410,400)" to="(430,400)"/> <wire from="(410,520)" to="(430,520)"/> <wire from="(410,60)" to="(410,160)"/> <wire from="(410,60)" to="(420,60)"/> <wire from="(420,780)" to="(420,870)"/> <wire from="(420,780)" to="(430,780)"/> <wire from="(470,730)" to="(520,730)"/> <wire from="(470,770)" to="(520,770)"/> <wire from="(490,180)" to="(520,180)"/> <wire from="(490,240)" to="(520,240)"/> <wire from="(490,300)" to="(520,300)"/> <wire from="(490,360)" to="(520,360)"/> <wire from="(490,420)" to="(520,420)"/> <wire from="(490,480)" to="(520,480)"/> <wire from="(490,540)" to="(520,540)"/> <wire from="(490,600)" to="(520,600)"/> </circuit> <circuit name="OAM"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW0"/> </comp> <comp lib="0" loc="(150,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW1"/> </comp> <comp lib="0" loc="(150,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW2"/> </comp> <comp lib="0" loc="(150,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW3"/> </comp> <comp lib="0" loc="(150,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW4"/> </comp> <comp lib="0" loc="(150,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW5"/> </comp> <comp lib="0" loc="(150,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW6"/> </comp> <comp lib="0" loc="(150,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW7"/> </comp> <comp lib="0" loc="(150,920)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROWZ"/> </comp> <comp lib="0" loc="(160,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(540,290)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(540,690)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(570,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(600,200)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(600,600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp loc="(520,190)" name="OAM_Lane"/> <comp loc="(520,290)" name="OAM_Lane"/> <comp loc="(520,390)" name="OAM_Lane"/> <comp loc="(520,490)" name="OAM_Lane"/> <comp loc="(520,590)" name="OAM_Lane"/> <comp loc="(520,690)" name="OAM_Lane"/> <comp loc="(520,790)" name="OAM_Lane"/> <comp loc="(520,90)" name="OAM_Lane"/> <comp loc="(520,900)" name="OAM_Lane"/> <wire from="(150,200)" to="(260,200)"/> <wire from="(150,230)" to="(260,230)"/> <wire from="(150,260)" to="(260,260)"/> <wire from="(150,290)" to="(250,290)"/> <wire from="(150,320)" to="(240,320)"/> <wire from="(150,350)" to="(230,350)"/> <wire from="(150,380)" to="(220,380)"/> <wire from="(150,410)" to="(210,410)"/> <wire from="(150,920)" to="(300,920)"/> <wire from="(160,130)" to="(270,130)"/> <wire from="(160,90)" to="(280,90)"/> <wire from="(210,410)" to="(210,810)"/> <wire from="(210,810)" to="(300,810)"/> <wire from="(220,380)" to="(220,710)"/> <wire from="(220,710)" to="(300,710)"/> <wire from="(230,350)" to="(230,610)"/> <wire from="(230,610)" to="(300,610)"/> <wire from="(240,320)" to="(240,510)"/> <wire from="(240,510)" to="(300,510)"/> <wire from="(250,290)" to="(250,410)"/> <wire from="(250,410)" to="(300,410)"/> <wire from="(260,110)" to="(260,200)"/> <wire from="(260,110)" to="(300,110)"/> <wire from="(260,210)" to="(260,230)"/> <wire from="(260,210)" to="(300,210)"/> <wire from="(260,260)" to="(260,310)"/> <wire from="(260,310)" to="(300,310)"/> <wire from="(270,130)" to="(270,230)"/> <wire from="(270,130)" to="(300,130)"/> <wire from="(270,230)" to="(270,330)"/> <wire from="(270,230)" to="(300,230)"/> <wire from="(270,330)" to="(270,430)"/> <wire from="(270,330)" to="(300,330)"/> <wire from="(270,430)" to="(270,530)"/> <wire from="(270,430)" to="(300,430)"/> <wire from="(270,530)" to="(270,630)"/> <wire from="(270,530)" to="(300,530)"/> <wire from="(270,630)" to="(270,730)"/> <wire from="(270,630)" to="(300,630)"/> <wire from="(270,730)" to="(270,830)"/> <wire from="(270,730)" to="(300,730)"/> <wire from="(270,830)" to="(270,940)"/> <wire from="(270,830)" to="(300,830)"/> <wire from="(270,940)" to="(300,940)"/> <wire from="(280,190)" to="(280,290)"/> <wire from="(280,190)" to="(300,190)"/> <wire from="(280,290)" to="(280,390)"/> <wire from="(280,290)" to="(300,290)"/> <wire from="(280,390)" to="(280,490)"/> <wire from="(280,390)" to="(300,390)"/> <wire from="(280,490)" to="(280,590)"/> <wire from="(280,490)" to="(300,490)"/> <wire from="(280,590)" to="(280,690)"/> <wire from="(280,590)" to="(300,590)"/> <wire from="(280,690)" to="(280,790)"/> <wire from="(280,690)" to="(300,690)"/> <wire from="(280,790)" to="(280,900)"/> <wire from="(280,790)" to="(300,790)"/> <wire from="(280,90)" to="(280,190)"/> <wire from="(280,90)" to="(300,90)"/> <wire from="(280,900)" to="(300,900)"/> <wire from="(520,190)" to="(550,190)"/> <wire from="(520,290)" to="(540,290)"/> <wire from="(520,390)" to="(550,390)"/> <wire from="(520,490)" to="(550,490)"/> <wire from="(520,590)" to="(550,590)"/> <wire from="(520,690)" to="(540,690)"/> <wire from="(520,790)" to="(550,790)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(520,900)" to="(550,900)"/> <wire from="(550,190)" to="(610,190)"/> <wire from="(550,390)" to="(550,490)"/> <wire from="(550,390)" to="(610,390)"/> <wire from="(550,490)" to="(550,590)"/> <wire from="(550,590)" to="(610,590)"/> <wire from="(550,790)" to="(550,900)"/> <wire from="(550,790)" to="(610,790)"/> <wire from="(550,90)" to="(550,190)"/> <wire from="(550,90)" to="(570,90)"/> <wire from="(560,210)" to="(580,210)"/> <wire from="(560,220)" to="(580,220)"/> <wire from="(560,260)" to="(580,260)"/> <wire from="(560,270)" to="(580,270)"/> <wire from="(560,280)" to="(580,280)"/> <wire from="(560,610)" to="(580,610)"/> <wire from="(560,620)" to="(580,620)"/> <wire from="(560,660)" to="(580,660)"/> <wire from="(560,670)" to="(580,670)"/> <wire from="(560,680)" to="(580,680)"/> <wire from="(600,200)" to="(610,200)"/> <wire from="(600,600)" to="(610,600)"/> <wire from="(610,190)" to="(610,200)"/> <wire from="(610,200)" to="(610,390)"/> <wire from="(610,590)" to="(610,600)"/> <wire from="(610,600)" to="(610,790)"/> </circuit> <circuit name="OAM_Lane"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Lane"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(170,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RowEnable"/> </comp> <comp lib="0" loc="(190,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(510,130)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(580,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(550,140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="4" loc="(230,70)" name="RAM"> <a name="addrWidth" val="5"/> <a name="appearance" val="logisim_evolution"/> <a name="labelvisible" val="true"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(275,345)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="One lane corresponds to one ROW."/> </comp> <comp lib="8" loc="(330,330)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="One lane is 32 cells (columns) x 8 bits for the OAM Buffer."/> </comp> <comp lib="8" loc="(90,60)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Select column (0-31)"/> </comp> <wire from="(130,80)" to="(230,80)"/> <wire from="(170,120)" to="(200,120)"/> <wire from="(190,150)" to="(230,150)"/> <wire from="(200,120)" to="(220,120)"/> <wire from="(200,40)" to="(200,120)"/> <wire from="(200,40)" to="(530,40)"/> <wire from="(220,120)" to="(220,130)"/> <wire from="(220,120)" to="(230,120)"/> <wire from="(220,130)" to="(230,130)"/> <wire from="(470,150)" to="(520,150)"/> <wire from="(510,130)" to="(520,130)"/> <wire from="(530,40)" to="(530,120)"/> <wire from="(550,140)" to="(580,140)"/> </circuit> <circuit name="OAM_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(170,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SPR_OV"/> </comp> <comp lib="0" loc="(170,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OAMCTR2"/> </comp> <comp lib="0" loc="(170,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(170,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(170,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W4"/> </comp> <comp lib="0" loc="(170,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(170,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(170,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(180,180)" name="Tunnel"> <a name="label" val="SPR_OV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,210)" name="Tunnel"> <a name="label" val="OAMCTR2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,240)" name="Tunnel"> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,270)" name="Tunnel"> <a name="label" val="n_VIS"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,60)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(190,150)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(190,90)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(450,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SPR_OV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OAMCTR2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_VIS"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(630,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(710,50)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(870,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OFETCH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OB_OAM"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(870,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_WE"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(230,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,280)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,140)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(430,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(440,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(650,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(750,300)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(830,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(860,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(390,100)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(260,320)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="W4_Enable"/> </comp> <comp lib="8" loc="(300,360)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="R"/> </comp> <comp lib="8" loc="(305,265)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="S"/> </comp> <comp lib="8" loc="(345,370)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="W4_FF"/> </comp> <comp lib="8" loc="(390,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OFETCH_FF"/> </comp> <comp loc="(470,80)" name="DLatch"> <a name="label" val="latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(560,80)" name="DLatch"> <a name="label" val="latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(650,80)" name="DLatch"> <a name="label" val="latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(730,80)" name="DLatch"> <a name="label" val="latch4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,150)" to="(180,150)"/> <wire from="(170,180)" to="(180,180)"/> <wire from="(170,210)" to="(180,210)"/> <wire from="(170,240)" to="(180,240)"/> <wire from="(170,270)" to="(180,270)"/> <wire from="(170,300)" to="(190,300)"/> <wire from="(170,330)" to="(180,330)"/> <wire from="(170,60)" to="(180,60)"/> <wire from="(170,90)" to="(180,90)"/> <wire from="(180,110)" to="(230,110)"/> <wire from="(180,130)" to="(180,150)"/> <wire from="(180,130)" to="(230,130)"/> <wire from="(180,150)" to="(190,150)"/> <wire from="(180,320)" to="(180,330)"/> <wire from="(180,320)" to="(190,320)"/> <wire from="(180,90)" to="(180,110)"/> <wire from="(180,90)" to="(190,90)"/> <wire from="(230,310)" to="(280,310)"/> <wire from="(270,120)" to="(290,120)"/> <wire from="(280,270)" to="(280,310)"/> <wire from="(280,270)" to="(300,270)"/> <wire from="(290,120)" to="(290,220)"/> <wire from="(290,220)" to="(870,220)"/> <wire from="(300,250)" to="(300,270)"/> <wire from="(300,250)" to="(390,250)"/> <wire from="(300,270)" to="(320,270)"/> <wire from="(310,290)" to="(310,310)"/> <wire from="(310,290)" to="(320,290)"/> <wire from="(310,310)" to="(370,310)"/> <wire from="(310,320)" to="(310,330)"/> <wire from="(310,320)" to="(380,320)"/> <wire from="(310,330)" to="(320,330)"/> <wire from="(310,350)" to="(310,380)"/> <wire from="(310,350)" to="(320,350)"/> <wire from="(310,380)" to="(520,380)"/> <wire from="(330,110)" to="(330,190)"/> <wire from="(330,110)" to="(360,110)"/> <wire from="(330,190)" to="(460,190)"/> <wire from="(340,140)" to="(410,140)"/> <wire from="(340,90)" to="(340,140)"/> <wire from="(340,90)" to="(360,90)"/> <wire from="(360,280)" to="(380,280)"/> <wire from="(360,340)" to="(370,340)"/> <wire from="(360,50)" to="(370,50)"/> <wire from="(370,310)" to="(370,340)"/> <wire from="(370,50)" to="(370,80)"/> <wire from="(380,280)" to="(380,320)"/> <wire from="(380,280)" to="(400,280)"/> <wire from="(390,100)" to="(410,100)"/> <wire from="(390,250)" to="(390,260)"/> <wire from="(390,260)" to="(400,260)"/> <wire from="(430,100)" to="(450,100)"/> <wire from="(430,140)" to="(450,140)"/> <wire from="(440,270)" to="(460,270)"/> <wire from="(450,100)" to="(450,140)"/> <wire from="(450,100)" to="(470,100)"/> <wire from="(450,50)" to="(460,50)"/> <wire from="(460,190)" to="(460,270)"/> <wire from="(460,50)" to="(460,80)"/> <wire from="(460,80)" to="(470,80)"/> <wire from="(510,100)" to="(560,100)"/> <wire from="(520,140)" to="(520,380)"/> <wire from="(520,140)" to="(710,140)"/> <wire from="(540,50)" to="(550,50)"/> <wire from="(550,50)" to="(550,80)"/> <wire from="(550,80)" to="(560,80)"/> <wire from="(600,100)" to="(630,100)"/> <wire from="(620,250)" to="(660,250)"/> <wire from="(620,270)" to="(650,270)"/> <wire from="(620,290)" to="(670,290)"/> <wire from="(620,310)" to="(630,310)"/> <wire from="(620,330)" to="(650,330)"/> <wire from="(620,350)" to="(660,350)"/> <wire from="(630,100)" to="(630,190)"/> <wire from="(630,100)" to="(650,100)"/> <wire from="(630,190)" to="(790,190)"/> <wire from="(630,50)" to="(640,50)"/> <wire from="(640,50)" to="(640,80)"/> <wire from="(640,80)" to="(650,80)"/> <wire from="(650,270)" to="(650,280)"/> <wire from="(650,280)" to="(670,280)"/> <wire from="(650,310)" to="(670,310)"/> <wire from="(650,320)" to="(650,330)"/> <wire from="(650,320)" to="(670,320)"/> <wire from="(660,250)" to="(660,270)"/> <wire from="(660,270)" to="(670,270)"/> <wire from="(660,330)" to="(660,350)"/> <wire from="(660,330)" to="(670,330)"/> <wire from="(690,100)" to="(710,100)"/> <wire from="(710,100)" to="(710,140)"/> <wire from="(710,100)" to="(730,100)"/> <wire from="(710,50)" to="(720,50)"/> <wire from="(720,50)" to="(720,80)"/> <wire from="(720,80)" to="(730,80)"/> <wire from="(750,300)" to="(820,300)"/> <wire from="(770,80)" to="(780,80)"/> <wire from="(780,170)" to="(790,170)"/> <wire from="(780,80)" to="(780,170)"/> <wire from="(810,240)" to="(810,280)"/> <wire from="(810,240)" to="(850,240)"/> <wire from="(810,280)" to="(820,280)"/> <wire from="(830,180)" to="(850,180)"/> <wire from="(850,180)" to="(850,240)"/> <wire from="(850,180)" to="(870,180)"/> <wire from="(860,290)" to="(870,290)"/> </circuit> <circuit name="OAM_BufferBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_BufferBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4_Enable"/> </comp> <comp lib="0" loc="(170,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(170,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB_OAM"/> </comp> <comp lib="0" loc="(170,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_WE"/> </comp> <comp lib="0" loc="(170,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(170,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FromOAM"/> <a name="pull" val="down"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(170,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(180,130)" name="Tunnel"> <a name="label" val="n_R4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,160)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,190)" name="Tunnel"> <a name="label" val="OB_OAM"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,220)" name="Tunnel"> <a name="label" val="n_WE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,250)" name="Tunnel"> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(180,50)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(330,130)" name="Constant"/> <comp lib="0" loc="(330,220)" name="Constant"/> <comp lib="0" loc="(330,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(340,80)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(350,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OB_OAM"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(420,440)" name="Constant"/> <comp lib="0" loc="(500,110)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I_OAM2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(540,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_WE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(580,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(600,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(640,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_R4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(790,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OB_Out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(790,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(790,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ToOAM"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="1" loc="(310,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,400)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(380,330)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(460,130)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,200)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(590,400)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(650,170)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(670,250)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(690,290)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="2" loc="(370,120)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(370,210)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(630,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(440,390)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(135,375)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Direct writing to OAM Cells from DB"/> </comp> <comp lib="8" loc="(345,245)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Auto clear on PCLK"/> </comp> <comp lib="8" loc="(355,290)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Output for OAM Cells"/> </comp> <comp lib="8" loc="(405,60)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Input FF is used to protect against input `z` from OAM Cells."/> </comp> <comp lib="8" loc="(440,230)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Input_FF"/> </comp> <comp lib="8" loc="(635,185)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OB_FF"/> </comp> <comp lib="8" loc="(695,320)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Output for $2004"/> </comp> <comp loc="(590,290)" name="DLatch"> <a name="label" val="R4_out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,130)" to="(180,130)"/> <wire from="(170,160)" to="(180,160)"/> <wire from="(170,190)" to="(180,190)"/> <wire from="(170,220)" to="(180,220)"/> <wire from="(170,250)" to="(180,250)"/> <wire from="(170,400)" to="(330,400)"/> <wire from="(170,440)" to="(260,440)"/> <wire from="(170,50)" to="(180,50)"/> <wire from="(260,110)" to="(260,200)"/> <wire from="(260,110)" to="(290,110)"/> <wire from="(260,200)" to="(260,440)"/> <wire from="(260,200)" to="(340,200)"/> <wire from="(290,260)" to="(290,330)"/> <wire from="(290,260)" to="(510,260)"/> <wire from="(290,330)" to="(360,330)"/> <wire from="(310,110)" to="(340,110)"/> <wire from="(330,130)" to="(340,130)"/> <wire from="(330,220)" to="(340,220)"/> <wire from="(330,360)" to="(340,360)"/> <wire from="(340,360)" to="(340,390)"/> <wire from="(340,80)" to="(350,80)"/> <wire from="(350,100)" to="(350,190)"/> <wire from="(350,310)" to="(370,310)"/> <wire from="(350,400)" to="(390,400)"/> <wire from="(350,80)" to="(350,100)"/> <wire from="(370,120)" to="(420,120)"/> <wire from="(370,210)" to="(420,210)"/> <wire from="(370,310)" to="(370,320)"/> <wire from="(380,330)" to="(390,330)"/> <wire from="(390,330)" to="(390,400)"/> <wire from="(390,400)" to="(430,400)"/> <wire from="(410,140)" to="(410,160)"/> <wire from="(410,140)" to="(420,140)"/> <wire from="(410,160)" to="(470,160)"/> <wire from="(410,170)" to="(410,190)"/> <wire from="(410,170)" to="(480,170)"/> <wire from="(410,190)" to="(420,190)"/> <wire from="(420,440)" to="(430,440)"/> <wire from="(460,130)" to="(480,130)"/> <wire from="(460,200)" to="(470,200)"/> <wire from="(470,160)" to="(470,200)"/> <wire from="(480,130)" to="(480,170)"/> <wire from="(480,130)" to="(520,130)"/> <wire from="(490,400)" to="(570,400)"/> <wire from="(500,110)" to="(520,110)"/> <wire from="(510,220)" to="(510,260)"/> <wire from="(510,220)" to="(730,220)"/> <wire from="(510,260)" to="(510,310)"/> <wire from="(510,310)" to="(590,310)"/> <wire from="(540,360)" to="(550,360)"/> <wire from="(560,120)" to="(600,120)"/> <wire from="(570,360)" to="(580,360)"/> <wire from="(580,290)" to="(590,290)"/> <wire from="(580,360)" to="(580,390)"/> <wire from="(590,140)" to="(590,170)"/> <wire from="(590,140)" to="(600,140)"/> <wire from="(590,170)" to="(650,170)"/> <wire from="(590,400)" to="(790,400)"/> <wire from="(600,90)" to="(610,90)"/> <wire from="(610,90)" to="(610,110)"/> <wire from="(630,130)" to="(650,130)"/> <wire from="(630,290)" to="(670,290)"/> <wire from="(640,250)" to="(650,250)"/> <wire from="(670,130)" to="(690,130)"/> <wire from="(670,170)" to="(690,170)"/> <wire from="(670,250)" to="(680,250)"/> <wire from="(680,250)" to="(680,280)"/> <wire from="(690,130)" to="(690,170)"/> <wire from="(690,130)" to="(730,130)"/> <wire from="(690,290)" to="(790,290)"/> <wire from="(730,130)" to="(730,220)"/> <wire from="(730,130)" to="(790,130)"/> </circuit> <circuit name="OAM_Buffer"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="OAM_Buffer"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1070,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1070,510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1070,730)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1070,950)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,200)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,240)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,280)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,320)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,360)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,400)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,440)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1180,480)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1330,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ToOAM"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1330,720)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1420,530)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1420,530)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1450,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="OB_Out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1450,370)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(210,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R4_Enable"/> </comp> <comp lib="0" loc="(210,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(210,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB_OAM"/> </comp> <comp lib="0" loc="(210,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_WE"/> </comp> <comp lib="0" loc="(210,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I_OAM2"/> </comp> <comp lib="0" loc="(210,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_In"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(210,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FromOAM"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(210,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(220,430)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,460)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,490)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,520)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,550)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,580)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,610)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(220,640)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(340,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(360,1030)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(360,370)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(360,590)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(360,810)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(390,440)" name="Splitter"/> <comp lib="0" loc="(390,660)" name="Splitter"/> <comp lib="0" loc="(390,880)" name="Splitter"/> <comp lib="0" loc="(40,520)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(40,740)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,1100)" name="Splitter"/> <comp lib="0" loc="(690,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,510)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,730)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,950)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(740,1030)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(740,370)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(740,590)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(740,810)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(770,440)" name="Splitter"/> <comp lib="0" loc="(770,660)" name="Splitter"/> <comp lib="0" loc="(770,880)" name="Splitter"/> <comp lib="0" loc="(790,1100)" name="Splitter"/> <comp loc="(1040,300)" name="OAM_BufferBit"/> <comp loc="(1040,520)" name="OAM_BufferBit"/> <comp loc="(1040,740)" name="OAM_BufferBit"/> <comp loc="(1040,960)" name="OAM_BufferBit"/> <comp loc="(660,300)" name="OAM_BufferBit"/> <comp loc="(660,520)" name="OAM_BufferBit"/> <comp loc="(660,740)" name="OAM_BufferBit"/> <comp loc="(660,960)" name="OAM_BufferBit"/> <wire from="(100,470)" to="(100,530)"/> <wire from="(100,530)" to="(200,530)"/> <wire from="(1040,1000)" to="(1050,1000)"/> <wire from="(1040,300)" to="(1050,300)"/> <wire from="(1040,310)" to="(1040,320)"/> <wire from="(1040,310)" to="(1050,310)"/> <wire from="(1040,340)" to="(1050,340)"/> <wire from="(1040,520)" to="(1050,520)"/> <wire from="(1040,530)" to="(1040,540)"/> <wire from="(1040,530)" to="(1050,530)"/> <wire from="(1040,560)" to="(1050,560)"/> <wire from="(1040,740)" to="(1050,740)"/> <wire from="(1040,750)" to="(1040,760)"/> <wire from="(1040,750)" to="(1050,750)"/> <wire from="(1040,780)" to="(1050,780)"/> <wire from="(1040,960)" to="(1050,960)"/> <wire from="(1040,970)" to="(1040,980)"/> <wire from="(1040,970)" to="(1050,970)"/> <wire from="(1050,320)" to="(1050,340)"/> <wire from="(1050,540)" to="(1050,560)"/> <wire from="(1050,760)" to="(1050,780)"/> <wire from="(1050,980)" to="(1050,1000)"/> <wire from="(1070,270)" to="(1070,290)"/> <wire from="(1070,270)" to="(1110,270)"/> <wire from="(1070,400)" to="(1070,510)"/> <wire from="(1070,400)" to="(1180,400)"/> <wire from="(1070,710)" to="(1070,730)"/> <wire from="(1070,710)" to="(1090,710)"/> <wire from="(1070,930)" to="(1070,950)"/> <wire from="(1070,930)" to="(1120,930)"/> <wire from="(1090,440)" to="(1090,710)"/> <wire from="(1090,440)" to="(1180,440)"/> <wire from="(110,460)" to="(110,500)"/> <wire from="(110,500)" to="(200,500)"/> <wire from="(1110,270)" to="(1110,360)"/> <wire from="(1110,360)" to="(1180,360)"/> <wire from="(1120,150)" to="(1120,320)"/> <wire from="(1120,320)" to="(1180,320)"/> <wire from="(1120,480)" to="(1120,930)"/> <wire from="(1120,480)" to="(1180,480)"/> <wire from="(1130,140)" to="(1130,280)"/> <wire from="(1130,280)" to="(1180,280)"/> <wire from="(1140,130)" to="(1140,240)"/> <wire from="(1140,240)" to="(1180,240)"/> <wire from="(1150,120)" to="(1150,200)"/> <wire from="(1150,200)" to="(1180,200)"/> <wire from="(120,450)" to="(120,470)"/> <wire from="(120,470)" to="(200,470)"/> <wire from="(1200,170)" to="(1420,170)"/> <wire from="(1200,180)" to="(1350,180)"/> <wire from="(1200,190)" to="(1270,190)"/> <wire from="(1200,210)" to="(1410,210)"/> <wire from="(1200,220)" to="(1340,220)"/> <wire from="(1200,230)" to="(1260,230)"/> <wire from="(1200,250)" to="(1400,250)"/> <wire from="(1200,260)" to="(1330,260)"/> <wire from="(1200,270)" to="(1250,270)"/> <wire from="(1200,290)" to="(1390,290)"/> <wire from="(1200,300)" to="(1320,300)"/> <wire from="(1200,310)" to="(1240,310)"/> <wire from="(1200,330)" to="(1380,330)"/> <wire from="(1200,340)" to="(1310,340)"/> <wire from="(1200,350)" to="(1230,350)"/> <wire from="(1200,370)" to="(1370,370)"/> <wire from="(1200,380)" to="(1300,380)"/> <wire from="(1200,390)" to="(1220,390)"/> <wire from="(1200,410)" to="(1360,410)"/> <wire from="(1200,420)" to="(1290,420)"/> <wire from="(1200,430)" to="(1210,430)"/> <wire from="(1200,450)" to="(1430,450)"/> <wire from="(1200,460)" to="(1280,460)"/> <wire from="(1200,470)" to="(1200,800)"/> <wire from="(1200,800)" to="(1310,800)"/> <wire from="(1210,430)" to="(1210,790)"/> <wire from="(1210,790)" to="(1310,790)"/> <wire from="(1220,390)" to="(1220,780)"/> <wire from="(1220,780)" to="(1310,780)"/> <wire from="(1230,350)" to="(1230,770)"/> <wire from="(1230,770)" to="(1310,770)"/> <wire from="(1240,310)" to="(1240,760)"/> <wire from="(1240,760)" to="(1310,760)"/> <wire from="(1250,270)" to="(1250,750)"/> <wire from="(1250,750)" to="(1310,750)"/> <wire from="(1260,230)" to="(1260,740)"/> <wire from="(1260,740)" to="(1310,740)"/> <wire from="(1270,190)" to="(1270,730)"/> <wire from="(1270,730)" to="(1310,730)"/> <wire from="(1280,460)" to="(1280,610)"/> <wire from="(1280,610)" to="(1400,610)"/> <wire from="(1290,420)" to="(1290,600)"/> <wire from="(1290,600)" to="(1400,600)"/> <wire from="(130,450)" to="(130,660)"/> <wire from="(130,450)" to="(200,450)"/> <wire from="(1300,380)" to="(1300,590)"/> <wire from="(1300,590)" to="(1400,590)"/> <wire from="(1310,340)" to="(1310,580)"/> <wire from="(1310,580)" to="(1400,580)"/> <wire from="(1320,300)" to="(1320,570)"/> <wire from="(1320,570)" to="(1400,570)"/> <wire from="(1330,260)" to="(1330,560)"/> <wire from="(1330,560)" to="(1400,560)"/> <wire from="(1340,220)" to="(1340,550)"/> <wire from="(1340,550)" to="(1400,550)"/> <wire from="(1350,180)" to="(1350,540)"/> <wire from="(1350,540)" to="(1400,540)"/> <wire from="(1360,410)" to="(1360,440)"/> <wire from="(1360,440)" to="(1430,440)"/> <wire from="(1370,370)" to="(1370,430)"/> <wire from="(1370,430)" to="(1430,430)"/> <wire from="(1380,330)" to="(1380,420)"/> <wire from="(1380,420)" to="(1430,420)"/> <wire from="(1390,290)" to="(1390,410)"/> <wire from="(1390,410)" to="(1430,410)"/> <wire from="(140,480)" to="(140,670)"/> <wire from="(140,480)" to="(200,480)"/> <wire from="(1400,250)" to="(1400,400)"/> <wire from="(1400,400)" to="(1430,400)"/> <wire from="(1410,210)" to="(1410,390)"/> <wire from="(1410,390)" to="(1430,390)"/> <wire from="(1420,170)" to="(1420,380)"/> <wire from="(1420,380)" to="(1430,380)"/> <wire from="(150,510)" to="(150,680)"/> <wire from="(150,510)" to="(200,510)"/> <wire from="(160,540)" to="(160,690)"/> <wire from="(160,540)" to="(200,540)"/> <wire from="(170,570)" to="(170,700)"/> <wire from="(170,570)" to="(200,570)"/> <wire from="(180,600)" to="(180,710)"/> <wire from="(180,600)" to="(200,600)"/> <wire from="(190,630)" to="(190,720)"/> <wire from="(190,630)" to="(200,630)"/> <wire from="(20,390)" to="(20,520)"/> <wire from="(20,390)" to="(220,390)"/> <wire from="(20,520)" to="(40,520)"/> <wire from="(200,660)" to="(200,730)"/> <wire from="(210,130)" to="(230,130)"/> <wire from="(210,160)" to="(220,160)"/> <wire from="(210,190)" to="(320,190)"/> <wire from="(210,220)" to="(220,220)"/> <wire from="(210,250)" to="(230,250)"/> <wire from="(210,310)" to="(220,310)"/> <wire from="(210,350)" to="(210,400)"/> <wire from="(210,50)" to="(430,50)"/> <wire from="(220,160)" to="(220,180)"/> <wire from="(220,180)" to="(320,180)"/> <wire from="(220,200)" to="(220,220)"/> <wire from="(220,200)" to="(320,200)"/> <wire from="(220,310)" to="(220,390)"/> <wire from="(220,430)" to="(380,430)"/> <wire from="(220,460)" to="(340,460)"/> <wire from="(220,490)" to="(330,490)"/> <wire from="(220,520)" to="(320,520)"/> <wire from="(220,550)" to="(270,550)"/> <wire from="(220,580)" to="(260,580)"/> <wire from="(220,610)" to="(250,610)"/> <wire from="(220,640)" to="(230,640)"/> <wire from="(230,1190)" to="(790,1190)"/> <wire from="(230,130)" to="(230,170)"/> <wire from="(230,170)" to="(320,170)"/> <wire from="(230,210)" to="(230,250)"/> <wire from="(230,210)" to="(320,210)"/> <wire from="(230,640)" to="(230,1190)"/> <wire from="(250,1180)" to="(770,1180)"/> <wire from="(250,610)" to="(250,1180)"/> <wire from="(260,1170)" to="(700,1170)"/> <wire from="(260,580)" to="(260,1170)"/> <wire from="(270,1160)" to="(710,1160)"/> <wire from="(270,550)" to="(270,1160)"/> <wire from="(30,400)" to="(210,400)"/> <wire from="(30,400)" to="(30,740)"/> <wire from="(30,740)" to="(40,740)"/> <wire from="(320,1100)" to="(400,1100)"/> <wire from="(320,520)" to="(320,1100)"/> <wire from="(330,490)" to="(330,880)"/> <wire from="(330,880)" to="(390,880)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(340,460)" to="(340,660)"/> <wire from="(340,660)" to="(390,660)"/> <wire from="(350,1030)" to="(360,1030)"/> <wire from="(350,160)" to="(350,370)"/> <wire from="(350,160)" to="(730,160)"/> <wire from="(350,370)" to="(350,590)"/> <wire from="(350,370)" to="(360,370)"/> <wire from="(350,590)" to="(350,810)"/> <wire from="(350,590)" to="(360,590)"/> <wire from="(350,810)" to="(350,1030)"/> <wire from="(350,810)" to="(360,810)"/> <wire from="(380,1000)" to="(410,1000)"/> <wire from="(380,1010)" to="(400,1010)"/> <wire from="(380,1020)" to="(390,1020)"/> <wire from="(380,320)" to="(440,320)"/> <wire from="(380,330)" to="(410,330)"/> <wire from="(380,340)" to="(400,340)"/> <wire from="(380,350)" to="(390,350)"/> <wire from="(380,360)" to="(380,400)"/> <wire from="(380,400)" to="(440,400)"/> <wire from="(380,430)" to="(380,440)"/> <wire from="(380,440)" to="(390,440)"/> <wire from="(380,540)" to="(440,540)"/> <wire from="(380,550)" to="(410,550)"/> <wire from="(380,560)" to="(400,560)"/> <wire from="(380,570)" to="(390,570)"/> <wire from="(380,580)" to="(380,620)"/> <wire from="(380,620)" to="(440,620)"/> <wire from="(380,760)" to="(440,760)"/> <wire from="(380,770)" to="(410,770)"/> <wire from="(380,780)" to="(400,780)"/> <wire from="(380,790)" to="(390,790)"/> <wire from="(380,800)" to="(380,840)"/> <wire from="(380,840)" to="(440,840)"/> <wire from="(380,980)" to="(440,980)"/> <wire from="(380,990)" to="(420,990)"/> <wire from="(390,1020)" to="(390,1060)"/> <wire from="(390,1060)" to="(440,1060)"/> <wire from="(390,350)" to="(390,380)"/> <wire from="(390,380)" to="(440,380)"/> <wire from="(390,570)" to="(390,600)"/> <wire from="(390,600)" to="(440,600)"/> <wire from="(390,790)" to="(390,820)"/> <wire from="(390,820)" to="(440,820)"/> <wire from="(400,1010)" to="(400,1040)"/> <wire from="(400,1040)" to="(440,1040)"/> <wire from="(400,340)" to="(400,360)"/> <wire from="(400,360)" to="(440,360)"/> <wire from="(400,560)" to="(400,580)"/> <wire from="(400,580)" to="(440,580)"/> <wire from="(400,780)" to="(400,800)"/> <wire from="(400,800)" to="(440,800)"/> <wire from="(410,1000)" to="(410,1020)"/> <wire from="(410,1020)" to="(440,1020)"/> <wire from="(410,330)" to="(410,340)"/> <wire from="(410,340)" to="(440,340)"/> <wire from="(410,420)" to="(440,420)"/> <wire from="(410,430)" to="(410,440)"/> <wire from="(410,440)" to="(440,440)"/> <wire from="(410,550)" to="(410,560)"/> <wire from="(410,560)" to="(440,560)"/> <wire from="(410,640)" to="(440,640)"/> <wire from="(410,650)" to="(410,660)"/> <wire from="(410,660)" to="(440,660)"/> <wire from="(410,770)" to="(410,780)"/> <wire from="(410,780)" to="(440,780)"/> <wire from="(410,860)" to="(440,860)"/> <wire from="(410,870)" to="(410,880)"/> <wire from="(410,880)" to="(440,880)"/> <wire from="(420,1000)" to="(440,1000)"/> <wire from="(420,1080)" to="(440,1080)"/> <wire from="(420,1090)" to="(420,1100)"/> <wire from="(420,1100)" to="(440,1100)"/> <wire from="(420,990)" to="(420,1000)"/> <wire from="(430,300)" to="(430,520)"/> <wire from="(430,300)" to="(440,300)"/> <wire from="(430,50)" to="(430,300)"/> <wire from="(430,50)" to="(810,50)"/> <wire from="(430,520)" to="(430,740)"/> <wire from="(430,520)" to="(440,520)"/> <wire from="(430,740)" to="(430,960)"/> <wire from="(430,740)" to="(440,740)"/> <wire from="(430,960)" to="(440,960)"/> <wire from="(60,440)" to="(200,440)"/> <wire from="(60,450)" to="(120,450)"/> <wire from="(60,460)" to="(110,460)"/> <wire from="(60,470)" to="(100,470)"/> <wire from="(60,480)" to="(90,480)"/> <wire from="(60,490)" to="(80,490)"/> <wire from="(60,500)" to="(70,500)"/> <wire from="(60,510)" to="(60,650)"/> <wire from="(60,650)" to="(200,650)"/> <wire from="(60,660)" to="(130,660)"/> <wire from="(60,670)" to="(140,670)"/> <wire from="(60,680)" to="(150,680)"/> <wire from="(60,690)" to="(160,690)"/> <wire from="(60,700)" to="(170,700)"/> <wire from="(60,710)" to="(180,710)"/> <wire from="(60,720)" to="(190,720)"/> <wire from="(60,730)" to="(200,730)"/> <wire from="(660,1000)" to="(670,1000)"/> <wire from="(660,300)" to="(670,300)"/> <wire from="(660,310)" to="(660,320)"/> <wire from="(660,310)" to="(670,310)"/> <wire from="(660,340)" to="(670,340)"/> <wire from="(660,520)" to="(670,520)"/> <wire from="(660,530)" to="(660,540)"/> <wire from="(660,530)" to="(670,530)"/> <wire from="(660,560)" to="(670,560)"/> <wire from="(660,740)" to="(670,740)"/> <wire from="(660,750)" to="(660,760)"/> <wire from="(660,750)" to="(670,750)"/> <wire from="(660,780)" to="(670,780)"/> <wire from="(660,960)" to="(670,960)"/> <wire from="(660,970)" to="(660,980)"/> <wire from="(660,970)" to="(670,970)"/> <wire from="(670,320)" to="(670,340)"/> <wire from="(670,540)" to="(670,560)"/> <wire from="(670,760)" to="(670,780)"/> <wire from="(670,980)" to="(670,1000)"/> <wire from="(690,120)" to="(1150,120)"/> <wire from="(690,120)" to="(690,290)"/> <wire from="(690,490)" to="(690,510)"/> <wire from="(690,490)" to="(700,490)"/> <wire from="(690,710)" to="(690,730)"/> <wire from="(690,710)" to="(710,710)"/> <wire from="(690,930)" to="(690,950)"/> <wire from="(690,930)" to="(720,930)"/> <wire from="(70,500)" to="(70,620)"/> <wire from="(70,620)" to="(200,620)"/> <wire from="(700,130)" to="(1140,130)"/> <wire from="(700,130)" to="(700,490)"/> <wire from="(700,500)" to="(700,620)"/> <wire from="(700,500)" to="(770,500)"/> <wire from="(700,620)" to="(750,620)"/> <wire from="(700,660)" to="(700,1170)"/> <wire from="(700,660)" to="(770,660)"/> <wire from="(710,140)" to="(1130,140)"/> <wire from="(710,140)" to="(710,710)"/> <wire from="(710,720)" to="(710,1160)"/> <wire from="(710,720)" to="(750,720)"/> <wire from="(720,150)" to="(1120,150)"/> <wire from="(720,150)" to="(720,930)"/> <wire from="(730,1030)" to="(740,1030)"/> <wire from="(730,160)" to="(730,370)"/> <wire from="(730,370)" to="(730,590)"/> <wire from="(730,370)" to="(740,370)"/> <wire from="(730,590)" to="(730,810)"/> <wire from="(730,590)" to="(740,590)"/> <wire from="(730,810)" to="(730,1030)"/> <wire from="(730,810)" to="(740,810)"/> <wire from="(750,620)" to="(750,720)"/> <wire from="(760,1000)" to="(800,1000)"/> <wire from="(760,1010)" to="(790,1010)"/> <wire from="(760,1020)" to="(780,1020)"/> <wire from="(760,320)" to="(820,320)"/> <wire from="(760,330)" to="(790,330)"/> <wire from="(760,340)" to="(780,340)"/> <wire from="(760,350)" to="(770,350)"/> <wire from="(760,360)" to="(760,400)"/> <wire from="(760,400)" to="(820,400)"/> <wire from="(760,540)" to="(820,540)"/> <wire from="(760,550)" to="(790,550)"/> <wire from="(760,560)" to="(780,560)"/> <wire from="(760,570)" to="(770,570)"/> <wire from="(760,580)" to="(760,620)"/> <wire from="(760,620)" to="(820,620)"/> <wire from="(760,760)" to="(820,760)"/> <wire from="(760,770)" to="(790,770)"/> <wire from="(760,780)" to="(780,780)"/> <wire from="(760,790)" to="(770,790)"/> <wire from="(760,800)" to="(760,840)"/> <wire from="(760,840)" to="(820,840)"/> <wire from="(760,980)" to="(820,980)"/> <wire from="(760,990)" to="(810,990)"/> <wire from="(770,350)" to="(770,380)"/> <wire from="(770,380)" to="(820,380)"/> <wire from="(770,440)" to="(770,500)"/> <wire from="(770,570)" to="(770,600)"/> <wire from="(770,600)" to="(820,600)"/> <wire from="(770,790)" to="(770,820)"/> <wire from="(770,820)" to="(820,820)"/> <wire from="(770,880)" to="(770,1180)"/> <wire from="(780,1020)" to="(780,1060)"/> <wire from="(780,1060)" to="(820,1060)"/> <wire from="(780,340)" to="(780,360)"/> <wire from="(780,360)" to="(820,360)"/> <wire from="(780,560)" to="(780,580)"/> <wire from="(780,580)" to="(820,580)"/> <wire from="(780,780)" to="(780,800)"/> <wire from="(780,800)" to="(820,800)"/> <wire from="(790,1010)" to="(790,1040)"/> <wire from="(790,1040)" to="(820,1040)"/> <wire from="(790,1100)" to="(790,1190)"/> <wire from="(790,330)" to="(790,340)"/> <wire from="(790,340)" to="(820,340)"/> <wire from="(790,420)" to="(820,420)"/> <wire from="(790,430)" to="(790,440)"/> <wire from="(790,440)" to="(820,440)"/> <wire from="(790,550)" to="(790,560)"/> <wire from="(790,560)" to="(820,560)"/> <wire from="(790,640)" to="(820,640)"/> <wire from="(790,650)" to="(790,660)"/> <wire from="(790,660)" to="(820,660)"/> <wire from="(790,770)" to="(790,780)"/> <wire from="(790,780)" to="(820,780)"/> <wire from="(790,860)" to="(820,860)"/> <wire from="(790,870)" to="(790,880)"/> <wire from="(790,880)" to="(820,880)"/> <wire from="(80,490)" to="(80,590)"/> <wire from="(80,590)" to="(200,590)"/> <wire from="(800,1000)" to="(800,1020)"/> <wire from="(800,1020)" to="(820,1020)"/> <wire from="(810,1000)" to="(820,1000)"/> <wire from="(810,1080)" to="(820,1080)"/> <wire from="(810,1090)" to="(810,1100)"/> <wire from="(810,1100)" to="(820,1100)"/> <wire from="(810,300)" to="(810,520)"/> <wire from="(810,300)" to="(820,300)"/> <wire from="(810,50)" to="(1050,50)"/> <wire from="(810,50)" to="(810,300)"/> <wire from="(810,520)" to="(810,740)"/> <wire from="(810,520)" to="(820,520)"/> <wire from="(810,740)" to="(810,960)"/> <wire from="(810,740)" to="(820,740)"/> <wire from="(810,960)" to="(820,960)"/> <wire from="(810,990)" to="(810,1000)"/> <wire from="(90,480)" to="(90,560)"/> <wire from="(90,560)" to="(200,560)"/> </circuit> <circuit name="FIFO_CounterControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_CounterControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZH"/> </comp> <comp lib="0" loc="(170,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(170,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(170,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Carry"/> </comp> <comp lib="0" loc="(170,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(610,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="UPD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(610,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="STEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(610,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_xEN"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(330,220)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,300)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,230)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,290)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(500,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(395,315)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="ZH_FF"/> </comp> <comp loc="(540,280)" name="DLatch"> <a name="label" val="en_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,130)" to="(260,130)"/> <wire from="(170,170)" to="(200,170)"/> <wire from="(170,230)" to="(220,230)"/> <wire from="(170,260)" to="(260,260)"/> <wire from="(170,50)" to="(250,50)"/> <wire from="(170,80)" to="(270,80)"/> <wire from="(200,170)" to="(200,330)"/> <wire from="(200,330)" to="(450,330)"/> <wire from="(220,170)" to="(220,230)"/> <wire from="(220,170)" to="(550,170)"/> <wire from="(250,290)" to="(300,290)"/> <wire from="(250,50)" to="(250,290)"/> <wire from="(250,50)" to="(440,50)"/> <wire from="(260,130)" to="(260,220)"/> <wire from="(260,220)" to="(290,220)"/> <wire from="(260,230)" to="(260,260)"/> <wire from="(260,230)" to="(290,230)"/> <wire from="(260,260)" to="(260,310)"/> <wire from="(260,310)" to="(300,310)"/> <wire from="(270,210)" to="(290,210)"/> <wire from="(270,80)" to="(270,210)"/> <wire from="(270,80)" to="(530,80)"/> <wire from="(330,220)" to="(380,220)"/> <wire from="(330,300)" to="(380,300)"/> <wire from="(370,240)" to="(370,260)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(370,260)" to="(430,260)"/> <wire from="(370,270)" to="(370,280)"/> <wire from="(370,270)" to="(440,270)"/> <wire from="(370,280)" to="(380,280)"/> <wire from="(420,230)" to="(440,230)"/> <wire from="(420,290)" to="(430,290)"/> <wire from="(430,260)" to="(430,290)"/> <wire from="(430,290)" to="(460,290)"/> <wire from="(440,210)" to="(460,210)"/> <wire from="(440,230)" to="(440,270)"/> <wire from="(440,230)" to="(460,230)"/> <wire from="(440,50)" to="(440,210)"/> <wire from="(440,50)" to="(550,50)"/> <wire from="(450,310)" to="(450,330)"/> <wire from="(450,310)" to="(460,310)"/> <wire from="(500,220)" to="(540,220)"/> <wire from="(500,300)" to="(540,300)"/> <wire from="(530,280)" to="(540,280)"/> <wire from="(530,80)" to="(530,280)"/> <wire from="(530,80)" to="(550,80)"/> <wire from="(540,190)" to="(540,220)"/> <wire from="(540,190)" to="(550,190)"/> <wire from="(540,220)" to="(610,220)"/> <wire from="(580,300)" to="(610,300)"/> <wire from="(590,180)" to="(610,180)"/> </circuit> <circuit name="FIFO_CounterBit"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_CounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(170,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Clock"/> </comp> <comp lib="0" loc="(170,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(180,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(180,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry_in"/> </comp> <comp lib="0" loc="(240,130)" name="NoConnect"/> <comp lib="0" loc="(410,200)" name="Constant"/> <comp lib="0" loc="(680,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="carry_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(680,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(600,290)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(660,280)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(280,140)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(330,150)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(380,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(550,210)" name="Multiplexer"/> <comp lib="4" loc="(420,150)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp loc="(240,190)" name="DLatch"> <a name="label" val="step_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,100)" to="(310,100)"/> <wire from="(170,40)" to="(210,40)"/> <wire from="(170,70)" to="(260,70)"/> <wire from="(180,150)" to="(250,150)"/> <wire from="(180,290)" to="(530,290)"/> <wire from="(210,190)" to="(240,190)"/> <wire from="(210,210)" to="(210,250)"/> <wire from="(210,210)" to="(240,210)"/> <wire from="(210,250)" to="(570,250)"/> <wire from="(210,40)" to="(210,190)"/> <wire from="(210,40)" to="(360,40)"/> <wire from="(240,130)" to="(250,130)"/> <wire from="(260,70)" to="(260,120)"/> <wire from="(280,140)" to="(300,140)"/> <wire from="(280,210)" to="(290,210)"/> <wire from="(290,160)" to="(290,210)"/> <wire from="(290,160)" to="(300,160)"/> <wire from="(310,100)" to="(310,130)"/> <wire from="(330,150)" to="(350,150)"/> <wire from="(330,170)" to="(330,230)"/> <wire from="(330,170)" to="(350,170)"/> <wire from="(330,230)" to="(490,230)"/> <wire from="(360,40)" to="(360,140)"/> <wire from="(380,160)" to="(410,160)"/> <wire from="(470,160)" to="(490,160)"/> <wire from="(470,200)" to="(500,200)"/> <wire from="(490,160)" to="(490,220)"/> <wire from="(490,220)" to="(490,230)"/> <wire from="(490,220)" to="(520,220)"/> <wire from="(490,230)" to="(490,270)"/> <wire from="(490,270)" to="(620,270)"/> <wire from="(490,80)" to="(490,160)"/> <wire from="(490,80)" to="(680,80)"/> <wire from="(500,110)" to="(500,200)"/> <wire from="(500,110)" to="(680,110)"/> <wire from="(500,200)" to="(520,200)"/> <wire from="(530,230)" to="(530,290)"/> <wire from="(530,290)" to="(580,290)"/> <wire from="(550,210)" to="(570,210)"/> <wire from="(570,210)" to="(570,250)"/> <wire from="(600,290)" to="(620,290)"/> <wire from="(660,280)" to="(680,280)"/> </circuit> <circuit name="FIFO_DownCounter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_DownCounter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="CarryOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(110,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="UPD"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(140,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,790)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(270,160)" name="Constant"/> <comp lib="0" loc="(540,680)" name="NoConnect"/> <comp lib="1" loc="(670,160)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp loc="(540,220)" name="FIFO_CounterBit"/> <comp loc="(540,360)" name="FIFO_CounterBit"/> <comp loc="(540,500)" name="FIFO_CounterBit"/> <comp loc="(540,640)" name="FIFO_CounterBit"/> <comp loc="(540,80)" name="FIFO_CounterBit"> <a name="labelloc" val="south"/> </comp> <comp loc="(970,230)" name="FIFO_CounterBit"/> <comp loc="(970,380)" name="FIFO_CounterBit"/> <comp loc="(970,80)" name="FIFO_CounterBit"/> <wire from="(110,100)" to="(160,100)"/> <wire from="(110,40)" to="(140,40)"/> <wire from="(110,70)" to="(150,70)"/> <wire from="(140,20)" to="(140,40)"/> <wire from="(140,20)" to="(310,20)"/> <wire from="(140,790)" to="(170,790)"/> <wire from="(150,30)" to="(150,70)"/> <wire from="(150,30)" to="(300,30)"/> <wire from="(160,40)" to="(160,100)"/> <wire from="(160,40)" to="(290,40)"/> <wire from="(190,140)" to="(190,710)"/> <wire from="(190,140)" to="(320,140)"/> <wire from="(190,720)" to="(200,720)"/> <wire from="(190,730)" to="(210,730)"/> <wire from="(190,740)" to="(220,740)"/> <wire from="(190,750)" to="(230,750)"/> <wire from="(190,760)" to="(220,760)"/> <wire from="(190,770)" to="(210,770)"/> <wire from="(190,780)" to="(200,780)"/> <wire from="(200,280)" to="(200,720)"/> <wire from="(200,280)" to="(320,280)"/> <wire from="(200,780)" to="(200,810)"/> <wire from="(200,810)" to="(720,810)"/> <wire from="(210,420)" to="(210,730)"/> <wire from="(210,420)" to="(320,420)"/> <wire from="(210,770)" to="(210,800)"/> <wire from="(210,800)" to="(700,800)"/> <wire from="(220,560)" to="(220,740)"/> <wire from="(220,560)" to="(320,560)"/> <wire from="(220,760)" to="(220,790)"/> <wire from="(220,790)" to="(690,790)"/> <wire from="(230,700)" to="(230,750)"/> <wire from="(230,700)" to="(320,700)"/> <wire from="(270,160)" to="(320,160)"/> <wire from="(280,200)" to="(280,300)"/> <wire from="(280,200)" to="(540,200)"/> <wire from="(280,300)" to="(320,300)"/> <wire from="(280,340)" to="(280,440)"/> <wire from="(280,340)" to="(540,340)"/> <wire from="(280,440)" to="(320,440)"/> <wire from="(280,480)" to="(280,580)"/> <wire from="(280,480)" to="(540,480)"/> <wire from="(280,580)" to="(320,580)"/> <wire from="(280,620)" to="(280,720)"/> <wire from="(280,620)" to="(540,620)"/> <wire from="(280,720)" to="(320,720)"/> <wire from="(290,120)" to="(290,260)"/> <wire from="(290,120)" to="(320,120)"/> <wire from="(290,260)" to="(290,400)"/> <wire from="(290,260)" to="(320,260)"/> <wire from="(290,40)" to="(290,120)"/> <wire from="(290,40)" to="(720,40)"/> <wire from="(290,400)" to="(290,540)"/> <wire from="(290,400)" to="(320,400)"/> <wire from="(290,540)" to="(290,680)"/> <wire from="(290,540)" to="(320,540)"/> <wire from="(290,680)" to="(320,680)"/> <wire from="(300,100)" to="(300,240)"/> <wire from="(300,100)" to="(320,100)"/> <wire from="(300,240)" to="(300,380)"/> <wire from="(300,240)" to="(320,240)"/> <wire from="(300,30)" to="(300,100)"/> <wire from="(300,30)" to="(730,30)"/> <wire from="(300,380)" to="(300,520)"/> <wire from="(300,380)" to="(320,380)"/> <wire from="(300,520)" to="(300,660)"/> <wire from="(300,520)" to="(320,520)"/> <wire from="(300,660)" to="(320,660)"/> <wire from="(310,20)" to="(310,80)"/> <wire from="(310,20)" to="(740,20)"/> <wire from="(310,220)" to="(310,360)"/> <wire from="(310,220)" to="(320,220)"/> <wire from="(310,360)" to="(310,500)"/> <wire from="(310,360)" to="(320,360)"/> <wire from="(310,500)" to="(310,640)"/> <wire from="(310,500)" to="(320,500)"/> <wire from="(310,640)" to="(320,640)"/> <wire from="(310,80)" to="(310,220)"/> <wire from="(310,80)" to="(320,80)"/> <wire from="(540,120)" to="(540,200)"/> <wire from="(540,220)" to="(570,220)"/> <wire from="(540,260)" to="(540,340)"/> <wire from="(540,360)" to="(580,360)"/> <wire from="(540,400)" to="(540,480)"/> <wire from="(540,500)" to="(590,500)"/> <wire from="(540,540)" to="(540,620)"/> <wire from="(540,640)" to="(600,640)"/> <wire from="(540,80)" to="(590,80)"/> <wire from="(570,150)" to="(570,220)"/> <wire from="(570,150)" to="(610,150)"/> <wire from="(580,160)" to="(580,360)"/> <wire from="(580,160)" to="(610,160)"/> <wire from="(590,140)" to="(610,140)"/> <wire from="(590,170)" to="(590,500)"/> <wire from="(590,170)" to="(610,170)"/> <wire from="(590,80)" to="(590,140)"/> <wire from="(600,180)" to="(600,640)"/> <wire from="(600,180)" to="(610,180)"/> <wire from="(670,160)" to="(750,160)"/> <wire from="(690,140)" to="(690,790)"/> <wire from="(690,140)" to="(750,140)"/> <wire from="(700,290)" to="(700,800)"/> <wire from="(700,290)" to="(750,290)"/> <wire from="(710,200)" to="(710,310)"/> <wire from="(710,200)" to="(970,200)"/> <wire from="(710,310)" to="(750,310)"/> <wire from="(710,350)" to="(710,460)"/> <wire from="(710,350)" to="(970,350)"/> <wire from="(710,460)" to="(750,460)"/> <wire from="(720,120)" to="(720,270)"/> <wire from="(720,120)" to="(750,120)"/> <wire from="(720,270)" to="(720,420)"/> <wire from="(720,270)" to="(750,270)"/> <wire from="(720,40)" to="(720,120)"/> <wire from="(720,40)" to="(960,40)"/> <wire from="(720,420)" to="(750,420)"/> <wire from="(720,440)" to="(720,810)"/> <wire from="(720,440)" to="(750,440)"/> <wire from="(730,100)" to="(730,250)"/> <wire from="(730,100)" to="(750,100)"/> <wire from="(730,250)" to="(730,400)"/> <wire from="(730,250)" to="(750,250)"/> <wire from="(730,30)" to="(730,100)"/> <wire from="(730,30)" to="(960,30)"/> <wire from="(730,400)" to="(750,400)"/> <wire from="(740,20)" to="(740,80)"/> <wire from="(740,20)" to="(960,20)"/> <wire from="(740,230)" to="(740,380)"/> <wire from="(740,230)" to="(750,230)"/> <wire from="(740,380)" to="(750,380)"/> <wire from="(740,80)" to="(740,230)"/> <wire from="(740,80)" to="(750,80)"/> <wire from="(970,120)" to="(970,200)"/> <wire from="(970,270)" to="(970,350)"/> <wire from="(970,420)" to="(1000,420)"/> </circuit> <circuit name="FIFO_LaneControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_LaneControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_xEN"/> </comp> <comp lib="0" loc="(170,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="HSel"/> </comp> <comp lib="0" loc="(170,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(170,580)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH3"/> </comp> <comp lib="0" loc="(170,610)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH5"/> </comp> <comp lib="0" loc="(170,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH7"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(240,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(240,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(260,120)" name="NoConnect"/> <comp lib="0" loc="(260,130)" name="NoConnect"/> <comp lib="0" loc="(260,140)" name="NoConnect"/> <comp lib="0" loc="(630,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_COL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_COL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_PRIO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SR_EN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="LOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T_SR0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(630,650)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="T_SR1"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(620,420)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,500)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,550)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,600)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(620,650)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="8" loc="(160,235)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="5: Priority (0: in front of background; 1: behind background)"/> </comp> <comp lib="8" loc="(640,490)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="LDAT"/> </comp> <comp lib="8" loc="(85,220)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="0-1: Palette (4 to 7) of sprite"/> </comp> <comp loc="(390,150)" name="DLatch"> <a name="label" val="ob0_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,240)" name="DLatch"> <a name="label" val="ob1_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,320)" name="DLatch"> <a name="label" val="ob5_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(390,480)" name="DLatch"> <a name="label" val="hsel_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,150)" name="DLatch"> <a name="label" val="ob0_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,240)" name="DLatch"> <a name="label" val="ob1_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,320)" name="DLatch"> <a name="label" val="ob5_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(170,430)" to="(580,430)"/> <wire from="(170,500)" to="(390,500)"/> <wire from="(170,550)" to="(520,550)"/> <wire from="(170,580)" to="(530,580)"/> <wire from="(170,610)" to="(580,610)"/> <wire from="(170,640)" to="(530,640)"/> <wire from="(170,80)" to="(360,80)"/> <wire from="(260,100)" to="(340,100)"/> <wire from="(260,110)" to="(330,110)"/> <wire from="(260,150)" to="(320,150)"/> <wire from="(320,150)" to="(320,340)"/> <wire from="(320,340)" to="(390,340)"/> <wire from="(330,110)" to="(330,260)"/> <wire from="(330,260)" to="(390,260)"/> <wire from="(340,100)" to="(340,170)"/> <wire from="(340,170)" to="(390,170)"/> <wire from="(360,480)" to="(390,480)"/> <wire from="(360,80)" to="(360,480)"/> <wire from="(360,80)" to="(470,80)"/> <wire from="(380,150)" to="(380,240)"/> <wire from="(380,150)" to="(390,150)"/> <wire from="(380,240)" to="(380,320)"/> <wire from="(380,240)" to="(390,240)"/> <wire from="(380,320)" to="(380,450)"/> <wire from="(380,320)" to="(390,320)"/> <wire from="(380,450)" to="(660,450)"/> <wire from="(430,170)" to="(480,170)"/> <wire from="(430,260)" to="(480,260)"/> <wire from="(430,340)" to="(480,340)"/> <wire from="(430,500)" to="(540,500)"/> <wire from="(470,150)" to="(470,240)"/> <wire from="(470,150)" to="(480,150)"/> <wire from="(470,240)" to="(470,320)"/> <wire from="(470,240)" to="(480,240)"/> <wire from="(470,320)" to="(480,320)"/> <wire from="(470,80)" to="(470,150)"/> <wire from="(470,80)" to="(550,80)"/> <wire from="(520,170)" to="(630,170)"/> <wire from="(520,260)" to="(630,260)"/> <wire from="(520,340)" to="(630,340)"/> <wire from="(520,510)" to="(520,550)"/> <wire from="(520,510)" to="(580,510)"/> <wire from="(530,560)" to="(530,580)"/> <wire from="(530,560)" to="(580,560)"/> <wire from="(530,640)" to="(530,660)"/> <wire from="(530,660)" to="(580,660)"/> <wire from="(540,500)" to="(540,550)"/> <wire from="(540,500)" to="(580,500)"/> <wire from="(540,550)" to="(540,600)"/> <wire from="(540,550)" to="(580,550)"/> <wire from="(540,600)" to="(540,650)"/> <wire from="(540,600)" to="(580,600)"/> <wire from="(540,650)" to="(580,650)"/> <wire from="(550,410)" to="(550,490)"/> <wire from="(550,410)" to="(580,410)"/> <wire from="(550,490)" to="(550,540)"/> <wire from="(550,490)" to="(580,490)"/> <wire from="(550,540)" to="(550,590)"/> <wire from="(550,540)" to="(580,540)"/> <wire from="(550,590)" to="(550,640)"/> <wire from="(550,590)" to="(580,590)"/> <wire from="(550,640)" to="(580,640)"/> <wire from="(550,80)" to="(550,410)"/> <wire from="(550,80)" to="(590,80)"/> <wire from="(620,420)" to="(630,420)"/> <wire from="(620,500)" to="(660,500)"/> <wire from="(620,550)" to="(630,550)"/> <wire from="(620,600)" to="(630,600)"/> <wire from="(620,650)" to="(630,650)"/> <wire from="(660,450)" to="(660,500)"/> </circuit> <circuit name="FIFO_SRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="FIFO_SRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T_SR"/> </comp> <comp lib="0" loc="(150,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SR_EN"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nTx"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="shift_in"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(210,170)" name="NoConnect"/> <comp lib="0" loc="(340,230)" name="Constant"/> <comp lib="0" loc="(510,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="shift_out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(250,180)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,190)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="4" loc="(350,180)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(165,125)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Step"/> </comp> <comp lib="8" loc="(170,95)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Load"/> </comp> <comp loc="(440,210)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,100)" to="(230,100)"/> <wire from="(150,130)" to="(290,130)"/> <wire from="(150,190)" to="(220,190)"/> <wire from="(150,220)" to="(270,220)"/> <wire from="(150,50)" to="(430,50)"/> <wire from="(210,170)" to="(220,170)"/> <wire from="(230,100)" to="(230,160)"/> <wire from="(250,180)" to="(280,180)"/> <wire from="(270,200)" to="(270,220)"/> <wire from="(270,200)" to="(280,200)"/> <wire from="(290,130)" to="(290,170)"/> <wire from="(310,190)" to="(340,190)"/> <wire from="(400,230)" to="(440,230)"/> <wire from="(430,210)" to="(440,210)"/> <wire from="(430,50)" to="(430,210)"/> <wire from="(480,230)" to="(510,230)"/> </circuit> <circuit name="FIFO_PairedSR"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_PairedSR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1020,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1020,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1200,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1200,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1380,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1380,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1560,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1560,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1730,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_COL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1730,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_COL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(190,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T_SR0"/> </comp> <comp lib="0" loc="(190,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="T_SR1"/> </comp> <comp lib="0" loc="(190,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SR_EN"/> </comp> <comp lib="0" loc="(190,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(200,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_Tx"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(220,260)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(220,480)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(230,60)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(270,130)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(300,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(300,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(340,140)" name="Constant"/> <comp lib="0" loc="(340,360)" name="Constant"/> <comp lib="0" loc="(480,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(480,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(660,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(660,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(840,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(840,350)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp loc="(1170,100)" name="FIFO_SRBit"/> <comp loc="(1170,320)" name="FIFO_SRBit"/> <comp loc="(1350,100)" name="FIFO_SRBit"/> <comp loc="(1350,320)" name="FIFO_SRBit"/> <comp loc="(1530,100)" name="FIFO_SRBit"/> <comp loc="(1530,320)" name="FIFO_SRBit"/> <comp loc="(1710,100)" name="FIFO_SRBit"/> <comp loc="(1710,320)" name="FIFO_SRBit"/> <comp loc="(450,100)" name="FIFO_SRBit"/> <comp loc="(450,320)" name="FIFO_SRBit"/> <comp loc="(630,100)" name="FIFO_SRBit"/> <comp loc="(630,320)" name="FIFO_SRBit"/> <comp loc="(810,100)" name="FIFO_SRBit"/> <comp loc="(810,320)" name="FIFO_SRBit"/> <comp loc="(990,100)" name="FIFO_SRBit"/> <comp loc="(990,320)" name="FIFO_SRBit"/> <wire from="(1000,100)" to="(1000,140)"/> <wire from="(1000,140)" to="(1060,140)"/> <wire from="(1000,320)" to="(1000,360)"/> <wire from="(1000,360)" to="(1060,360)"/> <wire from="(1010,130)" to="(1020,130)"/> <wire from="(1010,280)" to="(1010,350)"/> <wire from="(1010,280)" to="(1190,280)"/> <wire from="(1010,350)" to="(1020,350)"/> <wire from="(1010,60)" to="(1010,130)"/> <wire from="(1010,60)" to="(1190,60)"/> <wire from="(1040,100)" to="(1060,100)"/> <wire from="(1040,110)" to="(1060,110)"/> <wire from="(1040,120)" to="(1060,120)"/> <wire from="(1040,130)" to="(1040,220)"/> <wire from="(1040,130)" to="(1060,130)"/> <wire from="(1040,320)" to="(1060,320)"/> <wire from="(1040,330)" to="(1060,330)"/> <wire from="(1040,340)" to="(1060,340)"/> <wire from="(1040,350)" to="(1040,440)"/> <wire from="(1040,350)" to="(1060,350)"/> <wire from="(1170,100)" to="(1180,100)"/> <wire from="(1170,320)" to="(1180,320)"/> <wire from="(1180,100)" to="(1180,140)"/> <wire from="(1180,140)" to="(1240,140)"/> <wire from="(1180,320)" to="(1180,360)"/> <wire from="(1180,360)" to="(1240,360)"/> <wire from="(1190,130)" to="(1200,130)"/> <wire from="(1190,280)" to="(1190,350)"/> <wire from="(1190,280)" to="(1370,280)"/> <wire from="(1190,350)" to="(1200,350)"/> <wire from="(1190,60)" to="(1190,130)"/> <wire from="(1190,60)" to="(1370,60)"/> <wire from="(1220,100)" to="(1240,100)"/> <wire from="(1220,110)" to="(1240,110)"/> <wire from="(1220,120)" to="(1240,120)"/> <wire from="(1220,130)" to="(1220,230)"/> <wire from="(1220,130)" to="(1240,130)"/> <wire from="(1220,320)" to="(1240,320)"/> <wire from="(1220,330)" to="(1240,330)"/> <wire from="(1220,340)" to="(1240,340)"/> <wire from="(1220,350)" to="(1220,450)"/> <wire from="(1220,350)" to="(1240,350)"/> <wire from="(1350,100)" to="(1360,100)"/> <wire from="(1350,320)" to="(1360,320)"/> <wire from="(1360,100)" to="(1360,140)"/> <wire from="(1360,140)" to="(1420,140)"/> <wire from="(1360,320)" to="(1360,360)"/> <wire from="(1360,360)" to="(1420,360)"/> <wire from="(1370,130)" to="(1380,130)"/> <wire from="(1370,280)" to="(1370,350)"/> <wire from="(1370,280)" to="(1550,280)"/> <wire from="(1370,350)" to="(1380,350)"/> <wire from="(1370,60)" to="(1370,130)"/> <wire from="(1370,60)" to="(1550,60)"/> <wire from="(1400,100)" to="(1420,100)"/> <wire from="(1400,110)" to="(1420,110)"/> <wire from="(1400,120)" to="(1420,120)"/> <wire from="(1400,130)" to="(1400,240)"/> <wire from="(1400,130)" to="(1420,130)"/> <wire from="(1400,320)" to="(1420,320)"/> <wire from="(1400,330)" to="(1420,330)"/> <wire from="(1400,340)" to="(1420,340)"/> <wire from="(1400,350)" to="(1400,460)"/> <wire from="(1400,350)" to="(1420,350)"/> <wire from="(1530,100)" to="(1540,100)"/> <wire from="(1530,320)" to="(1540,320)"/> <wire from="(1540,100)" to="(1540,140)"/> <wire from="(1540,140)" to="(1600,140)"/> <wire from="(1540,320)" to="(1540,360)"/> <wire from="(1540,360)" to="(1600,360)"/> <wire from="(1550,130)" to="(1560,130)"/> <wire from="(1550,280)" to="(1550,350)"/> <wire from="(1550,280)" to="(1720,280)"/> <wire from="(1550,350)" to="(1560,350)"/> <wire from="(1550,60)" to="(1550,130)"/> <wire from="(1550,60)" to="(1720,60)"/> <wire from="(1580,100)" to="(1600,100)"/> <wire from="(1580,110)" to="(1600,110)"/> <wire from="(1580,120)" to="(1600,120)"/> <wire from="(1580,130)" to="(1580,250)"/> <wire from="(1580,130)" to="(1600,130)"/> <wire from="(1580,320)" to="(1600,320)"/> <wire from="(1580,330)" to="(1600,330)"/> <wire from="(1580,340)" to="(1600,340)"/> <wire from="(1580,350)" to="(1580,470)"/> <wire from="(1580,350)" to="(1600,350)"/> <wire from="(1710,100)" to="(1730,100)"/> <wire from="(1710,320)" to="(1730,320)"/> <wire from="(190,100)" to="(200,100)"/> <wire from="(190,130)" to="(230,130)"/> <wire from="(190,160)" to="(210,160)"/> <wire from="(190,70)" to="(210,70)"/> <wire from="(200,260)" to="(210,260)"/> <wire from="(200,80)" to="(200,100)"/> <wire from="(200,80)" to="(210,80)"/> <wire from="(210,160)" to="(250,160)"/> <wire from="(210,260)" to="(210,480)"/> <wire from="(210,260)" to="(220,260)"/> <wire from="(210,40)" to="(210,70)"/> <wire from="(210,40)" to="(250,40)"/> <wire from="(210,480)" to="(220,480)"/> <wire from="(210,90)" to="(210,160)"/> <wire from="(230,130)" to="(230,150)"/> <wire from="(230,150)" to="(250,150)"/> <wire from="(230,60)" to="(290,60)"/> <wire from="(240,180)" to="(320,180)"/> <wire from="(240,190)" to="(500,190)"/> <wire from="(240,200)" to="(680,200)"/> <wire from="(240,210)" to="(860,210)"/> <wire from="(240,220)" to="(1040,220)"/> <wire from="(240,230)" to="(1220,230)"/> <wire from="(240,240)" to="(1400,240)"/> <wire from="(240,250)" to="(1580,250)"/> <wire from="(240,400)" to="(320,400)"/> <wire from="(240,410)" to="(500,410)"/> <wire from="(240,420)" to="(680,420)"/> <wire from="(240,430)" to="(860,430)"/> <wire from="(240,440)" to="(1040,440)"/> <wire from="(240,450)" to="(1220,450)"/> <wire from="(240,460)" to="(1400,460)"/> <wire from="(240,470)" to="(1580,470)"/> <wire from="(250,40)" to="(250,140)"/> <wire from="(270,130)" to="(280,130)"/> <wire from="(280,130)" to="(280,280)"/> <wire from="(280,280)" to="(290,280)"/> <wire from="(290,130)" to="(300,130)"/> <wire from="(290,280)" to="(290,350)"/> <wire from="(290,280)" to="(470,280)"/> <wire from="(290,350)" to="(300,350)"/> <wire from="(290,60)" to="(290,130)"/> <wire from="(290,60)" to="(470,60)"/> <wire from="(320,100)" to="(340,100)"/> <wire from="(320,110)" to="(340,110)"/> <wire from="(320,120)" to="(340,120)"/> <wire from="(320,130)" to="(320,180)"/> <wire from="(320,130)" to="(340,130)"/> <wire from="(320,320)" to="(340,320)"/> <wire from="(320,330)" to="(340,330)"/> <wire from="(320,340)" to="(340,340)"/> <wire from="(320,350)" to="(320,400)"/> <wire from="(320,350)" to="(340,350)"/> <wire from="(450,100)" to="(460,100)"/> <wire from="(450,320)" to="(460,320)"/> <wire from="(460,100)" to="(460,140)"/> <wire from="(460,140)" to="(520,140)"/> <wire from="(460,320)" to="(460,360)"/> <wire from="(460,360)" to="(520,360)"/> <wire from="(470,130)" to="(480,130)"/> <wire from="(470,280)" to="(470,350)"/> <wire from="(470,280)" to="(650,280)"/> <wire from="(470,350)" to="(480,350)"/> <wire from="(470,60)" to="(470,130)"/> <wire from="(470,60)" to="(650,60)"/> <wire from="(500,100)" to="(520,100)"/> <wire from="(500,110)" to="(520,110)"/> <wire from="(500,120)" to="(520,120)"/> <wire from="(500,130)" to="(500,190)"/> <wire from="(500,130)" to="(520,130)"/> <wire from="(500,320)" to="(520,320)"/> <wire from="(500,330)" to="(520,330)"/> <wire from="(500,340)" to="(520,340)"/> <wire from="(500,350)" to="(500,410)"/> <wire from="(500,350)" to="(520,350)"/> <wire from="(630,100)" to="(640,100)"/> <wire from="(630,320)" to="(640,320)"/> <wire from="(640,100)" to="(640,140)"/> <wire from="(640,140)" to="(700,140)"/> <wire from="(640,320)" to="(640,360)"/> <wire from="(640,360)" to="(700,360)"/> <wire from="(650,130)" to="(660,130)"/> <wire from="(650,280)" to="(650,350)"/> <wire from="(650,280)" to="(830,280)"/> <wire from="(650,350)" to="(660,350)"/> <wire from="(650,60)" to="(650,130)"/> <wire from="(650,60)" to="(830,60)"/> <wire from="(680,100)" to="(700,100)"/> <wire from="(680,110)" to="(700,110)"/> <wire from="(680,120)" to="(700,120)"/> <wire from="(680,130)" to="(680,200)"/> <wire from="(680,130)" to="(700,130)"/> <wire from="(680,320)" to="(700,320)"/> <wire from="(680,330)" to="(700,330)"/> <wire from="(680,340)" to="(700,340)"/> <wire from="(680,350)" to="(680,420)"/> <wire from="(680,350)" to="(700,350)"/> <wire from="(810,100)" to="(820,100)"/> <wire from="(810,320)" to="(820,320)"/> <wire from="(820,100)" to="(820,140)"/> <wire from="(820,140)" to="(880,140)"/> <wire from="(820,320)" to="(820,360)"/> <wire from="(820,360)" to="(880,360)"/> <wire from="(830,130)" to="(840,130)"/> <wire from="(830,280)" to="(1010,280)"/> <wire from="(830,280)" to="(830,350)"/> <wire from="(830,350)" to="(840,350)"/> <wire from="(830,60)" to="(1010,60)"/> <wire from="(830,60)" to="(830,130)"/> <wire from="(860,100)" to="(880,100)"/> <wire from="(860,110)" to="(880,110)"/> <wire from="(860,120)" to="(880,120)"/> <wire from="(860,130)" to="(860,210)"/> <wire from="(860,130)" to="(880,130)"/> <wire from="(860,320)" to="(880,320)"/> <wire from="(860,330)" to="(880,330)"/> <wire from="(860,340)" to="(880,340)"/> <wire from="(860,350)" to="(860,430)"/> <wire from="(860,350)" to="(880,350)"/> <wire from="(990,100)" to="(1000,100)"/> <wire from="(990,320)" to="(1000,320)"/> </circuit> <circuit name="FIFO_Priority"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="FIFO_Priority"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1010,480)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1030,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1030,590)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1030,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1070,520)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1090,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1090,630)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1090,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1130,560)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1150,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1150,670)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1150,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1190,600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1210,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1210,710)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1210,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(1250,640)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1270,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1270,750)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(1270,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(130,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(130,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLPO"/> </comp> <comp lib="0" loc="(1310,680)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1330,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(1390,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ZOut"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(180,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane0"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane1"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane2"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane3"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane4"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane5"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane6"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(180,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Lane7"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,170)" name="Tunnel"> <a name="label" val="Lane0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,200)" name="Tunnel"> <a name="label" val="Lane1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,230)" name="Tunnel"> <a name="label" val="Lane2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,260)" name="Tunnel"> <a name="label" val="Lane3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,290)" name="Tunnel"> <a name="label" val="Lane4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,320)" name="Tunnel"> <a name="label" val="Lane5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,350)" name="Tunnel"> <a name="label" val="Lane6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(190,380)" name="Tunnel"> <a name="label" val="Lane7"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(320,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane7"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(330,180)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,270)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,340)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,410)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,500)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,610)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,720)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(330,830)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(360,850)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(380,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(380,860)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,710)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,870)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(420,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(420,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(420,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(440,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(440,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(440,890)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(450,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(450,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(450,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(450,540)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(460,900)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(480,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(480,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(480,910)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,240)" name="Tunnel"> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,310)" name="Tunnel"> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,390)" name="Tunnel"> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,480)" name="Tunnel"> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,600)" name="Tunnel"> <a name="label" val="Z5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,710)" name="Tunnel"> <a name="label" val="Z6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,830)" name="Tunnel"> <a name="label" val="Z7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(600,170)" name="Tunnel"> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,390)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(730,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(730,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(730,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(730,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,620)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(790,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SPR0HIT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(830,300)" name="Constant"/> <comp lib="0" loc="(830,320)" name="Constant"/> <comp lib="0" loc="(850,470)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(850,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane7"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(870,380)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(890,400)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(910,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(910,510)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(910,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="0" loc="(950,440)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(970,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Z6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(970,550)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(970,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="Lane5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="6"/> </comp> <comp lib="1" loc="(400,130)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,220)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,290)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,360)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,450)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,560)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,670)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,780)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,170)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(580,240)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(580,310)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(580,390)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,480)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,600)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,710)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,830)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(840,660)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(870,660)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(1000,430)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1060,470)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1120,510)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1180,550)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1240,590)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1300,630)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(1360,670)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="2" loc="(940,390)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="5"/> </comp> <comp lib="8" loc="(935,280)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="/COL0-1 are set to 1 if no Z0-7 output is selected."/> </comp> <comp lib="8" loc="(970,250)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="COL2-3 and PRIO are not specifically set if Z0-7 is not selected, so they are effectively stored as latches on the MUX inputs."/> </comp> <comp loc="(660,60)" name="DLatch"> <a name="label" val="s0_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,310)" name="DLatch"> <a name="label" val="col2_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,380)" name="DLatch"> <a name="label" val="col3_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,450)" name="DLatch"> <a name="label" val="prio_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,430)" to="(1020,430)"/> <wire from="(1010,480)" to="(1030,480)"/> <wire from="(1020,430)" to="(1020,460)"/> <wire from="(1020,460)" to="(1030,460)"/> <wire from="(1030,410)" to="(1040,410)"/> <wire from="(1040,410)" to="(1040,450)"/> <wire from="(1060,470)" to="(1080,470)"/> <wire from="(1070,520)" to="(1090,520)"/> <wire from="(1080,470)" to="(1080,500)"/> <wire from="(1080,500)" to="(1090,500)"/> <wire from="(1090,450)" to="(1100,450)"/> <wire from="(1100,450)" to="(1100,490)"/> <wire from="(1120,510)" to="(1140,510)"/> <wire from="(1130,560)" to="(1150,560)"/> <wire from="(1140,510)" to="(1140,540)"/> <wire from="(1140,540)" to="(1150,540)"/> <wire from="(1150,490)" to="(1160,490)"/> <wire from="(1160,490)" to="(1160,530)"/> <wire from="(1180,550)" to="(1200,550)"/> <wire from="(1190,600)" to="(1210,600)"/> <wire from="(1200,550)" to="(1200,580)"/> <wire from="(1200,580)" to="(1210,580)"/> <wire from="(1210,530)" to="(1220,530)"/> <wire from="(1220,530)" to="(1220,570)"/> <wire from="(1240,590)" to="(1260,590)"/> <wire from="(1250,640)" to="(1270,640)"/> <wire from="(1260,590)" to="(1260,620)"/> <wire from="(1260,620)" to="(1270,620)"/> <wire from="(1270,570)" to="(1280,570)"/> <wire from="(1280,570)" to="(1280,610)"/> <wire from="(130,60)" to="(660,60)"/> <wire from="(130,90)" to="(490,90)"/> <wire from="(1300,630)" to="(1320,630)"/> <wire from="(1310,680)" to="(1330,680)"/> <wire from="(1320,630)" to="(1320,660)"/> <wire from="(1320,660)" to="(1330,660)"/> <wire from="(1330,610)" to="(1340,610)"/> <wire from="(1340,610)" to="(1340,650)"/> <wire from="(1360,670)" to="(1370,670)"/> <wire from="(1370,670)" to="(1370,780)"/> <wire from="(1370,670)" to="(1390,670)"/> <wire from="(180,170)" to="(190,170)"/> <wire from="(180,200)" to="(190,200)"/> <wire from="(180,230)" to="(190,230)"/> <wire from="(180,260)" to="(190,260)"/> <wire from="(180,290)" to="(190,290)"/> <wire from="(180,320)" to="(190,320)"/> <wire from="(180,350)" to="(190,350)"/> <wire from="(180,380)" to="(190,380)"/> <wire from="(320,180)" to="(330,180)"/> <wire from="(320,270)" to="(330,270)"/> <wire from="(320,340)" to="(330,340)"/> <wire from="(320,410)" to="(330,410)"/> <wire from="(320,500)" to="(330,500)"/> <wire from="(320,610)" to="(330,610)"/> <wire from="(320,720)" to="(330,720)"/> <wire from="(320,830)" to="(330,830)"/> <wire from="(350,120)" to="(370,120)"/> <wire from="(350,130)" to="(360,130)"/> <wire from="(350,170)" to="(370,170)"/> <wire from="(350,210)" to="(370,210)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,260)" to="(370,260)"/> <wire from="(350,280)" to="(370,280)"/> <wire from="(350,290)" to="(360,290)"/> <wire from="(350,330)" to="(520,330)"/> <wire from="(350,350)" to="(370,350)"/> <wire from="(350,360)" to="(360,360)"/> <wire from="(350,400)" to="(370,400)"/> <wire from="(350,440)" to="(370,440)"/> <wire from="(350,450)" to="(360,450)"/> <wire from="(350,490)" to="(370,490)"/> <wire from="(350,550)" to="(370,550)"/> <wire from="(350,560)" to="(360,560)"/> <wire from="(350,600)" to="(370,600)"/> <wire from="(350,660)" to="(370,660)"/> <wire from="(350,670)" to="(360,670)"/> <wire from="(350,710)" to="(360,710)"/> <wire from="(350,770)" to="(370,770)"/> <wire from="(350,780)" to="(360,780)"/> <wire from="(350,820)" to="(370,820)"/> <wire from="(360,130)" to="(360,140)"/> <wire from="(360,140)" to="(370,140)"/> <wire from="(360,220)" to="(360,230)"/> <wire from="(360,230)" to="(370,230)"/> <wire from="(360,290)" to="(360,300)"/> <wire from="(360,300)" to="(370,300)"/> <wire from="(360,360)" to="(360,370)"/> <wire from="(360,370)" to="(370,370)"/> <wire from="(360,450)" to="(360,460)"/> <wire from="(360,460)" to="(370,460)"/> <wire from="(360,560)" to="(360,570)"/> <wire from="(360,570)" to="(370,570)"/> <wire from="(360,670)" to="(360,680)"/> <wire from="(360,680)" to="(370,680)"/> <wire from="(360,690)" to="(360,710)"/> <wire from="(360,690)" to="(500,690)"/> <wire from="(360,780)" to="(360,790)"/> <wire from="(360,790)" to="(370,790)"/> <wire from="(360,850)" to="(430,850)"/> <wire from="(370,170)" to="(370,180)"/> <wire from="(370,180)" to="(540,180)"/> <wire from="(370,250)" to="(370,260)"/> <wire from="(370,250)" to="(520,250)"/> <wire from="(370,380)" to="(370,400)"/> <wire from="(370,380)" to="(500,380)"/> <wire from="(370,470)" to="(370,490)"/> <wire from="(370,470)" to="(500,470)"/> <wire from="(370,580)" to="(370,600)"/> <wire from="(370,580)" to="(500,580)"/> <wire from="(370,800)" to="(370,820)"/> <wire from="(370,800)" to="(500,800)"/> <wire from="(380,700)" to="(500,700)"/> <wire from="(380,860)" to="(440,860)"/> <wire from="(400,130)" to="(470,130)"/> <wire from="(400,220)" to="(520,220)"/> <wire from="(400,290)" to="(520,290)"/> <wire from="(400,360)" to="(500,360)"/> <wire from="(400,450)" to="(500,450)"/> <wire from="(400,560)" to="(500,560)"/> <wire from="(400,600)" to="(430,600)"/> <wire from="(400,670)" to="(500,670)"/> <wire from="(400,710)" to="(500,710)"/> <wire from="(400,780)" to="(500,780)"/> <wire from="(400,870)" to="(450,870)"/> <wire from="(420,610)" to="(500,610)"/> <wire from="(420,720)" to="(500,720)"/> <wire from="(420,880)" to="(460,880)"/> <wire from="(430,590)" to="(430,600)"/> <wire from="(430,590)" to="(500,590)"/> <wire from="(430,810)" to="(430,850)"/> <wire from="(430,810)" to="(500,810)"/> <wire from="(440,620)" to="(500,620)"/> <wire from="(440,730)" to="(500,730)"/> <wire from="(440,820)" to="(440,860)"/> <wire from="(440,820)" to="(500,820)"/> <wire from="(440,890)" to="(470,890)"/> <wire from="(450,480)" to="(500,480)"/> <wire from="(450,500)" to="(460,500)"/> <wire from="(450,520)" to="(470,520)"/> <wire from="(450,540)" to="(480,540)"/> <wire from="(450,840)" to="(450,870)"/> <wire from="(450,840)" to="(500,840)"/> <wire from="(460,260)" to="(520,260)"/> <wire from="(460,300)" to="(470,300)"/> <wire from="(460,320)" to="(520,320)"/> <wire from="(460,390)" to="(470,390)"/> <wire from="(460,410)" to="(500,410)"/> <wire from="(460,430)" to="(470,430)"/> <wire from="(460,490)" to="(460,500)"/> <wire from="(460,490)" to="(500,490)"/> <wire from="(460,630)" to="(500,630)"/> <wire from="(460,740)" to="(500,740)"/> <wire from="(460,850)" to="(460,880)"/> <wire from="(460,850)" to="(500,850)"/> <wire from="(460,900)" to="(480,900)"/> <wire from="(470,130)" to="(470,160)"/> <wire from="(470,160)" to="(540,160)"/> <wire from="(470,300)" to="(470,310)"/> <wire from="(470,310)" to="(520,310)"/> <wire from="(470,390)" to="(470,400)"/> <wire from="(470,400)" to="(500,400)"/> <wire from="(470,420)" to="(470,430)"/> <wire from="(470,420)" to="(500,420)"/> <wire from="(470,500)" to="(470,520)"/> <wire from="(470,500)" to="(500,500)"/> <wire from="(470,860)" to="(470,890)"/> <wire from="(470,860)" to="(500,860)"/> <wire from="(480,510)" to="(480,540)"/> <wire from="(480,510)" to="(500,510)"/> <wire from="(480,640)" to="(500,640)"/> <wire from="(480,750)" to="(500,750)"/> <wire from="(480,870)" to="(480,900)"/> <wire from="(480,870)" to="(500,870)"/> <wire from="(480,910)" to="(490,910)"/> <wire from="(490,170)" to="(490,230)"/> <wire from="(490,170)" to="(540,170)"/> <wire from="(490,230)" to="(490,300)"/> <wire from="(490,230)" to="(520,230)"/> <wire from="(490,300)" to="(490,370)"/> <wire from="(490,300)" to="(520,300)"/> <wire from="(490,370)" to="(490,460)"/> <wire from="(490,370)" to="(500,370)"/> <wire from="(490,460)" to="(490,570)"/> <wire from="(490,460)" to="(500,460)"/> <wire from="(490,570)" to="(490,680)"/> <wire from="(490,570)" to="(500,570)"/> <wire from="(490,680)" to="(490,790)"/> <wire from="(490,680)" to="(500,680)"/> <wire from="(490,790)" to="(500,790)"/> <wire from="(490,880)" to="(490,910)"/> <wire from="(490,880)" to="(500,880)"/> <wire from="(490,90)" to="(490,170)"/> <wire from="(580,170)" to="(590,170)"/> <wire from="(580,240)" to="(590,240)"/> <wire from="(580,310)" to="(590,310)"/> <wire from="(580,390)" to="(590,390)"/> <wire from="(580,480)" to="(590,480)"/> <wire from="(580,600)" to="(590,600)"/> <wire from="(580,710)" to="(590,710)"/> <wire from="(580,830)" to="(590,830)"/> <wire from="(590,170)" to="(600,170)"/> <wire from="(590,80)" to="(590,170)"/> <wire from="(590,80)" to="(660,80)"/> <wire from="(670,390)" to="(670,780)"/> <wire from="(670,780)" to="(1370,780)"/> <wire from="(690,360)" to="(710,360)"/> <wire from="(690,370)" to="(710,370)"/> <wire from="(690,380)" to="(700,380)"/> <wire from="(700,380)" to="(700,470)"/> <wire from="(700,470)" to="(740,470)"/> <wire from="(700,80)" to="(790,80)"/> <wire from="(710,330)" to="(710,360)"/> <wire from="(710,330)" to="(740,330)"/> <wire from="(710,370)" to="(710,400)"/> <wire from="(710,400)" to="(740,400)"/> <wire from="(730,310)" to="(730,380)"/> <wire from="(730,310)" to="(740,310)"/> <wire from="(730,380)" to="(730,450)"/> <wire from="(730,380)" to="(740,380)"/> <wire from="(730,450)" to="(730,580)"/> <wire from="(730,450)" to="(740,450)"/> <wire from="(730,580)" to="(880,580)"/> <wire from="(730,630)" to="(760,630)"/> <wire from="(730,650)" to="(760,650)"/> <wire from="(730,680)" to="(760,680)"/> <wire from="(730,700)" to="(760,700)"/> <wire from="(750,620)" to="(760,620)"/> <wire from="(750,640)" to="(760,640)"/> <wire from="(750,670)" to="(760,670)"/> <wire from="(750,690)" to="(760,690)"/> <wire from="(780,310)" to="(800,310)"/> <wire from="(780,380)" to="(800,380)"/> <wire from="(780,450)" to="(810,450)"/> <wire from="(800,310)" to="(800,350)"/> <wire from="(800,350)" to="(850,350)"/> <wire from="(800,360)" to="(800,380)"/> <wire from="(800,360)" to="(850,360)"/> <wire from="(810,370)" to="(810,450)"/> <wire from="(810,370)" to="(850,370)"/> <wire from="(830,300)" to="(850,300)"/> <wire from="(830,320)" to="(840,320)"/> <wire from="(840,320)" to="(840,340)"/> <wire from="(840,340)" to="(850,340)"/> <wire from="(840,660)" to="(850,660)"/> <wire from="(850,300)" to="(850,330)"/> <wire from="(870,380)" to="(910,380)"/> <wire from="(870,660)" to="(880,660)"/> <wire from="(880,580)" to="(880,660)"/> <wire from="(890,400)" to="(910,400)"/> <wire from="(910,340)" to="(920,340)"/> <wire from="(920,340)" to="(920,370)"/> <wire from="(940,390)" to="(960,390)"/> <wire from="(950,440)" to="(970,440)"/> <wire from="(960,390)" to="(960,420)"/> <wire from="(960,420)" to="(970,420)"/> <wire from="(970,370)" to="(980,370)"/> <wire from="(980,370)" to="(980,410)"/> </circuit> <circuit name="FIFO_Lane"> <a name="appearance" val="evolution"/> <a name="circuit" val="FIFO_Lane"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(170,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="HSel"/> </comp> <comp lib="0" loc="(170,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(170,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH3"/> </comp> <comp lib="0" loc="(170,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH5"/> </comp> <comp lib="0" loc="(170,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH7"/> </comp> <comp lib="0" loc="(170,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(170,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_ZH"/> </comp> <comp lib="0" loc="(170,540)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(170,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(240,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_Tx"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(240,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(260,220)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(300,130)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(690,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_COL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_COL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_PRIO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_COL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_xEN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(690,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="nZ_COL1"/> <a name="output" val="true"/> </comp> <comp lib="8" loc="(290,730)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="X (Byte 3)"/> </comp> <comp lib="8" loc="(295,270)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Attr (Byte 2)"/> </comp> <comp lib="8" loc="(595,180)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="The value is fed to SR8 in reversed form, because the pixels are output backwards."/> </comp> <comp loc="(610,260)" name="FIFO_LaneControl"/> <comp loc="(610,480)" name="FIFO_CounterControl"/> <comp loc="(610,50)" name="FIFO_PairedSR"/> <comp loc="(610,680)" name="FIFO_DownCounter"/> <wire from="(170,320)" to="(390,320)"/> <wire from="(170,340)" to="(390,340)"/> <wire from="(170,360)" to="(390,360)"/> <wire from="(170,380)" to="(390,380)"/> <wire from="(170,400)" to="(390,400)"/> <wire from="(170,50)" to="(330,50)"/> <wire from="(170,520)" to="(390,520)"/> <wire from="(170,540)" to="(390,540)"/> <wire from="(170,80)" to="(340,80)"/> <wire from="(240,130)" to="(250,130)"/> <wire from="(240,280)" to="(260,280)"/> <wire from="(250,130)" to="(250,220)"/> <wire from="(250,220)" to="(260,220)"/> <wire from="(260,280)" to="(260,740)"/> <wire from="(260,280)" to="(390,280)"/> <wire from="(260,740)" to="(390,740)"/> <wire from="(300,130)" to="(390,130)"/> <wire from="(330,480)" to="(390,480)"/> <wire from="(330,50)" to="(330,480)"/> <wire from="(340,260)" to="(340,500)"/> <wire from="(340,260)" to="(390,260)"/> <wire from="(340,50)" to="(340,80)"/> <wire from="(340,50)" to="(390,50)"/> <wire from="(340,500)" to="(390,500)"/> <wire from="(340,80)" to="(340,260)"/> <wire from="(360,210)" to="(640,210)"/> <wire from="(360,460)" to="(360,560)"/> <wire from="(360,460)" to="(620,460)"/> <wire from="(360,560)" to="(360,700)"/> <wire from="(360,560)" to="(390,560)"/> <wire from="(360,70)" to="(360,210)"/> <wire from="(360,70)" to="(390,70)"/> <wire from="(360,700)" to="(390,700)"/> <wire from="(370,220)" to="(630,220)"/> <wire from="(370,650)" to="(370,720)"/> <wire from="(370,650)" to="(620,650)"/> <wire from="(370,720)" to="(390,720)"/> <wire from="(370,90)" to="(370,220)"/> <wire from="(370,90)" to="(390,90)"/> <wire from="(380,110)" to="(380,230)"/> <wire from="(380,110)" to="(390,110)"/> <wire from="(380,230)" to="(620,230)"/> <wire from="(380,300)" to="(380,440)"/> <wire from="(380,300)" to="(390,300)"/> <wire from="(380,440)" to="(650,440)"/> <wire from="(380,580)" to="(380,630)"/> <wire from="(380,580)" to="(390,580)"/> <wire from="(380,630)" to="(640,630)"/> <wire from="(380,660)" to="(380,680)"/> <wire from="(380,660)" to="(630,660)"/> <wire from="(380,680)" to="(390,680)"/> <wire from="(610,260)" to="(690,260)"/> <wire from="(610,280)" to="(690,280)"/> <wire from="(610,300)" to="(690,300)"/> <wire from="(610,320)" to="(620,320)"/> <wire from="(610,340)" to="(620,340)"/> <wire from="(610,360)" to="(640,360)"/> <wire from="(610,380)" to="(630,380)"/> <wire from="(610,480)" to="(630,480)"/> <wire from="(610,50)" to="(690,50)"/> <wire from="(610,500)" to="(620,500)"/> <wire from="(610,520)" to="(650,520)"/> <wire from="(610,680)" to="(640,680)"/> <wire from="(610,70)" to="(690,70)"/> <wire from="(620,230)" to="(620,320)"/> <wire from="(620,340)" to="(620,460)"/> <wire from="(620,500)" to="(620,650)"/> <wire from="(630,220)" to="(630,380)"/> <wire from="(630,480)" to="(630,660)"/> <wire from="(640,210)" to="(640,360)"/> <wire from="(640,630)" to="(640,680)"/> <wire from="(650,440)" to="(650,520)"/> <wire from="(650,520)" to="(690,520)"/> </circuit> <circuit name="H_Inversion"> <a name="appearance" val="evolution"/> <a name="circuit" val="H_Inversion"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB6"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_FIFO"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(200,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(230,330)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(290,240)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(500,190)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="8"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(590,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_Tx"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="1" loc="(250,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,160)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(580,280)" name="NAND Gate"> <a name="size" val="30"/> <a name="width" val="8"/> </comp> <comp lib="2" loc="(330,120)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(360,300)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="8"/> </comp> <comp lib="8" loc="(225,120)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="6: Flip sprite horizontally"/> </comp> <comp lib="8" loc="(355,215)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="HINV"/> </comp> <comp lib="8" loc="(360,100)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="HINV_FF"/> </comp> <comp loc="(500,290)" name="DLatch_x8"> <a name="label" val="tout_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,130)" to="(300,130)"/> <wire from="(140,190)" to="(450,190)"/> <wire from="(140,70)" to="(160,70)"/> <wire from="(140,90)" to="(210,90)"/> <wire from="(160,230)" to="(380,230)"/> <wire from="(160,70)" to="(160,230)"/> <wire from="(160,70)" to="(210,70)"/> <wire from="(200,330)" to="(210,330)"/> <wire from="(210,330)" to="(210,350)"/> <wire from="(210,330)" to="(230,330)"/> <wire from="(210,350)" to="(310,350)"/> <wire from="(250,250)" to="(270,250)"/> <wire from="(250,260)" to="(270,260)"/> <wire from="(250,270)" to="(270,270)"/> <wire from="(250,280)" to="(270,280)"/> <wire from="(250,290)" to="(270,290)"/> <wire from="(250,300)" to="(270,300)"/> <wire from="(250,310)" to="(270,310)"/> <wire from="(250,320)" to="(270,320)"/> <wire from="(250,80)" to="(310,80)"/> <wire from="(290,110)" to="(290,160)"/> <wire from="(290,110)" to="(300,110)"/> <wire from="(290,160)" to="(360,160)"/> <wire from="(290,240)" to="(300,240)"/> <wire from="(300,240)" to="(300,310)"/> <wire from="(300,310)" to="(330,310)"/> <wire from="(310,290)" to="(310,350)"/> <wire from="(310,290)" to="(330,290)"/> <wire from="(310,80)" to="(310,100)"/> <wire from="(330,120)" to="(340,120)"/> <wire from="(340,120)" to="(340,280)"/> <wire from="(340,120)" to="(360,120)"/> <wire from="(360,300)" to="(390,300)"/> <wire from="(380,120)" to="(390,120)"/> <wire from="(380,160)" to="(390,160)"/> <wire from="(380,230)" to="(380,290)"/> <wire from="(380,290)" to="(390,290)"/> <wire from="(390,120)" to="(390,160)"/> <wire from="(450,160)" to="(450,190)"/> <wire from="(450,160)" to="(480,160)"/> <wire from="(450,190)" to="(460,190)"/> <wire from="(480,160)" to="(480,170)"/> <wire from="(500,190)" to="(530,190)"/> <wire from="(500,290)" to="(540,290)"/> <wire from="(530,190)" to="(530,270)"/> <wire from="(530,270)" to="(540,270)"/> <wire from="(580,280)" to="(590,280)"/> </circuit> <circuit name="SpriteH"> <a name="appearance" val="evolution"/> <a name="circuit" val="SpriteH"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(140,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H1_DD"/> </comp> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H2_DD"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(180,140)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(420,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SH2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(420,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SH3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(420,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SH5"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(420,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SH7"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(400,100)" name="Buffer"/> <comp lib="1" loc="(400,170)" name="Buffer"/> <comp lib="1" loc="(400,240)" name="Buffer"/> <comp lib="1" loc="(400,310)" name="Buffer"/> <comp lib="2" loc="(220,160)" name="Decoder"> <a name="select" val="3"/> <a name="selloc" val="tr"/> </comp> <comp loc="(320,150)" name="DLatch"> <a name="label" val="sh3_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,220)" name="DLatch"> <a name="label" val="sh5_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,290)" name="DLatch"> <a name="label" val="sh7_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(320,80)" name="DLatch"> <a name="label" val="sh2_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,140)" to="(160,140)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(140,180)" to="(160,180)"/> <wire from="(140,60)" to="(310,60)"/> <wire from="(140,90)" to="(210,90)"/> <wire from="(160,140)" to="(160,150)"/> <wire from="(160,170)" to="(160,180)"/> <wire from="(180,140)" to="(220,140)"/> <wire from="(210,90)" to="(210,160)"/> <wire from="(220,140)" to="(220,160)"/> <wire from="(240,180)" to="(270,180)"/> <wire from="(240,190)" to="(280,190)"/> <wire from="(240,210)" to="(280,210)"/> <wire from="(240,230)" to="(270,230)"/> <wire from="(270,100)" to="(270,180)"/> <wire from="(270,100)" to="(320,100)"/> <wire from="(270,230)" to="(270,310)"/> <wire from="(270,310)" to="(320,310)"/> <wire from="(280,170)" to="(280,190)"/> <wire from="(280,170)" to="(320,170)"/> <wire from="(280,210)" to="(280,240)"/> <wire from="(280,240)" to="(320,240)"/> <wire from="(310,150)" to="(310,220)"/> <wire from="(310,150)" to="(320,150)"/> <wire from="(310,220)" to="(310,290)"/> <wire from="(310,220)" to="(320,220)"/> <wire from="(310,290)" to="(320,290)"/> <wire from="(310,60)" to="(310,80)"/> <wire from="(310,80)" to="(310,150)"/> <wire from="(310,80)" to="(320,80)"/> <wire from="(360,100)" to="(380,100)"/> <wire from="(360,170)" to="(380,170)"/> <wire from="(360,240)" to="(380,240)"/> <wire from="(360,310)" to="(380,310)"/> <wire from="(400,100)" to="(420,100)"/> <wire from="(400,170)" to="(420,170)"/> <wire from="(400,240)" to="(420,240)"/> <wire from="(400,310)" to="(420,310)"/> </circuit> <circuit name="MotionPictureBuffer"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="MotionPictureBuffer"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(100,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(100,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H1_DD"/> </comp> <comp lib="0" loc="(100,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H2_DD"/> </comp> <comp lib="0" loc="(100,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H3_DD"/> </comp> <comp lib="0" loc="(100,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H4_DD"/> </comp> <comp lib="0" loc="(100,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H5_DD"/> </comp> <comp lib="0" loc="(110,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Z_HPOS"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_VIS"/> </comp> <comp lib="0" loc="(110,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(1280,370)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1340,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SPR0HIT"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ZCOL0"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ZCOL1"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ZCOL2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="ZCOL3"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,420)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_ZPRIO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(1340,740)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_SH2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(170,680)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_FIFO"/> </comp> <comp lib="0" loc="(170,710)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLPO"/> </comp> <comp lib="0" loc="(190,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(200,480)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="south"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(260,220)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(330,300)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(430,180)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(430,330)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(430,570)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(430,720)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(640,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(640,450)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(640,60)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(640,600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(730,180)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(730,330)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(730,570)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(730,720)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(940,210)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(940,450)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(940,60)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(940,600)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="2" loc="(310,160)" name="Decoder"> <a name="enable" val="false"/> <a name="select" val="3"/> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(215,515)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OB6"/> </comp> <comp lib="8" loc="(285,575)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="#0/H"/> </comp> <comp loc="(1260,270)" name="FIFO_Priority"/> <comp loc="(140,560)" name="DLatch"> <a name="label" val="zh_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(230,560)" name="DLatch"> <a name="label" val="zh_latch3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(260,310)" name="SpriteH"/> <comp loc="(360,670)" name="H_Inversion"/> <comp loc="(50,560)" name="DLatch"> <a name="label" val="zh_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(610,220)" name="FIFO_Lane"/> <comp loc="(610,460)" name="FIFO_Lane"/> <comp loc="(610,610)" name="FIFO_Lane"/> <comp loc="(610,70)" name="FIFO_Lane"/> <comp loc="(910,220)" name="FIFO_Lane"/> <comp loc="(910,460)" name="FIFO_Lane"/> <comp loc="(910,610)" name="FIFO_Lane"/> <comp loc="(910,70)" name="FIFO_Lane"/> <wire from="(100,130)" to="(140,130)"/> <wire from="(100,160)" to="(130,160)"/> <wire from="(100,180)" to="(120,180)"/> <wire from="(100,200)" to="(110,200)"/> <wire from="(100,220)" to="(240,220)"/> <wire from="(100,240)" to="(240,240)"/> <wire from="(100,260)" to="(240,260)"/> <wire from="(1000,330)" to="(1000,760)"/> <wire from="(1000,330)" to="(1040,330)"/> <wire from="(1010,350)" to="(1010,750)"/> <wire from="(1010,350)" to="(1040,350)"/> <wire from="(1020,370)" to="(1020,740)"/> <wire from="(1020,370)" to="(1040,370)"/> <wire from="(1030,10)" to="(1030,270)"/> <wire from="(1030,270)" to="(1040,270)"/> <wire from="(1030,430)" to="(1030,450)"/> <wire from="(1030,430)" to="(1040,430)"/> <wire from="(1040,450)" to="(1040,600)"/> <wire from="(110,200)" to="(110,350)"/> <wire from="(110,350)" to="(160,350)"/> <wire from="(110,380)" to="(120,380)"/> <wire from="(110,40)" to="(250,40)"/> <wire from="(110,400)" to="(300,400)"/> <wire from="(110,70)" to="(150,70)"/> <wire from="(120,180)" to="(120,340)"/> <wire from="(120,340)" to="(160,340)"/> <wire from="(120,380)" to="(120,420)"/> <wire from="(1260,270)" to="(1340,270)"/> <wire from="(1260,290)" to="(1270,290)"/> <wire from="(1270,290)" to="(1270,370)"/> <wire from="(1270,370)" to="(1280,370)"/> <wire from="(1290,740)" to="(1290,800)"/> <wire from="(1290,740)" to="(1340,740)"/> <wire from="(130,160)" to="(130,330)"/> <wire from="(130,330)" to="(160,330)"/> <wire from="(130,500)" to="(130,520)"/> <wire from="(130,520)" to="(310,520)"/> <wire from="(130,530)" to="(130,560)"/> <wire from="(130,530)" to="(340,530)"/> <wire from="(130,560)" to="(140,560)"/> <wire from="(1300,300)" to="(1300,320)"/> <wire from="(1300,300)" to="(1340,300)"/> <wire from="(1300,330)" to="(1340,330)"/> <wire from="(1300,340)" to="(1320,340)"/> <wire from="(1300,350)" to="(1310,350)"/> <wire from="(1300,360)" to="(1300,420)"/> <wire from="(1300,420)" to="(1340,420)"/> <wire from="(1310,350)" to="(1310,390)"/> <wire from="(1310,390)" to="(1340,390)"/> <wire from="(1320,340)" to="(1320,360)"/> <wire from="(1320,360)" to="(1340,360)"/> <wire from="(140,130)" to="(140,320)"/> <wire from="(140,320)" to="(160,320)"/> <wire from="(150,310)" to="(150,430)"/> <wire from="(150,310)" to="(160,310)"/> <wire from="(150,70)" to="(150,310)"/> <wire from="(150,70)" to="(260,70)"/> <wire from="(170,680)" to="(180,680)"/> <wire from="(170,710)" to="(260,710)"/> <wire from="(170,790)" to="(980,790)"/> <wire from="(180,580)" to="(230,580)"/> <wire from="(180,680)" to="(180,700)"/> <wire from="(180,700)" to="(260,700)"/> <wire from="(190,450)" to="(250,450)"/> <wire from="(20,420)" to="(120,420)"/> <wire from="(20,420)" to="(20,580)"/> <wire from="(20,580)" to="(50,580)"/> <wire from="(200,480)" to="(250,480)"/> <wire from="(210,560)" to="(210,610)"/> <wire from="(210,560)" to="(230,560)"/> <wire from="(230,610)" to="(230,690)"/> <wire from="(230,610)" to="(310,610)"/> <wire from="(230,690)" to="(260,690)"/> <wire from="(240,220)" to="(240,230)"/> <wire from="(240,250)" to="(240,260)"/> <wire from="(240,620)" to="(240,680)"/> <wire from="(240,620)" to="(320,620)"/> <wire from="(240,680)" to="(240,800)"/> <wire from="(240,680)" to="(260,680)"/> <wire from="(240,800)" to="(1290,800)"/> <wire from="(250,10)" to="(250,40)"/> <wire from="(250,10)" to="(480,10)"/> <wire from="(250,450)" to="(250,480)"/> <wire from="(250,450)" to="(340,450)"/> <wire from="(250,630)" to="(250,670)"/> <wire from="(250,630)" to="(330,630)"/> <wire from="(250,670)" to="(260,670)"/> <wire from="(260,130)" to="(260,220)"/> <wire from="(260,130)" to="(310,130)"/> <wire from="(260,20)" to="(260,70)"/> <wire from="(260,20)" to="(470,20)"/> <wire from="(260,310)" to="(280,310)"/> <wire from="(260,320)" to="(310,320)"/> <wire from="(260,330)" to="(310,330)"/> <wire from="(260,340)" to="(310,340)"/> <wire from="(270,580)" to="(300,580)"/> <wire from="(280,310)" to="(280,500)"/> <wire from="(280,310)" to="(310,310)"/> <wire from="(280,500)" to="(320,500)"/> <wire from="(290,350)" to="(290,430)"/> <wire from="(290,350)" to="(310,350)"/> <wire from="(290,430)" to="(300,430)"/> <wire from="(30,430)" to="(150,430)"/> <wire from="(30,430)" to="(30,560)"/> <wire from="(30,560)" to="(30,610)"/> <wire from="(30,560)" to="(50,560)"/> <wire from="(30,610)" to="(210,610)"/> <wire from="(300,360)" to="(300,400)"/> <wire from="(300,360)" to="(310,360)"/> <wire from="(300,430)" to="(300,580)"/> <wire from="(310,130)" to="(310,160)"/> <wire from="(310,520)" to="(310,610)"/> <wire from="(320,500)" to="(320,620)"/> <wire from="(330,160)" to="(420,160)"/> <wire from="(330,170)" to="(420,170)"/> <wire from="(330,180)" to="(410,180)"/> <wire from="(330,190)" to="(400,190)"/> <wire from="(330,200)" to="(390,200)"/> <wire from="(330,210)" to="(380,210)"/> <wire from="(330,220)" to="(370,220)"/> <wire from="(330,230)" to="(360,230)"/> <wire from="(330,300)" to="(340,300)"/> <wire from="(330,470)" to="(330,630)"/> <wire from="(330,470)" to="(470,470)"/> <wire from="(340,300)" to="(340,380)"/> <wire from="(340,380)" to="(430,380)"/> <wire from="(340,390)" to="(340,450)"/> <wire from="(340,390)" to="(460,390)"/> <wire from="(340,530)" to="(340,590)"/> <wire from="(340,590)" to="(480,590)"/> <wire from="(350,240)" to="(350,420)"/> <wire from="(350,240)" to="(500,240)"/> <wire from="(350,420)" to="(390,420)"/> <wire from="(350,90)" to="(350,240)"/> <wire from="(350,90)" to="(500,90)"/> <wire from="(360,230)" to="(360,410)"/> <wire from="(360,410)" to="(700,410)"/> <wire from="(360,670)" to="(390,670)"/> <wire from="(370,220)" to="(370,400)"/> <wire from="(370,400)" to="(710,400)"/> <wire from="(380,210)" to="(380,360)"/> <wire from="(380,360)" to="(700,360)"/> <wire from="(390,200)" to="(390,350)"/> <wire from="(390,350)" to="(710,350)"/> <wire from="(390,420)" to="(390,480)"/> <wire from="(390,420)" to="(690,420)"/> <wire from="(390,480)" to="(390,630)"/> <wire from="(390,480)" to="(500,480)"/> <wire from="(390,630)" to="(390,670)"/> <wire from="(390,630)" to="(500,630)"/> <wire from="(400,190)" to="(400,650)"/> <wire from="(400,650)" to="(500,650)"/> <wire from="(410,180)" to="(410,500)"/> <wire from="(410,500)" to="(500,500)"/> <wire from="(420,110)" to="(420,160)"/> <wire from="(420,110)" to="(500,110)"/> <wire from="(420,170)" to="(420,260)"/> <wire from="(420,260)" to="(500,260)"/> <wire from="(430,180)" to="(430,330)"/> <wire from="(430,330)" to="(430,380)"/> <wire from="(430,380)" to="(430,570)"/> <wire from="(430,380)" to="(730,380)"/> <wire from="(430,570)" to="(430,720)"/> <wire from="(450,120)" to="(500,120)"/> <wire from="(450,130)" to="(500,130)"/> <wire from="(450,140)" to="(500,140)"/> <wire from="(450,150)" to="(500,150)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(450,170)" to="(500,170)"/> <wire from="(450,270)" to="(500,270)"/> <wire from="(450,280)" to="(500,280)"/> <wire from="(450,290)" to="(500,290)"/> <wire from="(450,300)" to="(500,300)"/> <wire from="(450,310)" to="(500,310)"/> <wire from="(450,320)" to="(500,320)"/> <wire from="(450,510)" to="(500,510)"/> <wire from="(450,520)" to="(500,520)"/> <wire from="(450,530)" to="(500,530)"/> <wire from="(450,540)" to="(500,540)"/> <wire from="(450,550)" to="(500,550)"/> <wire from="(450,560)" to="(500,560)"/> <wire from="(450,660)" to="(500,660)"/> <wire from="(450,670)" to="(500,670)"/> <wire from="(450,680)" to="(500,680)"/> <wire from="(450,690)" to="(500,690)"/> <wire from="(450,700)" to="(500,700)"/> <wire from="(450,710)" to="(500,710)"/> <wire from="(460,100)" to="(460,250)"/> <wire from="(460,100)" to="(500,100)"/> <wire from="(460,250)" to="(460,390)"/> <wire from="(460,250)" to="(500,250)"/> <wire from="(460,390)" to="(460,490)"/> <wire from="(460,390)" to="(760,390)"/> <wire from="(460,490)" to="(460,640)"/> <wire from="(460,490)" to="(500,490)"/> <wire from="(460,640)" to="(500,640)"/> <wire from="(470,20)" to="(470,80)"/> <wire from="(470,20)" to="(770,20)"/> <wire from="(470,230)" to="(470,470)"/> <wire from="(470,230)" to="(500,230)"/> <wire from="(470,470)" to="(470,620)"/> <wire from="(470,470)" to="(500,470)"/> <wire from="(470,620)" to="(500,620)"/> <wire from="(470,80)" to="(470,230)"/> <wire from="(470,80)" to="(500,80)"/> <wire from="(480,10)" to="(480,70)"/> <wire from="(480,10)" to="(780,10)"/> <wire from="(480,220)" to="(480,460)"/> <wire from="(480,220)" to="(500,220)"/> <wire from="(480,460)" to="(480,590)"/> <wire from="(480,460)" to="(500,460)"/> <wire from="(480,590)" to="(480,610)"/> <wire from="(480,610)" to="(500,610)"/> <wire from="(480,70)" to="(480,220)"/> <wire from="(480,70)" to="(500,70)"/> <wire from="(610,100)" to="(620,100)"/> <wire from="(610,110)" to="(620,110)"/> <wire from="(610,120)" to="(620,120)"/> <wire from="(610,220)" to="(620,220)"/> <wire from="(610,230)" to="(620,230)"/> <wire from="(610,240)" to="(620,240)"/> <wire from="(610,250)" to="(620,250)"/> <wire from="(610,260)" to="(620,260)"/> <wire from="(610,270)" to="(620,270)"/> <wire from="(610,460)" to="(620,460)"/> <wire from="(610,470)" to="(620,470)"/> <wire from="(610,480)" to="(620,480)"/> <wire from="(610,490)" to="(620,490)"/> <wire from="(610,500)" to="(620,500)"/> <wire from="(610,510)" to="(620,510)"/> <wire from="(610,610)" to="(620,610)"/> <wire from="(610,620)" to="(620,620)"/> <wire from="(610,630)" to="(620,630)"/> <wire from="(610,640)" to="(620,640)"/> <wire from="(610,650)" to="(620,650)"/> <wire from="(610,660)" to="(620,660)"/> <wire from="(610,70)" to="(620,70)"/> <wire from="(610,80)" to="(620,80)"/> <wire from="(610,90)" to="(620,90)"/> <wire from="(640,210)" to="(670,210)"/> <wire from="(640,450)" to="(660,450)"/> <wire from="(640,60)" to="(680,60)"/> <wire from="(640,600)" to="(650,600)"/> <wire from="(650,600)" to="(650,740)"/> <wire from="(650,740)" to="(1020,740)"/> <wire from="(660,450)" to="(660,750)"/> <wire from="(660,750)" to="(1010,750)"/> <wire from="(670,210)" to="(670,760)"/> <wire from="(670,760)" to="(1000,760)"/> <wire from="(680,60)" to="(680,770)"/> <wire from="(680,770)" to="(990,770)"/> <wire from="(690,240)" to="(690,420)"/> <wire from="(690,240)" to="(800,240)"/> <wire from="(690,420)" to="(690,480)"/> <wire from="(690,480)" to="(690,630)"/> <wire from="(690,480)" to="(800,480)"/> <wire from="(690,630)" to="(800,630)"/> <wire from="(690,90)" to="(690,240)"/> <wire from="(690,90)" to="(800,90)"/> <wire from="(700,260)" to="(700,360)"/> <wire from="(700,260)" to="(800,260)"/> <wire from="(700,410)" to="(700,650)"/> <wire from="(700,650)" to="(800,650)"/> <wire from="(710,110)" to="(710,350)"/> <wire from="(710,110)" to="(800,110)"/> <wire from="(710,400)" to="(710,500)"/> <wire from="(710,500)" to="(800,500)"/> <wire from="(730,180)" to="(730,330)"/> <wire from="(730,330)" to="(730,380)"/> <wire from="(730,380)" to="(730,570)"/> <wire from="(730,570)" to="(730,720)"/> <wire from="(750,120)" to="(800,120)"/> <wire from="(750,130)" to="(800,130)"/> <wire from="(750,140)" to="(800,140)"/> <wire from="(750,150)" to="(800,150)"/> <wire from="(750,160)" to="(800,160)"/> <wire from="(750,170)" to="(800,170)"/> <wire from="(750,270)" to="(800,270)"/> <wire from="(750,280)" to="(800,280)"/> <wire from="(750,290)" to="(800,290)"/> <wire from="(750,300)" to="(800,300)"/> <wire from="(750,310)" to="(800,310)"/> <wire from="(750,320)" to="(800,320)"/> <wire from="(750,510)" to="(800,510)"/> <wire from="(750,520)" to="(800,520)"/> <wire from="(750,530)" to="(800,530)"/> <wire from="(750,540)" to="(800,540)"/> <wire from="(750,550)" to="(800,550)"/> <wire from="(750,560)" to="(800,560)"/> <wire from="(750,660)" to="(800,660)"/> <wire from="(750,670)" to="(800,670)"/> <wire from="(750,680)" to="(800,680)"/> <wire from="(750,690)" to="(800,690)"/> <wire from="(750,700)" to="(800,700)"/> <wire from="(750,710)" to="(800,710)"/> <wire from="(760,100)" to="(760,250)"/> <wire from="(760,100)" to="(800,100)"/> <wire from="(760,250)" to="(760,390)"/> <wire from="(760,250)" to="(800,250)"/> <wire from="(760,390)" to="(760,490)"/> <wire from="(760,490)" to="(760,640)"/> <wire from="(760,490)" to="(800,490)"/> <wire from="(760,640)" to="(800,640)"/> <wire from="(770,20)" to="(770,80)"/> <wire from="(770,20)" to="(910,20)"/> <wire from="(770,230)" to="(770,470)"/> <wire from="(770,230)" to="(800,230)"/> <wire from="(770,470)" to="(770,620)"/> <wire from="(770,470)" to="(800,470)"/> <wire from="(770,620)" to="(800,620)"/> <wire from="(770,80)" to="(770,230)"/> <wire from="(770,80)" to="(800,80)"/> <wire from="(780,10)" to="(1030,10)"/> <wire from="(780,10)" to="(780,70)"/> <wire from="(780,220)" to="(780,460)"/> <wire from="(780,220)" to="(800,220)"/> <wire from="(780,460)" to="(780,610)"/> <wire from="(780,460)" to="(800,460)"/> <wire from="(780,610)" to="(800,610)"/> <wire from="(780,70)" to="(780,220)"/> <wire from="(780,70)" to="(800,70)"/> <wire from="(90,580)" to="(140,580)"/> <wire from="(910,100)" to="(920,100)"/> <wire from="(910,110)" to="(920,110)"/> <wire from="(910,120)" to="(920,120)"/> <wire from="(910,220)" to="(920,220)"/> <wire from="(910,230)" to="(920,230)"/> <wire from="(910,240)" to="(920,240)"/> <wire from="(910,250)" to="(920,250)"/> <wire from="(910,260)" to="(920,260)"/> <wire from="(910,270)" to="(920,270)"/> <wire from="(910,460)" to="(920,460)"/> <wire from="(910,470)" to="(920,470)"/> <wire from="(910,480)" to="(920,480)"/> <wire from="(910,490)" to="(920,490)"/> <wire from="(910,500)" to="(920,500)"/> <wire from="(910,510)" to="(920,510)"/> <wire from="(910,610)" to="(920,610)"/> <wire from="(910,620)" to="(920,620)"/> <wire from="(910,630)" to="(920,630)"/> <wire from="(910,640)" to="(920,640)"/> <wire from="(910,650)" to="(920,650)"/> <wire from="(910,660)" to="(920,660)"/> <wire from="(910,70)" to="(920,70)"/> <wire from="(910,80)" to="(920,80)"/> <wire from="(910,90)" to="(920,90)"/> <wire from="(940,210)" to="(950,210)"/> <wire from="(940,450)" to="(1030,450)"/> <wire from="(940,60)" to="(960,60)"/> <wire from="(940,600)" to="(1040,600)"/> <wire from="(950,210)" to="(950,410)"/> <wire from="(950,410)" to="(1040,410)"/> <wire from="(960,390)" to="(1040,390)"/> <wire from="(960,60)" to="(960,390)"/> <wire from="(980,290)" to="(1040,290)"/> <wire from="(980,290)" to="(980,790)"/> <wire from="(990,310)" to="(1040,310)"/> <wire from="(990,310)" to="(990,770)"/> </circuit> <circuit name="DLatch_x8"> <a name="appearance" val="evolution"/> <a name="circuit" val="DLatch_x8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="enable"/> </comp> <comp lib="0" loc="(190,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(520,100)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(540,340)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(560,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(570,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(300,140)" name="DLatch"/> <comp loc="(300,200)" name="DLatch"/> <comp loc="(300,260)" name="DLatch"/> <comp loc="(300,320)" name="DLatch"/> <comp loc="(300,380)" name="DLatch"/> <comp loc="(300,440)" name="DLatch"/> <comp loc="(300,500)" name="DLatch"/> <comp loc="(300,80)" name="DLatch"/> <wire from="(140,50)" to="(290,50)"/> <wire from="(210,100)" to="(210,240)"/> <wire from="(210,100)" to="(300,100)"/> <wire from="(210,250)" to="(220,250)"/> <wire from="(210,260)" to="(230,260)"/> <wire from="(210,270)" to="(270,270)"/> <wire from="(210,280)" to="(260,280)"/> <wire from="(210,290)" to="(250,290)"/> <wire from="(210,300)" to="(240,300)"/> <wire from="(210,310)" to="(230,310)"/> <wire from="(220,160)" to="(220,250)"/> <wire from="(220,160)" to="(300,160)"/> <wire from="(230,220)" to="(230,260)"/> <wire from="(230,220)" to="(300,220)"/> <wire from="(230,310)" to="(230,520)"/> <wire from="(230,520)" to="(300,520)"/> <wire from="(240,300)" to="(240,460)"/> <wire from="(240,460)" to="(300,460)"/> <wire from="(250,290)" to="(250,400)"/> <wire from="(250,400)" to="(300,400)"/> <wire from="(260,280)" to="(260,340)"/> <wire from="(260,340)" to="(300,340)"/> <wire from="(270,270)" to="(270,280)"/> <wire from="(270,280)" to="(300,280)"/> <wire from="(290,140)" to="(290,200)"/> <wire from="(290,140)" to="(300,140)"/> <wire from="(290,200)" to="(290,260)"/> <wire from="(290,200)" to="(300,200)"/> <wire from="(290,260)" to="(290,320)"/> <wire from="(290,260)" to="(300,260)"/> <wire from="(290,320)" to="(290,380)"/> <wire from="(290,320)" to="(300,320)"/> <wire from="(290,380)" to="(290,440)"/> <wire from="(290,380)" to="(300,380)"/> <wire from="(290,440)" to="(290,500)"/> <wire from="(290,440)" to="(300,440)"/> <wire from="(290,50)" to="(290,80)"/> <wire from="(290,500)" to="(300,500)"/> <wire from="(290,80)" to="(290,140)"/> <wire from="(290,80)" to="(300,80)"/> <wire from="(340,100)" to="(390,100)"/> <wire from="(340,140)" to="(410,140)"/> <wire from="(340,160)" to="(370,160)"/> <wire from="(340,200)" to="(420,200)"/> <wire from="(340,220)" to="(500,220)"/> <wire from="(340,260)" to="(430,260)"/> <wire from="(340,280)" to="(490,280)"/> <wire from="(340,320)" to="(440,320)"/> <wire from="(340,340)" to="(480,340)"/> <wire from="(340,380)" to="(450,380)"/> <wire from="(340,400)" to="(520,400)"/> <wire from="(340,440)" to="(460,440)"/> <wire from="(340,460)" to="(510,460)"/> <wire from="(340,500)" to="(470,500)"/> <wire from="(340,520)" to="(520,520)"/> <wire from="(340,80)" to="(470,80)"/> <wire from="(370,160)" to="(370,270)"/> <wire from="(370,270)" to="(510,270)"/> <wire from="(390,100)" to="(390,210)"/> <wire from="(390,210)" to="(520,210)"/> <wire from="(410,120)" to="(410,140)"/> <wire from="(410,120)" to="(500,120)"/> <wire from="(420,130)" to="(420,200)"/> <wire from="(420,130)" to="(500,130)"/> <wire from="(430,140)" to="(430,260)"/> <wire from="(430,140)" to="(500,140)"/> <wire from="(440,150)" to="(440,320)"/> <wire from="(440,150)" to="(500,150)"/> <wire from="(450,160)" to="(450,380)"/> <wire from="(450,160)" to="(500,160)"/> <wire from="(460,170)" to="(460,440)"/> <wire from="(460,170)" to="(500,170)"/> <wire from="(470,110)" to="(500,110)"/> <wire from="(470,180)" to="(470,500)"/> <wire from="(470,180)" to="(500,180)"/> <wire from="(470,80)" to="(470,110)"/> <wire from="(480,340)" to="(480,390)"/> <wire from="(480,390)" to="(520,390)"/> <wire from="(490,280)" to="(490,380)"/> <wire from="(490,380)" to="(520,380)"/> <wire from="(500,220)" to="(500,370)"/> <wire from="(500,370)" to="(520,370)"/> <wire from="(510,270)" to="(510,360)"/> <wire from="(510,360)" to="(520,360)"/> <wire from="(510,410)" to="(510,460)"/> <wire from="(510,410)" to="(520,410)"/> <wire from="(520,100)" to="(560,100)"/> <wire from="(520,210)" to="(520,350)"/> <wire from="(520,420)" to="(520,520)"/> <wire from="(540,340)" to="(570,340)"/> </circuit> <circuit name="StillPictureGen"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="StillPictureGen"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TSTEP"/> </comp> <comp lib="0" loc="(110,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(110,800)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLPB"/> </comp> <comp lib="0" loc="(110,820)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGSEL"/> </comp> <comp lib="0" loc="(110,840)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(110,860)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I1_32"/> </comp> <comp lib="0" loc="(110,880)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp lib="0" loc="(1120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(1130,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGC"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(1130,640)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W5_2"/> </comp> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W6_1"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W6_2"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H1_D"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2_D"/> </comp> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nF_NT"/> </comp> <comp lib="0" loc="(120,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(120,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TA"/> </comp> <comp lib="0" loc="(120,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TB"/> </comp> <comp lib="0" loc="(120,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_FO"/> </comp> <comp lib="0" loc="(120,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(120,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SC_CNT"/> </comp> <comp lib="0" loc="(120,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="E_EV"/> </comp> <comp lib="0" loc="(120,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(120,470)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(120,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(120,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OV"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W0"/> </comp> <comp lib="0" loc="(120,730)" name="Tunnel"> <a name="label" val="TSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,770)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,800)" name="Tunnel"> <a name="label" val="n_CLPB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,820)" name="Tunnel"> <a name="label" val="BGSEL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,840)" name="Tunnel"> <a name="label" val="OBSEL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,860)" name="Tunnel"> <a name="label" val="I1_32"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,880)" name="Tunnel"> <a name="label" val="O8_16"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W5_1"/> </comp> <comp lib="0" loc="(130,200)" name="Tunnel"> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,220)" name="Tunnel"> <a name="label" val="n_H1_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,240)" name="Tunnel"> <a name="label" val="n_H2_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,260)" name="Tunnel"> <a name="label" val="n_SH2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,290)" name="Tunnel"> <a name="label" val="nF_NT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,310)" name="Tunnel"> <a name="label" val="F_AT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,330)" name="Tunnel"> <a name="label" val="F_TA"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,350)" name="Tunnel"> <a name="label" val="F_TB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,370)" name="Tunnel"> <a name="label" val="n_FO"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,390)" name="Tunnel"> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,410)" name="Tunnel"> <a name="label" val="SC_CNT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,430)" name="Tunnel"> <a name="label" val="E_EV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,450)" name="Tunnel"> <a name="label" val="DB_PAR"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,470)" name="Tunnel"> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,490)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,650)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,80)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(230,370)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,390)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="nF_NT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BGSEL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,430)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="OBSEL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,450)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="O8_16"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_SH2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_H1_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(470,430)" name="Splitter"> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(540,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="SC_CNT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,150)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RESCL"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="E_EV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TSTEP"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,210)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="F_TB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,230)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,250)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="I1_32"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_H2_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="F_AT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(750,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB_PAR"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="H0_DD"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,630)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="F_TA"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,650)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="F_TB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,670)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_FO"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,690)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="F_AT"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(840,790)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_CLPB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp loc="(1060,570)" name="BGC_All"/> <comp loc="(1060,70)" name="Par_All"/> <comp loc="(450,350)" name="PatternAddressGen"/> <comp loc="(760,370)" name="ScrollRegs"/> <wire from="(1060,110)" to="(1070,110)"/> <wire from="(1060,130)" to="(1120,130)"/> <wire from="(1060,570)" to="(1130,570)"/> <wire from="(1060,70)" to="(1100,70)"/> <wire from="(1060,90)" to="(1080,90)"/> <wire from="(1070,110)" to="(1070,830)"/> <wire from="(1080,640)" to="(1080,840)"/> <wire from="(1080,640)" to="(1130,640)"/> <wire from="(1080,90)" to="(1080,640)"/> <wire from="(110,730)" to="(120,730)"/> <wire from="(110,770)" to="(120,770)"/> <wire from="(110,800)" to="(120,800)"/> <wire from="(110,820)" to="(120,820)"/> <wire from="(110,840)" to="(120,840)"/> <wire from="(110,860)" to="(120,860)"/> <wire from="(110,880)" to="(120,880)"/> <wire from="(1100,70)" to="(1100,870)"/> <wire from="(120,110)" to="(150,110)"/> <wire from="(120,130)" to="(130,130)"/> <wire from="(120,150)" to="(140,150)"/> <wire from="(120,170)" to="(150,170)"/> <wire from="(120,20)" to="(820,20)"/> <wire from="(120,200)" to="(130,200)"/> <wire from="(120,220)" to="(130,220)"/> <wire from="(120,240)" to="(130,240)"/> <wire from="(120,260)" to="(130,260)"/> <wire from="(120,290)" to="(130,290)"/> <wire from="(120,310)" to="(130,310)"/> <wire from="(120,330)" to="(130,330)"/> <wire from="(120,350)" to="(130,350)"/> <wire from="(120,370)" to="(130,370)"/> <wire from="(120,390)" to="(130,390)"/> <wire from="(120,40)" to="(220,40)"/> <wire from="(120,410)" to="(130,410)"/> <wire from="(120,430)" to="(130,430)"/> <wire from="(120,450)" to="(130,450)"/> <wire from="(120,470)" to="(130,470)"/> <wire from="(120,490)" to="(130,490)"/> <wire from="(120,570)" to="(230,570)"/> <wire from="(120,70)" to="(150,70)"/> <wire from="(120,90)" to="(140,90)"/> <wire from="(130,120)" to="(130,130)"/> <wire from="(130,120)" to="(150,120)"/> <wire from="(140,100)" to="(150,100)"/> <wire from="(140,130)" to="(140,150)"/> <wire from="(140,130)" to="(150,130)"/> <wire from="(140,90)" to="(140,100)"/> <wire from="(150,140)" to="(150,170)"/> <wire from="(150,70)" to="(150,90)"/> <wire from="(160,650)" to="(170,650)"/> <wire from="(160,670)" to="(180,670)"/> <wire from="(160,690)" to="(500,690)"/> <wire from="(170,530)" to="(170,650)"/> <wire from="(170,530)" to="(230,530)"/> <wire from="(170,80)" to="(460,80)"/> <wire from="(180,550)" to="(180,670)"/> <wire from="(180,550)" to="(230,550)"/> <wire from="(180,670)" to="(530,670)"/> <wire from="(220,350)" to="(230,350)"/> <wire from="(220,40)" to="(220,350)"/> <wire from="(220,40)" to="(830,40)"/> <wire from="(220,590)" to="(220,870)"/> <wire from="(220,590)" to="(230,590)"/> <wire from="(220,870)" to="(1100,870)"/> <wire from="(450,350)" to="(840,350)"/> <wire from="(460,430)" to="(470,430)"/> <wire from="(460,80)" to="(460,430)"/> <wire from="(490,370)" to="(540,370)"/> <wire from="(490,380)" to="(530,380)"/> <wire from="(490,390)" to="(520,390)"/> <wire from="(490,400)" to="(510,400)"/> <wire from="(490,410)" to="(500,410)"/> <wire from="(490,420)" to="(490,470)"/> <wire from="(490,470)" to="(540,470)"/> <wire from="(500,410)" to="(500,450)"/> <wire from="(500,450)" to="(540,450)"/> <wire from="(500,510)" to="(500,560)"/> <wire from="(500,510)" to="(540,510)"/> <wire from="(500,560)" to="(500,690)"/> <wire from="(500,560)" to="(800,560)"/> <wire from="(510,400)" to="(510,430)"/> <wire from="(510,430)" to="(540,430)"/> <wire from="(520,390)" to="(520,410)"/> <wire from="(520,410)" to="(540,410)"/> <wire from="(530,380)" to="(530,390)"/> <wire from="(530,390)" to="(540,390)"/> <wire from="(530,670)" to="(530,770)"/> <wire from="(530,770)" to="(840,770)"/> <wire from="(750,130)" to="(840,130)"/> <wire from="(750,150)" to="(840,150)"/> <wire from="(750,170)" to="(840,170)"/> <wire from="(750,190)" to="(840,190)"/> <wire from="(750,210)" to="(840,210)"/> <wire from="(750,230)" to="(840,230)"/> <wire from="(750,250)" to="(840,250)"/> <wire from="(750,270)" to="(840,270)"/> <wire from="(750,290)" to="(840,290)"/> <wire from="(750,310)" to="(840,310)"/> <wire from="(750,330)" to="(840,330)"/> <wire from="(750,710)" to="(750,840)"/> <wire from="(750,710)" to="(840,710)"/> <wire from="(750,840)" to="(1080,840)"/> <wire from="(760,370)" to="(780,370)"/> <wire from="(760,390)" to="(840,390)"/> <wire from="(760,410)" to="(840,410)"/> <wire from="(760,430)" to="(840,430)"/> <wire from="(760,450)" to="(840,450)"/> <wire from="(760,470)" to="(840,470)"/> <wire from="(760,490)" to="(770,490)"/> <wire from="(760,730)" to="(760,830)"/> <wire from="(760,730)" to="(840,730)"/> <wire from="(760,830)" to="(1070,830)"/> <wire from="(770,110)" to="(770,490)"/> <wire from="(770,110)" to="(840,110)"/> <wire from="(780,370)" to="(780,750)"/> <wire from="(780,750)" to="(840,750)"/> <wire from="(800,370)" to="(800,560)"/> <wire from="(800,370)" to="(840,370)"/> <wire from="(820,20)" to="(820,90)"/> <wire from="(820,20)" to="(880,20)"/> <wire from="(820,570)" to="(840,570)"/> <wire from="(820,90)" to="(820,570)"/> <wire from="(820,90)" to="(840,90)"/> <wire from="(830,40)" to="(830,70)"/> <wire from="(830,40)" to="(880,40)"/> <wire from="(830,590)" to="(840,590)"/> <wire from="(830,70)" to="(830,590)"/> <wire from="(830,70)" to="(840,70)"/> </circuit> <circuit name="PatternControl"> <a name="appearance" val="evolution"/> <a name="circuit" val="PatternControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nF_NT"/> </comp> <comp lib="0" loc="(150,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGSEL"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp lib="0" loc="(150,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(150,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(180,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,330)" name="Splitter"> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(560,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAD12"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(560,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="O"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(200,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(280,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,100)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(480,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(350,270)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(430,270)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(295,325)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="0: Bank ($0000 or $1000) of tiles"/> </comp> <comp lib="8" loc="(455,265)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="/PAD12"/> </comp> <comp loc="(230,260)" name="DLatch"> <a name="label" val="ob0_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,80)" name="DLatch"> <a name="label" val="fnt_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,250)" name="DLatch"> <a name="label" val="pad12_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,120)" to="(220,120)"/> <wire from="(150,160)" to="(380,160)"/> <wire from="(150,190)" to="(300,190)"/> <wire from="(150,220)" to="(330,220)"/> <wire from="(150,270)" to="(170,270)"/> <wire from="(150,40)" to="(330,40)"/> <wire from="(150,80)" to="(180,80)"/> <wire from="(170,210)" to="(170,270)"/> <wire from="(170,210)" to="(410,210)"/> <wire from="(200,140)" to="(200,260)"/> <wire from="(200,140)" to="(510,140)"/> <wire from="(200,260)" to="(230,260)"/> <wire from="(200,320)" to="(210,320)"/> <wire from="(200,80)" to="(220,80)"/> <wire from="(210,280)" to="(210,320)"/> <wire from="(210,280)" to="(230,280)"/> <wire from="(220,110)" to="(220,120)"/> <wire from="(220,110)" to="(240,110)"/> <wire from="(220,80)" to="(220,90)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(270,280)" to="(320,280)"/> <wire from="(280,100)" to="(300,100)"/> <wire from="(300,190)" to="(300,260)"/> <wire from="(300,260)" to="(320,260)"/> <wire from="(320,100)" to="(340,100)"/> <wire from="(330,220)" to="(330,250)"/> <wire from="(330,40)" to="(330,80)"/> <wire from="(330,40)" to="(420,40)"/> <wire from="(330,80)" to="(340,80)"/> <wire from="(350,270)" to="(370,270)"/> <wire from="(370,270)" to="(370,280)"/> <wire from="(370,280)" to="(400,280)"/> <wire from="(380,160)" to="(380,260)"/> <wire from="(380,260)" to="(400,260)"/> <wire from="(380,80)" to="(440,80)"/> <wire from="(410,210)" to="(410,250)"/> <wire from="(420,100)" to="(440,100)"/> <wire from="(420,40)" to="(420,100)"/> <wire from="(420,40)" to="(490,40)"/> <wire from="(430,270)" to="(500,270)"/> <wire from="(480,90)" to="(510,90)"/> <wire from="(490,250)" to="(500,250)"/> <wire from="(490,40)" to="(490,250)"/> <wire from="(490,40)" to="(530,40)"/> <wire from="(510,90)" to="(510,140)"/> <wire from="(510,90)" to="(560,90)"/> <wire from="(540,270)" to="(560,270)"/> </circuit> <circuit name="V_Inversion"> <a name="appearance" val="evolution"/> <a name="circuit" val="V_Inversion"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(190,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,220)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(480,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VDIR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(480,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VINV"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(250,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(320,130)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(400,190)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(420,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(380,140)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(260,230)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="7: Flip sprite vertically"/> </comp> <comp lib="8" loc="(405,115)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="VINV_FF"/> </comp> <wire from="(160,100)" to="(180,100)"/> <wire from="(160,60)" to="(180,60)"/> <wire from="(180,50)" to="(180,60)"/> <wire from="(180,50)" to="(360,50)"/> <wire from="(180,60)" to="(180,70)"/> <wire from="(180,70)" to="(210,70)"/> <wire from="(180,90)" to="(180,100)"/> <wire from="(180,90)" to="(210,90)"/> <wire from="(210,210)" to="(260,210)"/> <wire from="(250,80)" to="(310,80)"/> <wire from="(260,130)" to="(260,210)"/> <wire from="(260,130)" to="(300,130)"/> <wire from="(310,80)" to="(310,120)"/> <wire from="(320,130)" to="(350,130)"/> <wire from="(330,150)" to="(330,190)"/> <wire from="(330,150)" to="(350,150)"/> <wire from="(330,190)" to="(370,190)"/> <wire from="(360,50)" to="(360,120)"/> <wire from="(370,190)" to="(370,220)"/> <wire from="(370,190)" to="(400,190)"/> <wire from="(370,220)" to="(480,220)"/> <wire from="(380,140)" to="(400,140)"/> <wire from="(420,140)" to="(440,140)"/> <wire from="(420,190)" to="(440,190)"/> <wire from="(440,140)" to="(440,190)"/> <wire from="(440,140)" to="(480,140)"/> </circuit> <circuit name="PatBitInv"> <a name="appearance" val="evolution"/> <a name="circuit" val="PatBitInv"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="INV"/> </comp> <comp lib="0" loc="(160,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O"/> </comp> <comp lib="0" loc="(530,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(430,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(470,120)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(240,90)" name="DLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(330,90)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,120)" to="(180,120)"/> <wire from="(160,150)" to="(230,150)"/> <wire from="(160,60)" to="(230,60)"/> <wire from="(160,90)" to="(190,90)"/> <wire from="(180,40)" to="(180,120)"/> <wire from="(180,40)" to="(450,40)"/> <wire from="(190,50)" to="(190,90)"/> <wire from="(190,50)" to="(320,50)"/> <wire from="(230,110)" to="(230,150)"/> <wire from="(230,110)" to="(240,110)"/> <wire from="(230,60)" to="(230,90)"/> <wire from="(230,90)" to="(240,90)"/> <wire from="(280,110)" to="(330,110)"/> <wire from="(320,50)" to="(320,90)"/> <wire from="(320,90)" to="(330,90)"/> <wire from="(370,110)" to="(400,110)"/> <wire from="(400,110)" to="(400,130)"/> <wire from="(400,110)" to="(440,110)"/> <wire from="(400,130)" to="(410,130)"/> <wire from="(430,130)" to="(440,130)"/> <wire from="(450,40)" to="(450,100)"/> <wire from="(470,120)" to="(490,120)"/> <wire from="(510,120)" to="(530,120)"/> </circuit> <circuit name="PatBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="PatBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_OB"/> </comp> <comp lib="0" loc="(160,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_PD"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O"/> </comp> <comp lib="0" loc="(610,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PADx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(500,180)" name="Multiplexer"/> <comp loc="(250,200)" name="DLatch"> <a name="label" val="pdin_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,130)" name="DLatch"> <a name="label" val="ob_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,200)" name="DLatch"> <a name="label" val="pdout_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(540,160)" name="DLatch"> <a name="label" val="padx_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(160,150)" to="(350,150)"/> <wire from="(160,220)" to="(170,220)"/> <wire from="(160,270)" to="(480,270)"/> <wire from="(160,60)" to="(240,60)"/> <wire from="(160,90)" to="(340,90)"/> <wire from="(190,220)" to="(250,220)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(240,60)" to="(240,200)"/> <wire from="(240,60)" to="(530,60)"/> <wire from="(290,220)" to="(350,220)"/> <wire from="(340,130)" to="(340,200)"/> <wire from="(340,130)" to="(350,130)"/> <wire from="(340,200)" to="(350,200)"/> <wire from="(340,90)" to="(340,130)"/> <wire from="(390,150)" to="(440,150)"/> <wire from="(390,220)" to="(430,220)"/> <wire from="(430,170)" to="(430,220)"/> <wire from="(430,170)" to="(470,170)"/> <wire from="(440,150)" to="(440,190)"/> <wire from="(440,190)" to="(470,190)"/> <wire from="(480,200)" to="(480,270)"/> <wire from="(500,180)" to="(540,180)"/> <wire from="(530,160)" to="(540,160)"/> <wire from="(530,60)" to="(530,160)"/> <wire from="(580,180)" to="(610,180)"/> </circuit> <circuit name="PatBit4"> <a name="appearance" val="evolution"/> <a name="circuit" val="PatBit4"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp lib="0" loc="(150,380)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_OBPrev"/> </comp> <comp lib="0" loc="(160,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_OB"/> </comp> <comp lib="0" loc="(160,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_PD"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(160,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O"/> </comp> <comp lib="0" loc="(610,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PADx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(190,220)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(240,370)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(500,180)" name="Multiplexer"/> <comp loc="(250,200)" name="DLatch"> <a name="label" val="pdin_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,130)" name="DLatch"> <a name="label" val="ob_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(350,200)" name="DLatch"> <a name="label" val="pdout_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(540,160)" name="DLatch"> <a name="label" val="padx_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,320)" to="(220,320)"/> <wire from="(150,380)" to="(210,380)"/> <wire from="(160,150)" to="(350,150)"/> <wire from="(160,220)" to="(170,220)"/> <wire from="(160,270)" to="(480,270)"/> <wire from="(160,60)" to="(240,60)"/> <wire from="(160,90)" to="(340,90)"/> <wire from="(180,290)" to="(180,360)"/> <wire from="(180,290)" to="(410,290)"/> <wire from="(180,360)" to="(210,360)"/> <wire from="(190,220)" to="(250,220)"/> <wire from="(220,320)" to="(220,350)"/> <wire from="(240,200)" to="(250,200)"/> <wire from="(240,370)" to="(450,370)"/> <wire from="(240,60)" to="(240,200)"/> <wire from="(240,60)" to="(530,60)"/> <wire from="(290,220)" to="(350,220)"/> <wire from="(340,130)" to="(340,200)"/> <wire from="(340,130)" to="(350,130)"/> <wire from="(340,200)" to="(350,200)"/> <wire from="(340,90)" to="(340,130)"/> <wire from="(390,150)" to="(410,150)"/> <wire from="(390,220)" to="(430,220)"/> <wire from="(410,150)" to="(410,290)"/> <wire from="(430,170)" to="(430,220)"/> <wire from="(430,170)" to="(470,170)"/> <wire from="(450,190)" to="(450,370)"/> <wire from="(450,190)" to="(470,190)"/> <wire from="(480,200)" to="(480,270)"/> <wire from="(500,180)" to="(540,180)"/> <wire from="(530,160)" to="(540,160)"/> <wire from="(530,60)" to="(530,160)"/> <wire from="(580,180)" to="(610,180)"/> </circuit> <circuit name="PatternAddressGen"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PatternAddressGen"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1010,520)" name="Splitter"> <a name="bit0" val="12"/> <a name="bit1" val="11"/> <a name="bit10" val="2"/> <a name="bit11" val="1"/> <a name="bit12" val="0"/> <a name="bit2" val="10"/> <a name="bit3" val="9"/> <a name="bit4" val="8"/> <a name="bit5" val="7"/> <a name="bit7" val="5"/> <a name="bit8" val="4"/> <a name="bit9" val="3"/> <a name="facing" val="west"/> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="0" loc="(1020,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAD"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="13"/> </comp> <comp lib="0" loc="(150,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(150,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="nF_NT"/> </comp> <comp lib="0" loc="(150,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGSEL"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OBSEL"/> </comp> <comp lib="0" loc="(150,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="O8_16"/> </comp> <comp lib="0" loc="(150,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_O"/> </comp> <comp lib="0" loc="(150,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SH2"/> </comp> <comp lib="0" loc="(150,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H1_D"/> </comp> <comp lib="0" loc="(160,250)" name="Tunnel"> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,310)" name="Tunnel"> <a name="label" val="n_H1_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(170,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OV"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(170,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_FVO"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="OB"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(190,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_In"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(200,660)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,240)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,940)" name="Splitter"> <a name="bit0" val="3"/> <a name="bit1" val="2"/> <a name="bit2" val="1"/> <a name="bit3" val="0"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(440,490)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(510,320)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(560,980)" name="Splitter"> <a name="bit0" val="2"/> <a name="bit2" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(590,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(620,830)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PAR_O"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(670,870)" name="Splitter"> <a name="bit0" val="2"/> <a name="bit2" val="0"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(890,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_H1_D"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="1" loc="(930,700)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(650,870)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="3"/> </comp> <comp lib="8" loc="(380,235)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit12"/> </comp> <comp lib="8" loc="(410,1055)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit0"/> </comp> <comp lib="8" loc="(410,785)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit3"/> </comp> <comp lib="8" loc="(410,965)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit1"/> </comp> <comp lib="8" loc="(415,875)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit2"/> </comp> <comp lib="8" loc="(425,680)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit4"/> </comp> <comp lib="8" loc="(680,740)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="OB1-7 / PD1-7"/> </comp> <comp lib="8" loc="(720,115)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit11"/> </comp> <comp lib="8" loc="(720,215)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit10"/> </comp> <comp lib="8" loc="(720,315)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit9"/> </comp> <comp lib="8" loc="(720,415)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit8"/> </comp> <comp lib="8" loc="(720,515)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit7"/> </comp> <comp lib="8" loc="(720,615)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit6"/> </comp> <comp lib="8" loc="(720,715)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit5"/> </comp> <comp lib="8" loc="(865,720)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="actual bit3"/> </comp> <comp lib="8" loc="(990,490)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="The address to load the sprite/background tile."/> </comp> <comp loc="(400,160)" name="PatternControl"/> <comp loc="(400,330)" name="V_Inversion"/> <comp loc="(430,1020)" name="PatBitInv"/> <comp loc="(430,750)" name="PatBitInv"/> <comp loc="(430,840)" name="PatBitInv"/> <comp loc="(430,930)" name="PatBitInv"/> <comp loc="(440,620)" name="PatBit4"/> <comp loc="(730,820)" name="DLatch"> <a name="label" val="pad2_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(730,890)" name="DLatch"> <a name="label" val="pad1_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(730,960)" name="DLatch"> <a name="label" val="pad0_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(740,170)" name="PatBit"/> <comp loc="(740,270)" name="PatBit"/> <comp loc="(740,370)" name="PatBit"/> <comp loc="(740,470)" name="PatBit"/> <comp loc="(740,570)" name="PatBit"/> <comp loc="(740,670)" name="PatBit"/> <comp loc="(740,70)" name="PatBit"/> <wire from="(1010,520)" to="(1020,520)"/> <wire from="(150,100)" to="(280,100)"/> <wire from="(150,130)" to="(270,130)"/> <wire from="(150,160)" to="(260,160)"/> <wire from="(150,190)" to="(250,190)"/> <wire from="(150,220)" to="(210,220)"/> <wire from="(150,250)" to="(160,250)"/> <wire from="(150,280)" to="(210,280)"/> <wire from="(150,30)" to="(290,30)"/> <wire from="(150,310)" to="(160,310)"/> <wire from="(170,730)" to="(220,730)"/> <wire from="(170,770)" to="(200,770)"/> <wire from="(190,400)" to="(220,400)"/> <wire from="(190,440)" to="(190,490)"/> <wire from="(190,490)" to="(440,490)"/> <wire from="(200,1080)" to="(590,1080)"/> <wire from="(200,660)" to="(330,660)"/> <wire from="(200,770)" to="(200,1080)"/> <wire from="(210,220)" to="(210,270)"/> <wire from="(210,220)" to="(250,220)"/> <wire from="(210,270)" to="(250,270)"/> <wire from="(210,280)" to="(210,340)"/> <wire from="(210,340)" to="(300,340)"/> <wire from="(220,350)" to="(220,400)"/> <wire from="(220,350)" to="(280,350)"/> <wire from="(220,570)" to="(220,640)"/> <wire from="(220,570)" to="(530,570)"/> <wire from="(220,640)" to="(330,640)"/> <wire from="(220,730)" to="(220,940)"/> <wire from="(220,940)" to="(260,940)"/> <wire from="(230,580)" to="(230,650)"/> <wire from="(230,580)" to="(460,580)"/> <wire from="(230,650)" to="(330,650)"/> <wire from="(250,190)" to="(250,200)"/> <wire from="(250,200)" to="(300,200)"/> <wire from="(250,210)" to="(250,220)"/> <wire from="(250,210)" to="(300,210)"/> <wire from="(250,270)" to="(250,670)"/> <wire from="(250,670)" to="(330,670)"/> <wire from="(250,680)" to="(250,710)"/> <wire from="(250,680)" to="(330,680)"/> <wire from="(250,710)" to="(440,710)"/> <wire from="(260,160)" to="(260,190)"/> <wire from="(260,190)" to="(300,190)"/> <wire from="(260,240)" to="(270,240)"/> <wire from="(270,130)" to="(270,180)"/> <wire from="(270,180)" to="(300,180)"/> <wire from="(270,220)" to="(270,240)"/> <wire from="(270,220)" to="(300,220)"/> <wire from="(280,100)" to="(280,170)"/> <wire from="(280,1050)" to="(330,1050)"/> <wire from="(280,170)" to="(300,170)"/> <wire from="(280,230)" to="(280,280)"/> <wire from="(280,230)" to="(300,230)"/> <wire from="(280,280)" to="(280,350)"/> <wire from="(280,280)" to="(490,280)"/> <wire from="(280,350)" to="(300,350)"/> <wire from="(280,780)" to="(280,900)"/> <wire from="(280,780)" to="(330,780)"/> <wire from="(280,910)" to="(290,910)"/> <wire from="(280,920)" to="(290,920)"/> <wire from="(280,930)" to="(280,1050)"/> <wire from="(290,160)" to="(290,330)"/> <wire from="(290,160)" to="(300,160)"/> <wire from="(290,30)" to="(290,160)"/> <wire from="(290,30)" to="(630,30)"/> <wire from="(290,330)" to="(300,330)"/> <wire from="(290,870)" to="(290,910)"/> <wire from="(290,870)" to="(330,870)"/> <wire from="(290,920)" to="(290,960)"/> <wire from="(290,960)" to="(330,960)"/> <wire from="(300,1040)" to="(330,1040)"/> <wire from="(300,510)" to="(300,770)"/> <wire from="(300,510)" to="(420,510)"/> <wire from="(300,770)" to="(300,860)"/> <wire from="(300,770)" to="(330,770)"/> <wire from="(300,860)" to="(300,950)"/> <wire from="(300,860)" to="(330,860)"/> <wire from="(300,950)" to="(300,1040)"/> <wire from="(300,950)" to="(330,950)"/> <wire from="(310,1030)" to="(330,1030)"/> <wire from="(310,520)" to="(310,630)"/> <wire from="(310,520)" to="(430,520)"/> <wire from="(310,630)" to="(310,760)"/> <wire from="(310,630)" to="(330,630)"/> <wire from="(310,760)" to="(310,850)"/> <wire from="(310,760)" to="(330,760)"/> <wire from="(310,850)" to="(310,940)"/> <wire from="(310,850)" to="(330,850)"/> <wire from="(310,940)" to="(310,1030)"/> <wire from="(310,940)" to="(330,940)"/> <wire from="(320,1020)" to="(330,1020)"/> <wire from="(320,530)" to="(320,620)"/> <wire from="(320,530)" to="(630,530)"/> <wire from="(320,620)" to="(320,750)"/> <wire from="(320,620)" to="(330,620)"/> <wire from="(320,750)" to="(320,840)"/> <wire from="(320,750)" to="(330,750)"/> <wire from="(320,840)" to="(320,930)"/> <wire from="(320,840)" to="(330,840)"/> <wire from="(320,930)" to="(320,1020)"/> <wire from="(320,930)" to="(330,930)"/> <wire from="(400,160)" to="(430,160)"/> <wire from="(400,170)" to="(470,170)"/> <wire from="(400,340)" to="(420,340)"/> <wire from="(420,340)" to="(420,510)"/> <wire from="(430,1020)" to="(540,1020)"/> <wire from="(430,160)" to="(430,520)"/> <wire from="(430,750)" to="(440,750)"/> <wire from="(430,80)" to="(430,160)"/> <wire from="(430,80)" to="(620,80)"/> <wire from="(430,840)" to="(530,840)"/> <wire from="(430,930)" to="(520,930)"/> <wire from="(440,620)" to="(450,620)"/> <wire from="(440,710)" to="(440,750)"/> <wire from="(450,620)" to="(450,760)"/> <wire from="(450,760)" to="(800,760)"/> <wire from="(460,220)" to="(460,410)"/> <wire from="(460,220)" to="(500,220)"/> <wire from="(460,420)" to="(470,420)"/> <wire from="(460,430)" to="(480,430)"/> <wire from="(460,440)" to="(490,440)"/> <wire from="(460,450)" to="(490,450)"/> <wire from="(460,460)" to="(480,460)"/> <wire from="(460,470)" to="(470,470)"/> <wire from="(460,480)" to="(460,580)"/> <wire from="(470,20)" to="(470,170)"/> <wire from="(470,20)" to="(860,20)"/> <wire from="(470,230)" to="(470,420)"/> <wire from="(470,230)" to="(510,230)"/> <wire from="(470,470)" to="(470,700)"/> <wire from="(470,700)" to="(640,700)"/> <wire from="(480,330)" to="(480,430)"/> <wire from="(480,330)" to="(590,330)"/> <wire from="(480,460)" to="(480,600)"/> <wire from="(480,600)" to="(640,600)"/> <wire from="(490,280)" to="(490,320)"/> <wire from="(490,320)" to="(510,320)"/> <wire from="(490,400)" to="(490,440)"/> <wire from="(490,400)" to="(640,400)"/> <wire from="(490,450)" to="(490,500)"/> <wire from="(490,500)" to="(640,500)"/> <wire from="(500,100)" to="(500,220)"/> <wire from="(500,100)" to="(640,100)"/> <wire from="(510,200)" to="(510,230)"/> <wire from="(510,200)" to="(640,200)"/> <wire from="(520,1000)" to="(540,1000)"/> <wire from="(520,930)" to="(520,1000)"/> <wire from="(530,240)" to="(550,240)"/> <wire from="(530,250)" to="(560,250)"/> <wire from="(530,260)" to="(580,260)"/> <wire from="(530,270)" to="(570,270)"/> <wire from="(530,280)" to="(560,280)"/> <wire from="(530,290)" to="(550,290)"/> <wire from="(530,300)" to="(540,300)"/> <wire from="(530,310)" to="(530,570)"/> <wire from="(530,840)" to="(530,990)"/> <wire from="(530,990)" to="(540,990)"/> <wire from="(540,1010)" to="(540,1020)"/> <wire from="(540,300)" to="(540,690)"/> <wire from="(540,690)" to="(640,690)"/> <wire from="(550,290)" to="(550,590)"/> <wire from="(550,590)" to="(640,590)"/> <wire from="(550,90)" to="(550,240)"/> <wire from="(550,90)" to="(640,90)"/> <wire from="(560,190)" to="(560,250)"/> <wire from="(560,190)" to="(640,190)"/> <wire from="(560,280)" to="(560,490)"/> <wire from="(560,490)" to="(640,490)"/> <wire from="(560,880)" to="(560,980)"/> <wire from="(560,880)" to="(620,880)"/> <wire from="(570,270)" to="(570,390)"/> <wire from="(570,390)" to="(640,390)"/> <wire from="(580,260)" to="(580,290)"/> <wire from="(580,290)" to="(640,290)"/> <wire from="(590,300)" to="(590,330)"/> <wire from="(590,300)" to="(640,300)"/> <wire from="(590,60)" to="(610,60)"/> <wire from="(590,860)" to="(590,1080)"/> <wire from="(590,860)" to="(620,860)"/> <wire from="(610,210)" to="(610,310)"/> <wire from="(610,210)" to="(640,210)"/> <wire from="(610,310)" to="(610,410)"/> <wire from="(610,310)" to="(640,310)"/> <wire from="(610,410)" to="(610,510)"/> <wire from="(610,410)" to="(640,410)"/> <wire from="(610,510)" to="(610,610)"/> <wire from="(610,510)" to="(640,510)"/> <wire from="(610,60)" to="(610,210)"/> <wire from="(610,610)" to="(610,710)"/> <wire from="(610,610)" to="(640,610)"/> <wire from="(610,710)" to="(640,710)"/> <wire from="(620,110)" to="(620,180)"/> <wire from="(620,110)" to="(640,110)"/> <wire from="(620,180)" to="(620,280)"/> <wire from="(620,180)" to="(640,180)"/> <wire from="(620,280)" to="(620,380)"/> <wire from="(620,280)" to="(640,280)"/> <wire from="(620,380)" to="(620,480)"/> <wire from="(620,380)" to="(640,380)"/> <wire from="(620,480)" to="(620,580)"/> <wire from="(620,480)" to="(640,480)"/> <wire from="(620,580)" to="(620,680)"/> <wire from="(620,580)" to="(640,580)"/> <wire from="(620,680)" to="(640,680)"/> <wire from="(620,80)" to="(620,110)"/> <wire from="(620,80)" to="(640,80)"/> <wire from="(620,830)" to="(630,830)"/> <wire from="(630,170)" to="(630,270)"/> <wire from="(630,170)" to="(640,170)"/> <wire from="(630,270)" to="(630,370)"/> <wire from="(630,270)" to="(640,270)"/> <wire from="(630,30)" to="(630,70)"/> <wire from="(630,370)" to="(630,470)"/> <wire from="(630,370)" to="(640,370)"/> <wire from="(630,470)" to="(630,530)"/> <wire from="(630,470)" to="(640,470)"/> <wire from="(630,530)" to="(630,570)"/> <wire from="(630,570)" to="(630,670)"/> <wire from="(630,570)" to="(640,570)"/> <wire from="(630,670)" to="(630,800)"/> <wire from="(630,670)" to="(640,670)"/> <wire from="(630,70)" to="(630,170)"/> <wire from="(630,70)" to="(640,70)"/> <wire from="(630,800)" to="(720,800)"/> <wire from="(630,830)" to="(630,850)"/> <wire from="(650,870)" to="(670,870)"/> <wire from="(690,840)" to="(730,840)"/> <wire from="(690,850)" to="(700,850)"/> <wire from="(690,860)" to="(690,980)"/> <wire from="(690,980)" to="(730,980)"/> <wire from="(700,850)" to="(700,910)"/> <wire from="(700,910)" to="(730,910)"/> <wire from="(720,800)" to="(720,820)"/> <wire from="(720,820)" to="(720,890)"/> <wire from="(720,820)" to="(730,820)"/> <wire from="(720,890)" to="(720,960)"/> <wire from="(720,890)" to="(730,890)"/> <wire from="(720,960)" to="(730,960)"/> <wire from="(740,170)" to="(810,170)"/> <wire from="(740,270)" to="(800,270)"/> <wire from="(740,370)" to="(790,370)"/> <wire from="(740,470)" to="(780,470)"/> <wire from="(740,570)" to="(770,570)"/> <wire from="(740,670)" to="(770,670)"/> <wire from="(740,70)" to="(820,70)"/> <wire from="(770,570)" to="(770,590)"/> <wire from="(770,590)" to="(990,590)"/> <wire from="(770,600)" to="(770,670)"/> <wire from="(770,600)" to="(990,600)"/> <wire from="(770,840)" to="(960,840)"/> <wire from="(770,910)" to="(970,910)"/> <wire from="(770,980)" to="(980,980)"/> <wire from="(780,470)" to="(780,580)"/> <wire from="(780,580)" to="(990,580)"/> <wire from="(790,370)" to="(790,570)"/> <wire from="(790,570)" to="(990,570)"/> <wire from="(800,270)" to="(800,560)"/> <wire from="(800,560)" to="(990,560)"/> <wire from="(800,610)" to="(800,760)"/> <wire from="(800,610)" to="(990,610)"/> <wire from="(810,170)" to="(810,550)"/> <wire from="(810,550)" to="(990,550)"/> <wire from="(820,540)" to="(990,540)"/> <wire from="(820,70)" to="(820,540)"/> <wire from="(860,20)" to="(860,530)"/> <wire from="(860,530)" to="(990,530)"/> <wire from="(890,700)" to="(910,700)"/> <wire from="(930,700)" to="(950,700)"/> <wire from="(950,620)" to="(950,700)"/> <wire from="(950,620)" to="(990,620)"/> <wire from="(960,630)" to="(960,840)"/> <wire from="(960,630)" to="(990,630)"/> <wire from="(970,640)" to="(970,910)"/> <wire from="(970,640)" to="(990,640)"/> <wire from="(980,650)" to="(980,980)"/> <wire from="(980,650)" to="(990,650)"/> </circuit> <circuit name="SCC_FF"> <a name="appearance" val="evolution"/> <a name="circuit" val="SCC_FF"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(150,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(360,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(290,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(260,70)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <wire from="(150,120)" to="(170,120)"/> <wire from="(150,60)" to="(230,60)"/> <wire from="(150,90)" to="(170,90)"/> <wire from="(170,120)" to="(170,150)"/> <wire from="(170,150)" to="(250,150)"/> <wire from="(170,30)" to="(170,90)"/> <wire from="(170,30)" to="(240,30)"/> <wire from="(220,100)" to="(310,100)"/> <wire from="(220,110)" to="(220,130)"/> <wire from="(220,110)" to="(320,110)"/> <wire from="(220,130)" to="(250,130)"/> <wire from="(220,80)" to="(220,100)"/> <wire from="(220,80)" to="(230,80)"/> <wire from="(240,30)" to="(240,50)"/> <wire from="(260,70)" to="(280,70)"/> <wire from="(290,140)" to="(310,140)"/> <wire from="(300,70)" to="(320,70)"/> <wire from="(310,100)" to="(310,140)"/> <wire from="(310,140)" to="(360,140)"/> <wire from="(320,70)" to="(320,110)"/> </circuit> <circuit name="Fine_H"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Fine_H"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W5_1"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,100)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,70)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(300,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(530,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(540,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FHx"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="1" loc="(330,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(330,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(470,100)" name="SCC_FF"/> <comp loc="(470,180)" name="SCC_FF"/> <comp loc="(470,260)" name="SCC_FF"/> <wire from="(120,100)" to="(130,100)"/> <wire from="(120,40)" to="(320,40)"/> <wire from="(120,70)" to="(130,70)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(190,100)" to="(190,190)"/> <wire from="(190,100)" to="(310,100)"/> <wire from="(190,200)" to="(200,200)"/> <wire from="(190,210)" to="(210,210)"/> <wire from="(200,180)" to="(200,200)"/> <wire from="(200,180)" to="(310,180)"/> <wire from="(210,210)" to="(210,260)"/> <wire from="(210,260)" to="(310,260)"/> <wire from="(300,120)" to="(340,120)"/> <wire from="(300,140)" to="(350,140)"/> <wire from="(300,200)" to="(340,200)"/> <wire from="(300,220)" to="(350,220)"/> <wire from="(300,280)" to="(340,280)"/> <wire from="(300,300)" to="(350,300)"/> <wire from="(320,170)" to="(320,250)"/> <wire from="(320,40)" to="(320,90)"/> <wire from="(320,90)" to="(320,170)"/> <wire from="(330,100)" to="(370,100)"/> <wire from="(330,180)" to="(370,180)"/> <wire from="(330,260)" to="(370,260)"/> <wire from="(340,110)" to="(340,120)"/> <wire from="(340,110)" to="(370,110)"/> <wire from="(340,190)" to="(340,200)"/> <wire from="(340,190)" to="(370,190)"/> <wire from="(340,270)" to="(340,280)"/> <wire from="(340,270)" to="(370,270)"/> <wire from="(350,120)" to="(350,140)"/> <wire from="(350,120)" to="(370,120)"/> <wire from="(350,200)" to="(350,220)"/> <wire from="(350,200)" to="(370,200)"/> <wire from="(350,280)" to="(350,300)"/> <wire from="(350,280)" to="(370,280)"/> <wire from="(470,100)" to="(500,100)"/> <wire from="(470,180)" to="(510,180)"/> <wire from="(470,260)" to="(500,260)"/> <wire from="(500,100)" to="(500,170)"/> <wire from="(500,170)" to="(510,170)"/> <wire from="(500,190)" to="(500,260)"/> <wire from="(500,190)" to="(510,190)"/> <wire from="(530,160)" to="(540,160)"/> </circuit> <circuit name="Fine_V"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Fine_V"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W5_2"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,110)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,80)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(380,260)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(400,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(630,160)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(640,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FVx"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="1" loc="(350,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(570,100)" name="SCC_FF"/> <comp loc="(570,180)" name="SCC_FF"/> <comp loc="(570,260)" name="SCC_FF"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,20)" to="(340,20)"/> <wire from="(120,50)" to="(420,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(190,190)" to="(200,190)"/> <wire from="(190,200)" to="(210,200)"/> <wire from="(190,210)" to="(280,210)"/> <wire from="(190,230)" to="(250,230)"/> <wire from="(190,240)" to="(260,240)"/> <wire from="(200,80)" to="(200,190)"/> <wire from="(200,80)" to="(330,80)"/> <wire from="(210,160)" to="(210,200)"/> <wire from="(210,160)" to="(330,160)"/> <wire from="(250,100)" to="(250,230)"/> <wire from="(250,100)" to="(410,100)"/> <wire from="(260,180)" to="(260,240)"/> <wire from="(260,180)" to="(410,180)"/> <wire from="(280,210)" to="(280,240)"/> <wire from="(280,240)" to="(330,240)"/> <wire from="(340,150)" to="(340,230)"/> <wire from="(340,20)" to="(340,70)"/> <wire from="(340,70)" to="(340,150)"/> <wire from="(350,160)" to="(440,160)"/> <wire from="(350,240)" to="(440,240)"/> <wire from="(350,80)" to="(440,80)"/> <wire from="(380,260)" to="(410,260)"/> <wire from="(400,120)" to="(440,120)"/> <wire from="(400,140)" to="(450,140)"/> <wire from="(400,200)" to="(440,200)"/> <wire from="(400,220)" to="(450,220)"/> <wire from="(400,280)" to="(440,280)"/> <wire from="(400,300)" to="(450,300)"/> <wire from="(420,170)" to="(420,250)"/> <wire from="(420,50)" to="(420,90)"/> <wire from="(420,90)" to="(420,170)"/> <wire from="(430,100)" to="(440,100)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(430,260)" to="(440,260)"/> <wire from="(440,100)" to="(470,100)"/> <wire from="(440,110)" to="(440,120)"/> <wire from="(440,110)" to="(470,110)"/> <wire from="(440,160)" to="(440,180)"/> <wire from="(440,180)" to="(470,180)"/> <wire from="(440,190)" to="(440,200)"/> <wire from="(440,190)" to="(470,190)"/> <wire from="(440,240)" to="(440,260)"/> <wire from="(440,260)" to="(470,260)"/> <wire from="(440,270)" to="(440,280)"/> <wire from="(440,270)" to="(470,270)"/> <wire from="(440,80)" to="(440,100)"/> <wire from="(450,120)" to="(450,140)"/> <wire from="(450,120)" to="(470,120)"/> <wire from="(450,200)" to="(450,220)"/> <wire from="(450,200)" to="(470,200)"/> <wire from="(450,280)" to="(450,300)"/> <wire from="(450,280)" to="(470,280)"/> <wire from="(570,100)" to="(600,100)"/> <wire from="(570,180)" to="(610,180)"/> <wire from="(570,260)" to="(600,260)"/> <wire from="(600,100)" to="(600,170)"/> <wire from="(600,170)" to="(610,170)"/> <wire from="(600,190)" to="(600,260)"/> <wire from="(600,190)" to="(610,190)"/> <wire from="(630,160)" to="(640,160)"/> </circuit> <circuit name="NT_Select"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="NT_Select"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W0"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,110)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,80)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTV"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(350,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(570,100)" name="SCC_FF"/> <comp loc="(570,180)" name="SCC_FF"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,20)" to="(340,20)"/> <wire from="(120,50)" to="(420,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(190,190)" to="(200,190)"/> <wire from="(190,200)" to="(210,200)"/> <wire from="(190,210)" to="(250,210)"/> <wire from="(190,220)" to="(260,220)"/> <wire from="(200,80)" to="(200,190)"/> <wire from="(200,80)" to="(330,80)"/> <wire from="(210,160)" to="(210,200)"/> <wire from="(210,160)" to="(330,160)"/> <wire from="(250,100)" to="(250,210)"/> <wire from="(250,100)" to="(410,100)"/> <wire from="(260,180)" to="(260,220)"/> <wire from="(260,180)" to="(410,180)"/> <wire from="(340,20)" to="(340,70)"/> <wire from="(340,70)" to="(340,150)"/> <wire from="(350,160)" to="(440,160)"/> <wire from="(350,80)" to="(440,80)"/> <wire from="(400,120)" to="(440,120)"/> <wire from="(400,140)" to="(450,140)"/> <wire from="(400,200)" to="(440,200)"/> <wire from="(400,220)" to="(450,220)"/> <wire from="(420,50)" to="(420,90)"/> <wire from="(420,90)" to="(420,170)"/> <wire from="(430,100)" to="(440,100)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(440,100)" to="(470,100)"/> <wire from="(440,110)" to="(440,120)"/> <wire from="(440,110)" to="(470,110)"/> <wire from="(440,160)" to="(440,180)"/> <wire from="(440,180)" to="(470,180)"/> <wire from="(440,190)" to="(440,200)"/> <wire from="(440,190)" to="(470,190)"/> <wire from="(440,80)" to="(440,100)"/> <wire from="(450,120)" to="(450,140)"/> <wire from="(450,120)" to="(470,120)"/> <wire from="(450,200)" to="(450,220)"/> <wire from="(450,200)" to="(470,200)"/> <wire from="(570,100)" to="(590,100)"/> <wire from="(570,180)" to="(590,180)"/> </circuit> <circuit name="Tile_V"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Tile_V"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W5_2"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_1"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_2"/> </comp> <comp lib="0" loc="(130,130)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,160)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,320)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(490,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,260)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,500)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(720,290)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(730,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVx"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="1" loc="(360,120)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,200)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,280)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,360)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,440)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(440,380)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(440,460)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(520,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(520,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(520,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(660,160)" name="SCC_FF"/> <comp loc="(660,240)" name="SCC_FF"/> <comp loc="(660,320)" name="SCC_FF"/> <comp loc="(660,400)" name="SCC_FF"/> <comp loc="(660,480)" name="SCC_FF"/> <wire from="(120,130)" to="(130,130)"/> <wire from="(120,160)" to="(130,160)"/> <wire from="(120,20)" to="(350,20)"/> <wire from="(120,50)" to="(430,50)"/> <wire from="(120,80)" to="(510,80)"/> <wire from="(160,320)" to="(170,320)"/> <wire from="(190,240)" to="(220,240)"/> <wire from="(190,250)" to="(210,250)"/> <wire from="(190,270)" to="(240,270)"/> <wire from="(190,280)" to="(250,280)"/> <wire from="(190,290)" to="(260,290)"/> <wire from="(190,300)" to="(260,300)"/> <wire from="(190,310)" to="(250,310)"/> <wire from="(210,250)" to="(210,460)"/> <wire from="(210,460)" to="(420,460)"/> <wire from="(220,240)" to="(220,380)"/> <wire from="(220,380)" to="(420,380)"/> <wire from="(240,120)" to="(240,270)"/> <wire from="(240,120)" to="(340,120)"/> <wire from="(250,200)" to="(250,280)"/> <wire from="(250,200)" to="(340,200)"/> <wire from="(250,310)" to="(250,440)"/> <wire from="(250,440)" to="(310,440)"/> <wire from="(260,280)" to="(260,290)"/> <wire from="(260,280)" to="(290,280)"/> <wire from="(260,300)" to="(260,360)"/> <wire from="(260,360)" to="(300,360)"/> <wire from="(290,160)" to="(290,280)"/> <wire from="(290,160)" to="(500,160)"/> <wire from="(290,280)" to="(340,280)"/> <wire from="(300,240)" to="(300,360)"/> <wire from="(300,240)" to="(500,240)"/> <wire from="(300,360)" to="(340,360)"/> <wire from="(310,320)" to="(310,440)"/> <wire from="(310,320)" to="(500,320)"/> <wire from="(310,440)" to="(340,440)"/> <wire from="(350,110)" to="(350,190)"/> <wire from="(350,190)" to="(350,270)"/> <wire from="(350,20)" to="(350,110)"/> <wire from="(350,270)" to="(350,350)"/> <wire from="(350,350)" to="(350,430)"/> <wire from="(360,120)" to="(440,120)"/> <wire from="(360,200)" to="(440,200)"/> <wire from="(360,280)" to="(440,280)"/> <wire from="(360,360)" to="(450,360)"/> <wire from="(360,440)" to="(450,440)"/> <wire from="(430,370)" to="(430,450)"/> <wire from="(430,50)" to="(430,370)"/> <wire from="(440,120)" to="(440,140)"/> <wire from="(440,140)" to="(530,140)"/> <wire from="(440,200)" to="(440,220)"/> <wire from="(440,220)" to="(530,220)"/> <wire from="(440,280)" to="(440,300)"/> <wire from="(440,300)" to="(530,300)"/> <wire from="(440,380)" to="(450,380)"/> <wire from="(440,460)" to="(450,460)"/> <wire from="(450,360)" to="(450,380)"/> <wire from="(450,380)" to="(530,380)"/> <wire from="(450,440)" to="(450,460)"/> <wire from="(450,460)" to="(530,460)"/> <wire from="(490,180)" to="(530,180)"/> <wire from="(490,200)" to="(540,200)"/> <wire from="(490,260)" to="(530,260)"/> <wire from="(490,280)" to="(540,280)"/> <wire from="(490,340)" to="(530,340)"/> <wire from="(490,360)" to="(540,360)"/> <wire from="(490,420)" to="(530,420)"/> <wire from="(490,440)" to="(540,440)"/> <wire from="(490,500)" to="(530,500)"/> <wire from="(490,520)" to="(540,520)"/> <wire from="(510,150)" to="(510,230)"/> <wire from="(510,230)" to="(510,310)"/> <wire from="(510,80)" to="(510,150)"/> <wire from="(520,160)" to="(530,160)"/> <wire from="(520,240)" to="(530,240)"/> <wire from="(520,320)" to="(530,320)"/> <wire from="(530,140)" to="(530,160)"/> <wire from="(530,160)" to="(560,160)"/> <wire from="(530,170)" to="(530,180)"/> <wire from="(530,170)" to="(560,170)"/> <wire from="(530,220)" to="(530,240)"/> <wire from="(530,240)" to="(560,240)"/> <wire from="(530,250)" to="(530,260)"/> <wire from="(530,250)" to="(560,250)"/> <wire from="(530,300)" to="(530,320)"/> <wire from="(530,320)" to="(560,320)"/> <wire from="(530,330)" to="(530,340)"/> <wire from="(530,330)" to="(560,330)"/> <wire from="(530,380)" to="(530,400)"/> <wire from="(530,400)" to="(560,400)"/> <wire from="(530,410)" to="(530,420)"/> <wire from="(530,410)" to="(560,410)"/> <wire from="(530,460)" to="(530,480)"/> <wire from="(530,480)" to="(560,480)"/> <wire from="(530,490)" to="(530,500)"/> <wire from="(530,490)" to="(560,490)"/> <wire from="(540,180)" to="(540,200)"/> <wire from="(540,180)" to="(560,180)"/> <wire from="(540,260)" to="(540,280)"/> <wire from="(540,260)" to="(560,260)"/> <wire from="(540,340)" to="(540,360)"/> <wire from="(540,340)" to="(560,340)"/> <wire from="(540,420)" to="(540,440)"/> <wire from="(540,420)" to="(560,420)"/> <wire from="(540,500)" to="(540,520)"/> <wire from="(540,500)" to="(560,500)"/> <wire from="(660,160)" to="(690,160)"/> <wire from="(660,240)" to="(680,240)"/> <wire from="(660,320)" to="(700,320)"/> <wire from="(660,400)" to="(680,400)"/> <wire from="(660,480)" to="(690,480)"/> <wire from="(680,240)" to="(680,310)"/> <wire from="(680,310)" to="(700,310)"/> <wire from="(680,330)" to="(680,400)"/> <wire from="(680,330)" to="(700,330)"/> <wire from="(690,160)" to="(690,300)"/> <wire from="(690,300)" to="(700,300)"/> <wire from="(690,340)" to="(690,480)"/> <wire from="(690,340)" to="(700,340)"/> <wire from="(720,290)" to="(730,290)"/> </circuit> <circuit name="Tile_H"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Tile_H"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(120,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W5_1"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_2"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(130,110)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,80)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(170,270)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(400,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,140)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,200)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,220)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,280)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,300)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,360)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,380)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(630,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(640,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THx"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="1" loc="(350,160)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,240)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,320)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,400)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,80)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,100)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,180)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,260)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,340)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(430,420)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp loc="(570,100)" name="SCC_FF"/> <comp loc="(570,180)" name="SCC_FF"/> <comp loc="(570,260)" name="SCC_FF"/> <comp loc="(570,340)" name="SCC_FF"/> <comp loc="(570,420)" name="SCC_FF"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,20)" to="(340,20)"/> <wire from="(120,50)" to="(420,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(190,190)" to="(260,190)"/> <wire from="(190,200)" to="(270,200)"/> <wire from="(190,210)" to="(270,210)"/> <wire from="(190,220)" to="(220,220)"/> <wire from="(190,230)" to="(230,230)"/> <wire from="(190,240)" to="(330,240)"/> <wire from="(190,250)" to="(230,250)"/> <wire from="(190,260)" to="(220,260)"/> <wire from="(220,220)" to="(260,220)"/> <wire from="(220,260)" to="(220,400)"/> <wire from="(220,400)" to="(330,400)"/> <wire from="(220,80)" to="(220,220)"/> <wire from="(220,80)" to="(330,80)"/> <wire from="(230,160)" to="(230,230)"/> <wire from="(230,160)" to="(330,160)"/> <wire from="(230,230)" to="(250,230)"/> <wire from="(230,250)" to="(230,320)"/> <wire from="(230,320)" to="(330,320)"/> <wire from="(250,230)" to="(250,420)"/> <wire from="(250,420)" to="(410,420)"/> <wire from="(260,100)" to="(260,190)"/> <wire from="(260,100)" to="(410,100)"/> <wire from="(260,220)" to="(260,340)"/> <wire from="(260,340)" to="(410,340)"/> <wire from="(270,180)" to="(270,200)"/> <wire from="(270,180)" to="(410,180)"/> <wire from="(270,210)" to="(270,260)"/> <wire from="(270,260)" to="(410,260)"/> <wire from="(340,150)" to="(340,230)"/> <wire from="(340,20)" to="(340,70)"/> <wire from="(340,230)" to="(340,310)"/> <wire from="(340,310)" to="(340,390)"/> <wire from="(340,70)" to="(340,150)"/> <wire from="(350,160)" to="(440,160)"/> <wire from="(350,240)" to="(440,240)"/> <wire from="(350,320)" to="(440,320)"/> <wire from="(350,400)" to="(440,400)"/> <wire from="(350,80)" to="(440,80)"/> <wire from="(400,120)" to="(440,120)"/> <wire from="(400,140)" to="(450,140)"/> <wire from="(400,200)" to="(440,200)"/> <wire from="(400,220)" to="(450,220)"/> <wire from="(400,280)" to="(440,280)"/> <wire from="(400,300)" to="(450,300)"/> <wire from="(400,360)" to="(440,360)"/> <wire from="(400,380)" to="(450,380)"/> <wire from="(400,440)" to="(440,440)"/> <wire from="(400,460)" to="(450,460)"/> <wire from="(420,170)" to="(420,250)"/> <wire from="(420,250)" to="(420,330)"/> <wire from="(420,330)" to="(420,410)"/> <wire from="(420,50)" to="(420,90)"/> <wire from="(420,90)" to="(420,170)"/> <wire from="(430,100)" to="(440,100)"/> <wire from="(430,180)" to="(440,180)"/> <wire from="(430,260)" to="(440,260)"/> <wire from="(430,340)" to="(440,340)"/> <wire from="(430,420)" to="(440,420)"/> <wire from="(440,100)" to="(470,100)"/> <wire from="(440,110)" to="(440,120)"/> <wire from="(440,110)" to="(470,110)"/> <wire from="(440,160)" to="(440,180)"/> <wire from="(440,180)" to="(470,180)"/> <wire from="(440,190)" to="(440,200)"/> <wire from="(440,190)" to="(470,190)"/> <wire from="(440,240)" to="(440,260)"/> <wire from="(440,260)" to="(470,260)"/> <wire from="(440,270)" to="(440,280)"/> <wire from="(440,270)" to="(470,270)"/> <wire from="(440,320)" to="(440,340)"/> <wire from="(440,340)" to="(470,340)"/> <wire from="(440,350)" to="(440,360)"/> <wire from="(440,350)" to="(470,350)"/> <wire from="(440,400)" to="(440,420)"/> <wire from="(440,420)" to="(470,420)"/> <wire from="(440,430)" to="(440,440)"/> <wire from="(440,430)" to="(470,430)"/> <wire from="(440,80)" to="(440,100)"/> <wire from="(450,120)" to="(450,140)"/> <wire from="(450,120)" to="(470,120)"/> <wire from="(450,200)" to="(450,220)"/> <wire from="(450,200)" to="(470,200)"/> <wire from="(450,280)" to="(450,300)"/> <wire from="(450,280)" to="(470,280)"/> <wire from="(450,360)" to="(450,380)"/> <wire from="(450,360)" to="(470,360)"/> <wire from="(450,440)" to="(450,460)"/> <wire from="(450,440)" to="(470,440)"/> <wire from="(570,100)" to="(600,100)"/> <wire from="(570,180)" to="(590,180)"/> <wire from="(570,260)" to="(610,260)"/> <wire from="(570,340)" to="(590,340)"/> <wire from="(570,420)" to="(600,420)"/> <wire from="(590,180)" to="(590,250)"/> <wire from="(590,250)" to="(610,250)"/> <wire from="(590,270)" to="(590,340)"/> <wire from="(590,270)" to="(610,270)"/> <wire from="(600,100)" to="(600,240)"/> <wire from="(600,240)" to="(610,240)"/> <wire from="(600,280)" to="(600,420)"/> <wire from="(600,280)" to="(610,280)"/> <wire from="(630,230)" to="(640,230)"/> </circuit> <circuit name="ScrollRegs"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ScrollRegs"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVx"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1000,680)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THx"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1000,720)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="W6_2_Enable"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W6_1"/> </comp> <comp lib="0" loc="(140,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W6_2"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(140,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W0"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W5_1"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_W5_2"/> </comp> <comp lib="0" loc="(170,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,190)" name="Tunnel"> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(220,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(240,100)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W5_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W5_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,440)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,570)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(250,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,130)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,190)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,120)" name="Tunnel"> <a name="label" val="W5_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,150)" name="Tunnel"> <a name="label" val="W6_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,180)" name="Tunnel"> <a name="label" val="W6_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,210)" name="Tunnel"> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,60)" name="Tunnel"> <a name="label" val="W0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(360,90)" name="Tunnel"> <a name="label" val="W5_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(500,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FHx"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(500,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FVx"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(500,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(500,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(700,270)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W5_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,290)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,310)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,470)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W5_1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,490)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,510)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_DBE"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(700,530)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="RC"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(990,720)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="W6_2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="1" loc="(270,60)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,90)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(330,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,180)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(490,270)" name="Fine_H"/> <comp loc="(490,400)" name="Fine_V"/> <comp loc="(490,550)" name="NT_Select"/> <comp loc="(950,270)" name="Tile_V"/> <comp loc="(950,470)" name="Tile_H"/> <wire from="(140,110)" to="(170,110)"/> <wire from="(140,130)" to="(160,130)"/> <wire from="(140,150)" to="(150,150)"/> <wire from="(140,170)" to="(140,210)"/> <wire from="(140,210)" to="(360,210)"/> <wire from="(140,50)" to="(230,50)"/> <wire from="(140,70)" to="(170,70)"/> <wire from="(140,90)" to="(180,90)"/> <wire from="(150,150)" to="(150,190)"/> <wire from="(150,190)" to="(180,190)"/> <wire from="(160,130)" to="(160,170)"/> <wire from="(160,170)" to="(310,170)"/> <wire from="(170,110)" to="(170,140)"/> <wire from="(170,140)" to="(290,140)"/> <wire from="(170,240)" to="(190,240)"/> <wire from="(170,70)" to="(170,80)"/> <wire from="(170,80)" to="(250,80)"/> <wire from="(180,110)" to="(270,110)"/> <wire from="(180,90)" to="(180,110)"/> <wire from="(190,240)" to="(190,330)"/> <wire from="(190,240)" to="(640,240)"/> <wire from="(190,330)" to="(190,480)"/> <wire from="(190,330)" to="(270,330)"/> <wire from="(190,480)" to="(190,630)"/> <wire from="(190,480)" to="(270,480)"/> <wire from="(190,630)" to="(270,630)"/> <wire from="(220,70)" to="(230,70)"/> <wire from="(240,100)" to="(250,100)"/> <wire from="(250,270)" to="(270,270)"/> <wire from="(250,290)" to="(270,290)"/> <wire from="(250,310)" to="(270,310)"/> <wire from="(250,400)" to="(270,400)"/> <wire from="(250,420)" to="(270,420)"/> <wire from="(250,440)" to="(270,440)"/> <wire from="(250,460)" to="(270,460)"/> <wire from="(250,550)" to="(270,550)"/> <wire from="(250,570)" to="(270,570)"/> <wire from="(250,590)" to="(270,590)"/> <wire from="(250,610)" to="(270,610)"/> <wire from="(260,130)" to="(270,130)"/> <wire from="(270,60)" to="(360,60)"/> <wire from="(280,160)" to="(290,160)"/> <wire from="(290,90)" to="(360,90)"/> <wire from="(300,190)" to="(310,190)"/> <wire from="(310,120)" to="(360,120)"/> <wire from="(330,150)" to="(360,150)"/> <wire from="(350,180)" to="(360,180)"/> <wire from="(490,270)" to="(500,270)"/> <wire from="(490,400)" to="(500,400)"/> <wire from="(490,550)" to="(500,550)"/> <wire from="(490,570)" to="(500,570)"/> <wire from="(640,240)" to="(640,370)"/> <wire from="(640,370)" to="(640,550)"/> <wire from="(640,370)" to="(730,370)"/> <wire from="(640,550)" to="(730,550)"/> <wire from="(700,270)" to="(730,270)"/> <wire from="(700,290)" to="(730,290)"/> <wire from="(700,310)" to="(730,310)"/> <wire from="(700,330)" to="(730,330)"/> <wire from="(700,350)" to="(730,350)"/> <wire from="(700,470)" to="(730,470)"/> <wire from="(700,490)" to="(730,490)"/> <wire from="(700,510)" to="(730,510)"/> <wire from="(700,530)" to="(730,530)"/> <wire from="(950,270)" to="(990,270)"/> <wire from="(950,470)" to="(970,470)"/> <wire from="(970,470)" to="(970,680)"/> <wire from="(970,680)" to="(1000,680)"/> <wire from="(990,270)" to="(990,630)"/> <wire from="(990,630)" to="(1000,630)"/> <wire from="(990,720)" to="(1000,720)"/> </circuit> <circuit name="ParCountersControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ParCountersControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,20)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,50)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(150,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W6_2_Enable"/> </comp> <comp lib="0" loc="(150,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SC_CNT"/> </comp> <comp lib="0" loc="(150,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(150,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="E_EV"/> </comp> <comp lib="0" loc="(150,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TSTEP"/> </comp> <comp lib="0" loc="(150,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TB"/> </comp> <comp lib="0" loc="(150,630)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(200,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(200,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(230,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(300,480)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(310,640)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(440,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(470,120)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(480,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(480,730)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,90)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(720,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(720,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(720,620)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THSTEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(720,710)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVSTEP"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,620)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(270,70)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,360)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,610)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,370)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(370,620)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(420,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,490)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(460,700)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(470,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(520,210)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(530,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,500)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,710)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,110)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="2" loc="(500,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="8" loc="(315,55)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="W6_2_FF1"/> </comp> <comp lib="8" loc="(525,135)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="W6_2_FF2"/> </comp> <comp lib="8" loc="(700,95)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Temp93"/> </comp> <comp loc="(210,340)" name="DLatch"> <a name="label" val="sccnt_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(210,480)" name="DLatch"> <a name="label" val="eev_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(310,480)" name="DLatch"> <a name="label" val="eev_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(600,90)" name="DLatch"> <a name="label" val="w62_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,20)" to="(120,20)"/> <wire from="(110,50)" to="(120,50)"/> <wire from="(150,150)" to="(280,150)"/> <wire from="(150,360)" to="(210,360)"/> <wire from="(150,400)" to="(270,400)"/> <wire from="(150,500)" to="(170,500)"/> <wire from="(150,560)" to="(230,560)"/> <wire from="(150,600)" to="(160,600)"/> <wire from="(150,630)" to="(190,630)"/> <wire from="(160,600)" to="(160,610)"/> <wire from="(160,610)" to="(190,610)"/> <wire from="(170,500)" to="(170,540)"/> <wire from="(170,500)" to="(210,500)"/> <wire from="(170,540)" to="(390,540)"/> <wire from="(200,340)" to="(210,340)"/> <wire from="(200,480)" to="(210,480)"/> <wire from="(220,620)" to="(250,620)"/> <wire from="(230,250)" to="(370,250)"/> <wire from="(230,560)" to="(230,600)"/> <wire from="(230,60)" to="(240,60)"/> <wire from="(230,600)" to="(230,710)"/> <wire from="(230,600)" to="(250,600)"/> <wire from="(230,710)" to="(420,710)"/> <wire from="(230,80)" to="(230,250)"/> <wire from="(230,80)" to="(240,80)"/> <wire from="(250,360)" to="(270,360)"/> <wire from="(250,500)" to="(310,500)"/> <wire from="(270,380)" to="(270,400)"/> <wire from="(270,380)" to="(310,380)"/> <wire from="(270,70)" to="(300,70)"/> <wire from="(280,150)" to="(280,170)"/> <wire from="(280,150)" to="(300,150)"/> <wire from="(280,170)" to="(370,170)"/> <wire from="(290,110)" to="(360,110)"/> <wire from="(290,120)" to="(290,130)"/> <wire from="(290,120)" to="(350,120)"/> <wire from="(290,130)" to="(300,130)"/> <wire from="(290,360)" to="(310,360)"/> <wire from="(290,610)" to="(330,610)"/> <wire from="(290,90)" to="(290,110)"/> <wire from="(290,90)" to="(300,90)"/> <wire from="(300,480)" to="(310,480)"/> <wire from="(310,640)" to="(320,640)"/> <wire from="(320,630)" to="(320,640)"/> <wire from="(320,630)" to="(330,630)"/> <wire from="(340,140)" to="(360,140)"/> <wire from="(340,370)" to="(380,370)"/> <wire from="(340,80)" to="(350,80)"/> <wire from="(350,500)" to="(420,500)"/> <wire from="(350,80)" to="(350,120)"/> <wire from="(360,110)" to="(360,140)"/> <wire from="(360,140)" to="(390,140)"/> <wire from="(370,160)" to="(370,170)"/> <wire from="(370,160)" to="(390,160)"/> <wire from="(370,250)" to="(370,390)"/> <wire from="(370,250)" to="(700,250)"/> <wire from="(370,390)" to="(370,480)"/> <wire from="(370,390)" to="(380,390)"/> <wire from="(370,480)" to="(420,480)"/> <wire from="(370,620)" to="(720,620)"/> <wire from="(390,540)" to="(390,690)"/> <wire from="(390,690)" to="(420,690)"/> <wire from="(420,380)" to="(490,380)"/> <wire from="(430,150)" to="(470,150)"/> <wire from="(440,410)" to="(450,410)"/> <wire from="(460,170)" to="(460,210)"/> <wire from="(460,170)" to="(470,170)"/> <wire from="(460,210)" to="(460,230)"/> <wire from="(460,210)" to="(520,210)"/> <wire from="(460,230)" to="(590,230)"/> <wire from="(460,490)" to="(500,490)"/> <wire from="(460,700)" to="(500,700)"/> <wire from="(470,120)" to="(480,120)"/> <wire from="(470,410)" to="(480,410)"/> <wire from="(480,120)" to="(480,140)"/> <wire from="(480,400)" to="(480,410)"/> <wire from="(480,400)" to="(490,400)"/> <wire from="(480,520)" to="(490,520)"/> <wire from="(480,730)" to="(490,730)"/> <wire from="(490,510)" to="(490,520)"/> <wire from="(490,510)" to="(500,510)"/> <wire from="(490,720)" to="(490,730)"/> <wire from="(490,720)" to="(500,720)"/> <wire from="(500,160)" to="(520,160)"/> <wire from="(530,390)" to="(720,390)"/> <wire from="(540,160)" to="(570,160)"/> <wire from="(540,210)" to="(570,210)"/> <wire from="(540,500)" to="(720,500)"/> <wire from="(540,710)" to="(720,710)"/> <wire from="(570,160)" to="(570,210)"/> <wire from="(590,110)" to="(590,230)"/> <wire from="(590,110)" to="(600,110)"/> <wire from="(590,90)" to="(600,90)"/> <wire from="(640,110)" to="(660,110)"/> <wire from="(680,110)" to="(700,110)"/> <wire from="(700,110)" to="(700,250)"/> <wire from="(700,110)" to="(730,110)"/> </circuit> <circuit name="ParCountersControl2"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ParCountersControl2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(110,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(110,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTHO"/> </comp> <comp lib="0" loc="(110,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTVO"/> </comp> <comp lib="0" loc="(110,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,610)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I1_32"/> </comp> <comp lib="0" loc="(110,780)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,100)" name="Tunnel"> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,20)" name="Tunnel"> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(120,50)" name="Tunnel"> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,560)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_FVO"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(150,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_THO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(150,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_TVO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(150,700)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVZ"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(160,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(200,410)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,130)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(260,250)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(260,520)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(260,560)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(260,70)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,680)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(280,760)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="n_PCLK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(340,590)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(350,330)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVZB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(350,350)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THZ"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(350,400)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVZ"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(390,550)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THZB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,100)" name="Tunnel"> <a name="label" val="THZB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(400,220)" name="Tunnel"> <a name="label" val="THZ"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(490,610)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(500,250)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(510,60)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(520,140)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(540,170)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="BLNK"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(590,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTHIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTVIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FVIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,550)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,620)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THIN"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(590,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="Z_TV"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(660,100)" name="Tunnel"> <a name="label" val="TVZB"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(660,210)" name="Tunnel"> <a name="label" val="TVZ"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="1" loc="(150,780)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(230,410)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(290,380)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,440)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,70)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(350,530)" name="NOR Gate"> <a name="inputs" val="5"/> </comp> <comp lib="1" loc="(380,600)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(390,100)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(390,220)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(400,340)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,390)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(400,450)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(430,730)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(440,340)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(460,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(470,550)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(510,550)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,190)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,60)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(540,620)" name="NAND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,80)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(550,210)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(640,100)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(640,210)" name="NOR Gate"> <a name="inputs" val="7"/> <a name="size" val="70"/> </comp> <comp lib="8" loc="(370,520)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="FVZ"/> </comp> <comp lib="8" loc="(495,290)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="TVIN"/> </comp> <comp lib="8" loc="(590,275)" name="Text"> <a name="font" val="SansSerif bold 11"/> <a name="text" val="[!] Note that TVO1 is here"/> </comp> <comp loc="(170,680)" name="DLatch"> <a name="label" val="tvz_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,680)" name="DLatch"> <a name="label" val="tvz_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,760)" name="DLatch"> <a name="label" val="tvstep_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,100)" to="(120,100)"/> <wire from="(110,20)" to="(120,20)"/> <wire from="(110,370)" to="(260,370)"/> <wire from="(110,430)" to="(260,430)"/> <wire from="(110,50)" to="(120,50)"/> <wire from="(110,610)" to="(330,610)"/> <wire from="(110,780)" to="(130,780)"/> <wire from="(130,560)" to="(260,560)"/> <wire from="(150,160)" to="(230,160)"/> <wire from="(150,190)" to="(210,190)"/> <wire from="(150,700)" to="(170,700)"/> <wire from="(150,780)" to="(290,780)"/> <wire from="(160,680)" to="(170,680)"/> <wire from="(200,410)" to="(210,410)"/> <wire from="(210,190)" to="(210,280)"/> <wire from="(210,280)" to="(450,280)"/> <wire from="(210,700)" to="(290,700)"/> <wire from="(230,130)" to="(230,160)"/> <wire from="(230,130)" to="(260,130)"/> <wire from="(230,160)" to="(230,250)"/> <wire from="(230,250)" to="(260,250)"/> <wire from="(230,410)" to="(240,410)"/> <wire from="(240,390)" to="(240,410)"/> <wire from="(240,390)" to="(250,390)"/> <wire from="(240,410)" to="(240,450)"/> <wire from="(240,410)" to="(310,410)"/> <wire from="(240,450)" to="(250,450)"/> <wire from="(260,520)" to="(290,520)"/> <wire from="(260,70)" to="(270,70)"/> <wire from="(270,480)" to="(270,510)"/> <wire from="(270,480)" to="(420,480)"/> <wire from="(270,510)" to="(290,510)"/> <wire from="(280,100)" to="(300,100)"/> <wire from="(280,110)" to="(290,110)"/> <wire from="(280,120)" to="(280,130)"/> <wire from="(280,130)" to="(310,130)"/> <wire from="(280,180)" to="(290,180)"/> <wire from="(280,200)" to="(310,200)"/> <wire from="(280,210)" to="(310,210)"/> <wire from="(280,220)" to="(300,220)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(280,240)" to="(280,250)"/> <wire from="(280,250)" to="(310,250)"/> <wire from="(280,530)" to="(290,530)"/> <wire from="(280,540)" to="(290,540)"/> <wire from="(280,550)" to="(290,550)"/> <wire from="(280,680)" to="(290,680)"/> <wire from="(280,760)" to="(290,760)"/> <wire from="(280,80)" to="(310,80)"/> <wire from="(280,90)" to="(310,90)"/> <wire from="(290,110)" to="(290,120)"/> <wire from="(290,120)" to="(310,120)"/> <wire from="(290,180)" to="(290,190)"/> <wire from="(290,190)" to="(310,190)"/> <wire from="(290,230)" to="(290,240)"/> <wire from="(290,240)" to="(310,240)"/> <wire from="(290,380)" to="(360,380)"/> <wire from="(290,440)" to="(300,440)"/> <wire from="(290,70)" to="(310,70)"/> <wire from="(300,100)" to="(300,110)"/> <wire from="(300,110)" to="(310,110)"/> <wire from="(300,220)" to="(300,230)"/> <wire from="(300,230)" to="(310,230)"/> <wire from="(300,440)" to="(300,460)"/> <wire from="(300,460)" to="(360,460)"/> <wire from="(310,410)" to="(310,440)"/> <wire from="(310,440)" to="(360,440)"/> <wire from="(330,610)" to="(330,630)"/> <wire from="(330,610)" to="(350,610)"/> <wire from="(330,630)" to="(500,630)"/> <wire from="(330,680)" to="(360,680)"/> <wire from="(330,760)" to="(360,760)"/> <wire from="(340,590)" to="(350,590)"/> <wire from="(350,330)" to="(360,330)"/> <wire from="(350,350)" to="(360,350)"/> <wire from="(350,400)" to="(360,400)"/> <wire from="(350,530)" to="(410,530)"/> <wire from="(360,680)" to="(360,720)"/> <wire from="(360,720)" to="(390,720)"/> <wire from="(360,740)" to="(360,760)"/> <wire from="(360,740)" to="(390,740)"/> <wire from="(380,600)" to="(400,600)"/> <wire from="(390,100)" to="(400,100)"/> <wire from="(390,220)" to="(400,220)"/> <wire from="(390,550)" to="(410,550)"/> <wire from="(400,340)" to="(420,340)"/> <wire from="(400,390)" to="(440,390)"/> <wire from="(400,450)" to="(420,450)"/> <wire from="(400,570)" to="(400,600)"/> <wire from="(400,570)" to="(410,570)"/> <wire from="(420,450)" to="(420,480)"/> <wire from="(420,450)" to="(440,450)"/> <wire from="(430,730)" to="(590,730)"/> <wire from="(440,340)" to="(590,340)"/> <wire from="(450,140)" to="(450,250)"/> <wire from="(450,140)" to="(520,140)"/> <wire from="(450,250)" to="(450,280)"/> <wire from="(450,250)" to="(500,250)"/> <wire from="(460,390)" to="(590,390)"/> <wire from="(460,450)" to="(590,450)"/> <wire from="(470,550)" to="(490,550)"/> <wire from="(480,190)" to="(480,300)"/> <wire from="(480,190)" to="(520,190)"/> <wire from="(480,300)" to="(530,300)"/> <wire from="(480,80)" to="(480,190)"/> <wire from="(480,80)" to="(520,80)"/> <wire from="(490,610)" to="(500,610)"/> <wire from="(510,550)" to="(530,550)"/> <wire from="(510,60)" to="(520,60)"/> <wire from="(520,200)" to="(560,200)"/> <wire from="(520,210)" to="(530,210)"/> <wire from="(520,220)" to="(560,220)"/> <wire from="(520,230)" to="(560,230)"/> <wire from="(520,240)" to="(560,240)"/> <wire from="(530,300)" to="(530,550)"/> <wire from="(530,550)" to="(590,550)"/> <wire from="(540,100)" to="(560,100)"/> <wire from="(540,110)" to="(560,110)"/> <wire from="(540,120)" to="(560,120)"/> <wire from="(540,130)" to="(560,130)"/> <wire from="(540,170)" to="(550,170)"/> <wire from="(540,190)" to="(560,190)"/> <wire from="(540,60)" to="(550,60)"/> <wire from="(540,620)" to="(590,620)"/> <wire from="(540,80)" to="(560,80)"/> <wire from="(540,90)" to="(560,90)"/> <wire from="(550,170)" to="(550,180)"/> <wire from="(550,180)" to="(560,180)"/> <wire from="(550,210)" to="(560,210)"/> <wire from="(550,60)" to="(550,70)"/> <wire from="(550,70)" to="(560,70)"/> <wire from="(640,100)" to="(660,100)"/> <wire from="(640,210)" to="(660,210)"/> </circuit> <circuit name="ParCounterBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="ParCounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(120,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry_in"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Clock"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(340,110)" name="Constant"/> <comp lib="0" loc="(600,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(600,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(600,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="carry_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,70)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(250,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(360,170)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(480,130)" name="Multiplexer"/> <comp lib="4" loc="(350,60)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(365,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="FF"/> </comp> <comp loc="(530,110)" name="DLatch"> <a name="label" val="step_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,130)" to="(280,130)"/> <wire from="(120,170)" to="(170,170)"/> <wire from="(120,310)" to="(460,310)"/> <wire from="(120,40)" to="(210,40)"/> <wire from="(120,90)" to="(240,90)"/> <wire from="(170,110)" to="(170,170)"/> <wire from="(170,110)" to="(230,110)"/> <wire from="(190,180)" to="(350,180)"/> <wire from="(190,70)" to="(190,180)"/> <wire from="(190,70)" to="(200,70)"/> <wire from="(210,40)" to="(210,60)"/> <wire from="(210,40)" to="(520,40)"/> <wire from="(220,70)" to="(300,70)"/> <wire from="(240,150)" to="(240,210)"/> <wire from="(240,150)" to="(270,150)"/> <wire from="(240,210)" to="(590,210)"/> <wire from="(240,90)" to="(240,100)"/> <wire from="(250,110)" to="(300,110)"/> <wire from="(280,130)" to="(280,140)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(300,110)" to="(300,150)"/> <wire from="(300,70)" to="(300,110)"/> <wire from="(300,70)" to="(340,70)"/> <wire from="(330,130)" to="(340,130)"/> <wire from="(340,130)" to="(340,170)"/> <wire from="(340,130)" to="(360,130)"/> <wire from="(340,170)" to="(360,170)"/> <wire from="(350,180)" to="(350,230)"/> <wire from="(350,180)" to="(430,180)"/> <wire from="(350,230)" to="(600,230)"/> <wire from="(380,130)" to="(400,130)"/> <wire from="(380,170)" to="(400,170)"/> <wire from="(400,110)" to="(410,110)"/> <wire from="(400,130)" to="(400,170)"/> <wire from="(400,70)" to="(430,70)"/> <wire from="(410,110)" to="(410,120)"/> <wire from="(410,120)" to="(410,260)"/> <wire from="(410,120)" to="(450,120)"/> <wire from="(410,260)" to="(500,260)"/> <wire from="(430,140)" to="(430,180)"/> <wire from="(430,140)" to="(450,140)"/> <wire from="(430,70)" to="(430,140)"/> <wire from="(460,150)" to="(460,310)"/> <wire from="(460,310)" to="(490,310)"/> <wire from="(480,130)" to="(530,130)"/> <wire from="(500,260)" to="(500,290)"/> <wire from="(500,260)" to="(600,260)"/> <wire from="(500,290)" to="(530,290)"/> <wire from="(510,310)" to="(530,310)"/> <wire from="(520,110)" to="(530,110)"/> <wire from="(520,40)" to="(520,110)"/> <wire from="(570,130)" to="(590,130)"/> <wire from="(570,300)" to="(600,300)"/> <wire from="(590,130)" to="(590,210)"/> </circuit> <circuit name="ParCounterBitReset"> <a name="appearance" val="evolution"/> <a name="circuit" val="ParCounterBitReset"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(120,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(120,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="carry_in"/> </comp> <comp lib="0" loc="(120,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Reset"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Clock"/> </comp> <comp lib="0" loc="(120,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(340,110)" name="Constant"/> <comp lib="0" loc="(600,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(600,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(600,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="carry_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,70)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(250,110)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(290,150)" name="Controlled Buffer"> <a name="control" val="left"/> </comp> <comp lib="1" loc="(350,230)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(360,170)" name="NOT Gate"> <a name="facing" val="west"/> <a name="size" val="20"/> </comp> <comp lib="1" loc="(380,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,310)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(570,300)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(480,130)" name="Multiplexer"/> <comp lib="4" loc="(350,60)" name="D Flip-Flop"> <a name="appearance" val="logisim_evolution"/> <a name="trigger" val="high"/> </comp> <comp lib="8" loc="(365,155)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="FF"/> </comp> <comp loc="(530,110)" name="DLatch"> <a name="label" val="step_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,130)" to="(280,130)"/> <wire from="(120,170)" to="(170,170)"/> <wire from="(120,310)" to="(460,310)"/> <wire from="(120,340)" to="(270,340)"/> <wire from="(120,40)" to="(210,40)"/> <wire from="(120,90)" to="(240,90)"/> <wire from="(140,260)" to="(370,260)"/> <wire from="(140,70)" to="(140,260)"/> <wire from="(140,70)" to="(200,70)"/> <wire from="(170,110)" to="(170,170)"/> <wire from="(170,110)" to="(230,110)"/> <wire from="(210,40)" to="(210,60)"/> <wire from="(210,40)" to="(520,40)"/> <wire from="(220,70)" to="(300,70)"/> <wire from="(240,150)" to="(240,210)"/> <wire from="(240,150)" to="(270,150)"/> <wire from="(240,210)" to="(590,210)"/> <wire from="(240,90)" to="(240,100)"/> <wire from="(250,110)" to="(300,110)"/> <wire from="(270,240)" to="(270,340)"/> <wire from="(270,240)" to="(310,240)"/> <wire from="(280,130)" to="(280,140)"/> <wire from="(290,150)" to="(300,150)"/> <wire from="(290,190)" to="(290,220)"/> <wire from="(290,190)" to="(430,190)"/> <wire from="(290,220)" to="(320,220)"/> <wire from="(300,110)" to="(300,150)"/> <wire from="(300,70)" to="(300,110)"/> <wire from="(300,70)" to="(340,70)"/> <wire from="(330,130)" to="(340,130)"/> <wire from="(340,130)" to="(340,170)"/> <wire from="(340,130)" to="(360,130)"/> <wire from="(340,170)" to="(360,170)"/> <wire from="(350,230)" to="(370,230)"/> <wire from="(370,230)" to="(370,260)"/> <wire from="(370,230)" to="(600,230)"/> <wire from="(380,130)" to="(400,130)"/> <wire from="(380,170)" to="(400,170)"/> <wire from="(400,110)" to="(410,110)"/> <wire from="(400,130)" to="(400,170)"/> <wire from="(400,70)" to="(430,70)"/> <wire from="(410,110)" to="(410,120)"/> <wire from="(410,120)" to="(410,260)"/> <wire from="(410,120)" to="(450,120)"/> <wire from="(410,260)" to="(500,260)"/> <wire from="(430,140)" to="(430,190)"/> <wire from="(430,140)" to="(450,140)"/> <wire from="(430,70)" to="(430,140)"/> <wire from="(460,150)" to="(460,310)"/> <wire from="(460,310)" to="(490,310)"/> <wire from="(480,130)" to="(530,130)"/> <wire from="(500,260)" to="(500,290)"/> <wire from="(500,260)" to="(600,260)"/> <wire from="(500,290)" to="(530,290)"/> <wire from="(510,310)" to="(530,310)"/> <wire from="(520,110)" to="(530,110)"/> <wire from="(520,40)" to="(520,110)"/> <wire from="(570,130)" to="(590,130)"/> <wire from="(570,300)" to="(600,300)"/> <wire from="(590,130)" to="(590,210)"/> </circuit> <circuit name="Par_FV_Counter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Par_FV_Counter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FVIN"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FVx"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(130,270)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(170,70)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,120)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,230)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,340)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(370,330)" name="NoConnect"/> <comp lib="0" loc="(440,190)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(440,90)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(450,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="FVO"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(450,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_FVO"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp loc="(350,200)" name="ParCounterBit"/> <comp loc="(350,310)" name="ParCounterBit"/> <comp loc="(350,90)" name="ParCounterBit"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,270)" to="(130,270)"/> <wire from="(120,50)" to="(150,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(130,100)" to="(130,110)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,80)" to="(130,90)"/> <wire from="(130,90)" to="(150,90)"/> <wire from="(150,240)" to="(170,240)"/> <wire from="(150,250)" to="(220,250)"/> <wire from="(150,260)" to="(160,260)"/> <wire from="(150,50)" to="(150,80)"/> <wire from="(160,260)" to="(160,360)"/> <wire from="(160,360)" to="(220,360)"/> <wire from="(170,150)" to="(170,240)"/> <wire from="(170,150)" to="(220,150)"/> <wire from="(170,70)" to="(190,70)"/> <wire from="(190,120)" to="(190,230)"/> <wire from="(190,120)" to="(200,120)"/> <wire from="(190,230)" to="(190,340)"/> <wire from="(190,230)" to="(200,230)"/> <wire from="(190,340)" to="(200,340)"/> <wire from="(190,70)" to="(190,120)"/> <wire from="(200,130)" to="(200,140)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(220,100)" to="(240,100)"/> <wire from="(220,110)" to="(240,110)"/> <wire from="(220,120)" to="(220,150)"/> <wire from="(220,120)" to="(240,120)"/> <wire from="(220,200)" to="(240,200)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,220)" to="(240,220)"/> <wire from="(220,230)" to="(220,250)"/> <wire from="(220,230)" to="(240,230)"/> <wire from="(220,310)" to="(240,310)"/> <wire from="(220,320)" to="(240,320)"/> <wire from="(220,330)" to="(240,330)"/> <wire from="(220,340)" to="(220,360)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(230,160)" to="(230,240)"/> <wire from="(230,160)" to="(360,160)"/> <wire from="(230,240)" to="(240,240)"/> <wire from="(230,270)" to="(230,350)"/> <wire from="(230,270)" to="(360,270)"/> <wire from="(230,350)" to="(240,350)"/> <wire from="(350,100)" to="(420,100)"/> <wire from="(350,110)" to="(360,110)"/> <wire from="(350,200)" to="(400,200)"/> <wire from="(350,210)" to="(380,210)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,310)" to="(400,310)"/> <wire from="(350,320)" to="(390,320)"/> <wire from="(350,330)" to="(370,330)"/> <wire from="(350,90)" to="(410,90)"/> <wire from="(360,110)" to="(360,160)"/> <wire from="(360,220)" to="(360,270)"/> <wire from="(380,110)" to="(380,210)"/> <wire from="(380,110)" to="(420,110)"/> <wire from="(390,120)" to="(390,320)"/> <wire from="(390,120)" to="(420,120)"/> <wire from="(400,200)" to="(400,210)"/> <wire from="(400,210)" to="(420,210)"/> <wire from="(400,220)" to="(400,310)"/> <wire from="(400,220)" to="(420,220)"/> <wire from="(410,200)" to="(420,200)"/> <wire from="(410,90)" to="(410,200)"/> <wire from="(440,190)" to="(450,190)"/> <wire from="(440,90)" to="(450,90)"/> </circuit> <circuit name="Par_NT_Counters"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Par_NT_Counters"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THSTEP"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTHIN"/> </comp> <comp lib="0" loc="(120,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTH"/> </comp> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(120,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTVIN"/> </comp> <comp lib="0" loc="(120,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTV"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(390,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTHOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTHO"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTVOut"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(390,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NTVO"/> <a name="output" val="true"/> </comp> <comp loc="(320,120)" name="ParCounterBit"/> <comp loc="(320,300)" name="ParCounterBit"/> <wire from="(120,110)" to="(170,110)"/> <wire from="(120,140)" to="(140,140)"/> <wire from="(120,190)" to="(160,190)"/> <wire from="(120,260)" to="(180,260)"/> <wire from="(120,290)" to="(170,290)"/> <wire from="(120,320)" to="(140,320)"/> <wire from="(120,370)" to="(160,370)"/> <wire from="(120,50)" to="(190,50)"/> <wire from="(120,80)" to="(180,80)"/> <wire from="(140,140)" to="(140,160)"/> <wire from="(140,160)" to="(210,160)"/> <wire from="(140,320)" to="(140,340)"/> <wire from="(140,340)" to="(210,340)"/> <wire from="(160,150)" to="(160,190)"/> <wire from="(160,150)" to="(210,150)"/> <wire from="(160,330)" to="(160,370)"/> <wire from="(160,330)" to="(210,330)"/> <wire from="(170,110)" to="(170,140)"/> <wire from="(170,140)" to="(210,140)"/> <wire from="(170,290)" to="(170,320)"/> <wire from="(170,320)" to="(210,320)"/> <wire from="(180,130)" to="(210,130)"/> <wire from="(180,260)" to="(180,310)"/> <wire from="(180,310)" to="(210,310)"/> <wire from="(180,80)" to="(180,130)"/> <wire from="(190,120)" to="(190,300)"/> <wire from="(190,120)" to="(210,120)"/> <wire from="(190,300)" to="(210,300)"/> <wire from="(190,50)" to="(190,120)"/> <wire from="(320,120)" to="(390,120)"/> <wire from="(320,140)" to="(390,140)"/> <wire from="(320,300)" to="(390,300)"/> <wire from="(320,320)" to="(390,320)"/> </circuit> <circuit name="Par_TV_Counter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Par_TV_Counter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVSTEP"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVIN"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVx"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,270)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(120,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Z_TV"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVLOAD"/> </comp> <comp lib="0" loc="(170,70)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,120)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,230)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,340)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,450)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,560)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(380,550)" name="NoConnect"/> <comp lib="0" loc="(510,110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(510,250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(520,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_TVO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(520,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp loc="(350,200)" name="ParCounterBitReset"/> <comp loc="(350,310)" name="ParCounterBitReset"/> <comp loc="(350,420)" name="ParCounterBitReset"/> <comp loc="(350,530)" name="ParCounterBitReset"/> <comp loc="(350,90)" name="ParCounterBitReset"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,140)" to="(130,140)"/> <wire from="(120,400)" to="(180,400)"/> <wire from="(120,50)" to="(150,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(130,100)" to="(130,110)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,130)" to="(130,140)"/> <wire from="(130,130)" to="(240,130)"/> <wire from="(130,80)" to="(130,90)"/> <wire from="(130,90)" to="(150,90)"/> <wire from="(140,220)" to="(170,220)"/> <wire from="(140,230)" to="(170,230)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(140,250)" to="(150,250)"/> <wire from="(140,260)" to="(140,570)"/> <wire from="(140,570)" to="(220,570)"/> <wire from="(150,250)" to="(150,460)"/> <wire from="(150,460)" to="(220,460)"/> <wire from="(150,50)" to="(150,80)"/> <wire from="(160,240)" to="(160,350)"/> <wire from="(160,350)" to="(220,350)"/> <wire from="(170,150)" to="(170,220)"/> <wire from="(170,150)" to="(220,150)"/> <wire from="(170,230)" to="(170,240)"/> <wire from="(170,240)" to="(220,240)"/> <wire from="(170,70)" to="(190,70)"/> <wire from="(180,140)" to="(180,250)"/> <wire from="(180,140)" to="(240,140)"/> <wire from="(180,250)" to="(180,360)"/> <wire from="(180,250)" to="(240,250)"/> <wire from="(180,360)" to="(180,400)"/> <wire from="(180,360)" to="(240,360)"/> <wire from="(180,400)" to="(180,470)"/> <wire from="(180,470)" to="(180,580)"/> <wire from="(180,470)" to="(240,470)"/> <wire from="(180,580)" to="(240,580)"/> <wire from="(190,120)" to="(190,230)"/> <wire from="(190,120)" to="(200,120)"/> <wire from="(190,230)" to="(190,340)"/> <wire from="(190,230)" to="(200,230)"/> <wire from="(190,340)" to="(190,450)"/> <wire from="(190,340)" to="(200,340)"/> <wire from="(190,450)" to="(190,560)"/> <wire from="(190,450)" to="(200,450)"/> <wire from="(190,560)" to="(200,560)"/> <wire from="(190,70)" to="(190,120)"/> <wire from="(220,100)" to="(240,100)"/> <wire from="(220,110)" to="(240,110)"/> <wire from="(220,120)" to="(220,150)"/> <wire from="(220,120)" to="(240,120)"/> <wire from="(220,200)" to="(240,200)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,220)" to="(240,220)"/> <wire from="(220,230)" to="(220,240)"/> <wire from="(220,230)" to="(240,230)"/> <wire from="(220,310)" to="(240,310)"/> <wire from="(220,320)" to="(240,320)"/> <wire from="(220,330)" to="(240,330)"/> <wire from="(220,340)" to="(220,350)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(220,420)" to="(240,420)"/> <wire from="(220,430)" to="(240,430)"/> <wire from="(220,440)" to="(240,440)"/> <wire from="(220,450)" to="(220,460)"/> <wire from="(220,450)" to="(240,450)"/> <wire from="(220,530)" to="(240,530)"/> <wire from="(220,540)" to="(240,540)"/> <wire from="(220,550)" to="(240,550)"/> <wire from="(220,560)" to="(220,570)"/> <wire from="(220,560)" to="(240,560)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(230,160)" to="(230,240)"/> <wire from="(230,160)" to="(360,160)"/> <wire from="(230,240)" to="(240,240)"/> <wire from="(230,270)" to="(230,350)"/> <wire from="(230,270)" to="(360,270)"/> <wire from="(230,350)" to="(240,350)"/> <wire from="(230,380)" to="(230,460)"/> <wire from="(230,380)" to="(360,380)"/> <wire from="(230,460)" to="(240,460)"/> <wire from="(230,490)" to="(230,570)"/> <wire from="(230,490)" to="(360,490)"/> <wire from="(230,570)" to="(240,570)"/> <wire from="(350,100)" to="(430,100)"/> <wire from="(350,110)" to="(360,110)"/> <wire from="(350,200)" to="(460,200)"/> <wire from="(350,210)" to="(380,210)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,310)" to="(430,310)"/> <wire from="(350,320)" to="(390,320)"/> <wire from="(350,330)" to="(360,330)"/> <wire from="(350,420)" to="(440,420)"/> <wire from="(350,430)" to="(400,430)"/> <wire from="(350,440)" to="(360,440)"/> <wire from="(350,530)" to="(450,530)"/> <wire from="(350,540)" to="(410,540)"/> <wire from="(350,550)" to="(380,550)"/> <wire from="(350,90)" to="(470,90)"/> <wire from="(360,110)" to="(360,160)"/> <wire from="(360,220)" to="(360,270)"/> <wire from="(360,330)" to="(360,380)"/> <wire from="(360,440)" to="(360,490)"/> <wire from="(380,130)" to="(380,210)"/> <wire from="(380,130)" to="(490,130)"/> <wire from="(390,140)" to="(390,320)"/> <wire from="(390,140)" to="(490,140)"/> <wire from="(400,150)" to="(400,430)"/> <wire from="(400,150)" to="(490,150)"/> <wire from="(410,160)" to="(410,540)"/> <wire from="(410,160)" to="(490,160)"/> <wire from="(430,100)" to="(430,120)"/> <wire from="(430,120)" to="(490,120)"/> <wire from="(430,280)" to="(430,310)"/> <wire from="(430,280)" to="(490,280)"/> <wire from="(440,290)" to="(440,420)"/> <wire from="(440,290)" to="(490,290)"/> <wire from="(450,300)" to="(450,530)"/> <wire from="(450,300)" to="(490,300)"/> <wire from="(460,200)" to="(460,270)"/> <wire from="(460,270)" to="(490,270)"/> <wire from="(470,260)" to="(490,260)"/> <wire from="(470,90)" to="(470,260)"/> <wire from="(510,110)" to="(520,110)"/> <wire from="(510,250)" to="(520,250)"/> </circuit> <circuit name="Par_TH_Counter"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Par_TH_Counter"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THSTEP"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THIN"/> </comp> <comp lib="0" loc="(120,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THx"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,270)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THLOAD"/> </comp> <comp lib="0" loc="(170,70)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,120)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,230)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,340)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,450)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(200,560)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(380,550)" name="NoConnect"/> <comp lib="0" loc="(510,110)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(510,250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(520,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_THO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(520,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp loc="(350,200)" name="ParCounterBit"/> <comp loc="(350,310)" name="ParCounterBit"/> <comp loc="(350,420)" name="ParCounterBit"/> <comp loc="(350,530)" name="ParCounterBit"/> <comp loc="(350,90)" name="ParCounterBit"/> <wire from="(120,110)" to="(130,110)"/> <wire from="(120,140)" to="(200,140)"/> <wire from="(120,50)" to="(150,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(130,100)" to="(130,110)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,80)" to="(130,90)"/> <wire from="(130,90)" to="(150,90)"/> <wire from="(140,220)" to="(170,220)"/> <wire from="(140,230)" to="(170,230)"/> <wire from="(140,240)" to="(160,240)"/> <wire from="(140,250)" to="(150,250)"/> <wire from="(140,260)" to="(140,580)"/> <wire from="(140,580)" to="(220,580)"/> <wire from="(150,250)" to="(150,470)"/> <wire from="(150,470)" to="(220,470)"/> <wire from="(150,50)" to="(150,80)"/> <wire from="(160,240)" to="(160,360)"/> <wire from="(160,360)" to="(220,360)"/> <wire from="(170,150)" to="(170,220)"/> <wire from="(170,150)" to="(220,150)"/> <wire from="(170,230)" to="(170,250)"/> <wire from="(170,250)" to="(220,250)"/> <wire from="(170,70)" to="(190,70)"/> <wire from="(190,120)" to="(190,230)"/> <wire from="(190,120)" to="(200,120)"/> <wire from="(190,230)" to="(190,340)"/> <wire from="(190,230)" to="(200,230)"/> <wire from="(190,340)" to="(190,450)"/> <wire from="(190,340)" to="(200,340)"/> <wire from="(190,450)" to="(190,560)"/> <wire from="(190,450)" to="(200,450)"/> <wire from="(190,560)" to="(200,560)"/> <wire from="(190,70)" to="(190,120)"/> <wire from="(200,130)" to="(200,140)"/> <wire from="(200,130)" to="(240,130)"/> <wire from="(220,100)" to="(240,100)"/> <wire from="(220,110)" to="(240,110)"/> <wire from="(220,120)" to="(220,150)"/> <wire from="(220,120)" to="(240,120)"/> <wire from="(220,200)" to="(240,200)"/> <wire from="(220,210)" to="(240,210)"/> <wire from="(220,220)" to="(240,220)"/> <wire from="(220,230)" to="(220,250)"/> <wire from="(220,230)" to="(240,230)"/> <wire from="(220,310)" to="(240,310)"/> <wire from="(220,320)" to="(240,320)"/> <wire from="(220,330)" to="(240,330)"/> <wire from="(220,340)" to="(220,360)"/> <wire from="(220,340)" to="(240,340)"/> <wire from="(220,420)" to="(240,420)"/> <wire from="(220,430)" to="(240,430)"/> <wire from="(220,440)" to="(240,440)"/> <wire from="(220,450)" to="(220,470)"/> <wire from="(220,450)" to="(240,450)"/> <wire from="(220,530)" to="(240,530)"/> <wire from="(220,540)" to="(240,540)"/> <wire from="(220,550)" to="(240,550)"/> <wire from="(220,560)" to="(220,580)"/> <wire from="(220,560)" to="(240,560)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(230,160)" to="(230,240)"/> <wire from="(230,160)" to="(360,160)"/> <wire from="(230,240)" to="(240,240)"/> <wire from="(230,270)" to="(230,350)"/> <wire from="(230,270)" to="(360,270)"/> <wire from="(230,350)" to="(240,350)"/> <wire from="(230,380)" to="(230,460)"/> <wire from="(230,380)" to="(360,380)"/> <wire from="(230,460)" to="(240,460)"/> <wire from="(230,490)" to="(230,570)"/> <wire from="(230,490)" to="(360,490)"/> <wire from="(230,570)" to="(240,570)"/> <wire from="(350,100)" to="(430,100)"/> <wire from="(350,110)" to="(360,110)"/> <wire from="(350,200)" to="(460,200)"/> <wire from="(350,210)" to="(380,210)"/> <wire from="(350,220)" to="(360,220)"/> <wire from="(350,310)" to="(430,310)"/> <wire from="(350,320)" to="(390,320)"/> <wire from="(350,330)" to="(360,330)"/> <wire from="(350,420)" to="(440,420)"/> <wire from="(350,430)" to="(400,430)"/> <wire from="(350,440)" to="(360,440)"/> <wire from="(350,530)" to="(450,530)"/> <wire from="(350,540)" to="(410,540)"/> <wire from="(350,550)" to="(380,550)"/> <wire from="(350,90)" to="(470,90)"/> <wire from="(360,110)" to="(360,160)"/> <wire from="(360,220)" to="(360,270)"/> <wire from="(360,330)" to="(360,380)"/> <wire from="(360,440)" to="(360,490)"/> <wire from="(380,130)" to="(380,210)"/> <wire from="(380,130)" to="(490,130)"/> <wire from="(390,140)" to="(390,320)"/> <wire from="(390,140)" to="(490,140)"/> <wire from="(400,150)" to="(400,430)"/> <wire from="(400,150)" to="(490,150)"/> <wire from="(410,160)" to="(410,540)"/> <wire from="(410,160)" to="(490,160)"/> <wire from="(430,100)" to="(430,120)"/> <wire from="(430,120)" to="(490,120)"/> <wire from="(430,280)" to="(430,310)"/> <wire from="(430,280)" to="(490,280)"/> <wire from="(440,290)" to="(440,420)"/> <wire from="(440,290)" to="(490,290)"/> <wire from="(450,300)" to="(450,530)"/> <wire from="(450,300)" to="(490,300)"/> <wire from="(460,200)" to="(460,270)"/> <wire from="(460,270)" to="(490,270)"/> <wire from="(470,260)" to="(490,260)"/> <wire from="(470,90)" to="(470,260)"/> <wire from="(510,110)" to="(520,110)"/> <wire from="(510,250)" to="(520,250)"/> </circuit> <circuit name="ParControl"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ParControl"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2_D"/> </comp> <comp lib="0" loc="(400,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAH"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(400,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PAL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(400,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PARR"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,80)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(300,120)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(340,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(390,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <wire from="(120,100)" to="(140,100)"/> <wire from="(120,140)" to="(240,140)"/> <wire from="(120,180)" to="(350,180)"/> <wire from="(120,60)" to="(140,60)"/> <wire from="(140,60)" to="(140,70)"/> <wire from="(140,70)" to="(180,70)"/> <wire from="(140,90)" to="(140,100)"/> <wire from="(140,90)" to="(180,90)"/> <wire from="(220,80)" to="(240,80)"/> <wire from="(240,110)" to="(260,110)"/> <wire from="(240,130)" to="(240,140)"/> <wire from="(240,130)" to="(260,130)"/> <wire from="(240,80)" to="(240,110)"/> <wire from="(240,80)" to="(400,80)"/> <wire from="(300,120)" to="(310,120)"/> <wire from="(310,120)" to="(310,160)"/> <wire from="(310,120)" to="(400,120)"/> <wire from="(310,160)" to="(320,160)"/> <wire from="(340,160)" to="(350,160)"/> <wire from="(390,170)" to="(400,170)"/> </circuit> <circuit name="ParHighBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="ParHighBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAH"/> </comp> <comp lib="0" loc="(100,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(100,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FAT_in"/> </comp> <comp lib="0" loc="(100,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAH_in"/> </comp> <comp lib="0" loc="(100,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PADx"/> </comp> <comp lib="0" loc="(100,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(100,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PARR"/> </comp> <comp lib="0" loc="(140,150)" name="NoConnect"/> <comp lib="0" loc="(330,220)" name="Constant"/> <comp lib="0" loc="(530,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(520,220)" name="Buffer"/> <comp lib="2" loc="(190,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(250,200)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(310,240)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(340,220)" name="DLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(440,220)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(100,100)" to="(230,100)"/> <wire from="(100,120)" to="(170,120)"/> <wire from="(100,170)" to="(160,170)"/> <wire from="(100,210)" to="(220,210)"/> <wire from="(100,250)" to="(280,250)"/> <wire from="(100,50)" to="(430,50)"/> <wire from="(100,80)" to="(290,80)"/> <wire from="(140,150)" to="(160,150)"/> <wire from="(170,120)" to="(170,140)"/> <wire from="(190,160)" to="(200,160)"/> <wire from="(200,160)" to="(200,190)"/> <wire from="(200,190)" to="(220,190)"/> <wire from="(230,100)" to="(230,180)"/> <wire from="(250,200)" to="(260,200)"/> <wire from="(260,200)" to="(260,230)"/> <wire from="(260,230)" to="(280,230)"/> <wire from="(290,80)" to="(290,220)"/> <wire from="(310,240)" to="(340,240)"/> <wire from="(330,220)" to="(340,220)"/> <wire from="(380,240)" to="(440,240)"/> <wire from="(430,220)" to="(440,220)"/> <wire from="(430,50)" to="(430,220)"/> <wire from="(480,220)" to="(500,220)"/> <wire from="(520,220)" to="(530,220)"/> </circuit> <circuit name="ParLowBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="ParLowBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAL"/> </comp> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(110,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FAT_in"/> </comp> <comp lib="0" loc="(110,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAL_in"/> </comp> <comp lib="0" loc="(110,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PADx"/> </comp> <comp lib="0" loc="(110,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DBx"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PARR"/> </comp> <comp lib="0" loc="(110,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(150,190)" name="NoConnect"/> <comp lib="0" loc="(400,300)" name="Constant"/> <comp lib="0" loc="(600,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAx"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(590,300)" name="Buffer"/> <comp lib="2" loc="(200,200)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(260,240)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(320,280)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(380,320)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(410,300)" name="DLatch"> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(510,300)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(110,100)" to="(240,100)"/> <wire from="(110,120)" to="(180,120)"/> <wire from="(110,210)" to="(170,210)"/> <wire from="(110,250)" to="(230,250)"/> <wire from="(110,290)" to="(290,290)"/> <wire from="(110,30)" to="(490,30)"/> <wire from="(110,330)" to="(350,330)"/> <wire from="(110,60)" to="(300,60)"/> <wire from="(110,80)" to="(360,80)"/> <wire from="(150,190)" to="(170,190)"/> <wire from="(180,120)" to="(180,180)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(210,200)" to="(210,230)"/> <wire from="(210,230)" to="(230,230)"/> <wire from="(240,100)" to="(240,220)"/> <wire from="(260,240)" to="(270,240)"/> <wire from="(270,240)" to="(270,270)"/> <wire from="(270,270)" to="(290,270)"/> <wire from="(300,60)" to="(300,260)"/> <wire from="(320,280)" to="(330,280)"/> <wire from="(330,280)" to="(330,310)"/> <wire from="(330,310)" to="(350,310)"/> <wire from="(360,80)" to="(360,300)"/> <wire from="(380,320)" to="(410,320)"/> <wire from="(400,300)" to="(410,300)"/> <wire from="(450,320)" to="(510,320)"/> <wire from="(490,30)" to="(490,300)"/> <wire from="(490,300)" to="(510,300)"/> <wire from="(550,300)" to="(570,300)"/> <wire from="(590,300)" to="(600,300)"/> </circuit> <circuit name="PAR"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="PAR"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(100,1070)" name="Tunnel"> <a name="label" val="DB1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(100,1090)" name="Tunnel"> <a name="label" val="DB3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(100,1110)" name="Tunnel"> <a name="label" val="DB5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(100,1130)" name="Tunnel"> <a name="label" val="DB7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(100,580)" name="Splitter"> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(100,760)" name="Splitter"> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(100,980)" name="Splitter"> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(110,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(110,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAH"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAL"/> </comp> <comp lib="0" loc="(110,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PARR"/> </comp> <comp lib="0" loc="(1100,730)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1110,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(130,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FAT_in"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(130,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAR_in"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(130,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAD_in"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(130,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="radix" val="16"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,580)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(140,760)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(140,980)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(170,150)" name="Splitter"> <a name="appear" val="right"/> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,1060)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,220)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,360)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,500)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,640)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,780)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,80)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(320,920)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(370,1020)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,1160)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB7"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,320)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB1"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,460)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,600)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB3"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,740)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(370,880)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="DB5"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(50,1140)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,130)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(580,370)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(590,580)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(70,1060)" name="Tunnel"> <a name="label" val="DB0"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(70,1080)" name="Tunnel"> <a name="label" val="DB2"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(70,1100)" name="Tunnel"> <a name="label" val="DB4"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(70,1120)" name="Tunnel"> <a name="label" val="DB6"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(780,820)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,190)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,310)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,430)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,550)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp lib="0" loc="(800,70)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </comp> <comp loc="(480,100)" name="ParLowBit"/> <comp loc="(480,1080)" name="ParLowBit"/> <comp loc="(480,240)" name="ParLowBit"/> <comp loc="(480,380)" name="ParLowBit"/> <comp loc="(480,520)" name="ParLowBit"/> <comp loc="(480,660)" name="ParLowBit"/> <comp loc="(480,800)" name="ParLowBit"/> <comp loc="(480,940)" name="ParLowBit"/> <comp loc="(940,850)" name="ParHighBit"/> <comp loc="(960,100)" name="ParHighBit"/> <comp loc="(960,220)" name="ParHighBit"/> <comp loc="(960,340)" name="ParHighBit"/> <comp loc="(960,460)" name="ParHighBit"/> <comp loc="(960,580)" name="ParHighBit"/> <wire from="(1000,460)" to="(1000,850)"/> <wire from="(1000,850)" to="(1080,850)"/> <wire from="(1010,340)" to="(1010,840)"/> <wire from="(1010,840)" to="(1080,840)"/> <wire from="(1020,220)" to="(1020,830)"/> <wire from="(1020,830)" to="(1080,830)"/> <wire from="(1030,100)" to="(1030,820)"/> <wire from="(1030,820)" to="(1080,820)"/> <wire from="(110,120)" to="(120,120)"/> <wire from="(110,150)" to="(130,150)"/> <wire from="(110,180)" to="(140,180)"/> <wire from="(110,210)" to="(150,210)"/> <wire from="(110,60)" to="(140,60)"/> <wire from="(110,90)" to="(130,90)"/> <wire from="(1100,730)" to="(1110,730)"/> <wire from="(120,110)" to="(120,120)"/> <wire from="(120,110)" to="(150,110)"/> <wire from="(120,440)" to="(170,440)"/> <wire from="(120,450)" to="(180,450)"/> <wire from="(120,460)" to="(190,460)"/> <wire from="(120,470)" to="(200,470)"/> <wire from="(120,480)" to="(190,480)"/> <wire from="(120,490)" to="(180,490)"/> <wire from="(120,500)" to="(170,500)"/> <wire from="(120,510)" to="(160,510)"/> <wire from="(120,620)" to="(210,620)"/> <wire from="(120,630)" to="(220,630)"/> <wire from="(120,640)" to="(230,640)"/> <wire from="(120,650)" to="(240,650)"/> <wire from="(120,660)" to="(240,660)"/> <wire from="(120,670)" to="(230,670)"/> <wire from="(120,680)" to="(220,680)"/> <wire from="(120,690)" to="(210,690)"/> <wire from="(120,780)" to="(120,840)"/> <wire from="(120,780)" to="(250,780)"/> <wire from="(120,850)" to="(130,850)"/> <wire from="(120,860)" to="(140,860)"/> <wire from="(120,870)" to="(150,870)"/> <wire from="(120,880)" to="(290,880)"/> <wire from="(120,890)" to="(300,890)"/> <wire from="(120,900)" to="(290,900)"/> <wire from="(120,910)" to="(280,910)"/> <wire from="(130,100)" to="(150,100)"/> <wire from="(130,120)" to="(130,150)"/> <wire from="(130,120)" to="(150,120)"/> <wire from="(130,270)" to="(160,270)"/> <wire from="(130,300)" to="(150,300)"/> <wire from="(130,330)" to="(140,330)"/> <wire from="(130,360)" to="(130,410)"/> <wire from="(130,790)" to="(130,850)"/> <wire from="(130,790)" to="(260,790)"/> <wire from="(130,90)" to="(130,100)"/> <wire from="(140,1190)" to="(570,1190)"/> <wire from="(140,130)" to="(140,180)"/> <wire from="(140,130)" to="(150,130)"/> <wire from="(140,330)" to="(140,400)"/> <wire from="(140,580)" to="(150,580)"/> <wire from="(140,60)" to="(140,90)"/> <wire from="(140,760)" to="(510,760)"/> <wire from="(140,800)" to="(140,860)"/> <wire from="(140,800)" to="(270,800)"/> <wire from="(140,90)" to="(150,90)"/> <wire from="(140,980)" to="(140,1190)"/> <wire from="(150,140)" to="(150,210)"/> <wire from="(150,300)" to="(150,390)"/> <wire from="(150,520)" to="(150,580)"/> <wire from="(150,520)" to="(290,520)"/> <wire from="(150,810)" to="(150,870)"/> <wire from="(150,810)" to="(280,810)"/> <wire from="(160,1130)" to="(380,1130)"/> <wire from="(160,270)" to="(160,380)"/> <wire from="(160,510)" to="(160,1130)"/> <wire from="(170,150)" to="(180,150)"/> <wire from="(170,170)" to="(170,440)"/> <wire from="(170,170)" to="(190,170)"/> <wire from="(170,500)" to="(170,990)"/> <wire from="(170,990)" to="(380,990)"/> <wire from="(180,290)" to="(180,450)"/> <wire from="(180,290)" to="(380,290)"/> <wire from="(180,30)" to="(180,150)"/> <wire from="(180,30)" to="(320,30)"/> <wire from="(180,490)" to="(180,850)"/> <wire from="(180,850)" to="(380,850)"/> <wire from="(190,150)" to="(190,170)"/> <wire from="(190,150)" to="(380,150)"/> <wire from="(190,430)" to="(190,460)"/> <wire from="(190,430)" to="(380,430)"/> <wire from="(190,480)" to="(190,710)"/> <wire from="(190,710)" to="(380,710)"/> <wire from="(200,470)" to="(200,570)"/> <wire from="(200,570)" to="(380,570)"/> <wire from="(210,1140)" to="(380,1140)"/> <wire from="(210,160)" to="(210,620)"/> <wire from="(210,160)" to="(380,160)"/> <wire from="(210,690)" to="(210,1140)"/> <wire from="(220,1000)" to="(380,1000)"/> <wire from="(220,300)" to="(220,630)"/> <wire from="(220,300)" to="(380,300)"/> <wire from="(220,680)" to="(220,1000)"/> <wire from="(230,440)" to="(230,640)"/> <wire from="(230,440)" to="(380,440)"/> <wire from="(230,670)" to="(230,860)"/> <wire from="(230,860)" to="(380,860)"/> <wire from="(240,580)" to="(240,650)"/> <wire from="(240,580)" to="(380,580)"/> <wire from="(240,660)" to="(240,720)"/> <wire from="(240,720)" to="(380,720)"/> <wire from="(250,170)" to="(250,780)"/> <wire from="(250,170)" to="(380,170)"/> <wire from="(260,310)" to="(260,790)"/> <wire from="(260,310)" to="(380,310)"/> <wire from="(270,590)" to="(270,800)"/> <wire from="(270,590)" to="(380,590)"/> <wire from="(280,1150)" to="(380,1150)"/> <wire from="(280,450)" to="(280,810)"/> <wire from="(280,450)" to="(380,450)"/> <wire from="(280,910)" to="(280,1150)"/> <wire from="(290,1010)" to="(380,1010)"/> <wire from="(290,480)" to="(290,520)"/> <wire from="(290,480)" to="(500,480)"/> <wire from="(290,730)" to="(290,880)"/> <wire from="(290,730)" to="(380,730)"/> <wire from="(290,900)" to="(290,1010)"/> <wire from="(30,1140)" to="(50,1140)"/> <wire from="(30,410)" to="(130,410)"/> <wire from="(30,410)" to="(30,1140)"/> <wire from="(300,870)" to="(300,890)"/> <wire from="(300,870)" to="(380,870)"/> <wire from="(320,220)" to="(320,360)"/> <wire from="(320,30)" to="(320,80)"/> <wire from="(320,30)" to="(800,30)"/> <wire from="(320,360)" to="(320,500)"/> <wire from="(320,500)" to="(320,640)"/> <wire from="(320,640)" to="(320,780)"/> <wire from="(320,780)" to="(320,920)"/> <wire from="(320,80)" to="(320,220)"/> <wire from="(320,920)" to="(320,1060)"/> <wire from="(340,100)" to="(360,100)"/> <wire from="(340,1070)" to="(370,1070)"/> <wire from="(340,1080)" to="(360,1080)"/> <wire from="(340,1090)" to="(350,1090)"/> <wire from="(340,110)" to="(350,110)"/> <wire from="(340,1110)" to="(380,1110)"/> <wire from="(340,1120)" to="(380,1120)"/> <wire from="(340,130)" to="(380,130)"/> <wire from="(340,140)" to="(380,140)"/> <wire from="(340,230)" to="(370,230)"/> <wire from="(340,240)" to="(360,240)"/> <wire from="(340,250)" to="(350,250)"/> <wire from="(340,270)" to="(380,270)"/> <wire from="(340,280)" to="(380,280)"/> <wire from="(340,370)" to="(370,370)"/> <wire from="(340,380)" to="(360,380)"/> <wire from="(340,390)" to="(350,390)"/> <wire from="(340,410)" to="(380,410)"/> <wire from="(340,420)" to="(380,420)"/> <wire from="(340,510)" to="(370,510)"/> <wire from="(340,520)" to="(360,520)"/> <wire from="(340,530)" to="(350,530)"/> <wire from="(340,550)" to="(380,550)"/> <wire from="(340,560)" to="(380,560)"/> <wire from="(340,650)" to="(370,650)"/> <wire from="(340,660)" to="(360,660)"/> <wire from="(340,670)" to="(350,670)"/> <wire from="(340,690)" to="(380,690)"/> <wire from="(340,700)" to="(380,700)"/> <wire from="(340,790)" to="(370,790)"/> <wire from="(340,800)" to="(360,800)"/> <wire from="(340,810)" to="(350,810)"/> <wire from="(340,830)" to="(380,830)"/> <wire from="(340,840)" to="(380,840)"/> <wire from="(340,90)" to="(370,90)"/> <wire from="(340,930)" to="(370,930)"/> <wire from="(340,940)" to="(360,940)"/> <wire from="(340,950)" to="(350,950)"/> <wire from="(340,970)" to="(380,970)"/> <wire from="(340,980)" to="(380,980)"/> <wire from="(350,1090)" to="(350,1100)"/> <wire from="(350,110)" to="(350,120)"/> <wire from="(350,1100)" to="(380,1100)"/> <wire from="(350,120)" to="(380,120)"/> <wire from="(350,250)" to="(350,260)"/> <wire from="(350,260)" to="(380,260)"/> <wire from="(350,390)" to="(350,400)"/> <wire from="(350,400)" to="(380,400)"/> <wire from="(350,530)" to="(350,540)"/> <wire from="(350,540)" to="(380,540)"/> <wire from="(350,670)" to="(350,680)"/> <wire from="(350,680)" to="(380,680)"/> <wire from="(350,810)" to="(350,820)"/> <wire from="(350,820)" to="(380,820)"/> <wire from="(350,950)" to="(350,960)"/> <wire from="(350,960)" to="(380,960)"/> <wire from="(360,100)" to="(360,110)"/> <wire from="(360,1080)" to="(360,1090)"/> <wire from="(360,1090)" to="(380,1090)"/> <wire from="(360,110)" to="(380,110)"/> <wire from="(360,240)" to="(360,250)"/> <wire from="(360,250)" to="(380,250)"/> <wire from="(360,380)" to="(360,390)"/> <wire from="(360,390)" to="(380,390)"/> <wire from="(360,520)" to="(360,530)"/> <wire from="(360,530)" to="(380,530)"/> <wire from="(360,660)" to="(360,670)"/> <wire from="(360,670)" to="(380,670)"/> <wire from="(360,800)" to="(360,810)"/> <wire from="(360,810)" to="(380,810)"/> <wire from="(360,940)" to="(360,950)"/> <wire from="(360,950)" to="(380,950)"/> <wire from="(370,100)" to="(380,100)"/> <wire from="(370,1020)" to="(380,1020)"/> <wire from="(370,1070)" to="(370,1080)"/> <wire from="(370,1080)" to="(380,1080)"/> <wire from="(370,1160)" to="(380,1160)"/> <wire from="(370,180)" to="(380,180)"/> <wire from="(370,230)" to="(370,240)"/> <wire from="(370,240)" to="(380,240)"/> <wire from="(370,320)" to="(380,320)"/> <wire from="(370,370)" to="(370,380)"/> <wire from="(370,380)" to="(380,380)"/> <wire from="(370,460)" to="(380,460)"/> <wire from="(370,510)" to="(370,520)"/> <wire from="(370,520)" to="(380,520)"/> <wire from="(370,600)" to="(380,600)"/> <wire from="(370,650)" to="(370,660)"/> <wire from="(370,660)" to="(380,660)"/> <wire from="(370,740)" to="(380,740)"/> <wire from="(370,790)" to="(370,800)"/> <wire from="(370,800)" to="(380,800)"/> <wire from="(370,880)" to="(380,880)"/> <wire from="(370,90)" to="(370,100)"/> <wire from="(370,930)" to="(370,940)"/> <wire from="(370,940)" to="(380,940)"/> <wire from="(40,400)" to="(140,400)"/> <wire from="(40,400)" to="(40,980)"/> <wire from="(40,980)" to="(100,980)"/> <wire from="(480,100)" to="(560,100)"/> <wire from="(480,1080)" to="(970,1080)"/> <wire from="(480,240)" to="(550,240)"/> <wire from="(480,380)" to="(540,380)"/> <wire from="(480,520)" to="(530,520)"/> <wire from="(480,660)" to="(520,660)"/> <wire from="(480,800)" to="(950,800)"/> <wire from="(480,940)" to="(960,940)"/> <wire from="(50,390)" to="(150,390)"/> <wire from="(50,390)" to="(50,760)"/> <wire from="(50,760)" to="(100,760)"/> <wire from="(500,130)" to="(500,480)"/> <wire from="(500,130)" to="(580,130)"/> <wire from="(510,370)" to="(510,760)"/> <wire from="(510,370)" to="(580,370)"/> <wire from="(520,660)" to="(520,780)"/> <wire from="(520,780)" to="(1080,780)"/> <wire from="(530,520)" to="(530,770)"/> <wire from="(530,770)" to="(1080,770)"/> <wire from="(540,380)" to="(540,760)"/> <wire from="(540,760)" to="(1080,760)"/> <wire from="(550,240)" to="(550,750)"/> <wire from="(550,750)" to="(1080,750)"/> <wire from="(560,100)" to="(560,740)"/> <wire from="(560,740)" to="(1080,740)"/> <wire from="(570,580)" to="(570,1190)"/> <wire from="(570,580)" to="(590,580)"/> <wire from="(60,380)" to="(160,380)"/> <wire from="(60,380)" to="(60,580)"/> <wire from="(60,580)" to="(100,580)"/> <wire from="(600,140)" to="(860,140)"/> <wire from="(600,150)" to="(650,150)"/> <wire from="(600,160)" to="(640,160)"/> <wire from="(600,170)" to="(630,170)"/> <wire from="(600,180)" to="(620,180)"/> <wire from="(600,190)" to="(610,190)"/> <wire from="(600,380)" to="(660,380)"/> <wire from="(600,390)" to="(680,390)"/> <wire from="(600,400)" to="(700,400)"/> <wire from="(600,410)" to="(720,410)"/> <wire from="(600,420)" to="(730,420)"/> <wire from="(600,430)" to="(640,430)"/> <wire from="(610,190)" to="(610,210)"/> <wire from="(610,210)" to="(650,210)"/> <wire from="(610,590)" to="(670,590)"/> <wire from="(610,600)" to="(690,600)"/> <wire from="(610,610)" to="(710,610)"/> <wire from="(610,620)" to="(720,620)"/> <wire from="(610,630)" to="(720,630)"/> <wire from="(610,640)" to="(630,640)"/> <wire from="(620,180)" to="(620,200)"/> <wire from="(620,200)" to="(760,200)"/> <wire from="(630,170)" to="(630,190)"/> <wire from="(630,190)" to="(770,190)"/> <wire from="(630,640)" to="(630,910)"/> <wire from="(630,910)" to="(840,910)"/> <wire from="(640,160)" to="(640,180)"/> <wire from="(640,180)" to="(780,180)"/> <wire from="(640,430)" to="(640,900)"/> <wire from="(640,900)" to="(840,900)"/> <wire from="(650,150)" to="(650,170)"/> <wire from="(650,170)" to="(790,170)"/> <wire from="(650,210)" to="(650,890)"/> <wire from="(650,890)" to="(840,890)"/> <wire from="(660,150)" to="(660,380)"/> <wire from="(660,150)" to="(860,150)"/> <wire from="(670,160)" to="(670,590)"/> <wire from="(670,160)" to="(860,160)"/> <wire from="(680,270)" to="(680,390)"/> <wire from="(680,270)" to="(860,270)"/> <wire from="(690,280)" to="(690,600)"/> <wire from="(690,280)" to="(860,280)"/> <wire from="(70,1070)" to="(100,1070)"/> <wire from="(70,1090)" to="(100,1090)"/> <wire from="(70,1110)" to="(100,1110)"/> <wire from="(70,1130)" to="(100,1130)"/> <wire from="(700,390)" to="(700,400)"/> <wire from="(700,390)" to="(860,390)"/> <wire from="(710,400)" to="(710,610)"/> <wire from="(710,400)" to="(860,400)"/> <wire from="(720,410)" to="(720,510)"/> <wire from="(720,510)" to="(860,510)"/> <wire from="(720,520)" to="(720,620)"/> <wire from="(720,520)" to="(860,520)"/> <wire from="(720,630)" to="(720,640)"/> <wire from="(720,640)" to="(860,640)"/> <wire from="(730,420)" to="(730,630)"/> <wire from="(730,630)" to="(860,630)"/> <wire from="(760,200)" to="(760,620)"/> <wire from="(760,620)" to="(860,620)"/> <wire from="(770,190)" to="(770,500)"/> <wire from="(770,500)" to="(860,500)"/> <wire from="(780,180)" to="(780,380)"/> <wire from="(780,380)" to="(860,380)"/> <wire from="(780,710)" to="(780,820)"/> <wire from="(780,710)" to="(800,710)"/> <wire from="(790,170)" to="(790,260)"/> <wire from="(790,260)" to="(860,260)"/> <wire from="(800,190)" to="(800,310)"/> <wire from="(800,30)" to="(800,70)"/> <wire from="(800,310)" to="(800,430)"/> <wire from="(800,430)" to="(800,550)"/> <wire from="(800,550)" to="(800,710)"/> <wire from="(800,70)" to="(800,190)"/> <wire from="(800,830)" to="(830,830)"/> <wire from="(800,840)" to="(820,840)"/> <wire from="(800,860)" to="(810,860)"/> <wire from="(800,880)" to="(840,880)"/> <wire from="(810,860)" to="(810,870)"/> <wire from="(810,870)" to="(840,870)"/> <wire from="(820,110)" to="(830,110)"/> <wire from="(820,130)" to="(860,130)"/> <wire from="(820,200)" to="(850,200)"/> <wire from="(820,210)" to="(840,210)"/> <wire from="(820,230)" to="(830,230)"/> <wire from="(820,250)" to="(860,250)"/> <wire from="(820,320)" to="(850,320)"/> <wire from="(820,330)" to="(840,330)"/> <wire from="(820,350)" to="(830,350)"/> <wire from="(820,370)" to="(860,370)"/> <wire from="(820,440)" to="(850,440)"/> <wire from="(820,450)" to="(840,450)"/> <wire from="(820,470)" to="(830,470)"/> <wire from="(820,490)" to="(860,490)"/> <wire from="(820,560)" to="(850,560)"/> <wire from="(820,570)" to="(840,570)"/> <wire from="(820,590)" to="(830,590)"/> <wire from="(820,610)" to="(860,610)"/> <wire from="(820,80)" to="(850,80)"/> <wire from="(820,840)" to="(820,860)"/> <wire from="(820,860)" to="(840,860)"/> <wire from="(820,90)" to="(840,90)"/> <wire from="(830,110)" to="(830,120)"/> <wire from="(830,120)" to="(860,120)"/> <wire from="(830,230)" to="(830,240)"/> <wire from="(830,240)" to="(860,240)"/> <wire from="(830,350)" to="(830,360)"/> <wire from="(830,360)" to="(860,360)"/> <wire from="(830,470)" to="(830,480)"/> <wire from="(830,480)" to="(860,480)"/> <wire from="(830,590)" to="(830,600)"/> <wire from="(830,600)" to="(860,600)"/> <wire from="(830,830)" to="(830,850)"/> <wire from="(830,850)" to="(840,850)"/> <wire from="(840,110)" to="(860,110)"/> <wire from="(840,210)" to="(840,230)"/> <wire from="(840,230)" to="(860,230)"/> <wire from="(840,330)" to="(840,350)"/> <wire from="(840,350)" to="(860,350)"/> <wire from="(840,450)" to="(840,470)"/> <wire from="(840,470)" to="(860,470)"/> <wire from="(840,570)" to="(840,590)"/> <wire from="(840,590)" to="(860,590)"/> <wire from="(840,90)" to="(840,110)"/> <wire from="(850,100)" to="(860,100)"/> <wire from="(850,200)" to="(850,220)"/> <wire from="(850,220)" to="(860,220)"/> <wire from="(850,320)" to="(850,340)"/> <wire from="(850,340)" to="(860,340)"/> <wire from="(850,440)" to="(850,460)"/> <wire from="(850,460)" to="(860,460)"/> <wire from="(850,560)" to="(850,580)"/> <wire from="(850,580)" to="(860,580)"/> <wire from="(850,80)" to="(850,100)"/> <wire from="(940,850)" to="(980,850)"/> <wire from="(950,790)" to="(1080,790)"/> <wire from="(950,790)" to="(950,800)"/> <wire from="(960,100)" to="(1030,100)"/> <wire from="(960,220)" to="(1020,220)"/> <wire from="(960,340)" to="(1010,340)"/> <wire from="(960,460)" to="(1000,460)"/> <wire from="(960,580)" to="(990,580)"/> <wire from="(960,800)" to="(1080,800)"/> <wire from="(960,800)" to="(960,940)"/> <wire from="(970,810)" to="(1080,810)"/> <wire from="(970,810)" to="(970,1080)"/> <wire from="(980,850)" to="(980,870)"/> <wire from="(980,870)" to="(1080,870)"/> <wire from="(990,580)" to="(990,860)"/> <wire from="(990,860)" to="(1080,860)"/> </circuit> <circuit name="Par_All"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="Par_All"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1060,120)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(1070,500)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1080,210)" name="Splitter"> <a name="appear" val="right"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(110,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="W62_EN"/> </comp> <comp lib="0" loc="(110,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SC_CNT"/> </comp> <comp lib="0" loc="(110,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(110,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="E_EV"/> </comp> <comp lib="0" loc="(110,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TSTEP"/> </comp> <comp lib="0" loc="(110,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TB"/> </comp> <comp lib="0" loc="(110,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(110,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(110,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(110,520)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="I1_32"/> </comp> <comp lib="0" loc="(110,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(110,670)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_H2_D"/> </comp> <comp lib="0" loc="(110,710)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(110,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(1120,300)" name="Constant"/> <comp lib="0" loc="(1160,230)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1170,500)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(1190,430)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(1190,850)" name="Splitter"> <a name="fanout" val="13"/> <a name="incoming" val="13"/> </comp> <comp lib="0" loc="(1220,850)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(1240,710)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="14"/> <a name="incoming" val="14"/> </comp> <comp lib="0" loc="(130,770)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAD_in"/> <a name="radix" val="16"/> <a name="width" val="13"/> </comp> <comp lib="0" loc="(130,790)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="radix" val="16"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(130,830)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FVx"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(130,830)" name="Tunnel"> <a name="label" val="FVx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(130,850)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTH"/> </comp> <comp lib="0" loc="(130,850)" name="Tunnel"> <a name="label" val="NTH"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,870)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NTV"/> </comp> <comp lib="0" loc="(130,870)" name="Tunnel"> <a name="label" val="NTV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(130,890)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVx"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(130,890)" name="Tunnel"> <a name="label" val="TVx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(130,910)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THx"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(130,910)" name="Tunnel"> <a name="label" val="THx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1480,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="THO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1480,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="TVO"/> <a name="output" val="true"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(1480,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_PAx"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="14"/> </comp> <comp lib="0" loc="(1480,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_FVO"/> <a name="output" val="true"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(490,790)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(600,180)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="FVx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(600,340)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NTH"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(600,420)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="NTV"/> <a name="labelfont" val="SansSerif bold 9"/> </comp> <comp lib="0" loc="(600,580)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="TVx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(600,750)" name="Tunnel"> <a name="facing" val="east"/> <a name="label" val="THx"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(860,120)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(930,510)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="1" loc="(1010,130)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1160,100)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(920,140)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(980,130)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="8" loc="(1015,120)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit13"/> </comp> <comp lib="8" loc="(1180,95)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit12"/> </comp> <comp lib="8" loc="(965,310)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit11"/> </comp> <comp lib="8" loc="(970,255)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="bit10"/> </comp> <comp loc="(1470,360)" name="PAR"/> <comp loc="(440,100)" name="ParCountersControl"/> <comp loc="(440,360)" name="ParCountersControl2"/> <comp loc="(440,670)" name="ParControl"/> <comp loc="(840,100)" name="Par_FV_Counter"/> <comp loc="(840,260)" name="Par_NT_Counters"/> <comp loc="(840,500)" name="Par_TV_Counter"/> <comp loc="(840,670)" name="Par_TH_Counter"/> <wire from="(1000,270)" to="(1000,480)"/> <wire from="(1000,270)" to="(1140,270)"/> <wire from="(1000,480)" to="(1000,580)"/> <wire from="(1000,580)" to="(1150,580)"/> <wire from="(1010,130)" to="(1030,130)"/> <wire from="(1010,260)" to="(1010,610)"/> <wire from="(1010,610)" to="(1100,610)"/> <wire from="(1020,300)" to="(1020,620)"/> <wire from="(1020,620)" to="(1110,620)"/> <wire from="(1030,130)" to="(1030,640)"/> <wire from="(1030,640)" to="(1130,640)"/> <wire from="(1040,160)" to="(1040,630)"/> <wire from="(1040,160)" to="(1190,160)"/> <wire from="(1040,630)" to="(1120,630)"/> <wire from="(1050,120)" to="(1060,120)"/> <wire from="(1050,470)" to="(1050,570)"/> <wire from="(1050,570)" to="(1150,570)"/> <wire from="(1050,70)" to="(1050,120)"/> <wire from="(1050,70)" to="(1480,70)"/> <wire from="(1060,460)" to="(1060,560)"/> <wire from="(1060,560)" to="(1150,560)"/> <wire from="(1070,210)" to="(1070,500)"/> <wire from="(1070,210)" to="(1080,210)"/> <wire from="(1070,500)" to="(1070,690)"/> <wire from="(1080,90)" to="(1120,90)"/> <wire from="(1090,510)" to="(1150,510)"/> <wire from="(1090,520)" to="(1150,520)"/> <wire from="(1090,530)" to="(1150,530)"/> <wire from="(1090,540)" to="(1150,540)"/> <wire from="(1090,550)" to="(1150,550)"/> <wire from="(110,140)" to="(220,140)"/> <wire from="(110,160)" to="(220,160)"/> <wire from="(110,180)" to="(220,180)"/> <wire from="(110,200)" to="(220,200)"/> <wire from="(110,220)" to="(220,220)"/> <wire from="(110,240)" to="(220,240)"/> <wire from="(110,260)" to="(220,260)"/> <wire from="(110,40)" to="(210,40)"/> <wire from="(110,400)" to="(120,400)"/> <wire from="(110,520)" to="(220,520)"/> <wire from="(110,60)" to="(200,60)"/> <wire from="(110,670)" to="(220,670)"/> <wire from="(110,710)" to="(210,710)"/> <wire from="(110,730)" to="(200,730)"/> <wire from="(1100,110)" to="(1100,150)"/> <wire from="(1100,110)" to="(1120,110)"/> <wire from="(1100,240)" to="(1140,240)"/> <wire from="(1100,250)" to="(1140,250)"/> <wire from="(1100,260)" to="(1140,260)"/> <wire from="(1100,340)" to="(1100,610)"/> <wire from="(1100,340)" to="(1140,340)"/> <wire from="(1100,610)" to="(1150,610)"/> <wire from="(1110,350)" to="(1110,620)"/> <wire from="(1110,350)" to="(1140,350)"/> <wire from="(1110,620)" to="(1150,620)"/> <wire from="(1120,300)" to="(1130,300)"/> <wire from="(1120,360)" to="(1120,630)"/> <wire from="(1120,360)" to="(1140,360)"/> <wire from="(1120,630)" to="(1150,630)"/> <wire from="(1130,300)" to="(1130,310)"/> <wire from="(1130,300)" to="(1140,300)"/> <wire from="(1130,310)" to="(1130,320)"/> <wire from="(1130,310)" to="(1140,310)"/> <wire from="(1130,320)" to="(1130,330)"/> <wire from="(1130,320)" to="(1140,320)"/> <wire from="(1130,330)" to="(1140,330)"/> <wire from="(1130,370)" to="(1130,640)"/> <wire from="(1130,370)" to="(1140,370)"/> <wire from="(1130,640)" to="(1150,640)"/> <wire from="(1160,100)" to="(1190,100)"/> <wire from="(1160,230)" to="(1170,230)"/> <wire from="(1170,230)" to="(1170,480)"/> <wire from="(1170,480)" to="(1250,480)"/> <wire from="(1170,500)" to="(1250,500)"/> <wire from="(1190,100)" to="(1190,160)"/> <wire from="(1190,430)" to="(1190,790)"/> <wire from="(1190,850)" to="(1190,860)"/> <wire from="(120,400)" to="(120,690)"/> <wire from="(120,400)" to="(150,400)"/> <wire from="(120,690)" to="(220,690)"/> <wire from="(1210,380)" to="(1250,380)"/> <wire from="(1210,390)" to="(1240,390)"/> <wire from="(1210,400)" to="(1230,400)"/> <wire from="(1210,410)" to="(1220,410)"/> <wire from="(1210,420)" to="(1210,460)"/> <wire from="(1210,460)" to="(1250,460)"/> <wire from="(1210,720)" to="(1220,720)"/> <wire from="(1210,730)" to="(1220,730)"/> <wire from="(1210,740)" to="(1220,740)"/> <wire from="(1210,750)" to="(1220,750)"/> <wire from="(1210,760)" to="(1220,760)"/> <wire from="(1210,770)" to="(1220,770)"/> <wire from="(1210,780)" to="(1220,780)"/> <wire from="(1210,790)" to="(1220,790)"/> <wire from="(1210,800)" to="(1220,800)"/> <wire from="(1210,810)" to="(1220,810)"/> <wire from="(1210,820)" to="(1220,820)"/> <wire from="(1210,830)" to="(1220,830)"/> <wire from="(1210,840)" to="(1220,840)"/> <wire from="(1220,410)" to="(1220,440)"/> <wire from="(1220,440)" to="(1250,440)"/> <wire from="(1230,360)" to="(1250,360)"/> <wire from="(1230,400)" to="(1230,420)"/> <wire from="(1230,420)" to="(1250,420)"/> <wire from="(1230,60)" to="(1230,360)"/> <wire from="(1240,390)" to="(1240,400)"/> <wire from="(1240,400)" to="(1250,400)"/> <wire from="(1240,520)" to="(1240,710)"/> <wire from="(1240,520)" to="(1250,520)"/> <wire from="(1250,540)" to="(1250,870)"/> <wire from="(130,770)" to="(180,770)"/> <wire from="(130,790)" to="(170,790)"/> <wire from="(1320,100)" to="(1320,180)"/> <wire from="(1320,100)" to="(1480,100)"/> <wire from="(1350,130)" to="(1350,190)"/> <wire from="(1350,130)" to="(1480,130)"/> <wire from="(1470,360)" to="(1480,360)"/> <wire from="(150,20)" to="(150,400)"/> <wire from="(150,20)" to="(890,20)"/> <wire from="(150,400)" to="(220,400)"/> <wire from="(150,440)" to="(150,640)"/> <wire from="(150,440)" to="(220,440)"/> <wire from="(150,640)" to="(850,640)"/> <wire from="(160,420)" to="(160,650)"/> <wire from="(160,420)" to="(220,420)"/> <wire from="(160,650)" to="(850,650)"/> <wire from="(170,500)" to="(220,500)"/> <wire from="(170,70)" to="(170,500)"/> <wire from="(170,70)" to="(850,70)"/> <wire from="(170,790)" to="(170,870)"/> <wire from="(170,870)" to="(1250,870)"/> <wire from="(180,310)" to="(180,480)"/> <wire from="(180,310)" to="(440,310)"/> <wire from="(180,480)" to="(220,480)"/> <wire from="(180,770)" to="(180,860)"/> <wire from="(180,860)" to="(1190,860)"/> <wire from="(190,320)" to="(190,460)"/> <wire from="(190,320)" to="(450,320)"/> <wire from="(190,460)" to="(220,460)"/> <wire from="(200,120)" to="(200,380)"/> <wire from="(200,120)" to="(220,120)"/> <wire from="(200,380)" to="(220,380)"/> <wire from="(200,60)" to="(200,120)"/> <wire from="(200,60)" to="(610,60)"/> <wire from="(200,730)" to="(200,810)"/> <wire from="(200,730)" to="(220,730)"/> <wire from="(200,810)" to="(470,810)"/> <wire from="(210,100)" to="(210,360)"/> <wire from="(210,100)" to="(220,100)"/> <wire from="(210,360)" to="(220,360)"/> <wire from="(210,40)" to="(210,100)"/> <wire from="(210,540)" to="(210,590)"/> <wire from="(210,540)" to="(220,540)"/> <wire from="(210,590)" to="(450,590)"/> <wire from="(210,710)" to="(210,840)"/> <wire from="(210,710)" to="(220,710)"/> <wire from="(210,840)" to="(470,840)"/> <wire from="(440,100)" to="(540,100)"/> <wire from="(440,120)" to="(510,120)"/> <wire from="(440,140)" to="(500,140)"/> <wire from="(440,160)" to="(520,160)"/> <wire from="(440,220)" to="(440,310)"/> <wire from="(440,220)" to="(870,220)"/> <wire from="(440,360)" to="(460,360)"/> <wire from="(440,380)" to="(550,380)"/> <wire from="(440,400)" to="(530,400)"/> <wire from="(440,420)" to="(490,420)"/> <wire from="(440,440)" to="(480,440)"/> <wire from="(440,460)" to="(460,460)"/> <wire from="(440,670)" to="(470,670)"/> <wire from="(440,690)" to="(450,690)"/> <wire from="(440,710)" to="(440,830)"/> <wire from="(440,830)" to="(470,830)"/> <wire from="(450,230)" to="(450,320)"/> <wire from="(450,230)" to="(860,230)"/> <wire from="(450,540)" to="(450,590)"/> <wire from="(450,540)" to="(520,540)"/> <wire from="(450,690)" to="(450,820)"/> <wire from="(450,820)" to="(470,820)"/> <wire from="(460,320)" to="(460,360)"/> <wire from="(460,320)" to="(620,320)"/> <wire from="(460,460)" to="(460,600)"/> <wire from="(460,600)" to="(620,600)"/> <wire from="(470,670)" to="(470,800)"/> <wire from="(480,440)" to="(480,730)"/> <wire from="(480,730)" to="(620,730)"/> <wire from="(490,420)" to="(490,560)"/> <wire from="(490,560)" to="(620,560)"/> <wire from="(490,790)" to="(1190,790)"/> <wire from="(500,140)" to="(500,300)"/> <wire from="(500,300)" to="(500,710)"/> <wire from="(500,300)" to="(620,300)"/> <wire from="(500,710)" to="(620,710)"/> <wire from="(510,120)" to="(510,280)"/> <wire from="(510,280)" to="(510,690)"/> <wire from="(510,280)" to="(620,280)"/> <wire from="(510,690)" to="(620,690)"/> <wire from="(520,140)" to="(520,160)"/> <wire from="(520,140)" to="(620,140)"/> <wire from="(520,160)" to="(520,370)"/> <wire from="(520,370)" to="(520,540)"/> <wire from="(520,370)" to="(560,370)"/> <wire from="(520,540)" to="(620,540)"/> <wire from="(530,160)" to="(530,400)"/> <wire from="(530,160)" to="(620,160)"/> <wire from="(540,100)" to="(540,120)"/> <wire from="(540,120)" to="(540,360)"/> <wire from="(540,120)" to="(620,120)"/> <wire from="(540,360)" to="(540,520)"/> <wire from="(540,360)" to="(620,360)"/> <wire from="(540,520)" to="(620,520)"/> <wire from="(550,380)" to="(550,400)"/> <wire from="(550,400)" to="(620,400)"/> <wire from="(560,370)" to="(560,380)"/> <wire from="(560,380)" to="(620,380)"/> <wire from="(600,180)" to="(620,180)"/> <wire from="(600,340)" to="(620,340)"/> <wire from="(600,420)" to="(620,420)"/> <wire from="(600,580)" to="(620,580)"/> <wire from="(600,750)" to="(620,750)"/> <wire from="(610,100)" to="(610,260)"/> <wire from="(610,100)" to="(620,100)"/> <wire from="(610,260)" to="(610,500)"/> <wire from="(610,260)" to="(620,260)"/> <wire from="(610,500)" to="(610,670)"/> <wire from="(610,500)" to="(620,500)"/> <wire from="(610,60)" to="(1230,60)"/> <wire from="(610,60)" to="(610,100)"/> <wire from="(610,670)" to="(620,670)"/> <wire from="(840,100)" to="(850,100)"/> <wire from="(840,120)" to="(860,120)"/> <wire from="(840,260)" to="(1010,260)"/> <wire from="(840,280)" to="(860,280)"/> <wire from="(840,300)" to="(1020,300)"/> <wire from="(840,320)" to="(870,320)"/> <wire from="(840,500)" to="(850,500)"/> <wire from="(840,520)" to="(910,520)"/> <wire from="(840,670)" to="(850,670)"/> <wire from="(840,690)" to="(920,690)"/> <wire from="(850,500)" to="(850,640)"/> <wire from="(850,650)" to="(850,670)"/> <wire from="(850,70)" to="(1050,70)"/> <wire from="(850,70)" to="(850,100)"/> <wire from="(860,230)" to="(860,280)"/> <wire from="(870,220)" to="(870,320)"/> <wire from="(880,100)" to="(910,100)"/> <wire from="(890,140)" to="(900,140)"/> <wire from="(890,20)" to="(890,140)"/> <wire from="(910,100)" to="(910,120)"/> <wire from="(910,120)" to="(940,120)"/> <wire from="(910,190)" to="(1350,190)"/> <wire from="(910,190)" to="(910,520)"/> <wire from="(910,520)" to="(930,520)"/> <wire from="(920,140)" to="(930,140)"/> <wire from="(920,180)" to="(1320,180)"/> <wire from="(920,180)" to="(920,690)"/> <wire from="(920,690)" to="(1070,690)"/> <wire from="(930,140)" to="(930,150)"/> <wire from="(930,140)" to="(940,140)"/> <wire from="(930,150)" to="(1100,150)"/> <wire from="(930,510)" to="(930,520)"/> <wire from="(950,460)" to="(1060,460)"/> <wire from="(950,470)" to="(1050,470)"/> <wire from="(950,480)" to="(1000,480)"/> <wire from="(950,490)" to="(990,490)"/> <wire from="(950,500)" to="(980,500)"/> <wire from="(980,130)" to="(990,130)"/> <wire from="(980,290)" to="(1140,290)"/> <wire from="(980,290)" to="(980,500)"/> <wire from="(980,500)" to="(980,600)"/> <wire from="(980,600)" to="(1150,600)"/> <wire from="(990,280)" to="(1140,280)"/> <wire from="(990,280)" to="(990,490)"/> <wire from="(990,490)" to="(990,590)"/> <wire from="(990,590)" to="(1150,590)"/> </circuit> <circuit name="BGC_Control"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_Control"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(120,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TA"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TB"/> </comp> <comp lib="0" loc="(120,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_FO"/> </comp> <comp lib="0" loc="(120,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(130,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(140,460)" name="Splitter"> <a name="fanout" val="5"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(350,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PD_SR"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="SRLOAD"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="STEP"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="STEP2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="PD_SEL"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="NEXTS"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(350,450)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H01"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(160,120)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,240)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(160,330)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(240,220)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,120)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,170)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,220)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,270)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,320)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(310,390)" name="NOR Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(350,450)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="8" loc="(175,115)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="/H0''"/> </comp> <comp lib="8" loc="(415,375)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="aka NEXT"/> </comp> <comp loc="(170,310)" name="DLatch"> <a name="label" val="fat_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(270,430)" name="DLatch"> <a name="label" val="tho1_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(140,120)"/> <wire from="(120,150)" to="(140,150)"/> <wire from="(120,180)" to="(140,180)"/> <wire from="(120,240)" to="(140,240)"/> <wire from="(120,330)" to="(140,330)"/> <wire from="(120,40)" to="(260,40)"/> <wire from="(120,70)" to="(130,70)"/> <wire from="(130,400)" to="(270,400)"/> <wire from="(130,460)" to="(140,460)"/> <wire from="(130,70)" to="(130,400)"/> <wire from="(130,70)" to="(420,70)"/> <wire from="(150,260)" to="(150,310)"/> <wire from="(150,260)" to="(260,260)"/> <wire from="(150,310)" to="(170,310)"/> <wire from="(160,120)" to="(190,120)"/> <wire from="(160,150)" to="(220,150)"/> <wire from="(160,180)" to="(180,180)"/> <wire from="(160,240)" to="(250,240)"/> <wire from="(160,330)" to="(170,330)"/> <wire from="(160,420)" to="(200,420)"/> <wire from="(180,180)" to="(180,210)"/> <wire from="(180,180)" to="(230,180)"/> <wire from="(180,210)" to="(200,210)"/> <wire from="(190,120)" to="(190,230)"/> <wire from="(190,120)" to="(250,120)"/> <wire from="(190,230)" to="(190,280)"/> <wire from="(190,230)" to="(200,230)"/> <wire from="(190,280)" to="(230,280)"/> <wire from="(200,420)" to="(200,450)"/> <wire from="(200,450)" to="(270,450)"/> <wire from="(210,310)" to="(270,310)"/> <wire from="(220,110)" to="(220,150)"/> <wire from="(220,110)" to="(270,110)"/> <wire from="(220,350)" to="(220,380)"/> <wire from="(220,350)" to="(330,350)"/> <wire from="(220,380)" to="(270,380)"/> <wire from="(230,160)" to="(230,180)"/> <wire from="(230,160)" to="(270,160)"/> <wire from="(230,280)" to="(230,330)"/> <wire from="(230,330)" to="(270,330)"/> <wire from="(240,220)" to="(270,220)"/> <wire from="(240,360)" to="(240,390)"/> <wire from="(240,360)" to="(340,360)"/> <wire from="(240,390)" to="(270,390)"/> <wire from="(250,120)" to="(250,170)"/> <wire from="(250,120)" to="(270,120)"/> <wire from="(250,170)" to="(270,170)"/> <wire from="(250,230)" to="(250,240)"/> <wire from="(250,230)" to="(270,230)"/> <wire from="(250,240)" to="(250,280)"/> <wire from="(250,280)" to="(270,280)"/> <wire from="(260,130)" to="(260,180)"/> <wire from="(260,130)" to="(270,130)"/> <wire from="(260,180)" to="(260,210)"/> <wire from="(260,180)" to="(270,180)"/> <wire from="(260,210)" to="(260,260)"/> <wire from="(260,210)" to="(270,210)"/> <wire from="(260,260)" to="(260,320)"/> <wire from="(260,260)" to="(270,260)"/> <wire from="(260,320)" to="(260,430)"/> <wire from="(260,320)" to="(270,320)"/> <wire from="(260,40)" to="(260,130)"/> <wire from="(260,40)" to="(420,40)"/> <wire from="(260,430)" to="(270,430)"/> <wire from="(310,120)" to="(350,120)"/> <wire from="(310,170)" to="(350,170)"/> <wire from="(310,220)" to="(330,220)"/> <wire from="(310,270)" to="(340,270)"/> <wire from="(310,320)" to="(350,320)"/> <wire from="(310,390)" to="(350,390)"/> <wire from="(310,450)" to="(330,450)"/> <wire from="(330,220)" to="(330,350)"/> <wire from="(330,220)" to="(350,220)"/> <wire from="(340,270)" to="(340,360)"/> <wire from="(340,270)" to="(350,270)"/> </circuit> <circuit name="BGC_SRBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="BGC_SRBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="LOAD"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NEXTS"/> </comp> <comp lib="0" loc="(120,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="shift_in"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> </comp> <comp lib="0" loc="(230,100)" name="Constant"/> <comp lib="0" loc="(400,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="shift_out"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(150,80)" name="Controlled Buffer"/> <comp lib="1" loc="(170,50)" name="Controlled Buffer"/> <comp lib="4" loc="(240,50)" name="D Flip-Flop"> <a name="appearance" val="evolution"/> <a name="label" val="in_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="trigger" val="high"/> </comp> <comp loc="(320,60)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(120,120)" to="(140,120)"/> <wire from="(120,140)" to="(160,140)"/> <wire from="(120,160)" to="(310,160)"/> <wire from="(120,50)" to="(150,50)"/> <wire from="(120,80)" to="(130,80)"/> <wire from="(140,90)" to="(140,120)"/> <wire from="(150,80)" to="(180,80)"/> <wire from="(160,60)" to="(160,140)"/> <wire from="(170,50)" to="(180,50)"/> <wire from="(180,50)" to="(180,80)"/> <wire from="(180,80)" to="(210,80)"/> <wire from="(210,60)" to="(210,80)"/> <wire from="(210,60)" to="(230,60)"/> <wire from="(290,100)" to="(300,100)"/> <wire from="(300,80)" to="(300,100)"/> <wire from="(300,80)" to="(320,80)"/> <wire from="(310,60)" to="(310,160)"/> <wire from="(310,60)" to="(320,60)"/> <wire from="(360,80)" to="(400,80)"/> </circuit> <circuit name="BGC_SR8"> <a name="appearance" val="evolution"/> <a name="circuit" val="BGC_SR8"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Nexts"/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,30)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="sin"/> </comp> <comp lib="0" loc="(140,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Load"/> </comp> <comp lib="0" loc="(140,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="Step"/> </comp> <comp lib="0" loc="(150,230)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(170,60)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(210,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(210,330)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(370,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(370,330)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(530,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(530,330)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,130)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(690,330)" name="Splitter"> <a name="fanout" val="3"/> <a name="incoming" val="3"/> </comp> <comp lib="0" loc="(890,160)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(900,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="sout"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp loc="(340,280)" name="BGC_SRBit"> <a name="label" val="bit_3"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(340,80)" name="BGC_SRBit"> <a name="label" val="bit_7"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,280)" name="BGC_SRBit"> <a name="label" val="bit_2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(500,80)" name="BGC_SRBit"> <a name="label" val="bit_6"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(660,280)" name="BGC_SRBit"> <a name="label" val="bit_1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(660,80)" name="BGC_SRBit"> <a name="label" val="bit_5"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(820,280)" name="BGC_SRBit"> <a name="label" val="bit_0"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(820,80)" name="BGC_SRBit"> <a name="label" val="bit_4"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,100)" to="(150,100)"/> <wire from="(140,230)" to="(150,230)"/> <wire from="(140,30)" to="(190,30)"/> <wire from="(140,60)" to="(150,60)"/> <wire from="(140,80)" to="(150,80)"/> <wire from="(150,60)" to="(150,70)"/> <wire from="(150,90)" to="(150,100)"/> <wire from="(170,150)" to="(190,150)"/> <wire from="(170,160)" to="(360,160)"/> <wire from="(170,170)" to="(520,170)"/> <wire from="(170,180)" to="(680,180)"/> <wire from="(170,190)" to="(220,190)"/> <wire from="(170,200)" to="(380,200)"/> <wire from="(170,210)" to="(540,210)"/> <wire from="(170,220)" to="(700,220)"/> <wire from="(170,40)" to="(170,60)"/> <wire from="(170,40)" to="(210,40)"/> <wire from="(190,30)" to="(190,80)"/> <wire from="(190,80)" to="(230,80)"/> <wire from="(190,90)" to="(190,150)"/> <wire from="(190,90)" to="(230,90)"/> <wire from="(200,280)" to="(200,350)"/> <wire from="(200,280)" to="(230,280)"/> <wire from="(200,350)" to="(840,350)"/> <wire from="(210,130)" to="(210,330)"/> <wire from="(210,40)" to="(210,130)"/> <wire from="(210,40)" to="(370,40)"/> <wire from="(220,190)" to="(220,290)"/> <wire from="(220,290)" to="(230,290)"/> <wire from="(340,280)" to="(350,280)"/> <wire from="(340,80)" to="(350,80)"/> <wire from="(350,150)" to="(870,150)"/> <wire from="(350,190)" to="(350,280)"/> <wire from="(350,190)" to="(720,190)"/> <wire from="(350,280)" to="(390,280)"/> <wire from="(350,80)" to="(350,150)"/> <wire from="(350,80)" to="(390,80)"/> <wire from="(360,90)" to="(360,160)"/> <wire from="(360,90)" to="(390,90)"/> <wire from="(370,130)" to="(370,330)"/> <wire from="(370,40)" to="(370,130)"/> <wire from="(370,40)" to="(530,40)"/> <wire from="(380,200)" to="(380,290)"/> <wire from="(380,290)" to="(390,290)"/> <wire from="(500,280)" to="(510,280)"/> <wire from="(500,80)" to="(510,80)"/> <wire from="(510,160)" to="(860,160)"/> <wire from="(510,230)" to="(510,280)"/> <wire from="(510,230)" to="(710,230)"/> <wire from="(510,280)" to="(550,280)"/> <wire from="(510,80)" to="(510,160)"/> <wire from="(510,80)" to="(550,80)"/> <wire from="(520,90)" to="(520,170)"/> <wire from="(520,90)" to="(550,90)"/> <wire from="(530,130)" to="(530,330)"/> <wire from="(530,40)" to="(530,130)"/> <wire from="(530,40)" to="(690,40)"/> <wire from="(540,210)" to="(540,290)"/> <wire from="(540,290)" to="(550,290)"/> <wire from="(660,280)" to="(670,280)"/> <wire from="(660,80)" to="(670,80)"/> <wire from="(670,170)" to="(850,170)"/> <wire from="(670,240)" to="(670,280)"/> <wire from="(670,240)" to="(810,240)"/> <wire from="(670,280)" to="(710,280)"/> <wire from="(670,80)" to="(670,170)"/> <wire from="(670,80)" to="(710,80)"/> <wire from="(680,90)" to="(680,180)"/> <wire from="(680,90)" to="(710,90)"/> <wire from="(690,130)" to="(690,330)"/> <wire from="(690,40)" to="(690,130)"/> <wire from="(690,40)" to="(820,40)"/> <wire from="(700,220)" to="(700,290)"/> <wire from="(700,290)" to="(710,290)"/> <wire from="(710,220)" to="(710,230)"/> <wire from="(710,220)" to="(870,220)"/> <wire from="(720,190)" to="(720,210)"/> <wire from="(720,210)" to="(870,210)"/> <wire from="(810,230)" to="(810,240)"/> <wire from="(810,230)" to="(870,230)"/> <wire from="(820,280)" to="(860,280)"/> <wire from="(820,80)" to="(840,80)"/> <wire from="(840,200)" to="(840,350)"/> <wire from="(840,200)" to="(870,200)"/> <wire from="(840,80)" to="(840,200)"/> <wire from="(850,170)" to="(850,190)"/> <wire from="(850,190)" to="(870,190)"/> <wire from="(860,160)" to="(860,180)"/> <wire from="(860,180)" to="(870,180)"/> <wire from="(860,240)" to="(860,280)"/> <wire from="(860,240)" to="(870,240)"/> <wire from="(870,150)" to="(870,170)"/> <wire from="(890,160)" to="(900,160)"/> </circuit> <circuit name="BGC_0"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_0"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_SR"/> </comp> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SRLOAD"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP2"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NEXTS"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FH"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(280,170)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(320,80)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(380,130)" name="Constant"/> <comp lib="0" loc="(500,130)" name="Splitter"> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(530,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,170)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(670,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(750,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_BGC0_Out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(740,140)" name="Multiplexer"> <a name="select" val="3"/> </comp> <comp lib="8" loc="(270,65)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="The PD is loaded into the SR in reverse order according to the pixel output order."/> </comp> <comp loc="(270,160)" name="DLatch_x8"/> <comp loc="(490,130)" name="BGC_SR8"/> <comp loc="(640,130)" name="BGC_SR8"/> <wire from="(120,130)" to="(140,130)"/> <wire from="(130,220)" to="(350,220)"/> <wire from="(130,240)" to="(360,240)"/> <wire from="(130,260)" to="(510,260)"/> <wire from="(130,280)" to="(370,280)"/> <wire from="(130,310)" to="(720,310)"/> <wire from="(140,130)" to="(140,160)"/> <wire from="(140,160)" to="(160,160)"/> <wire from="(140,170)" to="(160,170)"/> <wire from="(270,170)" to="(280,170)"/> <wire from="(320,80)" to="(330,80)"/> <wire from="(330,170)" to="(390,170)"/> <wire from="(330,80)" to="(330,170)"/> <wire from="(350,140)" to="(350,220)"/> <wire from="(350,140)" to="(390,140)"/> <wire from="(360,150)" to="(360,240)"/> <wire from="(360,150)" to="(390,150)"/> <wire from="(370,160)" to="(370,280)"/> <wire from="(370,160)" to="(390,160)"/> <wire from="(370,280)" to="(520,280)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(490,130)" to="(500,130)"/> <wire from="(510,150)" to="(510,260)"/> <wire from="(510,150)" to="(540,150)"/> <wire from="(520,120)" to="(520,130)"/> <wire from="(520,130)" to="(540,130)"/> <wire from="(520,160)" to="(520,280)"/> <wire from="(520,160)" to="(540,160)"/> <wire from="(530,140)" to="(540,140)"/> <wire from="(530,170)" to="(540,170)"/> <wire from="(640,130)" to="(650,130)"/> <wire from="(650,130)" to="(650,180)"/> <wire from="(650,180)" to="(670,180)"/> <wire from="(690,100)" to="(700,100)"/> <wire from="(690,110)" to="(700,110)"/> <wire from="(690,120)" to="(700,120)"/> <wire from="(690,130)" to="(700,130)"/> <wire from="(690,140)" to="(700,140)"/> <wire from="(690,150)" to="(700,150)"/> <wire from="(690,160)" to="(700,160)"/> <wire from="(690,170)" to="(700,170)"/> <wire from="(720,180)" to="(720,310)"/> <wire from="(740,140)" to="(750,140)"/> </circuit> <circuit name="BGC_1"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_1"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(130,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SRLOAD"/> </comp> <comp lib="0" loc="(130,240)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP"/> </comp> <comp lib="0" loc="(130,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP2"/> </comp> <comp lib="0" loc="(130,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NEXTS"/> </comp> <comp lib="0" loc="(130,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FH"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(280,170)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(320,80)" name="Splitter"> <a name="bit0" val="7"/> <a name="bit1" val="6"/> <a name="bit2" val="5"/> <a name="bit3" val="4"/> <a name="bit4" val="3"/> <a name="bit5" val="2"/> <a name="bit6" val="1"/> <a name="bit7" val="0"/> <a name="facing" val="west"/> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(380,130)" name="Constant"/> <comp lib="0" loc="(500,130)" name="Splitter"> <a name="bit1" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(530,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,170)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(670,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(750,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGC1_Out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(740,140)" name="Multiplexer"> <a name="select" val="3"/> </comp> <comp loc="(490,130)" name="BGC_SR8"/> <comp loc="(640,130)" name="BGC_SR8"/> <wire from="(130,220)" to="(350,220)"/> <wire from="(130,240)" to="(360,240)"/> <wire from="(130,260)" to="(510,260)"/> <wire from="(130,280)" to="(370,280)"/> <wire from="(130,310)" to="(720,310)"/> <wire from="(140,170)" to="(280,170)"/> <wire from="(320,80)" to="(330,80)"/> <wire from="(330,170)" to="(390,170)"/> <wire from="(330,80)" to="(330,170)"/> <wire from="(350,140)" to="(350,220)"/> <wire from="(350,140)" to="(390,140)"/> <wire from="(360,150)" to="(360,240)"/> <wire from="(360,150)" to="(390,150)"/> <wire from="(370,160)" to="(370,280)"/> <wire from="(370,160)" to="(390,160)"/> <wire from="(370,280)" to="(520,280)"/> <wire from="(380,130)" to="(390,130)"/> <wire from="(490,130)" to="(500,130)"/> <wire from="(510,150)" to="(510,260)"/> <wire from="(510,150)" to="(540,150)"/> <wire from="(520,120)" to="(520,130)"/> <wire from="(520,130)" to="(540,130)"/> <wire from="(520,160)" to="(520,280)"/> <wire from="(520,160)" to="(540,160)"/> <wire from="(530,140)" to="(540,140)"/> <wire from="(530,170)" to="(540,170)"/> <wire from="(640,130)" to="(650,130)"/> <wire from="(650,130)" to="(650,180)"/> <wire from="(650,180)" to="(670,180)"/> <wire from="(690,100)" to="(700,100)"/> <wire from="(690,110)" to="(700,110)"/> <wire from="(690,120)" to="(700,120)"/> <wire from="(690,130)" to="(700,130)"/> <wire from="(690,140)" to="(700,140)"/> <wire from="(690,150)" to="(700,150)"/> <wire from="(690,160)" to="(700,160)"/> <wire from="(690,170)" to="(700,170)"/> <wire from="(720,180)" to="(720,310)"/> <wire from="(740,140)" to="(750,140)"/> </circuit> <circuit name="BGC_2"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_2"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_SEL"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H01"/> </comp> <comp lib="0" loc="(130,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SRLOAD"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP2"/> </comp> <comp lib="0" loc="(130,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NEXTS"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FH"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(130,60)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,290)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(200,60)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(370,130)" name="NoConnect"/> <comp lib="0" loc="(370,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,170)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(670,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(740,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_BGC2_Out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(330,140)" name="Multiplexer"> <a name="select" val="2"/> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(730,140)" name="Multiplexer"> <a name="select" val="3"/> </comp> <comp loc="(200,120)" name="DLatch"> <a name="label" val="pd0_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,180)" name="DLatch"> <a name="label" val="pd2_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,240)" name="DLatch"> <a name="label" val="pd4_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,300)" name="DLatch"> <a name="label" val="pd6_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(490,130)" name="BGC_SRBit"/> <comp loc="(640,130)" name="BGC_SR8"/> <wire from="(120,120)" to="(190,120)"/> <wire from="(120,60)" to="(130,60)"/> <wire from="(120,80)" to="(150,80)"/> <wire from="(130,350)" to="(340,350)"/> <wire from="(130,390)" to="(510,390)"/> <wire from="(130,410)" to="(370,410)"/> <wire from="(130,440)" to="(710,440)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(150,70)" to="(150,80)"/> <wire from="(150,70)" to="(180,70)"/> <wire from="(160,140)" to="(160,210)"/> <wire from="(160,140)" to="(200,140)"/> <wire from="(160,230)" to="(170,230)"/> <wire from="(160,250)" to="(170,250)"/> <wire from="(160,270)" to="(170,270)"/> <wire from="(170,200)" to="(170,230)"/> <wire from="(170,200)" to="(200,200)"/> <wire from="(170,250)" to="(170,260)"/> <wire from="(170,260)" to="(200,260)"/> <wire from="(170,270)" to="(170,320)"/> <wire from="(170,320)" to="(200,320)"/> <wire from="(170,50)" to="(170,80)"/> <wire from="(170,80)" to="(180,80)"/> <wire from="(190,120)" to="(190,180)"/> <wire from="(190,120)" to="(200,120)"/> <wire from="(190,180)" to="(190,240)"/> <wire from="(190,180)" to="(200,180)"/> <wire from="(190,240)" to="(190,300)"/> <wire from="(190,240)" to="(200,240)"/> <wire from="(190,300)" to="(200,300)"/> <wire from="(200,60)" to="(310,60)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(240,200)" to="(260,200)"/> <wire from="(240,260)" to="(270,260)"/> <wire from="(240,320)" to="(280,320)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(250,120)" to="(290,120)"/> <wire from="(260,130)" to="(260,200)"/> <wire from="(260,130)" to="(290,130)"/> <wire from="(270,140)" to="(270,260)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(280,150)" to="(280,320)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(310,60)" to="(310,120)"/> <wire from="(330,140)" to="(380,140)"/> <wire from="(340,150)" to="(340,350)"/> <wire from="(340,150)" to="(380,150)"/> <wire from="(370,130)" to="(380,130)"/> <wire from="(370,160)" to="(380,160)"/> <wire from="(370,170)" to="(370,410)"/> <wire from="(370,170)" to="(380,170)"/> <wire from="(370,410)" to="(520,410)"/> <wire from="(490,130)" to="(540,130)"/> <wire from="(510,150)" to="(510,390)"/> <wire from="(510,150)" to="(540,150)"/> <wire from="(520,160)" to="(520,410)"/> <wire from="(520,160)" to="(540,160)"/> <wire from="(530,140)" to="(540,140)"/> <wire from="(530,170)" to="(540,170)"/> <wire from="(640,130)" to="(660,130)"/> <wire from="(660,130)" to="(660,180)"/> <wire from="(660,180)" to="(670,180)"/> <wire from="(710,180)" to="(710,440)"/> <wire from="(730,140)" to="(740,140)"/> </circuit> <circuit name="BGC_3"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_3"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(120,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_SEL"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H01"/> </comp> <comp lib="0" loc="(130,350)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="SRLOAD"/> </comp> <comp lib="0" loc="(130,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="STEP2"/> </comp> <comp lib="0" loc="(130,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="NEXTS"/> </comp> <comp lib="0" loc="(130,440)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FH"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(130,60)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="0"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="5"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,290)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(200,60)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(370,130)" name="NoConnect"/> <comp lib="0" loc="(370,160)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,170)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(670,180)" name="Splitter"> <a name="fanout" val="8"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(740,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_BGC3_Out"/> <a name="output" val="true"/> </comp> <comp lib="2" loc="(330,140)" name="Multiplexer"> <a name="select" val="2"/> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(730,140)" name="Multiplexer"> <a name="select" val="3"/> </comp> <comp lib="8" loc="(365,35)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="Repeats the BGC2 circuit, but uses odd bits instead of even PD bits."/> </comp> <comp loc="(200,120)" name="DLatch"> <a name="label" val="pd1_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,180)" name="DLatch"> <a name="label" val="pd3_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,240)" name="DLatch"> <a name="label" val="pd5_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(200,300)" name="DLatch"> <a name="label" val="pd7_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(490,130)" name="BGC_SRBit"/> <comp loc="(640,130)" name="BGC_SR8"/> <wire from="(120,120)" to="(190,120)"/> <wire from="(120,60)" to="(130,60)"/> <wire from="(120,80)" to="(150,80)"/> <wire from="(130,350)" to="(340,350)"/> <wire from="(130,390)" to="(510,390)"/> <wire from="(130,410)" to="(370,410)"/> <wire from="(130,440)" to="(710,440)"/> <wire from="(150,50)" to="(170,50)"/> <wire from="(150,70)" to="(150,80)"/> <wire from="(150,70)" to="(180,70)"/> <wire from="(160,220)" to="(170,220)"/> <wire from="(160,240)" to="(180,240)"/> <wire from="(160,260)" to="(200,260)"/> <wire from="(160,280)" to="(180,280)"/> <wire from="(170,140)" to="(170,220)"/> <wire from="(170,140)" to="(200,140)"/> <wire from="(170,50)" to="(170,80)"/> <wire from="(170,80)" to="(180,80)"/> <wire from="(180,200)" to="(180,240)"/> <wire from="(180,200)" to="(200,200)"/> <wire from="(180,280)" to="(180,320)"/> <wire from="(180,320)" to="(200,320)"/> <wire from="(190,120)" to="(190,180)"/> <wire from="(190,120)" to="(200,120)"/> <wire from="(190,180)" to="(190,240)"/> <wire from="(190,180)" to="(200,180)"/> <wire from="(190,240)" to="(190,300)"/> <wire from="(190,240)" to="(200,240)"/> <wire from="(190,300)" to="(200,300)"/> <wire from="(200,60)" to="(310,60)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(240,200)" to="(260,200)"/> <wire from="(240,260)" to="(270,260)"/> <wire from="(240,320)" to="(280,320)"/> <wire from="(250,120)" to="(250,140)"/> <wire from="(250,120)" to="(290,120)"/> <wire from="(260,130)" to="(260,200)"/> <wire from="(260,130)" to="(290,130)"/> <wire from="(270,140)" to="(270,260)"/> <wire from="(270,140)" to="(290,140)"/> <wire from="(280,150)" to="(280,320)"/> <wire from="(280,150)" to="(290,150)"/> <wire from="(310,60)" to="(310,120)"/> <wire from="(330,140)" to="(380,140)"/> <wire from="(340,150)" to="(340,350)"/> <wire from="(340,150)" to="(380,150)"/> <wire from="(370,130)" to="(380,130)"/> <wire from="(370,160)" to="(380,160)"/> <wire from="(370,170)" to="(370,410)"/> <wire from="(370,170)" to="(380,170)"/> <wire from="(370,410)" to="(520,410)"/> <wire from="(490,130)" to="(540,130)"/> <wire from="(510,150)" to="(510,390)"/> <wire from="(510,150)" to="(540,150)"/> <wire from="(520,160)" to="(520,410)"/> <wire from="(520,160)" to="(540,160)"/> <wire from="(530,140)" to="(540,140)"/> <wire from="(530,170)" to="(540,170)"/> <wire from="(640,130)" to="(660,130)"/> <wire from="(660,130)" to="(660,180)"/> <wire from="(660,180)" to="(670,180)"/> <wire from="(710,180)" to="(710,440)"/> <wire from="(730,140)" to="(740,140)"/> </circuit> <circuit name="BGC_Out"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_Out"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(150,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLPB"/> </comp> <comp lib="0" loc="(150,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BGC0_Out"/> </comp> <comp lib="0" loc="(150,20)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(150,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BGC1_Out"/> </comp> <comp lib="0" loc="(150,320)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BGC2_Out"/> </comp> <comp lib="0" loc="(150,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_BGC3_Out"/> </comp> <comp lib="0" loc="(150,50)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(460,250)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp lib="0" loc="(470,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGC"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(180,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(180,390)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(410,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,240)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,310)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,380)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp loc="(210,160)" name="DLatch"> <a name="label" val="bgc0_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(210,230)" name="DLatch"> <a name="label" val="bgc1_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(210,300)" name="DLatch"> <a name="label" val="bgc2_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(210,370)" name="DLatch"> <a name="label" val="bgc3_latch1"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,160)" name="DLatch"> <a name="label" val="bgc0_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,230)" name="DLatch"> <a name="label" val="bgc1_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,300)" name="DLatch"> <a name="label" val="bgc2_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,370)" name="DLatch"> <a name="label" val="bgc3_latch2"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <comp loc="(290,90)" name="DLatch"> <a name="label" val="clpb_latch"/> <a name="labelfont" val="SansSerif bold 9"/> <a name="labelloc" val="south"/> </comp> <wire from="(150,110)" to="(290,110)"/> <wire from="(150,180)" to="(160,180)"/> <wire from="(150,20)" to="(280,20)"/> <wire from="(150,250)" to="(210,250)"/> <wire from="(150,320)" to="(160,320)"/> <wire from="(150,390)" to="(160,390)"/> <wire from="(150,50)" to="(200,50)"/> <wire from="(180,180)" to="(210,180)"/> <wire from="(180,320)" to="(210,320)"/> <wire from="(180,390)" to="(210,390)"/> <wire from="(200,160)" to="(200,230)"/> <wire from="(200,160)" to="(210,160)"/> <wire from="(200,230)" to="(200,300)"/> <wire from="(200,230)" to="(210,230)"/> <wire from="(200,300)" to="(200,370)"/> <wire from="(200,300)" to="(210,300)"/> <wire from="(200,370)" to="(210,370)"/> <wire from="(200,50)" to="(200,160)"/> <wire from="(250,180)" to="(290,180)"/> <wire from="(250,250)" to="(290,250)"/> <wire from="(250,320)" to="(290,320)"/> <wire from="(250,390)" to="(290,390)"/> <wire from="(280,160)" to="(280,230)"/> <wire from="(280,160)" to="(290,160)"/> <wire from="(280,20)" to="(280,90)"/> <wire from="(280,230)" to="(280,300)"/> <wire from="(280,230)" to="(290,230)"/> <wire from="(280,300)" to="(280,370)"/> <wire from="(280,300)" to="(290,300)"/> <wire from="(280,370)" to="(290,370)"/> <wire from="(280,90)" to="(280,160)"/> <wire from="(280,90)" to="(290,90)"/> <wire from="(330,110)" to="(360,110)"/> <wire from="(330,160)" to="(370,160)"/> <wire from="(330,230)" to="(370,230)"/> <wire from="(330,300)" to="(370,300)"/> <wire from="(330,370)" to="(370,370)"/> <wire from="(360,110)" to="(360,180)"/> <wire from="(360,180)" to="(360,250)"/> <wire from="(360,180)" to="(370,180)"/> <wire from="(360,250)" to="(360,320)"/> <wire from="(360,250)" to="(370,250)"/> <wire from="(360,320)" to="(360,390)"/> <wire from="(360,320)" to="(370,320)"/> <wire from="(360,390)" to="(370,390)"/> <wire from="(410,170)" to="(440,170)"/> <wire from="(410,240)" to="(430,240)"/> <wire from="(410,310)" to="(430,310)"/> <wire from="(410,380)" to="(440,380)"/> <wire from="(430,240)" to="(430,270)"/> <wire from="(430,270)" to="(440,270)"/> <wire from="(430,280)" to="(430,310)"/> <wire from="(430,280)" to="(440,280)"/> <wire from="(440,170)" to="(440,260)"/> <wire from="(440,290)" to="(440,380)"/> <wire from="(460,250)" to="(470,250)"/> </circuit> <circuit name="BGC_All"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="BGC_All"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1050,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="BGC"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(120,140)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H0_DD"/> </comp> <comp lib="0" loc="(120,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TA"/> </comp> <comp lib="0" loc="(120,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_TB"/> </comp> <comp lib="0" loc="(120,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_FO"/> </comp> <comp lib="0" loc="(120,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="F_AT"/> </comp> <comp lib="0" loc="(120,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="THO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TVO"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(120,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="FH"/> <a name="width" val="3"/> </comp> <comp lib="0" loc="(120,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(120,500)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_CLPB"/> </comp> <comp lib="0" loc="(120,60)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD"/> <a name="width" val="8"/> </comp> <comp loc="(1040,100)" name="BGC_Out"/> <comp loc="(410,100)" name="BGC_Control"/> <comp loc="(730,100)" name="BGC_0"/> <comp loc="(730,280)" name="BGC_1"/> <comp loc="(730,440)" name="BGC_2"/> <comp loc="(730,640)" name="BGC_3"/> <wire from="(1040,100)" to="(1050,100)"/> <wire from="(120,140)" to="(190,140)"/> <wire from="(120,160)" to="(190,160)"/> <wire from="(120,180)" to="(190,180)"/> <wire from="(120,200)" to="(190,200)"/> <wire from="(120,220)" to="(190,220)"/> <wire from="(120,260)" to="(130,260)"/> <wire from="(120,280)" to="(400,280)"/> <wire from="(120,300)" to="(380,300)"/> <wire from="(120,40)" to="(180,40)"/> <wire from="(120,500)" to="(150,500)"/> <wire from="(120,60)" to="(170,60)"/> <wire from="(130,240)" to="(130,260)"/> <wire from="(130,240)" to="(190,240)"/> <wire from="(140,390)" to="(480,390)"/> <wire from="(150,500)" to="(150,820)"/> <wire from="(150,820)" to="(790,820)"/> <wire from="(170,120)" to="(190,120)"/> <wire from="(170,60)" to="(170,120)"/> <wire from="(170,60)" to="(800,60)"/> <wire from="(180,100)" to="(190,100)"/> <wire from="(180,40)" to="(180,100)"/> <wire from="(180,40)" to="(810,40)"/> <wire from="(380,300)" to="(380,380)"/> <wire from="(380,380)" to="(490,380)"/> <wire from="(400,280)" to="(400,440)"/> <wire from="(400,440)" to="(400,640)"/> <wire from="(400,440)" to="(510,440)"/> <wire from="(400,640)" to="(510,640)"/> <wire from="(410,100)" to="(510,100)"/> <wire from="(410,120)" to="(470,120)"/> <wire from="(410,140)" to="(460,140)"/> <wire from="(410,160)" to="(450,160)"/> <wire from="(410,180)" to="(440,180)"/> <wire from="(410,200)" to="(430,200)"/> <wire from="(410,220)" to="(420,220)"/> <wire from="(420,220)" to="(420,460)"/> <wire from="(420,460)" to="(420,660)"/> <wire from="(420,460)" to="(510,460)"/> <wire from="(420,660)" to="(510,660)"/> <wire from="(430,200)" to="(430,360)"/> <wire from="(430,200)" to="(510,200)"/> <wire from="(430,360)" to="(430,560)"/> <wire from="(430,360)" to="(510,360)"/> <wire from="(430,560)" to="(430,760)"/> <wire from="(430,560)" to="(510,560)"/> <wire from="(430,760)" to="(510,760)"/> <wire from="(440,180)" to="(440,480)"/> <wire from="(440,480)" to="(440,680)"/> <wire from="(440,480)" to="(510,480)"/> <wire from="(440,680)" to="(510,680)"/> <wire from="(450,160)" to="(450,180)"/> <wire from="(450,180)" to="(450,340)"/> <wire from="(450,180)" to="(510,180)"/> <wire from="(450,340)" to="(450,540)"/> <wire from="(450,340)" to="(510,340)"/> <wire from="(450,540)" to="(450,740)"/> <wire from="(450,540)" to="(510,540)"/> <wire from="(450,740)" to="(510,740)"/> <wire from="(460,140)" to="(460,160)"/> <wire from="(460,160)" to="(460,320)"/> <wire from="(460,160)" to="(510,160)"/> <wire from="(460,320)" to="(510,320)"/> <wire from="(470,120)" to="(470,140)"/> <wire from="(470,140)" to="(470,300)"/> <wire from="(470,140)" to="(510,140)"/> <wire from="(470,300)" to="(470,520)"/> <wire from="(470,300)" to="(510,300)"/> <wire from="(470,520)" to="(470,720)"/> <wire from="(470,520)" to="(510,520)"/> <wire from="(470,720)" to="(510,720)"/> <wire from="(480,120)" to="(480,280)"/> <wire from="(480,120)" to="(510,120)"/> <wire from="(480,280)" to="(480,390)"/> <wire from="(480,280)" to="(510,280)"/> <wire from="(480,390)" to="(480,500)"/> <wire from="(480,500)" to="(480,700)"/> <wire from="(480,500)" to="(510,500)"/> <wire from="(480,700)" to="(510,700)"/> <wire from="(490,220)" to="(490,380)"/> <wire from="(490,220)" to="(510,220)"/> <wire from="(490,380)" to="(490,580)"/> <wire from="(490,380)" to="(510,380)"/> <wire from="(490,580)" to="(490,780)"/> <wire from="(490,580)" to="(510,580)"/> <wire from="(490,780)" to="(510,780)"/> <wire from="(730,100)" to="(760,100)"/> <wire from="(730,280)" to="(760,280)"/> <wire from="(730,440)" to="(780,440)"/> <wire from="(730,640)" to="(810,640)"/> <wire from="(760,100)" to="(760,160)"/> <wire from="(760,160)" to="(820,160)"/> <wire from="(760,180)" to="(760,280)"/> <wire from="(760,180)" to="(820,180)"/> <wire from="(780,200)" to="(780,440)"/> <wire from="(780,200)" to="(820,200)"/> <wire from="(790,140)" to="(790,820)"/> <wire from="(790,140)" to="(820,140)"/> <wire from="(800,120)" to="(820,120)"/> <wire from="(800,60)" to="(800,120)"/> <wire from="(800,60)" to="(880,60)"/> <wire from="(810,100)" to="(820,100)"/> <wire from="(810,220)" to="(810,640)"/> <wire from="(810,220)" to="(820,220)"/> <wire from="(810,40)" to="(810,100)"/> <wire from="(810,40)" to="(880,40)"/> </circuit> <circuit name="ReadBuffer"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ReadBuffer"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(180,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RC"/> </comp> <comp lib="0" loc="(180,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_RB"/> </comp> <comp lib="0" loc="(180,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PD_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(180,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="XRB"/> </comp> <comp lib="0" loc="(580,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> </circuit> <circuit name="CRAM_Block"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CRAM_Block"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1120,1060)" name="Splitter"/> <comp lib="0" loc="(1120,850)" name="Splitter"/> <comp lib="0" loc="(1170,1080)" name="Constant"/> <comp lib="0" loc="(1170,870)" name="Constant"/> <comp lib="0" loc="(1260,100)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(140,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_R7"/> </comp> <comp lib="0" loc="(140,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_DBE"/> </comp> <comp lib="0" loc="(140,270)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="TH_MUX"/> </comp> <comp lib="0" loc="(140,300)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_PAR"/> </comp> <comp lib="0" loc="(140,360)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PICTURE"/> </comp> <comp lib="0" loc="(140,390)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BnW"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(1460,720)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1460,930)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1510,860)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(1560,1280)" name="Splitter"> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(1590,1020)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="DB_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1590,690)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_CC"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(1590,730)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_LL"/> <a name="output" val="true"/> <a name="width" val="2"/> </comp> <comp lib="0" loc="(160,490)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PAL_in"/> <a name="width" val="5"/> </comp> <comp lib="0" loc="(190,590)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(370,1080)" name="Splitter"> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="fanout" val="6"/> <a name="incoming" val="8"/> </comp> <comp lib="0" loc="(580,1060)" name="Splitter"/> <comp lib="0" loc="(580,1270)" name="Splitter"/> <comp lib="0" loc="(580,1480)" name="Splitter"/> <comp lib="0" loc="(580,850)" name="Splitter"/> <comp lib="0" loc="(900,1140)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(900,1350)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(900,720)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(900,930)" name="Splitter"> <a name="facing" val="west"/> </comp> <comp lib="0" loc="(980,370)" name="Splitter"/> <comp lib="0" loc="(990,1050)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="4"/> <a name="incoming" val="4"/> </comp> <comp loc="(1230,110)" name="CRAM"> <a name="label" val="cram_mem"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1430,730)" name="CB_Bit"> <a name="label" val="ll0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1430,940)" name="CB_Bit"> <a name="label" val="ll1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(480,240)" name="CB_Control"> <a name="label" val="cb_ctrl"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,1150)" name="CB_Bit"> <a name="label" val="cc2"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,130)" name="CRAM_Decoder"> <a name="label" val="cram_dec"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,1360)" name="CB_Bit"> <a name="label" val="cc3"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,730)" name="CB_Bit"> <a name="label" val="cc0"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(870,940)" name="CB_Bit"> <a name="label" val="cc1"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1000,350)" to="(1010,350)"/> <wire from="(1000,360)" to="(1000,370)"/> <wire from="(1000,370)" to="(1010,370)"/> <wire from="(1010,690)" to="(1010,1050)"/> <wire from="(1010,690)" to="(1590,690)"/> <wire from="(1010,70)" to="(1010,110)"/> <wire from="(1050,1000)" to="(1050,1550)"/> <wire from="(1050,1000)" to="(1210,1000)"/> <wire from="(1050,790)" to="(1050,1000)"/> <wire from="(1050,790)" to="(1210,790)"/> <wire from="(1060,1020)" to="(1060,1580)"/> <wire from="(1060,1020)" to="(1210,1020)"/> <wire from="(1060,810)" to="(1060,1020)"/> <wire from="(1060,810)" to="(1210,810)"/> <wire from="(1070,770)" to="(1070,1600)"/> <wire from="(1070,770)" to="(1210,770)"/> <wire from="(1080,980)" to="(1080,1610)"/> <wire from="(1080,980)" to="(1210,980)"/> <wire from="(1110,1060)" to="(1120,1060)"/> <wire from="(1110,570)" to="(1110,850)"/> <wire from="(1110,570)" to="(1310,570)"/> <wire from="(1110,850)" to="(1110,1060)"/> <wire from="(1110,850)" to="(1120,850)"/> <wire from="(1140,1040)" to="(1210,1040)"/> <wire from="(1140,1050)" to="(1140,1060)"/> <wire from="(1140,1060)" to="(1210,1060)"/> <wire from="(1140,830)" to="(1210,830)"/> <wire from="(1140,840)" to="(1140,850)"/> <wire from="(1140,850)" to="(1210,850)"/> <wire from="(1170,1080)" to="(1210,1080)"/> <wire from="(1170,870)" to="(1210,870)"/> <wire from="(1190,660)" to="(1190,750)"/> <wire from="(1190,750)" to="(1190,960)"/> <wire from="(1190,750)" to="(1210,750)"/> <wire from="(1190,960)" to="(1210,960)"/> <wire from="(1200,500)" to="(1200,730)"/> <wire from="(1200,730)" to="(1200,940)"/> <wire from="(1200,730)" to="(1210,730)"/> <wire from="(1200,940)" to="(1210,940)"/> <wire from="(1230,110)" to="(1240,110)"/> <wire from="(1230,130)" to="(1240,130)"/> <wire from="(1240,120)" to="(1240,130)"/> <wire from="(1260,100)" to="(1310,100)"/> <wire from="(1310,100)" to="(1310,570)"/> <wire from="(140,100)" to="(630,100)"/> <wire from="(140,170)" to="(240,170)"/> <wire from="(140,200)" to="(230,200)"/> <wire from="(140,270)" to="(220,270)"/> <wire from="(140,300)" to="(210,300)"/> <wire from="(140,360)" to="(190,360)"/> <wire from="(140,390)" to="(210,390)"/> <wire from="(140,70)" to="(250,70)"/> <wire from="(1430,1000)" to="(1490,1000)"/> <wire from="(1430,730)" to="(1440,730)"/> <wire from="(1430,750)" to="(1440,750)"/> <wire from="(1430,770)" to="(1480,770)"/> <wire from="(1430,790)" to="(1490,790)"/> <wire from="(1430,940)" to="(1440,940)"/> <wire from="(1430,960)" to="(1440,960)"/> <wire from="(1430,980)" to="(1440,980)"/> <wire from="(1440,1340)" to="(1540,1340)"/> <wire from="(1440,740)" to="(1440,750)"/> <wire from="(1440,950)" to="(1440,960)"/> <wire from="(1440,980)" to="(1440,1340)"/> <wire from="(1460,720)" to="(1470,720)"/> <wire from="(1460,930)" to="(1470,930)"/> <wire from="(1470,600)" to="(1470,720)"/> <wire from="(1470,720)" to="(1470,930)"/> <wire from="(1480,1330)" to="(1540,1330)"/> <wire from="(1480,770)" to="(1480,1330)"/> <wire from="(1490,790)" to="(1490,870)"/> <wire from="(1490,880)" to="(1490,1000)"/> <wire from="(1510,730)" to="(1510,860)"/> <wire from="(1510,730)" to="(1590,730)"/> <wire from="(1560,1020)" to="(1560,1280)"/> <wire from="(1560,1020)" to="(1590,1020)"/> <wire from="(160,490)" to="(610,490)"/> <wire from="(190,1080)" to="(370,1080)"/> <wire from="(190,340)" to="(190,360)"/> <wire from="(190,340)" to="(260,340)"/> <wire from="(190,590)" to="(190,1080)"/> <wire from="(210,300)" to="(210,320)"/> <wire from="(210,320)" to="(260,320)"/> <wire from="(210,360)" to="(210,390)"/> <wire from="(210,360)" to="(260,360)"/> <wire from="(220,270)" to="(220,300)"/> <wire from="(220,300)" to="(260,300)"/> <wire from="(230,200)" to="(230,280)"/> <wire from="(230,280)" to="(260,280)"/> <wire from="(240,170)" to="(240,260)"/> <wire from="(240,260)" to="(260,260)"/> <wire from="(250,240)" to="(260,240)"/> <wire from="(250,70)" to="(250,240)"/> <wire from="(250,70)" to="(640,70)"/> <wire from="(390,1030)" to="(400,1030)"/> <wire from="(390,1040)" to="(460,1040)"/> <wire from="(390,1050)" to="(450,1050)"/> <wire from="(390,1060)" to="(430,1060)"/> <wire from="(390,1070)" to="(420,1070)"/> <wire from="(390,770)" to="(390,1020)"/> <wire from="(390,770)" to="(650,770)"/> <wire from="(400,980)" to="(400,1030)"/> <wire from="(400,980)" to="(650,980)"/> <wire from="(420,1070)" to="(420,1610)"/> <wire from="(420,1610)" to="(1080,1610)"/> <wire from="(430,1060)" to="(430,1600)"/> <wire from="(430,1600)" to="(1070,1600)"/> <wire from="(450,1050)" to="(450,1400)"/> <wire from="(450,1400)" to="(650,1400)"/> <wire from="(460,1040)" to="(460,1190)"/> <wire from="(460,1190)" to="(650,1190)"/> <wire from="(480,240)" to="(530,240)"/> <wire from="(480,260)" to="(520,260)"/> <wire from="(480,280)" to="(510,280)"/> <wire from="(510,1000)" to="(510,1210)"/> <wire from="(510,1000)" to="(650,1000)"/> <wire from="(510,1210)" to="(510,1420)"/> <wire from="(510,1210)" to="(650,1210)"/> <wire from="(510,1420)" to="(510,1550)"/> <wire from="(510,1420)" to="(650,1420)"/> <wire from="(510,1550)" to="(1050,1550)"/> <wire from="(510,280)" to="(510,790)"/> <wire from="(510,790)" to="(510,1000)"/> <wire from="(510,790)" to="(650,790)"/> <wire from="(520,1080)" to="(520,1290)"/> <wire from="(520,1080)" to="(650,1080)"/> <wire from="(520,1290)" to="(520,1500)"/> <wire from="(520,1290)" to="(650,1290)"/> <wire from="(520,1500)" to="(650,1500)"/> <wire from="(520,260)" to="(520,870)"/> <wire from="(520,870)" to="(520,1080)"/> <wire from="(520,870)" to="(650,870)"/> <wire from="(530,1020)" to="(530,1230)"/> <wire from="(530,1020)" to="(650,1020)"/> <wire from="(530,1230)" to="(530,1440)"/> <wire from="(530,1230)" to="(650,1230)"/> <wire from="(530,1440)" to="(530,1580)"/> <wire from="(530,1440)" to="(650,1440)"/> <wire from="(530,1580)" to="(1060,1580)"/> <wire from="(530,240)" to="(530,810)"/> <wire from="(530,810)" to="(530,1020)"/> <wire from="(530,810)" to="(650,810)"/> <wire from="(570,1060)" to="(570,1270)"/> <wire from="(570,1060)" to="(580,1060)"/> <wire from="(570,1270)" to="(570,1480)"/> <wire from="(570,1270)" to="(580,1270)"/> <wire from="(570,1480)" to="(580,1480)"/> <wire from="(570,570)" to="(1110,570)"/> <wire from="(570,570)" to="(570,850)"/> <wire from="(570,850)" to="(570,1060)"/> <wire from="(570,850)" to="(580,850)"/> <wire from="(600,1040)" to="(650,1040)"/> <wire from="(600,1050)" to="(600,1060)"/> <wire from="(600,1060)" to="(650,1060)"/> <wire from="(600,1250)" to="(650,1250)"/> <wire from="(600,1260)" to="(600,1270)"/> <wire from="(600,1270)" to="(650,1270)"/> <wire from="(600,1460)" to="(650,1460)"/> <wire from="(600,1470)" to="(600,1480)"/> <wire from="(600,1480)" to="(650,1480)"/> <wire from="(600,830)" to="(650,830)"/> <wire from="(600,840)" to="(600,850)"/> <wire from="(600,850)" to="(650,850)"/> <wire from="(610,130)" to="(610,490)"/> <wire from="(610,130)" to="(650,130)"/> <wire from="(630,100)" to="(630,660)"/> <wire from="(630,1170)" to="(630,1380)"/> <wire from="(630,1170)" to="(650,1170)"/> <wire from="(630,1380)" to="(650,1380)"/> <wire from="(630,660)" to="(1190,660)"/> <wire from="(630,660)" to="(630,750)"/> <wire from="(630,750)" to="(630,960)"/> <wire from="(630,750)" to="(650,750)"/> <wire from="(630,960)" to="(630,1170)"/> <wire from="(630,960)" to="(650,960)"/> <wire from="(640,1150)" to="(640,1360)"/> <wire from="(640,1150)" to="(650,1150)"/> <wire from="(640,1360)" to="(650,1360)"/> <wire from="(640,150)" to="(640,500)"/> <wire from="(640,150)" to="(650,150)"/> <wire from="(640,500)" to="(1200,500)"/> <wire from="(640,500)" to="(640,730)"/> <wire from="(640,70)" to="(1010,70)"/> <wire from="(640,70)" to="(640,150)"/> <wire from="(640,730)" to="(640,940)"/> <wire from="(640,730)" to="(650,730)"/> <wire from="(640,940)" to="(640,1150)"/> <wire from="(640,940)" to="(650,940)"/> <wire from="(870,1000)" to="(960,1000)"/> <wire from="(870,1150)" to="(880,1150)"/> <wire from="(870,1170)" to="(880,1170)"/> <wire from="(870,1190)" to="(920,1190)"/> <wire from="(870,1210)" to="(960,1210)"/> <wire from="(870,130)" to="(1010,130)"/> <wire from="(870,1360)" to="(880,1360)"/> <wire from="(870,1380)" to="(880,1380)"/> <wire from="(870,1400)" to="(920,1400)"/> <wire from="(870,1420)" to="(970,1420)"/> <wire from="(870,150)" to="(1010,150)"/> <wire from="(870,170)" to="(1010,170)"/> <wire from="(870,190)" to="(1010,190)"/> <wire from="(870,210)" to="(1010,210)"/> <wire from="(870,230)" to="(1010,230)"/> <wire from="(870,250)" to="(1010,250)"/> <wire from="(870,270)" to="(1010,270)"/> <wire from="(870,290)" to="(1010,290)"/> <wire from="(870,310)" to="(1010,310)"/> <wire from="(870,330)" to="(1010,330)"/> <wire from="(870,730)" to="(880,730)"/> <wire from="(870,750)" to="(880,750)"/> <wire from="(870,770)" to="(940,770)"/> <wire from="(870,790)" to="(970,790)"/> <wire from="(870,940)" to="(880,940)"/> <wire from="(870,960)" to="(880,960)"/> <wire from="(870,980)" to="(930,980)"/> <wire from="(880,1160)" to="(880,1170)"/> <wire from="(880,1370)" to="(880,1380)"/> <wire from="(880,740)" to="(880,750)"/> <wire from="(880,950)" to="(880,960)"/> <wire from="(900,1140)" to="(910,1140)"/> <wire from="(900,1350)" to="(910,1350)"/> <wire from="(900,720)" to="(910,720)"/> <wire from="(900,930)" to="(910,930)"/> <wire from="(910,1140)" to="(910,1350)"/> <wire from="(910,370)" to="(910,600)"/> <wire from="(910,370)" to="(980,370)"/> <wire from="(910,600)" to="(1470,600)"/> <wire from="(910,600)" to="(910,720)"/> <wire from="(910,720)" to="(910,930)"/> <wire from="(910,930)" to="(910,1140)"/> <wire from="(920,1190)" to="(920,1310)"/> <wire from="(920,1310)" to="(1540,1310)"/> <wire from="(920,1320)" to="(1540,1320)"/> <wire from="(920,1320)" to="(920,1400)"/> <wire from="(930,1300)" to="(1540,1300)"/> <wire from="(930,980)" to="(930,1300)"/> <wire from="(940,1290)" to="(1540,1290)"/> <wire from="(940,770)" to="(940,1290)"/> <wire from="(960,1000)" to="(960,1070)"/> <wire from="(960,1070)" to="(970,1070)"/> <wire from="(960,1080)" to="(960,1210)"/> <wire from="(960,1080)" to="(970,1080)"/> <wire from="(970,1090)" to="(970,1420)"/> <wire from="(970,790)" to="(970,1060)"/> <wire from="(990,1050)" to="(1010,1050)"/> </circuit> <circuit name="CRAM"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="CRAM"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(190,130)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL0"/> </comp> <comp lib="0" loc="(190,160)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL1"/> </comp> <comp lib="0" loc="(190,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL2"/> </comp> <comp lib="0" loc="(190,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="COL3"/> </comp> <comp lib="0" loc="(190,280)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW0_4"/> </comp> <comp lib="0" loc="(190,310)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW1"/> </comp> <comp lib="0" loc="(190,340)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW2"/> </comp> <comp lib="0" loc="(190,370)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW3"/> </comp> <comp lib="0" loc="(190,40)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(190,400)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW5"/> </comp> <comp lib="0" loc="(190,430)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW6"/> </comp> <comp lib="0" loc="(190,460)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="ROW7"/> </comp> <comp lib="0" loc="(190,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="val_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(190,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_val_in"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(680,570)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> <comp lib="0" loc="(680,600)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> </comp> </circuit> <circuit name="ResetPad"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="ResetPad"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(160,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RESCL"/> </comp> <comp lib="0" loc="(160,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(340,150)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(340,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="RES"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(220,90)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(250,150)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(250,210)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(260,90)" name="Buffer"/> <comp lib="1" loc="(300,150)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(330,150)" name="Buffer"/> <comp lib="8" loc="(160,175)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="Reset_FF"/> </comp> <comp lib="8" loc="(215,130)" name="Text"> <a name="text" val="S"/> </comp> <comp lib="8" loc="(215,240)" name="Text"> <a name="text" val="R"/> </comp> <wire from="(160,220)" to="(210,220)"/> <wire from="(160,90)" to="(200,90)"/> <wire from="(170,110)" to="(170,140)"/> <wire from="(170,110)" to="(300,110)"/> <wire from="(170,140)" to="(210,140)"/> <wire from="(200,160)" to="(200,180)"/> <wire from="(200,160)" to="(210,160)"/> <wire from="(200,180)" to="(260,180)"/> <wire from="(200,190)" to="(200,200)"/> <wire from="(200,190)" to="(270,190)"/> <wire from="(200,200)" to="(210,200)"/> <wire from="(220,90)" to="(240,90)"/> <wire from="(250,150)" to="(270,150)"/> <wire from="(250,210)" to="(260,210)"/> <wire from="(260,180)" to="(260,210)"/> <wire from="(260,90)" to="(300,90)"/> <wire from="(270,150)" to="(270,190)"/> <wire from="(270,150)" to="(280,150)"/> <wire from="(300,150)" to="(310,150)"/> <wire from="(300,90)" to="(300,110)"/> <wire from="(300,90)" to="(340,90)"/> <wire from="(330,150)" to="(340,150)"/> </circuit> <circuit name="EXTPads"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="EXTPads"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(230,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_SLAVE"/> </comp> <comp lib="0" loc="(230,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(230,250)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_EXT_OUT"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(230,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="EXT_Pad_In"/> <a name="tristate" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(300,60)" name="Constant"/> <comp lib="0" loc="(590,110)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="4"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(610,200)" name="Bit Extender"> <a name="in_width" val="1"/> <a name="out_width" val="4"/> <a name="type" val="input"/> </comp> <comp lib="0" loc="(730,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT_Pad_Out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="4"/> </comp> <comp lib="0" loc="(730,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="EXT_IN"/> <a name="output" val="true"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(480,70)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(510,200)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(510,70)" name="NOT Gate"> <a name="size" val="20"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(670,80)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(680,220)" name="NOR Gate"> <a name="size" val="30"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(700,160)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(720,220)" name="Controlled Buffer"> <a name="control" val="left"/> <a name="width" val="4"/> </comp> <comp lib="1" loc="(720,80)" name="Buffer"> <a name="width" val="4"/> </comp> <comp lib="8" loc="(105,235)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="from mux"/> </comp> <comp lib="8" loc="(105,55)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="from pads"/> </comp> <comp lib="8" loc="(365,95)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="transparent DLatch"/> </comp> <comp lib="8" loc="(845,55)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="to mux"/> </comp> <comp lib="8" loc="(850,200)" name="Text"> <a name="font" val="SansSerif bold 10"/> <a name="text" val="to pads"/> </comp> <comp loc="(420,240)" name="DLatch_x4"/> <comp loc="(420,60)" name="DLatch_x4"/> <wire from="(230,110)" to="(470,110)"/> <wire from="(230,210)" to="(280,210)"/> <wire from="(230,250)" to="(310,250)"/> <wire from="(230,70)" to="(310,70)"/> <wire from="(280,210)" to="(280,240)"/> <wire from="(280,240)" to="(310,240)"/> <wire from="(300,60)" to="(310,60)"/> <wire from="(420,240)" to="(450,240)"/> <wire from="(420,70)" to="(460,70)"/> <wire from="(450,230)" to="(450,240)"/> <wire from="(450,230)" to="(640,230)"/> <wire from="(470,110)" to="(470,200)"/> <wire from="(470,110)" to="(540,110)"/> <wire from="(470,200)" to="(490,200)"/> <wire from="(480,70)" to="(490,70)"/> <wire from="(510,200)" to="(530,200)"/> <wire from="(510,70)" to="(630,70)"/> <wire from="(530,160)" to="(530,200)"/> <wire from="(530,160)" to="(680,160)"/> <wire from="(530,200)" to="(560,200)"/> <wire from="(540,110)" to="(550,110)"/> <wire from="(540,80)" to="(540,110)"/> <wire from="(540,80)" to="(570,80)"/> <wire from="(560,170)" to="(560,200)"/> <wire from="(560,170)" to="(590,170)"/> <wire from="(560,200)" to="(570,200)"/> <wire from="(570,80)" to="(570,90)"/> <wire from="(590,110)" to="(600,110)"/> <wire from="(590,170)" to="(590,180)"/> <wire from="(600,90)" to="(600,110)"/> <wire from="(600,90)" to="(630,90)"/> <wire from="(610,200)" to="(630,200)"/> <wire from="(630,200)" to="(630,210)"/> <wire from="(630,210)" to="(640,210)"/> <wire from="(670,80)" to="(700,80)"/> <wire from="(680,220)" to="(700,220)"/> <wire from="(700,160)" to="(710,160)"/> <wire from="(710,160)" to="(710,210)"/> <wire from="(720,220)" to="(730,220)"/> <wire from="(720,80)" to="(730,80)"/> </circuit> <circuit name="HV_Counters"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="HV_Counters"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1000,590)" name="NoConnect"/> <comp lib="0" loc="(1000,990)" name="NoConnect"/> <comp lib="0" loc="(1260,460)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(1280,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="V"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(1280,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="H"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(150,120)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(150,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(150,200)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="HC"/> </comp> <comp lib="0" loc="(150,230)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="VC"/> </comp> <comp lib="0" loc="(150,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V_IN"/> </comp> <comp lib="0" loc="(150,90)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(340,210)" name="Constant"/> <comp lib="0" loc="(520,590)" name="NoConnect"/> <comp lib="0" loc="(520,990)" name="NoConnect"/> <comp lib="0" loc="(760,490)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="1" loc="(1100,320)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(1190,350)" name="NOR Gate"> <a name="inputs" val="6"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(680,350)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp loc="(500,170)" name="HVCounterBit"/> <comp loc="(500,270)" name="HVCounterBit"/> <comp loc="(500,370)" name="HVCounterBit"/> <comp loc="(500,470)" name="HVCounterBit"/> <comp loc="(500,570)" name="HVCounterBit"/> <comp loc="(500,670)" name="HVCounterBit"/> <comp loc="(500,770)" name="HVCounterBit"/> <comp loc="(500,870)" name="HVCounterBit"/> <comp loc="(500,970)" name="HVCounterBit"/> <comp loc="(980,170)" name="HVCounterBit"/> <comp loc="(980,270)" name="HVCounterBit"/> <comp loc="(980,370)" name="HVCounterBit"/> <comp loc="(980,470)" name="HVCounterBit"/> <comp loc="(980,570)" name="HVCounterBit"/> <comp loc="(980,670)" name="HVCounterBit"/> <comp loc="(980,770)" name="HVCounterBit"/> <comp loc="(980,870)" name="HVCounterBit"/> <comp loc="(980,970)" name="HVCounterBit"/> <wire from="(1030,370)" to="(1030,410)"/> <wire from="(1030,410)" to="(1220,410)"/> <wire from="(1050,280)" to="(1050,340)"/> <wire from="(1050,340)" to="(1110,340)"/> <wire from="(1050,360)" to="(1050,380)"/> <wire from="(1050,360)" to="(1110,360)"/> <wire from="(1060,180)" to="(1060,330)"/> <wire from="(1060,330)" to="(1110,330)"/> <wire from="(1060,370)" to="(1060,480)"/> <wire from="(1060,370)" to="(1110,370)"/> <wire from="(1070,100)" to="(1070,320)"/> <wire from="(1070,320)" to="(1080,320)"/> <wire from="(1070,380)" to="(1070,580)"/> <wire from="(1070,380)" to="(1110,380)"/> <wire from="(1100,320)" to="(1110,320)"/> <wire from="(1120,510)" to="(1120,570)"/> <wire from="(1120,510)" to="(1240,510)"/> <wire from="(1140,60)" to="(1140,90)"/> <wire from="(1140,90)" to="(1280,90)"/> <wire from="(1150,470)" to="(1150,500)"/> <wire from="(1150,500)" to="(1240,500)"/> <wire from="(1190,350)" to="(1200,350)"/> <wire from="(1200,350)" to="(1200,630)"/> <wire from="(1210,520)" to="(1210,670)"/> <wire from="(1210,520)" to="(1240,520)"/> <wire from="(1220,410)" to="(1220,490)"/> <wire from="(1220,490)" to="(1240,490)"/> <wire from="(1220,530)" to="(1220,770)"/> <wire from="(1220,530)" to="(1240,530)"/> <wire from="(1230,270)" to="(1230,480)"/> <wire from="(1230,480)" to="(1240,480)"/> <wire from="(1230,540)" to="(1230,870)"/> <wire from="(1230,540)" to="(1240,540)"/> <wire from="(1240,170)" to="(1240,470)"/> <wire from="(1240,550)" to="(1240,970)"/> <wire from="(1260,460)" to="(1270,460)"/> <wire from="(1270,120)" to="(1270,460)"/> <wire from="(1270,120)" to="(1280,120)"/> <wire from="(150,120)" to="(380,120)"/> <wire from="(150,170)" to="(290,170)"/> <wire from="(150,200)" to="(360,200)"/> <wire from="(150,230)" to="(220,230)"/> <wire from="(150,260)" to="(210,260)"/> <wire from="(150,90)" to="(390,90)"/> <wire from="(210,100)" to="(210,260)"/> <wire from="(210,100)" to="(830,100)"/> <wire from="(220,130)" to="(220,230)"/> <wire from="(220,130)" to="(840,130)"/> <wire from="(290,110)" to="(290,170)"/> <wire from="(290,110)" to="(370,110)"/> <wire from="(340,210)" to="(400,210)"/> <wire from="(350,1010)" to="(400,1010)"/> <wire from="(350,230)" to="(350,310)"/> <wire from="(350,230)" to="(510,230)"/> <wire from="(350,310)" to="(400,310)"/> <wire from="(350,330)" to="(350,410)"/> <wire from="(350,330)" to="(510,330)"/> <wire from="(350,410)" to="(400,410)"/> <wire from="(350,430)" to="(350,510)"/> <wire from="(350,430)" to="(510,430)"/> <wire from="(350,510)" to="(400,510)"/> <wire from="(350,530)" to="(350,610)"/> <wire from="(350,530)" to="(510,530)"/> <wire from="(350,610)" to="(400,610)"/> <wire from="(350,630)" to="(350,710)"/> <wire from="(350,630)" to="(690,630)"/> <wire from="(350,710)" to="(400,710)"/> <wire from="(350,730)" to="(350,810)"/> <wire from="(350,730)" to="(510,730)"/> <wire from="(350,810)" to="(400,810)"/> <wire from="(350,830)" to="(350,910)"/> <wire from="(350,830)" to="(510,830)"/> <wire from="(350,910)" to="(400,910)"/> <wire from="(350,930)" to="(350,1010)"/> <wire from="(350,930)" to="(510,930)"/> <wire from="(360,190)" to="(360,200)"/> <wire from="(360,190)" to="(400,190)"/> <wire from="(360,200)" to="(360,290)"/> <wire from="(360,290)" to="(360,390)"/> <wire from="(360,290)" to="(400,290)"/> <wire from="(360,390)" to="(360,490)"/> <wire from="(360,390)" to="(400,390)"/> <wire from="(360,490)" to="(360,590)"/> <wire from="(360,490)" to="(400,490)"/> <wire from="(360,590)" to="(360,690)"/> <wire from="(360,590)" to="(400,590)"/> <wire from="(360,690)" to="(360,790)"/> <wire from="(360,690)" to="(400,690)"/> <wire from="(360,790)" to="(360,890)"/> <wire from="(360,790)" to="(400,790)"/> <wire from="(360,890)" to="(360,990)"/> <wire from="(360,890)" to="(400,890)"/> <wire from="(360,990)" to="(400,990)"/> <wire from="(370,1000)" to="(400,1000)"/> <wire from="(370,110)" to="(370,200)"/> <wire from="(370,110)" to="(850,110)"/> <wire from="(370,200)" to="(370,300)"/> <wire from="(370,200)" to="(400,200)"/> <wire from="(370,300)" to="(370,400)"/> <wire from="(370,300)" to="(400,300)"/> <wire from="(370,400)" to="(370,500)"/> <wire from="(370,400)" to="(400,400)"/> <wire from="(370,500)" to="(370,600)"/> <wire from="(370,500)" to="(400,500)"/> <wire from="(370,600)" to="(370,700)"/> <wire from="(370,600)" to="(400,600)"/> <wire from="(370,700)" to="(370,800)"/> <wire from="(370,700)" to="(400,700)"/> <wire from="(370,800)" to="(370,900)"/> <wire from="(370,800)" to="(400,800)"/> <wire from="(370,900)" to="(370,1000)"/> <wire from="(370,900)" to="(400,900)"/> <wire from="(380,120)" to="(380,180)"/> <wire from="(380,120)" to="(860,120)"/> <wire from="(380,180)" to="(380,280)"/> <wire from="(380,180)" to="(400,180)"/> <wire from="(380,280)" to="(380,380)"/> <wire from="(380,280)" to="(400,280)"/> <wire from="(380,380)" to="(380,480)"/> <wire from="(380,380)" to="(400,380)"/> <wire from="(380,480)" to="(380,580)"/> <wire from="(380,480)" to="(400,480)"/> <wire from="(380,580)" to="(380,680)"/> <wire from="(380,580)" to="(400,580)"/> <wire from="(380,680)" to="(380,780)"/> <wire from="(380,680)" to="(400,680)"/> <wire from="(380,780)" to="(380,880)"/> <wire from="(380,780)" to="(400,780)"/> <wire from="(380,880)" to="(380,980)"/> <wire from="(380,880)" to="(400,880)"/> <wire from="(380,980)" to="(400,980)"/> <wire from="(390,170)" to="(390,270)"/> <wire from="(390,170)" to="(400,170)"/> <wire from="(390,270)" to="(390,370)"/> <wire from="(390,270)" to="(400,270)"/> <wire from="(390,370)" to="(390,470)"/> <wire from="(390,370)" to="(400,370)"/> <wire from="(390,470)" to="(390,570)"/> <wire from="(390,470)" to="(400,470)"/> <wire from="(390,570)" to="(390,670)"/> <wire from="(390,570)" to="(400,570)"/> <wire from="(390,670)" to="(390,770)"/> <wire from="(390,670)" to="(400,670)"/> <wire from="(390,770)" to="(390,870)"/> <wire from="(390,770)" to="(400,770)"/> <wire from="(390,870)" to="(390,970)"/> <wire from="(390,870)" to="(400,870)"/> <wire from="(390,90)" to="(390,170)"/> <wire from="(390,90)" to="(870,90)"/> <wire from="(390,970)" to="(400,970)"/> <wire from="(500,170)" to="(740,170)"/> <wire from="(500,180)" to="(550,180)"/> <wire from="(500,190)" to="(510,190)"/> <wire from="(500,270)" to="(730,270)"/> <wire from="(500,280)" to="(540,280)"/> <wire from="(500,290)" to="(510,290)"/> <wire from="(500,370)" to="(530,370)"/> <wire from="(500,380)" to="(540,380)"/> <wire from="(500,390)" to="(510,390)"/> <wire from="(500,470)" to="(710,470)"/> <wire from="(500,480)" to="(550,480)"/> <wire from="(500,490)" to="(510,490)"/> <wire from="(500,570)" to="(590,570)"/> <wire from="(500,580)" to="(560,580)"/> <wire from="(500,590)" to="(520,590)"/> <wire from="(500,670)" to="(710,670)"/> <wire from="(500,690)" to="(510,690)"/> <wire from="(500,770)" to="(720,770)"/> <wire from="(500,790)" to="(510,790)"/> <wire from="(500,870)" to="(730,870)"/> <wire from="(500,890)" to="(510,890)"/> <wire from="(500,970)" to="(740,970)"/> <wire from="(500,990)" to="(520,990)"/> <wire from="(510,190)" to="(510,230)"/> <wire from="(510,290)" to="(510,330)"/> <wire from="(510,390)" to="(510,430)"/> <wire from="(510,490)" to="(510,530)"/> <wire from="(510,690)" to="(510,730)"/> <wire from="(510,790)" to="(510,830)"/> <wire from="(510,890)" to="(510,930)"/> <wire from="(530,370)" to="(530,410)"/> <wire from="(530,410)" to="(720,410)"/> <wire from="(540,280)" to="(540,340)"/> <wire from="(540,340)" to="(600,340)"/> <wire from="(540,350)" to="(540,380)"/> <wire from="(540,350)" to="(600,350)"/> <wire from="(550,180)" to="(550,330)"/> <wire from="(550,330)" to="(600,330)"/> <wire from="(550,360)" to="(550,480)"/> <wire from="(550,360)" to="(600,360)"/> <wire from="(560,370)" to="(560,580)"/> <wire from="(560,370)" to="(600,370)"/> <wire from="(590,540)" to="(590,570)"/> <wire from="(590,540)" to="(740,540)"/> <wire from="(680,350)" to="(690,350)"/> <wire from="(690,350)" to="(690,630)"/> <wire from="(710,470)" to="(710,530)"/> <wire from="(710,530)" to="(740,530)"/> <wire from="(710,550)" to="(710,670)"/> <wire from="(710,550)" to="(740,550)"/> <wire from="(720,410)" to="(720,520)"/> <wire from="(720,520)" to="(740,520)"/> <wire from="(720,560)" to="(720,770)"/> <wire from="(720,560)" to="(740,560)"/> <wire from="(730,270)" to="(730,510)"/> <wire from="(730,510)" to="(740,510)"/> <wire from="(730,570)" to="(730,870)"/> <wire from="(730,570)" to="(740,570)"/> <wire from="(740,170)" to="(740,500)"/> <wire from="(740,580)" to="(740,970)"/> <wire from="(760,490)" to="(770,490)"/> <wire from="(770,60)" to="(1140,60)"/> <wire from="(770,60)" to="(770,490)"/> <wire from="(830,100)" to="(1070,100)"/> <wire from="(830,100)" to="(830,210)"/> <wire from="(830,1010)" to="(880,1010)"/> <wire from="(830,210)" to="(880,210)"/> <wire from="(830,230)" to="(830,310)"/> <wire from="(830,230)" to="(990,230)"/> <wire from="(830,310)" to="(880,310)"/> <wire from="(830,330)" to="(830,410)"/> <wire from="(830,330)" to="(990,330)"/> <wire from="(830,410)" to="(880,410)"/> <wire from="(830,430)" to="(830,510)"/> <wire from="(830,430)" to="(990,430)"/> <wire from="(830,510)" to="(880,510)"/> <wire from="(830,530)" to="(830,610)"/> <wire from="(830,530)" to="(990,530)"/> <wire from="(830,610)" to="(880,610)"/> <wire from="(830,630)" to="(1200,630)"/> <wire from="(830,630)" to="(830,710)"/> <wire from="(830,710)" to="(880,710)"/> <wire from="(830,730)" to="(830,810)"/> <wire from="(830,730)" to="(990,730)"/> <wire from="(830,810)" to="(880,810)"/> <wire from="(830,830)" to="(830,910)"/> <wire from="(830,830)" to="(990,830)"/> <wire from="(830,910)" to="(880,910)"/> <wire from="(830,930)" to="(830,1010)"/> <wire from="(830,930)" to="(990,930)"/> <wire from="(840,130)" to="(840,190)"/> <wire from="(840,190)" to="(840,290)"/> <wire from="(840,190)" to="(880,190)"/> <wire from="(840,290)" to="(840,390)"/> <wire from="(840,290)" to="(880,290)"/> <wire from="(840,390)" to="(840,490)"/> <wire from="(840,390)" to="(880,390)"/> <wire from="(840,490)" to="(840,590)"/> <wire from="(840,490)" to="(880,490)"/> <wire from="(840,590)" to="(840,690)"/> <wire from="(840,590)" to="(880,590)"/> <wire from="(840,690)" to="(840,790)"/> <wire from="(840,690)" to="(880,690)"/> <wire from="(840,790)" to="(840,890)"/> <wire from="(840,790)" to="(880,790)"/> <wire from="(840,890)" to="(840,990)"/> <wire from="(840,890)" to="(880,890)"/> <wire from="(840,990)" to="(880,990)"/> <wire from="(850,1000)" to="(880,1000)"/> <wire from="(850,110)" to="(850,200)"/> <wire from="(850,200)" to="(850,300)"/> <wire from="(850,200)" to="(880,200)"/> <wire from="(850,300)" to="(850,400)"/> <wire from="(850,300)" to="(880,300)"/> <wire from="(850,400)" to="(850,500)"/> <wire from="(850,400)" to="(880,400)"/> <wire from="(850,500)" to="(850,600)"/> <wire from="(850,500)" to="(880,500)"/> <wire from="(850,600)" to="(850,700)"/> <wire from="(850,600)" to="(880,600)"/> <wire from="(850,700)" to="(850,800)"/> <wire from="(850,700)" to="(880,700)"/> <wire from="(850,800)" to="(850,900)"/> <wire from="(850,800)" to="(880,800)"/> <wire from="(850,900)" to="(850,1000)"/> <wire from="(850,900)" to="(880,900)"/> <wire from="(860,120)" to="(860,180)"/> <wire from="(860,120)" to="(920,120)"/> <wire from="(860,180)" to="(860,280)"/> <wire from="(860,180)" to="(880,180)"/> <wire from="(860,280)" to="(860,380)"/> <wire from="(860,280)" to="(880,280)"/> <wire from="(860,380)" to="(860,480)"/> <wire from="(860,380)" to="(880,380)"/> <wire from="(860,480)" to="(860,580)"/> <wire from="(860,480)" to="(880,480)"/> <wire from="(860,580)" to="(860,680)"/> <wire from="(860,580)" to="(880,580)"/> <wire from="(860,680)" to="(860,780)"/> <wire from="(860,680)" to="(880,680)"/> <wire from="(860,780)" to="(860,880)"/> <wire from="(860,780)" to="(880,780)"/> <wire from="(860,880)" to="(860,980)"/> <wire from="(860,880)" to="(880,880)"/> <wire from="(860,980)" to="(880,980)"/> <wire from="(870,170)" to="(870,270)"/> <wire from="(870,170)" to="(880,170)"/> <wire from="(870,270)" to="(870,370)"/> <wire from="(870,270)" to="(880,270)"/> <wire from="(870,370)" to="(870,470)"/> <wire from="(870,370)" to="(880,370)"/> <wire from="(870,470)" to="(870,570)"/> <wire from="(870,470)" to="(880,470)"/> <wire from="(870,570)" to="(870,670)"/> <wire from="(870,570)" to="(880,570)"/> <wire from="(870,670)" to="(870,770)"/> <wire from="(870,670)" to="(880,670)"/> <wire from="(870,770)" to="(870,870)"/> <wire from="(870,770)" to="(880,770)"/> <wire from="(870,870)" to="(870,970)"/> <wire from="(870,870)" to="(880,870)"/> <wire from="(870,90)" to="(870,170)"/> <wire from="(870,90)" to="(920,90)"/> <wire from="(870,970)" to="(880,970)"/> <wire from="(980,170)" to="(1240,170)"/> <wire from="(980,180)" to="(1060,180)"/> <wire from="(980,190)" to="(990,190)"/> <wire from="(980,270)" to="(1230,270)"/> <wire from="(980,280)" to="(1050,280)"/> <wire from="(980,290)" to="(990,290)"/> <wire from="(980,370)" to="(1030,370)"/> <wire from="(980,380)" to="(1050,380)"/> <wire from="(980,390)" to="(990,390)"/> <wire from="(980,470)" to="(1150,470)"/> <wire from="(980,480)" to="(1060,480)"/> <wire from="(980,490)" to="(990,490)"/> <wire from="(980,570)" to="(1120,570)"/> <wire from="(980,580)" to="(1070,580)"/> <wire from="(980,590)" to="(1000,590)"/> <wire from="(980,670)" to="(1210,670)"/> <wire from="(980,690)" to="(990,690)"/> <wire from="(980,770)" to="(1220,770)"/> <wire from="(980,790)" to="(990,790)"/> <wire from="(980,870)" to="(1230,870)"/> <wire from="(980,890)" to="(990,890)"/> <wire from="(980,970)" to="(1240,970)"/> <wire from="(980,990)" to="(1000,990)"/> <wire from="(990,190)" to="(990,230)"/> <wire from="(990,290)" to="(990,330)"/> <wire from="(990,390)" to="(990,430)"/> <wire from="(990,490)" to="(990,530)"/> <wire from="(990,690)" to="(990,730)"/> <wire from="(990,790)" to="(990,830)"/> <wire from="(990,890)" to="(990,930)"/> </circuit> <circuit name="HVCounterBit"> <a name="appearance" val="evolution"/> <a name="circuit" val="HVCounterBit"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="n_PCLK"/> </comp> <comp lib="0" loc="(140,190)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="CLR"/> </comp> <comp lib="0" loc="(140,220)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="RES"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="cin"/> </comp> <comp lib="0" loc="(140,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="PCLK"/> </comp> <comp lib="0" loc="(460,110)" name="Constant"/> <comp lib="0" loc="(780,100)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="n_val"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,170)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="cout"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(780,70)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="val"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(380,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(600,140)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(680,180)" name="NOT Gate"> <a name="size" val="20"/> </comp> <comp lib="1" loc="(740,170)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(220,150)" name="Multiplexer"/> <comp lib="2" loc="(440,130)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp loc="(260,130)" name="DLatch"> <a name="label" val="keep_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(470,110)" name="DLatch"> <a name="label" val="out_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,110)" to="(240,110)"/> <wire from="(140,190)" to="(320,190)"/> <wire from="(140,220)" to="(540,220)"/> <wire from="(140,260)" to="(200,260)"/> <wire from="(140,70)" to="(420,70)"/> <wire from="(170,160)" to="(190,160)"/> <wire from="(170,30)" to="(170,160)"/> <wire from="(170,30)" to="(380,30)"/> <wire from="(180,140)" to="(190,140)"/> <wire from="(180,20)" to="(180,140)"/> <wire from="(180,20)" to="(660,20)"/> <wire from="(200,170)" to="(200,260)"/> <wire from="(200,260)" to="(630,260)"/> <wire from="(220,150)" to="(260,150)"/> <wire from="(240,110)" to="(240,130)"/> <wire from="(240,130)" to="(260,130)"/> <wire from="(300,130)" to="(340,130)"/> <wire from="(320,150)" to="(320,190)"/> <wire from="(320,150)" to="(340,150)"/> <wire from="(380,120)" to="(410,120)"/> <wire from="(380,140)" to="(410,140)"/> <wire from="(380,30)" to="(380,120)"/> <wire from="(380,30)" to="(610,30)"/> <wire from="(420,70)" to="(420,110)"/> <wire from="(440,130)" to="(470,130)"/> <wire from="(460,110)" to="(470,110)"/> <wire from="(510,130)" to="(540,130)"/> <wire from="(540,100)" to="(540,130)"/> <wire from="(540,100)" to="(630,100)"/> <wire from="(540,130)" to="(560,130)"/> <wire from="(540,150)" to="(540,220)"/> <wire from="(540,150)" to="(560,150)"/> <wire from="(600,140)" to="(610,140)"/> <wire from="(610,30)" to="(610,70)"/> <wire from="(610,70)" to="(610,140)"/> <wire from="(610,70)" to="(780,70)"/> <wire from="(630,100)" to="(630,160)"/> <wire from="(630,100)" to="(660,100)"/> <wire from="(630,160)" to="(700,160)"/> <wire from="(630,180)" to="(630,260)"/> <wire from="(630,180)" to="(660,180)"/> <wire from="(660,100)" to="(780,100)"/> <wire from="(660,20)" to="(660,100)"/> <wire from="(680,180)" to="(700,180)"/> <wire from="(740,170)" to="(780,170)"/> </circuit> <circuit name="HV_Decoders"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="HV_Decoders"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(140,180)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="VB"/> </comp> <comp lib="0" loc="(140,210)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(150,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(570,110)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VPLA_out"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(570,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="HPLA_out"/> <a name="output" val="true"/> <a name="radix" val="16"/> <a name="width" val="24"/> </comp> <comp loc="(470,230)" name="V_Decoder"> <a name="label" val="vpla"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(470,80)" name="H_Decoder"> <a name="label" val="hpla"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,180)" to="(190,180)"/> <wire from="(140,210)" to="(200,210)"/> <wire from="(150,110)" to="(170,110)"/> <wire from="(150,80)" to="(250,80)"/> <wire from="(170,110)" to="(170,230)"/> <wire from="(170,230)" to="(250,230)"/> <wire from="(190,100)" to="(190,180)"/> <wire from="(190,100)" to="(250,100)"/> <wire from="(200,120)" to="(200,210)"/> <wire from="(200,120)" to="(250,120)"/> <wire from="(470,230)" to="(520,230)"/> <wire from="(470,80)" to="(570,80)"/> <wire from="(520,110)" to="(520,230)"/> <wire from="(520,110)" to="(570,110)"/> </circuit> <circuit name="H_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="H_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1390,1360)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="24"/> <a name="incoming" val="24"/> </comp> <comp lib="0" loc="(1400,410)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="HPLA_out"/> <a name="output" val="true"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(150,260)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="VB"/> </comp> <comp lib="0" loc="(150,290)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="BLNK"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="H"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(270,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(270,240)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="1" loc="(1070,440)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1070,480)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(1110,1080)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,1180)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,380)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,550)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,650)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,780)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,880)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1110,980)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(220,170)" name="NOT Gate"> <a name="width" val="9"/> </comp> <comp lib="1" loc="(540,1560)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(540,1600)" name="NOR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(560,1380)" name="NOR Gate"> <a name="inputs" val="4"/> </comp> <comp lib="1" loc="(560,1440)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(560,1500)" name="NOR Gate"> <a name="inputs" val="3"/> </comp> <comp lib="1" loc="(560,830)" name="NOR Gate"/> <comp lib="1" loc="(580,1070)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,1190)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,1280)" name="NOR Gate"> <a name="inputs" val="4"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,390)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,510)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,620)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,730)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,930)" name="NOR Gate"> <a name="inputs" val="10"/> <a name="size" val="70"/> </comp> <wire from="(1010,290)" to="(1010,400)"/> <wire from="(1010,290)" to="(1280,290)"/> <wire from="(1010,400)" to="(1010,450)"/> <wire from="(1010,400)" to="(1030,400)"/> <wire from="(1010,450)" to="(1030,450)"/> <wire from="(1070,440)" to="(1200,440)"/> <wire from="(1070,480)" to="(1190,480)"/> <wire from="(1090,1480)" to="(1090,1500)"/> <wire from="(1090,1480)" to="(1370,1480)"/> <wire from="(1100,1490)" to="(1100,1560)"/> <wire from="(1100,1490)" to="(1370,1490)"/> <wire from="(1110,1080)" to="(1130,1080)"/> <wire from="(1110,1180)" to="(1120,1180)"/> <wire from="(1110,1500)" to="(1110,1600)"/> <wire from="(1110,1500)" to="(1370,1500)"/> <wire from="(1110,380)" to="(1210,380)"/> <wire from="(1110,550)" to="(1180,550)"/> <wire from="(1110,650)" to="(1170,650)"/> <wire from="(1110,780)" to="(1160,780)"/> <wire from="(1110,880)" to="(1150,880)"/> <wire from="(1110,980)" to="(1140,980)"/> <wire from="(1120,1180)" to="(1120,1600)"/> <wire from="(1120,1600)" to="(1370,1600)"/> <wire from="(1130,1080)" to="(1130,1590)"/> <wire from="(1130,1590)" to="(1370,1590)"/> <wire from="(1140,1580)" to="(1370,1580)"/> <wire from="(1140,980)" to="(1140,1580)"/> <wire from="(1150,1570)" to="(1370,1570)"/> <wire from="(1150,880)" to="(1150,1570)"/> <wire from="(1160,1560)" to="(1370,1560)"/> <wire from="(1160,780)" to="(1160,1560)"/> <wire from="(1170,1550)" to="(1370,1550)"/> <wire from="(1170,650)" to="(1170,1550)"/> <wire from="(1180,1540)" to="(1370,1540)"/> <wire from="(1180,550)" to="(1180,1540)"/> <wire from="(1190,1530)" to="(1370,1530)"/> <wire from="(1190,480)" to="(1190,1530)"/> <wire from="(1200,1520)" to="(1370,1520)"/> <wire from="(1200,440)" to="(1200,1520)"/> <wire from="(1210,1510)" to="(1370,1510)"/> <wire from="(1210,380)" to="(1210,1510)"/> <wire from="(1390,410)" to="(1390,1360)"/> <wire from="(1390,410)" to="(1400,410)"/> <wire from="(150,260)" to="(480,260)"/> <wire from="(150,290)" to="(490,290)"/> <wire from="(150,80)" to="(160,80)"/> <wire from="(160,170)" to="(190,170)"/> <wire from="(160,80)" to="(160,170)"/> <wire from="(160,80)" to="(230,80)"/> <wire from="(220,170)" to="(230,170)"/> <wire from="(230,130)" to="(270,130)"/> <wire from="(230,170)" to="(230,240)"/> <wire from="(230,240)" to="(270,240)"/> <wire from="(230,80)" to="(230,130)"/> <wire from="(290,100)" to="(360,100)"/> <wire from="(290,110)" to="(370,110)"/> <wire from="(290,120)" to="(380,120)"/> <wire from="(290,150)" to="(390,150)"/> <wire from="(290,160)" to="(400,160)"/> <wire from="(290,170)" to="(410,170)"/> <wire from="(290,180)" to="(420,180)"/> <wire from="(290,190)" to="(430,190)"/> <wire from="(290,200)" to="(440,200)"/> <wire from="(290,210)" to="(450,210)"/> <wire from="(290,220)" to="(460,220)"/> <wire from="(290,230)" to="(470,230)"/> <wire from="(290,40)" to="(300,40)"/> <wire from="(290,50)" to="(310,50)"/> <wire from="(290,60)" to="(320,60)"/> <wire from="(290,70)" to="(330,70)"/> <wire from="(290,80)" to="(340,80)"/> <wire from="(290,90)" to="(350,90)"/> <wire from="(300,40)" to="(300,470)"/> <wire from="(300,40)" to="(820,40)"/> <wire from="(300,470)" to="(500,470)"/> <wire from="(310,1480)" to="(310,1590)"/> <wire from="(310,1480)" to="(500,1480)"/> <wire from="(310,1590)" to="(500,1590)"/> <wire from="(310,480)" to="(310,580)"/> <wire from="(310,480)" to="(500,480)"/> <wire from="(310,50)" to="(310,480)"/> <wire from="(310,50)" to="(830,50)"/> <wire from="(310,580)" to="(310,1480)"/> <wire from="(310,580)" to="(500,580)"/> <wire from="(320,1500)" to="(500,1500)"/> <wire from="(320,490)" to="(320,590)"/> <wire from="(320,490)" to="(500,490)"/> <wire from="(320,590)" to="(320,900)"/> <wire from="(320,590)" to="(500,590)"/> <wire from="(320,60)" to="(320,490)"/> <wire from="(320,60)" to="(840,60)"/> <wire from="(320,900)" to="(320,1500)"/> <wire from="(320,900)" to="(500,900)"/> <wire from="(330,380)" to="(330,500)"/> <wire from="(330,380)" to="(500,380)"/> <wire from="(330,500)" to="(330,600)"/> <wire from="(330,500)" to="(500,500)"/> <wire from="(330,600)" to="(330,710)"/> <wire from="(330,600)" to="(500,600)"/> <wire from="(330,70)" to="(330,380)"/> <wire from="(330,70)" to="(850,70)"/> <wire from="(330,710)" to="(330,910)"/> <wire from="(330,710)" to="(500,710)"/> <wire from="(330,910)" to="(500,910)"/> <wire from="(340,510)" to="(340,610)"/> <wire from="(340,510)" to="(500,510)"/> <wire from="(340,610)" to="(340,720)"/> <wire from="(340,610)" to="(500,610)"/> <wire from="(340,720)" to="(500,720)"/> <wire from="(340,80)" to="(340,510)"/> <wire from="(340,80)" to="(860,80)"/> <wire from="(350,400)" to="(350,520)"/> <wire from="(350,400)" to="(500,400)"/> <wire from="(350,520)" to="(350,630)"/> <wire from="(350,520)" to="(500,520)"/> <wire from="(350,630)" to="(350,730)"/> <wire from="(350,630)" to="(500,630)"/> <wire from="(350,730)" to="(350,940)"/> <wire from="(350,730)" to="(500,730)"/> <wire from="(350,90)" to="(350,400)"/> <wire from="(350,90)" to="(870,90)"/> <wire from="(350,940)" to="(500,940)"/> <wire from="(360,100)" to="(360,410)"/> <wire from="(360,100)" to="(880,100)"/> <wire from="(360,1090)" to="(360,1250)"/> <wire from="(360,1090)" to="(500,1090)"/> <wire from="(360,1250)" to="(360,1360)"/> <wire from="(360,1250)" to="(500,1250)"/> <wire from="(360,1360)" to="(500,1360)"/> <wire from="(360,410)" to="(360,530)"/> <wire from="(360,410)" to="(500,410)"/> <wire from="(360,530)" to="(360,740)"/> <wire from="(360,530)" to="(500,530)"/> <wire from="(360,740)" to="(360,1090)"/> <wire from="(360,740)" to="(500,740)"/> <wire from="(370,110)" to="(370,420)"/> <wire from="(370,110)" to="(890,110)"/> <wire from="(370,1100)" to="(370,1270)"/> <wire from="(370,1100)" to="(500,1100)"/> <wire from="(370,1270)" to="(370,1370)"/> <wire from="(370,1270)" to="(500,1270)"/> <wire from="(370,1370)" to="(500,1370)"/> <wire from="(370,420)" to="(370,540)"/> <wire from="(370,420)" to="(500,420)"/> <wire from="(370,540)" to="(370,650)"/> <wire from="(370,540)" to="(500,540)"/> <wire from="(370,650)" to="(370,750)"/> <wire from="(370,650)" to="(500,650)"/> <wire from="(370,750)" to="(370,960)"/> <wire from="(370,750)" to="(500,750)"/> <wire from="(370,960)" to="(370,1100)"/> <wire from="(370,960)" to="(500,960)"/> <wire from="(380,1110)" to="(380,1290)"/> <wire from="(380,1110)" to="(500,1110)"/> <wire from="(380,120)" to="(380,660)"/> <wire from="(380,120)" to="(900,120)"/> <wire from="(380,1290)" to="(380,1420)"/> <wire from="(380,1290)" to="(500,1290)"/> <wire from="(380,1420)" to="(500,1420)"/> <wire from="(380,660)" to="(380,810)"/> <wire from="(380,660)" to="(500,660)"/> <wire from="(380,810)" to="(380,1110)"/> <wire from="(380,810)" to="(500,810)"/> <wire from="(390,1020)" to="(390,1150)"/> <wire from="(390,1020)" to="(500,1020)"/> <wire from="(390,1150)" to="(500,1150)"/> <wire from="(390,150)" to="(390,350)"/> <wire from="(390,150)" to="(910,150)"/> <wire from="(390,350)" to="(390,570)"/> <wire from="(390,350)" to="(500,350)"/> <wire from="(390,570)" to="(390,880)"/> <wire from="(390,570)" to="(500,570)"/> <wire from="(390,880)" to="(390,1020)"/> <wire from="(390,880)" to="(500,880)"/> <wire from="(400,1030)" to="(400,1160)"/> <wire from="(400,1030)" to="(500,1030)"/> <wire from="(400,1160)" to="(400,1550)"/> <wire from="(400,1160)" to="(500,1160)"/> <wire from="(400,1550)" to="(500,1550)"/> <wire from="(400,160)" to="(400,360)"/> <wire from="(400,160)" to="(920,160)"/> <wire from="(400,360)" to="(400,890)"/> <wire from="(400,360)" to="(500,360)"/> <wire from="(400,890)" to="(400,1030)"/> <wire from="(400,890)" to="(500,890)"/> <wire from="(410,1040)" to="(410,1170)"/> <wire from="(410,1040)" to="(500,1040)"/> <wire from="(410,1170)" to="(410,1570)"/> <wire from="(410,1170)" to="(500,1170)"/> <wire from="(410,1570)" to="(410,1610)"/> <wire from="(410,1570)" to="(500,1570)"/> <wire from="(410,1610)" to="(500,1610)"/> <wire from="(410,170)" to="(410,370)"/> <wire from="(410,170)" to="(930,170)"/> <wire from="(410,370)" to="(410,1040)"/> <wire from="(410,370)" to="(500,370)"/> <wire from="(420,1050)" to="(420,1180)"/> <wire from="(420,1050)" to="(500,1050)"/> <wire from="(420,1180)" to="(500,1180)"/> <wire from="(420,180)" to="(420,1050)"/> <wire from="(420,180)" to="(940,180)"/> <wire from="(430,1060)" to="(430,1190)"/> <wire from="(430,1060)" to="(500,1060)"/> <wire from="(430,1190)" to="(500,1190)"/> <wire from="(430,190)" to="(430,390)"/> <wire from="(430,190)" to="(950,190)"/> <wire from="(430,390)" to="(430,920)"/> <wire from="(430,390)" to="(500,390)"/> <wire from="(430,920)" to="(430,1060)"/> <wire from="(430,920)" to="(500,920)"/> <wire from="(440,1080)" to="(440,1200)"/> <wire from="(440,1080)" to="(500,1080)"/> <wire from="(440,1200)" to="(500,1200)"/> <wire from="(440,200)" to="(440,1080)"/> <wire from="(440,200)" to="(960,200)"/> <wire from="(450,1210)" to="(500,1210)"/> <wire from="(450,210)" to="(450,640)"/> <wire from="(450,210)" to="(970,210)"/> <wire from="(450,640)" to="(450,950)"/> <wire from="(450,640)" to="(500,640)"/> <wire from="(450,950)" to="(450,1210)"/> <wire from="(450,950)" to="(500,950)"/> <wire from="(460,1220)" to="(500,1220)"/> <wire from="(460,220)" to="(460,1220)"/> <wire from="(460,220)" to="(980,220)"/> <wire from="(470,1390)" to="(500,1390)"/> <wire from="(470,230)" to="(470,430)"/> <wire from="(470,230)" to="(990,230)"/> <wire from="(470,430)" to="(470,550)"/> <wire from="(470,430)" to="(500,430)"/> <wire from="(470,550)" to="(470,970)"/> <wire from="(470,550)" to="(500,550)"/> <wire from="(470,970)" to="(470,1390)"/> <wire from="(470,970)" to="(500,970)"/> <wire from="(480,1440)" to="(500,1440)"/> <wire from="(480,260)" to="(1280,260)"/> <wire from="(480,260)" to="(480,850)"/> <wire from="(480,850)" to="(480,1440)"/> <wire from="(480,850)" to="(500,850)"/> <wire from="(490,1120)" to="(490,1230)"/> <wire from="(490,1120)" to="(500,1120)"/> <wire from="(490,1230)" to="(490,1310)"/> <wire from="(490,1230)" to="(500,1230)"/> <wire from="(490,1310)" to="(490,1400)"/> <wire from="(490,1310)" to="(500,1310)"/> <wire from="(490,1400)" to="(490,1460)"/> <wire from="(490,1400)" to="(500,1400)"/> <wire from="(490,1460)" to="(490,1520)"/> <wire from="(490,1460)" to="(500,1460)"/> <wire from="(490,1520)" to="(500,1520)"/> <wire from="(490,290)" to="(1010,290)"/> <wire from="(490,290)" to="(490,670)"/> <wire from="(490,670)" to="(490,980)"/> <wire from="(490,670)" to="(500,670)"/> <wire from="(490,980)" to="(490,1120)"/> <wire from="(490,980)" to="(500,980)"/> <wire from="(540,1560)" to="(1100,1560)"/> <wire from="(540,1600)" to="(1110,1600)"/> <wire from="(560,1380)" to="(590,1380)"/> <wire from="(560,1440)" to="(580,1440)"/> <wire from="(560,1500)" to="(1090,1500)"/> <wire from="(560,830)" to="(640,830)"/> <wire from="(580,1070)" to="(620,1070)"/> <wire from="(580,1190)" to="(610,1190)"/> <wire from="(580,1280)" to="(600,1280)"/> <wire from="(580,1440)" to="(580,1470)"/> <wire from="(580,1470)" to="(1370,1470)"/> <wire from="(580,390)" to="(680,390)"/> <wire from="(580,510)" to="(670,510)"/> <wire from="(580,620)" to="(660,620)"/> <wire from="(580,730)" to="(650,730)"/> <wire from="(580,930)" to="(630,930)"/> <wire from="(590,1380)" to="(590,1460)"/> <wire from="(590,1460)" to="(1370,1460)"/> <wire from="(600,1280)" to="(600,1450)"/> <wire from="(600,1450)" to="(1370,1450)"/> <wire from="(610,1190)" to="(610,1440)"/> <wire from="(610,1440)" to="(1370,1440)"/> <wire from="(620,1070)" to="(620,1430)"/> <wire from="(620,1430)" to="(1370,1430)"/> <wire from="(630,1420)" to="(1370,1420)"/> <wire from="(630,930)" to="(630,1420)"/> <wire from="(640,1410)" to="(1370,1410)"/> <wire from="(640,830)" to="(640,1410)"/> <wire from="(650,1400)" to="(1370,1400)"/> <wire from="(650,730)" to="(650,1400)"/> <wire from="(660,1390)" to="(1370,1390)"/> <wire from="(660,620)" to="(660,1390)"/> <wire from="(670,1380)" to="(1370,1380)"/> <wire from="(670,510)" to="(670,1380)"/> <wire from="(680,1370)" to="(1370,1370)"/> <wire from="(680,390)" to="(680,1370)"/> <wire from="(820,1040)" to="(1030,1040)"/> <wire from="(820,1040)" to="(820,1140)"/> <wire from="(820,1140)" to="(1030,1140)"/> <wire from="(820,40)" to="(1280,40)"/> <wire from="(820,40)" to="(820,510)"/> <wire from="(820,510)" to="(1030,510)"/> <wire from="(820,510)" to="(820,610)"/> <wire from="(820,610)" to="(1030,610)"/> <wire from="(820,610)" to="(820,840)"/> <wire from="(820,840)" to="(1030,840)"/> <wire from="(820,840)" to="(820,1040)"/> <wire from="(830,1050)" to="(1030,1050)"/> <wire from="(830,1050)" to="(830,1150)"/> <wire from="(830,1150)" to="(1030,1150)"/> <wire from="(830,50)" to="(1280,50)"/> <wire from="(830,50)" to="(830,620)"/> <wire from="(830,620)" to="(1030,620)"/> <wire from="(830,620)" to="(830,850)"/> <wire from="(830,850)" to="(1030,850)"/> <wire from="(830,850)" to="(830,1050)"/> <wire from="(840,490)" to="(1030,490)"/> <wire from="(840,490)" to="(840,630)"/> <wire from="(840,60)" to="(1280,60)"/> <wire from="(840,60)" to="(840,490)"/> <wire from="(840,630)" to="(1030,630)"/> <wire from="(840,630)" to="(840,860)"/> <wire from="(840,860)" to="(1030,860)"/> <wire from="(840,860)" to="(840,960)"/> <wire from="(840,960)" to="(1030,960)"/> <wire from="(850,1070)" to="(1030,1070)"/> <wire from="(850,1070)" to="(850,1170)"/> <wire from="(850,1170)" to="(1030,1170)"/> <wire from="(850,70)" to="(1280,70)"/> <wire from="(850,70)" to="(850,770)"/> <wire from="(850,770)" to="(1030,770)"/> <wire from="(850,770)" to="(850,870)"/> <wire from="(850,870)" to="(1030,870)"/> <wire from="(850,870)" to="(850,970)"/> <wire from="(850,970)" to="(1030,970)"/> <wire from="(850,970)" to="(850,1070)"/> <wire from="(860,360)" to="(1030,360)"/> <wire from="(860,360)" to="(860,550)"/> <wire from="(860,550)" to="(1030,550)"/> <wire from="(860,550)" to="(860,650)"/> <wire from="(860,650)" to="(1030,650)"/> <wire from="(860,650)" to="(860,980)"/> <wire from="(860,80)" to="(1280,80)"/> <wire from="(860,80)" to="(860,360)"/> <wire from="(860,980)" to="(1030,980)"/> <wire from="(870,1190)" to="(1030,1190)"/> <wire from="(870,370)" to="(1030,370)"/> <wire from="(870,370)" to="(870,560)"/> <wire from="(870,560)" to="(1030,560)"/> <wire from="(870,560)" to="(870,660)"/> <wire from="(870,660)" to="(1030,660)"/> <wire from="(870,660)" to="(870,790)"/> <wire from="(870,790)" to="(1030,790)"/> <wire from="(870,790)" to="(870,990)"/> <wire from="(870,90)" to="(1280,90)"/> <wire from="(870,90)" to="(870,370)"/> <wire from="(870,990)" to="(1030,990)"/> <wire from="(870,990)" to="(870,1190)"/> <wire from="(880,100)" to="(1280,100)"/> <wire from="(880,100)" to="(880,570)"/> <wire from="(880,1010)" to="(1030,1010)"/> <wire from="(880,1010)" to="(880,1100)"/> <wire from="(880,1100)" to="(1030,1100)"/> <wire from="(880,570)" to="(1030,570)"/> <wire from="(880,570)" to="(880,800)"/> <wire from="(880,800)" to="(1030,800)"/> <wire from="(880,800)" to="(880,900)"/> <wire from="(880,900)" to="(1030,900)"/> <wire from="(880,900)" to="(880,1010)"/> <wire from="(890,110)" to="(1280,110)"/> <wire from="(890,110)" to="(890,580)"/> <wire from="(890,1110)" to="(1030,1110)"/> <wire from="(890,1110)" to="(890,1210)"/> <wire from="(890,1210)" to="(1030,1210)"/> <wire from="(890,580)" to="(1030,580)"/> <wire from="(890,580)" to="(890,680)"/> <wire from="(890,680)" to="(1030,680)"/> <wire from="(890,680)" to="(890,810)"/> <wire from="(890,810)" to="(1030,810)"/> <wire from="(890,810)" to="(890,910)"/> <wire from="(890,910)" to="(1030,910)"/> <wire from="(890,910)" to="(890,1110)"/> <wire from="(900,120)" to="(1280,120)"/> <wire from="(900,120)" to="(900,430)"/> <wire from="(900,430)" to="(1030,430)"/> <wire from="(910,150)" to="(1280,150)"/> <wire from="(910,150)" to="(910,740)"/> <wire from="(910,740)" to="(1030,740)"/> <wire from="(910,740)" to="(910,940)"/> <wire from="(910,940)" to="(1030,940)"/> <wire from="(920,160)" to="(1280,160)"/> <wire from="(920,160)" to="(920,470)"/> <wire from="(920,470)" to="(1030,470)"/> <wire from="(920,470)" to="(920,520)"/> <wire from="(920,520)" to="(1030,520)"/> <wire from="(920,520)" to="(920,750)"/> <wire from="(920,750)" to="(1030,750)"/> <wire from="(920,750)" to="(920,950)"/> <wire from="(920,950)" to="(1030,950)"/> <wire from="(930,1060)" to="(1030,1060)"/> <wire from="(930,1060)" to="(930,1160)"/> <wire from="(930,1160)" to="(1030,1160)"/> <wire from="(930,170)" to="(1280,170)"/> <wire from="(930,170)" to="(930,530)"/> <wire from="(930,530)" to="(1030,530)"/> <wire from="(930,530)" to="(930,760)"/> <wire from="(930,760)" to="(1030,760)"/> <wire from="(930,760)" to="(930,1060)"/> <wire from="(940,180)" to="(1280,180)"/> <wire from="(940,180)" to="(940,540)"/> <wire from="(940,540)" to="(1030,540)"/> <wire from="(940,540)" to="(940,640)"/> <wire from="(940,640)" to="(1030,640)"/> <wire from="(950,1080)" to="(1030,1080)"/> <wire from="(950,1080)" to="(950,1180)"/> <wire from="(950,1180)" to="(1030,1180)"/> <wire from="(950,190)" to="(1280,190)"/> <wire from="(950,190)" to="(950,780)"/> <wire from="(950,780)" to="(1030,780)"/> <wire from="(950,780)" to="(950,880)"/> <wire from="(950,880)" to="(1030,880)"/> <wire from="(950,880)" to="(950,1080)"/> <wire from="(960,1090)" to="(1030,1090)"/> <wire from="(960,200)" to="(1280,200)"/> <wire from="(960,200)" to="(960,890)"/> <wire from="(960,890)" to="(1030,890)"/> <wire from="(960,890)" to="(960,1090)"/> <wire from="(970,1000)" to="(1030,1000)"/> <wire from="(970,1000)" to="(970,1200)"/> <wire from="(970,1200)" to="(1030,1200)"/> <wire from="(970,210)" to="(1280,210)"/> <wire from="(970,210)" to="(970,380)"/> <wire from="(970,380)" to="(1030,380)"/> <wire from="(970,380)" to="(970,670)"/> <wire from="(970,670)" to="(1030,670)"/> <wire from="(970,670)" to="(970,1000)"/> <wire from="(980,220)" to="(1280,220)"/> <wire from="(980,220)" to="(980,310)"/> <wire from="(990,1020)" to="(1030,1020)"/> <wire from="(990,1020)" to="(990,1120)"/> <wire from="(990,1120)" to="(1030,1120)"/> <wire from="(990,1120)" to="(990,1220)"/> <wire from="(990,1220)" to="(1030,1220)"/> <wire from="(990,230)" to="(1280,230)"/> <wire from="(990,230)" to="(990,390)"/> <wire from="(990,390)" to="(1030,390)"/> <wire from="(990,390)" to="(990,590)"/> <wire from="(990,590)" to="(1030,590)"/> <wire from="(990,590)" to="(990,690)"/> <wire from="(990,690)" to="(1030,690)"/> <wire from="(990,690)" to="(990,820)"/> <wire from="(990,820)" to="(1030,820)"/> <wire from="(990,820)" to="(990,920)"/> <wire from="(990,920)" to="(1030,920)"/> <wire from="(990,920)" to="(990,1020)"/> </circuit> <circuit name="V_Decoder"> <a name="appearance" val="logisim_evolution"/> <a name="circuit" val="V_Decoder"/> <a name="circuitnamedboxfixedsize" val="true"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(1210,1070)" name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(1340,330)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="facing" val="west"/> <a name="label" val="VPLA_out"/> <a name="output" val="true"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="NewPins"/> <a name="label" val="V"/> <a name="radix" val="16"/> <a name="width" val="9"/> </comp> <comp lib="0" loc="(270,130)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="0" loc="(270,240)" name="Splitter"> <a name="fanout" val="9"/> <a name="incoming" val="9"/> </comp> <comp lib="1" loc="(1090,390)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1090,490)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1090,590)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1090,690)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1090,790)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(1090,930)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(220,170)" name="NOT Gate"> <a name="width" val="9"/> </comp> <comp lib="1" loc="(580,390)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,490)" name="NOR Gate"> <a name="inputs" val="8"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(580,590)" name="NOR Gate"> <a name="inputs" val="9"/> <a name="size" val="70"/> </comp> <wire from="(1090,390)" to="(1150,390)"/> <wire from="(1090,490)" to="(1140,490)"/> <wire from="(1090,590)" to="(1130,590)"/> <wire from="(1090,690)" to="(1120,690)"/> <wire from="(1090,790)" to="(1110,790)"/> <wire from="(1090,930)" to="(1100,930)"/> <wire from="(1100,1160)" to="(1190,1160)"/> <wire from="(1100,930)" to="(1100,1160)"/> <wire from="(1110,1150)" to="(1190,1150)"/> <wire from="(1110,790)" to="(1110,1150)"/> <wire from="(1120,1140)" to="(1190,1140)"/> <wire from="(1120,690)" to="(1120,1140)"/> <wire from="(1130,1130)" to="(1190,1130)"/> <wire from="(1130,590)" to="(1130,1130)"/> <wire from="(1140,1120)" to="(1190,1120)"/> <wire from="(1140,490)" to="(1140,1120)"/> <wire from="(1150,1110)" to="(1190,1110)"/> <wire from="(1150,390)" to="(1150,1110)"/> <wire from="(1210,1070)" to="(1230,1070)"/> <wire from="(1230,330)" to="(1230,1070)"/> <wire from="(1230,330)" to="(1340,330)"/> <wire from="(150,80)" to="(160,80)"/> <wire from="(160,170)" to="(190,170)"/> <wire from="(160,80)" to="(160,170)"/> <wire from="(160,80)" to="(230,80)"/> <wire from="(220,170)" to="(230,170)"/> <wire from="(230,130)" to="(270,130)"/> <wire from="(230,170)" to="(230,240)"/> <wire from="(230,240)" to="(270,240)"/> <wire from="(230,80)" to="(230,130)"/> <wire from="(290,100)" to="(360,100)"/> <wire from="(290,110)" to="(370,110)"/> <wire from="(290,120)" to="(380,120)"/> <wire from="(290,150)" to="(390,150)"/> <wire from="(290,160)" to="(400,160)"/> <wire from="(290,170)" to="(410,170)"/> <wire from="(290,180)" to="(420,180)"/> <wire from="(290,190)" to="(430,190)"/> <wire from="(290,200)" to="(440,200)"/> <wire from="(290,210)" to="(450,210)"/> <wire from="(290,220)" to="(460,220)"/> <wire from="(290,230)" to="(470,230)"/> <wire from="(290,40)" to="(300,40)"/> <wire from="(290,50)" to="(310,50)"/> <wire from="(290,60)" to="(320,60)"/> <wire from="(290,70)" to="(330,70)"/> <wire from="(290,80)" to="(340,80)"/> <wire from="(290,90)" to="(350,90)"/> <wire from="(300,40)" to="(300,450)"/> <wire from="(300,40)" to="(810,40)"/> <wire from="(300,450)" to="(500,450)"/> <wire from="(310,460)" to="(310,560)"/> <wire from="(310,460)" to="(500,460)"/> <wire from="(310,50)" to="(310,460)"/> <wire from="(310,50)" to="(820,50)"/> <wire from="(310,560)" to="(500,560)"/> <wire from="(320,60)" to="(320,250)"/> <wire from="(320,60)" to="(830,60)"/> <wire from="(330,380)" to="(330,480)"/> <wire from="(330,380)" to="(500,380)"/> <wire from="(330,480)" to="(330,580)"/> <wire from="(330,480)" to="(500,480)"/> <wire from="(330,580)" to="(500,580)"/> <wire from="(330,70)" to="(330,380)"/> <wire from="(330,70)" to="(840,70)"/> <wire from="(340,590)" to="(500,590)"/> <wire from="(340,80)" to="(340,590)"/> <wire from="(340,80)" to="(850,80)"/> <wire from="(350,600)" to="(500,600)"/> <wire from="(350,90)" to="(350,600)"/> <wire from="(350,90)" to="(860,90)"/> <wire from="(360,100)" to="(360,610)"/> <wire from="(360,100)" to="(870,100)"/> <wire from="(360,610)" to="(500,610)"/> <wire from="(370,110)" to="(370,620)"/> <wire from="(370,110)" to="(880,110)"/> <wire from="(370,620)" to="(500,620)"/> <wire from="(380,120)" to="(380,250)"/> <wire from="(380,120)" to="(890,120)"/> <wire from="(390,150)" to="(390,350)"/> <wire from="(390,150)" to="(900,150)"/> <wire from="(390,350)" to="(390,550)"/> <wire from="(390,350)" to="(500,350)"/> <wire from="(390,550)" to="(500,550)"/> <wire from="(400,160)" to="(400,360)"/> <wire from="(400,160)" to="(910,160)"/> <wire from="(400,360)" to="(500,360)"/> <wire from="(410,170)" to="(410,370)"/> <wire from="(410,170)" to="(920,170)"/> <wire from="(410,370)" to="(410,470)"/> <wire from="(410,370)" to="(500,370)"/> <wire from="(410,470)" to="(410,570)"/> <wire from="(410,470)" to="(500,470)"/> <wire from="(410,570)" to="(500,570)"/> <wire from="(420,180)" to="(420,250)"/> <wire from="(420,180)" to="(930,180)"/> <wire from="(430,190)" to="(430,400)"/> <wire from="(430,190)" to="(940,190)"/> <wire from="(430,400)" to="(430,500)"/> <wire from="(430,400)" to="(500,400)"/> <wire from="(430,500)" to="(500,500)"/> <wire from="(440,200)" to="(440,410)"/> <wire from="(440,200)" to="(950,200)"/> <wire from="(440,410)" to="(440,510)"/> <wire from="(440,410)" to="(500,410)"/> <wire from="(440,510)" to="(500,510)"/> <wire from="(450,210)" to="(450,420)"/> <wire from="(450,210)" to="(960,210)"/> <wire from="(450,420)" to="(450,520)"/> <wire from="(450,420)" to="(500,420)"/> <wire from="(450,520)" to="(500,520)"/> <wire from="(460,220)" to="(460,430)"/> <wire from="(460,220)" to="(970,220)"/> <wire from="(460,430)" to="(460,530)"/> <wire from="(460,430)" to="(500,430)"/> <wire from="(460,530)" to="(500,530)"/> <wire from="(470,230)" to="(470,630)"/> <wire from="(470,230)" to="(980,230)"/> <wire from="(470,630)" to="(500,630)"/> <wire from="(580,390)" to="(650,390)"/> <wire from="(580,490)" to="(640,490)"/> <wire from="(580,590)" to="(630,590)"/> <wire from="(630,1100)" to="(1190,1100)"/> <wire from="(630,590)" to="(630,1100)"/> <wire from="(640,1090)" to="(1190,1090)"/> <wire from="(640,490)" to="(640,1090)"/> <wire from="(650,1080)" to="(1190,1080)"/> <wire from="(650,390)" to="(650,1080)"/> <wire from="(810,40)" to="(1280,40)"/> <wire from="(810,40)" to="(810,550)"/> <wire from="(810,550)" to="(1010,550)"/> <wire from="(810,550)" to="(810,650)"/> <wire from="(810,650)" to="(1010,650)"/> <wire from="(820,360)" to="(1010,360)"/> <wire from="(820,360)" to="(820,460)"/> <wire from="(820,460)" to="(1010,460)"/> <wire from="(820,460)" to="(820,560)"/> <wire from="(820,50)" to="(1280,50)"/> <wire from="(820,50)" to="(820,360)"/> <wire from="(820,560)" to="(1010,560)"/> <wire from="(820,560)" to="(820,660)"/> <wire from="(820,660)" to="(1010,660)"/> <wire from="(820,660)" to="(820,760)"/> <wire from="(820,760)" to="(1010,760)"/> <wire from="(820,760)" to="(820,900)"/> <wire from="(820,900)" to="(1010,900)"/> <wire from="(830,370)" to="(1010,370)"/> <wire from="(830,370)" to="(830,470)"/> <wire from="(830,470)" to="(1010,470)"/> <wire from="(830,470)" to="(830,570)"/> <wire from="(830,570)" to="(1010,570)"/> <wire from="(830,570)" to="(830,670)"/> <wire from="(830,60)" to="(1280,60)"/> <wire from="(830,60)" to="(830,370)"/> <wire from="(830,670)" to="(1010,670)"/> <wire from="(840,380)" to="(1010,380)"/> <wire from="(840,380)" to="(840,480)"/> <wire from="(840,480)" to="(1010,480)"/> <wire from="(840,480)" to="(840,580)"/> <wire from="(840,580)" to="(1010,580)"/> <wire from="(840,580)" to="(840,680)"/> <wire from="(840,680)" to="(1010,680)"/> <wire from="(840,680)" to="(840,780)"/> <wire from="(840,70)" to="(1280,70)"/> <wire from="(840,70)" to="(840,380)"/> <wire from="(840,780)" to="(1010,780)"/> <wire from="(840,780)" to="(840,920)"/> <wire from="(840,920)" to="(1010,920)"/> <wire from="(850,590)" to="(1010,590)"/> <wire from="(850,590)" to="(850,790)"/> <wire from="(850,790)" to="(1010,790)"/> <wire from="(850,790)" to="(850,930)"/> <wire from="(850,80)" to="(1280,80)"/> <wire from="(850,80)" to="(850,590)"/> <wire from="(850,930)" to="(1010,930)"/> <wire from="(860,600)" to="(1010,600)"/> <wire from="(860,600)" to="(860,800)"/> <wire from="(860,800)" to="(1010,800)"/> <wire from="(860,800)" to="(860,940)"/> <wire from="(860,90)" to="(1280,90)"/> <wire from="(860,90)" to="(860,600)"/> <wire from="(860,940)" to="(1010,940)"/> <wire from="(870,100)" to="(1280,100)"/> <wire from="(870,100)" to="(870,610)"/> <wire from="(870,610)" to="(1010,610)"/> <wire from="(870,610)" to="(870,810)"/> <wire from="(870,810)" to="(1010,810)"/> <wire from="(870,810)" to="(870,950)"/> <wire from="(870,950)" to="(1010,950)"/> <wire from="(880,110)" to="(1280,110)"/> <wire from="(880,110)" to="(880,620)"/> <wire from="(880,620)" to="(1010,620)"/> <wire from="(880,620)" to="(880,820)"/> <wire from="(880,820)" to="(1010,820)"/> <wire from="(880,820)" to="(880,960)"/> <wire from="(880,960)" to="(1010,960)"/> <wire from="(890,120)" to="(1280,120)"/> <wire from="(890,120)" to="(890,630)"/> <wire from="(890,630)" to="(1010,630)"/> <wire from="(900,150)" to="(1280,150)"/> <wire from="(900,150)" to="(900,350)"/> <wire from="(900,350)" to="(1010,350)"/> <wire from="(900,350)" to="(900,450)"/> <wire from="(900,450)" to="(1010,450)"/> <wire from="(900,450)" to="(900,750)"/> <wire from="(900,750)" to="(1010,750)"/> <wire from="(900,750)" to="(900,890)"/> <wire from="(900,890)" to="(1010,890)"/> <wire from="(910,160)" to="(1280,160)"/> <wire from="(910,160)" to="(910,250)"/> <wire from="(920,170)" to="(1280,170)"/> <wire from="(920,170)" to="(920,770)"/> <wire from="(920,770)" to="(1010,770)"/> <wire from="(920,770)" to="(920,910)"/> <wire from="(920,910)" to="(1010,910)"/> <wire from="(930,180)" to="(1280,180)"/> <wire from="(930,180)" to="(930,250)"/> <wire from="(940,190)" to="(1280,190)"/> <wire from="(940,190)" to="(940,400)"/> <wire from="(940,400)" to="(1010,400)"/> <wire from="(940,400)" to="(940,500)"/> <wire from="(940,500)" to="(1010,500)"/> <wire from="(940,500)" to="(940,700)"/> <wire from="(940,700)" to="(1010,700)"/> <wire from="(950,200)" to="(1280,200)"/> <wire from="(950,200)" to="(950,410)"/> <wire from="(950,410)" to="(1010,410)"/> <wire from="(950,410)" to="(950,510)"/> <wire from="(950,510)" to="(1010,510)"/> <wire from="(950,510)" to="(950,710)"/> <wire from="(950,710)" to="(1010,710)"/> <wire from="(960,210)" to="(1280,210)"/> <wire from="(960,210)" to="(960,420)"/> <wire from="(960,420)" to="(1010,420)"/> <wire from="(960,420)" to="(960,520)"/> <wire from="(960,520)" to="(1010,520)"/> <wire from="(960,520)" to="(960,720)"/> <wire from="(960,720)" to="(1010,720)"/> <wire from="(970,220)" to="(1280,220)"/> <wire from="(970,220)" to="(970,430)"/> <wire from="(970,430)" to="(1010,430)"/> <wire from="(970,430)" to="(970,530)"/> <wire from="(970,530)" to="(1010,530)"/> <wire from="(970,530)" to="(970,730)"/> <wire from="(970,730)" to="(1010,730)"/> <wire from="(980,230)" to="(1280,230)"/> <wire from="(980,230)" to="(980,830)"/> <wire from="(980,830)" to="(1010,830)"/> <wire from="(980,830)" to="(980,970)"/> <wire from="(980,970)" to="(1010,970)"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project source="3.8.0" version="1.0"> This file is intended to be loaded by Logisim-evolution v3.8.0(https://github.com/logisim-evolution/). <lib desc="#Wiring" name="0"> <tool name="Splitter"> <a name="facing" val="west"/> <a name="fanout" val="6"/> <a name="incoming" val="6"/> </tool> <tool name="Pin"> <a name="appearance" val="classic"/> </tool> <tool name="Probe"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="labelfont" val="SansSerif plain 40"/> <a name="radix" val="8"/> </tool> <tool name="Pull Resistor"> <a name="pull" val="1"/> </tool> <tool name="Constant"> <a name="value" val="0x0"/> </tool> </lib> <lib desc="#Gates" name="1"/> <lib desc="#Plexers" name="2"/> <lib desc="#Arithmetic" name="3"> <tool name="Divider"> <a name="width" val="32"/> </tool> </lib> <lib desc="#Memory" name="4"> <tool name="Shift Register"> <a name="length" val="1"/> </tool> </lib> <lib desc="#I/O" name="5"/> <lib desc="#Base" name="6"> <tool name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> </lib> <lib desc="file#APU_Evo.circ" name="7"/> <main name="APUPlayer"/> <options> <a name="gateUndefined" val="ignore"/> <a name="simlimit" val="1000"/> <a name="simrand" val="0"/> </options> <mappings> <tool lib="6" map="Button2" name="Menu Tool"/> <tool lib="6" map="Button3" name="Menu Tool"/> <tool lib="6" map="Ctrl Button1" name="Menu Tool"/> </mappings> <toolbar> <tool lib="6" name="Poke Tool"/> <tool lib="6" name="Edit Tool"/> <tool lib="6" name="Text Tool"> <a name="font" val="SansSerif plain 12"/> </tool> <sep/> <tool lib="0" name="Pin"/> <tool lib="0" name="Pin"> <a name="facing" val="west"/> <a name="output" val="true"/> </tool> <tool lib="1" name="NOT Gate"/> <tool lib="1" name="AND Gate"/> <tool lib="1" name="OR Gate"/> </toolbar> <circuit name="APUPlayer"> <a name="circuit" val="APUPlayer"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <comp lib="0" loc="(110,120)" name="Clock"> <a name="label" val="XTAL"/> </comp> <comp lib="0" loc="(110,170)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(1210,420)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="none"/> <a name="bit12" val="none"/> <a name="bit13" val="none"/> <a name="bit14" val="0"/> <a name="bit15" val="none"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="1"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(1220,600)" name="Constant"/> <comp lib="0" loc="(1220,620)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(1300,330)" name="Splitter"> <a name="appear" val="right"/> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="3"/> <a name="bit13" val="3"/> <a name="bit14" val="3"/> <a name="bit15" val="3"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="1"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="facing" val="north"/> <a name="fanout" val="4"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(1500,640)" name="NoConnect"> <a name="width" val="32"/> </comp> <comp lib="0" loc="(290,160)" name="Constant"/> <comp lib="0" loc="(290,280)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(530,180)" name="NoConnect"/> <comp lib="0" loc="(530,200)" name="NoConnect"/> <comp lib="0" loc="(530,220)" name="NoConnect"/> <comp lib="0" loc="(530,240)" name="NoConnect"/> <comp lib="0" loc="(530,260)" name="NoConnect"/> <comp lib="0" loc="(560,480)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(580,450)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="1"/> <a name="bit2" val="0"/> <a name="bit20" val="1"/> <a name="bit21" val="1"/> <a name="bit22" val="1"/> <a name="bit23" val="2"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="fanout" val="3"/> <a name="incoming" val="24"/> </comp> <comp lib="0" loc="(680,360)" name="Constant"/> <comp lib="0" loc="(800,620)" name="Probe"> <a name="appearance" val="classic"/> <a name="labelfont" val="SansSerif plain 40"/> <a name="radix" val="16"/> </comp> <comp lib="4" loc="(1240,560)" name="RAM"> <a name="addrWidth" val="24"/> <a name="appearance" val="classic"/> <a name="dataWidth" val="32"/> <a name="label" val="aux_dump"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="labelvisible" val="true"/> <a name="trigger" val="high"/> </comp> <comp lib="4" loc="(1270,400)" name="Register"> <a name="appearance" val="classic"/> <a name="label" val="transp_latch"/> <a name="labelfont" val="SansSerif bold 10"/> <a name="trigger" val="high"/> <a name="width" val="16"/> </comp> <comp lib="5" loc="(1260,290)" name="Hex Digit Display"/> <comp lib="5" loc="(1300,290)" name="Hex Digit Display"/> <comp lib="5" loc="(1340,290)" name="Hex Digit Display"/> <comp lib="5" loc="(1380,290)" name="Hex Digit Display"/> <comp lib="5" loc="(820,580)" name="Button"> <a name="label" val="Next_RegOp"/> </comp> <comp lib="6" loc="(1300,220)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="Last APU Register"/> </comp> <comp lib="6" loc="(1390,720)" name="Text"> <a name="font" val="SansSerif bolditalic 12"/> <a name="text" val="Taram-param-pam. Pam! Peep, peep, peep. Pipipipip, pip, pibibip"/> </comp> <comp lib="6" loc="(776,491)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Load regdump here"/> </comp> <comp lib="7" loc="(530,120)" name="APU_NoCore"> <a name="label" val="apu"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="labelloc" val="south"/> </comp> <comp loc="(1040,610)" name="AUXDumper"> <a name="label" val="dumper"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(700,160)" name="WRAM"> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <comp loc="(710,330)" name="Fake6502"> <a name="label" val="core"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(1010,640)" to="(1010,730)"/> <wire from="(1010,640)" to="(1040,640)"/> <wire from="(110,120)" to="(310,120)"/> <wire from="(110,170)" to="(250,170)"/> <wire from="(1150,610)" to="(1190,610)"/> <wire from="(1150,640)" to="(1240,640)"/> <wire from="(1190,570)" to="(1190,610)"/> <wire from="(1190,570)" to="(1240,570)"/> <wire from="(1200,400)" to="(1200,420)"/> <wire from="(1200,400)" to="(1240,400)"/> <wire from="(1200,420)" to="(1210,420)"/> <wire from="(1220,600)" to="(1230,600)"/> <wire from="(1220,620)" to="(1240,620)"/> <wire from="(1230,410)" to="(1240,410)"/> <wire from="(1230,600)" to="(1230,610)"/> <wire from="(1230,610)" to="(1240,610)"/> <wire from="(1250,420)" to="(1250,440)"/> <wire from="(1260,290)" to="(1260,310)"/> <wire from="(1260,310)" to="(1310,310)"/> <wire from="(1270,400)" to="(1300,400)"/> <wire from="(1300,290)" to="(1300,300)"/> <wire from="(1300,300)" to="(1320,300)"/> <wire from="(1300,330)" to="(1300,400)"/> <wire from="(1320,300)" to="(1320,310)"/> <wire from="(1330,300)" to="(1330,310)"/> <wire from="(1330,300)" to="(1340,300)"/> <wire from="(1340,290)" to="(1340,300)"/> <wire from="(1340,310)" to="(1380,310)"/> <wire from="(1380,290)" to="(1380,310)"/> <wire from="(1480,640)" to="(1500,640)"/> <wire from="(160,180)" to="(160,700)"/> <wire from="(160,180)" to="(310,180)"/> <wire from="(160,700)" to="(970,700)"/> <wire from="(170,200)" to="(170,690)"/> <wire from="(170,200)" to="(310,200)"/> <wire from="(170,690)" to="(960,690)"/> <wire from="(190,260)" to="(190,680)"/> <wire from="(190,260)" to="(310,260)"/> <wire from="(190,680)" to="(950,680)"/> <wire from="(200,220)" to="(200,670)"/> <wire from="(200,220)" to="(310,220)"/> <wire from="(200,670)" to="(930,670)"/> <wire from="(220,300)" to="(220,710)"/> <wire from="(220,300)" to="(310,300)"/> <wire from="(220,710)" to="(980,710)"/> <wire from="(240,240)" to="(240,650)"/> <wire from="(240,240)" to="(310,240)"/> <wire from="(240,650)" to="(910,650)"/> <wire from="(250,140)" to="(250,170)"/> <wire from="(250,140)" to="(310,140)"/> <wire from="(250,170)" to="(250,600)"/> <wire from="(250,600)" to="(630,600)"/> <wire from="(290,160)" to="(310,160)"/> <wire from="(290,280)" to="(310,280)"/> <wire from="(530,120)" to="(610,120)"/> <wire from="(530,140)" to="(670,140)"/> <wire from="(530,160)" to="(650,160)"/> <wire from="(530,280)" to="(600,280)"/> <wire from="(530,300)" to="(590,300)"/> <wire from="(530,320)" to="(560,320)"/> <wire from="(530,340)" to="(580,340)"/> <wire from="(530,360)" to="(570,360)"/> <wire from="(530,380)" to="(560,380)"/> <wire from="(530,400)" to="(540,400)"/> <wire from="(540,400)" to="(540,470)"/> <wire from="(540,470)" to="(560,470)"/> <wire from="(560,220)" to="(560,320)"/> <wire from="(560,220)" to="(700,220)"/> <wire from="(560,380)" to="(560,460)"/> <wire from="(570,240)" to="(570,360)"/> <wire from="(570,240)" to="(700,240)"/> <wire from="(580,340)" to="(580,430)"/> <wire from="(580,430)" to="(710,430)"/> <wire from="(580,450)" to="(590,450)"/> <wire from="(590,300)" to="(590,390)"/> <wire from="(590,390)" to="(710,390)"/> <wire from="(590,450)" to="(590,730)"/> <wire from="(590,730)" to="(1010,730)"/> <wire from="(600,280)" to="(600,350)"/> <wire from="(600,350)" to="(710,350)"/> <wire from="(610,120)" to="(610,330)"/> <wire from="(610,330)" to="(710,330)"/> <wire from="(630,180)" to="(630,400)"/> <wire from="(630,180)" to="(700,180)"/> <wire from="(630,400)" to="(630,600)"/> <wire from="(630,400)" to="(710,400)"/> <wire from="(650,160)" to="(650,170)"/> <wire from="(650,170)" to="(700,170)"/> <wire from="(670,140)" to="(670,160)"/> <wire from="(670,160)" to="(700,160)"/> <wire from="(680,360)" to="(690,360)"/> <wire from="(690,360)" to="(690,380)"/> <wire from="(690,360)" to="(710,360)"/> <wire from="(690,380)" to="(710,380)"/> <wire from="(700,440)" to="(700,540)"/> <wire from="(700,440)" to="(710,440)"/> <wire from="(700,540)" to="(830,540)"/> <wire from="(800,620)" to="(850,620)"/> <wire from="(820,580)" to="(830,580)"/> <wire from="(830,540)" to="(830,580)"/> <wire from="(840,330)" to="(970,330)"/> <wire from="(840,340)" to="(960,340)"/> <wire from="(840,360)" to="(950,360)"/> <wire from="(840,400)" to="(930,400)"/> <wire from="(840,430)" to="(910,430)"/> <wire from="(840,440)" to="(850,440)"/> <wire from="(850,240)" to="(980,240)"/> <wire from="(850,440)" to="(850,620)"/> <wire from="(910,430)" to="(910,650)"/> <wire from="(930,400)" to="(1200,400)"/> <wire from="(930,400)" to="(930,670)"/> <wire from="(950,360)" to="(950,680)"/> <wire from="(960,340)" to="(960,440)"/> <wire from="(960,440)" to="(1250,440)"/> <wire from="(960,440)" to="(960,690)"/> <wire from="(970,330)" to="(970,610)"/> <wire from="(970,610)" to="(1040,610)"/> <wire from="(970,610)" to="(970,700)"/> <wire from="(980,240)" to="(980,710)"/> </circuit> <circuit name="AUXDumper"> <a name="appearance" val="custom"/> <a name="circuit" val="AUXDumper"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="131" stroke="#000000" stroke-width="2" width="111" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="18" font-weight="bold" text-anchor="middle" x="107" y="35">AUX Dumper</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="90">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="80" y="120">AUX A/B</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="139" y="89">addr</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="134" y="119">data32</text> <circ-anchor facing="east" x="50" y="90"/> <circ-port dir="in" pin="130,150" x="50" y="120"/> <circ-port dir="in" pin="90,60" x="50" y="90"/> <circ-port dir="out" pin="830,220" x="160" y="120"/> <circ-port dir="out" pin="830,70" x="160" y="90"/> </appear> <comp lib="0" loc="(130,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="AUX"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(140,150)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit16" val="1"/> <a name="bit17" val="1"/> <a name="bit18" val="1"/> <a name="bit19" val="1"/> <a name="bit2" val="0"/> <a name="bit20" val="1"/> <a name="bit21" val="1"/> <a name="bit22" val="1"/> <a name="bit23" val="1"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="incoming" val="24"/> </comp> <comp lib="0" loc="(380,430)" name="Constant"> <a name="value" val="0x3ecccccd"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(540,510)" name="Constant"> <a name="value" val="0x40000000"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(610,130)" name="Splitter"> <a name="bit0" val="1"/> <a name="bit1" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="0"/> <a name="bit16" val="0"/> <a name="bit17" val="0"/> <a name="bit18" val="0"/> <a name="bit19" val="0"/> <a name="bit2" val="0"/> <a name="bit20" val="0"/> <a name="bit21" val="0"/> <a name="bit22" val="0"/> <a name="bit23" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="facing" val="west"/> <a name="incoming" val="24"/> </comp> <comp lib="0" loc="(830,220)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Data"/> <a name="output" val="true"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(830,70)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Addr"/> <a name="output" val="true"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(90,60)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI1"/> </comp> <comp lib="1" loc="(390,210)" name="AND Gate"> <a name="negate1" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(590,230)" name="XNOR Gate"> <a name="size" val="30"/> </comp> <comp lib="3" loc="(440,390)" name="FPMultiplier"/> <comp lib="3" loc="(510,430)" name="FPAdder"/> <comp lib="3" loc="(600,430)" name="FPDivider"/> <comp lib="4" loc="(460,140)" name="Counter"> <a name="appearance" val="classic"/> <a name="max" val="0x7fffff"/> <a name="ongoal" val="stay"/> <a name="width" val="23"/> </comp> <comp lib="4" loc="(500,190)" name="Counter"> <a name="appearance" val="classic"/> <a name="max" val="0x1"/> <a name="width" val="1"/> </comp> <comp lib="4" loc="(500,270)" name="Counter"> <a name="appearance" val="classic"/> <a name="max" val="0x1"/> <a name="trigger" val="falling"/> <a name="width" val="1"/> </comp> <comp lib="4" loc="(880,480)" name="S-R Flip-Flop"> <a name="appearance" val="classic"/> </comp> <comp lib="6" loc="(415,360)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="* 0.4"/> </comp> <comp lib="6" loc="(435,545)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="float-&gt;uint32_t Convert: https://gregstoll.com/~gregstoll/floattohex/"/> </comp> <comp lib="6" loc="(485,400)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="a + b"/> </comp> <comp lib="6" loc="(575,400)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val=" : 2"/> </comp> <comp lib="6" loc="(580,50)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="The invention of the org to make the ADDR tick EVERY half cycle."/> </comp> <comp lib="6" loc="(800,285)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="normalized samples in range [0.0f; 1.0f]"/> </comp> <comp loc="(240,380)" name="AUX_A"/> <comp loc="(240,480)" name="AUX_B"/> <wire from="(130,150)" to="(140,150)"/> <wire from="(130,220)" to="(130,600)"/> <wire from="(130,220)" to="(350,220)"/> <wire from="(130,600)" to="(910,600)"/> <wire from="(160,130)" to="(190,130)"/> <wire from="(160,140)" to="(160,480)"/> <wire from="(160,480)" to="(240,480)"/> <wire from="(190,130)" to="(190,380)"/> <wire from="(190,380)" to="(240,380)"/> <wire from="(260,200)" to="(360,200)"/> <wire from="(260,60)" to="(260,200)"/> <wire from="(300,380)" to="(400,380)"/> <wire from="(300,480)" to="(450,480)"/> <wire from="(380,430)" to="(390,430)"/> <wire from="(390,210)" to="(440,210)"/> <wire from="(390,400)" to="(390,430)"/> <wire from="(390,400)" to="(400,400)"/> <wire from="(440,160)" to="(440,210)"/> <wire from="(440,210)" to="(440,230)"/> <wire from="(440,230)" to="(440,310)"/> <wire from="(440,230)" to="(480,230)"/> <wire from="(440,310)" to="(480,310)"/> <wire from="(440,390)" to="(450,390)"/> <wire from="(450,390)" to="(450,420)"/> <wire from="(450,420)" to="(470,420)"/> <wire from="(450,440)" to="(450,480)"/> <wire from="(450,440)" to="(470,440)"/> <wire from="(460,140)" to="(590,140)"/> <wire from="(460,150)" to="(550,150)"/> <wire from="(480,210)" to="(480,230)"/> <wire from="(480,290)" to="(480,310)"/> <wire from="(500,190)" to="(520,190)"/> <wire from="(500,270)" to="(520,270)"/> <wire from="(510,430)" to="(520,430)"/> <wire from="(520,190)" to="(520,220)"/> <wire from="(520,220)" to="(540,220)"/> <wire from="(520,240)" to="(520,270)"/> <wire from="(520,240)" to="(540,240)"/> <wire from="(520,420)" to="(520,430)"/> <wire from="(520,420)" to="(560,420)"/> <wire from="(540,510)" to="(550,510)"/> <wire from="(550,150)" to="(550,180)"/> <wire from="(550,180)" to="(660,180)"/> <wire from="(550,440)" to="(550,510)"/> <wire from="(550,440)" to="(560,440)"/> <wire from="(590,150)" to="(590,230)"/> <wire from="(600,430)" to="(640,430)"/> <wire from="(610,130)" to="(680,130)"/> <wire from="(640,220)" to="(640,430)"/> <wire from="(640,220)" to="(830,220)"/> <wire from="(660,180)" to="(660,480)"/> <wire from="(660,480)" to="(840,480)"/> <wire from="(680,70)" to="(680,130)"/> <wire from="(680,70)" to="(830,70)"/> <wire from="(880,480)" to="(910,480)"/> <wire from="(90,60)" to="(260,60)"/> <wire from="(910,480)" to="(910,600)"/> </circuit> <circuit name="AUX_A"> <a name="appearance" val="custom"/> <a name="circuit" val="AUX_A"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="56" stroke="#000000" stroke-width="2" width="60" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="16" font-weight="bold" text-anchor="middle" x="77" y="46">AUX_A</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="84">d</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="83">a</text> <circ-anchor facing="east" x="50" y="80"/> <circ-port dir="in" pin="170,130" x="50" y="80"/> <circ-port dir="out" pin="480,180" x="110" y="80"/> </appear> <comp lib="0" loc="(170,130)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="d"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(480,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="a"/> <a name="output" val="true"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(200,120)" name="ROM"> <a name="appearance" val="classic"/> <a name="contents">addr/data: 8 32 3ab77b8e 3d12a8ec 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3d12a8ec 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3d924925 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3ddadec7 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3e118b0c 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3e3577e6 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3e59364e 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3e7cc69c 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3e901495 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3ea1af28 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3eb33333 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3ec4a0e1 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3ed5f85c 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3ee739ce 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3ef86563 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3f780eaa 3f04bda1 3f0d3dcb 3f15b343 3f1e1e1e 3f267e6f 3f2ed44b 3f371fc4 3f3f60ef 3f4797dd 3f4fc4a3 3f57e753 3f600000 3f680ebc 3f701399 3f780eaa 3f800000 </a> <a name="dataWidth" val="32"/> </comp> <comp lib="6" loc="(120,155)" name="Text"> <a name="text" val="0...255"/> </comp> <wire from="(170,130)" to="(200,130)"/> <wire from="(440,180)" to="(480,180)"/> </circuit> <circuit name="AUX_B"> <a name="appearance" val="custom"/> <a name="circuit" val="AUX_B"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="55" stroke="#000000" stroke-width="2" width="60" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="98" y="83">a</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="61" y="84">d</text> <text dominant-baseline="central" font-family="SansSerif" font-size="16" font-weight="bold" text-anchor="middle" x="77" y="46">AUX_B</text> <circ-anchor facing="east" x="50" y="80"/> <circ-port dir="in" pin="130,140" x="50" y="80"/> <circ-port dir="out" pin="480,180" x="110" y="80"/> </appear> <comp lib="0" loc="(130,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="d"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(150,140)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="0"/> <a name="bit11" val="0"/> <a name="bit12" val="0"/> <a name="bit13" val="0"/> <a name="bit14" val="0"/> <a name="bit15" val="none"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="0"/> <a name="bit6" val="0"/> <a name="bit7" val="0"/> <a name="bit8" val="0"/> <a name="bit9" val="0"/> <a name="fanout" val="1"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(480,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="a"/> <a name="output" val="true"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(200,120)" name="ROM"> <a name="addrWidth" val="15"/> <a name="appearance" val="classic"/> <a name="contents">addr/data: 15 32 39f0dbd4 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3c40856f 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3bc0c48a 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3c9034de 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3c40856f 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3c9034de 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3cc007b4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3cefbb5a 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3d0fa7f6 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3d2762c6 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3d3f0e2a 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3d56aa32 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3d6e36ed 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3d82da35 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3d8e915b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3d9a40f1 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3da5e8fe 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3db1898a 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3dbd229a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3dc8b438 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3dd43e69 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3ddfc135 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3deb3ca3 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3df6b0bb 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e010ec1 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e06c180 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e0c709f 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e121c1f 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3e17c406 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3e1d6856 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3e230913 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3e28a641 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3e2e3fe1 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3e33d5f9 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3e39688b 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3e3ef79a 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3e44832b 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3e4a0b3f 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3e4f8fdb 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3e551102 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3e5a8eb7 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3e6008fd 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3e657fd7 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3e6af34a 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3e706356 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3e75d001 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3e7b394d 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3e804f9f 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3e8300eb 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3e85b08c 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3e885e84 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3e8b0ad4 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3e8db57e 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3e905e84 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3e9305e6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3e95aba7 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3e984fc8 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3e9af24a 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3e9d932f 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3ea03278 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ea2d028 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ea56c3e 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ea806be 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3eaa9fa7 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3ead36fd 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3eafccbf 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eb260f0 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3eb4f391 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3eb784a4 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3eba1429 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3ebca222 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3ebf2e91 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3ec1b977 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3ec442d6 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3ec6caae 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3ec95101 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3ecbd5d1 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3ece591f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3ed0daec 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3ed35b39 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3ed5da09 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3ed8575b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3edad333 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3edd4d90 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3edfc674 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3ee23de1 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3ee4b3d8 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3ee72859 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3ee99b68 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3eec0d04 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3eee7d2e 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3ef0ebea 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3ef35936 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3ef5c516 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3ef82f89 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3efa9892 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3efd0031 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3eff6668 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f00e59c 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f021751 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f034854 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f0478a5 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f05a845 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f06d735 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f080575 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f093306 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f0a5fe8 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f0b8c1b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f0cb7a2 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f0de27b 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f0f0ca8 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f10362a 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f115f00 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f12872c 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f13aeae 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f14d586 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f15fbb5 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f17213d 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f18461c 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f196a54 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f1a8de6 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f1bb0d1 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f1cd318 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f1df4b9 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f1f15b5 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f20360e 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f2155c4 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f7d3908 3f2274d7 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f7e2680 3f239347 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f25ce44 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f2806be 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f2a3cba 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f2c703b 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f2ea147 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f30cfe1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f32fc0d 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f3525cf 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f374d2c 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f397227 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f3b94c4 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f3db508 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f3fd2f5 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f41ee90 3f461ee0 3f4a4614 3f4e644a 3f5279a0 3f568631 3f5a8a1b 3f5e8578 3f627864 3f6662fa 3f6a4553 3f6e1f8b 3f71f1b9 3f75bbf8 3f797e60 3f7d3908 3f4407dd 3f48339b 3f4c564d 3f50700f 3f5480ff 3f588939 3f5c88d9 3f607ffa 3f646eb8 3f68552c 3f6c3372 3f7009a1 3f73d7d5 3f779e25 3f7b5caa 3f7f137d 3f24b116 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f26ead1 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f29220b 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f2b56c9 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f2d8910 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f2fb8e2 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f31e644 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f34113b 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f3639ca 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f385ff6 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f3a83c1 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f3ca531 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f3ec449 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f40e10d 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f42fb80 3f472986 3f4b4e78 3f4f6a73 3f537d95 3f5787fa 3f5b89be 3f5f82fc 3f6373d0 3f675c55 3f6b3ca3 3f6f14d6 3f72e506 3f76ad4d 3f7a6dc3 3f7e2680 3f4513a8 3f493d20 3f4d5d93 3f51751e 3f5583de 3f5989ee 3f5d876c 3f617c72 3f65691b 3f694d81 3f6d29bf 3f70fded 3f74ca25 3f788e81 3f7c4b17 3f800000 </a> <a name="dataWidth" val="32"/> </comp> <comp lib="6" loc="(85,175)" name="Text"> <a name="text" val="0...32767"/> </comp> <wire from="(130,140)" to="(150,140)"/> <wire from="(170,130)" to="(200,130)"/> <wire from="(440,180)" to="(480,180)"/> </circuit> <circuit name="Fake6502"> <a name="appearance" val="custom"/> <a name="circuit" val="Fake6502"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="150" stroke="#000000" stroke-width="2" width="130" x="50" y="50"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" font-weight="bold" text-anchor="middle" x="116" y="41">Fake 6502</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="119">/NMI</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="160" y="99">R/W</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="141">/RES</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="80">PHI2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="70">PHI0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="161" y="69">PHI1</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="66" y="100">SO</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="69" y="90">RDY</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="78" y="170">DATA In</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="68" y="129">/IRQ</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="150" y="170">DATA Out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="158" y="110">SYNC</text> <text dominant-baseline="central" font-family="SansSerif" font-size="10" text-anchor="middle" x="150" y="140">ADDR Out</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="140,120" x="50" y="90"/> <circ-port dir="in" pin="140,150" x="50" y="100"/> <circ-port dir="in" pin="140,230" x="50" y="120"/> <circ-port dir="in" pin="140,260" x="50" y="130"/> <circ-port dir="in" pin="140,290" x="50" y="140"/> <circ-port dir="in" pin="140,370" x="50" y="170"/> <circ-port dir="in" pin="140,470" x="50" y="180"/> <circ-port dir="in" pin="140,90" x="50" y="70"/> <circ-port dir="out" pin="830,380" x="180" y="170"/> <circ-port dir="out" pin="830,460" x="180" y="180"/> <circ-port dir="out" pin="840,120" x="180" y="80"/> <circ-port dir="out" pin="840,150" x="180" y="100"/> <circ-port dir="out" pin="840,180" x="180" y="110"/> <circ-port dir="out" pin="840,240" x="180" y="140"/> <circ-port dir="out" pin="840,90" x="180" y="70"/> </appear> <comp lib="0" loc="(140,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RDY"/> </comp> <comp lib="0" loc="(140,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SO"/> </comp> <comp lib="0" loc="(140,230)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_NMI"/> </comp> <comp lib="0" loc="(140,260)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_IRQ"/> </comp> <comp lib="0" loc="(140,290)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(140,370)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_in"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(140,470)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SkipRegOp"/> </comp> <comp lib="0" loc="(140,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(830,180)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(830,380)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(830,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Counter"/> <a name="output" val="true"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(840,120)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI2"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,150)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="RnW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,180)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="SYNC"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(840,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Addr"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(840,90)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PHI1"/> <a name="output" val="true"/> </comp> <comp lib="1" loc="(790,90)" name="NOT Gate"/> <comp lib="4" loc="(210,200)" name="ROM"> <a name="addrWidth" val="24"/> <a name="appearance" val="classic"/> <a name="contents">addr/data: 24 32 2 10 6 1f15 9 c017 98 1f15 6 10 a0d 1000 4 1004 4 100c 6 8 6 f15 2 214 2f1 116 6 16 1b3 116 6 16 210 1000 4 1004 4 100c 6 8 6 f15 100 1000 c 1004 c 8 c 100c 2 214 4f6 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 214 4f6 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 214 4f5 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 214 4f6 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 214 4f6 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 214 2f0 116 6 16 1b3 116 6 16 297 1000 c 1004 c 8 c 100c 2 1000 4 1004 4 100c 6 8 6 f15 100 1000 c 1004 c 8 c 100c 2 1000 4 1004 4 100c 6 8 6 f15 4c1 800c 8 80d 15 80f 8 2 174 ff08 8 809 15 80b 8 c90a 101 1004 8 805 15 807 8 6 101 1000 8 801 ec 8d10 b 1011 b 4012 b a913 b f15 7 f15 6a1e 214 2f0 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a af 1004 8 805 b7 1000 8 801 695b 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 67ca 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 163 ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 6725 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a af 1004 8 805 b7 1000 8 801 6756 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 67c7 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 be0a af 1004 8 805 b7 1000 8 801 67ca 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 1ca ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 66bd 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a af 1004 8 805 b7 1000 8 801 6758 214 4f6 116 6 16 1b3 116 6 16 328 800c 8 80d 13a ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 6797 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 179 ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 6711 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a af 1004 8 805 b7 1000 8 801 6752 214 4f6 116 6 16 1b3 116 6 16 340 800c 8 80d 13a ff08 8 809 15 80b 8 e20a af 1004 8 805 b7 1000 8 801 6785 214 4f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 f00a af 1004 8 805 b7 1000 8 801 67c9 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 10a 8 8 809 b7 1004 8 805 b7 1000 8 801 680f 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 1c3 ff08 8 809 15 80b 8 c90a af 1004 8 805 b7 1000 8 801 66c5 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a af 1004 8 805 b7 1000 8 801 6754 214 4f6 116 6 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 80b 8 e20a af 1004 8 805 b7 1000 8 801 6783 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 f00a af 1004 8 805 b7 1000 8 801 67cb 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 10a 8 8 809 b7 1004 8 805 b7 1000 8 801 680d 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 179 ff08 8 809 15 90b 8 400a af 1004 8 805 b7 1000 8 801 670e 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a af 1004 8 805 b7 1000 8 801 6756 214 4f6 116 6 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 670a af 1004 8 805 b7 1000 8 801 6786 214 4f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a af 1004 8 805 b7 1000 8 801 67c8 214 4f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 10a 8 8 809 b7 1004 8 805 b7 1000 8 801 6810 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 1c3 ff08 8 809 15 90b 8 400a af 1004 8 805 b7 1000 8 801 66c3 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a af 1004 8 805 b7 1000 8 801 6756 214 4f6 116 6 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 670a af 1004 8 805 b7 1000 8 801 6783 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a af 1004 8 805 b7 1000 8 801 67c8 214 4f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 10a 8 8 809 b7 1004 8 805 b7 1000 8 801 6810 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 790e 1a8 ff08 8 809 15 90b 8 930a af 1004 8 805 b7 1000 8 801 66de 214 4f6 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a af 1004 8 805 b7 1000 8 801 675c 214 4f6 116 6 16 1b3 116 6 16 33b 800c 8 80d 134 ff08 8 809 15 90b 8 c50a af 1004 8 805 b7 1000 8 801 678c 214 4f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 e00a af 1004 8 805 b7 1000 8 801 67d1 214 4f6 116 6 16 1b3 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a af 1004 8 805 b7 1000 8 801 67d1 214 4f6 116 6 16 1b3 116 6 16 341 100c 8 80d 134 ff08 8 809 15 a0b 8 1a0a af 1004 8 805 b7 1000 8 801 6786 214 4f5 116 6 16 1b3 116 6 16 2ef 100c 8 80d 134 ff08 8 809 15 a0b 8 3a0a af 1004 8 805 b7 1000 8 801 67da 214 4f5 116 6 16 1b3 116 6 16 2ef 100c 8 80d 134 ff08 8 809 15 a0b 8 5c0a af 1004 8 805 b7 1000 8 801 67dd 214 4f6 116 6 16 1b3 116 6 16 2ef 100c 8 80d 134 ff08 8 809 15 a0b 8 800a af 1004 8 805 b7 1000 8 801 67d7 214 4f6 116 6 16 1b3 116 6 16 2ef 100c 8 80d 104 8 8 809 b7 1004 8 805 b7 1000 8 801 681f 214 4f5 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 30e 193 ff08 8 809 15 90b 8 670a 23f 7404 8 805 15 907 8 ab06 101 1000 8 801 103 c10 a 3411 a c012 a 3f13 b f15 7 1f15 63cb 214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 af 1000 8 801 6703 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 af 1000 8 801 6778 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 ab06 af 1000 8 801 67bd 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d ea 8 8 809 10f 7804 8 805 14 ab06 af 1000 8 801 67c1 214 4f9 116 6 16 1b6 116 6 16 2f9 800c b 80d 103 8 8 809 106 7104 8 805 14 ab06 af 1000 8 801 67b2 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 ab06 af 1000 8 801 6815 214 4f9 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 ab06 af 1000 b 801 6811 214 4f8 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 b3 1000 8 801 67f0 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 ae06 af 1000 8 801 67ed 214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 6706 af 1000 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 650f 214 4fb 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 6706 af 1000 8 801 6703 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 6706 af 1000 8 801 677f 214 4f9 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 6706 af 1000 8 801 67bb 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 6706 af 1000 8 801 67bb 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 106 7104 8 805 14 6706 b3 1000 8 801 67bd 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 6706 b3 1000 8 801 680e 214 4f8 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 b3 1000 8 801 6811 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7304 8 805 14 6806 af 1000 8 801 67f0 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 af 1000 8 801 67ed 214 4fc 116 6 16 1b3 116 6 16 3a3 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 250 7300 8 801 15 903 8 ab02 121 c10 a 3411 e c012 a 3f13 b f15 7 1f15 6319 214 4fc 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 6701 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 6776 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 bd 7300 8 801 6772 214 4fa 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 18 ab06 b9 7300 8 801 6751 214 4f8 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 102 7104 8 805 14 ab06 b9 7300 8 801 675d 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a ea 7504 8 805 14 ab06 b9 7300 8 801 6775 214 4fa 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 8 801 6778 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 b9 7300 8 801 6753 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 ae06 b9 7300 8 801 6797 214 4f9 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 132 7300 8 801 15 903 8 6702 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6347 214 4f9 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 159 7604 8 805 15 907 8 2e06 b9 7300 8 801 667f 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 bd 7300 8 801 6769 214 4fa 116 6 16 1b6 116 6 16 2fd 800c 8 80d 10a 8 8 809 15d 7804 8 805 15 907 8 1d06 b9 7300 8 801 673c 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 1d06 b9 7300 8 801 67ae 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 7804 8 805 14 1d06 b9 7300 8 801 67c6 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e5 7804 8 805 14 1d06 b9 7300 8 801 6814 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6811 214 4fb 116 6 16 1b3 116 a 16 2f9 800c 8 80d ba 8 8 809 105 7804 8 805 14 1e06 b9 7300 8 801 67f4 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 2006 b9 7300 8 801 67f0 214 4f9 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 2306 132 7300 8 801 15 903 8 ab02 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 64fe 214 4f9 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 2006 b9 7300 8 801 66df 214 4f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 1e06 b9 7300 8 801 675a 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 6790 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 67ab 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 119 7804 8 805 14 1706 b9 7300 8 801 678d 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 67e8 214 4fa 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 67e2 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 67b8 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 2006 bd 7300 8 801 67ed 214 4f8 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a9 7404 8 805 15 907 8 4006 158 7300 8 801 15 903 8 4002 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6422 214 4fb 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a 115 7604 8 805 14 4006 113 7300 8 801 15 903 8 2e02 6653 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 4006 b9 7300 8 801 676f 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 4006 113 7300 8 801 15 903 8 1d02 673d 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d f3 8 8 809 10f 7804 8 805 14 4006 b9 7300 8 801 67b1 214 4fc 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 4006 b9 7300 8 801 67a0 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 67d0 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6809 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 4106 bd 7300 8 801 67e4 214 4f7 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 bd 7300 8 801 67e4 214 4fb 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 170 7404 8 805 15 907 8 6706 b9 7300 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 64cd 214 4fb 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 b9 7300 8 801 66fd 214 4fc 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 b9 7300 8 801 6778 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 6706 b9 7300 8 801 6776 214 4fa 116 6 16 1b6 116 6 16 2f9 810c b 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 6755 214 4f9 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 bd 7300 8 801 6781 214 4f9 116 6 16 1b6 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 bd 7300 8 801 6781 214 4f7 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 7804 8 805 14 6706 b9 7300 8 801 6781 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 675d 214 4fb 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 109 7804 8 805 14 6a06 b9 7300 8 801 67a5 214 4fc 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20c ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 167 7300 8 801 15 903 8 4002 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 63aa 214 4fc 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f6 7300 8 801 66a9 214 4fa 116 6 16 1b6 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 bd 7300 8 801 670c 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 6793 214 4fa 116 6 16 1b6 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 6406 bd 7300 8 801 67a8 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 136 7104 8 805 18 6106 b9 7300 8 801 6778 214 4f8 116 6 16 1b6 116 6 16 2fd 800c 8 80d b7 8 8 809 11e 7504 b 805 14 6406 b9 7300 8 801 67d8 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 6606 b9 7300 8 801 67d7 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12f 7304 8 805 14 6806 b9 7300 8 801 67cc 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7204 8 805 14 6a06 b9 7300 8 801 67e1 214 4fc 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 170 7404 8 805 15 907 8 e006 23f 3400 8 801 15 a03 8 3a02 10b a10 a 3411 a c012 e 3f13 b f15 7 1f15 6386 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 e006 e6 3600 8 801 14 3a02 66ba 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 e006 e6 3900 8 801 14 3a02 6732 214 4fb 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 e006 e6 3800 8 801 14 3a02 6775 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d e6 8 8 809 10f 7804 8 805 14 e006 107 3800 c 801 14 3a02 6759 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 e006 dd 3800 8 801 14 3a02 6794 214 4fa 116 6 16 1b6 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 e006 da 3800 8 801 14 3a02 67e4 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 7804 8 805 14 e006 da 3800 8 801 14 3a02 67df 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e106 fd 3800 8 801 14 3b02 679c 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e306 101 3800 8 801 14 3d02 679b 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 e606 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6595 214 4f7 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 e306 fd 3800 8 801 14 3d02 6690 214 4f8 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 e106 fd 3800 8 801 14 3b02 6709 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 18 3902 6728 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 dd06 10d 3800 8 801 14 3702 6747 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 da06 10a 3800 8 801 14 3402 6747 214 4f7 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 dd06 10a 3800 8 801 14 3702 6783 214 4fc 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6780 214 655 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 141 7704 8 805 14 e106 136 3700 8 801 14 3b02 65d0 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 e306 101 3700 8 801 14 3d02 6797 214 4fa 116 6 16 1b7 116 6 16 39f 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 e606 fd 3700 8 801 14 4002 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 6559 214 4ff 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 19 90b 8 d0a fd 7704 8 805 14 e306 fd 3700 8 801 18 3d02 6682 214 4fc 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 18 e106 fd 3700 8 801 14 3b02 66ff 214 65c 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10e 7704 8 805 14 df06 10a 3700 8 801 14 3902 6586 214 4ff 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10e 7704 8 805 14 dd06 10a 3700 8 801 14 3702 66e6 214 4fb 116 6 16 1b7 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 530a 132 7104 8 805 14 da06 12e 3100 8 801 14 3402 669e 214 4fb 116 6 16 1b6 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a 116 7504 8 805 14 dd06 11a 3500 8 801 14 3702 66cb 214 4fd 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a 116 7404 8 805 14 df06 11a 3400 8 801 14 3902 66cd 214 500 116 6 16 1b3 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 930a 127 7304 8 805 14 e106 123 3300 8 801 14 3b02 66b2 214 4fb 116 6 16 1b7 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 e306 10d 3200 8 801 14 3d02 672b 214 4fb 116 6 16 1b6 116 6 16 3a2 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 173 7404 8 805 15 907 8 ab06 173 3400 8 801 15 903 8 fc02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 638e 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 136 7604 8 805 14 ab06 e6 3600 8 801 14 fc02 666c 214 4f8 116 6 16 1b6 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 e6 3900 8 801 14 fc02 6733 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 e6 3800 8 801 14 fc02 677b 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 107 3800 8 801 14 fc02 6750 214 4f8 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 ab06 dd 3800 8 801 14 fc02 6795 214 4f7 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 ab06 da 3800 8 801 14 fc02 67e4 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 14 ab06 da 3800 8 801 14 fc02 67e4 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 ac06 fd 3800 8 801 14 fd02 679f 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 105 7804 8 805 18 ae06 fd 3800 8 801 14 ff02 679b 214 4f8 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 b106 101 3800 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 6596 214 4fa 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 ae06 fd 3800 8 801 14 ff02 668e 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 ac06 101 3800 8 801 14 fd02 6705 214 4f8 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6730 214 4fa 116 6 16 1b3 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 a806 10a 3800 8 801 14 f902 6748 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 112 7804 8 805 14 a506 10a 3800 8 801 14 f602 6738 214 4f8 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 112 7804 8 805 14 a806 10e 3800 8 801 14 f902 6783 214 4f7 116 6 16 1b6 116 6 16 2f9 800c 8 80d b7 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6781 214 4f9 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 ac06 136 3700 8 801 14 fd02 672d 214 4fa 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 679f 214 4f8 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7704 8 805 14 b106 101 3700 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6593 214 4fc 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7704 8 805 17 ae06 fd 3700 8 801 14 ff02 6688 214 4fc 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 66fa 214 4fb 116 6 16 1b6 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 672b 214 4fd 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7704 8 805 14 a806 10e 3700 8 801 14 f902 673e 214 4fa 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 112 7704 8 805 18 a506 10a 3700 8 801 14 f602 6730 214 4fb 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7704 8 805 14 a806 10a 3700 8 801 14 f902 6743 214 4f9 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 677c 214 4fb 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 11f 7704 8 805 14 ac06 11b 3700 8 801 14 fd02 6762 214 4fa 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 6797 214 4f9 116 6 16 1b6 116 6 16 3a3 810c c 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 b106 105 3700 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 654e 214 4f8 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a fd 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 6694 214 4f9 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 670b 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 129 7604 b 805 14 aa06 129 3600 8 801 14 fb02 66b1 214 4f7 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 10a 7604 8 805 14 a806 10a 3600 8 801 14 f902 66f1 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 a506 10a 3600 8 801 14 f602 66f1 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 a806 10e 3600 8 801 14 f902 66ee 214 4f7 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a 10e 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 66f0 214 4f7 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 117 7604 8 805 14 ac06 117 3600 8 801 14 fd02 66d9 214 4fa 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7604 8 805 14 ae06 fd 3600 8 801 14 ff02 674e 214 4fa 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 101 7604 8 805 14 b106 101 3600 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6475 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7604 8 805 14 ae06 101 3600 8 801 14 ff02 688d 214 2f5 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7604 8 805 14 ac06 fd 3600 8 801 14 fd02 68bd 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 692f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7604 8 805 14 a806 10a 3600 8 801 14 f902 694b 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d fd 8 8 809 136 7104 8 805 14 a506 132 3100 8 801 14 f602 68f3 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7504 8 805 14 a806 116 3500 8 801 14 f902 696b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 aa06 116 3400 8 801 14 fb02 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 12b 7304 8 805 14 ac06 127 3300 8 801 14 fd02 694d 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 7204 8 805 17 ae06 109 3200 8 801 14 ff02 6986 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 1d0 1000 8 801 ce c10 a 3411 a c012 a 3f13 b f15 7 1f15 6653 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 7604 8 805 14 ab06 fb 1000 8 801 68c0 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 ab06 af 1000 8 801 697d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 ab06 af 1000 8 801 69c5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d e6 8 8 809 113 7804 8 805 14 ab06 af 1000 8 801 69cb 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 106 7104 8 805 14 ab06 af 1000 8 801 69b3 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ee 7504 8 805 14 ab06 af 1000 8 801 6a1c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d ba 8 8 809 ee 7404 8 805 14 ab06 af 1000 8 801 6a19 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 ae06 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 6706 af 1000 8 801 129 c10 a 3411 a c012 a 3f13 b f15 7 1f15 671b 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 7604 8 805 14 6706 af 1000 8 801 690b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 7904 8 805 14 6706 af 1000 8 801 6980 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 6706 af 1000 8 801 69c5 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 6706 af 1000 8 801 69c2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 106 7104 8 805 14 6706 af 1000 8 801 69c8 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 ee 7504 8 805 14 6706 af 1000 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 af 1000 8 801 6a19 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 6806 b2 1000 8 801 69f8 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 b3 1000 8 801 69f2 214 2f5 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 147 7300 8 801 19 903 8 ab02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 662a 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 6905 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 b9 7300 8 801 6980 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 ab06 b9 7300 8 801 695c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a fe 7104 8 805 14 ab06 ca 7300 8 801 6955 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a e6 7504 8 805 14 ab06 bd 7300 8 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 7404 8 805 18 ab06 b9 7300 8 801 697a 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 10d 7304 8 805 14 ac06 b9 7300 8 801 695c 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 115 7204 8 805 14 ae06 b9 7300 8 801 699b 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 147 7300 8 801 15 903 8 6702 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6540 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 155 7604 8 805 15 907 8 2e06 bd 7300 8 801 6886 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 b9 7300 8 801 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 159 7804 8 805 15 907 8 1d06 bd 7300 8 801 6946 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 1d06 bd 7300 8 801 69b2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 1d06 ca 7300 8 801 69c2 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 bd 7300 8 801 6a16 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 18 1d06 b9 7300 8 801 6a19 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 1e06 b9 7300 8 801 69f8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 2006 b9 7300 8 801 69f8 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 2306 14b 7300 8 801 15 903 8 ab02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ed 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 2006 bd 7300 8 801 68e9 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 1e06 bc 7300 8 801 695e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 1c06 bd 7300 8 801 6994 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 1a06 bd 7300 8 801 69b0 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 11d 7804 8 805 14 1706 c6 7300 8 801 6989 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 69e9 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 69e9 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 69c2 214 2f2 116 6 16 1b3 116 a 16 2f9 800c 8 80d bb 8 8 809 105 7704 8 805 14 2006 b9 7300 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a9 7404 8 805 15 907 8 4006 16d 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6617 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 123 7604 8 805 14 4006 128 7300 8 801 15 903 8 2e02 6839 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 4006 c4 7300 8 801 696e 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 c 805 14 4006 124 7300 8 801 15 903 8 1d02 6933 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 4006 b9 7300 8 801 69b6 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 4006 b9 7300 8 801 69a7 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f3 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 69da 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6a10 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7304 8 805 14 4106 b9 7300 8 801 69ef 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 b9 7300 8 801 69ec 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 6706 b9 7300 8 801 128 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d8 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 7604 8 805 14 6706 b9 7300 8 801 6902 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 7904 8 805 14 6706 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 7804 8 805 14 6706 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 6959 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 c0 7300 8 801 6983 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 b9 7300 8 801 698c 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 bd 7300 8 801 6964 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7804 8 805 14 6a06 bd 7300 8 801 69a7 214 2f1 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 17c 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659d 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f2 7300 8 801 68b1 214 2f3 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 8 801 691d 214 2f3 116 6 16 1b3 116 6 16 32c 800c 8 80d 10e 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 696b 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 112 7804 8 805 14 6406 b9 7300 8 801 69b3 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d fd 8 8 809 136 7104 8 805 14 6106 c6 7300 8 801 697a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 7504 8 805 14 6406 bd 7300 8 801 69a3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 11e 7404 8 805 14 6606 bd 7300 8 801 69e0 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 12b 7304 8 805 14 6806 bc 7300 8 801 69d1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 b9 7300 8 801 69e9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 c90a 170 7404 8 805 15 807 8 f006 20a 3400 8 801 15 903 8 1d02 104 810 a 3411 a f012 a 3e13 b f15 7 1f15 65d4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 80b 8 d50a e6 7604 8 805 14 f006 e6 3600 8 801 14 1d02 68cb 214 2f1 116 6 16 1b7 116 6 16 340 800c 8 80d 134 ff08 8 809 15 80b 8 e20a ea 7904 8 805 14 f006 e6 3900 8 801 14 1d02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 f00a e6 7804 8 805 14 f006 e6 3800 8 801 14 1d02 6940 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 80b 8 fe0a 107 7804 8 805 14 f006 107 3800 8 801 14 1d02 68fe 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a da 7804 8 805 14 f006 da 3800 8 801 18 1d02 6957 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 695b 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a de 7804 8 805 14 f006 da 3800 8 801 14 1d02 6957 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 6913 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 104 8 8 809 109 7804 8 805 14 f306 fd 3800 8 801 14 2002 6955 214 2f1 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 f606 fd 3800 8 801 14 2302 c6 810 a 3411 a f012 a 3e13 b f15 7 1f15 66b2 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 80b 8 d50a fd 7804 8 805 14 f306 fd 3800 8 801 14 2002 689e 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 80b 8 e20a 101 7804 8 805 14 f106 fd 3800 8 801 14 1e02 68cd 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 f00a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68f8 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 19 80b 8 fe0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 68f8 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a 10a 7804 8 805 14 ea06 10a 3800 8 801 14 1702 68fb 214 2f2 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 1d0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 68fb 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10a 7804 8 805 14 ef06 10e 3800 8 801 14 1c02 68f7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 136 7704 8 805 14 f106 136 3700 8 801 14 1e02 68a1 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 104 8 8 809 109 7704 8 805 14 f306 fd 3700 8 801 14 2002 6955 214 2f1 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d8 ff08 8 809 15 90b 8 400a fd 7704 8 805 14 f606 101 3700 8 801 14 2302 c6 d10 a 3411 a e012 a 3f13 b f15 7 1f15 66fb 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 c 809 15 90b 8 530a fd 7704 8 805 14 f306 fd 3700 8 801 14 2002 6893 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 670a fd 7704 8 805 14 f106 101 3700 8 801 14 1e02 68c6 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 7d0a 10a 7704 8 805 14 ef06 10e 3700 8 801 14 1c02 68ea 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a 10e 7704 8 805 14 ed06 10a 3700 8 801 14 1a02 68f3 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 ab0a 12e 7104 8 805 14 ea06 132 3100 8 801 14 1702 68a7 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 c50a 116 7504 8 805 14 ed06 11a 3500 8 801 14 1a02 68d5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 11a 7404 8 805 14 ef06 116 3400 8 801 14 1c02 68d8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a 123 7304 8 805 14 f106 123 3300 c 801 14 1e02 68bc 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 111 7204 8 805 14 f306 10d 3200 8 801 14 2002 6932 214 2f2 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 790e 225 ff08 8 809 15 90b 8 930a 170 7404 8 805 15 807 8 fe06 174 3400 8 801 15 903 8 4002 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 65b1 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 12d 7604 8 805 14 fe06 12d 3600 8 801 14 4002 683b 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a e6 7904 8 805 14 fe06 e6 3900 8 801 14 4002 68fe 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a e6 7804 8 805 14 fe06 e6 3800 8 801 14 4002 6940 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a 10b 7804 8 805 14 fe06 107 3800 8 801 14 4002 68fb 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 a0b 8 1a0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6958 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6955 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6959 214 2f0 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4102 6913 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 109 7804 8 805 14 ff06 fd 3800 8 801 14 4302 6952 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 209 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 ff06 101 3800 8 801 14 4602 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 66c1 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7804 8 805 14 ff06 101 3800 8 801 14 4302 6892 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4102 690a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10e 7804 8 805 14 f806 10a 3800 8 801 14 3a02 67d5 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 687d 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 e20a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 68ef 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 136 7704 8 805 14 ff06 13a 3700 8 801 14 4102 6897 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 109 7704 8 805 14 ff06 101 3700 8 801 14 4302 6949 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 155 8 8 809 109 7704 8 805 14 ff06 fd 3700 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6810 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 10c 7704 8 805 14 ff06 fd 3700 8 801 14 4302 694d 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 ff06 fd 3700 8 801 14 4102 699e 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7704 8 805 14 fd06 10e 3700 8 801 14 3f02 697d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7704 8 805 14 fb06 10e 3700 8 801 14 3d02 6983 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a 10a 7704 8 805 14 f806 10e 3700 8 801 14 3a02 6874 214 2f6 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c e 132 ff08 8 809 15 80b 8 d50a 10a 7704 8 805 14 fb06 10e 3700 8 801 14 3d02 6872 214 2f4 116 6 16 1b3 116 6 16 301 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10e 7704 8 805 14 fd06 10a 3700 8 801 14 3f02 68ea 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 11b 7704 8 805 14 ff06 117 3700 8 801 14 4102 68d2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 109 7704 8 805 14 ff06 fd 3700 c 801 14 4302 6941 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 19 90b 8 400a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4602 ca 910 a 3411 a c012 a 3f13 b f15 7 1f15 66eb 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 101 7704 8 805 14 ff06 101 3700 8 801 14 4302 688f 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 8 809 15 90b 8 670a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4102 690a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 129 7604 8 805 14 fd06 129 3600 8 801 14 3f02 68b3 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 693a 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10e 7604 8 805 14 f806 10a 3600 8 801 14 3a02 67d2 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 687d 214 2f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 117 7604 8 805 14 ff06 117 3600 8 801 14 4102 68d7 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 109 7604 8 805 14 ff06 101 3600 8 801 14 4302 694c 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 20c ff08 8 809 15 90b 8 930a 101 7604 8 805 14 ff06 fd 3600 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66c9 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 105 7604 8 805 14 ff06 fd 3600 8 801 14 4302 688a 214 2f2 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 101 7604 8 805 14 ff06 fd 3600 8 801 14 4102 68c3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 10a 7604 8 805 14 fd06 10a 3600 8 801 18 3f02 68ec 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d 137 ff08 8 809 15 90b 8 fc0a 10a 7604 8 805 14 fb06 10e 3600 8 801 14 3d02 68ed 214 2f3 116 6 16 1b6 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a 132 7104 8 805 14 f806 12e 3100 8 801 14 3a02 68a8 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a 116 7504 8 805 14 fb06 116 3500 8 801 14 3d02 68db 214 2f6 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 5c0a 116 7404 8 805 14 fd06 11a 3400 8 801 14 3f02 68d5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a 127 7304 8 805 14 ff06 123 3300 8 801 14 4102 68c0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 119 7204 8 805 14 ff06 109 3200 8 801 14 4302 6932 214 2f6 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f c 30e 209 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 ab06 158 1000 8 801 18 4602 157 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6552 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 f5 1000 8 801 14 4302 68b2 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 f5 1000 8 801 14 4102 6927 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 ab06 10a 1000 8 801 14 3f02 6957 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 7804 8 805 14 ab06 102 1000 8 801 14 3d02 695a 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 ab06 102 1000 8 801 14 3a02 694e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7504 8 805 14 ab06 102 1000 8 801 14 3d02 69b4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 ab06 106 1000 8 801 14 3f02 69b1 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7304 8 805 14 ac06 113 1000 8 801 14 4102 697e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 ae06 f5 1000 8 801 14 4302 6999 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 6706 f5 1000 8 801 14 4602 126 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66c9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 6706 f5 1000 8 801 14 4302 68af 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 6706 f5 1000 8 801 14 4102 692a 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10d 8 8 809 ee 7804 8 805 14 6706 102 1000 8 801 14 3f02 6960 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 6706 106 1000 8 801 14 3d02 6956 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 7104 8 805 14 6706 106 1000 8 801 14 3a02 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 6706 106 1000 8 801 14 3d02 6975 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 6706 106 1000 8 801 14 3f02 69b1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7304 8 805 14 6806 10f 1000 8 801 14 4102 6981 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 f5 1000 8 801 14 4302 699c 214 2f3 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f c 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 ab06 265 7300 8 801 15 903 8 ab02 121 c10 e 3411 a c012 a 3f13 b f15 7 1f15 650f 214 2f2 116 6 16 1b3 116 6 16 35c 810c c 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 ab06 b9 7300 8 801 690b 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 ab06 bd 7300 8 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 7804 8 805 18 ab06 b9 7300 8 801 695c 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 102 7104 8 805 14 ab06 c6 7300 8 801 6953 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a ea 7504 8 805 14 ab06 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 8 801 697d 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 b9 7300 8 801 695c 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 ae06 b9 7300 8 801 699e 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 19e 7404 8 805 15 907 8 4006 147 7300 8 801 15 903 8 6702 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 159 7604 8 805 15 907 8 2e06 b9 7300 8 801 6889 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 bd 7300 8 801 696d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 15d 7804 8 805 15 907 8 1d06 b9 7300 8 801 6944 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 7804 8 805 14 1d06 b9 7300 8 801 69b6 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 e6 7804 8 805 14 1d06 c6 7300 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 105 7804 8 805 14 1e06 b9 7300 8 801 69fb 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 2006 b9 7300 8 801 69f7 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 2306 147 7300 8 801 15 903 8 ab02 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ed 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 2006 b9 7300 8 801 68e7 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 1e06 b9 7300 8 801 695f 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 116 7804 8 805 14 1c06 b9 7300 8 801 6998 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 1a06 b9 7300 8 801 69b3 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 107 8 8 809 119 7804 8 805 14 1706 c6 7300 8 801 698c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 69ec 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 69ef 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 1e06 b9 7300 8 801 69bf 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 2006 bd 7300 8 801 69f7 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 1a8 7404 8 805 15 907 8 4006 16d 7300 8 801 15 903 8 4002 125 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6612 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b c 7d0a 115 7604 8 805 14 4006 128 7300 8 801 15 903 8 2e02 6846 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e9 7904 8 805 14 4006 c0 7300 8 801 6971 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 7804 8 805 14 4006 124 7300 8 801 15 903 8 1d02 6930 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 4006 b9 7300 8 801 69b9 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 106 7104 8 805 14 4006 b9 7300 8 801 69ad 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 7504 8 805 14 4006 b9 7300 8 801 69d7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 7404 8 805 14 4006 b9 7300 8 801 6a0d 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 7304 8 805 14 4106 bd 7300 8 801 69ec 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 4306 bd 7300 8 801 69ec 214 2f5 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 170 7404 8 805 15 907 8 6706 b9 7300 8 801 12d c10 a 3411 a c012 a 3f13 b f15 7 1f15 66cf 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 b9 7300 8 801 6908 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 b9 7300 8 801 6980 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a e6 7804 8 805 14 6706 b9 7300 8 801 697c 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 6706 b9 7300 8 801 695f 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 7804 8 805 14 6706 c4 7300 8 801 697f 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 bd 7300 8 801 698c 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 7804 8 805 14 6706 b9 7300 8 801 6983 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 6965 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 104 8 8 809 109 7804 8 805 14 6a06 b9 7300 8 801 69aa 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 17c 7300 8 801 15 903 8 4002 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659d 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 135 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 6a06 f2 7300 c 801 68b0 214 2f2 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 c 801 6916 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 6606 b9 7300 8 801 699b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 6406 bd 7300 8 801 69af 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 136 7104 8 805 18 6106 c6 7300 8 801 6971 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 122 7504 8 805 14 6406 b9 7300 8 801 6992 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 6606 b9 7300 8 801 69dd 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12f 7304 8 805 14 6806 b9 7300 8 801 69d1 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 115 7204 8 805 14 6a06 b9 7300 8 801 69ef 214 2f2 116 6 16 1b3 116 6 16 35d 800c c 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 170 7404 8 805 15 907 8 e006 23e 3400 8 801 15 a03 8 3a02 10b a10 a 3411 a c012 a 3f13 f f15 7 1f15 658e 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 e006 e6 3600 8 801 14 3a02 68c2 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 e006 e6 3900 8 801 14 3a02 693a 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 e006 e6 3800 8 801 14 3a02 697f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 e006 10b 3800 8 801 14 3a02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 e006 de 3800 8 801 14 3a02 699c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 e006 da 3800 8 801 14 3a02 69e8 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 7804 8 805 14 e006 da 3800 8 801 14 3a02 69e5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e106 fd 3800 8 801 14 3b02 69a6 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 e306 101 3800 8 801 14 3d02 699f 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7804 8 805 14 e606 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67a0 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 e306 fd 3800 8 801 14 3d02 6895 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 e106 fd 3800 8 801 14 3b02 690d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6937 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 112 7804 8 805 14 dd06 10e 3800 8 801 14 3702 6951 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 116 7804 8 805 14 da06 10a 3800 8 801 14 3402 693a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 dd06 10a 3800 8 801 14 3702 6952 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 df06 10a 3800 8 801 14 3902 6988 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 e106 13a 3700 8 801 14 3b02 6930 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 e306 101 3700 8 801 14 3d02 699f 214 2f2 116 6 16 1b7 116 6 16 39f 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 e606 fd 3700 8 801 14 4002 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 675f 214 2f7 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 19 90b 8 d0a fd 7704 8 805 14 e306 fd 3700 8 801 18 3d02 688d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 18 e106 fd 3700 8 801 14 3b02 6906 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a 10a 7704 8 805 14 df06 10e 3700 8 801 14 3902 68ed 214 2f6 116 6 16 1b3 116 6 16 300 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10d 7704 8 805 14 dd06 10a 3700 8 801 14 3702 68ee 214 2f3 116 6 16 1b7 116 6 16 301 810c 8 80d 134 ff08 8 809 15 90b 8 530a 132 7104 8 805 14 da06 12e 3100 8 801 14 3402 68a6 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a 116 7504 8 805 14 dd06 11a 3500 8 801 14 3702 68d5 214 2f7 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a 116 7404 8 805 14 df06 11a 3400 8 801 14 3902 68d2 214 2f7 116 6 16 1b3 116 6 16 300 810c 8 80d 134 ff08 8 809 15 90b 8 930a 127 7304 8 805 14 e106 123 3300 8 801 14 3b02 68bb 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 108 8 8 809 111 7204 8 805 14 e306 10d 3200 8 801 14 3d02 6933 214 2f5 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 174 3400 8 801 15 903 8 fc02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 657a 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 136 7604 8 805 14 ab06 e6 3600 8 801 14 fc02 6874 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 e6 3900 8 801 14 fc02 693d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 e6 3800 8 801 14 fc02 697c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 107 3800 8 801 14 fc02 695c 214 2f0 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 ab06 de 3800 8 801 14 fc02 699a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 e6 7804 8 805 14 ab06 da 3800 8 801 14 fc02 69e8 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 ab06 da 3800 8 801 14 fc02 69eb 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 ac06 fd 3800 8 801 14 fd02 69a4 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 105 7804 8 805 14 ae06 101 3800 8 801 14 ff02 69a3 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 b106 101 3800 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 679d 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 ae06 fd 3800 8 801 14 ff02 6898 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a fd 7804 8 805 14 ac06 101 3800 8 801 14 fd02 6907 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 6937 214 2f1 116 a 16 1b3 116 6 16 2f9 800c 8 80d f4 8 8 809 112 7804 8 805 14 a806 10a 3800 8 801 14 f902 694f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 112 7804 8 805 14 a506 10a 3800 8 801 14 f602 693f 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 112 7804 8 805 14 a806 10e 3800 8 801 14 f902 6988 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 116 7804 8 805 14 aa06 10a 3800 8 801 14 fb02 698b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 7704 8 805 14 ac06 136 3700 8 801 14 fd02 6931 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 69aa 214 2f1 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 7704 8 805 14 b106 101 3700 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6797 214 2f7 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a fd 7704 8 805 18 ae06 fd 3700 8 801 14 ff02 688a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 6908 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 116 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 692f 214 2f7 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 7704 8 805 14 a806 10e 3700 8 801 14 f902 6944 214 2f4 116 6 16 1b3 116 9 16 2fd 800c 8 80d 103 8 8 809 112 7704 8 805 18 a506 10a 3700 8 801 14 f602 6938 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 116 7704 8 805 14 a806 10a 3700 8 801 14 f902 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d ba 8 8 809 112 7704 8 805 14 aa06 10a 3700 8 801 14 fb02 6984 214 2f4 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 11f 7704 8 805 14 ac06 11b 3700 8 801 14 fd02 6968 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 109 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 699e 214 2f2 116 6 16 1b7 116 6 16 3a2 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a fd 7704 8 805 14 b106 105 3700 8 801 14 ff02 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 6752 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a fd 7704 8 805 14 ae06 fd 3700 8 801 14 ff02 689b 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a fd 7704 8 805 14 ac06 fd 3700 8 801 14 fd02 6916 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 129 7604 b 805 14 aa06 129 3600 8 801 14 fb02 68b6 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 134 ff08 c 809 15 90b 8 400a 10a 7604 8 805 14 a806 10a 3600 8 801 14 f902 68f8 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 a506 10a 3600 8 801 14 f602 68f8 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a 10a 7604 8 805 14 a806 10a 3600 c 801 14 f902 68fb 214 2f0 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a 10e 7604 8 805 14 aa06 10a 3600 8 801 14 fb02 68f2 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 117 7604 8 805 14 ac06 117 3600 8 801 14 fd02 68dd 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7604 8 805 14 ae06 fd 3600 8 801 14 ff02 6955 214 2f3 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 101 7604 8 805 14 b106 101 3600 8 801 14 ff02 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 6680 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7604 8 805 14 ae06 101 3600 8 801 14 ff02 6889 214 2f7 116 6 16 1b3 116 6 16 342 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7604 8 805 14 ac06 101 3600 8 801 14 fd02 68bd 214 2f5 116 6 16 1b3 116 9 16 2fd 800c 8 80d 10a 8 8 809 112 7604 8 805 18 aa06 10a 3600 8 801 14 fb02 692f 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7604 8 805 14 a806 10a 3600 8 801 14 f902 694a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 101 8 8 809 136 7104 8 805 14 a506 132 3100 8 801 14 f602 68f0 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d 103 8 8 809 11e 7504 8 805 14 a806 11a 3500 8 801 14 f902 691d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 122 7404 8 805 14 aa06 116 3400 8 801 14 fb02 696b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 12b 7304 8 805 14 ac06 123 3300 8 801 14 fd02 6954 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 111 7204 8 805 14 ae06 10d 3200 8 801 14 ff02 6980 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 7404 8 805 15 907 8 ab06 1d0 1000 8 801 ce c10 a 3411 a c012 a 3f13 b f15 7 1f15 6657 214 2f3 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 7604 8 805 14 ab06 ff 1000 8 801 68bc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 ab06 b3 1000 8 801 697f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 ab06 b3 1000 8 801 69c5 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 7804 8 805 14 ab06 b2 1000 8 801 69bc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 ab06 af 1000 8 801 69b3 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7504 8 805 14 ab06 af 1000 8 801 6a19 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7404 8 805 14 ab06 af 1000 8 801 6a19 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7304 8 805 14 ac06 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7204 8 805 14 ae06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 7404 8 805 15 907 8 6706 af 1000 8 801 129 c10 a 3411 a c012 a 3f13 b f15 7 1f15 671a 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 7604 c 805 14 6706 af 1000 8 801 6907 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 18 6706 af 1000 8 801 6980 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 7804 8 805 14 6706 af 1000 8 801 69c5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 113 7804 8 805 14 6706 af 1000 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 6706 af 1000 8 801 69b6 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 ee 7504 8 805 14 6706 af 1000 8 801 69e0 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 7404 8 805 14 6706 af 1000 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 111 7304 8 805 14 6806 af 1000 8 801 69f5 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 af 1000 8 801 69f8 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 178 7404 8 805 15 907 8 ab06 147 7300 8 801 15 903 8 ab02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 662d 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 7604 8 805 14 ab06 b9 7300 8 801 6902 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 7904 8 805 14 ab06 b9 7300 8 801 697d 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e9 7804 8 805 14 ab06 b9 7300 8 801 697d 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 7804 8 805 14 ab06 b9 7300 8 801 695c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a fe 7104 8 805 14 ab06 c6 7300 8 801 6956 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a e6 7504 8 805 14 ab06 b9 7300 8 801 6980 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 7404 8 805 14 ab06 b9 7300 c 801 6979 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a 109 7304 8 805 14 ac06 bd 7300 8 801 6958 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 111 7204 8 805 14 ae06 bd 7300 8 801 699b 214 2f1 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 19a 7404 8 805 15 907 8 4006 14b 7300 8 801 15 903 8 6702 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6528 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 155 7604 8 805 15 907 8 2e06 b9 7300 8 801 688a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a ed 7904 8 805 14 2e06 b9 7300 8 801 696e 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 159 7804 8 805 15 907 8 1d06 b9 7300 8 801 694a 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d f4 8 8 809 10f 7804 8 805 14 1d06 b9 7300 8 801 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 7804 8 805 14 1d06 c6 7300 8 801 69c2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 b9 7300 8 801 6a1c 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 e2 7804 8 805 14 1d06 b9 7300 c 801 6a1b 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 7804 8 805 14 1e06 bd 7300 8 801 69f5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7804 8 805 14 2006 b9 7300 8 801 69f8 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a fd 7804 8 805 14 2306 147 7300 8 801 15 903 8 ab02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ea 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 7804 8 805 14 2006 b9 7300 8 801 68ed 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a fd 7804 8 805 14 1e06 b9 7300 8 801 695f 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 7804 8 805 14 1c06 b9 7300 8 801 699b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 112 7804 8 805 14 1a06 b9 7300 8 801 69b3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 119 7804 8 805 14 1706 ca 7300 8 801 6988 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 14 1a06 bd 7300 8 801 69e9 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 112 7804 8 805 18 1c06 b9 7300 8 801 69e9 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 142 7704 8 805 14 1e06 b9 7300 8 801 69bf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 7704 8 805 14 2006 b9 7300 8 801 69f8 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 1a5 7404 8 805 15 907 8 4006 171 7300 8 801 15 903 8 4002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6615 214 2f3 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 11f 7604 8 805 14 4006 12b 7300 8 801 15 903 8 2e02 683c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 7904 8 805 14 4006 c0 7300 8 801 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 7804 8 805 14 4006 127 7300 8 801 15 903 8 1d02 6932 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 7804 8 805 14 4006 bd 7300 8 801 69b3 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 10a 7104 8 805 14 4006 b9 7300 8 801 69aa 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 f1 7504 8 805 14 4006 b9 7300 8 801 69d7 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 7404 8 805 14 4006 b9 7300 8 801 6a10 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 115 7304 8 805 14 4106 b9 7300 8 801 69ec 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 111 7204 8 805 14 4306 b9 7300 8 801 69ec 214 2f3 116 6 16 1b7 116 6 16 3a2 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 7404 8 805 15 907 8 6706 b9 7300 8 801 128 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 7604 8 805 14 6706 bd 7300 8 801 6907 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 7904 8 805 14 6706 bd 7300 8 801 697d 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 7804 8 805 14 6706 b9 7300 8 801 697a 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 10b 7804 8 805 14 6706 b9 7300 8 801 695c 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a de 7804 8 805 14 6706 c0 7300 8 801 6983 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a da 7804 8 805 14 6706 b9 7300 8 801 6989 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 7804 8 805 14 6806 b9 7300 8 801 6965 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 7804 8 805 14 6a06 b9 7300 8 801 69ac 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a fd 7804 8 805 14 6d06 178 7300 8 801 15 903 8 4002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659c 214 2f3 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 101 7804 8 805 14 6a06 f2 7300 8 801 68ae 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a 101 7804 8 805 14 6806 b9 7300 8 801 6920 214 2f5 116 6 16 1b3 116 6 16 336 800c 8 80d 10a 8 8 809 116 7804 8 805 14 6606 b9 7300 8 801 695c 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 116 7804 8 805 14 6406 b9 7300 8 801 69b3 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d fd 8 8 809 136 7104 8 805 14 6106 c6 7300 8 801 6977 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 106 8 8 809 11e 7504 8 805 14 6406 b9 7300 8 801 6998 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 11e 7404 8 805 14 6606 b9 7300 8 801 69e0 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 12b 7304 8 805 14 6806 b9 7300 8 801 69d4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 7204 8 805 14 6a06 bd 7300 8 801 69ec 214 2f1 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 790e 132 ff08 8 809 15 80b 8 c90a 174 7404 8 805 15 807 8 f006 206 3400 c 801 15 903 8 1d02 104 810 a 3411 a f012 a 3e13 b f15 7 1f15 65cb 214 2f4 116 6 16 1b3 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a e6 7604 8 805 14 f006 e6 3600 8 801 14 1d02 68c2 214 2f0 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a e6 7904 8 805 14 f006 ea 3900 8 801 14 1d02 68f4 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a e6 7804 8 805 14 f006 e6 3800 8 801 14 1d02 693a 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 10f 7804 8 805 14 f006 10b 3800 8 801 14 1d02 693c 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 6838 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 68da 214 2f0 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a da 7804 8 805 14 f006 da 3800 8 801 14 1d02 6910 214 2f3 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 690d 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 105 7804 8 805 14 f306 101 3800 8 801 14 2002 6951 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a fd 7804 8 805 14 f606 fd 3800 8 801 14 2302 c9 810 a 3411 a f012 a 3e13 b f15 7 1f15 66f7 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a fd 7804 8 805 14 f306 fd 3800 8 801 14 2002 6895 214 2f1 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 7804 8 805 14 f106 fd 3800 8 801 14 1e02 68c8 214 2f4 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13d ff08 8 809 15 90b 8 7d0a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68f5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 112 7804 8 805 14 ed06 10e 3800 8 801 14 1a02 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1a8 ff08 8 809 15 90b 8 930a 10a 7804 8 805 14 ea06 10a 3800 8 801 14 1702 6808 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 10a 7804 8 805 14 ed06 10a 3800 8 801 14 1a02 6886 214 2f0 116 6 16 1b3 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 10a 7804 8 805 14 ef06 10a 3800 8 801 14 1c02 68b0 214 2f5 116 6 16 1b3 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 136 7704 8 805 14 f106 136 3700 8 801 14 1e02 68a1 214 2f0 116 6 16 1b3 116 6 16 2fc 800c 8 80d 104 8 8 809 105 7704 8 805 14 f306 101 3700 8 801 14 2002 6957 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1f3 ff08 8 809 15 80b 8 c90a fd 7704 8 805 14 f606 fd 3700 8 801 14 2302 c9 d10 a 3411 a e012 a 3f13 b f15 7 1f15 66dd 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7704 8 805 14 f306 fd 3700 8 801 14 2002 688d 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 c 809 15 80b 8 e20a fd 7704 8 805 14 f106 fd 3700 8 801 14 1e02 68c0 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 10a 7704 8 805 14 ef06 10d 3700 8 801 14 1c02 68ea 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d 10a 8 8 809 112 7704 8 805 14 ed06 10e 3700 8 801 14 1a02 692f 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 12e 7104 8 805 14 ea06 131 3100 8 801 14 1702 6781 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 116 7504 8 805 14 ed06 11a 3500 8 801 14 1a02 685d 214 2f5 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 90b 8 670a 119 7404 8 805 14 ef06 116 3400 8 801 14 1c02 688a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 127 7304 8 805 14 f106 123 3300 8 801 14 1e02 68ba 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 111 7204 8 805 14 f306 109 3200 8 801 14 2002 6933 214 2f5 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 174 7404 8 805 15 807 8 fe06 174 3400 8 801 15 903 8 4002 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 65f2 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 12c 7604 8 805 14 fe06 128 3600 8 801 14 4002 683e 214 2f0 116 6 16 1b7 116 6 16 33f 800c 8 80d 13a ff08 8 809 19 90b 8 670a e6 7904 8 805 14 fe06 e6 3900 8 801 14 4002 68f5 214 2f3 116 6 16 1b3 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a e6 7804 8 805 14 fe06 e6 3800 8 801 14 4002 6937 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 10f 7804 8 805 14 fe06 107 3800 8 801 14 4002 6940 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 c 809 15 90b 8 930a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6802 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 68e3 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a da 7804 8 805 14 fe06 da 3800 8 801 14 4002 6916 214 2f3 116 6 16 1b3 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a fd 7804 8 805 14 ff06 101 3800 8 801 14 4102 68c8 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 109 7804 8 805 14 ff06 101 3800 8 801 14 4302 694c 214 2f0 116 6 16 1b7 116 6 16 39f 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4602 ca 910 a 3411 a c012 a 3f13 b f15 7 1f15 6676 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 101 7804 8 805 14 ff06 fd 3800 8 801 14 4302 688f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a fd 7804 8 805 14 ff06 101 3800 8 801 14 4102 690a 214 2f1 116 6 16 1b6 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 67d5 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 7804 8 805 14 fb06 10a 3800 8 801 14 3d02 687d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 f806 10a 3800 8 801 14 3a02 68f2 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 be0a 10a 7804 8 805 14 fb06 10e 3800 8 801 14 3d02 68ef 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1e4 ff08 8 809 15 80b 8 c90a 10a 7804 8 805 14 fd06 10a 3800 8 801 14 3f02 67cf 214 2f1 116 a 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 136 7704 8 805 14 ff06 136 3700 8 801 14 4102 6823 214 2f3 116 6 16 1b3 116 6 16 336 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4302 68d1 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 105 7704 8 805 14 ff06 fd 3700 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66f2 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 101 7704 8 805 14 ff06 101 3700 8 801 14 4302 688a 214 2f4 116 6 16 1b3 116 6 16 347 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4102 68bd 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 10e 7704 8 805 14 fd06 10a 3700 8 801 14 3f02 68ea 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 7704 8 805 14 fb06 10a 3700 8 801 18 3d02 692c 214 2f4 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10d 7704 8 805 14 f806 10a 3700 8 801 14 3a02 67cd 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 c 809 15 80b 8 d50a 10a 7704 8 805 14 fb06 10a 3700 8 801 14 3d02 6878 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 13e ff08 8 809 15 80b 8 e20a 10a 7704 8 805 14 fd06 10e 3700 8 801 14 3f02 68a5 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 117 7704 8 805 14 ff06 11b 3700 8 801 14 4102 68cc 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 10d 7704 8 805 14 ff06 fd 3700 8 801 14 4302 6944 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dc ff08 8 809 15 90b 8 400a 101 7704 8 805 14 ff06 101 3700 8 801 14 4602 c6 910 a 3411 a c012 a 3f13 b f15 7 1f15 66ec 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 101 7704 8 805 14 ff06 fd 3700 8 801 14 4302 6895 214 2f3 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 7704 8 805 14 ff06 fd 3700 8 801 14 4102 68c5 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 129 7604 8 805 14 fd06 12d 3600 8 801 14 3f02 68b3 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 6937 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10a 7604 8 805 14 f806 10a 3600 8 801 14 3a02 67d2 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10a 7604 8 805 14 fb06 10e 3600 8 801 14 3d02 687c 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 13a ff08 8 809 15 90b 8 670a 10e 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68a7 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13a ff08 c 809 15 90b 8 7d0a 117 7604 8 805 14 ff06 117 3600 8 801 14 4102 68da 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 109 7604 8 805 14 ff06 fd 3600 8 801 14 4302 694c 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a 105 7604 8 805 14 ff06 fd 3600 8 801 14 4602 c6 d10 a 3411 a f012 a 3e13 b f15 7 1f15 66c5 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a 101 7604 8 805 14 ff06 101 3600 8 801 14 4302 688c 214 2f6 116 6 16 1b3 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 c50a fd 7604 8 805 14 ff06 101 3600 8 801 14 4102 68c0 214 2f5 116 6 16 1b3 116 6 16 301 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 10e 7604 8 805 14 fd06 10a 3600 8 801 14 3f02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 116 7604 8 805 14 fb06 10a 3600 8 801 14 3d02 6935 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 23c ff08 8 809 15 90b 8 930a 132 7104 8 805 14 f806 12e 3100 8 801 14 3a02 6722 214 2f4 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 11a 7504 8 805 14 fb06 116 3500 8 801 14 3d02 6863 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 19 90b 8 c50a 116 7404 8 805 14 fd06 116 3400 8 801 14 3f02 6898 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 e00a 123 7304 8 805 14 ff06 127 3300 8 801 14 4102 6875 214 2f5 116 6 16 1b3 116 6 16 300 800c 8 80d 104 8 8 809 115 7204 8 805 14 ff06 10d 3200 8 801 14 4302 6932 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 208 ff08 8 809 15 90b 8 670a 197 7104 8 805 19 807 8 fe06 197 3100 8 801 15 903 8 4002 111 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6533 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a c7 7104 8 805 14 fe06 cb 3100 8 801 14 4002 68fc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a c7 7104 8 805 14 fe06 cb 3100 8 801 14 4002 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 cf 7104 8 805 14 fe06 cb 3100 8 801 14 4002 69b7 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d e6 8 8 809 cf 7104 8 805 14 fe06 cb 3100 8 801 14 4002 69db 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 69bd 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 6a0e 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 d3 7104 8 805 14 fe06 c7 3100 8 801 14 4002 6a0e 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 f2 7104 8 805 14 ff06 ea 3100 8 801 14 4102 69c9 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 f6 7104 8 805 14 ff06 ea 3100 8 801 14 4302 69c3 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a ee 7104 8 805 14 ff06 ee 3100 8 801 14 4602 121 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6762 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 7104 8 805 14 ff06 ea 3100 8 801 14 4302 68b5 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ee 7104 8 805 14 ff06 ea 3100 8 801 14 4102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 7104 8 805 14 fd06 f7 3100 8 801 14 3f02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 7104 8 805 14 fb06 f7 3100 8 801 14 3d02 696f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 c 809 10c 7104 8 805 14 f806 104 3100 8 801 14 3a02 6957 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ff 7104 8 805 14 fb06 f7 3100 8 801 14 3d02 69ae 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ff 7104 8 805 14 fd06 f7 3100 8 801 14 3f02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 10c 7104 8 805 14 ff06 104 3100 8 801 14 4102 6992 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f6 7104 8 805 14 ff06 ee 3100 8 801 14 4302 69bf 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6510 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c4 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693f 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 137 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6956 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 18 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 6912 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 109 3804 8 805 14 6a06 fd 3800 8 801 14 e302 694e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65ee 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691e 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 130 3200 8 801 14 df02 693f 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6924 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6939 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6950 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694e 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 e9 3500 8 801 14 fc02 69cf 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 114 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c 30e 132 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 697d 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 125 3104 8 805 14 6d06 121 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66b7 214 2f3 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 10d 3504 8 805 14 6a06 109 3500 8 801 14 e302 687e 214 2f2 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 10d 3404 8 805 14 6806 109 3400 8 801 14 e102 68f4 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a 116 3204 8 805 14 6106 116 3200 8 801 14 da02 68d9 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 131 3200 8 801 14 df02 68ab 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13d 3200 8 801 14 e102 6893 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 652b 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68bb 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 112 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 102 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 101 3800 8 801 14 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699c 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 e c012 a 3f13 b f15 7 1f15 673e 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6894 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13d ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 6909 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 3804 8 805 14 6606 10a 3800 8 801 14 df02 6933 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ea 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6957 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 112 3804 8 805 14 6106 10a 3800 b 801 14 da02 6938 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6406 10e 3800 8 801 14 dd02 6983 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6606 10e 3800 8 801 14 df02 6987 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 3704 8 805 18 6806 136 3700 8 801 14 e102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3704 8 805 14 6a06 fd 3700 8 801 14 e302 699f 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 135 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 121 3100 8 801 14 e602 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f9 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 18 df02 691a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6406 11a 3200 8 801 14 dd02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693f 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 6606 12d 3200 8 801 14 df02 693f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6924 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f3 116 6 16 1b3 116 6 16 3a3 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6600 214 2f2 116 6 16 1b3 116 6 16 361 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a e6 3604 8 805 14 7d06 ea 3600 8 801 14 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a e6 3904 8 805 14 7d06 ea 3900 8 801 14 fc02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 7d06 e9 3800 8 801 14 fc02 6938 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 3804 8 805 18 7d06 107 3800 8 801 14 fc02 68fa 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a da 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690f 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65ee 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 6875 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 109 3404 8 805 14 7e06 10d 3400 8 801 14 fd02 68ed 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 11e 3304 b 805 14 7c06 116 3300 8 801 14 fb02 691b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 122 3204 8 805 14 7a06 116 3200 8 801 14 f902 6933 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 122 3204 8 805 14 7706 116 3200 8 801 14 f602 6921 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 7a06 12d 3200 8 801 14 f902 693f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 135 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 6942 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 142 3204 8 805 14 7e06 13a 3200 8 801 14 fd02 6927 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 128 3204 8 805 14 8006 120 3200 c 801 14 ff02 6956 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663e 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68be 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f1 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 6978 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6954 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 107 8 8 809 106 3104 8 805 14 7d06 fe 3100 8 801 14 fc02 6954 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ee 3504 8 805 14 7d06 e6 3500 8 801 14 fc02 69cf 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ee 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 7e06 10d 3300 8 801 14 fd02 6986 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 698a 214 2f1 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 178 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6639 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a e6 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e9 3904 8 805 14 6706 e6 3900 8 801 14 e002 6936 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 ee 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 106 8 8 809 106 3104 8 805 14 6706 fe 3100 8 801 14 e002 6954 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ee 3504 8 805 14 6706 e6 3500 8 801 14 e002 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 6706 e6 3400 8 801 18 e002 69cb 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 111 3304 8 805 14 6806 10d 3300 8 801 14 e102 6987 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 6a06 10d 3200 8 801 14 e302 6987 214 2f4 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65bb 214 2f5 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 10e 3204 8 805 14 6706 10e 3200 8 801 14 e002 6873 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697e 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6978 214 2f3 116 6 16 1b7 116 6 16 2f9 810c c 80d 134 ff08 8 809 15 90b 8 400a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 ca 3200 8 801 14 e002 697e 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 f6 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6975 214 2f5 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6648 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ea 3200 8 801 18 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 68e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6956 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 ff 3204 8 805 14 6106 fa 3200 8 801 14 da02 6963 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 110 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 b 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f2 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6768 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6957 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d e6 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6978 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6960 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ab 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c3 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674d 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6972 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ae 214 2f3 116 6 16 1b3 116 9 16 2f9 800c 8 80d ba 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 18 e302 69c2 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6510 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c7 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 6939 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 c 809 15 90b 8 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6954 214 2f3 116 6 16 1b6 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 690f 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 105 3804 8 805 18 6a06 fd 3800 8 801 14 e302 694e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f6 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 124 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65f1 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6939 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 691d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693c 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12b 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 10a 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 6951 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69c9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 18 7d06 e6 3400 8 801 14 fc02 69cf 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3304 8 805 14 7e06 109 3300 8 801 14 fd02 6987 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 6977 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6951 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 c 809 105 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 18 6d06 121 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ba 214 2f2 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 c 805 14 6a06 109 3500 8 801 14 e302 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 18 6806 109 3400 8 801 14 e102 68f6 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d6 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68df 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 530a 116 3204 8 805 14 6106 116 3200 8 801 14 da02 68d9 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 b 801 14 df02 68ab 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6893 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68bb 214 2f1 116 a 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68f4 214 2f5 116 6 16 1b3 116 6 16 32b 800c 8 80d 10a 8 8 809 f1 3804 8 805 14 6706 e6 3800 8 801 14 e002 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 6706 107 3800 8 801 14 e002 6951 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d fd 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69a5 214 2f2 116 6 16 1b3 116 a 16 2f9 800c 8 80d f4 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 101 3800 8 801 14 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699c 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 c90a 100 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6897 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 138 ff08 8 809 15 80b 8 e20a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 68c4 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 f00a 10a 3804 8 805 14 6606 10a 3800 8 801 14 df02 68f7 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 fe0a 10a 3804 8 805 14 6406 10a 3800 8 801 14 dd02 68f7 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 d0a 10a 3804 8 805 14 6106 10e 3800 8 801 14 da02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a 10a 3804 8 805 14 6406 10e 3800 8 801 14 dd02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 10a 3804 8 805 14 6606 10e 3800 8 801 14 df02 68f7 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 13a 3704 8 805 14 6806 136 3700 8 801 14 e102 6897 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 109 3704 8 805 14 6a06 fd 3700 8 801 14 e302 6951 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 226 ff08 8 809 15 80b 8 c90a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6606 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6882 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 138 ff08 8 809 15 80b 8 e20a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68af 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 80b 8 f00a 116 3304 8 805 14 6606 11a 3300 8 801 14 df02 68db 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 80b 8 fe0a 116 3204 8 805 14 6406 11a 3200 8 801 14 dd02 68db 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a 116 3204 8 805 14 6106 11a 3200 8 801 14 da02 68d8 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a 131 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68ac 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a 131 3204 8 805 14 6606 12d 3200 8 801 14 df02 68a9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 400a 13e 3204 8 805 14 6806 13a 3200 8 801 14 e102 6897 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 690c 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1db ff08 8 809 15 90b 8 400a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 659a 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 12c ff08 8 809 15 90b 8 530a e6 3604 8 805 14 7d06 ea 3600 8 801 14 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 670a e6 3904 8 805 14 7d06 ea 3900 8 801 14 fc02 68f3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 7d0a e6 3804 8 805 14 7d06 ea 3800 8 801 14 fc02 693b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a 107 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 68fa 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 ab0a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 c50a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a dd 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690c 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 90b 8 930a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6606 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 687e 214 2f2 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 109 3404 8 805 18 7e06 109 3400 8 801 14 fd02 68b1 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 11a 3304 8 805 14 7c06 116 3300 8 801 14 fb02 68d9 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a 11a 3204 8 805 14 7a06 116 3200 8 801 14 f902 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a 11a 3204 8 805 14 7706 116 3200 8 801 14 f602 68dc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a 12d 3204 8 805 14 7a06 12d 3200 8 801 14 f902 68ac 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 a0b 8 5c0a 12d 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 68ae 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 800a 13a 3204 8 805 14 7e06 13e 3200 8 801 14 fd02 6893 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 128 3204 8 805 14 8006 124 3200 8 801 14 ff02 6908 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 209 ff08 8 809 15 80b 8 c90a 178 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6569 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 e20a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a ea 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6939 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a fe 3104 8 805 14 7d06 102 3100 8 801 14 fc02 67e5 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a e6 3504 8 805 14 7d06 e6 3500 8 801 18 fc02 68c0 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 e20a e6 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 6935 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 109 3304 8 805 14 7e06 10d 3300 8 801 14 fd02 68f0 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 151 8 8 809 180 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ae 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 f2 3604 8 805 14 6706 e6 3600 8 801 14 e002 6981 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 f2 3904 8 805 14 6706 e6 3900 8 801 14 e002 69cf 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 69cc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6990 214 2f3 116 6 16 1b3 116 6 16 360 800c 8 80d 15 80f 8 790e 132 ff08 8 809 15 80b 8 c90a fe 3104 8 805 14 6706 101 3100 8 801 14 e002 6890 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a e6 3504 8 805 14 6706 ea 3500 8 801 14 e002 68bd 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 e20a e6 3404 8 805 14 6706 ea 3400 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 109 3304 c 805 14 6806 109 3300 8 801 14 e102 68ee 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 114 3204 8 805 14 6a06 109 3200 8 801 14 e302 6936 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6552 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a 10d 3204 8 805 14 6706 10d 3200 8 801 14 e002 6873 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 6975 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 cf 3204 8 805 14 6706 c7 3200 8 801 14 e002 69bd 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6851 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a cb 3204 8 805 14 6706 c7 3200 8 801 14 e002 6903 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 670a c7 3204 8 805 18 6706 c7 3200 8 801 14 e002 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 692d 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f6 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6972 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 20c ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6690 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 90b 8 ab0a ea 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68c1 214 2f2 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 c50a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 68e4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a f7 3204 8 805 14 6606 fb 3200 8 801 14 df02 6917 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 fc0a f7 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6917 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 1a0a f7 3204 8 805 18 6106 f7 3200 8 801 14 da02 6918 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a fb 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6918 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a fa 3204 8 805 14 6606 f7 3200 8 801 14 df02 6918 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 c 809 15 a0b 8 800a 104 3204 8 805 14 6806 104 3200 8 801 14 e102 6903 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 6978 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 19 80f 8 30e 209 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6690 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 695a 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 696f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ae 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69a8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d ba 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c9 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 674d 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ee 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 18 6806 ea 3200 8 801 14 e102 692d 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6957 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 6960 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6972 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69b1 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d b7 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ee 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6513 214 2f1 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b c 2e0a e6 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6954 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 de 3800 8 801 14 e002 6950 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 100 3800 8 801 14 e102 690b 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 3804 8 805 14 6a06 100 3800 8 801 14 e302 6951 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693f 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 142 3204 8 805 18 6806 13a 3200 8 801 14 e102 6921 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 7d06 ea 3400 8 801 14 fc02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3304 8 805 14 7e06 109 3300 8 801 14 fd02 6987 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 177 3400 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6642 214 2f3 116 6 16 1b3 116 9 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 6706 ea 3600 8 801 14 e002 68c0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 ea 3900 8 801 14 e002 6932 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 6977 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 694e 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 3804 8 805 18 6706 da 3800 8 801 14 e002 6999 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 69a2 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66b7 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 8 805 14 6a06 10d 3500 8 801 14 e302 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 14 6806 10d 3400 8 801 14 e102 68f7 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d6 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68df 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a 119 3204 8 805 14 6106 116 3200 8 801 14 da02 68db 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68ac 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 8 801 14 df02 68b1 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6890 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 690b 214 2f3 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 170 3404 8 805 15 907 8 6706 170 3400 8 801 19 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6527 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68be 214 2f0 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 697b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 6706 107 3800 8 801 14 e002 6951 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 102 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 699f 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 e2 3804 8 805 14 6706 da 3800 8 801 14 e002 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6806 fd 3800 8 801 18 e102 699e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 699f 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 101 3804 8 805 14 6d06 fd 3800 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6742 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a fd 3804 8 805 14 6a06 fd 3800 8 801 14 e302 6891 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 19 90b 8 930a fd 3804 8 805 14 6806 fd 3800 8 801 14 e102 6906 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 112 3804 8 805 14 6606 10a 3800 8 801 14 df02 6930 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6951 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 112 3804 8 805 14 6106 10a 3800 8 801 14 da02 6939 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6406 10a 3800 8 801 14 dd02 6986 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 112 3804 8 805 14 6606 10e 3800 8 801 14 df02 6983 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 13e 3704 8 805 14 6806 13a 3700 8 801 14 e102 692d 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3704 8 805 14 6a06 101 3700 8 801 14 e302 699f 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 121 3100 8 801 14 e602 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f6 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 687c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68f0 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 11e 3204 8 805 14 6406 11a 3200 8 801 14 dd02 6932 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 6909 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 135 3204 8 805 18 6606 12d 3200 8 801 14 df02 6939 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 146 3204 8 805 14 6806 13a 3200 8 801 14 e102 6927 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 6957 214 2f1 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6603 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a e6 3604 8 805 14 7d06 e6 3600 8 801 18 fc02 68c3 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 693f 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a e6 3804 8 805 14 7d06 ea 3800 8 801 14 fc02 6938 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 7d06 10a 3800 8 801 14 fc02 68f6 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a da 3804 8 805 18 7d06 da 3800 8 801 14 fc02 6951 214 2f0 116 a 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6957 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a de 3804 8 805 14 7d06 da 3800 8 801 14 fc02 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 7e06 fd 3800 8 801 14 fd02 690f 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 105 3804 8 805 14 8006 fd 3800 8 801 14 ff02 6954 214 2f2 116 6 16 1b3 116 6 16 3a6 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 125 3104 8 805 14 8306 125 3100 8 801 14 ff02 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 8006 10d 3500 8 801 14 ff02 6878 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a 109 3404 8 805 14 7e06 10d 3400 8 801 14 fd02 68ed 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 11e 3304 8 805 14 7c06 11a 3300 8 801 14 fb02 6918 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 122 3204 8 805 14 7a06 116 3200 8 801 14 f902 6936 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 122 3204 8 805 14 7706 116 3200 8 801 14 f602 6921 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 138 3204 8 805 14 7a06 12d 3200 8 801 14 f902 693f 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 139 3204 8 805 14 7c06 12d 3200 8 801 14 fb02 6942 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 142 3204 8 805 14 7e06 13a 3200 8 801 14 fd02 6929 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 128 3204 8 805 14 8006 120 3200 8 801 14 ff02 6957 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 177 3404 8 805 15 907 8 7d06 174 3400 8 801 15 903 8 fc02 120 c10 a 3411 a c012 a 3f13 f f15 7 1f15 6641 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c0 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 113 3804 8 805 14 7d06 107 3800 8 801 14 fc02 6951 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 b 809 106 3104 8 805 14 7d06 fe 3100 8 801 14 fc02 6951 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 ee 3504 8 805 14 7d06 e6 3500 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 ee 3404 8 805 14 7d06 e6 3400 8 801 14 fc02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 8006 10d 3200 8 801 14 ff02 6983 214 2f2 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 177 3404 8 805 15 907 8 6706 174 3400 8 801 15 903 8 e002 124 c10 a 3411 a c012 a 3f13 b f15 7 1f15 663f 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a e9 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 6936 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 f2 3804 8 805 14 6706 e6 3800 8 801 14 e002 6978 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 10f 3804 8 805 14 6706 107 3800 8 801 14 e002 6954 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 106 3104 8 805 14 6706 fe 3100 8 801 14 e002 6954 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 ee 3504 8 805 14 6706 e6 3500 8 801 14 e002 6996 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 6706 e6 3400 8 801 14 e002 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3304 8 805 14 6806 10d 3300 8 801 14 e102 698a 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 111 3204 8 805 14 6a06 10d 3200 8 801 14 e302 6984 214 2f5 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 197 3204 8 805 15 907 8 6706 19b 3200 8 801 15 903 8 e002 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65b5 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 109 3204 8 805 14 6706 109 3200 8 801 14 e002 687f 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697b 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 400a c7 3204 8 805 14 6706 c7 3200 8 801 14 e002 697a 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c7 3204 8 805 14 6706 c7 3200 8 801 18 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6977 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 6706 cb 3200 8 801 14 e002 6978 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a ee 3204 8 805 14 6806 ea 3200 8 801 14 e102 6933 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 104 8 8 809 f5 3204 8 805 14 6a06 ea 3200 8 801 14 e302 697b 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ee 3200 8 801 14 e602 120 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6648 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ea 3200 8 801 14 e302 68b8 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ea 3200 8 801 18 e102 68e4 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d 10a 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 695a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 ff 3204 8 805 14 6106 fb 3200 8 801 14 da02 6966 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ff 3204 8 805 18 6406 f7 3200 8 801 14 dd02 695d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 110 3204 8 805 14 6806 104 3200 8 801 14 e102 6990 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 f5 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a ea 3204 8 805 14 6d06 ea 3200 8 801 18 e602 104 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6783 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 14 6a06 ee 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ee 3200 8 801 14 e102 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ff 3204 8 805 14 6606 fb 3200 8 801 14 df02 6956 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 ff 3204 8 805 14 6406 fb 3200 8 801 14 dd02 6972 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 69ab 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d ba 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6996 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a f7 3204 8 805 14 6d06 fb 3200 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 67a7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a ea 3204 8 805 18 6a06 ea 3200 8 801 14 e302 68b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a ea 3204 8 805 14 6806 ed 3200 8 801 14 e102 6930 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 103 3204 8 805 14 6606 f7 3200 8 801 14 df02 6954 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 103 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6975 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 103 3204 8 805 14 6106 f7 3200 8 801 14 da02 695d 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 ff 3204 8 805 14 6406 f7 3200 8 801 14 dd02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ba 8 8 809 ff 3204 8 805 14 6606 f7 3200 8 801 14 df02 69ae 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 10c 3204 8 805 14 6806 104 3200 8 801 14 e102 6993 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 14 6a06 ea 3200 8 801 14 e302 69c6 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 1ee 3404 8 805 15 907 8 6706 1ed 3400 8 801 15 903 8 e002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 656c 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a ea 3604 8 805 14 6706 e6 3600 8 801 14 e002 68c4 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a ea 3904 8 805 14 6706 e6 3900 8 801 14 e002 693c 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a ea 3804 8 805 14 6706 e6 3800 8 801 14 e002 693c 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a 107 3804 8 805 14 6706 107 3800 8 801 14 e002 68fa 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6953 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a da 3804 8 805 14 6706 da 3800 8 801 14 e002 6957 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a da 3804 8 805 14 6706 da 3800 b 801 14 e002 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a fd 3804 8 805 14 6806 101 3800 8 801 14 e102 690b 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 105 3804 8 805 14 6a06 101 3800 8 801 14 e302 694e 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6636 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 109 3504 8 805 14 6a06 109 3500 8 801 14 e302 6879 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a 109 3404 8 805 14 6806 109 3400 8 801 14 e102 68ee 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 11e 3304 8 805 14 6606 116 3300 8 801 14 df02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 11e 3204 8 805 14 6406 116 3200 8 801 14 dd02 6936 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 11e 3204 8 805 14 6106 11a 3200 8 801 14 da02 6920 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6406 131 3200 8 801 14 dd02 693e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 135 3204 8 805 14 6606 131 3200 8 801 14 df02 693f 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 142 3204 8 805 14 6806 13d 3200 8 801 14 e102 6924 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 12c 3204 8 805 14 6a06 120 3200 8 801 14 e302 695a 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 7d06 178 3400 8 801 15 903 8 fc02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6696 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 e6 3600 8 801 14 fc02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 fc02 6936 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10d 8 8 809 ee 3804 8 805 14 7d06 e6 3800 8 801 14 fc02 697b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 7d06 10b 3800 8 801 14 fc02 6953 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 106 3104 8 805 14 7d06 102 3100 8 801 14 fc02 694d 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 ee 3504 8 805 14 7d06 ea 3500 8 801 14 fc02 69cf 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 ee 3404 8 805 14 7d06 ea 3400 8 801 14 fc02 69c9 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 114 3304 8 805 14 7e06 109 3300 8 801 14 fd02 698a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 115 3204 8 805 14 8006 109 3200 8 801 14 ff02 6987 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 174 3404 8 805 15 907 8 6706 178 3400 8 801 15 903 8 e002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 669c 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a 11f 3604 8 805 14 6706 123 3600 8 801 14 e002 684b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c b 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 6706 e6 3900 c 801 14 e002 6935 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 6706 ea 3800 8 801 14 e002 697a 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 14 6706 10b 3800 8 801 14 e002 6954 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 e2 3804 8 805 14 6706 de 3800 8 801 14 e002 6996 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69ae 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e6 3804 8 805 14 6706 da 3800 8 801 14 e002 69e1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 6806 fd 3800 8 801 14 e102 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 105 3804 8 805 14 6a06 fd 3800 8 801 14 e302 699f 214 2f2 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 121 3104 8 805 14 6d06 125 3100 8 801 14 e602 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6714 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a 109 3504 8 805 14 6a06 10d 3500 8 801 14 e302 687e 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a 109 3404 8 805 14 6806 10c 3400 8 801 14 e102 68f6 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a 11a 3304 8 805 14 6606 116 3300 8 801 14 df02 68d9 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a 11a 3204 8 805 14 6406 116 3200 8 801 14 dd02 68d9 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 530a 11a 3204 8 805 14 6106 116 3200 8 801 14 da02 68df 214 2f5 116 6 16 1b3 116 6 16 2fc 810c 8 80d 137 ff08 8 809 15 90b 8 670a 12d 3204 8 805 14 6406 12d 3200 8 801 14 dd02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a 12d 3204 8 805 14 6606 12d 3200 8 801 14 df02 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 930a 13a 3204 8 805 14 6806 13e 3200 8 801 14 e102 6890 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 128 3204 8 805 14 6a06 124 3200 8 801 14 e302 6908 214 2f2 116 6 16 1b7 116 6 16 3a2 800c 8 80d 15 80f 8 30e 209 ff08 8 809 19 90b 8 670a 170 3404 8 805 15 907 8 7d06 170 3400 8 801 15 a03 8 3a02 ca a10 a 3411 a c012 a 3f13 b f15 7 1f15 6583 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a e6 3604 8 805 14 7d06 11f 3600 8 801 14 3a02 688c 214 2f5 116 6 16 1b3 116 6 16 33f 800c 8 80d 13a ff08 8 809 15 90b 8 930a e6 3904 8 805 14 7d06 e6 3900 8 801 14 3a02 68f8 214 2f3 116 6 16 1b3 116 6 16 336 800c 8 80d 10a 8 8 809 ee 3804 8 805 14 7d06 ea 3800 8 801 14 3a02 693f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 10f 3804 8 805 18 7d06 107 3800 8 801 14 3a02 695b 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f9 8 8 809 e6 3804 8 805 14 7d06 da 3800 8 801 14 3a02 69a3 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 e2 3804 8 805 14 7d06 da 3800 8 801 14 3a02 699d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 e2 3804 8 805 14 7d06 da 3800 8 801 14 3a02 69e8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 105 3804 8 805 14 7e06 101 3800 8 801 14 3b02 69a2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 109 3804 8 805 14 8006 fd 3800 8 801 14 3d02 69a0 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a fd 3804 8 805 14 8306 fd 3800 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67a0 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a fd 3804 8 805 14 8006 fd 3800 8 801 14 3d02 6895 214 2f5 116 6 16 1b3 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a fd 3804 8 805 14 7e06 101 3800 8 801 14 3b02 68c1 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 10e 3804 8 805 14 7c06 10a 3800 8 801 14 3902 68ee 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 116 3804 8 805 14 7a06 10a 3800 8 801 14 3702 6934 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 19 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10a 3804 8 805 14 7706 10a 3800 8 801 14 3402 67d5 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 10a 3804 8 805 14 7a06 10d 3800 8 801 14 3702 687c 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10a 3804 8 805 14 7c06 10e 3800 8 801 14 3902 68a9 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 13a 3704 8 805 14 7e06 136 3700 8 801 14 3b02 689b 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 c 809 105 3704 8 805 14 8006 fd 3700 8 801 14 3d02 694c 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a fd 3704 8 805 14 8306 101 3700 8 801 14 4002 121 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669d 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a fd 3704 8 805 14 8006 101 3700 8 801 14 3d02 6891 214 2f3 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a 101 3704 8 805 14 7e06 fd 3700 8 801 14 3b02 68c1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 10e 3704 8 805 14 7c06 10a 3700 8 801 14 3902 68ef 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 3704 8 805 14 7a06 10a 3700 8 801 14 3702 6937 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1a8 ff08 8 809 15 90b 8 930a 10a 3704 8 805 14 7706 10e 3700 8 801 14 3402 6801 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 10a 3704 8 805 14 7a06 10e 3700 8 801 14 3702 687f 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 10e 3704 8 805 14 7c06 10a 3700 8 801 14 3902 68af 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 134 ff08 8 809 15 90b c e00a 117 3704 8 805 14 7e06 117 3700 8 801 14 3b02 68dd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 105 3704 8 805 14 8006 fd 3700 8 801 14 3d02 6955 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1f3 ff08 8 809 15 80b 8 c90a fd 3704 8 805 14 8306 101 3700 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6682 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a fd 3704 8 805 18 8006 fd 3700 8 801 14 3d02 6894 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 101 3704 8 805 14 7e06 fd 3700 8 801 14 3b02 68c5 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 f00a 129 3604 8 805 14 7c06 129 3600 8 801 14 3902 68b0 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 112 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6937 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 10e 3604 8 805 14 7706 10a 3600 8 801 14 3402 67ce 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10e 3604 8 805 14 7a06 10a 3600 8 801 14 3702 687c 214 2f2 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 19 90b 8 670a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68aa 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 117 3604 8 805 14 7e06 117 3600 8 801 14 3b02 68d7 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 105 3604 8 805 14 8006 fd 3600 8 801 14 3d02 694f 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 101 3604 8 805 14 8306 fd 3600 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669a 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 101 3604 8 805 14 8006 fd 3600 8 801 14 3d02 6894 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 670a fd 3604 8 805 14 7e06 fd 3600 8 801 14 3b02 68c5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68ee 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6937 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a 10e 3604 8 805 14 7706 10a 3600 8 801 14 3402 67a4 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 10e 3604 8 805 14 7a06 10a 3600 8 801 14 3702 6880 214 2f0 116 6 16 1b7 116 6 16 33b 800c 8 80d 137 ff08 8 809 15 90b 8 c50a 10a 3604 8 805 14 7c06 10a 3600 8 801 14 3902 68b6 214 2f0 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 136 3504 8 805 14 7e06 136 3500 8 801 14 3b02 6856 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 105 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6955 214 2f3 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8306 fd 3500 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 661f 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a fd 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6892 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 7e06 fd 3500 8 801 14 3b02 690d 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a 10a 3504 8 805 14 7c06 10e 3500 8 801 14 3902 67d1 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 10a 3504 8 805 14 7a06 10d 3500 8 801 14 3702 687c 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 80b 8 c90a 10e 3504 8 805 14 7706 10a 3500 8 801 14 3402 68ee 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 80b 8 be0a 10a 3504 8 805 14 7a06 10a 3500 8 801 14 3702 68ef 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1e0 ff08 8 809 15 80b 8 c90a 10a 3504 8 805 14 7c06 10e 3500 8 801 14 3902 67cb 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a 117 3504 8 805 14 7e06 11b 3500 8 801 14 3b02 685e 214 2f2 116 6 16 1b3 116 6 16 335 800c 8 80d 13a ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8006 101 3500 8 801 14 3d02 68d0 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a fd 3504 8 805 14 8306 fd 3500 8 801 14 4002 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669e 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a fd 3504 8 805 14 8006 fd 3500 8 801 14 3d02 6895 214 2f1 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a fd 3504 8 805 14 7e06 fd 3500 8 801 14 3b02 68c4 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 129 3404 8 805 14 7c06 12d 3400 8 801 14 3902 68af 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 112 3404 8 805 14 7a06 10e 3400 8 801 14 3702 6936 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a 10a 3404 8 805 14 7706 10a 3400 8 801 14 3402 67d2 214 2f1 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a 10a 3404 8 805 14 7a06 10a 3400 8 801 14 3702 687d 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a 10a 3404 8 805 14 7c06 10a 3400 8 801 14 3902 68aa 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a 117 3404 8 805 14 7e06 11b 3400 8 801 14 3b02 68d6 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 105 3404 c 805 14 8006 fd 3400 8 801 14 3d02 694f 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a fd 3404 8 805 14 8306 fd 3400 8 801 14 4002 124 a10 a 3411 a c012 a 3f13 b f15 7 1f15 669a 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a fd 3404 8 805 14 8006 fd 3400 8 801 14 3d02 6895 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a fd 3404 8 805 14 7e06 101 3400 8 801 14 3b02 68c1 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 10a 3404 8 805 14 7c06 10e 3400 8 801 14 3902 68ee 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 116 3404 8 805 14 7a06 10a 3400 8 801 14 3702 6937 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a 10a 3404 8 805 14 7706 12e 3100 8 801 14 3402 67b1 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a 10a 3404 8 805 14 7a06 116 3500 8 801 14 3702 6871 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a 10a 3404 8 805 14 7c06 119 3400 8 801 14 3902 689a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a 139 3304 8 805 14 7e06 123 3300 8 801 14 3b02 68ac 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 109 3304 8 805 14 8006 109 3200 8 801 14 3d02 6943 214 2f0 116 6 16 1b7 116 6 16 359 800c 8 80d 15 80f c 790e 208 ff08 8 809 15 90b 8 930a fd 3304 8 805 14 8306 20a b500 8 801 15 903 8 ab02 120 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6559 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a fd 3304 8 805 14 8006 e6 b600 8 801 14 ab02 68b3 214 2f2 116 6 16 1b3 116 6 16 342 800c 8 80d 134 ff08 8 809 15 90b 8 c50a fd 3304 8 805 14 7e06 ea b600 8 801 14 ab02 68e2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 10e 3304 8 805 14 7c06 e6 ba00 8 801 14 ab02 691c 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 104 8 8 809 116 3304 8 805 14 7a06 e6 bb00 8 801 14 ab02 695b 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 238 ff08 8 809 15 90b 8 930a 12e 3104 8 805 14 7706 ea bc00 8 801 14 ab02 6771 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a 116 3504 8 805 14 7a06 ea bb00 8 801 14 ab02 6897 214 2f3 116 6 16 1b3 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a 11a 3404 8 805 14 7c06 e6 ba00 8 801 14 ab02 68ca 214 2f3 116 6 16 1b3 116 6 16 342 800c 8 80d 134 ff08 8 809 15 90b 8 e00a 127 3304 8 805 14 7e06 109 b900 8 801 14 ac02 6898 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d 108 8 8 809 111 3204 8 805 14 8006 109 b800 8 801 14 ae02 693d 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 203 ff08 8 809 15 90b 8 670a 19f 3204 8 805 15 907 8 7d06 109 b700 8 801 14 b102 104 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65d9 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a c7 3204 8 805 14 7d06 109 b700 8 801 14 ae02 68bd 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a c7 3204 8 805 14 7d06 109 b700 8 801 14 ac02 6933 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 cf 3204 8 805 14 7d06 116 b700 8 801 14 aa02 696c 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d ea 8 8 809 cf 3204 8 805 14 7d06 116 b700 8 801 14 a802 698d 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 dc 3204 8 805 14 7d06 132 b100 8 801 14 a502 694a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 cf 3204 8 805 14 7d06 11a b500 8 801 14 a802 69bd 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 cf 3204 8 805 14 7d06 119 b400 8 801 14 aa02 69ba 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f2 3204 8 805 18 7e06 123 b300 8 801 14 ac02 698a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 f6 3204 8 805 14 8006 109 b200 8 801 14 ae02 69a8 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 228 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65e5 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f7 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 18 ab02 69cb 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 10a b100 8 801 14 ab02 69b4 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b3 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 17f b500 8 801 15 903 8 6702 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 672c 214 2f3 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a b9 b404 8 805 f2 b600 8 801 14 6702 68fc 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 f1 b600 8 801 14 6702 6971 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 f2 ba00 8 801 14 6702 6978 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 f2 bb00 8 801 14 6702 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 106 b100 8 801 14 6702 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b c 670a b9 b404 8 805 ee b500 8 801 14 6702 6972 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 6702 6975 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 6802 6956 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 108 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 6996 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 65bd 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6964 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 107 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 698b 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d5 214 2f4 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c5 b404 8 805 114 b200 8 801 14 ae02 69db 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 6706 178 b500 8 801 15 903 8 4002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ba 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 4002 68c1 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 4002 696c 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 4002 69b1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 4002 69cf 214 2f1 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 106 b100 8 801 14 4002 6996 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b500 8 801 14 4002 6a0b 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b400 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b300 8 801 14 4102 69e7 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 18 4302 69e0 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 66c5 214 2f4 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a bc b404 8 805 127 b600 8 801 14 ab02 68b5 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 ab02 6963 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d 10e 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69a5 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 18 ab02 69c0 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 103 8 8 809 d2 b404 8 805 ee bc00 8 801 18 ab02 699f 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69fa 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69d9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12f ff08 8 809 15 80b 8 fe0a 147 b404 8 805 19 907 8 4006 121 b100 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f3 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a f2 b404 8 805 111 b500 8 801 14 ae02 68a6 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 111 b400 8 801 14 ac02 6954 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 11e b300 8 801 14 aa02 6945 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 122 b200 8 801 14 a802 6944 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 139 b200 8 801 14 a502 6920 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 139 b200 8 801 14 a802 692d 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a bd b404 8 805 135 b200 8 801 14 aa02 692a 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a bd b404 8 805 142 b200 8 801 14 ac02 6921 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 107 8 8 809 c1 b404 8 805 128 b200 8 801 14 ae02 6981 214 2f2 116 6 16 1b3 116 6 16 3a3 800c c 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 14a b404 8 805 15 907 8 ab06 170 b500 8 801 15 903 8 1d02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 65af 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 f2 b600 8 801 14 1d02 68bd 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f1 b600 8 801 14 1d02 6926 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 1d02 69b0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f1 bb00 8 801 14 1d02 69cf 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d fe 8 8 809 c1 b404 8 805 f2 bc00 8 801 14 1d02 69bd 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 1d02 6a08 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 1d02 6a08 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b900 8 801 14 1e02 69e4 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b800 8 801 14 2002 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a c6 b404 8 805 115 b700 8 801 14 2302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 67d1 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 114 b700 8 801 14 2002 68d5 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 1e02 6950 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 1c02 6981 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d e6 8 8 809 c1 b404 8 805 122 b700 8 801 14 1a02 69a5 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 103 8 8 809 c5 b404 8 805 136 b100 8 801 14 1702 6975 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 11e b500 8 801 14 1a02 69d5 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 11e b400 8 801 14 1c02 69db 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 12b b300 8 801 14 1e02 69c9 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 2002 69e7 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 1d06 174 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f1 b600 8 801 14 ab02 6963 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c7 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 106 b100 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 69fd 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d9 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d9 214 2f3 116 6 16 1bb 116 6 16 3a7 810c 8 80d 15 80f 8 790e 12c ff08 8 809 19 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 4002 c6 c10 a 3411 a b012 e 3e13 b f15 7 1f15 671a 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 18 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 4002 6900 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 4002 6975 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 4002 6977 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 4002 6978 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 106 b100 8 801 14 4002 6951 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f1 b500 8 801 14 4002 6971 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 4002 6974 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 4102 694e 214 2f1 116 a 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 115 b200 8 801 14 4302 6996 214 2f4 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f7 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65be 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 109 b100 8 801 14 ab02 6992 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a08 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69e1 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 4006 178 b500 8 801 15 903 8 6702 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f c e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 127 b600 b 801 14 6702 68c0 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 6702 696f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 6702 69b4 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69d2 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 6702 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c4 b404 8 805 ee b400 8 801 14 6702 6a08 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 6802 69e1 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 69e7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c6 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12b b600 8 801 14 ab02 68b2 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6964 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10e 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69a3 214 2f2 116 6 16 1b7 116 a 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 6a00 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69d9 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d5 214 2f4 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f c 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 6706 125 b100 8 801 14 b102 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66d4 214 2f3 116 6 16 1b7 116 6 16 35c 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f6 b404 8 805 111 b500 8 801 14 ae02 68a3 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 111 b400 8 801 14 ac02 6951 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a bd b404 8 805 11e b300 8 801 14 aa02 6945 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 11e b200 8 801 14 a802 6942 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 135 b200 8 801 14 a502 6923 214 2f3 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 135 b200 8 801 14 a802 6930 214 2f2 116 6 16 1b7 116 6 16 2f9 810c c 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b200 8 801 14 aa02 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 146 b200 8 801 14 ac02 691d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 12c b200 8 801 14 ae02 6981 214 2f0 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20c ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 a03 8 3a02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65a9 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 90b 8 7d0a f2 b404 8 805 ee b600 8 801 14 3a02 68c1 214 2f5 116 6 16 1b3 116 6 16 342 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 3a02 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69cf 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 101 8 8 809 c1 b404 8 805 ee bc00 8 801 14 3a02 69c0 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 6a0b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 6a05 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 3b02 69e1 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 3d02 69e4 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a c6 b404 8 805 111 b700 8 801 14 4002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 67d6 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 111 b700 8 801 14 3d02 68d7 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 3b02 694e 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 3902 6988 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d e6 8 8 809 c5 b404 8 805 11e b700 8 801 14 3702 69a9 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 107 8 8 809 c1 b404 8 805 136 b100 8 801 14 3402 6973 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 11e b500 8 801 14 3702 69dc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 3902 69d8 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 12f b300 8 801 14 3b02 69cd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e5 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 a07 8 3a06 178 b500 8 801 15 a03 8 3a02 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 66d0 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 3a02 696f 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10a 8 8 809 c4 b404 8 805 ee ba00 8 801 14 3a02 69b5 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69d3 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 106 b100 8 801 14 3a02 69b8 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee b500 8 801 14 3a02 6a0c 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 3a02 6a09 214 2f1 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 3b02 69e5 214 2f0 116 6 16 1b7 116 6 16 2f9 800c b 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e8 214 2f5 116 6 16 1b3 116 6 16 3a2 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 e002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 672d 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a bd b404 8 805 ee b600 8 801 14 e002 6900 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 ee b600 8 801 14 e002 6979 214 2f1 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 e002 6976 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6979 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 10a b100 8 801 14 e002 694e 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 e002 6978 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 134 ff08 c 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 e102 6955 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 699a 214 2f2 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 1f3 ff08 8 809 19 90b 8 670a 147 b404 8 805 15 a07 8 3a06 174 b500 8 801 15 a03 8 3a02 c6 e10 a 3411 a c012 a 3f13 b f15 7 1f15 65c6 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68f3 214 2f6 116 6 16 1b3 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 3a02 6968 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 3a02 69ae 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69c9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 d2 b404 8 805 106 b100 8 801 14 3a02 6990 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 3a02 6a02 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b400 8 801 14 3a02 6a03 214 2f5 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 3b02 69de 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 3d02 69de 214 2f2 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 e006 178 b500 8 801 15 903 8 e002 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c0 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 e002 68fa 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 e002 696f 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 e002 69b4 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f1 bb00 8 801 14 e002 69d1 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 e002 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 e002 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 e002 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 e102 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 a07 8 3a06 19e b500 8 801 15 903 8 9302 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66a2 214 2f7 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 161 b600 8 801 15 903 8 7d02 6873 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 f5 b600 8 801 18 7d02 6957 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 15d ba00 8 801 19 903 8 6702 692d 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 c 805 ee bb00 8 801 14 6702 69c4 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 ee bc00 8 801 14 6702 69a3 214 2f2 116 a 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69c4 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f8 ba00 8 801 14 6702 69f4 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 6802 69df 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 6a02 69d5 214 2f5 116 6 16 1b7 116 6 16 3a7 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 e006 1a9 b500 8 801 15 903 8 7d02 ca c10 a 3411 a b012 a 3e13 b f15 7 1f15 6645 214 2f5 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 c 809 15 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 7d02 68fd 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 134 ff08 8 809 19 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 7d02 6978 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 7d02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 7d02 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 106 b100 8 801 14 7d02 6951 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 7d02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 7d02 6971 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 7e02 6951 214 2f0 116 a 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 115 b200 8 801 14 8002 6996 214 2f4 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 16d b404 8 805 15 907 8 9306 174 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6588 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 128 b404 8 805 15 907 8 7d06 e6 b600 8 801 14 ab02 6873 214 2f2 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a c0 b404 8 805 ee b600 8 801 14 ab02 6929 214 2f2 116 6 16 1b3 116 a 16 328 800c 8 80d 10e 8 8 809 130 b404 8 805 15 907 8 6706 e6 ba00 8 801 18 ab02 68fc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69d2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f9 8 8 809 c1 b404 8 805 ee bc00 8 801 18 ab02 69c2 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c9 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c8 b404 8 805 f2 ba00 8 801 14 ab02 69ff 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69e7 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69e1 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 c90a 178 b404 8 805 15 907 8 7d06 10d b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6711 214 2f3 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f c e 12c ff08 8 809 15 80b 8 d50a b9 b404 8 805 111 b700 8 801 14 ae02 68df 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 80b 8 e20a b9 b404 8 805 115 b700 8 801 14 ac02 690b 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 80b 8 f00a b9 b404 8 805 121 b700 8 801 14 aa02 6941 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 80b 8 fe0a b9 b404 8 805 122 b700 8 801 14 a802 694b 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 d0a c6 b404 8 805 122 b700 8 801 14 a502 6933 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 135 b700 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 2e0a bd b404 8 805 135 b700 8 801 14 aa02 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 142 b700 8 801 14 ac02 6921 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 108 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 6981 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 15 80b 8 c90a 147 b404 8 805 15 907 8 ab06 120 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 6639 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 130 ff08 8 809 15 80b 8 d50a b9 b404 8 805 12c b700 8 801 14 ae02 68b5 214 2f6 116 6 16 1b7 116 6 16 346 800c 8 80d 134 ff08 8 809 15 80b 8 e20a bc b404 8 805 12c b700 8 801 14 ac02 68e8 214 2f6 116 6 16 1b7 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 80b 8 f00a bd b404 8 805 135 b700 8 801 14 aa02 6925 214 2f3 116 6 16 1bb 116 6 16 2fd 800c 8 80d 137 ff08 8 809 15 80b 8 fe0a bd b404 8 805 135 b700 8 801 14 a802 6922 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 138 ff08 8 809 15 90b 8 d0a b9 b404 c 805 135 b700 8 801 14 a502 6928 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 139 b700 8 801 14 a802 6925 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 139 b700 8 801 14 aa02 691e 214 2f4 116 6 16 1b7 116 6 16 301 800c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 145 b700 8 801 14 ac02 6915 214 2f4 116 6 16 1b7 116 6 16 301 800c 8 80d 108 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6975 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1dc ff08 8 809 15 90b 8 400a bd b404 8 805 12b b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6714 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 530a b9 b404 8 805 12c b700 8 801 14 ae02 68c3 214 2f2 116 6 16 1b7 116 6 16 343 800c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 12c b700 8 801 14 ac02 68f7 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b700 8 801 14 aa02 692a 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 930a bd b404 8 805 135 b700 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 90b 8 ab0a bd b404 8 805 135 b700 8 801 14 a502 692d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 c50a b9 b404 8 805 135 b700 8 801 14 a802 692f 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 135 b700 8 801 14 aa02 6930 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 142 b700 8 801 14 ac02 6921 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 6980 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 222 ff08 8 809 19 90b 8 930a b9 b404 8 805 128 b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d5 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a bd b404 8 805 128 b700 8 801 14 ae02 68c4 214 2f1 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a bd b404 8 805 128 b700 8 801 14 ac02 68fa 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 134 ff08 8 809 15 90b 8 e00a bd b404 8 805 135 b700 8 801 14 aa02 692d 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 135 b700 8 801 14 a802 692d 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 a0b 8 1a0a b9 b404 8 805 135 b700 8 801 14 a502 692d 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 138 ff08 8 809 15 a0b 8 3a0a b9 b404 8 805 135 b700 8 801 14 a802 6933 214 2f3 116 6 16 1b7 116 6 16 2f9 800c c 80d 134 ff08 8 809 15 a0b 8 5c0a b9 b404 8 805 139 b700 8 801 14 aa02 6929 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a b9 b404 8 805 146 b700 8 801 14 ac02 6920 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 104 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6981 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 20d ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66ea 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 19 80b 8 d50a b9 b404 8 805 128 b700 8 801 14 ae02 68c1 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 19 80b 8 e20a b9 b404 8 805 128 b700 8 801 14 ac02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13d ff08 8 809 15 80b 8 f00a b9 b404 8 805 135 b700 8 801 14 aa02 6927 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696f 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a b9 b404 8 805 138 b700 8 801 14 a502 6809 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 e20a b9 b404 8 805 139 b700 8 801 14 aa02 6923 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a b9 b404 8 805 146 b700 8 801 14 ac02 6918 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6978 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 151 8 8 809 c5 b404 8 805 128 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 683e 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d 103 8 8 809 c5 b404 8 805 12c b700 8 801 14 ae02 6972 214 2f7 116 6 16 1b7 116 6 16 2ff 800c 8 80d b7 8 8 809 c4 b404 8 805 128 b700 8 801 14 ac02 69c7 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 c 805 135 b700 8 801 14 aa02 69b5 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 139 b700 8 801 14 a802 69b5 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 132 ff08 8 809 19 80b 8 c90a b9 b404 8 805 139 b700 8 801 14 a502 68a3 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a bd b404 8 805 138 b700 8 801 14 a802 68a6 214 2f7 116 6 16 1b6 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 e20a bd b404 8 805 135 b700 8 801 14 aa02 691c 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 80b 8 f00a bd b404 8 805 142 b700 8 801 14 ac02 6913 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d 10e 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6973 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1e1 ff08 8 809 15 90b 8 400a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6712 214 2f0 116 6 16 1b7 116 6 16 35c 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a bd b404 8 805 128 b700 8 801 14 ae02 68be 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 670a bd b404 8 805 128 b700 8 801 14 ac02 6933 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a bd b404 8 805 135 b700 8 801 14 aa02 6927 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696f 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 13a b100 8 801 14 a502 6809 214 2f2 116 6 16 1b6 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a b9 b404 8 805 122 b500 8 801 14 a802 68c9 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 670a b9 b404 8 805 122 b400 8 801 14 aa02 693b 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12f b300 8 801 14 ac02 692f 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10a 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 698d 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 20b ff08 8 809 15 90b 8 930a b9 b404 8 805 178 b500 8 801 15 903 8 ab02 c9 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6699 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 12f ff08 8 809 15 90b 8 ab0a b9 b404 8 805 ee b600 8 801 14 ab02 6900 214 2f4 116 6 16 1b3 116 6 16 349 800c 8 80d 138 ff08 8 809 15 90b 8 c50a b9 b404 8 805 ee b600 8 801 14 ab02 692a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 ee ba00 8 801 14 ab02 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 138 ff08 8 809 15 90b 8 fc0a b9 b404 8 805 ee bb00 8 801 14 ab02 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 134 ff08 8 809 15 a0b 8 1a0a b9 b404 8 805 ee bc00 8 801 14 ab02 6975 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 3a0a b9 b404 8 805 f2 bb00 8 801 14 ab02 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 5c0a b9 b404 8 805 f2 ba00 8 801 14 ab02 6975 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d 134 ff08 8 809 15 a0b 8 800a b9 b404 8 805 115 b900 8 801 14 ac02 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 6993 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a b9 b404 8 805 111 b700 8 801 14 b102 c9 c10 a 3411 a c012 a 3f13 b f15 7 1f15 6708 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 111 b700 8 801 14 ae02 68d6 214 2f2 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b700 8 801 14 ac02 6950 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 11e b700 8 801 14 aa02 6984 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 11e b700 8 801 14 a802 699f 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 13a b100 8 801 14 a502 6962 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b500 8 801 14 a802 69d5 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 aa02 69d5 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 c 805 12b b300 8 801 14 ac02 69c9 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66cc 214 2f3 116 6 16 1b3 116 6 16 361 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f9 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 18 ab02 69b0 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69ce 214 2f1 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 c1 b404 8 805 10a b100 8 801 14 ab02 699f 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee b500 8 801 14 ab02 69cc 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 ab02 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e7 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 ae02 69e4 214 2f3 116 6 16 1b7 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 6702 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 672c 214 2f2 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a b9 b404 8 805 f2 b600 8 801 14 6702 68fc 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 f1 b600 8 801 14 6702 6974 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 f2 ba00 8 801 14 6702 696f 214 2f1 116 a 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a bd b404 8 805 ee bb00 8 801 14 6702 6975 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 106 b100 8 801 14 6702 694e 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 ee b500 8 801 14 6702 6972 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 137 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 6702 6978 214 2f3 116 6 16 1b3 116 a 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 6802 6954 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 6996 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 c 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 65a8 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68eb 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 ab02 6967 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10e 8 8 809 c4 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f3 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c4 214 2f2 116 a 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 698b 214 2f2 116 6 16 1b7 116 6 16 2ff 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a00 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d5 214 2f4 116 6 16 1b7 116 6 16 300 800c 8 80d ba 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d8 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 6706 178 b500 8 801 15 903 8 4002 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66c1 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 4002 68bb 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 4002 696f 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 4002 69b1 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 4002 69cf 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 ce b404 8 805 106 b100 8 801 14 4002 6996 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 ee b500 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 ee b400 8 801 14 4002 6a08 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b300 8 801 14 4102 69e4 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 4302 69e1 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 174 b500 8 801 15 903 8 ab02 ca f10 a 3411 a c012 a 3f13 b f15 7 1f15 66c6 214 2f3 116 6 16 1b7 116 6 16 360 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a bd b404 8 805 127 b600 8 801 14 ab02 68bc 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 f2 b600 8 801 14 ab02 695d 214 2f5 116 6 16 1b7 116 6 16 300 800c 8 80d 10e 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69a8 214 2f5 116 6 16 1b7 116 6 16 301 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c0 214 2f5 116 6 16 1b7 116 6 16 300 800c 8 80d 107 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69a2 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 c 801 14 ab02 69c0 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69fd 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c4 b404 8 805 111 b900 8 801 14 ac02 69d9 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 4006 121 b100 8 801 14 b102 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 66d2 214 2f3 116 6 16 1b3 116 6 16 35d 810c c 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f2 b404 8 805 115 b500 8 801 14 ae02 68a2 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 111 b400 8 801 18 ac02 694d 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 122 b300 8 801 14 aa02 6944 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 122 b200 8 801 14 a802 6948 214 2f0 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a ca b404 8 805 135 b200 8 801 14 a502 691b 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a bd b404 8 805 135 b200 8 801 14 a802 692d 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 7d0a b9 b404 8 805 135 b200 8 801 14 aa02 692d 214 2f4 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 930a b9 b404 8 805 142 b200 8 801 14 ac02 6921 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 108 8 8 809 c1 b404 8 805 128 b200 8 801 14 ae02 6981 214 2f2 116 6 16 1b7 116 6 16 3a3 800c 8 80d 15 80f 8 30e 209 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 ab06 19a b500 8 801 15 903 8 4002 ca c10 a 3411 a c012 a 3f13 b f15 7 1f15 6581 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 161 b600 8 801 15 903 8 2e02 6845 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f9 b600 8 801 14 2e02 691d 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 163 ba00 8 801 15 903 8 1d02 6939 214 2f0 116 6 16 1b7 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 1d02 69cf 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d fe 8 8 809 c5 b404 8 805 ee bc00 8 801 14 1d02 69bd 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c5 b404 8 805 ee bb00 8 801 14 1d02 69bd 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 ee ba00 8 801 14 1d02 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b900 8 801 14 1e02 69e7 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b800 8 801 14 2002 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a c6 b404 8 805 115 b700 8 801 14 2302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 67d1 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a bd b404 8 805 111 b700 8 801 14 2002 68d6 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 111 b700 8 801 14 1e02 694b 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c4 b404 8 805 11e b700 8 801 14 1c02 6981 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d f0 8 8 809 c5 b404 8 805 11e b700 8 801 14 1a02 699f 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 107 8 8 809 c1 b404 8 805 125 b700 8 801 14 1702 6984 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d ba 8 8 809 c1 b404 8 805 135 b700 8 801 14 1a02 69c3 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 135 b700 8 801 14 1c02 69bf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 142 b700 8 801 14 1e02 69b7 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 12c b700 8 801 14 2002 69cc 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 171 b404 8 805 15 907 8 4006 1a5 b500 8 801 15 903 8 ab02 c9 f10 a 3411 a b012 a 3e13 b f15 7 1f15 666b 214 2f4 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a 12c b404 8 805 15 907 8 2e06 e6 b600 8 801 14 ab02 6869 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13e ff08 8 809 15 90b 8 930a c0 b404 8 805 f2 b600 8 801 14 ab02 695a 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 136 b404 8 805 15 907 8 1d06 ea ba00 8 801 14 ab02 691e 214 2f7 116 6 16 1b7 116 6 16 300 800c 8 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c4 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 103 8 8 809 c5 b404 8 805 106 b100 8 801 14 ab02 6997 214 2f7 116 6 16 1b7 116 6 16 300 800c 8 80d f0 8 8 809 c5 b404 8 805 ee b500 8 801 14 ab02 69c4 214 2f6 116 6 16 1b7 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69fd 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69d9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69d9 214 2f6 116 6 16 1b7 116 6 16 3a7 810c 8 80d 15 80f 8 790e 130 ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 4002 c6 c10 e 3411 a b012 a 3e13 b f15 7 1f15 671d 214 2f5 116 6 16 1b3 116 6 16 35c 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a b9 b404 8 805 ee b600 8 801 14 4002 68fd 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 c 809 15 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 4002 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 4002 6975 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 4002 6975 214 2f3 116 6 16 1b6 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a c0 b404 8 805 106 b100 8 801 14 4002 6957 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 4002 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b400 8 801 14 4002 6975 214 2f1 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 4102 694e 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c5 b404 8 805 111 b200 8 801 14 4302 6996 214 2f4 116 6 16 1b3 116 6 16 3a2 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 178 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6579 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68fa 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6972 214 2f2 116 6 16 1b6 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 69b4 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69d2 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 ab02 6992 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a05 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b300 8 801 14 ac02 69e4 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b200 8 801 14 ae02 69e1 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 4006 178 b500 8 801 15 903 8 6702 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 66c9 214 2f3 116 6 16 1b3 116 6 16 35d 800c 8 80d 19 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12b b600 8 801 14 6702 68bd 214 2f3 116 6 16 1b7 116 6 16 2f9 800c b 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 6702 6972 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 6702 69b6 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69cf 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 8 805 10a b100 8 801 14 6702 6990 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 6702 6a05 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 6802 69e4 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 6a02 69e4 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 178 b500 8 801 15 903 8 ab02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 66c6 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 12a b600 8 801 14 ab02 68b2 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 17 ab02 6960 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 ab02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c5 b404 8 805 ee bb00 8 801 14 ab02 69c7 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 ee bc00 8 801 14 ab02 69a3 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69c1 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69fd 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69de 214 2f3 116 6 16 1b7 116 6 16 300 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b800 8 801 14 ae02 69d9 214 2f2 116 6 16 1b7 116 6 16 3a6 810c 8 80d 19 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 14b b404 8 805 15 907 8 6706 125 b100 8 801 14 b102 c6 c10 a 3411 a b012 a 3e13 b f15 a 1f15 66d5 214 2f0 116 6 16 1b7 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a f6 b404 8 805 111 b500 8 801 14 ae02 68a0 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 1d0a bd b404 8 805 111 b400 8 801 14 ac02 6951 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 19 90b 8 2e0a b9 b404 8 805 11e b300 8 801 14 aa02 6942 214 2f2 116 6 16 1b3 116 6 16 2fc 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 11e b200 8 801 14 a802 694b 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 530a c6 b404 8 805 135 b200 8 801 14 a502 6920 214 2f2 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 670a b9 b404 8 805 135 b200 8 801 18 a802 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 139 b200 8 801 14 aa02 692c 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 146 b200 8 801 14 ac02 691d 214 2f3 116 6 16 1b7 116 6 16 2fc 810c 8 80d 104 8 8 809 c1 b404 8 805 12c b200 8 801 14 ae02 697b 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 147 b404 8 805 15 907 8 ab06 174 b500 8 801 15 a03 8 3a02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 65af 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a f2 b404 8 805 ee b600 8 801 14 3a02 68be 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 3a02 692a 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b4 214 2f3 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d fd 8 8 809 c1 b404 8 805 ee bc00 8 801 14 3a02 69c0 214 2f2 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 c1 b404 8 805 ee bb00 8 801 17 3a02 69bc 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 3a02 6a05 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 3b02 69e4 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b800 8 801 14 3d02 69e1 214 2f4 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 30e 136 ff08 8 809 15 90b 8 670a c6 b404 8 805 111 b700 8 801 14 4002 ca a10 a 3411 a c012 a 3f13 b f15 7 1f15 67cf 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 115 b700 8 801 14 3d02 68d9 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b700 8 801 14 3b02 694b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 8 809 c5 b404 8 805 11e b700 8 801 14 3902 6985 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d f4 8 8 809 c1 b404 8 805 11e b700 8 801 14 3702 69a3 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 136 b100 8 801 14 3402 6976 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 11e b500 8 801 14 3702 69dc 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 122 b400 8 801 14 3902 69d8 214 2f2 116 6 16 1b7 116 6 16 2f9 800c 8 80d b7 8 8 809 c5 b404 8 805 12b b300 8 801 14 3b02 69cd 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e8 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 143 b404 8 805 15 a07 8 3a06 178 b500 8 801 15 a03 8 3a02 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 66cd 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 3a02 68fa 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 14 3a02 6970 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d 10e 8 8 809 c1 b404 8 805 ee ba00 8 801 14 3a02 69b8 214 2f1 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 3a02 69d0 214 2f5 116 6 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 106 b100 8 801 14 3a02 69a5 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 b500 8 801 14 3a02 69d2 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 ee b400 8 801 14 3a02 6a06 214 2f0 116 6 16 1b7 116 6 16 2f9 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b300 8 801 14 3b02 69e8 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 111 b200 8 801 14 3d02 69e5 214 2f3 116 6 16 1b3 116 6 16 3a3 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a b9 b404 8 805 180 b500 8 801 15 903 8 e002 c6 a10 a 3411 a c012 a 3f13 b f15 7 1f15 6730 214 2f2 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 12c ff08 8 809 15 90b 8 d0a bc b404 8 805 ee b600 8 801 14 e002 6904 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a b9 b404 8 805 ee b600 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 137 ff08 8 809 15 90b 8 2e0a b9 b404 8 805 ee ba00 8 801 14 e002 6979 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6979 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 530a c6 b404 8 805 10a b100 8 801 14 e002 6951 214 2f2 116 6 16 1b3 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a bd b404 8 805 ee b500 8 801 14 e002 6976 214 2f0 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b400 8 801 14 e002 6979 214 2f1 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 111 b300 8 801 14 e102 6955 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c1 b404 8 805 111 b200 8 801 14 e302 699a 214 2f2 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 147 b404 8 805 15 a07 8 3a06 174 b500 8 801 15 903 8 ab02 c6 e10 a 3411 e c012 a 3f13 b f15 7 1f15 65ab 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 ab02 68f0 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b c 930a b9 b404 8 805 ee b600 8 801 14 ab02 6969 214 2f2 116 6 16 1b7 116 6 16 300 800c 8 80d 10a 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 69b1 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 ee bb00 b 801 14 ab02 69cb 214 2f5 116 6 16 1b7 116 6 16 2fc 800c 8 80d 103 8 8 809 d2 b404 8 805 106 b100 8 801 14 ab02 698d 214 2f7 116 6 16 1b3 116 6 16 300 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 b500 8 801 14 ab02 6a02 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d ba 8 8 809 c1 b404 8 805 f2 b400 8 801 14 ab02 69ff 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b300 8 801 14 ac02 69e1 214 2f6 116 6 16 1b3 116 6 16 301 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b200 8 801 14 ae02 69e0 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 14b b404 8 805 15 907 8 e006 19e b500 8 801 15 903 8 9302 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 6699 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 161 b600 8 801 15 903 8 7d02 687e 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 90b 8 930a b9 b404 8 805 f9 b600 8 801 14 7d02 6965 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 161 ba00 8 801 15 903 8 6702 6938 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 6702 69cc 214 2f1 116 a 16 1b3 116 6 16 2fd 800c 8 80d 103 8 8 809 ce b404 b 805 ee bc00 8 801 14 6702 69ae 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 ee bb00 8 801 14 6702 6a05 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d b7 8 8 809 c5 b404 8 805 f5 ba00 8 801 14 6702 6a02 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b900 8 801 14 6802 69e4 214 2f3 116 6 16 1b3 116 6 16 2fc 800c 8 80d bb 8 8 809 c1 b404 8 805 111 b800 8 801 14 6a02 69e7 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 30e 132 ff08 8 809 15 90b 8 670a 147 b404 8 805 19 907 8 ab06 1a5 b500 8 801 15 903 8 7d02 c6 f10 a 3411 a b012 a 3e13 b f15 7 1f15 6696 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 f2 b600 8 801 14 7d02 68eb 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 930a bd b404 8 805 ee b600 8 801 18 7d02 6960 214 2f6 116 6 16 1b7 116 6 16 301 800c 8 80d 10a 8 8 809 c5 b404 8 805 ee ba00 8 801 14 7d02 69a9 214 2f6 116 6 16 1b7 116 6 16 2fd 800c c 80d f0 8 8 809 c5 b404 8 805 ee bb00 8 801 14 7d02 69c4 214 2f6 116 6 16 1b7 116 6 16 2fd 800c 8 80d 107 8 8 809 d2 b404 8 805 106 b100 8 801 14 7d02 698b 214 2f7 116 6 16 1b7 116 6 16 2fd 800c 8 80d f4 8 8 809 c1 b404 8 805 f2 b500 8 801 14 7d02 69c4 214 2f3 116 a 16 1b7 116 6 16 2fd 800c 8 80d bb 8 8 809 c1 b404 8 805 f2 b400 8 801 14 7d02 69fa 214 2f2 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b300 8 801 14 7e02 69dc 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d bb 8 8 809 c1 b404 8 805 115 b200 8 801 14 8002 69d8 214 2f3 116 6 16 1b7 116 6 16 3aa 810c 8 80d 15 80f 8 790e 12c ff08 8 809 15 80b 8 fe0a 171 b404 8 805 15 907 8 9306 177 b500 8 801 15 903 8 e002 ca c10 a 3411 a b012 a 3e13 b f15 7 1f15 6651 214 2f4 116 6 16 1b3 116 6 16 35d 810c 8 80d 15 80f 8 30e 130 ff08 8 809 15 90b 8 d0a 128 b404 8 805 15 907 8 7d06 e6 b600 8 801 14 e002 687c 214 2f5 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 1d0a c0 b404 8 805 ee b600 8 801 14 e002 696c 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 2e0a 128 b404 8 805 15 907 8 6706 e6 ba00 8 801 14 e002 68f1 214 2f3 116 6 16 1b3 116 6 16 2fd 810c 8 80d 138 ff08 8 809 15 90b 8 400a b9 b404 8 805 ee bb00 8 801 14 e002 6975 214 2f3 116 6 16 1b7 116 6 16 2f9 810c 8 80d 138 ff08 8 809 15 90b 8 530a b9 b404 8 805 106 b100 8 801 14 e002 695d 214 2f3 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 670a b9 b404 8 805 f2 b500 8 801 14 e002 6974 214 2f2 116 6 16 1b7 116 6 16 2fd 810c 8 80d 134 ff08 8 809 15 90b 8 7d0a c0 b404 8 805 f2 b400 8 801 14 e002 696f 214 2f0 116 6 16 1b7 116 6 16 2fc 810c 8 80d 134 ff08 8 809 15 90b 8 930a b9 b404 8 805 115 b300 8 801 14 e102 694e 214 2f4 116 6 16 1b3 116 6 16 2fd 810c 8 80d 104 8 8 809 c5 b404 8 805 111 b200 8 801 14 e302 6996 214 2f4 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 30e 20d ff08 8 809 15 90b 8 670a 178 b404 8 805 15 907 8 7d06 174 b500 8 801 15 903 8 ab02 c6 c10 a 3411 a b012 a 3e13 b f15 7 1f15 657c 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 7d0a b9 b404 8 805 ee b600 8 801 14 ab02 68f7 214 2f2 116 6 16 1b3 116 6 16 33f 800c 8 80d 13e ff08 8 809 15 90b 8 930a b9 b404 8 805 ee b600 8 801 14 ab02 6930 214 2f2 116 6 16 1b7 116 6 16 332 800c c 80d 10a 8 8 809 c1 b404 8 805 ee ba00 8 801 14 ab02 697e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f0 8 8 809 c1 b404 8 805 ee bb00 8 801 14 ab02 69cf 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d f9 8 8 809 ce b404 8 805 f2 bc00 8 801 14 ab02 69b3 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 103 8 8 809 c1 b404 8 805 f2 bb00 8 801 14 ab02 69ba 214 2f0 116 6 16 1b7 116 6 16 2fd 800c 8 80d b7 8 8 809 c1 b404 8 805 f2 ba00 8 801 14 ab02 6a08 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c1 b404 8 805 115 b900 8 801 14 ac02 69e4 214 2f4 116 6 16 1b3 116 6 16 2fc 800c 8 80d b7 8 8 809 c5 b404 8 805 111 b800 8 801 14 ae02 69e4 214 2f2 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 790e 136 ff08 8 809 15 80b 8 c90a 147 b404 8 805 15 907 8 e006 10d b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 673b 214 2f2 116 6 16 1b3 116 6 16 35d 800c b 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 111 b700 c 801 14 ae02 68d5 214 2f3 116 6 16 1b7 116 6 16 344 800c 8 80d 13a ff08 8 809 15 80b 8 e20a b9 b404 8 805 115 b700 8 801 14 ac02 6902 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a b9 b404 8 805 122 b700 8 801 14 aa02 693e 214 2f2 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 122 b700 8 801 14 a802 6984 214 2f1 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 80b 8 c90a c6 b404 8 805 11e b700 8 801 14 a502 6810 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 c 809 15 80b 8 d50a b9 b404 8 805 135 b700 8 801 14 a802 68b2 214 2f4 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 80b 8 e20a b9 b404 8 805 135 b700 8 801 14 aa02 68e2 214 2f5 116 6 16 1b3 116 6 16 2fc 800c 8 80d 13e ff08 8 809 15 80b 8 f00a b9 b404 8 805 142 b700 8 801 14 ac02 691b 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 128 b700 8 801 14 ae02 697b 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 90b 8 400a 146 b404 8 805 15 907 8 ab06 120 b700 8 801 14 b102 c6 f10 a 3411 a c012 a 3f13 b f15 7 1f15 6681 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a b9 b404 8 805 12c b700 8 801 14 ae02 68b2 214 2f7 116 6 16 1b7 116 6 16 347 800c 8 80d 13e ff08 8 809 15 90b 8 670a b9 b404 8 805 12c b700 8 801 14 ac02 68df 214 2f7 116 6 16 1b7 116 6 16 301 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a bd b404 8 805 139 b700 8 801 14 aa02 6918 214 2f7 116 6 16 1b7 116 6 16 2fc 800c 8 80d 10e 8 8 809 c5 b404 8 805 135 b700 8 801 14 a802 6964 214 2f7 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1ac ff08 8 809 15 90b 8 930a b9 b404 8 805 139 b700 8 801 14 a502 682e 214 2f6 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a bd b404 8 805 139 b700 8 801 14 a802 68a9 214 2f3 116 6 16 1b7 116 a 16 343 800c 8 80d 138 ff08 8 809 15 90b 8 c50a bd b404 8 805 135 b700 8 801 18 aa02 68d9 214 2f2 116 6 16 1b7 116 6 16 2ff 800c 8 80d 138 ff08 8 809 15 90b 8 e00a b9 b404 8 805 146 b700 8 801 14 ac02 691c 214 2f3 116 6 16 1b7 116 6 16 301 800c 8 80d 108 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6976 214 2f3 116 6 16 1b7 116 6 16 361 800c 8 80d 15 80f 8 790e 1fb ff08 8 809 15 80b 8 c90a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66f3 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a bd b404 8 805 128 b700 8 801 14 ae02 68be 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13a ff08 8 809 15 80b 8 e20a bd b404 8 805 128 b700 8 801 14 ac02 68ee 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 f00a bd b404 8 805 135 b700 8 801 14 aa02 6927 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10a 8 c 809 c1 b404 8 805 135 b700 8 801 14 a802 696c 214 2f2 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 138 b700 8 801 14 a502 680c 214 2f2 116 6 16 1b3 116 a 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 90b 8 530a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 343 800c 8 80d 13a ff08 8 809 15 90b 8 670a b9 b404 8 805 139 b700 8 801 14 aa02 68de 214 2f3 116 6 16 1b7 116 6 16 2fc 800c 8 80d 13a ff08 8 809 15 90b 8 7d0a b9 b404 8 805 146 b700 8 801 14 ac02 691a 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 10a 8 8 809 c1 b404 8 805 12c b700 8 801 14 ae02 6975 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1dd ff08 8 809 15 90b 8 400a b9 b404 8 805 128 b700 8 801 14 b102 c6 c10 e 3411 a c012 a 3f13 b f15 7 1f15 671d 214 2f5 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 90b 8 530a b9 b404 8 805 128 b700 8 801 14 ae02 68c0 214 2f5 116 6 16 1b3 116 6 16 343 800c 8 80d 13e ff08 8 809 15 90b 8 670a b9 b404 8 805 128 b700 8 801 14 ac02 68ee 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 90b 8 7d0a b9 b404 8 805 135 b700 8 801 14 aa02 692a 214 2f3 116 6 16 1b3 116 6 16 2fd 800c 8 80d 10e 8 8 809 c1 b404 8 805 135 b700 8 801 14 a802 696c 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 208 ff08 8 809 15 90b 8 930a bd b404 8 805 135 b700 8 801 14 a502 67dc 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 12c ff08 8 809 15 90b 8 ab0a b9 b404 8 805 139 b700 8 801 14 a802 68b7 214 2f3 116 6 16 1b7 116 6 16 33f 800c 8 80d 134 ff08 8 809 15 90b 8 c50a b9 b404 8 805 139 b700 8 801 14 aa02 68eb 214 2f0 116 6 16 1b7 116 6 16 349 800c 8 80d 134 ff08 8 809 15 90b 8 e00a bd b404 8 805 142 b700 8 801 14 ac02 68d0 214 2f4 116 6 16 1b3 116 6 16 2fd 800c 8 80d 104 8 8 809 c5 b404 8 805 128 b700 8 801 14 ae02 697e 214 2f5 116 6 16 1b3 116 6 16 3a3 800c 8 80d 15 80f 8 790e 214 ff08 8 809 15 80b 8 c90a b9 b404 8 805 12c b700 8 801 14 b102 c6 c10 a 3411 a c012 a 3f13 b f15 7 1f15 66a2 214 2f4 116 6 16 1b3 116 6 16 35d 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a b9 b404 8 805 128 b700 8 801 14 ae02 68be 214 2f2 116 6 16 1b3 116 6 16 2fd 800c 8 80d 13e ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 ac02 6939 214 2f3 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1d9 ff08 8 809 15 80b 8 c90a b9 b404 8 805 139 b700 8 801 14 aa02 6809 214 2f2 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 e 132 ff08 8 809 15 80b 8 d50a b9 b404 8 805 139 b700 8 801 14 a802 68b1 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 c90a b9 b404 8 805 138 b700 8 801 14 a502 6923 214 2f3 116 6 16 1b7 116 6 16 2fd 800c 8 80d 13a ff08 8 809 15 80b 8 be0a b9 b404 8 805 139 b700 8 801 14 a802 6927 214 2f0 116 6 16 1b7 116 6 16 35d 800c 8 80d 15 80f 8 790e 1e4 ff08 8 809 15 80b 8 c90a b9 b404 8 805 135 b700 8 801 14 aa02 6801 214 2f5 116 6 16 1b3 116 6 16 35c 800c 8 80d 15 80f 8 e 136 ff08 8 809 15 80b 8 d50a b9 b404 8 805 142 b700 8 801 14 ac02 68a9 214 2f4 116 6 16 1b3 116 6 16 336 800c 8 80d 13e ff08 8 809 15 80b 8 c90a b9 b404 8 805 128 b700 8 801 14 ae02 </a> <a name="dataWidth" val="32"/> <a name="label" val="regdump"/> <a name="labelvisible" val="true"/> </comp> <comp lib="6" loc="(160,375)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="6" loc="(165,138)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="6" loc="(165,263)" name="Text"> <a name="text" val="N.C."/> </comp> <comp lib="6" loc="(334,359)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Load regdump here"/> </comp> <comp loc="(490,210)" name="RegDumpProcessor"> <a name="label" val="redump"/> <a name="labelfont" val="SansSerif plain 10"/> <a name="labelloc" val="south"/> </comp> <wire from="(140,470)" to="(470,470)"/> <wire from="(140,90)" to="(470,90)"/> <wire from="(200,210)" to="(200,390)"/> <wire from="(200,210)" to="(210,210)"/> <wire from="(200,390)" to="(690,390)"/> <wire from="(450,260)" to="(460,260)"/> <wire from="(460,260)" to="(460,320)"/> <wire from="(460,320)" to="(490,320)"/> <wire from="(470,210)" to="(490,210)"/> <wire from="(470,220)" to="(470,470)"/> <wire from="(470,220)" to="(490,220)"/> <wire from="(470,90)" to="(470,210)"/> <wire from="(470,90)" to="(700,90)"/> <wire from="(660,210)" to="(710,210)"/> <wire from="(660,220)" to="(730,220)"/> <wire from="(660,260)" to="(710,260)"/> <wire from="(660,280)" to="(750,280)"/> <wire from="(660,320)" to="(690,320)"/> <wire from="(690,320)" to="(690,390)"/> <wire from="(700,120)" to="(840,120)"/> <wire from="(700,90)" to="(700,120)"/> <wire from="(700,90)" to="(760,90)"/> <wire from="(710,150)" to="(710,210)"/> <wire from="(710,150)" to="(840,150)"/> <wire from="(710,240)" to="(710,260)"/> <wire from="(710,240)" to="(840,240)"/> <wire from="(730,220)" to="(730,460)"/> <wire from="(730,460)" to="(830,460)"/> <wire from="(750,280)" to="(750,380)"/> <wire from="(750,380)" to="(830,380)"/> <wire from="(790,90)" to="(840,90)"/> <wire from="(830,180)" to="(840,180)"/> </circuit> <circuit name="WRAM"> <a name="appearance" val="custom"/> <a name="circuit" val="WRAM"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="115" stroke="#000000" stroke-width="2" width="150" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="68" y="69">M2</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="72" y="80">R/W</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="129">Addr</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="149">DB_in</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="166" y="149">DB_out</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" font-weight="bold" text-anchor="middle" x="125" y="44">NES WRAM</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="74" y="91">/RES</text> <circ-anchor facing="east" x="50" y="70"/> <circ-port dir="in" pin="160,190" x="50" y="130"/> <circ-port dir="in" pin="160,240" x="50" y="150"/> <circ-port dir="in" pin="160,280" x="50" y="80"/> <circ-port dir="in" pin="160,320" x="50" y="90"/> <circ-port dir="in" pin="160,40" x="50" y="70"/> <circ-port dir="out" pin="1000,210" x="200" y="150"/> </appear> <comp lib="0" loc="(1000,210)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="DB_out"/> <a name="output" val="true"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="Addr"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(160,240)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="DB_in"/> <a name="tristate" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(160,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="RnW"/> </comp> <comp lib="0" loc="(160,320)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="n_RES"/> </comp> <comp lib="0" loc="(160,40)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="M2"/> </comp> <comp lib="0" loc="(250,140)" name="Splitter"> <a name="bit0" val="none"/> <a name="bit1" val="none"/> <a name="bit10" val="none"/> <a name="bit11" val="0"/> <a name="bit12" val="1"/> <a name="bit13" val="2"/> <a name="bit14" val="3"/> <a name="bit15" val="4"/> <a name="bit2" val="none"/> <a name="bit3" val="none"/> <a name="bit4" val="none"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="none"/> <a name="bit8" val="none"/> <a name="bit9" val="none"/> <a name="fanout" val="5"/> <a name="incoming" val="16"/> </comp> <comp lib="0" loc="(290,210)" name="Constant"> <a name="value" val="0x8000"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(370,110)" name="NOR Gate"> <a name="inputs" val="5"/> <a name="size" val="70"/> </comp> <comp lib="1" loc="(450,180)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,150)" name="AND Gate"> <a name="inputs" val="3"/> <a name="negate2" val="true"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(570,190)" name="AND Gate"> <a name="inputs" val="3"/> <a name="size" val="30"/> </comp> <comp lib="1" loc="(950,210)" name="Controlled Buffer"> <a name="width" val="8"/> </comp> <comp lib="3" loc="(350,200)" name="Comparator"> <a name="mode" val="unsigned"/> <a name="width" val="16"/> </comp> <comp lib="4" loc="(620,120)" name="RAM"> <a name="addrWidth" val="16"/> <a name="appearance" val="classic"/> <a name="label" val="cpumem"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="labelvisible" val="true"/> </comp> <comp lib="6" loc="(735,294)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Load 64K CPU Memory dump here (with DPCM samples)"/> </comp> <wire from="(160,190)" to="(240,190)"/> <wire from="(160,240)" to="(590,240)"/> <wire from="(160,280)" to="(500,280)"/> <wire from="(160,320)" to="(510,320)"/> <wire from="(160,40)" to="(600,40)"/> <wire from="(240,140)" to="(240,190)"/> <wire from="(240,140)" to="(250,140)"/> <wire from="(240,190)" to="(310,190)"/> <wire from="(240,60)" to="(240,140)"/> <wire from="(240,60)" to="(580,60)"/> <wire from="(270,100)" to="(290,100)"/> <wire from="(270,110)" to="(290,110)"/> <wire from="(270,120)" to="(290,120)"/> <wire from="(270,130)" to="(290,130)"/> <wire from="(270,90)" to="(290,90)"/> <wire from="(290,210)" to="(310,210)"/> <wire from="(350,190)" to="(420,190)"/> <wire from="(370,110)" to="(410,110)"/> <wire from="(410,110)" to="(410,170)"/> <wire from="(410,170)" to="(420,170)"/> <wire from="(450,180)" to="(480,180)"/> <wire from="(480,140)" to="(480,180)"/> <wire from="(480,140)" to="(520,140)"/> <wire from="(500,160)" to="(500,200)"/> <wire from="(500,160)" to="(530,160)"/> <wire from="(500,200)" to="(500,280)"/> <wire from="(500,200)" to="(540,200)"/> <wire from="(510,150)" to="(510,190)"/> <wire from="(510,150)" to="(540,150)"/> <wire from="(510,190)" to="(510,320)"/> <wire from="(510,190)" to="(540,190)"/> <wire from="(510,320)" to="(940,320)"/> <wire from="(520,140)" to="(520,180)"/> <wire from="(520,140)" to="(540,140)"/> <wire from="(520,180)" to="(540,180)"/> <wire from="(570,150)" to="(590,150)"/> <wire from="(570,190)" to="(590,190)"/> <wire from="(580,130)" to="(620,130)"/> <wire from="(580,60)" to="(580,130)"/> <wire from="(590,150)" to="(590,170)"/> <wire from="(590,170)" to="(620,170)"/> <wire from="(590,180)" to="(590,190)"/> <wire from="(590,180)" to="(620,180)"/> <wire from="(590,210)" to="(590,240)"/> <wire from="(590,210)" to="(620,210)"/> <wire from="(600,190)" to="(620,190)"/> <wire from="(600,40)" to="(600,190)"/> <wire from="(860,210)" to="(930,210)"/> <wire from="(940,220)" to="(940,320)"/> <wire from="(950,210)" to="(1000,210)"/> </circuit> <circuit name="RegDumpProcessor"> <a name="appearance" val="custom"/> <a name="circuit" val="RegDumpProcessor"/> <a name="clabelfont" val="SansSerif plain 12"/> <a name="simulationFrequency" val="256.0"/> <appear> <rect fill="none" height="155" stroke="#000000" stroke-width="2" width="170" x="50" y="55"/> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="71" y="80">PHI0</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="91" y="188">redump_data</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="184" y="80">Core R/W</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="188" y="129">Core AB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="187" y="149">Core DB</text> <text dominant-baseline="central" font-family="SansSerif" font-size="14" font-weight="bold" text-anchor="middle" x="137" y="40">RegDumpProcessor</text> <text dominant-baseline="central" font-family="SansSerif" font-size="12" text-anchor="middle" x="173" y="188">regdump_addr</text> <circ-anchor facing="east" x="50" y="80"/> <circ-port dir="in" pin="150,280" x="50" y="90"/> <circ-port dir="in" pin="150,80" x="50" y="80"/> <circ-port dir="in" pin="200,460" x="50" y="190"/> <circ-port dir="out" pin="1540,140" x="220" y="130"/> <circ-port dir="out" pin="1540,190" x="220" y="150"/> <circ-port dir="out" pin="1540,440" x="220" y="190"/> <circ-port dir="out" pin="1540,50" x="220" y="80"/> <circ-port dir="out" pin="620,670" x="220" y="90"/> </appear> <comp lib="0" loc="(1000,210)" name="Constant"> <a name="value" val="0x4000"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(1330,40)" name="Constant"/> <comp lib="0" loc="(1390,180)" name="NoConnect"> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1400,130)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(1470,400)" name="Constant"/> <comp lib="0" loc="(1470,430)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(1470,450)" name="Constant"/> <comp lib="0" loc="(150,280)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="SkipRegOp"/> </comp> <comp lib="0" loc="(150,80)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="PHI0"/> </comp> <comp lib="0" loc="(1540,140)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Core_AB"/> <a name="output" val="true"/> <a name="width" val="16"/> </comp> <comp lib="0" loc="(1540,190)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Core_DB"/> <a name="output" val="true"/> <a name="width" val="8"/> </comp> <comp lib="0" loc="(1540,440)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="redump_addr"/> <a name="output" val="true"/> <a name="width" val="24"/> </comp> <comp lib="0" loc="(1540,50)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="Core_RnW"/> <a name="output" val="true"/> </comp> <comp lib="0" loc="(200,460)" name="Pin"> <a name="appearance" val="classic"/> <a name="label" val="regdump_data"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(210,670)" name="Constant"> <a name="value" val="0x2"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(210,730)" name="Constant"> <a name="value" val="0x2"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(360,150)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(360,170)" name="Constant"/> <comp lib="0" loc="(360,210)" name="Constant"/> <comp lib="0" loc="(360,230)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(370,330)" name="Constant"> <a name="value" val="0x20"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(440,700)" name="Constant"> <a name="width" val="32"/> </comp> <comp lib="0" loc="(450,140)" name="Constant"> <a name="value" val="0x0"/> </comp> <comp lib="0" loc="(540,340)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(550,230)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(620,670)" name="Pin"> <a name="appearance" val="classic"/> <a name="facing" val="west"/> <a name="label" val="PhiDecCnt"/> <a name="output" val="true"/> <a name="width" val="32"/> </comp> <comp lib="0" loc="(770,280)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="2"/> <a name="bit11" val="2"/> <a name="bit12" val="2"/> <a name="bit13" val="2"/> <a name="bit14" val="2"/> <a name="bit15" val="2"/> <a name="bit16" val="none"/> <a name="bit17" val="none"/> <a name="bit18" val="none"/> <a name="bit19" val="none"/> <a name="bit2" val="0"/> <a name="bit20" val="none"/> <a name="bit21" val="none"/> <a name="bit22" val="none"/> <a name="bit23" val="none"/> <a name="bit24" val="none"/> <a name="bit25" val="none"/> <a name="bit26" val="none"/> <a name="bit27" val="none"/> <a name="bit28" val="none"/> <a name="bit29" val="none"/> <a name="bit3" val="0"/> <a name="bit30" val="none"/> <a name="bit31" val="none"/> <a name="bit4" val="0"/> <a name="bit5" val="none"/> <a name="bit6" val="none"/> <a name="bit7" val="1"/> <a name="bit8" val="2"/> <a name="bit9" val="2"/> <a name="fanout" val="3"/> <a name="incoming" val="32"/> </comp> <comp lib="0" loc="(900,330)" name="Constant"> <a name="value" val="0x0"/> <a name="width" val="11"/> </comp> <comp lib="0" loc="(940,310)" name="Splitter"> <a name="bit1" val="0"/> <a name="bit10" val="1"/> <a name="bit11" val="1"/> <a name="bit12" val="1"/> <a name="bit13" val="1"/> <a name="bit14" val="1"/> <a name="bit15" val="1"/> <a name="bit2" val="0"/> <a name="bit3" val="0"/> <a name="bit4" val="0"/> <a name="bit5" val="1"/> <a name="bit6" val="1"/> <a name="bit7" val="1"/> <a name="bit8" val="1"/> <a name="bit9" val="1"/> <a name="facing" val="west"/> <a name="incoming" val="16"/> </comp> <comp lib="1" loc="(1050,220)" name="OR Gate"> <a name="size" val="30"/> <a name="width" val="16"/> </comp> <comp lib="1" loc="(1360,270)" name="NOT Gate"/> <comp lib="1" loc="(1410,260)" name="AND Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(290,120)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(410,650)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="1" loc="(740,190)" name="AND Gate"> <a name="inputs" val="4"/> <a name="negate3" val="true"/> </comp> <comp lib="1" loc="(960,490)" name="OR Gate"> <a name="size" val="30"/> </comp> <comp lib="2" loc="(1380,50)" name="Multiplexer"/> <comp lib="2" loc="(1440,140)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="16"/> </comp> <comp lib="2" loc="(1440,190)" name="Multiplexer"> <a name="width" val="8"/> </comp> <comp lib="2" loc="(400,160)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(400,220)" name="Multiplexer"> <a name="selloc" val="tr"/> </comp> <comp lib="2" loc="(410,320)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> </comp> <comp lib="2" loc="(490,710)" name="Multiplexer"> <a name="selloc" val="tr"/> <a name="width" val="32"/> </comp> <comp lib="3" loc="(350,660)" name="Comparator"> <a name="mode" val="unsigned"/> <a name="width" val="32"/> </comp> <comp lib="3" loc="(350,720)" name="Subtractor"> <a name="width" val="32"/> </comp> <comp lib="3" loc="(630,200)" name="Comparator"> <a name="mode" val="unsigned"/> <a name="width" val="32"/> </comp> <comp lib="3" loc="(630,330)" name="Comparator"> <a name="mode" val="unsigned"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(1510,440)" name="Counter"> <a name="appearance" val="classic"/> <a name="label" val="addr_cnt"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="max" val="0xffffff"/> <a name="ongoal" val="stay"/> <a name="trigger" val="falling"/> <a name="width" val="24"/> </comp> <comp lib="4" loc="(410,390)" name="Register"> <a name="appearance" val="classic"/> <a name="label" val="delta_phi_word"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(480,190)" name="Counter"> <a name="appearance" val="classic"/> <a name="label" val="phi_dec_cnt"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="max" val="0xffffffff"/> <a name="ongoal" val="stay"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(530,390)" name="Register"> <a name="appearance" val="classic"/> <a name="label" val="regop_word"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="width" val="32"/> </comp> <comp lib="4" loc="(730,500)" name="Register"> <a name="appearance" val="classic"/> <a name="label" val="cnt_ovf_reg"/> <a name="labelfont" val="SansSerif bold 12"/> <a name="width" val="1"/> </comp> <comp lib="6" loc="(1060,350)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Value (if write)"/> </comp> <comp lib="6" loc="(1096,209)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Reg Address"/> </comp> <comp lib="6" loc="(1110,395)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="1: Read register"/> </comp> <comp lib="6" loc="(1270,623)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="https://github.com/emu-russia/breaknes/blob/main/BreaksAPU/NSFPlayerInterop/RegDumpProcessor.cpp"/> </comp> <comp lib="6" loc="(1478,235)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="1: RegOp + Write"/> </comp> <comp lib="6" loc="(1489,365)" name="Text"> <a name="text" val="Falling edge"/> </comp> <comp lib="6" loc="(1520,95)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Default: Read address 0x0000"/> </comp> <comp lib="6" loc="(460,106)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="Load/Decrement Setup (1: Load; 0: Decrement)"/> </comp> <comp lib="6" loc="(775,90)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Do RegOp"/> </comp> <comp lib="6" loc="(785,515)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Load PHI Counter"/> </comp> <comp lib="6" loc="(835,240)" name="Text"> <a name="font" val="SansSerif bold 12"/> <a name="text" val="Reg Index (0-0x1f)"/> </comp> <comp lib="6" loc="(866,173)" name="Text"> <a name="font" val="SansSerif bold 14"/> <a name="text" val="RegOp Setup"/> </comp> <wire from="(1000,210)" to="(1020,210)"/> <wire from="(1050,220)" to="(1150,220)"/> <wire from="(1150,150)" to="(1150,220)"/> <wire from="(1150,150)" to="(1410,150)"/> <wire from="(1210,200)" to="(1210,360)"/> <wire from="(1210,200)" to="(1410,200)"/> <wire from="(1290,270)" to="(1290,380)"/> <wire from="(1290,270)" to="(1330,270)"/> <wire from="(1290,60)" to="(1290,270)"/> <wire from="(1290,60)" to="(1350,60)"/> <wire from="(1330,100)" to="(1330,250)"/> <wire from="(1330,100)" to="(1360,100)"/> <wire from="(1330,250)" to="(1380,250)"/> <wire from="(1330,40)" to="(1350,40)"/> <wire from="(1360,100)" to="(1420,100)"/> <wire from="(1360,270)" to="(1380,270)"/> <wire from="(1360,70)" to="(1360,100)"/> <wire from="(1380,50)" to="(1540,50)"/> <wire from="(1390,180)" to="(1410,180)"/> <wire from="(1400,130)" to="(1410,130)"/> <wire from="(1410,260)" to="(1420,260)"/> <wire from="(1420,100)" to="(1420,120)"/> <wire from="(1420,210)" to="(1420,260)"/> <wire from="(1440,140)" to="(1540,140)"/> <wire from="(1440,190)" to="(1540,190)"/> <wire from="(1470,400)" to="(1490,400)"/> <wire from="(1470,430)" to="(1480,430)"/> <wire from="(1470,450)" to="(1480,450)"/> <wire from="(1490,400)" to="(1490,420)"/> <wire from="(1490,460)" to="(1490,490)"/> <wire from="(150,280)" to="(200,280)"/> <wire from="(150,80)" to="(640,80)"/> <wire from="(1510,440)" to="(1540,440)"/> <wire from="(200,110)" to="(200,280)"/> <wire from="(200,110)" to="(260,110)"/> <wire from="(200,280)" to="(390,280)"/> <wire from="(200,460)" to="(250,460)"/> <wire from="(210,670)" to="(310,670)"/> <wire from="(210,730)" to="(310,730)"/> <wire from="(220,130)" to="(220,600)"/> <wire from="(220,130)" to="(260,130)"/> <wire from="(220,600)" to="(390,600)"/> <wire from="(250,310)" to="(250,460)"/> <wire from="(250,310)" to="(380,310)"/> <wire from="(250,460)" to="(250,650)"/> <wire from="(250,460)" to="(360,460)"/> <wire from="(250,650)" to="(250,710)"/> <wire from="(250,650)" to="(310,650)"/> <wire from="(250,710)" to="(310,710)"/> <wire from="(290,120)" to="(380,120)"/> <wire from="(290,520)" to="(290,620)"/> <wire from="(290,620)" to="(510,620)"/> <wire from="(350,650)" to="(360,650)"/> <wire from="(350,660)" to="(380,660)"/> <wire from="(350,720)" to="(460,720)"/> <wire from="(360,150)" to="(370,150)"/> <wire from="(360,170)" to="(370,170)"/> <wire from="(360,210)" to="(370,210)"/> <wire from="(360,230)" to="(370,230)"/> <wire from="(360,390)" to="(360,460)"/> <wire from="(360,390)" to="(380,390)"/> <wire from="(360,460)" to="(470,460)"/> <wire from="(360,640)" to="(360,650)"/> <wire from="(360,640)" to="(380,640)"/> <wire from="(370,330)" to="(380,330)"/> <wire from="(380,120)" to="(380,140)"/> <wire from="(380,140)" to="(380,200)"/> <wire from="(390,280)" to="(390,300)"/> <wire from="(390,410)" to="(390,600)"/> <wire from="(390,600)" to="(520,600)"/> <wire from="(400,160)" to="(420,160)"/> <wire from="(400,220)" to="(420,220)"/> <wire from="(410,320)" to="(430,320)"/> <wire from="(410,390)" to="(450,390)"/> <wire from="(410,650)" to="(470,650)"/> <wire from="(420,160)" to="(420,180)"/> <wire from="(420,180)" to="(450,180)"/> <wire from="(420,200)" to="(420,220)"/> <wire from="(420,200)" to="(450,200)"/> <wire from="(430,190)" to="(430,320)"/> <wire from="(430,190)" to="(450,190)"/> <wire from="(440,700)" to="(460,700)"/> <wire from="(450,140)" to="(460,140)"/> <wire from="(450,320)" to="(450,390)"/> <wire from="(450,320)" to="(590,320)"/> <wire from="(460,140)" to="(460,170)"/> <wire from="(460,210)" to="(460,250)"/> <wire from="(460,250)" to="(640,250)"/> <wire from="(470,390)" to="(470,460)"/> <wire from="(470,390)" to="(500,390)"/> <wire from="(470,650)" to="(470,690)"/> <wire from="(480,190)" to="(570,190)"/> <wire from="(490,710)" to="(510,710)"/> <wire from="(510,410)" to="(510,430)"/> <wire from="(510,430)" to="(750,430)"/> <wire from="(510,620)" to="(510,710)"/> <wire from="(520,410)" to="(520,600)"/> <wire from="(520,600)" to="(850,600)"/> <wire from="(530,390)" to="(770,390)"/> <wire from="(540,340)" to="(590,340)"/> <wire from="(550,230)" to="(580,230)"/> <wire from="(570,190)" to="(570,670)"/> <wire from="(570,190)" to="(590,190)"/> <wire from="(570,670)" to="(620,670)"/> <wire from="(580,210)" to="(580,230)"/> <wire from="(580,210)" to="(590,210)"/> <wire from="(630,200)" to="(660,200)"/> <wire from="(630,320)" to="(650,320)"/> <wire from="(640,170)" to="(640,250)"/> <wire from="(640,170)" to="(690,170)"/> <wire from="(640,250)" to="(640,530)"/> <wire from="(640,530)" to="(710,530)"/> <wire from="(640,80)" to="(640,170)"/> <wire from="(650,180)" to="(650,320)"/> <wire from="(650,180)" to="(690,180)"/> <wire from="(660,200)" to="(660,500)"/> <wire from="(660,200)" to="(690,200)"/> <wire from="(660,500)" to="(700,500)"/> <wire from="(670,210)" to="(670,460)"/> <wire from="(670,210)" to="(680,210)"/> <wire from="(670,460)" to="(780,460)"/> <wire from="(710,520)" to="(710,530)"/> <wire from="(730,500)" to="(780,500)"/> <wire from="(740,190)" to="(750,190)"/> <wire from="(750,100)" to="(1330,100)"/> <wire from="(750,100)" to="(750,190)"/> <wire from="(750,190)" to="(750,430)"/> <wire from="(750,430)" to="(920,430)"/> <wire from="(770,280)" to="(770,390)"/> <wire from="(780,460)" to="(780,500)"/> <wire from="(780,500)" to="(850,500)"/> <wire from="(790,250)" to="(890,250)"/> <wire from="(790,260)" to="(840,260)"/> <wire from="(790,270)" to="(820,270)"/> <wire from="(820,270)" to="(820,360)"/> <wire from="(820,360)" to="(1210,360)"/> <wire from="(840,260)" to="(840,380)"/> <wire from="(840,380)" to="(1290,380)"/> <wire from="(850,500)" to="(850,600)"/> <wire from="(850,500)" to="(930,500)"/> <wire from="(890,250)" to="(890,320)"/> <wire from="(890,320)" to="(920,320)"/> <wire from="(900,330)" to="(920,330)"/> <wire from="(920,430)" to="(920,480)"/> <wire from="(920,480)" to="(930,480)"/> <wire from="(940,310)" to="(980,310)"/> <wire from="(960,490)" to="(1490,490)"/> <wire from="(980,230)" to="(1020,230)"/> <wire from="(980,230)" to="(980,310)"/> </circuit> </project>
{ "repo_name": "emu-russia/breaks", "stars": "131", "repo_language": "Verilog", "file_name": "APUPlayerEvo.circ", "mime_type": "text/xml" }
@CALL "%~dp0micromamba.exe" shell init --shell=cmd.exe --prefix="%~dp0\" start cmd /k "%~dp0condabin\micromamba.bat" activate sd
{ "repo_name": "camenduru/stable-diffusion-webui-portable", "stars": "50", "repo_language": "Batchfile", "file_name": "FUNDING.yml", "mime_type": "text/plain" }
@CALL "%~dp0micromamba.exe" create -n sd python=3.10 git git-lfs -c conda-forge -r "%~dp0\" -y @CALL "%~dp0micromamba.exe" shell init --shell=cmd.exe --prefix="%~dp0\" @CALL condabin\micromamba.bat activate sd @CALL set GDOWN_CACHE=cache\gdown @CALL set TORCH_HOME=cache\torch @CALL set HF_HOME=cache\huggingface @CALL set PYTHONDONTWRITEBYTECODE=1 @CALL pip install xformers==0.0.16 @CALL git clone -b v2.2 https://github.com/camenduru/stable-diffusion-webui @CALL cd stable-diffusion-webui @CALL python -B launch.py --xformers @CALL PAUSE
{ "repo_name": "camenduru/stable-diffusion-webui-portable", "stars": "50", "repo_language": "Batchfile", "file_name": "FUNDING.yml", "mime_type": "text/plain" }
@CALL "%~dp0micromamba.exe" shell init --shell=cmd.exe --prefix="%~dp0\" @CALL condabin\micromamba.bat activate sd @CALL set GDOWN_CACHE=cache\gdown @CALL set TORCH_HOME=cache\torch @CALL set HF_HOME=cache\huggingface @CALL set PYTHONDONTWRITEBYTECODE=1 @CALL cd stable-diffusion-webui @CALL python -B webui.py --xformers @CALL PAUSE
{ "repo_name": "camenduru/stable-diffusion-webui-portable", "stars": "50", "repo_language": "Batchfile", "file_name": "FUNDING.yml", "mime_type": "text/plain" }
🐣 Please follow me for new updates https://twitter.com/camenduru <br /> 🔥 Please join our discord server https://discord.gg/k5BwmmvJJU <br /> 🥳 Please join my patreon community https://patreon.com/camenduru <br /> ## Main Repo https://github.com/camenduru/stable-diffusion-webui/tree/v2.2 ## Stable Diffusion WebUI Portable This Project Aims for 100% Offline Stable Diffusion (People without internet or with slow internet can get it via USB or HD-DVD) ## Preparation Guide - Download repo zip file extract - Run install.bat - Download all models and put into stable-diffusion-webui\models\Stable-diffusion folder - Test with run.bat - Delete install.bat and pkgs folder - Zip - Share 🎉 ## Optional - Edit interrogate.py (If you want to use Interrogate CLIP feature) - Open stable-diffusion-webui\modules\interrogate.py - Add `from modules.paths import script_path` line after `from modules import devices, paths, lowvram` line - Find `model, preprocess = clip.load(clip_model_name)` - Change to `model, preprocess = clip.load(name=clip_model_name, download_root=os.path.join(script_path, 'cache/clip'))` micromamba.exe from https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html Example Project: https://camenduru.itch.io/stable-diffusion-webui ## Example Project Preparation (Youtube Video) [![How to Use Stable Diffusion Webui Colab](https://i.imgur.com/Zi3LsXj.jpg)](https://www.youtube.com/watch?v=PHZ0VC_Losk)
{ "repo_name": "camenduru/stable-diffusion-webui-portable", "stars": "50", "repo_language": "Batchfile", "file_name": "FUNDING.yml", "mime_type": "text/plain" }
# These are supported funding model platforms github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: camenduru open_collective: # Replace with a single Open Collective username ko_fi: camenduru tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
{ "repo_name": "camenduru/stable-diffusion-webui-portable", "stars": "50", "repo_language": "Batchfile", "file_name": "FUNDING.yml", "mime_type": "text/plain" }
indent_type = "Spaces"
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
.PHONY: test test: nvim --headless -u test/minimal.vim -c "lua require(\"plenary.test_harness\").test_directory_command('test {minimal_init = \"test/minimal.vim\"}')" .PHONY: test-file test-file: nvim --headless --noplugin -u test/minimal.vim -c "lua require(\"plenary.busted\").run(\"$(FILE)\")"
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
# ARCHIVAL NOTICE Please check out [typescript.nvim](https://github.com/jose-elias-alvarez/typescript.nvim), a minimal `typescript-language-server` integration plugin written in TypeScript. You are free to use nvim-lsp-ts-utils in its current state (or copy the functionality you need into your Neovim config) but it will no longer receive updates or bug fixes. # nvim-lsp-ts-utils Utilities to improve the TypeScript development experience for Neovim's built-in LSP client. ## Requirements - Neovim 0.6.0+ - [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig), which you are (probably) already using to configure `typescript-language-server` - [plenary.nvim](https://github.com/nvim-lua/plenary.nvim) ## Features - Organize imports (exposed as `:TSLspOrganize`) Async by default. A sync variant is available and exposed as `:TSLspOrganizeSync` (useful for running on save). - Rename file and update imports (exposed as `:TSLspRenameFile`) Enter a new path (based on the current file's path) and watch the magic happen. - Import all missing imports (exposed as `:TSLspImportAll`) Gets all code actions, then matches against the action's title to determine whether it's an import action. Also organizes imports afterwards to merge imports from the same source. **Note**: `:TSLspImportAll` depends on `tsserver` diagnostics, meaning that the function won't work for JavaScript files unless you set `"checkJs": true` inside `tsconfig.json` / `jsconfig.json`. By default, the command will resolve conflicting imports by checking other imports in the same file and other open buffers. In Git repositories, it will check project files to improve accuracy. You can alter the weight given to each factor by modifying `import_all_priorities` (see below). This feature has a minimal performance impact, but you can disable it entirely by setting `import_all_priorities` to `nil`. `:TSLspImportAll` will also scan the content of other open buffers to resolve import priority, limited by `import_all_scan_buffers`. This has a positive impact on import accuracy but may affect performance when run with a large number (100+) of loaded buffers. Instead of priority, you could also set `import_all_select_source` to `true`, which will prompt you to choose from the available options when there's a conflict. - Import missing import under cursor (exposed as `:TSLspImportCurrent`) Adds the missing import under the cursor. Affected by the same options as `:TSLspImportAll`. - Import on completion Adds missing imports on completion confirm (`<C-y>`) when using the built-in LSP `omnifunc`. Enable by setting `enable_import_on_completion` to `true` inside `setup` (see below). - Avoid organizing imports By default `always_organize_imports` is set to `true`, every call to `:TSLspImportAll` or `:TSLspImportCurrent` will also run `:TSLspOrganize` to fix possible duplicated imports. If `always_organize_imports` is set to `false`, it will only run `:TSLspOrganize` in situations where is necessary: i.e. two new imports from the same module. - Fix invalid ranges `tsserver` uses non-compliant ranges in some code actions (most notably "Move to a new file"), which makes them [not work properly in Neovim](https://github.com/neovim/neovim/issues/14469). The plugin fixes these ranges so that the affected actions work as expected. You can enable this feature by calling `setup_client` in your configuration (see below). - Inlay hints (exposed as `:TSLspInlayHints`/`:TSLspDisableInlayHints`/`:TSLspToggleInlayHints`) `tsserver` has added experimental support for inlay hints as of Typescript v4.4.2. Note that you need to set `init_options` for this feature to work. Please see [Setup](#setup) for instructions. Supports the following settings: - `auto_inlay_hints` (boolean): Set inlay hints on every new buffer visited automatically. Note that it would stop doing so if you call `:TSDisableInlayHints` and will continue if you call `:TSLspInlayHints`. If false, you need to call `:TSInlayHints` for every buffer to see its inlay hints. Defaults to `true`. - `inlay_hints_highlight` (string): Highlight group used for inlay hints. Defaults to "Comment". - `inlay_hints_priority` (number): Priority of the hint extmarks. Change this value if the inlay hints conflict with other extmarks. Defaults to 200. - `inlay_hints_throttle` (number): Throttle time of inlay hints requests in ms. Defaults to 150. - `inlay_hints_format` (table): Format options for individual kind of inlay hints. See [Setup](#setup) section for default settings and example. - Filter `tsserver` diagnostics Some `tsserver` diagnostics may be annoying or can result in duplicated messages when used with a linter. For example, to disable the hint about RequireJS modules, set `filter_out_diagnostics_by_code` to `{ 80001 }` and to disable all hints, set `filter_out_diagnostics_by_severity` to `{ "hint" }`. Like fixing invalid ranges, this function requires calling `setup_client` in your configuration (see below). Note: filtering out error code 2304 (unused variables) will break `:TSLspImportAll` functionality. ### Experimental Features - Update imports on file move Watches the root directory for file move / rename events and updates imports accordingly. The plugin will attempt to determine if the current root directory has a Git root and watch all non-ignored directories. Supports the following settings: - `update_imports_on_move` (boolean): enables this feature. Set to `false` by default. - `require_confirmation_on_move` (boolean): if `true`, prompts for confirmation before updating imports. Set to `false` by default. - `watch_dir` (string, nil): sets a fallback directory that the plugin will watch for changes if it can't find a Git root from the current root directory. Path is relative to the current root directory. Set to `nil` by default. Note that if the root directory does not have a Git root and `watch_dir` is `nil` or fails to resolve, the plugin will not enable file watching. This is to prevent performance issues from watching `node_modules` and irreversible changes from modifying files not under version control. ## Setup Install using your favorite plugin manager and add to your [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig) `tsserver.setup` function. An example showing the available settings and their defaults: ```lua local lspconfig = require("lspconfig") lspconfig.tsserver.setup({ -- Needed for inlayHints. Merge this table with your settings or copy -- it from the source if you want to add your own init_options. init_options = require("nvim-lsp-ts-utils").init_options, -- on_attach = function(client, bufnr) local ts_utils = require("nvim-lsp-ts-utils") -- defaults ts_utils.setup({ debug = false, disable_commands = false, enable_import_on_completion = false, -- import all import_all_timeout = 5000, -- ms -- lower numbers = higher priority import_all_priorities = { same_file = 1, -- add to existing import statement local_files = 2, -- git files or files with relative path markers buffer_content = 3, -- loaded buffer content buffers = 4, -- loaded buffer names }, import_all_scan_buffers = 100, import_all_select_source = false, -- if false will avoid organizing imports always_organize_imports = true, -- filter diagnostics filter_out_diagnostics_by_severity = {}, filter_out_diagnostics_by_code = {}, -- inlay hints auto_inlay_hints = true, inlay_hints_highlight = "Comment", inlay_hints_priority = 200, -- priority of the hint extmarks inlay_hints_throttle = 150, -- throttle the inlay hint request inlay_hints_format = { -- format options for individual hint kind Type = {}, Parameter = {}, Enum = {}, -- Example format customization for `Type` kind: -- Type = { -- highlight = "Comment", -- text = function(text) -- return "->" .. text:sub(2) -- end, -- }, }, -- update imports on file move update_imports_on_move = false, require_confirmation_on_move = false, watch_dir = nil, }) -- required to fix code action ranges and filter diagnostics ts_utils.setup_client(client) -- no default maps, so you may want to define some here local opts = { silent = true } vim.api.nvim_buf_set_keymap(bufnr, "n", "gs", ":TSLspOrganize<CR>", opts) vim.api.nvim_buf_set_keymap(bufnr, "n", "gr", ":TSLspRenameFile<CR>", opts) vim.api.nvim_buf_set_keymap(bufnr, "n", "gi", ":TSLspImportAll<CR>", opts) end, }) ``` ## Integrations via null-ls You may want to set up integrations via [null-ls.nvim](https://github.com/jose-elias-alvarez/null-ls.nvim) to provide formatting, diagnostics, and code actions. null-ls includes these integrations out-of-the-box, so they don't depend on this plugin, but since I consider them an integral part of the TypeScript development experience, I'm including instructions here for ESLint and Prettier, two common options. ### Setting up null-ls To enable null-ls and set up integrations, install it via your plugin manager and add the following snippet to your LSP configuration: ```lua local null_ls = require("null-ls") null_ls.setup({ sources = { null_ls.builtins.diagnostics.eslint, -- eslint or eslint_d null_ls.builtins.code_actions.eslint, -- eslint or eslint_d null_ls.builtins.formatting.prettier -- prettier, eslint, eslint_d, or prettierd }, }) ``` null-ls provides other built-in sources for the JavaScript ecosystem. I've included some alternatives above, and you can see the full list [here](https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md). To set up more sources, add them to the `sources` table in `null_ls.setup`. To learn about formatting files and setting up formatting on save, check out the [null-ls FAQ](https://github.com/jose-elias-alvarez/null-ls.nvim#faq). To see the full list of configuration options, see the [config documentation](https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/CONFIG.md). ### Configuring sources null-ls allows configuring built-in sources via the `with` method, which you can learn about [here](https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#configuration). For example, to configure `eslint` to use a project-local executable from `node_modules` when available but fall back to a global executable, use this configuration: ```lua local null_ls = require("null-ls") null_ls.setup({ sources = { null_ls.builtins.diagnostics.eslint.with({ prefer_local = "node_modules/.bin", }), }, }) ``` To configure `eslint` to _only_ run when a project-local executable is available in `node_modules`, use the following: ```lua local null_ls = require("null-ls") null_ls.setup({ sources = { null_ls.builtins.diagnostics.eslint.with({ only_local = "node_modules/.bin", }), }, }) ``` You can use the same options for `prettier` or any other built-in source. ### ESLint Notes - Vanilla `eslint` is absurdly slow and you'll see a noticeable delay on each action when using it. If possible, I highly, highly recommend using [eslint_d](https://github.com/mantoni/eslint_d.js). It works out-of-the-box for diagnostics and code actions and can also work as a formatter via [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier#recommended-configuration). - Since null-ls wraps the ESLint CLI, it may have trouble handling complex project structures. For these cases (e.g. monorepos), I recommend the [ESLint language server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#eslint), which can also provide diagnostics, code actions, and ESLint formatting. ## Troubleshooting 1. Make sure you are running the latest version of this plugin and its dependencies. 2. Check your configuration and make sure it's in line with the latest version of this document. 3. Set `debug = true` in your config and inspect the output in `:messages` to see if it matches what you expect. If those options don't help, please open up an issue and provide the requested information. If you have a question or issue related to null-ls, please post a discussion question or open an issue on the [null-ls repository](https://github.com/jose-elias-alvarez/null-ls.nvim). ## Tests Clone the repository and run `make test`. The suite has the same requirements as the plugin. ## Recommended Plugins - [JoosepAlviste/nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring): sets `commentstring` intelligently based on the cursor's position in the file, meaning JSX comments work as you'd expect. - [windwp/nvim-ts-autotag](https://github.com/windwp/nvim-ts-autotag): uses Treesitter to automatically close and rename JSX tags. - [RRethy/nvim-treesitter-textsubjects](https://github.com/RRethy/nvim-treesitter-textsubjects): adds useful "smart" text objects that adapt to the current context. - The [ESLint language server](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#eslint): provides ESLint code actions, diagnostics, and formatting. ## Sponsors Thanks to everyone who sponsors my projects and makes continued development / maintenance possible! <!-- sponsors --><a href="https://github.com/yutkat"><img src="https://github.com/yutkat.png" width="60px" alt="" /></a><a href="https://github.com/hituzi-no-sippo"><img src="https://github.com/hituzi-no-sippo.png" width="60px" alt="" /></a><a href="https://github.com/sbc64"><img src="https://github.com/sbc64.png" width="60px" alt="" /></a><a href="https://github.com/milanglacier"><img src="https://github.com/milanglacier.png" width="60px" alt="" /></a><!-- sponsors -->
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
github: [jose-elias-alvarez]
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
contact_links: - name: Ask a question url: https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/discussions about: If you need help with configuration or something else
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
name: Bug Report title: "[BUG] " description: Report a problem in nvim-lsp-ts-utils labels: [bug] body: - type: checkboxes id: faq-prerequisite attributes: label: FAQ options: - label: I have checked [troubleshooting](https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils#troubleshooting) and it didn't resolve my problem. required: true - type: checkboxes id: issue-prerequisite attributes: label: Issues options: - label: I have checked [existing issues](https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/issues?q=is%3Aissue+) and there are no issues with the same problem. required: true - type: input attributes: label: "Neovim Version" description: "`nvim --version`:" validations: required: true - type: textarea attributes: label: "Steps to reproduce" validations: required: true - type: textarea attributes: label: "Expected behavior" description: "A description of the behavior you expected. May optionally include logs, images, or videos." validations: required: true - type: textarea attributes: label: "Actual behavior" description: "A description of the actual behavior." validations: required: true - type: textarea attributes: label: "Debug log" description: "Debug output from `:messages`" - type: dropdown id: help attributes: label: "Help" description: "Would you be able to resolve this issue by submitting a pull request?" options: - "Yes" - "Yes, but I don't know how to start. I would need guidance" - "No" validations: required: true - type: textarea attributes: label: "Implementation help" description: "If you selected yes in the last question please specify what you would need help with in order to fix this." validations: required: false
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
name: Feature request title: "[FEATURE REQUEST] " description: Request an enhancement for nvim-lsp-ts-utils labels: [enhancement] body: - type: checkboxes id: issue-prerequisite attributes: label: Issues options: - label: I have checked [existing issues](https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/issues) and there are no existing ones with the same request. required: true - type: textarea attributes: label: "Feature description" validations: required: true - type: dropdown id: help attributes: label: "Help" description: "Would you be able to implement this by submitting a pull request?" options: - "Yes" - "Yes, but I don't know how to start. I would need guidance" - "No" validations: required: true - type: textarea attributes: label: "Implementation help" description: "If you selected yes in the last question please specify in detail what you would need help with in order to implement this." validations: required: false
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
name: sponsors on: workflow_dispatch jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: JamesIves/github-sponsors-readme-action@v1.0.8 with: token: ${{ secrets.PAT }} file: "README.md" - name: commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: file_pattern: "README.md" commit_message: "doc: update sponsors"
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
name: default on: [pull_request] jobs: stylua: name: Check codestyle runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - uses: JohnnyMorganz/stylua-action@1.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} args: --color always --check .
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local api = vim.api local INLAY_HINTS_METHOD = "typescript/inlayHints" local M = {} local ns = api.nvim_create_namespace("ts-inlay-hints") M.ns = ns -- enabled[bufnr] = false M.enabled = {} local function resolve_bufnr(bufnr) if bufnr == 0 then bufnr = api.nvim_get_current_buf() end return bufnr end local function buf_enabled(bufnr) bufnr = resolve_bufnr(bufnr) if bufnr ~= nil then return M.enabled[bufnr] end end local function set_buf_enabled(bufnr) M.enabled[resolve_bufnr(bufnr)] = true end local function set_buf_disabled(bufnr) M.enabled[resolve_bufnr(bufnr)] = nil end -- end_line is inclusive local function del_hints(bufnr, start_line, end_line) for _, tuple in ipairs(api.nvim_buf_get_extmarks(bufnr, ns, { start_line, 0 }, { end_line, -1 }, {})) do api.nvim_buf_del_extmark(bufnr, ns, tuple[1]) end end local function del_all_hints() for bufnr, _ in pairs(M.enabled) do api.nvim_buf_clear_namespace(bufnr, ns, 0, -1) end M.enabled = {} end local function make_handler(handler_ctx) return function(err, result, ctx) local bufnr = ctx.bufnr local event = handler_ctx.event if not err and result and buf_enabled(bufnr) and event -- No tick in params means a whole update and (not ctx.params.tick or event.tick == ctx.params.tick) and api.nvim_buf_is_loaded(bufnr) then local start_line = event.start_line local end_line = event.end_line handler_ctx.event = nil local hints = result.inlayHints or {} local parsed = {} for _, value in ipairs(hints) do local pos = value.position local line = pos.line if parsed[line] then table.insert(parsed[line], value) table.sort(parsed[line], function(a, b) return a.position.character < b.position.character end) else parsed[line] = { value, } end end for i = start_line, end_line do if not parsed[i] then del_hints(bufnr, i, i) end end local lines_cnt = api.nvim_buf_line_count(bufnr) for line, value in pairs(parsed) do if line < lines_cnt then local old_hints = api.nvim_buf_get_extmarks(bufnr, ns, { line, 0 }, { line, -1 }, {}) table.sort(old_hints, function(a, b) return a[3] < b[3] end) for i = #value + 1, #old_hints do api.nvim_buf_del_extmark(bufnr, ns, old_hints[i][1]) end for i, hint in ipairs(value) do local format_opts = o.get().inlay_hints_format[hint.kind] api.nvim_buf_set_extmark(ctx.bufnr, ns, line, -1, { id = old_hints[i] and old_hints[i][1] or nil, -- reuse existing id if possible virt_text_pos = "eol", virt_text = { { format_opts.text and format_opts.text(hint.text) or hint.text, { o.get().inlay_hints_highlight, format_opts.highlight }, }, }, hl_mode = "combine", priority = o.get().inlay_hints_priority, }) end end end end end end function M.inlay_hints(bufnr) bufnr = resolve_bufnr(bufnr or 0) if buf_enabled(bufnr) then -- forbid duplicate enable return end set_buf_enabled(bufnr) local params = { textDocument = vim.lsp.util.make_text_document_params() } vim.lsp.buf_request(bufnr, INLAY_HINTS_METHOD, params, make_handler({ event = { start_line = 0, end_line = -1 } })) local throttle = o.get().inlay_hints_throttle local function inlay_hints_request(ctx) if ctx.event then params = vim.lsp.util.make_given_range_params( { ctx.event.start_line + 1, 0 }, { ctx.event.end_line + 2, 0 } ) -- Attach tick in params so that we can identify the newest response params.tick = ctx.event.tick vim.lsp.buf_request(bufnr, INLAY_HINTS_METHOD, params, make_handler(ctx)) end end inlay_hints_request = u.throttle_fn(throttle, vim.schedule_wrap(inlay_hints_request)) local ctx = { event = nil } local attached = api.nvim_buf_attach(bufnr, false, { on_lines = function(_, _, tick, start, old_end, new_end) local old_event = ctx.event or {} ctx.event = { tick = tick, start_line = math.min(old_event.start_line or 0, start), end_line = math.max(old_event.end_line or 0, old_end, new_end), } if u.get_tsserver_client() ~= nil and buf_enabled(bufnr) then inlay_hints_request(ctx) else -- detach buffer return true end end, on_detach = function(_, _) M.disable_inlay_hints(bufnr) end, }) if not attached then set_buf_disabled(bufnr) u.debug_log(string.format("failed to attach buffer %s to setup inlay hints", api.nvim_buf_get_name(bufnr))) end end -- Disable inlay hints for the given buffer, if nil passed, disable all inlay hints function M.disable_inlay_hints(bufnr) if bufnr ~= nil then set_buf_disabled(bufnr) api.nvim_buf_clear_namespace(bufnr, ns, 0, -1) else del_all_hints() end end -- Toggle inlay hints for a buffer, defaults to current buffer function M.toggle_inlay_hints(bufnr) bufnr = resolve_bufnr(bufnr or 0) if buf_enabled(bufnr) then M.disable_inlay_hints(bufnr) else M.inlay_hints(bufnr) end end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local api = vim.api local fn = vim.fn local rename_file = function(source, target) local client = u.get_tsserver_client() if not client then u.echo_warning("failed to rename file: tsserver not running") return end local request_ok = client.request("workspace/executeCommand", { command = "_typescript.applyRenameFile", arguments = { { sourceUri = vim.uri_from_fname(source), targetUri = vim.uri_from_fname(target), }, }, }) if not request_ok then u.echo_warning("failed to rename file: tsserver request failed") end end local M = {} M.manual = function(target, force) local lsputil = require("lspconfig.util") local bufnr = api.nvim_get_current_buf() local source = api.nvim_buf_get_name(bufnr) local status if not target then status, target = pcall(fn.input, "New path: ", source, "file") if not status or not target or target == "" or target == source then return end end local exists = lsputil.path.exists(target) if exists and not force then local confirm = fn.confirm("File exists! Overwrite?", "&Yes\n&No") if confirm ~= 1 then return end end rename_file(source, target) if fn.getbufvar(bufnr, "&modified") then vim.cmd("silent noautocmd w") end local ok, err = vim.loop.fs_rename(source, target) if not ok then error(string.format("failed to move %s to %s: %s", source, target, err)) end vim.cmd("e " .. target) vim.cmd(bufnr .. "bdelete!") end M.on_move = function(source, target) local lsputil = require("lspconfig.util") if source == target then return end if o.get().require_confirmation_on_move then local confirm = fn.confirm("Update imports for file " .. target .. "?", "&Yes\n&No") if confirm ~= 1 then return end end local original_win = api.nvim_get_current_win() local original_bufnr = api.nvim_get_current_buf() local is_dir = u.file.extension(target) == "" and lsputil.path.is_dir(target) local source_bufnr = is_dir and nil or fn.bufadd(source) local buffer_to_add = target if is_dir then -- opening directories won't work, so load first file in directory buffer_to_add = u.file.dir_file(target) end if not buffer_to_add then return end local target_bufnr = fn.bufadd(buffer_to_add) fn.bufload(buffer_to_add) fn.setbufvar(target_bufnr, "&buflisted", 1) -- handle renaming from a floating window when the source is loaded in a background window if source_bufnr and api.nvim_win_get_config(original_win).relative ~= "" then local info = fn.getbufinfo(source_bufnr)[1] if info and info.windows and info.windows[1] then api.nvim_win_set_buf(info.windows[1], target_bufnr) end end -- create temporary floating window to contain target local temp_win = api.nvim_open_win(target_bufnr, true, { relative = "editor", height = 1, width = 1, row = 1, col = 1, }) rename_file(source, target) -- restore original window layout after rename api.nvim_set_current_win(original_win) api.nvim_win_close(temp_win, true) if source_bufnr then if source_bufnr == original_bufnr then vim.cmd("e " .. buffer_to_add) end if api.nvim_buf_is_loaded(source_bufnr) then vim.cmd(source_bufnr .. "bdelete!") end end end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local u = require("nvim-lsp-ts-utils.utils") local lsp = vim.lsp local method = "textDocument/codeAction" local source_actions = { SourceAddMissingImportsTs = "source.addMissingImports.ts", SourceFixAllTs = "source.fixAll.ts", SourceRemoveUnusedTs = "source.removeUnused.ts", SourceOrganizeImportsTs = "source.organizeImports.ts", } local make_source_action_command = function(source_action) return function(bufnr) local client = u.get_tsserver_client() if not client then return end bufnr = bufnr or vim.api.nvim_get_current_buf() local context = { only = { source_action }, diagnostics = vim.diagnostic.get(bufnr), } local params = lsp.util.make_range_params() params.context = context client.request(method, params, function(err, res) assert(not err, err) if res and res[1] and res[1].edit and res[1].edit.documentChanges and res[1].edit.documentChanges[1] and res[1].edit.documentChanges[1].edits then lsp.util.apply_text_edits(res[1].edit.documentChanges[1].edits, bufnr, client.offset_encoding) end end, bufnr) end end return { add_missing_imports = make_source_action_command(source_actions.SourceAddMissingImportsTs), fix_all = make_source_action_command(source_actions.SourceFixAllTs), remove_unused = make_source_action_command(source_actions.SourceRemoveUnusedTs), organize_imports = make_source_action_command(source_actions.SourceOrganizeImportsTs), }
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local lsp = vim.lsp local api = vim.api local METHOD = "workspace/executeCommand" local M = {} local make_params = function(bufnr) return { command = "_typescript.organizeImports", arguments = { api.nvim_buf_get_name(bufnr) }, } end local organize_imports = function(bufnr, post) bufnr = bufnr or api.nvim_get_current_buf() lsp.buf_request_all(bufnr, METHOD, make_params(bufnr), function(err) if not err and post then post() end end) end M.async = organize_imports local organize_imports_sync = function(bufnr, timeout) bufnr = bufnr or api.nvim_get_current_buf() return lsp.buf_request_sync(bufnr, METHOD, make_params(bufnr), timeout) end M.sync = organize_imports_sync return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local u = require("nvim-lsp-ts-utils.utils") local o = require("nvim-lsp-ts-utils.options") local lsp = vim.lsp local api = vim.api local CODE_ACTION = "textDocument/codeAction" local APPLY_EDIT = "_typescript.applyWorkspaceEdit" local patterns = { RELATIVE_PATH = "^[.]+/", SRC = "^src", MODULE = "import.*from (.+)[;\n]?", -- Import 'useEffect' from module "React" IMPORT_WITH_TARGET = [['(%S+)'.+"(%S+)"]], NEW_IMPORT = "^Import", -- Add import from "next/app" IMPORT_WITHOUT_TARGET = [["(%S+)"]], ADD_IMPORT = "Add.+import", -- Update import from "next/app" UPDATE_IMPORT = "Update.+import", } local can_handle_action = function(action) return action.arguments and action.arguments[1] and action.arguments[1].documentChanges and action.arguments[1].documentChanges[1] end local action_matches_pattern = function(action) return action.title:match(patterns.NEW_IMPORT) or action.title:match(patterns.ADD_IMPORT) or action.title:match(patterns.UPDATE_IMPORT) end local source_is_local = function(source) return source:match(patterns.RELATIVE_PATH) or source:match(patterns.SRC) end local get_diagnostics = function(bufnr, client_id) local diagnostics = u.diagnostics.to_lsp(vim.diagnostic.get(bufnr, { namespace = lsp.diagnostic.get_namespace(client_id), })) local messages = {} -- filter for uniqueness diagnostics = vim.tbl_map(function(diagnostic) if not messages[diagnostic.message] then messages[diagnostic.message] = true return diagnostic end end, diagnostics) return diagnostics end local make_params = function(diagnostic) local params = lsp.util.make_range_params() params.range = diagnostic.range params.context = { diagnostics = { diagnostic } } return params end local response_handler_factory = function(callback) local priorities = o.get().import_all_priorities local to_scan, scanned = o.get().import_all_scan_buffers, 0 local git_output = u.get_command_output("git", { "ls-files", "--cached", "--others", "--exclude-standard" }) local buffers = vim.fn.getbufinfo({ listed = 1 }) local current = api.nvim_get_current_buf() local should_check_buffer = function(b) return scanned < to_scan and b.bufnr ~= current and u.is_tsserver_file(b.name) end return function(responses) local imports = {} local should_handle_action = function(action) action = type(action.command) == "table" and action.command or action if action.command ~= APPLY_EDIT then return false end -- keep only actions that can be handled if not can_handle_action(action) then return false end -- keep only actions that look like imports if not action_matches_pattern(action) then return false end return true end local scan_buffer = function(buffer, source, target) for _, line in ipairs(api.nvim_buf_get_lines(buffer.bufnr, 0, -1, false)) do -- continue until blank line if line == "" then return false end if line:match("import") and line:find(target, nil, true) and line:find(source, nil, true) then return true end end end local calculate_priority = function(title, source, target) local priority = 0 if not priorities then return priority end -- check if already imported in the same file if title:match(patterns.ADD_IMPORT) or title:match(patterns.UPDATE_IMPORT) then priority = priority + priorities.same_file end -- attempt to determine if source is local from path (won't work when basePath is set in tsconfig.json) local is_local = source_is_local(source) -- remove relative path markers while source:find(patterns.RELATIVE_PATH) do source = source:gsub(patterns.RELATIVE_PATH, "") end -- check source against git files to determine if local if not is_local then for _, git_file in ipairs(git_output) do if git_file:find(source, nil, true) then is_local = true break end end end if is_local then priority = priority + priorities.local_files end -- check if buffer name matches source for _, b in ipairs(buffers) do if should_check_buffer(b) and source:find(vim.fn.fnamemodify(b.name, ":t:r"), nil, true) then priority = priority + priorities.buffers break end end -- check buffer content for import statements containing target and source for _, b in ipairs(buffers) do if should_check_buffer(b) then local found = scan_buffer(b, source, target) scanned = scanned + 1 if found then priority = priority + priorities.buffer_content break end end end u.debug_log(string.format("assigning priority %d to action %s", priority, title)) return priority end local parse_action = function(action, index) local title = action.title local target, source = title:match(patterns.IMPORT_WITH_TARGET) source = source or title:match(patterns.IMPORT_WITHOUT_TARGET) if source and not target then target = string.format("anonymous_target_%d", index) end if not (target and source) then return end imports[target] = imports[target] or {} if o.get().import_all_select_source then -- don't push same source twice for _, existing in ipairs(imports[target]) do if existing.source == source then return end end table.insert(imports[target], { action = action, source = source }) return end local existing = imports[target][1] local priority = calculate_priority(title, source, target) -- checking < means that conflicts will resolve in favor of the first found import, -- which is consistent with VS Code's behavior if not existing or existing.priority < priority then imports[target] = { { priority = priority, action = action, source = source } } end end for i, action in ipairs(responses or {}) do if should_handle_action(action) then parse_action(action, i) end end callback(imports) end end local should_reorder = function(edits) local modules = {} for _, edit in ipairs(edits) do if edit.newText then local module = edit.newText:match(patterns.MODULE) if not module then return end local source = vim.trim(module) if modules[source] then return true end modules[source] = true end end return false end local apply_edits = function(edits, bufnr) if vim.tbl_count(edits) == 0 then return end lsp.util.apply_text_edits(edits, bufnr, "utf-16") if o.get().always_organize_imports or should_reorder(edits) then -- organize imports to merge separate import statements from the same file require("nvim-lsp-ts-utils.organize-imports").async(bufnr, function() -- remove empty lines created by merge local empty_start, empty_end for i, line in ipairs(api.nvim_buf_get_lines(bufnr, 0, -1, false)) do if not empty_end and empty_start and line ~= "" then empty_end = i - 1 break end if not empty_start and line == "" then empty_start = i end end if empty_start and empty_end and empty_start < empty_end then api.nvim_buf_set_lines(bufnr, empty_start, empty_end, false, {}) end end) end end return function(bufnr, diagnostics) bufnr = bufnr or api.nvim_get_current_buf() local client = u.get_tsserver_client() if not client then print("No code actions available") return end diagnostics = diagnostics or get_diagnostics(bufnr, client.id) if vim.tbl_isempty(diagnostics) then print("No code actions available") return end local response_handler = response_handler_factory(function(all_imports) local edits = {} local push_edits = function(action) action = type(action.command) == "table" and action.command or action for _, edit in ipairs(action.arguments[1].documentChanges[1].edits) do table.insert(edits, edit) end end for k, imports in pairs(all_imports) do local index = 1 if vim.tbl_count(imports) > 1 then local choices = {} for i, import in ipairs(imports) do table.insert(choices, string.format("%d %s", i, import.source)) end index = vim.fn.confirm( string.format("Select an import source for %s:", k), table.concat(choices, "\n"), 1, "Question" ) if index == 0 then return end end push_edits(imports[index].action) end if vim.tbl_isempty(edits) then print("No code actions available") return end vim.schedule(function() apply_edits(edits, bufnr) end) end) -- stagger requests to prevent tsserver issues local last_request_time = vim.loop.now() local wait_for_request = function() vim.wait(250, function() return vim.loop.now() - last_request_time > 10 end, 5) last_request_time = vim.loop.now() end local expected_response_count, response_count, responses = vim.tbl_count(diagnostics), 0, {} local get_response = function(diagnostic) local handler = function(_, response) responses = vim.list_extend(responses, response) response_count = response_count + 1 if response_count == expected_response_count then response_handler(responses) end end wait_for_request() client.request(CODE_ACTION, make_params(diagnostic), handler, bufnr) end vim.tbl_map(get_response, diagnostics) vim.defer_fn(function() if response_count < expected_response_count then u.echo_warning("import all timed out") end end, o.get().import_all_timeout) end
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local lsp = vim.lsp local o = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local APPLY_EDIT = "workspace/applyEdit" local PUBLISH_DIAGNOSTICS = "textDocument/publishDiagnostics" local fix_range = function(range) if range["end"].character == -1 then range["end"].character = 0 end if range["end"].line == -1 then range["end"].line = 0 end if range.start.character == -1 then range.start.character = 0 end if range.start.line == -1 then range.start.line = 0 end end local validate_changes = function(changes) for _, _change in pairs(changes) do for _, change in ipairs(_change) do if change.range then fix_range(change.range) end end end end local make_edit_handler = function(original_handler) return function(...) local result_or_method = select(2, ...) local is_new = type(result_or_method) == "table" local result = is_new and result_or_method or select(3, ...) if result.edit and result.edit.changes then validate_changes(result.edit.changes) end return original_handler(...) end end local make_diagnostics_handler = function(original_handler) return function(...) local config_or_client_id = select(4, ...) local is_new = type(config_or_client_id) ~= "number" local result = is_new and select(2, ...) or select(3, ...) local filter_out_diagnostics_by_severity = o.get().filter_out_diagnostics_by_severity local filter_out_diagnostics_by_code = o.get().filter_out_diagnostics_by_code -- Convert string severities to numbers filter_out_diagnostics_by_severity = vim.tbl_map(function(severity) if type(severity) == "string" then return u.severities[severity] end return severity end, filter_out_diagnostics_by_severity) if #filter_out_diagnostics_by_severity > 0 or #filter_out_diagnostics_by_code > 0 then local filtered_diagnostics = vim.tbl_filter(function(diagnostic) -- Only filter out Typescript LS diagnostics if diagnostic.source ~= "typescript" then return true end -- Filter out diagnostics with forbidden severity if vim.tbl_contains(filter_out_diagnostics_by_severity, diagnostic.severity) then return false end -- Filter out diagnostics with forbidden code if vim.tbl_contains(filter_out_diagnostics_by_code, diagnostic.code) then return false end return true end, result.diagnostics) result.diagnostics = filtered_diagnostics end local config_idx = is_new and 4 or 6 local config = select(config_idx, ...) or {} if is_new then original_handler(select(1, ...), select(2, ...), select(3, ...), config) else original_handler(select(1, ...), select(2, ...), select(3, ...), select(4, ...), select(5, ...), config) end end end local M = {} M.setup = function(client) if client._ts_utils_setup_complete then return end local edit_handler = client.handlers[APPLY_EDIT] or lsp.handlers[APPLY_EDIT] client.handlers[APPLY_EDIT] = make_edit_handler(edit_handler) local diagnostics_handler = client.handlers[PUBLISH_DIAGNOSTICS] or lsp.handlers[PUBLISH_DIAGNOSTICS] client.handlers[PUBLISH_DIAGNOSTICS] = make_diagnostics_handler(diagnostics_handler) client._ts_utils_setup_complete = true end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local u = require("nvim-lsp-ts-utils.utils") local api = vim.api local lsp = vim.lsp local should_fix_position = function(edits) local range = edits[1].range local pos = api.nvim_win_get_cursor(0) return range["end"].line == pos[1] - 1 end local fix_position = function(edits) local new_text = edits[1].newText local _, new_lines = string.gsub(new_text, "\n", "") local pos = api.nvim_win_get_cursor(0) local row, col = pos[1], pos[2] api.nvim_win_set_cursor(0, { row + new_lines, col }) end local M = {} M.enable = function() u.buf_autocmd("TSLspImportOnCompletion", "CompleteDone", "import_on_completion()") end local last M.handle = function() local bufnr = api.nvim_get_current_buf() local completed_item = vim.v.completed_item if not ( completed_item and completed_item.user_data and completed_item.user_data.nvim and completed_item.user_data.nvim.lsp and completed_item.user_data.nvim.lsp.completion_item ) then return end local item = completed_item.user_data.nvim.lsp.completion_item if last == item.label then return end last = item.label -- use timeout to prevent multiple imports, since CompleteDone can fire multiple times vim.defer_fn(function() last = nil end, 5000) lsp.buf_request( bufnr, "completionItem/resolve", item, u.make_handler(function(_, result) if not (result and result.additionalTextEdits) then return end local edits = result.additionalTextEdits -- when an edit's range includes the current line, the cursor won't move, which is annoying local should_fix = should_fix_position(edits) lsp.util.apply_text_edits(result.additionalTextEdits, bufnr, "utf-16") if should_fix then fix_position(edits) end end) ) end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local loop = require("nvim-lsp-ts-utils.loop") local defer = vim.defer_fn local s = { watching = false, unwatch = nil, _source = nil } s.source = { get = function() return s._source end, set = function(val) s._source = val end, reset = function() s._source = nil end, } s.reset = function() s.watching = false s.unwatch = nil s._source = nil end local M = {} M.state = s local should_ignore_file = function(path) if u.is_tsserver_file(path) then return false end -- the path may be a directory, but since it could be deleted, we can't check with fs_fstat if u.file.extension(path) == "" then return false end return true end local should_ignore_event = function(source, target) local lsputil = require("lspconfig.util") -- ignore save if source == target then return true end -- ignore non-move events local source_exists, target_exists = lsputil.path.exists(source), lsputil.path.exists(target) if source_exists then return true end if not target_exists then return true end -- ignore type mismatches if u.file.extension(source) == "" and target_exists ~= "directory" then return true end return false end local handle_event_factory = function(dir) local lsputil = require("lspconfig.util") return function(filename) local path = lsputil.path.join(dir, filename) if should_ignore_file(path) then return end local source = s.source.get() if not source then s.source.set(path) defer(function() s.source.reset() end, 0) return end local target = path if should_ignore_event(source, target) then s.source.reset() return end if source and target then u.debug_log("attempting to update imports") u.debug_log("source: " .. source) u.debug_log("target: " .. target) require("nvim-lsp-ts-utils.rename-file").on_move(source, target) s.source.reset() end end end local handle_error = function(err) u.echo_warning("error in watcher: " .. err) s.reset() end M.start = function() local lsputil = require("lspconfig.util") if s.watching then return end local root = u.buffer.root() if not root then u.debug_log("project root could not be determined; watch aborted") return end local git_root = lsputil.find_git_ancestor(root) if git_root then u.debug_log("git root found at " .. git_root .. "; scanning") local dir_files = require("plenary.scandir").scan_dir(git_root, { respect_gitignore = true, depth = 1, only_dirs = true, }) local unwatch_callbacks, watching = {}, false for _, dir in ipairs(dir_files) do watching = true u.debug_log("watching dir " .. dir) local callback = loop.watch_dir(dir, { on_event = handle_event_factory(dir), on_error = handle_error }) table.insert(unwatch_callbacks, callback) end if not watching then u.debug_log("no valid directories found in root dir; aborting") return end s.watching = true s.unwatch = function() for _, cb in ipairs(unwatch_callbacks) do cb() end end return end u.debug_log("git root not found; falling back to watch_dir") if not o.get().watch_dir then u.debug_log("watch_dir is not set; watch aborted") return end local watch_dir = lsputil.path.join(root, o.get().watch_dir) if not lsputil.path.is_dir(watch_dir) then u.debug_log("failed to resolve watch_dir " .. watch_dir .. "; watch aborted") return end u.debug_log("watching directory " .. watch_dir) s.watching = true s.unwatch = loop.watch_dir(watch_dir, { on_event = handle_event_factory(watch_dir), on_error = handle_error, }) end M.stop = function() if not s.watching then return end s.unwatch() s.reset() u.debug_log("watcher stopped") end M.restart = function() M.stop() defer(M.start, 100) end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local buf_command = function(name, fn) vim.cmd(string.format("command! -buffer %s lua require'nvim-lsp-ts-utils'.%s", name, fn)) end local define_commands = function() if not o.get().disable_commands then buf_command("TSLspRenameFile", "rename_file()") buf_command("TSLspOrganize", "organize_imports()") buf_command("TSLspOrganizeSync", "organize_imports_sync()") buf_command("TSLspImportAll", "import_all()") buf_command("TSLspImportCurrent", "import_current()") -- Inlay hints buf_command("TSLspInlayHints", "inlay_hints()") buf_command("TSLspDisableInlayHints", "disable_inlay_hints()") buf_command("TSLspToggleInlayHints", "toggle_inlay_hints()") end end return define_commands
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local defaults = { debug = false, disable_commands = false, -- import all import_all_timeout = 5000, import_all_priorities = { buffers = 4, buffer_content = 3, local_files = 2, same_file = 1, }, import_all_select_source = false, import_all_scan_buffers = 100, always_organize_imports = true, -- completion enable_import_on_completion = false, -- watcher update_imports_on_move = false, watch_dir = nil, require_confirmation_on_move = false, -- diagnostic filtering filter_out_diagnostics_by_severity = {}, filter_out_diagnostics_by_code = {}, -- inlay hints auto_inlay_hints = true, inlay_hints_highlight = "Comment", inlay_hints_throttle = 150, inlay_hints_priority = 200, inlay_hints_format = { Type = { highlight = nil, text = nil }, Parameter = { highlight = nil, text = nil }, Enum = { highlight = nil, text = nil }, }, -- internal _initialized = false, } local options = vim.deepcopy(defaults) local M = {} M.setup = function(user_options) if options._initialized then return end options = vim.tbl_extend("force", options, user_options) options._initialized = true end M.get = function() return options end M.reset = function() options = vim.deepcopy(defaults) end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local api = vim.api local lsp = vim.lsp local M = {} M.severities = { error = 1, warning = 2, information = 3, hint = 4, } M.tsserver_fts = { "javascript", "javascriptreact", "typescript", "typescriptreact", "javascript.jsx", "typescript.tsx", } M.tsserver_extension_pattern = "[.][tj][s]x?$" M.is_tsserver_file = function(path) return string.match(path, M.tsserver_extension_pattern) ~= nil end M.echo_warning = function(message) api.nvim_echo({ { "nvim-lsp-ts-utils: " .. message, "WarningMsg" } }, true, {}) end -- The init_options that are passed to lspconfig while setting up tsserver. The -- configuration seen below is needed for inlay hints to work properly. M.init_options = { hostInfo = "neovim", preferences = { includeInlayParameterNameHints = "all", includeInlayParameterNameHintsWhenArgumentMatchesName = true, includeInlayFunctionParameterTypeHints = true, includeInlayVariableTypeHints = true, includeInlayPropertyDeclarationTypeHints = true, includeInlayFunctionLikeReturnTypeHints = true, includeInlayEnumMemberValueHints = true, }, } M.debug_log = function(target, force) if not o.get().debug and not force then return end if type(target) == "table" then print(vim.inspect(target)) else print(target) end end M.file = { dir_file = function(dir, depth) return require("plenary.scandir").scan_dir(dir, { depth = depth or 5, search_pattern = M.tsserver_extension_pattern, })[1] end, extension = function(filename) return vim.fn.fnamemodify(filename, ":e") end, } M.buffer = { root = function(bufname) local lsputil = require("lspconfig.util") bufname = bufname or api.nvim_buf_get_name(0) return lsputil.root_pattern("tsconfig.json", "package.json", "jsconfig.json")(bufname) or lsputil.root_pattern(".git")(bufname) end, } M.get_command_output = function(cmd, args) local error local output, ret = require("plenary.job") :new({ command = cmd, args = args, cwd = M.buffer.root(), on_stderr = function(_, data) M.debug_log(string.format("error running command %s: %s", cmd, data)) error = true end, }) :sync() M.debug_log(string.format("command %s exited with code %d", cmd, ret)) error = error or ret ~= 0 return error and {} or output end M.make_handler = function(fn) return function(...) local config_or_client_id = select(4, ...) local is_new = type(config_or_client_id) ~= "number" if is_new then fn(...) else local err = select(1, ...) local method = select(2, ...) local result = select(3, ...) local client_id = select(4, ...) local bufnr = select(5, ...) local config = select(6, ...) fn(err, result, { method = method, client_id = client_id, bufnr = bufnr }, config) end end end M.diagnostics = { to_lsp = function(diagnostics) return vim.tbl_map(function(diagnostic) return vim.tbl_extend("error", { range = { start = { line = diagnostic.lnum, character = diagnostic.col, }, ["end"] = { line = diagnostic.end_lnum, character = diagnostic.end_col, }, }, severity = diagnostic.severity, message = diagnostic.message, source = diagnostic.source, }, diagnostic.user_data and (diagnostic.user_data.lsp or {}) or {}) end, diagnostics) end, } M.get_tsserver_client = function() for _, client in ipairs(lsp.get_active_clients()) do if client.name == "tsserver" or client.name == "typescript" then return client end end end M.buf_autocmd = function(name, event, func) api.nvim_exec( string.format( [[ augroup %s autocmd! * <buffer> autocmd %s <buffer> lua require'nvim-lsp-ts-utils'.%s augroup END ]], name, event, func ), false ) end M.throttle_fn = function(ms, fn) local last_time = 0 local timer = vim.loop.new_timer() return function(...) local now = vim.loop.now() local args = { ... } if now - last_time > ms then last_time = now fn(unpack(args)) end timer:stop() timer:start(ms - now + last_time, 0, function() last_time = vim.loop.now() fn(unpack(args)) end) end end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local o = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local client = require("nvim-lsp-ts-utils.client") local define_commands = require("nvim-lsp-ts-utils.define-commands") local organize_imports = require("nvim-lsp-ts-utils.organize-imports") local import_all = require("nvim-lsp-ts-utils.import-all") local rename_file = require("nvim-lsp-ts-utils.rename-file") local import_on_completion = require("nvim-lsp-ts-utils.import-on-completion") local watcher = require("nvim-lsp-ts-utils.watcher") local inlay_hints = require("nvim-lsp-ts-utils.inlay-hints") local utils = require("nvim-lsp-ts-utils.utils") local M = {} M.organize_imports = organize_imports.async M.organize_imports_sync = organize_imports.sync M.rename_file = rename_file.manual M.start_watcher = watcher.start M.stop_watcher = watcher.stop M.restart_watcher = watcher.restart M.setup_client = client.setup M.import_on_completion = import_on_completion.handle M.import_all = import_all M.import_current = function() local bufnr = vim.api.nvim_get_current_buf() local lnum = vim.api.nvim_win_get_cursor(0)[1] - 1 local line_diagnostics = vim.diagnostic.get(bufnr, { lnum = lnum }) import_all(bufnr, u.diagnostics.to_lsp(line_diagnostics)) end M.inlay_hints = inlay_hints.inlay_hints M.disable_inlay_hints = inlay_hints.disable_inlay_hints M.toggle_inlay_hints = inlay_hints.toggle_inlay_hints M.autocmd_fun = inlay_hints.autocmd_fun M.init_options = utils.init_options -- setup should be called on attach, so everything here should be buffer-local or idempotent M.setup = function(user_options) if vim.fn.has("nvim-0.6.0") == 0 then u.echo_warning("nvim-lsp-ts-utils requires nvim 0.6.0+") return end o.setup(user_options) define_commands() if o.get().auto_inlay_hints then inlay_hints.inlay_hints() end if o.get().enable_import_on_completion then import_on_completion.enable() end if o.get().update_imports_on_move then watcher.start() end end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local uv = vim.loop local schedule = vim.schedule_wrap local M = {} M.watch_dir = function(dir, opts) local on_event, on_error = opts.on_event, opts.on_error local handle = uv.new_fs_event() local unwatch = function() uv.fs_event_stop(handle) end local callback = schedule(function(err, filename, events) if err then if on_error then on_error(err) end unwatch() error(err) end on_event(filename, events) end) uv.fs_event_start(handle, dir, { recursive = true }, callback) return unwatch end return M
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
set hidden set noswapfile set rtp=$VIMRUNTIME packadd plenary.nvim packadd nvim-lspconfig packadd nvim-lsp-ts-utils
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local mock = require("luassert.mock") local stub = require("luassert.stub") local lsputil = require("lspconfig.util") local utils = require("nvim-lsp-ts-utils.utils") local options = require("nvim-lsp-ts-utils.options") local u = mock(utils, true) local o = mock(options, true) describe("rename_file", function() stub(vim, "cmd") stub(vim.fn, "confirm") stub(vim.loop, "fs_rename") stub(vim.lsp, "get_active_clients") stub(vim.api, "nvim_get_current_buf") stub(vim.api, "nvim_buf_get_name") stub(lsputil.path, "exists") stub(lsputil.path, "is_dir") local mock_source, mock_target = "source.ts", "target.ts" local bufnr = 44 before_each(function() vim.api.nvim_get_current_buf.returns(bufnr) vim.api.nvim_buf_get_name.returns(mock_source) vim.loop.fs_rename.returns(true, nil) end) after_each(function() vim.lsp.get_active_clients:clear() vim.fn.confirm:clear() vim.loop.fs_rename:clear() vim.cmd:clear() vim.api.nvim_get_current_buf:clear() vim.api.nvim_buf_get_name:clear() lsputil.path.exists:clear() lsputil.path.is_dir:clear() o.get:clear() end) local rename_file = require("nvim-lsp-ts-utils.rename-file") describe("manual", function() stub(vim.fn, "input") stub(vim.fn, "getbufvar") before_each(function() vim.lsp.get_active_clients.returns({}) end) after_each(function() vim.fn.input:clear() vim.fn.getbufvar:clear() end) describe("prompt", function() it("should prompt for user input if target is not specified ", function() rename_file.manual() assert.stub(vim.fn.input).was_called() end) it("should not prompt if target is specified", function() rename_file.manual(mock_target) assert.stub(vim.fn.input).was_not_called() end) it("should return if input returns error", function() vim.fn.input.invokes(function() error("canceled") end) rename_file.manual() assert.stub(lsputil.path.exists).was_not_called() end) it("should return if input returns empty string", function() vim.fn.input.returns("") rename_file.manual() assert.stub(lsputil.path.exists).was_not_called() end) it("should return if input returns source", function() vim.fn.input.returns(mock_source) rename_file.manual() assert.stub(lsputil.path.exists).was_not_called() end) end) describe("exists", function() it("should check if target exists", function() rename_file.manual(mock_target) assert.stub(lsputil.path.exists).was_called_with(mock_target) end) it("should confirm if target exists", function() lsputil.path.exists.returns(true) rename_file.manual(mock_target) assert.stub(vim.fn.confirm).was_called() end) it("should not confirm if force argument is set", function() lsputil.path.exists.returns(true) rename_file.manual(mock_target, true) assert.stub(vim.fn.confirm).was_not_called() end) it("should return if confirm returns ~= 1", function() vim.fn.confirm.returns(2) lsputil.path.exists.returns(true) rename_file.manual(mock_target) assert.stub(vim.fn.getbufvar).was_not_called() end) end) it("should write source if modified", function() vim.fn.getbufvar.returns(true) rename_file.manual(mock_target, true) assert.stub(vim.fn.getbufvar).was_called_with(bufnr, "&modified") assert.stub(vim.cmd).was_called_with("silent noautocmd w") end) it("should call fs_rename with source and target", function() rename_file.manual(mock_target, true) assert.stub(vim.loop.fs_rename).was_called_with(mock_source, mock_target) end) it("should error if fs_rename returns error", function() vim.loop.fs_rename.returns(false, "something went wrong") local ok, err = pcall(rename_file.manual, mock_target, true) assert.falsy(ok) assert.truthy(err:find("something went wrong")) end) it("should open target and bdelete source", function() rename_file.manual(mock_target, true) assert.stub(vim.cmd).was_called_with("e " .. mock_target) assert.stub(vim.cmd).was_called_with(bufnr .. "bdelete!") end) end) describe("on_move", function() stub(vim.api, "nvim_get_current_win") stub(vim.api, "nvim_get_current_buf") stub(vim.api, "nvim_win_get_config") stub(vim.api, "nvim_win_set_buf") stub(vim.api, "nvim_open_win") stub(vim.api, "nvim_set_current_win") stub(vim.api, "nvim_win_close") stub(vim.api, "nvim_buf_is_loaded") stub(vim.fn, "bufadd") stub(vim.fn, "bufload") stub(vim.fn, "setbufvar") stub(vim.fn, "getbufinfo") local target_bufnr = 102 local original_win = 55 local original_bufnr = 12 before_each(function() vim.api.nvim_get_current_win.returns(original_win) vim.api.nvim_get_current_buf.returns(original_bufnr) vim.api.nvim_win_get_config.returns({}) vim.fn.bufadd.returns(target_bufnr) vim.fn.getbufinfo.returns({}) o.get.returns({}) u.file.extension.returns(nil) end) after_each(function() vim.api.nvim_get_current_win:clear() vim.api.nvim_get_current_buf:clear() vim.api.nvim_win_get_config:clear() vim.api.nvim_win_set_buf:clear() vim.api.nvim_open_win:clear() vim.api.nvim_buf_is_loaded:clear() vim.fn.bufadd:clear() vim.fn.bufload:clear() vim.fn.setbufvar:clear() vim.fn.getbufinfo:clear() u.file.extension:clear() u.file.dir_file:clear() end) it("should prompt for confirmation if option is set", function() o.get.returns({ require_confirmation_on_move = true }) rename_file.on_move(mock_source, mock_target) assert.stub(vim.fn.confirm).was_called() end) it("should not prompt for confirmation if option is not set", function() o.get.returns({ require_confirmation_on_move = nil }) rename_file.on_move(mock_source, mock_target) assert.stub(vim.fn.confirm).was_not_called() end) it("should return if confirm returns ~= 1", function() o.get.returns({ require_confirmation_on_move = true }) vim.fn.confirm.returns(2) rename_file.on_move(mock_source, mock_target) assert.stub(vim.api.nvim_get_current_win).was_not_called() end) it("should call dir_file if target is dir", function() u.file.extension.returns("") lsputil.path.is_dir.returns(true) rename_file.on_move(mock_source, mock_target) assert.stub(u.file.dir_file).was_called_with(mock_target) end) it("should add, load, and set buflisted on target", function() rename_file.on_move(mock_source, mock_target) assert.stub(vim.fn.bufadd).was_called_with(mock_target) assert.stub(vim.fn.bufload).was_called_with(mock_target) assert.stub(vim.fn.setbufvar).was_called_with(target_bufnr, "&buflisted", 1) end) it("should open and close temporary window", function() local temp_win_id = 752 vim.api.nvim_open_win.returns(temp_win_id) rename_file.on_move(mock_source, mock_target) assert.stub(vim.api.nvim_open_win).was_called_with(target_bufnr, true, { relative = "editor", height = 1, width = 1, row = 1, col = 1, }) assert.stub(vim.api.nvim_set_current_win).was_called_with(original_win) assert.stub(vim.api.nvim_win_close).was_called_with(temp_win_id, true) end) it("should edit target if source file was focused", function() vim.api.nvim_get_current_buf.returns(original_bufnr) vim.fn.bufadd.returns(original_bufnr) rename_file.on_move(mock_source, mock_target) assert.stub(vim.cmd).was_called_with("e " .. mock_target) end) it("should delete source buffer if loaded", function() vim.api.nvim_buf_is_loaded.returns(true) vim.fn.bufadd.returns(original_bufnr) rename_file.on_move(mock_source, mock_target) assert.stub(vim.cmd).was_called_with(original_bufnr .. "bdelete!") end) describe("floating window", function() it("should get window config and source buffer info", function() vim.fn.bufadd.returns(original_bufnr) rename_file.on_move(mock_source, mock_target) assert.stub(vim.api.nvim_win_get_config).was_called_with(original_win) assert.stub(vim.fn.getbufinfo).was_called_with(original_bufnr) end) it("should load target buffer into source window", function() vim.api.nvim_win_get_config.returns({ relative = "window" }) vim.fn.getbufinfo.returns({ { windows = { 5000 } } }) rename_file.on_move(mock_source, mock_target) assert.stub(vim.api.nvim_win_set_buf).was_called_with(5000, target_bufnr) end) end) end) describe("rename_file", function() local request = stub.new() stub(vim, "uri_from_fname") local mock_uri, mock_client = "mock_uri", nil before_each(function() vim.uri_from_fname.returns(mock_uri) mock_client = { request = request, name = "tsserver" } u.get_tsserver_client.returns(mock_client) end) after_each(function() request:clear() vim.uri_from_fname:clear() u.echo_warning:clear() end) it("should loop over clients and call client.request with command if name matches", function() rename_file.manual(mock_target, true) assert.stub(request).was_called_with("workspace/executeCommand", { command = "_typescript.applyRenameFile", arguments = { { sourceUri = mock_uri, targetUri = mock_uri, }, }, }) end) it("should echo warning if no client found", function() u.get_tsserver_client.returns(nil) rename_file.manual(mock_target, true) assert.stub(request).was_not_called() assert.stub(u.echo_warning).was_called_with("failed to rename file: tsserver not running") end) it("should echo warning if client response is falsy", function() request.returns(false) rename_file.manual(mock_target, true) assert.stub(u.echo_warning).was_called_with("failed to rename file: tsserver request failed") end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local mock = require("luassert.mock") local stub = require("luassert.stub") local uv = mock(vim.loop, true) describe("loop", function() stub(vim, "schedule_wrap") local dir = "/my/mock/dir" local handle = 50 before_each(function() uv.new_fs_event.returns(handle) end) after_each(function() uv.new_fs_event:clear() uv.fs_event_stop:clear() vim.schedule_wrap:clear() end) local loop = require("nvim-lsp-ts-utils.loop") describe("watch_dir", function() it("should call fs_event_start with args", function() vim.schedule_wrap.returns("scheduled") loop.watch_dir(dir, {}) assert.equals(uv.fs_event_start.calls[1].refs[1], handle) assert.equals(uv.fs_event_start.calls[1].refs[2], dir) assert.same(uv.fs_event_start.calls[1].refs[3], { recursive = true }) assert.equals(uv.fs_event_start.calls[1].refs[4], "scheduled") end) it("should return unwatch callback", function() local unwatch = loop.watch_dir(dir, {}) unwatch() assert.stub(uv.fs_event_stop).was_called_with(handle) end) describe("callback", function() local on_error, on_event = stub.new(), stub.new() local callback before_each(function() loop.watch_dir(dir, { on_error = on_error, on_event = on_event }) callback = vim.schedule_wrap.calls[1].refs[1] end) after_each(function() on_event:clear() on_error:clear() end) it("should throw error and unwatch", function() local error = "something went wrong" assert.has_error(function() callback(error) end) assert.stub(uv.fs_event_stop).was_called_with(handle) end) it("should call on_error callback", function() local error = "something went wrong" assert.has_error(function() callback(error) end) assert.stub(on_error).was_called_with(error) end) it("should call on_event callback with filename and events", function() local filename = "test-file.ts" local events = { rename = true } callback(nil, filename, events) assert.stub(on_event).was_called_with(filename, events) end) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local lspconfig = require("lspconfig") local ts_utils = require("nvim-lsp-ts-utils") local api = vim.api local edit_test_file = function(name) vim.cmd("e " .. "test/files/" .. name) end local get_buf_content = function(line) local content = api.nvim_buf_get_lines(api.nvim_get_current_buf(), 0, -1, false) assert.equals(vim.tbl_isempty(content), false) return line and content[line] or content end local lsp_wait = function(wait_time) vim.wait(wait_time or 400) end describe("e2e", function() assert(vim.fn.executable("typescript-language-server") > 0, "typescript-language-server is not installed") lspconfig.tsserver.setup({ on_attach = function(client) client.resolved_capabilities.document_formatting = false ts_utils.setup_client(client) end, }) ts_utils.setup({}) after_each(function() vim.cmd("silent bufdo! bdelete!") end) describe("import_all", function() before_each(function() edit_test_file("import-all.ts") lsp_wait(1000) end) it("should import both missing types", function() ts_utils.import_all() lsp_wait() assert.equals(get_buf_content(1), [[import { User, UserNotification } from "./test-types";]]) end) end) describe("organize_imports", function() before_each(function() -- file imports both User and Notification but only uses User edit_test_file("organize-imports.ts") lsp_wait() end) it("should remove unused import (sync)", function() ts_utils.organize_imports_sync() lsp_wait() assert.equals(get_buf_content(1), [[import { User } from "./test-types";]]) end) it("should remove unused import (async)", function() ts_utils.organize_imports() lsp_wait() assert.equals(get_buf_content(1), [[import { User } from "./test-types";]]) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local mock = require("luassert.mock") local stub = require("luassert.stub") local options = require("nvim-lsp-ts-utils.options") local u = require("nvim-lsp-ts-utils.utils") local o = mock(options, true) describe("client", function() local APPLY_EDIT = "workspace/applyEdit" local PUBLISH_DIAGNOSTICS = "textDocument/publishDiagnostics" stub(vim.lsp.handlers, PUBLISH_DIAGNOSTICS) stub(vim.lsp.handlers, APPLY_EDIT) after_each(function() o.get:clear() vim.lsp.handlers[PUBLISH_DIAGNOSTICS]:clear() vim.lsp.handlers[APPLY_EDIT]:clear() end) local client = require("nvim-lsp-ts-utils.client") describe("setup", function() local edit_handler = stub.new() local diagnostics_handler = stub.new() local mock_client before_each(function() mock_client = { handlers = { [APPLY_EDIT] = edit_handler, [PUBLISH_DIAGNOSTICS] = diagnostics_handler }, } end) it("should override client handlers", function() client.setup(mock_client) assert.is.Not.equals(mock_client.handlers[APPLY_EDIT], edit_handler) assert.is.Not.equals(mock_client.handlers[PUBLISH_DIAGNOSTICS], diagnostics_handler) assert.equals(mock_client._ts_utils_setup_complete, true) end) it("should not override client handlers if setup is complete", function() mock_client._ts_utils_setup_complete = true client.setup(mock_client) assert.equals(mock_client.handlers[APPLY_EDIT], edit_handler) assert.equals(mock_client.handlers[PUBLISH_DIAGNOSTICS], diagnostics_handler) end) end) describe("handlers", function() local edit_handler local diagnostics_handler before_each(function() local mock_client = { handlers = {} } client.setup(mock_client) edit_handler = mock_client.handlers[APPLY_EDIT] diagnostics_handler = mock_client.handlers[PUBLISH_DIAGNOSTICS] end) describe("edit_handler", function() local lsp_handler = vim.lsp.handlers[APPLY_EDIT] local workspace_edit before_each(function() workspace_edit = { edit = { changes = { { { range = { start = { character = -1, line = -1 }, ["end"] = { character = -1, line = -1 }, }, }, }, }, }, } end) describe("old handler signature", function() it("should fix range and apply edit", function() edit_handler(nil, nil, workspace_edit) assert.stub(lsp_handler).was_called_with(nil, nil, { edit = { changes = { { { range = { start = { character = 0, line = 0 }, ["end"] = { character = 0, line = 0 }, }, }, }, }, }, }) end) end) describe("new handler signature", function() it("should fix range and apply edit", function() edit_handler(nil, workspace_edit) assert.stub(lsp_handler).was_called_with(nil, { edit = { changes = { { { range = { start = { character = 0, line = 0 }, ["end"] = { character = 0, line = 0 }, }, }, }, }, }, }) end) end) end) describe("diagnostics_handler", function() local lsp_handler = vim.lsp.handlers[PUBLISH_DIAGNOSTICS] local mock_ctx = { method = PUBLISH_DIAGNOSTICS, client_id = 1, bufnr = 99 } local diagnostics_result before_each(function() diagnostics_result = { diagnostics = { { source = "eslint", severity = u.severities.hint, code = 80001 }, { source = "typescript", severity = u.severities.error, code = 80001 }, { source = "typescript", severity = u.severities.information, code = 80001 }, { source = "typescript", severity = u.severities.hint, code = 80000 }, }, } end) describe("old handler signature", function() it("should filter out hints and information", function() o.get.returns({ filter_out_diagnostics_by_severity = { "information", u.severities.hint }, filter_out_diagnostics_by_code = {}, }) local expected_diagnostics_result = { diagnostics = { { source = "eslint", severity = u.severities.hint, code = 80001 }, { source = "typescript", severity = u.severities.error, code = 80001 }, }, } diagnostics_handler( nil, mock_ctx.method, diagnostics_result, mock_ctx.client_id, mock_ctx.bufnr, nil ) assert.stub(lsp_handler).was_called_with( nil, mock_ctx.method, expected_diagnostics_result, mock_ctx.client_id, mock_ctx.bufnr, {} ) end) it("should filter out diagnostics by code", function() o.get.returns({ filter_out_diagnostics_by_severity = {}, filter_out_diagnostics_by_code = { 80001 }, }) local expected_diagnostics_result = { diagnostics = { { source = "eslint", severity = u.severities.hint, code = 80001 }, { source = "typescript", severity = u.severities.hint, code = 80000 }, }, } diagnostics_handler( nil, mock_ctx.method, diagnostics_result, mock_ctx.client_id, mock_ctx.bufnr, nil ) assert.stub(lsp_handler).was_called_with( nil, mock_ctx.method, expected_diagnostics_result, mock_ctx.client_id, mock_ctx.bufnr, {} ) end) end) describe("new handler signature", function() it("should filter out hints and information", function() o.get.returns({ filter_out_diagnostics_by_severity = { "information", u.severities.hint }, filter_out_diagnostics_by_code = {}, }) local expected_diagnostics_result = { diagnostics = { { source = "eslint", severity = u.severities.hint, code = 80001 }, { source = "typescript", severity = u.severities.error, code = 80001 }, }, } diagnostics_handler(nil, diagnostics_result, mock_ctx, nil) assert.stub(lsp_handler).was_called_with(nil, expected_diagnostics_result, mock_ctx, {}) end) it("should filter out diagnostics by code", function() o.get.returns({ filter_out_diagnostics_by_severity = {}, filter_out_diagnostics_by_code = { 80001 }, }) local expected_diagnostics_result = { diagnostics = { { source = "eslint", severity = u.severities.hint, code = 80001 }, { source = "typescript", severity = u.severities.hint, code = 80000 }, }, } diagnostics_handler(nil, diagnostics_result, mock_ctx, nil) assert.stub(lsp_handler).was_called_with(nil, expected_diagnostics_result, mock_ctx, {}) end) end) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local mock = require("luassert.mock") local stub = require("luassert.stub") local lsputil = require("lspconfig.util") local scandir = require("plenary.scandir") local options = require("nvim-lsp-ts-utils.options") local utils = require("nvim-lsp-ts-utils.utils") local rename_file = require("nvim-lsp-ts-utils.rename-file") local _loop = require("nvim-lsp-ts-utils.loop") local o = mock(options, true) local u = mock(utils, true) local loop = mock(_loop, true) describe("watcher", function() stub(vim, "defer_fn") stub(scandir, "scan_dir") stub(lsputil, "find_git_ancestor") stub(lsputil.path, "is_dir") stub(lsputil.path, "exists") local watcher = require("nvim-lsp-ts-utils.watcher") local mock_root = "/my/root/dir" after_each(function() vim.defer_fn:clear() lsputil.find_git_ancestor:clear() lsputil.path.is_dir:clear() lsputil.path.exists:clear() scandir.scan_dir:clear() u.buffer.root:clear() watcher.state.reset() end) describe("state", function() it("should contain default values", function() assert.equals(watcher.state.watching, false) assert.equals(watcher.state.unwatch, nil) assert.equals(watcher.state._source, nil) end) it("should reset state on reset()", function() watcher.state.watching = true watcher.state.unwatch = function() print("unwatching") end watcher.state._source = "test-file.ts" watcher.state.reset() assert.equals(watcher.state.watching, false) assert.equals(watcher.state.unwatch, nil) assert.equals(watcher.state._source, nil) end) describe("source", function() it("should set source on set()", function() watcher.state.source.set("test-file.ts") assert.equals(watcher.state._source, "test-file.ts") end) it("should get source on get()", function() watcher.state.source.set("test-file.ts") assert.equals(watcher.state.source.get(), "test-file.ts") end) it("should reset source on reset()", function() watcher.state.source.set("test-file.ts") watcher.state.source.reset() assert.equals(watcher.state.source.get(), nil) end) end) end) describe("start", function() after_each(function() loop.watch_dir:clear() end) it("should return immediately if already watching", function() watcher.state.watching = true watcher.start() assert.stub(u.buffer.root).was_not_called() end) it("should return if root cannot be determined", function() u.buffer.root.returns(nil) watcher.start() assert.equals(watcher.state.watching, false) end) describe("git project", function() local git_root = "/git/root" before_each(function() u.buffer.root.returns(mock_root) lsputil.find_git_ancestor.returns(git_root) end) after_each(function() loop.watch_dir:clear() end) it("should call scan_dir with git root and args", function() scandir.scan_dir.returns({}) watcher.start() assert.stub(scandir.scan_dir).was_called_with( git_root, { respect_gitignore = true, depth = 1, only_dirs = true } ) end) it("should not start watching if scan_dir result is empty", function() scandir.scan_dir.returns({}) watcher.start() assert.equals(watcher.state.watching, false) end) it("should call watch_dir with file path and start watching", function() scandir.scan_dir.returns({ "dir1", "dir2" }) watcher.start() assert.equals(loop.watch_dir.calls[1].refs[1], "dir1") assert.equals(loop.watch_dir.calls[2].refs[1], "dir2") assert.equals(watcher.state.watching, true) end) it("should call callbacks on unwatch()", function() local callback = stub.new() loop.watch_dir.returns(callback) scandir.scan_dir.returns({ "dir1", "dir2", "dir3" }) watcher.start() watcher.state.unwatch() assert.stub(callback).was_called(3) end) end) describe("watch_dir fallback", function() local watch_dir = "/my/watch/dir" before_each(function() o.get.returns({ watch_dir = watch_dir }) lsputil.path.is_dir.returns(true) u.buffer.root.returns(mock_root) lsputil.find_git_ancestor.returns(false) end) after_each(function() o.get:clear() loop.watch_dir:clear() end) it("should return if watch_dir is not set", function() o.get.returns({}) watcher.start() assert.equals(watcher.state.watching, false) end) it("should return if watch_dir is not dir", function() lsputil.path.is_dir.returns(false) watcher.start() assert.stub(lsputil.path.is_dir).was_called_with(lsputil.path.join(mock_root, watch_dir)) assert.equals(watcher.state.watching, false) end) it("should start watching if watch_dir is dir", function() watcher.start() assert.equals(watcher.state.watching, true) end) it("should set unwatch to watch_dir callback", function() local callback = stub.new() loop.watch_dir.returns(callback) watcher.start() assert.equals(watcher.state.unwatch, callback) end) end) describe("on_error", function() local on_error before_each(function() o.get.returns({ watch_dir = "dir" }) lsputil.path.is_dir.returns(true) watcher.start() on_error = loop.watch_dir.calls[1].refs[2].on_error end) after_each(function() u.echo_warning:clear() loop.watch_dir:clear() watcher.state.reset() end) it("should echo error message and reset state", function() watcher.state.watching = true on_error("something went wrong") assert.stub(u.echo_warning).was_called_with("error in watcher: something went wrong") assert.equals(watcher.state.watching, false) end) end) describe("on_event", function() stub(rename_file, "on_move") local watch_dir = "/my/watch/dir" local on_event before_each(function() o.get.returns({ watch_dir = watch_dir }) u.is_tsserver_file.returns(true) lsputil.path.is_dir.returns(true) watcher.start() on_event = loop.watch_dir.calls[1].refs[2].on_event end) after_each(function() u.is_tsserver_file:clear() u.file.extension:clear() loop.watch_dir:clear() rename_file.on_move:clear() watcher.state.reset() end) it("should return if path is not tsserver file and has extension", function() u.is_tsserver_file.returns(false) u.file.extension.returns(".md") on_event("file.md") assert.stub(u.is_tsserver_file).was_called() assert.stub(u.file.extension).was_called() assert.equals(watcher.state.source.get(), nil) end) it("should set source if not set", function() on_event("file.ts") assert.equals(watcher.state.source.get(), lsputil.path.join(mock_root, watch_dir, "file.ts")) end) it("should reset source in defer callback", function() on_event("file.ts") local callback = vim.defer_fn.calls[1].refs[1] callback() assert.equals(watcher.state.source.get(), nil) end) it("should reset source if source and target are the same", function() on_event("file.ts") on_event("file.ts") assert.stub(rename_file.on_move).was_not_called() assert.equals(watcher.state.source.get(), nil) end) it("should call on_move with source and target and reset source", function() local source = lsputil.path.join(mock_root, watch_dir, "file1.ts") local target = lsputil.path.join(mock_root, watch_dir, "file2.ts") lsputil.path.exists.on_call_with(source).returns(false) lsputil.path.exists.on_call_with(target).returns(true) on_event("file1.ts") on_event("file2.ts") assert.stub(rename_file.on_move).was_called_with(source, target) assert.equals(watcher.state.source.get(), nil) end) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local stub = require("luassert.stub") local o = require("nvim-lsp-ts-utils.options") local exists = function(cmd) return vim.fn.exists(":" .. cmd) > 0 end describe("define_commands", function() stub(o, "get") before_each(function() o.get.returns({}) end) after_each(function() o.get:clear() end) local define_commands = require("nvim-lsp-ts-utils.define-commands") it("should not define commands if option is disabled", function() o.get.returns({ disable_commands = true }) define_commands() assert.equals(exists("TSLspRenameFile"), false) assert.equals(exists("TSLspOrganize"), false) assert.equals(exists("TSLspOrganizeSync"), false) assert.equals(exists("TSLspRenameFile"), false) assert.equals(exists("TSLspImportAll"), false) assert.equals(exists("TSLspImportCurrent"), false) end) it("should define commands if option is not disabled", function() o.get.returns({ disable_commands = nil }) define_commands() assert.equals(exists("TSLspRenameFile"), true) assert.equals(exists("TSLspOrganize"), true) assert.equals(exists("TSLspOrganizeSync"), true) assert.equals(exists("TSLspRenameFile"), true) assert.equals(exists("TSLspImportAll"), true) assert.equals(exists("TSLspImportCurrent"), true) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
describe("config", function() local o = require("nvim-lsp-ts-utils.options") after_each(function() o.reset() end) describe("get", function() it("should get option", function() o.setup({ debug = true }) assert.equals(o.get().debug, true) end) end) describe("reset", function() it("should reset options to defaults", function() o.setup({ debug = true }) o.reset() assert.equals(o.get().debug, false) end) end) describe("setup", function() it("should only setup once", function() o.setup({ debug = true }) o.setup({ debug = false }) assert.equals(o.get().debug, true) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
local stub = require("luassert.stub") local api = vim.api describe("utils", function() _G._TEST = true stub(api, "nvim_exec") after_each(function() api.nvim_exec:clear() end) local u = require("nvim-lsp-ts-utils.utils") describe("is_tsserver_file", function() local base = "/Users/jose/my-project/" it("should match js file path", function() local path = base .. "my-file.js" assert.truthy(u.is_tsserver_file(path)) end) it("should match jsx file path", function() local path = base .. "my-file.jsx" assert.truthy(u.is_tsserver_file(path)) end) it("should match ts file path", function() local path = base .. "my-file.ts" assert.truthy(u.is_tsserver_file(path)) end) it("should match tsx file path", function() local path = base .. "my-file.tsx" assert.truthy(u.is_tsserver_file(path)) end) it("should not match non-tsserver file path", function() local path = base .. "README.md" assert.falsy(u.is_tsserver_file(path)) end) it("should not match when path contains extension", function() local path = base .. "js/my-misleading-file.css" assert.falsy(u.is_tsserver_file(path)) end) it("should not match when filename contains extension", function() local path = base .. "js-styles.css" assert.falsy(u.is_tsserver_file(path)) end) end) describe("echo_warning", function() stub(api, "nvim_echo") after_each(function() api.nvim_echo:clear() end) it("should call api.nvim_echo with args", function() u.echo_warning("something went wrong") assert.stub(api.nvim_echo).was_called_with( { { "nvim-lsp-ts-utils: something went wrong", "WarningMsg" } }, true, {} ) end) end) describe("file", function() describe("extension", function() it("should get file extension", function() local extension = u.file.extension("test.tsx") assert.equals(extension, "tsx") end) it("should return empty string if no file extension", function() local extension = u.file.extension("test") assert.equals(extension, "") end) end) end) end)
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
const testUser: User = { name: "Jose" }; const notification: UserNotification = { user: testUser, content: "hello" };
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
export interface User { name: string; } export interface UserNotification { user: User; content: string; }
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
import { User, Notification } from "./test-types"; const user: User = { name: "Jose" };
{ "repo_name": "jose-elias-alvarez/nvim-lsp-ts-utils", "stars": "434", "repo_language": "Lua", "file_name": "organize-imports.ts", "mime_type": "text/x-java" }
# Contribution Guidelines In order to contribute to this repository you need to **fork** it, then you can create a pull request. - **To add to the list:** Submit a pull request - **To edit the list:** Submit a pull request - **To remove from the list:** Open an issue --- ### Articles To be added to the list, articles should meet the following criteria: - Focus mostly on content relevant to ADHD for the purposes of caring for oneself, - Include useful information If an item on the list no longer meets the above criteria, open an issue to have it be removed. --- When adding new items, please adhere to the following guidelines: - Search previous resources before making a new one, as yours may be a duplicate. - Make an individual pull request for each suggestion. - New categories, or improvements to the existing categorization are welcome (open an issue). - Keep descriptions short and simple, but descriptive. - Start the description with a capital and end with a full stop/period. - Check your spelling and grammar. - The pull request should include a link to the resource and why it should be included. Thank you for your suggestions!
{ "repo_name": "mrseth01/awesome-adhd", "stars": "82", "repo_language": "None", "file_name": "README.md", "mime_type": "text/plain" }
<div align="center"> <img width="400" src="/awesome.svg" alt="Awesome ADHD"> <br><br> </div> # Awesome ADHD [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) > Carefully curated list of awesome ADHD articles, resources and novel things which help people with ADHD. From [ADDitude.mag](https://www.additudemag.com/), The meaning of ADHD is complex. It’s a misunderstood neurological disorder that impacts the parts of the brain that help us plan, focus on, and execute tasks. ADHD symptoms vary by sub-type — inattentive, hyperactive, or combined — and are often more difficult to diagnose in girls and adults. Here, we review the symptoms, causes, types, and tests associated with attention deficit hyperactivity disorder. ### Contributing Please take a quick look at the [contribution guidelines](CONTRIBUTING.md) first. If you see an article or resource here that is no longer maintained or is not a good fit, please submit a pull request to improve this file. Also, ideas for more categories [are needed](https://github.com/chasegiunta/awesome-craft/issues/2)! Thank you to all contributors; you rock! # Getting Started ## ADHD Tests https://psychcentral.com/quizzes/adhd-quiz/ ## Is This Your Brain? Article: [ADHD in Adults: Understanding Why You Do What You Do](https://www.additudemag.com/adhd-in-adults-nervous-system/?mc_cid=d36f2091a2&mc_eid=22cc69c9da) Easily bored, sensitive to distractions, creative and intense. If you grew up with ADHD, chances are you always felt "different." Now here's a scientific explanation, finally, of why we act the way we do. Video: [The Impact of ADHD on College Students Through Adulthood - YouTube](https://www.youtube.com/watch?v=m2KxYcGg49c&t=0s&list=PLWDDHvZekEYyMev-VD53kakxbHpFbtshX&index=3) A lawyer from New York describing his journey, behavior, and life with ADHD. Video: [This is how you treat ADHD based off science](https://www.youtube.com/watch?v=_tpB-B8BXk0&list=PLWDDHvZekEYyMev-VD53kakxbHpFbtshX&index=6&t=0s) "You can know stuff, but you can't do stuff. It's a performance disorder" Article: [A Natural Fix for ADHD](https://www.nytimes.com/2014/11/02/opinion/sunday/a-natural-fix-for-adhd.html) # Okay...tell me everything! ## Another way to view ADHD: Other ways to view this type of brain to release the stigma of perceiving ADHD as an excuse, disorder, or otherwise dismissive. Video: [Rethinking ADHD: More than meets the eye.](https://www.youtube.com/watch?v=QenOiw9bodI&index=4&list=PLWDDHvZekEYyMev-VD53kakxbHpFbtshX) Video: [ADHD As A Difference In Cognition, Not A Disorder: Stephen Tonti at TEDxCMU](https://www.youtube.com/watch?v=uU6o2_UFSEY) Article: [Why highly intelligent people suffer from more mental and physical disorders](https://bigthink.com/design-for-good/why-highly-intelligent-people-suffer-more-mental-and-physical-disorders?utm_medium=Social&utm_source=LinkedIn) Highly intelligent people are 80% more likely to be diagnosed with ADHD. ## Dr. Daniel Amen Uses SPECT brain scans to diagnose ADHD types. He divided it into 7 categories and is also one of the people treating brain injuries of NFL players. He has clinics in various places in the country including New York, Atlanta, and Los Angeles: [https://www.amenclinics.com/locations/](https://www.amenclinics.com/locations/) [The most important lesson from 83,000 brain scans](https://www.youtube.com/watch?v=esPRsT-lmw8) Introductory video as a TED talk. ["Healing ADD - See And Heal The 7 Types!" with Dr. Amen](https://www.youtube.com/watch?v=UWnJ4wjVu9k&feature=youtu.be) Longer form video going over the various types of ADHD types and treatments.  He avoids prescription medications if he can and has created natural products. ## Dr. Russell Barkley He is very pro-medication. He's probably the best the AMA/Father paradigm has to offer, so I try to be careful of his authority in the psyche. His videos offer the most in-depth understanding of ADHD, what he thinks the DSM-V gets wrong, etc. Argues that Executive Fuctioning Disorder and ADHD are more strongly correlated than the AMA currently believes. Video: [ADHD Videos and Info: 30 Essential Ideas about ADHD - Dr. Russell A Barkley](https://www.youtube.com/watch?v=SCAGc-rkIfo) This is a long (2.5 hours) and complete video of a leading researcher giving a talk to parents of children with ADHD. He describes ADHD as being an Executive Function Disorder and redefines ADHD away from the DSM terminology somewhat. ## Dr. Hallowell Dr. Hallowell wrote a book called Driven to Distraction that was influential in educating a lot of people about ADD beyond ADHD being an excuse to give pain in the ass little boys pills to calm them in class. He also has an office in New York: [http://www.drhallowell.com/the-hallowell-centers/the-hallowell-center-new-york-ny/](http://www.drhallowell.com/the-hallowell-centers/the-hallowell-center-new-york-ny/) Videos: [http://www.drhallowell.com/the-hallowell-centers/the-hallowell-center-new-york-ny/](http://www.drhallowell.com/the-hallowell-centers/the-hallowell-center-new-york-ny/) ## Dr. Michael Manos Video: [Understanding the Nuances of ADHD | Michael Manos, PhD](https://www.youtube.com/watch?v=hrjj0EgII1Y) # What do we do now? Learn about your brain, get diagnosed properly (find out what type of ADHD you're working with), eat well, exercise well, take supplements, do a bunch of things to offset the difficulty with motivation, planning, etc, and take medications if necessary. ## Jessica McCabe (How to ADHD YouTube Channel) Video: [Failing at Normal: An ADHD Success Story | Jessica McCabe | TEDxBratislava](https://www.youtube.com/watch?v=JiwZQNYlGQI) Jessica created a YouTube channel that helped me start tracking my life consistently for the first time: About best planner for ADHD: [https://www.youtube.com/watch?v=5hLnY9L1c-M](https://www.youtube.com/watch?v=5hLnY9L1c-M) About medications: [https://www.youtube.com/watch?v=rD9qK8-sMGQ](https://www.youtube.com/watch?v=rD9qK8-sMGQ) About view of meds: [https://www.youtube.com/watch?v=QdFw10TwLFY](https://www.youtube.com/watch?v=QdFw10TwLFY) About ADHD in girls: [https://www.youtube.com/watch?v=dmeE3qTJRUw](https://www.youtube.com/watch?v=dmeE3qTJRUw) ## Dani Donovan (ADHD comics) Dani Donovan is a content creator who aims to help people with ADHD to feel understood. ### Web Comics Dani's comics are made to illustrate common struggles in ADHD that are sometimes hard to express in words. Not only are they funny from a neurodivergent perspective, they also help with validation for people who are struggling with why they behave in a certain way. Link: [www.adhddd.com/comics/](https://www.adhddd.com/comics/) ### The Anti-Planner For when normal planners don't work for you. It contains unique ways of helping you complete tasks, made specifically for the ADHD mind. Link: [www.adhddd.com/anti-planner/](https://www.adhddd.com/anti-planner/) ### Other content Twitter: [@danidonovan](https://www.twitter.com/danidonovan) TikTok: [@danidonovan](https://www.tiktok.com/@danidonovan) ## Executive Functioning Article: [10 Questions That Will Transform Your Life with ADHD | ADHD from A to Z](https://blogs.psychcentral.com/adhd-zoe/2014/05/10-questions-that-will-transform-your-life-with-adhd/) 1. Do I really need this? 2. Is this what I'm supposed to be doing right now? 3. Who do I want to be right now? 4. What will happen in the future if I do this right now? 5. Is this really important to me right now? 6. Is that person really trying to hurt me? 7. What would someone without ADHD do / say right now? 8. Is it worth arguing about this right now? 9. Is there something better I can put my energy into? Article: [10 Healthy Rewards Your ADHD Brain Will Love](http://adhdboss.com/dopamine-adhd/) Understanding dopamine and ways to help without or to supplement medication. ## Planners [Bullet Journal: Step by step setup guide to starting your first BUJO | DoodadsHunter](https://doodadshunter.com/blogs/blog/bullet-journal-setup) Article: [Tips for Managing Adult ADHD/ADD: Deal with ADHD Symptoms and Become More Focused and Organized](https://www.helpguide.org/articles/add-adhd/managing-adult-adhd-attention-deficit-disorder.htm) Learn how to deal with the symptoms of adult ADHD, focus better at work, get organized, and improve your money and time management. And, of course, medications are an option... ## Medications Video: [Dr Russell Barkley on ADHD Meds and how they all work differently from each other](https://www.youtube.com/watch?v=LnS0PfNyj4U&t=0s&list=PLWDDHvZekEYyMev-VD53kakxbHpFbtshX&index=2) Article: [How does Strattera Work? | ADD ADHD Blog.com](http://addadhdblog.com/how-does-strattera-work/?doing_wp_cron=1533062879.9955439567565917968750) ## Coaching [Dana Rayburn](https://danarayburn.com/) ## Software Tools - [Beeminder](https://www.beeminder.com/home) - [TaskRatchet](https://taskratchet.com/) - [SelfControl](https://selfcontrolapp.com/) - [Forest](https://www.forestapp.cc/) - [Freedom](https://freedom.to/) - [Focus](https://heyfocus.com/) - [Mindful Internet Use](https://chrome.google.com/webstore/detail/mindful-internet-use/hieolpjdilnibgamiafklnlcmagdngoo) - [Routinery](https://play.google.com/store/apps/details?id=com.alt.goodmorning) - [HabitNow](https://play.google.com/store/apps/details?id=com.habitnow) - [Fabulous](https://play.google.com/store/apps/details?id=co.thefabulous.app) - [Inflow](https://play.google.com/store/apps/details?id=inflow.adhd.productivity) - [LifeUp](https://play.google.com/store/apps/details?id=net.sarasarasa.lifeup) - [Habitica](https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica) - [RoutineFlow](https://play.google.com/store/apps/details?id=app.routineflow.routineflow) - [Calendar Alarm Reminder App](https://play.google.com/store/apps/details?id=com.app_by_LZ.calendar_alarm_clock) - [Pushbullet](https://www.pushbullet.com/)
{ "repo_name": "mrseth01/awesome-adhd", "stars": "82", "repo_language": "None", "file_name": "README.md", "mime_type": "text/plain" }
FROM ubuntu:14.04 MAINTAINER Alan Grosskurth <code@alan.grosskurth.ca> RUN \ locale-gen en_US.UTF-8 && \ apt-get update && \ env DEBIAN_FRONTEND=noninteractive apt-get -q -y install --no-install-recommends \ build-essential \ ca-certificates \ curl \ git-core \ libbz2-dev \ libcurl4-openssl-dev \ liblzma-dev \ libncurses5-dev \ libpq-dev \ libreadline-dev \ libssl-dev \ libxml2-dev \ libxslt1-dev \ pkg-config \ zlib1g-dev && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ENV \ PATH=/opt/local/python/bin:"$PATH" RUN \ mkdir -p /tmp/src /opt/local/python && \ cd /tmp/src && \ curl -fsLS -O https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tar.xz && \ curl -fsLS -O https://bootstrap.pypa.io/get-pip.py && \ echo '1cd3730781b91caf0fa1c4d472dc29274186480161a150294c42ce9b5c5effc0 Python-2.7.10.tar.xz' | sha256sum -c && \ tar -xJf Python-2.7.10.tar.xz && \ cd /tmp/src/Python-2.7.10 && \ env LDFLAGS='-Wl,-rpath=/opt/local/python/lib' \ ./configure --enable-shared --prefix=/opt/local/python && \ make && \ make install && \ ldconfig && \ cd /tmp/src && \ /opt/local/python/bin/python get-pip.py && \ cd /tmp && \ rm -rf /tmp/src WORKDIR /app
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
web: scripts/ec2price web collector: scripts/ec2price collector
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
app: build: . dockerfile: Dockerfile.ci volumes: - ./:/app - /usr/bin/buildkite-agent:/usr/bin/buildkite-agent environment: - BUILDKITE_AGENT_ACCESS_TOKEN - BUILDKITE_JOB_ID - BUILDKITE_BUILD_ID - BUILDKITE_BUILD_NUMBER
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
PyYAML==3.11 arrow==0.4.2 backports.ssl-match-hostname==3.4.0.2 boto==2.27.0 botocore==0.42.0 cssmin==0.2.0 jmespath==0.4.0 python-dateutil==2.2 rjsmin==1.0.9 six==1.6.1 tornado==3.2 webassets==0.9 wsgiref==0.1.2
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
--- directory: ec2price/static url: ../static auto_build: False cache: True manifest: json bundles: js_app: contents: - vendor/jquery-1.11.0/js/jquery.js - vendor/bootstrap-3.1.1/js/bootstrap.js - vendor/d3-3.1.5/js/d3.v3.js - vendor/nvd3-1.1.15-beta/js/nv.d3.js filters: - rjsmin output: gen/js/app-%(version)s.js css_screen: contents: - vendor/bootstrap-3.1.1/css/bootstrap.css - vendor/bootstrap-3.1.1/css/bootstrap-theme.css - vendor/nvd3-1.1.15-beta/css/nv.d3.css - css/base.css filters: - cssmin - cssrewrite output: gen/css/screen-%(version)s.css
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
python-2.7.6
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
import os from setuptools import setup root = os.path.dirname(__file__) setup( name='ec2price', version='0.0.1', description='EC2 Price Service', long_description=open(os.path.join(root, 'README.md')).read(), author='Alan Grosskurth', author_email='code@alan.grosskurth.ca', packages=[ 'ec2price', ], scripts=[ 'scripts/ec2price', ], test_suite='ec2price.tests', include_package_data=True, install_requires=open(os.path.join(root, 'requirements.txt')).readlines(), zip_safe=False, )
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
# EC2 Spot Price Tracker This application collects and displays prices for EC2 spot instances over time. It's written in [Python](http://www.python.org/) using the [Tornado](http://www.tornadoweb.org/) web framework. * The daemon `ec2price collector` grabs spot price data from the EC2 API using [botocore](https://github.com/boto/botocore) and stores it in [DynamoDB](http://aws.amazon.com/dynamodb/). * The web interface `ec2price web` displays graphs of the data using [NVD3.js](http://nvd3.org/). ## Instructions for running on Heroku ```bash $ git clone https://github.com/grosskur/ec2price.git $ cd ec2price $ heroku create your-ec2price $ heroku config:set TABLE_PREFIX=$(uuidgen | cut -c 1-8 | tr 'A-Z' 'a-z') $ heroku config:set COOKIE_SECRET=$(head /dev/urandom | base64 | cut -c 1-40) $ heroku config:set AWS_ACCESS_KEY_ID=... $ heroku config:set AWS_SECRET_ACCESS_KEY=... $ git push heroku master $ heroku ps:scale web=1 $ heroku addons:add scheduler $ heroku addons:open scheduler # Add hourly job: "scripts/ec2price collector --once" ``` ## To do * Experiment with Rickshaw for graph drawing * Use D3 option `interpolation: 'step-after'` for staircase lines ## See also * [cloud exchange](http://cloudexchange.org/) * [EC2Instances.info](http://ec2instances.info/)
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
#!/usr/bin/env python import sys import ec2price.app if __name__ == '__main__': try: ec2price.app.main(sys.argv[1:]) except KeyboardInterrupt: print >> sys.stderr, 'interrupted'
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
#!/bin/bash # fail fast set -o errexit set -o nounset set -o pipefail indent() { sed -u 's/^/ /' } exec webassets -c webassets.yml build 2>&1 | indent
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
""" Data collector """ import decimal import logging import arrow import botocore.session _EXCLUDED_REGION_PREFIXES = ['cn-', 'us-gov-'] _FMT = 'YYYY-MM-DDTHH:mm:ss.000Z' logging.getLogger('boto').setLevel(logging.WARN) logging.getLogger('botocore').setLevel(logging.WARN) logging.getLogger('requests.packages.urllib3').setLevel(logging.WARN) def collect(model, hours): row = model.progress.get_item(name='end_time') if row['timestamp'] is None: logging.debug('using initial window of -%d hours', hours) start_time = arrow.utcnow().replace(hours=-hours) else: start_time = arrow.get(row['timestamp']) logging.debug('start time: %s', start_time) end_time = arrow.utcnow() logging.debug('end time: %s', end_time) all_regions = set() all_product_descriptions = set() all_instance_types = set() all_instance_zones = set() session = botocore.session.get_session() ec2 = session.get_service('ec2') operation = ec2.get_operation('DescribeSpotPriceHistory') for region in ec2.region_names: if any(region.startswith(x) for x in _EXCLUDED_REGION_PREFIXES): continue all_regions.add(region) next_token = None while True: logging.debug('collecting spot prices from region: %s', region) endpoint = ec2.get_endpoint(region) if next_token: response, data = operation.call( endpoint, start_time=start_time.format(_FMT), end_time=end_time.format(_FMT), next_token=next_token, ) else: response, data = operation.call( endpoint, start_time=start_time.format(_FMT), ) next_token = data.get('NextToken') logging.debug('next_token: %s', next_token) spot_data = data.get('SpotPriceHistory', []) #conn = boto.ec2.connect_to_region(r.name) #logging.debug('getting spot prices for region: %s', r.name) #data = conn.get_spot_price_history(start_time=start_time) logging.debug('saving %d spot prices for region: %s', len(spot_data), region) with model.spot_prices.batch_write() as batch: for d in spot_data: all_product_descriptions.add(d['ProductDescription']) all_instance_types.add(d['InstanceType']) all_instance_zones.add(( d['ProductDescription'], d['InstanceType'], d['AvailabilityZone'], )) batch.put_item(data={ 'instance_zone_id': ':'.join([ d['ProductDescription'], d['InstanceType'], d['AvailabilityZone'], ]), 'timestamp': arrow.get(d['Timestamp']).timestamp, 'price': decimal.Decimal(str(d['SpotPrice'])), }) if not next_token: break logging.debug('saving %d regions', len(all_regions)) with model.regions.batch_write() as batch: for i in all_regions: batch.put_item(data={'region': i}) logging.debug('saving %d product_descriptions', len(all_product_descriptions)) with model.product_descriptions.batch_write() as batch: for i in all_product_descriptions: batch.put_item(data={'product_description': i}) logging.debug('saving %d instance_types', len(all_instance_types)) with model.instance_types.batch_write() as batch: for i in all_instance_types: batch.put_item(data={'instance_type': i}) logging.debug('saving %d instance_zones', len(all_instance_zones)) with model.instance_zones.batch_write() as batch: for i in all_instance_zones: batch.put_item(data={ 'instance_id': ':'.join([i[0], i[1]]), 'zone': i[2], }) logging.debug('saving end_time') with model.progress.batch_write() as batch: batch.put_item(data={ 'name': 'end_time', 'timestamp': end_time.timestamp, })
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
""" Web handlers """ import logging import arrow import tornado.web _FMT = 'YYYY-MM-DDTHH:mm:ssZ' logging.getLogger('boto').setLevel(logging.CRITICAL) class BaseHandler(tornado.web.RequestHandler): def initialize(self, model, asset_env, gauges_site_id, ga_tracking_id, ga_domain, google_site_verification_id, static_host): self._model = model self._asset_env = asset_env self._gauges_site_id = gauges_site_id self._ga_tracking_id = ga_tracking_id self._ga_domain = ga_domain self._google_site_verification_id = google_site_verification_id self.static_host = static_host def static_url(self, path, include_host=None, **kwargs): self.require_setting('static_path', 'static_url') get_url = self.settings.get( 'static_handler_class', tornado.web.StaticFileHandler, ).make_static_url if include_host is None: include_host = getattr(self, 'include_host', False) static_host = getattr(self, 'static_host', None) if static_host: base = self.request.protocol + "://" + static_host elif include_host: base = self.request.protocol + "://" + self.request.host else: base = "" return base + get_url(self.settings, path, **kwargs) class HealthCheckHandler(BaseHandler): def get(self): self.write('OK') class MainHandler(BaseHandler): def get(self): product_description = self.get_argument('product', 'Linux/UNIX') instance_type = self.get_argument('type', 't1.micro') region = self.get_argument('region', 'us-east-1') window = int(self.get_argument('window', 3)) logging.debug('window: past %s days', window) timestamp = arrow.utcnow().replace(days=-window).timestamp logging.debug('timestamp: %s', timestamp) rows = self._model.instance_zones.query( instance_id__eq=':'.join([ product_description, instance_type, ]), zone__beginswith=region, ) zones = [str(row['zone']) for row in rows] data = {} for zone in zones: rows = self._model.spot_prices.query( instance_zone_id__eq=':'.join([ product_description, instance_type, zone, ]), timestamp__gte=timestamp, ) data[zone] = [] for row in rows: data[zone].append([ arrow.get(row['timestamp']).format(_FMT), float(row['price']), ]) rows = self._model.instance_types.scan() instance_types = sorted([row['instance_type'] for row in rows]) rows = self._model.regions.scan() regions = sorted([row['region'] for row in rows]) rows = self._model.product_descriptions.scan() product_descriptions = sorted([row['product_description'] for row in rows]) windows = [1, 3, 8, 15, 30, 60] self.render( 'main.html', asset_env=self._asset_env, gauges_site_id=self._gauges_site_id, ga_tracking_id=self._ga_tracking_id, ga_domain=self._ga_domain, google_site_verification_id=self._google_site_verification_id, data=data, product_description=product_description, product_descriptions=product_descriptions, instance_type=instance_type, instance_types=instance_types, region=region, regions=regions, window=window, windows=windows, )
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
""" App """ import argparse import logging import os import re import time import tornado.ioloop import tornado.web import webassets.loaders from .web import MainHandler, HealthCheckHandler from .collector import collect from .model import Model PROG = 'ec2price' TEMPLATE_PATH = os.path.join(os.path.dirname(__file__), 'templates') STATIC_PATH = os.path.join(os.path.dirname(__file__), 'static') DATABASE_URL_REGEX = re.compile( 'postgres://' '(?P<user>.*)' ':(?P<password>.*)' '@(?P<host>[-a-z\d.]+)' ':(?P<port>\d+)' '/(?P<dbname>.+)' ) _HOURS = 1 _COLLECTOR_SLEEP_TIME = 600 class ArgumentParser(argparse.ArgumentParser): def error(self, message): self.exit(2, '%s: error: %s\n' % (self.prog, message)) def main(args): # setup logging fmt = PROG + ': %(levelname)s%(message)s' logging.basicConfig(level=logging.DEBUG, format=fmt) logging.addLevelName(logging.DEBUG, 'debug: ') logging.addLevelName(logging.INFO, '') logging.addLevelName(logging.WARNING, 'warning: ') logging.addLevelName(logging.ERROR, 'error: ') logging.addLevelName(logging.CRITICAL, 'critical: ') # parse command line parser = ArgumentParser( prog=PROG, description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter, ) subparsers = parser.add_subparsers(help='commands') p_web = subparsers.add_parser('web', help='web app') p_web.set_defaults(cmd='web') p_collector = subparsers.add_parser('collector', help='collector') p_collector.set_defaults(cmd='collector') p_collector.add_argument('--once', action='store_true', help='run once instead of indefinitely') opts = parser.parse_args(args) if opts.cmd == 'web': debug = bool(_consume_env('DEBUG', False)) port = int(_consume_env('PORT', 8080)) address = _consume_env('ADDRESS', '') cookie_secret = _consume_env('COOKIE_SECRET') table_prefix = _consume_env('TABLE_PREFIX') gauges_site_id = _consume_env('GAUGES_SITE_ID') ga_tracking_id = _consume_env('GA_TRACKING_ID') ga_domain = _consume_env('GA_DOMAIN') google_site_verification_id = _consume_env( 'GOOGLE_SITE_VERIFICATION_ID') static_host = _consume_env('STATIC_HOST') if not table_prefix: parser.error('TABLE_PREFIX is required') if not cookie_secret: parser.error('COOKIE_SECRET is required') asset_loader = webassets.loaders.YAMLLoader('webassets.yml') asset_env = asset_loader.load_environment() asset_env.debug = debug params = { 'model': Model(table_prefix), 'asset_env': asset_env, 'gauges_site_id': gauges_site_id, 'ga_tracking_id': ga_tracking_id, 'ga_domain': ga_domain, 'google_site_verification_id': google_site_verification_id, 'static_host': static_host, } handlers = [ (r'/', MainHandler, params), (r'/healthcheck', HealthCheckHandler, params), ] _start_tornado_app(debug, cookie_secret, port, address, handlers) elif opts.cmd == 'collector': table_prefix = _consume_env('TABLE_PREFIX') hours = _consume_env('HOURS', _HOURS) collector_sleep_time = _consume_env('COLLECTOR_SLEEP_TIME', _COLLECTOR_SLEEP_TIME) if not table_prefix: parser.error('TABLE_PREFIX is required') try: hours = int(hours) except ValueError: parser.error('HOURS must be an integer') try: collector_sleep_time = int(collector_sleep_time) except ValueError: parser.error('COLLECTOR_SLEEP_TIME must be an integer') model = Model(table_prefix) while True: collect(model, hours) if opts.once: break logging.debug('sleeping %d seconds', collector_sleep_time) time.sleep(collector_sleep_time) return 0 def _start_tornado_app(debug, cookie_secret, port, address, handlers): settings = dict( cookie_secret=cookie_secret, template_path=TEMPLATE_PATH, static_path=STATIC_PATH, xsrf_cookies=False, autoescape='xhtml_escape', debug=debug, gzip=not debug, ) app = tornado.web.Application(handlers, **settings) logging.info('listening on port: %d', port) app.listen(port, address) tornado.ioloop.IOLoop.instance().start() def _consume_env(name, default=None): value = os.getenv(name, default) os.unsetenv(name) if name in os.environ: del os.environ[name] return value
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
""" Model """ import logging from boto.exception import JSONResponseError from boto.dynamodb2.fields import HashKey, RangeKey from boto.dynamodb2.table import Table from boto.dynamodb2.types import NUMBER class Model(object): def __init__(self, table_prefix): self.spot_prices = _create_table( '_'.join([table_prefix, 'spot_price']), schema=[ HashKey('instance_zone_id'), RangeKey('timestamp', data_type=NUMBER), ], throughput={'read': 5, 'write': 5}, ) self.instance_zones = _create_table( '_'.join([table_prefix, 'instance_zone']), schema=[ HashKey('instance_id'), RangeKey('zone'), ], throughput={'read': 1, 'write': 1}, ) self.regions = _create_table( '_'.join([table_prefix, 'region']), schema=[ HashKey('region'), ], throughput={'read': 1, 'write': 1}, ) self.product_descriptions = _create_table( '_'.join([table_prefix, 'product_description']), schema=[ HashKey('product_description'), ], throughput={'read': 1, 'write': 1}, ) self.instance_types = _create_table( '_'.join([table_prefix, 'instance_type']), schema=[ HashKey('instance_type'), ], throughput={'read': 1, 'write': 1}, ) self.progress = _create_table( '_'.join([table_prefix, 'progress']), schema=[ HashKey('name'), ], throughput={'read': 1, 'write': 1}, ) def _create_table(table_name, schema, throughput): if _table_exists(table_name): logging.debug('using existing table: %s', table_name) return Table(table_name, schema=schema) else: logging.debug('creating table: %s', table_name) return Table.create(table_name, schema=schema, throughput=throughput) def _table_exists(table_name): table = Table(table_name) try: table.describe() except JSONResponseError as exc: if exc.error_code == 'ResourceNotFoundException': return False return True
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
body { padding-top: 18px; padding-bottom: 18px; } .header { border-bottom: 1px solid #e5e5e5; margin-bottom: 18px; } .brand { padding-bottom: 19px; margin-top: 0; margin-bottom: 0; line-height: 40px; } .brand a { text-decoration: none; } @media (min-width: 768px) { .container { max-width: 80%; } } .container-narrow > hr { margin: 30px 0; }
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
/*! * jQuery JavaScript Library v1.11.0 * http://jquery.com/ * * Includes Sizzle.js * http://sizzlejs.com/ * * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2014-01-23T21:02Z */ (function( global, factory ) { if ( typeof module === "object" && typeof module.exports === "object" ) { // For CommonJS and CommonJS-like environments where a proper window is present, // execute the factory and get jQuery // For environments that do not inherently posses a window with a document // (such as Node.js), expose a jQuery-making factory as module.exports // This accentuates the need for the creation of a real window // e.g. var jQuery = require("jquery")(window); // See ticket #14549 for more info module.exports = global.document ? factory( global, true ) : function( w ) { if ( !w.document ) { throw new Error( "jQuery requires a window with a document" ); } return factory( w ); }; } else { factory( global ); } // Pass this if window is not defined yet }(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { // Can't do this because several apps including ASP.NET trace // the stack via arguments.caller.callee and Firefox dies if // you try to trace through "use strict" call chains. (#13335) // Support: Firefox 18+ // var deletedIds = []; var slice = deletedIds.slice; var concat = deletedIds.concat; var push = deletedIds.push; var indexOf = deletedIds.indexOf; var class2type = {}; var toString = class2type.toString; var hasOwn = class2type.hasOwnProperty; var trim = "".trim; var support = {}; var version = "1.11.0", // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); }, // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, // Matches dashed string for camelizing rmsPrefix = /^-ms-/, rdashAlpha = /-([\da-z])/gi, // Used by jQuery.camelCase as callback to replace() fcamelCase = function( all, letter ) { return letter.toUpperCase(); }; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: version, constructor: jQuery, // Start with an empty selector selector: "", // The default length of a jQuery object is 0 length: 0, toArray: function() { return slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num != null ? // Return a 'clean' array ( num < 0 ? this[ num + this.length ] : this[ num ] ) : // Return just the object slice.call( this ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. // (You can seed the arguments with an array of args, but this is // only used internally.) each: function( callback, args ) { return jQuery.each( this, callback, args ); }, map: function( callback ) { return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); })); }, slice: function() { return this.pushStack( slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); }, end: function() { return this.prevObject || this.constructor(null); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: push, sort: deletedIds.sort, splice: deletedIds.splice }; jQuery.extend = jQuery.fn.extend = function() { var src, copyIsArray, copy, name, options, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; // skip the boolean and the target target = arguments[ i ] || {}; i++; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction(target) ) { target = {}; } // extend jQuery itself if only one argument is passed if ( i === length ) { target = this; i--; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( (options = arguments[ i ]) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { if ( copyIsArray ) { copyIsArray = false; clone = src && jQuery.isArray(src) ? src : []; } else { clone = src && jQuery.isPlainObject(src) ? src : {}; } // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend({ // Unique for each copy of jQuery on the page expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), // Assume jQuery is ready without the ready module isReady: true, error: function( msg ) { throw new Error( msg ); }, noop: function() {}, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return jQuery.type(obj) === "function"; }, isArray: Array.isArray || function( obj ) { return jQuery.type(obj) === "array"; }, isWindow: function( obj ) { /* jshint eqeqeq: false */ return obj != null && obj == obj.window; }, isNumeric: function( obj ) { // parseFloat NaNs numeric-cast false positives (null|true|false|"") // ...but misinterprets leading-number strings, particularly hex literals ("0x...") // subtraction forces infinities to NaN return obj - parseFloat( obj ) >= 0; }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, isPlainObject: function( obj ) { var key; // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } try { // Not own constructor property must be Object if ( obj.constructor && !hasOwn.call(obj, "constructor") && !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { return false; } } catch ( e ) { // IE8,9 Will throw exceptions on certain host objects #9897 return false; } // Support: IE<9 // Handle iteration over inherited properties before own properties. if ( support.ownLast ) { for ( key in obj ) { return hasOwn.call( obj, key ); } } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. for ( key in obj ) {} return key === undefined || hasOwn.call( obj, key ); }, type: function( obj ) { if ( obj == null ) { return obj + ""; } return typeof obj === "object" || typeof obj === "function" ? class2type[ toString.call(obj) ] || "object" : typeof obj; }, // Evaluates a script in a global context // Workarounds based on findings by Jim Driscoll // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context globalEval: function( data ) { if ( data && jQuery.trim( data ) ) { // We use execScript on Internet Explorer // We use an anonymous function so that context is window // rather than jQuery in Firefox ( window.execScript || function( data ) { window[ "eval" ].call( window, data ); } )( data ); } }, // Convert dashed to camelCase; used by the css and data modules // Microsoft forgot to hump their vendor prefix (#9572) camelCase: function( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }, // args is for internal usage only each: function( obj, callback, args ) { var value, i = 0, length = obj.length, isArray = isArraylike( obj ); if ( args ) { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.apply( obj[ i ], args ); if ( value === false ) { break; } } } // A special, fast, case for the most common use of each } else { if ( isArray ) { for ( ; i < length; i++ ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } else { for ( i in obj ) { value = callback.call( obj[ i ], i, obj[ i ] ); if ( value === false ) { break; } } } } return obj; }, // Use native String.trim function wherever possible trim: trim && !trim.call("\uFEFF\xA0") ? function( text ) { return text == null ? "" : trim.call( text ); } : // Otherwise use our own trimming functionality function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArraylike( Object(arr) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { var len; if ( arr ) { if ( indexOf ) { return indexOf.call( arr, elem, i ); } len = arr.length; i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; for ( ; i < len; i++ ) { // Skip accessing in sparse arrays if ( i in arr && arr[ i ] === elem ) { return i; } } } return -1; }, merge: function( first, second ) { var len = +second.length, j = 0, i = first.length; while ( j < len ) { first[ i++ ] = second[ j++ ]; } // Support: IE<9 // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists) if ( len !== len ) { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, invert ) { var callbackInverse, matches = [], i = 0, length = elems.length, callbackExpect = !invert; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { callbackInverse = !callback( elems[ i ], i ); if ( callbackInverse !== callbackExpect ) { matches.push( elems[ i ] ); } } return matches; }, // arg is for internal usage only map: function( elems, callback, arg ) { var value, i = 0, length = elems.length, isArray = isArraylike( elems ), ret = []; // Go through the array, translating each of the items to their new values if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } } // Flatten any nested arrays return concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // Bind a function to a context, optionally partially applying any // arguments. proxy: function( fn, context ) { var args, proxy, tmp; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !jQuery.isFunction( fn ) ) { return undefined; } // Simulated bind args = slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }, now: function() { return +( new Date() ); }, // jQuery.support is not used in Core but other projects attach their // properties to it so it needs to exist. support: support }); // Populate the class2type map jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); }); function isArraylike( obj ) { var length = obj.length, type = jQuery.type( obj ); if ( type === "function" || jQuery.isWindow( obj ) ) { return false; } if ( obj.nodeType === 1 && length ) { return true; } return type === "array" || length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj; } var Sizzle = /*! * Sizzle CSS Selector Engine v1.10.16 * http://sizzlejs.com/ * * Copyright 2013 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * * Date: 2014-01-13 */ (function( window ) { var i, support, Expr, getText, isXML, compile, outermostContext, sortInput, hasDuplicate, // Local document vars setDocument, document, docElem, documentIsHTML, rbuggyQSA, rbuggyMatches, matches, contains, // Instance-specific data expando = "sizzle" + -(new Date()), preferredDoc = window.document, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), sortOrder = function( a, b ) { if ( a === b ) { hasDuplicate = true; } return 0; }, // General-purpose constants strundefined = typeof undefined, MAX_NEGATIVE = 1 << 31, // Instance methods hasOwn = ({}).hasOwnProperty, arr = [], pop = arr.pop, push_native = arr.push, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf if we can't use a native one indexOf = arr.indexOf || function( elem ) { var i = 0, len = this.length; for ( ; i < len; i++ ) { if ( this[i] === elem ) { return i; } } return -1; }, booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", // Regular expressions // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/css3-syntax/#characters characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", // Loosely modeled on CSS identifier characters // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = characterEncoding.replace( "w", "w#" ), // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", // Prefer arguments quoted, // then not containing pseudos/brackets, // then attribute selectors/non-parenthetical expressions, // then anything else // These preferences are here to reduce the number of selectors // needing tokenize in the PSEUDO preFilter pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + characterEncoding + ")" ), "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rnative = /^[^{]+\{\s*\[native \w/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, rescape = /'|\\/g, // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), funescape = function( _, escaped, escapedWhitespace ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint // Support: Firefox // Workaround erroneous numeric interpretation of +"0x" return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }; // Optimize for push.apply( _, NodeList ) try { push.apply( (arr = slice.call( preferredDoc.childNodes )), preferredDoc.childNodes ); // Support: Android<4.0 // Detect silently failing push.apply arr[ preferredDoc.childNodes.length ].nodeType; } catch ( e ) { push = { apply: arr.length ? // Leverage slice if possible function( target, els ) { push_native.apply( target, slice.call(els) ); } : // Support: IE<9 // Otherwise append directly function( target, els ) { var j = target.length, i = 0; // Can't trust NodeList.length while ( (target[j++] = els[i++]) ) {} target.length = j - 1; } }; } function Sizzle( selector, context, results, seed ) { var match, elem, m, nodeType, // QSA vars i, groups, old, nid, newContext, newSelector; if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; results = results || []; if ( !selector || typeof selector !== "string" ) { return results; } if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { return []; } if ( documentIsHTML && !seed ) { // Shortcuts if ( (match = rquickExpr.exec( selector )) ) { // Speed-up: Sizzle("#ID") if ( (m = match[1]) ) { if ( nodeType === 9 ) { elem = context.getElementById( m ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document (jQuery #6963) if ( elem && elem.parentNode ) { // Handle the case where IE, Opera, and Webkit return items // by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } } else { // Context is not a document if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Speed-up: Sizzle("TAG") } else if ( match[2] ) { push.apply( results, context.getElementsByTagName( selector ) ); return results; // Speed-up: Sizzle(".CLASS") } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { push.apply( results, context.getElementsByClassName( m ) ); return results; } } // QSA path if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { nid = old = expando; newContext = context; newSelector = nodeType === 9 && selector; // qSA works strangely on Element-rooted queries // We can work around this by specifying an extra ID on the root // and working up from there (Thanks to Andrew Dupont for the technique) // IE 8 doesn't work on object elements if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { groups = tokenize( selector ); if ( (old = context.getAttribute("id")) ) { nid = old.replace( rescape, "\\$&" ); } else { context.setAttribute( "id", nid ); } nid = "[id='" + nid + "'] "; i = groups.length; while ( i-- ) { groups[i] = nid + toSelector( groups[i] ); } newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; newSelector = groups.join(","); } if ( newSelector ) { try { push.apply( results, newContext.querySelectorAll( newSelector ) ); return results; } catch(qsaError) { } finally { if ( !old ) { context.removeAttribute("id"); } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Create key-value caches of limited size * @returns {Function(string, Object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var keys = []; function cache( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key + " " ] = value); } return cache; } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { var div = document.createElement("div"); try { return !!fn( div ); } catch (e) { return false; } finally { // Remove from its parent by default if ( div.parentNode ) { div.parentNode.removeChild( div ); } // release memory in IE div = null; } } /** * Adds the same handler for all of the specified attrs * @param {String} attrs Pipe-separated list of attributes * @param {Function} handler The method that will be applied */ function addHandle( attrs, handler ) { var arr = attrs.split("|"), i = attrs.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; } } /** * Checks document order of two siblings * @param {Element} a * @param {Element} b * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b */ function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); // Use IE sourceIndex if available on both nodes if ( diff ) { return diff; } // Check if b follows a if ( cur ) { while ( (cur = cur.nextSibling) ) { if ( cur === b ) { return -1; } } } return a ? 1 : -1; } /** * Returns a function to use in pseudos for input types * @param {String} type */ function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } /** * Returns a function to use in pseudos for buttons * @param {String} type */ function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } /** * Returns a function to use in pseudos for positionals * @param {Function} fn */ function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Checks a node for validity as a Sizzle context * @param {Element|Object=} context * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value */ function testContext( context ) { return context && typeof context.getElementsByTagName !== strundefined && context; } // Expose support vars for convenience support = Sizzle.support = {}; /** * Detects XML nodes * @param {Element|Object} elem An element or a document * @returns {Boolean} True iff elem is a non-HTML XML node */ isXML = Sizzle.isXML = function( elem ) { // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = elem && (elem.ownerDocument || elem).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var hasCompare, doc = node ? node.ownerDocument || node : preferredDoc, parent = doc.defaultView; // If no document and documentElement is available, return if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Set our document document = doc; docElem = doc.documentElement; // Support tests documentIsHTML = !isXML( doc ); // Support: IE>8 // If iframe document is assigned to "document" variable and if iframe has been reloaded, // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 // IE6-8 do not support the defaultView property so parent will be undefined if ( parent && parent !== parent.top ) { // IE11 does not have attachEvent, so all must suffer if ( parent.addEventListener ) { parent.addEventListener( "unload", function() { setDocument(); }, false ); } else if ( parent.attachEvent ) { parent.attachEvent( "onunload", function() { setDocument(); }); } } /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) support.attributes = assert(function( div ) { div.className = "i"; return !div.getAttribute("className"); }); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements support.getElementsByTagName = assert(function( div ) { div.appendChild( doc.createComment("") ); return !div.getElementsByTagName("*").length; }); // Check if getElementsByClassName can be trusted support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) { div.innerHTML = "<div class='a'></div><div class='a i'></div>"; // Support: Safari<4 // Catch class over-caching div.firstChild.className = "i"; // Support: Opera<10 // Catch gEBCN failure to find non-leading classes return div.getElementsByClassName("i").length === 2; }); // Support: IE<10 // Check if getElementById returns elements by name // The broken getElementById methods don't pick up programatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( div ) { docElem.appendChild( div ).id = expando; return !doc.getElementsByName || !doc.getElementsByName( expando ).length; }); // ID find and filter if ( support.getById ) { Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== strundefined && documentIsHTML ) { var m = context.getElementById( id ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 return m && m.parentNode ? [m] : []; } }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; } else { // Support: IE6/7 // getElementById is not reliable as a find shortcut delete Expr.find["ID"]; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; } // Tag Expr.find["TAG"] = support.getElementsByTagName ? function( tag, context ) { if ( typeof context.getElementsByTagName !== strundefined ) { return context.getElementsByTagName( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { while ( (elem = results[i++]) ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Class Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { return context.getElementsByClassName( className ); } }; /* QSA/matchesSelector ---------------------------------------------------------------------- */ // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21) // We allow this because of a bug in IE8/9 that throws an error // whenever `document.activeElement` is accessed on an iframe // So, we allow :focus to pass through QSA all the time to avoid the IE error // See http://bugs.jquery.com/ticket/13378 rbuggyQSA = []; if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, // since its presence should be enough // http://bugs.jquery.com/ticket/12359 div.innerHTML = "<select t=''><option selected=''></option></select>"; // Support: IE8, Opera 10-12 // Nothing should be selected when empty strings follow ^= or $= or *= if ( div.querySelectorAll("[t^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } }); assert(function( div ) { // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment var input = doc.createElement("input"); input.setAttribute( "type", "hidden" ); div.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute if ( div.querySelectorAll("[name=d]").length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = rnative.test( (matches = docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); /* Contains ---------------------------------------------------------------------- */ hasCompare = rnative.test( docElem.compareDocumentPosition ); // Element contains another // Purposefully does not implement inclusive descendent // As in, an element does not contain itself contains = hasCompare || rnative.test( docElem.contains ) ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; /* Sorting ---------------------------------------------------------------------- */ // Document order sorting sortOrder = hasCompare ? function( a, b ) { // Flag for duplicate removal if ( a === b ) { hasDuplicate = true; return 0; } // Sort on method existence if only one input has compareDocumentPosition var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; if ( compare ) { return compare; } // Calculate position if both inputs belong to the same document compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? a.compareDocumentPosition( b ) : // Otherwise we know they are disconnected 1; // Disconnected nodes if ( compare & 1 || (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { // Choose the first element that is related to our preferred document if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { return -1; } if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { return 1; } // Maintain original order return sortInput ? ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : 0; } return compare & 4 ? -1 : 1; } : function( a, b ) { // Exit early if the nodes are identical if ( a === b ) { hasDuplicate = true; return 0; } var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { return a === doc ? -1 : b === doc ? 1 : aup ? -1 : bup ? 1 : sortInput ? ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; return doc; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } // Make sure that attribute selectors are quoted expr = expr.replace( rattributeQuotes, "='$1']" ); if ( support.matchesSelector && documentIsHTML && ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch(e) {} } return Sizzle( expr, document, null, [elem] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } var fn = Expr.attrHandle[ name.toLowerCase() ], // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : undefined; return val !== undefined ? val : support.attributes || !documentIsHTML ? elem.getAttribute( name ) : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null; }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; /** * Document sorting and removing duplicates * @param {ArrayLike} results */ Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], j = 0, i = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; sortInput = !support.sortStable && results.slice( 0 ); results.sort( sortOrder ); if ( hasDuplicate ) { while ( (elem = results[i++]) ) { if ( elem === results[ i ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } // Clear input after sorting to release objects // See https://github.com/jquery/sizzle/pull/225 sortInput = null; return results; }; /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array while ( (node = elem[i++]) ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (jQuery #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[5] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[3] && match[4] !== undefined ) { match[2] = match[4]; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeNameSelector ) { var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); return nodeNameSelector === "*" ? function() { return true; } : function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.slice( -check.length ) === check : operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, outerCache, node, diff, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index outerCache = parent[ expando ] || (parent[ expando ] = {}); cache = outerCache[ type ] || []; nodeIndex = cache[0] === dirruns && cache[1]; diff = cache[0] === dirruns && cache[2]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { outerCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } // Use previously-cached element index if available } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { diff = cache[1]; // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) } else { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf.call( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { return function( elem ) { return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifier if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": function( elem ) { return elem.disabled === false; }, "disabled": function( elem ) { return elem.disabled === true; }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), // but not by others (comment: 8; processing instruction: 7; etc.) // nodeType < 6 works because attributes (2) do not appear as children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeType < 6 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && // Support: IE<8 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } // Easy API for creating new setFilters function setFilters() {} setFilters.prototype = Expr.filters = Expr.pseudos; Expr.setFilters = new setFilters(); function tokenize( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( (tokens = []) ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push({ value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) }); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push({ value: matched, type: type, matches: match }); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); } function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, checkNonElements = base && dir === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var oldCache, outerCache, newCache = [ dirruns, doneName ]; // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); if ( (oldCache = outerCache[ dir ]) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements return (newCache[ 2 ] = oldCache[ 2 ]); } else { // Reuse newcache so results back-propagate to previous elements outerCache[ dir ] = newCache; // A match means we're done; a fail means we have to keep checking if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { return true; } } } } } }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf.call( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( // If the preceding token was a descendant combinator, insert an implicit any-element `*` tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, // We must always have either seed elements or outermost context elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), // Use integer dirruns iff this is the outermost matcher dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), len = elems.length; if ( outermost ) { outermostContext = context !== document && context; } // Add elements passing elementMatchers directly to results // Keep `i` a string if there are no elements so `matchedCount` will be "00" below // Support: IE<9, Safari // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id for ( ; i !== len && (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { j = 0; while ( (matcher = elementMatchers[j++]) ) { if ( matcher( elem, context, xml ) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // Apply set filters to unmatched elements matchedCount += i; if ( bySet && i !== matchedCount ) { j = 0; while ( (matcher = setMatchers[j++]) ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !group ) { group = tokenize( selector ); } i = group.length; while ( i-- ) { cached = matcherFromTokens( group[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); } return cached; }; function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function select( selector, context, results, seed ) { var i, tokens, token, type, find, match = tokenize( selector ); if ( !seed ) { // Try to minimize operations if there is only one group if ( match.length === 1 ) { // Take a shortcut and set the context if the root selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && support.getById && context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; if ( !context ) { return results; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; while ( i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, seed ); return results; } break; } } } } } // Compile and execute a filtering function // Provide `match` to avoid retokenization if we modified the selector above compile( selector, match )( seed, context, !documentIsHTML, results, rsibling.test( selector ) && testContext( context.parentNode ) || context ); return results; } // One-time assignments // Sort stability support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; // Support: Chrome<14 // Always assume duplicates if they aren't passed to the comparison function support.detectDuplicates = !!hasDuplicate; // Initialize against the default document setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* support.sortDetached = assert(function( div1 ) { // Should return 1, but returns 4 (following) return div1.compareDocumentPosition( document.createElement("div") ) & 1; }); // Support: IE<8 // Prevent attribute/property "interpolation" // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !assert(function( div ) { div.innerHTML = "<a href='#'></a>"; return div.firstChild.getAttribute("href") === "#" ; }) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); } }); } // Support: IE<9 // Use defaultValue in place of getAttribute("value") if ( !support.attributes || !assert(function( div ) { div.innerHTML = "<input/>"; div.firstChild.setAttribute( "value", "" ); return div.firstChild.getAttribute( "value" ) === ""; }) ) { addHandle( "value", function( elem, name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { return elem.defaultValue; } }); } // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies if ( !assert(function( div ) { return div.getAttribute("disabled") == null; }) ) { addHandle( booleans, function( elem, name, isXML ) { var val; if ( !isXML ) { return elem[ name ] === true ? name.toLowerCase() : (val = elem.getAttributeNode( name )) && val.specified ? val.value : null; } }); } return Sizzle; })( window ); jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.pseudos; jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; var rneedsContext = jQuery.expr.match.needsContext; var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); var risSimple = /^.[^:#\[\.,]*$/; // Implement the identical functionality for filter and not function winnow( elements, qualifier, not ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { /* jshint -W018 */ return !!qualifier.call( elem, i, elem ) !== not; }); } if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( elem === qualifier ) !== not; }); } if ( typeof qualifier === "string" ) { if ( risSimple.test( qualifier ) ) { return jQuery.filter( qualifier, elements, not ); } qualifier = jQuery.filter( qualifier, elements ); } return jQuery.grep( elements, function( elem ) { return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; }); } jQuery.filter = function( expr, elems, not ) { var elem = elems[ 0 ]; if ( not ) { expr = ":not(" + expr + ")"; } return elems.length === 1 && elem.nodeType === 1 ? jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { return elem.nodeType === 1; })); }; jQuery.fn.extend({ find: function( selector ) { var i, ret = [], self = this, len = self.length; if ( typeof selector !== "string" ) { return this.pushStack( jQuery( selector ).filter(function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } }) ); } for ( i = 0; i < len; i++ ) { jQuery.find( selector, self[ i ], ret ); } // Needed because $( selector, context ) becomes $( context ).find( selector ) ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); ret.selector = this.selector ? this.selector + " " + selector : selector; return ret; }, filter: function( selector ) { return this.pushStack( winnow(this, selector || [], false) ); }, not: function( selector ) { return this.pushStack( winnow(this, selector || [], true) ); }, is: function( selector ) { return !!winnow( this, // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". typeof selector === "string" && rneedsContext.test( selector ) ? jQuery( selector ) : selector || [], false ).length; } }); // Initialize a jQuery object // A central reference to the root jQuery(document) var rootjQuery, // Use the correct document accordingly with window argument (sandbox) document = window.document, // A simple way to check for HTML strings // Prioritize #id over <tag> to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, init = jQuery.fn.init = function( selector, context ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // Handle HTML strings if ( typeof selector === "string" ) { if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) if ( match[1] ) { context = context instanceof jQuery ? context[0] : context; // scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( match[1], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[2] ); // Check parentNode to catch when Blackberry 4.6 returns // nodes that are no longer in the document #6963 if ( elem && elem.parentNode ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[2] ) { return rootjQuery.find( selector ); } // Otherwise, we inject the element directly into the jQuery object this.length = 1; this[0] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || rootjQuery ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this.context = this[0] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return typeof rootjQuery.ready !== "undefined" ? rootjQuery.ready( selector ) : // Execute immediately if ready is not present selector( jQuery ); } if ( selector.selector !== undefined ) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }; // Give the init function the jQuery prototype for later instantiation init.prototype = jQuery.fn; // Initialize central reference rootjQuery = jQuery( document ); var rparentsprev = /^(?:parents|prev(?:Until|All))/, // methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.extend({ dir: function( elem, dir, until ) { var matched = [], cur = elem[ dir ]; while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { if ( cur.nodeType === 1 ) { matched.push( cur ); } cur = cur[dir]; } return matched; }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { r.push( n ); } } return r; } }); jQuery.fn.extend({ has: function( target ) { var i, targets = jQuery( target, this ), len = targets.length; return this.filter(function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( this, targets[i] ) ) { return true; } } }); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, matched = [], pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : 0; for ( ; i < l; i++ ) { for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { // Always skip document fragments if ( cur.nodeType < 11 && (pos ? pos.index(cur) > -1 : // Don't pass non-elements to Sizzle cur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors)) ) { matched.push( cur ); break; } } } return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; } // index in selector if ( typeof elem === "string" ) { return jQuery.inArray( this[0], jQuery( elem ) ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[0] : elem, this ); }, add: function( selector, context ) { return this.pushStack( jQuery.unique( jQuery.merge( this.get(), jQuery( selector, context ) ) ) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter(selector) ); } }); function sibling( cur, dir ) { do { cur = cur[ dir ]; } while ( cur && cur.nodeType !== 1 ); return cur; } jQuery.each({ parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return jQuery.dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return jQuery.dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return jQuery.dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return jQuery.dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return jQuery.dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return jQuery.dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return jQuery.sibling( elem.firstChild ); }, contents: function( elem ) { return jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( name.slice( -5 ) !== "Until" ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } if ( this.length > 1 ) { // Remove duplicates if ( !guaranteedUnique[ name ] ) { ret = jQuery.unique( ret ); } // Reverse order for parents* and prev-derivatives if ( rparentsprev.test( name ) ) { ret = ret.reverse(); } } return this.pushStack( ret ); }; }); var rnotwhite = (/\S+/g); // String to Object options format cache var optionsCache = {}; // Convert String-formatted options into Object-formatted ones and store in cache function createOptions( options ) { var object = optionsCache[ options ] = {}; jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; }); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? ( optionsCache[ options ] || createOptions( options ) ) : jQuery.extend( {}, options ); var // Flag to know if list is currently firing firing, // Last fire value (for non-forgettable lists) memory, // Flag to know if list was already fired fired, // End of the loop when firing firingLength, // Index of currently firing callback (modified by remove if needed) firingIndex, // First callback to fire (used internally by add and fireWith) firingStart, // Actual callback list list = [], // Stack of fire calls for repeatable lists stack = !options.once && [], // Fire callbacks fire = function( data ) { memory = options.memory && data; fired = true; firingIndex = firingStart || 0; firingStart = 0; firingLength = list.length; firing = true; for ( ; list && firingIndex < firingLength; firingIndex++ ) { if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { memory = false; // To prevent further calls using add break; } } firing = false; if ( list ) { if ( stack ) { if ( stack.length ) { fire( stack.shift() ); } } else if ( memory ) { list = []; } else { self.disable(); } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // First, we save the current length var start = list.length; (function add( args ) { jQuery.each( args, function( _, arg ) { var type = jQuery.type( arg ); if ( type === "function" ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && type !== "string" ) { // Inspect recursively add( arg ); } }); })( arguments ); // Do we need to add the callbacks to the // current firing batch? if ( firing ) { firingLength = list.length; // With memory, if we're not firing then // we should call right away } else if ( memory ) { firingStart = start; fire( memory ); } } return this; }, // Remove a callback from the list remove: function() { if ( list ) { jQuery.each( arguments, function( _, arg ) { var index; while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( firing ) { if ( index <= firingLength ) { firingLength--; } if ( index <= firingIndex ) { firingIndex--; } } } }); } return this; }, // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); }, // Remove all callbacks from the list empty: function() { list = []; firingLength = 0; return this; }, // Have the list do nothing anymore disable: function() { list = stack = memory = undefined; return this; }, // Is it disabled? disabled: function() { return !list; }, // Lock the list in its current state lock: function() { stack = undefined; if ( !memory ) { self.disable(); } return this; }, // Is it locked? locked: function() { return !stack; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { if ( list && ( !fired || stack ) ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; if ( firing ) { stack.push( args ); } else { fire( args ); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; jQuery.extend({ Deferred: function( func ) { var tuples = [ // action, add listener, listener list, final state [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], [ "notify", "progress", jQuery.Callbacks("memory") ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred(function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; // deferred[ done | fail | progress ] for forwarding actions to newDefer deferred[ tuple[1] ](function() { var returned = fn && fn.apply( this, arguments ); if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() .done( newDefer.resolve ) .fail( newDefer.reject ) .progress( newDefer.notify ); } else { newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } }); }); fns = null; }).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Keep pipe for back-compat promise.pipe = promise.then; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 3 ]; // promise[ done | fail | progress ] = list.add promise[ tuple[1] ] = list.add; // Handle state if ( stateString ) { list.add(function() { // state = [ resolved | rejected ] state = stateString; // [ reject_list | resolve_list ].disable; progress_list.lock }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } // deferred[ resolve | reject | notify ] deferred[ tuple[0] ] = function() { deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; deferred[ tuple[0] + "With" ] = list.fireWith; }); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( subordinate /* , ..., subordinateN */ ) { var i = 0, resolveValues = slice.call( arguments ), length = resolveValues.length, // the count of uncompleted subordinates remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, // the master Deferred. If resolveValues consist of only a single Deferred, just use that. deferred = remaining === 1 ? subordinate : jQuery.Deferred(), // Update function for both resolve and progress values updateFunc = function( i, contexts, values ) { return function( value ) { contexts[ i ] = this; values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( values === progressValues ) { deferred.notifyWith( contexts, values ); } else if ( !(--remaining) ) { deferred.resolveWith( contexts, values ); } }; }, progressValues, progressContexts, resolveContexts; // add listeners to Deferred subordinates; treat others as resolved if ( length > 1 ) { progressValues = new Array( length ); progressContexts = new Array( length ); resolveContexts = new Array( length ); for ( ; i < length; i++ ) { if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { resolveValues[ i ].promise() .done( updateFunc( i, resolveContexts, resolveValues ) ) .fail( deferred.reject ) .progress( updateFunc( i, progressContexts, progressValues ) ); } else { --remaining; } } } // if we're not waiting on anything, resolve the master if ( !remaining ) { deferred.resolveWith( resolveContexts, resolveValues ); } return deferred.promise(); } }); // The deferred used on DOM ready var readyList; jQuery.fn.ready = function( fn ) { // Add the callback jQuery.ready.promise().done( fn ); return this; }; jQuery.extend({ // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Hold (or release) the ready event holdReady: function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready ); } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); // Trigger any bound ready events if ( jQuery.fn.trigger ) { jQuery( document ).trigger("ready").off("ready"); } } }); /** * Clean-up method for dom ready events */ function detach() { if ( document.addEventListener ) { document.removeEventListener( "DOMContentLoaded", completed, false ); window.removeEventListener( "load", completed, false ); } else { document.detachEvent( "onreadystatechange", completed ); window.detachEvent( "onload", completed ); } } /** * The ready event handler and self cleanup method */ function completed() { // readyState === "complete" is good enough for us to call the dom ready in oldIE if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { detach(); jQuery.ready(); } } jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called after the browser event has already occurred. // we once tried to use readyState "interactive" here, but it caused issues like the one // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready setTimeout( jQuery.ready ); // Standards-based browsers support DOMContentLoaded } else if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", completed, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", completed, false ); // If IE event model is used } else { // Ensure firing before onload, maybe late but safe also for iframes document.attachEvent( "onreadystatechange", completed ); // A fallback to window.onload, that will always work window.attachEvent( "onload", completed ); // If IE and not a frame // continually check to see if the document is ready var top = false; try { top = window.frameElement == null && document.documentElement; } catch(e) {} if ( top && top.doScroll ) { (function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll("left"); } catch(e) { return setTimeout( doScrollCheck, 50 ); } // detach all dom ready events detach(); // and execute any waiting functions jQuery.ready(); } })(); } } } return readyList.promise( obj ); }; var strundefined = typeof undefined; // Support: IE<9 // Iteration over object's inherited properties before its own var i; for ( i in jQuery( support ) ) { break; } support.ownLast = i !== "0"; // Note: most support tests are defined in their respective modules. // false until the test is run support.inlineBlockNeedsLayout = false; jQuery(function() { // We need to execute this one support test ASAP because we need to know // if body.style.zoom needs to be set. var container, div, body = document.getElementsByTagName("body")[0]; if ( !body ) { // Return for frameset docs that don't have a body return; } // Setup container = document.createElement( "div" ); container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; div = document.createElement( "div" ); body.appendChild( container ).appendChild( div ); if ( typeof div.style.zoom !== strundefined ) { // Support: IE<8 // Check if natively block-level elements act like inline-block // elements when setting their display to 'inline' and giving // them layout div.style.cssText = "border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1"; if ( (support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 )) ) { // Prevent IE 6 from affecting layout for positioned elements #11048 // Prevent IE from shrinking the body in IE 7 mode #12869 // Support: IE<8 body.style.zoom = 1; } } body.removeChild( container ); // Null elements to avoid leaks in IE container = div = null; }); (function() { var div = document.createElement( "div" ); // Execute the test only if not already executed in another module. if (support.deleteExpando == null) { // Support: IE<9 support.deleteExpando = true; try { delete div.test; } catch( e ) { support.deleteExpando = false; } } // Null elements to avoid leaks in IE. div = null; })(); /** * Determines whether an object can have data */ jQuery.acceptData = function( elem ) { var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ], nodeType = +elem.nodeType || 1; // Do not set data on non-element DOM nodes because it will not be cleared (#8335). return nodeType !== 1 && nodeType !== 9 ? false : // Nodes accept data unless otherwise specified; rejection can be conditional !noData || noData !== true && elem.getAttribute("classid") === noData; }; var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /([A-Z])/g; function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = data === "true" ? true : data === "false" ? false : data === "null" ? null : // Only convert to a number if it doesn't change the string +data + "" === data ? +data : rbrace.test( data ) ? jQuery.parseJSON( data ) : data; } catch( e ) {} // Make sure we set the data so it isn't changed later jQuery.data( elem, key, data ); } else { data = undefined; } } return data; } // checks a cache object for emptiness function isEmptyDataObject( obj ) { var name; for ( name in obj ) { // if the public data object is empty, the private is still empty if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { continue; } if ( name !== "toJSON" ) { return false; } } return true; } function internalData( elem, name, data, pvt /* Internal Use Only */ ) { if ( !jQuery.acceptData( elem ) ) { return; } var ret, thisCache, internalKey = jQuery.expando, // We have to handle DOM nodes and JS objects differently because IE6-7 // can't GC object references properly across the DOM-JS boundary isNode = elem.nodeType, // Only DOM nodes need the global jQuery cache; JS object data is // attached directly to the object so GC can occur automatically cache = isNode ? jQuery.cache : elem, // Only defining an ID for JS objects if its cache already exists allows // the code to shortcut on the same path as a DOM node with no cache id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; // Avoid doing any more work than we need to when trying to get data on an // object that has no data at all if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { return; } if ( !id ) { // Only DOM nodes need a new unique ID for each element since their data // ends up in the global cache if ( isNode ) { id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++; } else { id = internalKey; } } if ( !cache[ id ] ) { // Avoid exposing jQuery metadata on plain JS objects when the object // is serialized using JSON.stringify cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; } // An object can be passed to jQuery.data instead of a key/value pair; this gets // shallow copied over onto the existing cache if ( typeof name === "object" || typeof name === "function" ) { if ( pvt ) { cache[ id ] = jQuery.extend( cache[ id ], name ); } else { cache[ id ].data = jQuery.extend( cache[ id ].data, name ); } } thisCache = cache[ id ]; // jQuery data() is stored in a separate object inside the object's internal data // cache in order to avoid key collisions between internal data and user-defined // data. if ( !pvt ) { if ( !thisCache.data ) { thisCache.data = {}; } thisCache = thisCache.data; } if ( data !== undefined ) { thisCache[ jQuery.camelCase( name ) ] = data; } // Check for both converted-to-camel and non-converted data property names // If a data property was specified if ( typeof name === "string" ) { // First Try to find as-is property data ret = thisCache[ name ]; // Test for null|undefined property data if ( ret == null ) { // Try to find the camelCased property ret = thisCache[ jQuery.camelCase( name ) ]; } } else { ret = thisCache; } return ret; } function internalRemoveData( elem, name, pvt ) { if ( !jQuery.acceptData( elem ) ) { return; } var thisCache, i, isNode = elem.nodeType, // See jQuery.data for more information cache = isNode ? jQuery.cache : elem, id = isNode ? elem[ jQuery.expando ] : jQuery.expando; // If there is already no cache entry for this object, there is no // purpose in continuing if ( !cache[ id ] ) { return; } if ( name ) { thisCache = pvt ? cache[ id ] : cache[ id ].data; if ( thisCache ) { // Support array or space separated string names for data keys if ( !jQuery.isArray( name ) ) { // try the string as a key before any manipulation if ( name in thisCache ) { name = [ name ]; } else { // split the camel cased version by spaces unless a key with the spaces exists name = jQuery.camelCase( name ); if ( name in thisCache ) { name = [ name ]; } else { name = name.split(" "); } } } else { // If "name" is an array of keys... // When data is initially created, via ("key", "val") signature, // keys will be converted to camelCase. // Since there is no way to tell _how_ a key was added, remove // both plain key and camelCase key. #12786 // This will only penalize the array argument path. name = name.concat( jQuery.map( name, jQuery.camelCase ) ); } i = name.length; while ( i-- ) { delete thisCache[ name[i] ]; } // If there is no data left in the cache, we want to continue // and let the cache object itself get destroyed if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { return; } } } // See jQuery.data for more information if ( !pvt ) { delete cache[ id ].data; // Don't destroy the parent cache unless the internal data object // had been the only thing left in it if ( !isEmptyDataObject( cache[ id ] ) ) { return; } } // Destroy the cache if ( isNode ) { jQuery.cleanData( [ elem ], true ); // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) /* jshint eqeqeq: false */ } else if ( support.deleteExpando || cache != cache.window ) { /* jshint eqeqeq: true */ delete cache[ id ]; // When all else fails, null } else { cache[ id ] = null; } } jQuery.extend({ cache: {}, // The following elements (space-suffixed to avoid Object.prototype collisions) // throw uncatchable exceptions if you attempt to set expando properties noData: { "applet ": true, "embed ": true, // ...but Flash objects (which have this classid) *can* handle expandos "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" }, hasData: function( elem ) { elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; return !!elem && !isEmptyDataObject( elem ); }, data: function( elem, name, data ) { return internalData( elem, name, data ); }, removeData: function( elem, name ) { return internalRemoveData( elem, name ); }, // For internal use only. _data: function( elem, name, data ) { return internalData( elem, name, data, true ); }, _removeData: function( elem, name ) { return internalRemoveData( elem, name, true ); } }); jQuery.fn.extend({ data: function( key, value ) { var i, name, data, elem = this[0], attrs = elem && elem.attributes; // Special expections of .data basically thwart jQuery.access, // so implement the relevant behavior ourselves // Gets all values if ( key === undefined ) { if ( this.length ) { data = jQuery.data( elem ); if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { i = attrs.length; while ( i-- ) { name = attrs[i].name; if ( name.indexOf("data-") === 0 ) { name = jQuery.camelCase( name.slice(5) ); dataAttr( elem, name, data[ name ] ); } } jQuery._data( elem, "parsedAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each(function() { jQuery.data( this, key ); }); } return arguments.length > 1 ? // Sets one value this.each(function() { jQuery.data( this, key, value ); }) : // Gets one value // Try to fetch any internally stored data first elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined; }, removeData: function( key ) { return this.each(function() { jQuery.removeData( this, key ); }); } }); jQuery.extend({ queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = jQuery._data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || jQuery.isArray(data) ) { queue = jQuery._data( elem, type, jQuery.makeArray(data) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // not intended for public consumption - generates a queueHooks object, or returns the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return jQuery._data( elem, key ) || jQuery._data( elem, key, { empty: jQuery.Callbacks("once memory").add(function() { jQuery._removeData( elem, type + "queue" ); jQuery._removeData( elem, key ); }) }); } }); jQuery.fn.extend({ queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[0], type ); } return data === undefined ? this : this.each(function() { var queue = jQuery.queue( this, type, data ); // ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); }, dequeue: function( type ) { return this.each(function() { jQuery.dequeue( this, type ); }); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while ( i-- ) { tmp = jQuery._data( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } }); var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; var isHidden = function( elem, el ) { // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }; // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, length = elems.length, bulk = key == null; // Sets many values if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < length; i++ ) { fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); } } } return chainable ? elems : // Gets bulk ? fn.call( elems ) : length ? fn( elems[0], key ) : emptyGet; }; var rcheckableType = (/^(?:checkbox|radio)$/i); (function() { var fragment = document.createDocumentFragment(), div = document.createElement("div"), input = document.createElement("input"); // Setup div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a>"; // IE strips leading whitespace when .innerHTML is used support.leadingWhitespace = div.firstChild.nodeType === 3; // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables support.tbody = !div.getElementsByTagName( "tbody" ).length; // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE support.htmlSerialize = !!div.getElementsByTagName( "link" ).length; // Makes sure cloning an html5 element does not cause problems // Where outerHTML is undefined, this still works support.html5Clone = document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav></:nav>"; // Check if a disconnected checkbox will retain its checked // value of true after appended to the DOM (IE6/7) input.type = "checkbox"; input.checked = true; fragment.appendChild( input ); support.appendChecked = input.checked; // Make sure textarea (and checkbox) defaultValue is properly cloned // Support: IE6-IE11+ div.innerHTML = "<textarea>x</textarea>"; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; // #11217 - WebKit loses check when the name is after the checked attribute fragment.appendChild( div ); div.innerHTML = "<input type='radio' checked='checked' name='t'/>"; // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 // old WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE<9 // Opera does not clone events (and typeof div.attachEvent === undefined). // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() support.noCloneEvent = true; if ( div.attachEvent ) { div.attachEvent( "onclick", function() { support.noCloneEvent = false; }); div.cloneNode( true ).click(); } // Execute the test only if not already executed in another module. if (support.deleteExpando == null) { // Support: IE<9 support.deleteExpando = true; try { delete div.test; } catch( e ) { support.deleteExpando = false; } } // Null elements to avoid leaks in IE. fragment = div = input = null; })(); (function() { var i, eventName, div = document.createElement( "div" ); // Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event) for ( i in { submit: true, change: true, focusin: true }) { eventName = "on" + i; if ( !(support[ i + "Bubbles" ] = eventName in window) ) { // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) div.setAttribute( eventName, "t" ); support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false; } } // Null elements to avoid leaks in IE. div = null; })(); var rformElems = /^(?:input|select|textarea)$/i, rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|contextmenu)|click/, rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; function returnTrue() { return true; } function returnFalse() { return false; } function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var tmp, events, t, handleObjIn, special, eventHandle, handleObj, handlers, type, namespaces, origType, elemData = jQuery._data( elem ); // Don't attach events to noData or text/comment nodes (but allow plain objects) if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !(events = elemData.events) ) { events = elemData.events = {}; } if ( !(eventHandle = elemData.handle) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ? jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : undefined; }; // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events eventHandle.elem = elem; } // Handle multiple events separated by a space types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { continue; } // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend({ type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join(".") }, handleObjIn ); // Init the event handler queue if we're the first if ( !(handlers = events[ type ]) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener/attachEvent if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE elem = null; }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, handleObj, tmp, origCount, t, events, special, handlers, type, namespaces, origType, elemData = jQuery.hasData( elem ) && jQuery._data( elem ); if ( !elemData || !(events = elemData.events) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[t] ) || []; type = origType = tmp[1]; namespaces = ( tmp[2] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { delete elemData.handle; // removeData also checks for emptiness and clears the expando if empty // so use it instead of delete jQuery._removeData( elem, "events" ); } }, trigger: function( event, data, elem, onlyHandlers ) { var handle, ontype, cur, bubbleType, special, tmp, i, eventPath = [ elem || document ], type = hasOwn.call( event, "type" ) ? event.type : event, namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; cur = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf(".") >= 0 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split("."); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf(":") < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) event.isTrigger = onlyHandlers ? 2 : 3; event.namespace = namespaces.join("."); event.namespace_re = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === (elem.ownerDocument || document) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && handle.apply && jQuery.acceptData( cur ) ) { event.result = handle.apply( cur, data ); if ( event.result === false ) { event.preventDefault(); } } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && jQuery.acceptData( elem ) ) { // Call a native DOM method on the target with the same name name as the event. // Can't use an .isFunction() check here because IE6/7 fails that test. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; try { elem[ type ](); } catch ( e ) { // IE<9 dies on focus/blur to hidden element (#1486,#12518) // only reproducible on winXP IE8 native, not IE9 in IE8 mode } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, dispatch: function( event ) { // Make a writable jQuery.Event from the native event object event = jQuery.event.fix( event ); var i, ret, handleObj, matched, j, handlerQueue = [], args = slice.call( arguments ), handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[0] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) .apply( matched.elem, args ); if ( ret !== undefined ) { if ( (event.result = ret) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var sel, handleObj, matches, i, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers // Black-hole SVG <use> instance trees (#13180) // Avoid non-left-click bubbling in Firefox (#3861) if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { /* jshint eqeqeq: false */ for ( ; cur != this; cur = cur.parentNode || this ) { /* jshint eqeqeq: true */ // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matches[ sel ] === undefined ) { matches[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) >= 0 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matches[ sel ] ) { matches.push( handleObj ); } } if ( matches.length ) { handlerQueue.push({ elem: cur, handlers: matches }); } } } } // Add the remaining (directly-bound) handlers if ( delegateCount < handlers.length ) { handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); } return handlerQueue; }, fix: function( event ) { if ( event[ jQuery.expando ] ) { return event; } // Create a writable copy of the event object and normalize some properties var i, prop, copy, type = event.type, originalEvent = event, fixHook = this.fixHooks[ type ]; if ( !fixHook ) { this.fixHooks[ type ] = fixHook = rmouseEvent.test( type ) ? this.mouseHooks : rkeyEvent.test( type ) ? this.keyHooks : {}; } copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; event = new jQuery.Event( originalEvent ); i = copy.length; while ( i-- ) { prop = copy[ i ]; event[ prop ] = originalEvent[ prop ]; } // Support: IE<9 // Fix target property (#1925) if ( !event.target ) { event.target = originalEvent.srcElement || document; } // Support: Chrome 23+, Safari? // Target should not be a text node (#504, #13143) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // Support: IE<9 // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) event.metaKey = !!event.metaKey; return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, // Includes some event props shared by KeyEvent and MouseEvent props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), fixHooks: {}, keyHooks: { props: "char charCode key keyCode".split(" "), filter: function( event, original ) { // Add which for key events if ( event.which == null ) { event.which = original.charCode != null ? original.charCode : original.keyCode; } return event; } }, mouseHooks: { props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), filter: function( event, original ) { var body, eventDoc, doc, button = original.button, fromElement = original.fromElement; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && original.clientX != null ) { eventDoc = event.target.ownerDocument || document; doc = eventDoc.documentElement; body = eventDoc.body; event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); } // Add relatedTarget, if necessary if ( !event.relatedTarget && fromElement ) { event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && button !== undefined ) { event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } return event; } }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, focus: { // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== safeActiveElement() && this.focus ) { try { this.focus(); return false; } catch ( e ) { // Support: IE<9 // If we error on focus to hidden element (#1486, #12518), // let .trigger() run the handlers } } }, delegateType: "focusin" }, blur: { trigger: function() { if ( this === safeActiveElement() && this.blur ) { this.blur(); return false; } }, delegateType: "focusout" }, click: { // For checkbox, fire native event so checked state will be right trigger: function() { if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { this.click(); return false; } }, // For cross-browser consistency, don't fire native .click() on links _default: function( event ) { return jQuery.nodeName( event.target, "a" ); } }, beforeunload: { postDispatch: function( event ) { // Even when returnValue equals to undefined Firefox will still show alert if ( event.result !== undefined ) { event.originalEvent.returnValue = event.result; } } } }, simulate: function( type, elem, event, bubble ) { // Piggyback on a donor event to simulate a different one. // Fake originalEvent to avoid donor's stopPropagation, but if the // simulated event prevents default then we do the same on the donor. var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true, originalEvent: {} } ); if ( bubble ) { jQuery.event.trigger( e, null, elem ); } else { jQuery.event.dispatch.call( elem, e ); } if ( e.isDefaultPrevented() ) { event.preventDefault(); } } }; jQuery.removeEvent = document.removeEventListener ? function( elem, type, handle ) { if ( elem.removeEventListener ) { elem.removeEventListener( type, handle, false ); } } : function( elem, type, handle ) { var name = "on" + type; if ( elem.detachEvent ) { // #8545, #7054, preventing memory leaks for custom events in IE6-8 // detachEvent needed property on element, by name of that event, to properly expose it to GC if ( typeof elem[ name ] === strundefined ) { elem[ name ] = null; } elem.detachEvent( name, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !(this instanceof jQuery.Event) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && ( // Support: IE < 9 src.returnValue === false || // Support: Android < 4.0 src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( !e ) { return; } // If preventDefault exists, run it on the original event if ( e.preventDefault ) { e.preventDefault(); // Support: IE // Otherwise set the returnValue property of the original event to false } else { e.returnValue = false; } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( !e ) { return; } // If stopPropagation exists, run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // Support: IE // Set the cancelBubble property of the original event to true e.cancelBubble = true; }, stopImmediatePropagation: function() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); } }; // Create mouseenter/leave events using mouseover/out and event-time checks jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || (related !== target && !jQuery.contains( target, related )) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; }); // IE submit delegation if ( !support.submitBubbles ) { jQuery.event.special.submit = { setup: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Lazy-add a submit handler when a descendant form may potentially be submitted jQuery.event.add( this, "click._submit keypress._submit", function( e ) { // Node name check avoids a VML-related crash in IE (#9807) var elem = e.target, form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; if ( form && !jQuery._data( form, "submitBubbles" ) ) { jQuery.event.add( form, "submit._submit", function( event ) { event._submit_bubble = true; }); jQuery._data( form, "submitBubbles", true ); } }); // return undefined since we don't need an event listener }, postDispatch: function( event ) { // If form was submitted by the user, bubble the event up the tree if ( event._submit_bubble ) { delete event._submit_bubble; if ( this.parentNode && !event.isTrigger ) { jQuery.event.simulate( "submit", this.parentNode, event, true ); } } }, teardown: function() { // Only need this for delegated form submit events if ( jQuery.nodeName( this, "form" ) ) { return false; } // Remove delegated handlers; cleanData eventually reaps submit handlers attached above jQuery.event.remove( this, "._submit" ); } }; } // IE change delegation and checkbox/radio fix if ( !support.changeBubbles ) { jQuery.event.special.change = { setup: function() { if ( rformElems.test( this.nodeName ) ) { // IE doesn't fire change on a check/radio until blur; trigger it on click // after a propertychange. Eat the blur-change in special.change.handle. // This still fires onchange a second time for check/radio after blur. if ( this.type === "checkbox" || this.type === "radio" ) { jQuery.event.add( this, "propertychange._change", function( event ) { if ( event.originalEvent.propertyName === "checked" ) { this._just_changed = true; } }); jQuery.event.add( this, "click._change", function( event ) { if ( this._just_changed && !event.isTrigger ) { this._just_changed = false; } // Allow triggered, simulated change events (#11500) jQuery.event.simulate( "change", this, event, true ); }); } return false; } // Delegated event; lazy-add a change handler on descendant inputs jQuery.event.add( this, "beforeactivate._change", function( e ) { var elem = e.target; if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { jQuery.event.add( elem, "change._change", function( event ) { if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { jQuery.event.simulate( "change", this.parentNode, event, true ); } }); jQuery._data( elem, "changeBubbles", true ); } }); }, handle: function( event ) { var elem = event.target; // Swallow native change events from checkbox/radio, we already triggered them above if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { return event.handleObj.handler.apply( this, arguments ); } }, teardown: function() { jQuery.event.remove( this, "._change" ); return !rformElems.test( this.nodeName ); } }; } // Create "bubbling" focus and blur events if ( !support.focusinBubbles ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler on the document while someone wants focusin/focusout var handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); }; jQuery.event.special[ fix ] = { setup: function() { var doc = this.ownerDocument || this, attaches = jQuery._data( doc, fix ); if ( !attaches ) { doc.addEventListener( orig, handler, true ); } jQuery._data( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { var doc = this.ownerDocument || this, attaches = jQuery._data( doc, fix ) - 1; if ( !attaches ) { doc.removeEventListener( orig, handler, true ); jQuery._removeData( doc, fix ); } else { jQuery._data( doc, fix, attaches ); } } }; }); } jQuery.fn.extend({ on: function( types, selector, data, fn, /*INTERNAL*/ one ) { var type, origFn; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { this.on( type, selector, data, types[ type ], one ); } return this; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return this; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return this.each( function() { jQuery.event.add( this, types, fn, data, selector ); }); }, one: function( types, selector, data, fn ) { return this.on( types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each(function() { jQuery.event.remove( this, types, fn, selector ); }); }, trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); }); }, triggerHandler: function( type, data ) { var elem = this[0]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } } }); function createSafeFragment( document ) { var list = nodeNames.split( "|" ), safeFrag = document.createDocumentFragment(); if ( safeFrag.createElement ) { while ( list.length ) { safeFrag.createElement( list.pop() ); } } return safeFrag; } var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), rleadingWhitespace = /^\s+/, rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, rtagName = /<([\w:]+)/, rtbody = /<tbody/i, rhtml = /<|&#?\w+;/, rnoInnerhtml = /<(?:script|style|link)/i, // checked="checked" or checked rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, rscriptType = /^$|\/(?:java|ecma)script/i, rscriptTypeMasked = /^true\/(.*)/, rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g, // We have to close these tags to support XHTML (#13200) wrapMap = { option: [ 1, "<select multiple='multiple'>", "</select>" ], legend: [ 1, "<fieldset>", "</fieldset>" ], area: [ 1, "<map>", "</map>" ], param: [ 1, "<object>", "</object>" ], thead: [ 1, "<table>", "</table>" ], tr: [ 2, "<table><tbody>", "</tbody></table>" ], col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, // unless wrapped in a div with non-breaking characters in front of it. _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X<div>", "</div>" ] }, safeFragment = createSafeFragment( document ), fragmentDiv = safeFragment.appendChild( document.createElement("div") ); wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; function getAll( context, tag ) { var elems, elem, i = 0, found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) : typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) : undefined; if ( !found ) { for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { if ( !tag || jQuery.nodeName( elem, tag ) ) { found.push( elem ); } else { jQuery.merge( found, getAll( elem, tag ) ); } } } return tag === undefined || tag && jQuery.nodeName( context, tag ) ? jQuery.merge( [ context ], found ) : found; } // Used in buildFragment, fixes the defaultChecked property function fixDefaultChecked( elem ) { if ( rcheckableType.test( elem.type ) ) { elem.defaultChecked = elem.checked; } } // Support: IE<8 // Manipulating tables requires a tbody function manipulationTarget( elem, content ) { return jQuery.nodeName( elem, "table" ) && jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? elem.getElementsByTagName("tbody")[0] || elem.appendChild( elem.ownerDocument.createElement("tbody") ) : elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; return elem; } function restoreScript( elem ) { var match = rscriptTypeMasked.exec( elem.type ); if ( match ) { elem.type = match[1]; } else { elem.removeAttribute("type"); } return elem; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var elem, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); } } function cloneCopyEvent( src, dest ) { if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { return; } var type, i, l, oldData = jQuery._data( src ), curData = jQuery._data( dest, oldData ), events = oldData.events; if ( events ) { delete curData.handle; curData.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } // make the cloned public data object a copy from the original if ( curData.data ) { curData.data = jQuery.extend( {}, curData.data ); } } function fixCloneNodeIssues( src, dest ) { var nodeName, e, data; // We do not need to do anything for non-Elements if ( dest.nodeType !== 1 ) { return; } nodeName = dest.nodeName.toLowerCase(); // IE6-8 copies events bound via attachEvent when using cloneNode. if ( !support.noCloneEvent && dest[ jQuery.expando ] ) { data = jQuery._data( dest ); for ( e in data.events ) { jQuery.removeEvent( dest, e, data.handle ); } // Event data gets referenced instead of copied if the expando gets copied too dest.removeAttribute( jQuery.expando ); } // IE blanks contents when cloning scripts, and tries to evaluate newly-set text if ( nodeName === "script" && dest.text !== src.text ) { disableScript( dest ).text = src.text; restoreScript( dest ); // IE6-10 improperly clones children of object elements using classid. // IE10 throws NoModificationAllowedError if parent is null, #12132. } else if ( nodeName === "object" ) { if ( dest.parentNode ) { dest.outerHTML = src.outerHTML; } // This path appears unavoidable for IE9. When cloning an object // element in IE9, the outerHTML strategy above is not sufficient. // If the src has innerHTML and the destination does not, // copy the src.innerHTML into the dest.innerHTML. #10324 if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { dest.innerHTML = src.innerHTML; } } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button. Worse, IE6-7 fail to give the cloned element // a checked appearance if the defaultChecked value isn't also set dest.defaultChecked = dest.checked = src.checked; // IE6-7 get confused and end up setting the value of a cloned // checkbox/radio button to an empty string instead of "on" if ( dest.value !== src.value ) { dest.value = src.value; } // IE6-8 fails to return the selected option to the default selected // state when cloning options } else if ( nodeName === "option" ) { dest.defaultSelected = dest.selected = src.defaultSelected; // IE6-8 fails to set the defaultValue to the correct value when // cloning other types of input fields } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } jQuery.extend({ clone: function( elem, dataAndEvents, deepDataAndEvents ) { var destElements, node, clone, i, srcElements, inPage = jQuery.contains( elem.ownerDocument, elem ); if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { clone = elem.cloneNode( true ); // IE<=8 does not properly clone detached, unknown element nodes } else { fragmentDiv.innerHTML = elem.outerHTML; fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); } if ( (!support.noCloneEvent || !support.noCloneChecked) && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); // Fix all IE cloning issues for ( i = 0; (node = srcElements[i]) != null; ++i ) { // Ensure that the destination node is not null; Fixes #9587 if ( destElements[i] ) { fixCloneNodeIssues( node, destElements[i] ); } } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0; (node = srcElements[i]) != null; i++ ) { cloneCopyEvent( node, destElements[i] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } destElements = srcElements = node = null; // Return the cloned set return clone; }, buildFragment: function( elems, context, scripts, selection ) { var j, elem, contains, tmp, tag, tbody, wrap, l = elems.length, // Ensure a safe fragment safe = createSafeFragment( context ), nodes = [], i = 0; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( jQuery.type( elem ) === "object" ) { jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || safe.appendChild( context.createElement("div") ); // Deserialize a standard representation tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1></$2>" ) + wrap[2]; // Descend through wrappers to the right content j = wrap[0]; while ( j-- ) { tmp = tmp.lastChild; } // Manually add leading whitespace removed by IE if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); } // Remove IE's autoinserted <tbody> from table fragments if ( !support.tbody ) { // String was a <table>, *may* have spurious <tbody> elem = tag === "table" && !rtbody.test( elem ) ? tmp.firstChild : // String was a bare <thead> or <tfoot> wrap[1] === "<table>" && !rtbody.test( elem ) ? tmp : 0; j = elem && elem.childNodes.length; while ( j-- ) { if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { elem.removeChild( tbody ); } } } jQuery.merge( nodes, tmp.childNodes ); // Fix #12392 for WebKit and IE > 9 tmp.textContent = ""; // Fix #12392 for oldIE while ( tmp.firstChild ) { tmp.removeChild( tmp.firstChild ); } // Remember the top-level container for proper cleanup tmp = safe.lastChild; } } } // Fix #11356: Clear elements from fragment if ( tmp ) { safe.removeChild( tmp ); } // Reset defaultChecked for any radios and checkboxes // about to be appended to the DOM in IE 6/7 (#8060) if ( !support.appendChecked ) { jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); } i = 0; while ( (elem = nodes[ i++ ]) ) { // #4087 - If origin and destination elements are the same, and this is // that element, do not do anything if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { continue; } contains = jQuery.contains( elem.ownerDocument, elem ); // Append to fragment tmp = getAll( safe.appendChild( elem ), "script" ); // Preserve script evaluation history if ( contains ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( (elem = tmp[ j++ ]) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } tmp = null; return safe; }, cleanData: function( elems, /* internal */ acceptData ) { var elem, type, id, data, i = 0, internalKey = jQuery.expando, cache = jQuery.cache, deleteExpando = support.deleteExpando, special = jQuery.event.special; for ( ; (elem = elems[i]) != null; i++ ) { if ( acceptData || jQuery.acceptData( elem ) ) { id = elem[ internalKey ]; data = id && cache[ id ]; if ( data ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Remove cache only if it was not already removed by jQuery.event.remove if ( cache[ id ] ) { delete cache[ id ]; // IE does not allow us to delete expando properties from nodes, // nor does it have a removeAttribute function on Document nodes; // we must handle all of these cases if ( deleteExpando ) { delete elem[ internalKey ]; } else if ( typeof elem.removeAttribute !== strundefined ) { elem.removeAttribute( internalKey ); } else { elem[ internalKey ] = null; } deletedIds.push( id ); } } } } } }); jQuery.fn.extend({ text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); }, null, value, arguments.length ); }, append: function() { return this.domManip( arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } }); }, prepend: function() { return this.domManip( arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } }); }, before: function() { return this.domManip( arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } }); }, after: function() { return this.domManip( arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } }); }, remove: function( selector, keepData /* Internal Use Only */ ) { var elem, elems = selector ? jQuery.filter( selector, this ) : this, i = 0; for ( ; (elem = elems[i]) != null; i++ ) { if ( !keepData && elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem ) ); } if ( elem.parentNode ) { if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { setGlobalEval( getAll( elem, "script" ) ); } elem.parentNode.removeChild( elem ); } } return this; }, empty: function() { var elem, i = 0; for ( ; (elem = this[i]) != null; i++ ) { // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); } // Remove any remaining nodes while ( elem.firstChild ) { elem.removeChild( elem.firstChild ); } // If this is a select, ensure that it displays empty (#12336) // Support: IE<9 if ( elem.options && jQuery.nodeName( elem, "select" ) ) { elem.options.length = 0; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map(function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); }); }, html: function( value ) { return access( this, function( value ) { var elem = this[ 0 ] || {}, i = 0, l = this.length; if ( value === undefined ) { return elem.nodeType === 1 ? elem.innerHTML.replace( rinlinejQuery, "" ) : undefined; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && ( support.htmlSerialize || !rnoshimcache.test( value ) ) && ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && !wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) { value = value.replace( rxhtmlTag, "<$1></$2>" ); try { for (; i < l; i++ ) { // Remove element nodes and prevent memory leaks elem = this[i] || {}; if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch(e) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function() { var arg = arguments[ 0 ]; // Make the changes, replacing each context element with the new content this.domManip( arguments, function( elem ) { arg = this.parentNode; jQuery.cleanData( getAll( this ) ); if ( arg ) { arg.replaceChild( elem, this ); } }); // Force removal if there was no new content (e.g., from empty arguments) return arg && (arg.length || arg.nodeType) ? this : this.remove(); }, detach: function( selector ) { return this.remove( selector, true ); }, domManip: function( args, callback ) { // Flatten any nested arrays args = concat.apply( [], args ); var first, node, hasScripts, scripts, doc, fragment, i = 0, l = this.length, set = this, iNoClone = l - 1, value = args[0], isFunction = jQuery.isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( isFunction || ( l > 1 && typeof value === "string" && !support.checkClone && rchecked.test( value ) ) ) { return this.each(function( index ) { var self = set.eq( index ); if ( isFunction ) { args[0] = value.call( this, index, self.html() ); } self.domManip( args, callback ); }); } if ( l ) { fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } if ( first ) { scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( this[i], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src ) { // Optional AJAX dependency, but won't run scripts if not present if ( jQuery._evalUrl ) { jQuery._evalUrl( node.src ); } } else { jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); } } } } // Fix #11809: Avoid leaking memory fragment = first = null; } } return this; } }); jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, i = 0, ret = [], insert = jQuery( selector ), last = insert.length - 1; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone(true); jQuery( insert[i] )[ original ]( elems ); // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; }); var iframe, elemdisplay = {}; /** * Retrieve the actual display of a element * @param {String} name nodeName of the element * @param {Object} doc Document object */ // Called only from within defaultDisplay function actualDisplay( name, doc ) { var elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), // getDefaultComputedStyle might be reliably used only on attached element display = window.getDefaultComputedStyle ? // Use of this method is a temporary fix (more like optmization) until something better comes along, // since it was removed from specification and supported only in FF window.getDefaultComputedStyle( elem[ 0 ] ).display : jQuery.css( elem[ 0 ], "display" ); // We don't have any data stored on the element, // so use "detach" method as fast way to get rid of the element elem.detach(); return display; } /** * Try to determine the default display value of an element * @param {String} nodeName */ function defaultDisplay( nodeName ) { var doc = document, display = elemdisplay[ nodeName ]; if ( !display ) { display = actualDisplay( nodeName, doc ); // If the simple way fails, read from inside an iframe if ( display === "none" || !display ) { // Use the already-created iframe if possible iframe = (iframe || jQuery( "<iframe frameborder='0' width='0' height='0'/>" )).appendTo( doc.documentElement ); // Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse doc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document; // Support: IE doc.write(); doc.close(); display = actualDisplay( nodeName, doc ); iframe.detach(); } // Store the correct default display elemdisplay[ nodeName ] = display; } return display; } (function() { var a, shrinkWrapBlocksVal, div = document.createElement( "div" ), divReset = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;" + "display:block;padding:0;margin:0;border:0"; // Setup div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; a = div.getElementsByTagName( "a" )[ 0 ]; a.style.cssText = "float:left;opacity:.5"; // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 support.opacity = /^0.5/.test( a.style.opacity ); // Verify style float existence // (IE uses styleFloat instead of cssFloat) support.cssFloat = !!a.style.cssFloat; div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; // Null elements to avoid leaks in IE. a = div = null; support.shrinkWrapBlocks = function() { var body, container, div, containerStyles; if ( shrinkWrapBlocksVal == null ) { body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body ) { // Test fired too early or in an unsupported environment, exit. return; } containerStyles = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px"; container = document.createElement( "div" ); div = document.createElement( "div" ); body.appendChild( container ).appendChild( div ); // Will be changed later if needed. shrinkWrapBlocksVal = false; if ( typeof div.style.zoom !== strundefined ) { // Support: IE6 // Check if elements with layout shrink-wrap their children div.style.cssText = divReset + ";width:1px;padding:1px;zoom:1"; div.innerHTML = "<div></div>"; div.firstChild.style.width = "5px"; shrinkWrapBlocksVal = div.offsetWidth !== 3; } body.removeChild( container ); // Null elements to avoid leaks in IE. body = container = div = null; } return shrinkWrapBlocksVal; }; })(); var rmargin = (/^margin/); var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); var getStyles, curCSS, rposition = /^(top|right|bottom|left)$/; if ( window.getComputedStyle ) { getStyles = function( elem ) { return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); }; curCSS = function( elem, name, computed ) { var width, minWidth, maxWidth, ret, style = elem.style; computed = computed || getStyles( elem ); // getPropertyValue is only needed for .css('filter') in IE9, see #12537 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; if ( computed ) { if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { ret = jQuery.style( elem, name ); } // A tribute to the "awesome hack by Dean Edwards" // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } // Support: IE // IE returns zIndex value as an integer. return ret === undefined ? ret : ret + ""; }; } else if ( document.documentElement.currentStyle ) { getStyles = function( elem ) { return elem.currentStyle; }; curCSS = function( elem, name, computed ) { var left, rs, rsLeft, ret, style = elem.style; computed = computed || getStyles( elem ); ret = computed ? computed[ name ] : undefined; // Avoid setting ret to empty string here // so we don't default to auto if ( ret == null && style && style[ name ] ) { ret = style[ name ]; } // From the awesome hack by Dean Edwards // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 // If we're not dealing with a regular pixel number // but a number that has a weird ending, we need to convert it to pixels // but not position css attributes, as those are proportional to the parent element instead // and we can't measure the parent instead because it might trigger a "stacking dolls" problem if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { // Remember the original values left = style.left; rs = elem.runtimeStyle; rsLeft = rs && rs.left; // Put in the new values to get a computed value out if ( rsLeft ) { rs.left = elem.currentStyle.left; } style.left = name === "fontSize" ? "1em" : ret; ret = style.pixelLeft + "px"; // Revert the changed values style.left = left; if ( rsLeft ) { rs.left = rsLeft; } } // Support: IE // IE returns zIndex value as an integer. return ret === undefined ? ret : ret + "" || "auto"; }; } function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { var condition = conditionFn(); if ( condition == null ) { // The test was not ready at this point; screw the hook this time // but check again when needed next time. return; } if ( condition ) { // Hook not needed (or it's not possible to use it due to missing dependency), // remove it. // Since there are no other hooks for marginRight, remove the whole object. delete this.get; return; } // Hook needed; redefine it so that the support test is not executed again. return (this.get = hookFn).apply( this, arguments ); } }; } (function() { var a, reliableHiddenOffsetsVal, boxSizingVal, boxSizingReliableVal, pixelPositionVal, reliableMarginRightVal, div = document.createElement( "div" ), containerStyles = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px", divReset = "-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;" + "display:block;padding:0;margin:0;border:0"; // Setup div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; a = div.getElementsByTagName( "a" )[ 0 ]; a.style.cssText = "float:left;opacity:.5"; // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 support.opacity = /^0.5/.test( a.style.opacity ); // Verify style float existence // (IE uses styleFloat instead of cssFloat) support.cssFloat = !!a.style.cssFloat; div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; // Null elements to avoid leaks in IE. a = div = null; jQuery.extend(support, { reliableHiddenOffsets: function() { if ( reliableHiddenOffsetsVal != null ) { return reliableHiddenOffsetsVal; } var container, tds, isSupported, div = document.createElement( "div" ), body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body ) { // Return for frameset docs that don't have a body return; } // Setup div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; container = document.createElement( "div" ); container.style.cssText = containerStyles; body.appendChild( container ).appendChild( div ); // Support: IE8 // Check if table cells still have offsetWidth/Height when they are set // to display:none and there are still other visible table cells in a // table row; if so, offsetWidth/Height are not reliable for use when // determining if an element has been hidden directly using // display:none (it is still safe to use offsets if a parent element is // hidden; don safety goggles and see bug #4512 for more information). div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>"; tds = div.getElementsByTagName( "td" ); tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; isSupported = ( tds[ 0 ].offsetHeight === 0 ); tds[ 0 ].style.display = ""; tds[ 1 ].style.display = "none"; // Support: IE8 // Check if empty table cells still have offsetWidth/Height reliableHiddenOffsetsVal = isSupported && ( tds[ 0 ].offsetHeight === 0 ); body.removeChild( container ); // Null elements to avoid leaks in IE. div = body = null; return reliableHiddenOffsetsVal; }, boxSizing: function() { if ( boxSizingVal == null ) { computeStyleTests(); } return boxSizingVal; }, boxSizingReliable: function() { if ( boxSizingReliableVal == null ) { computeStyleTests(); } return boxSizingReliableVal; }, pixelPosition: function() { if ( pixelPositionVal == null ) { computeStyleTests(); } return pixelPositionVal; }, reliableMarginRight: function() { var body, container, div, marginDiv; // Use window.getComputedStyle because jsdom on node.js will break without it. if ( reliableMarginRightVal == null && window.getComputedStyle ) { body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body ) { // Test fired too early or in an unsupported environment, exit. return; } container = document.createElement( "div" ); div = document.createElement( "div" ); container.style.cssText = containerStyles; body.appendChild( container ).appendChild( div ); // Check if div with explicit width and no margin-right incorrectly // gets computed margin-right based on width of container. (#3333) // Fails in WebKit before Feb 2011 nightlies // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right marginDiv = div.appendChild( document.createElement( "div" ) ); marginDiv.style.cssText = div.style.cssText = divReset; marginDiv.style.marginRight = marginDiv.style.width = "0"; div.style.width = "1px"; reliableMarginRightVal = !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); body.removeChild( container ); } return reliableMarginRightVal; } }); function computeStyleTests() { var container, div, body = document.getElementsByTagName( "body" )[ 0 ]; if ( !body ) { // Test fired too early or in an unsupported environment, exit. return; } container = document.createElement( "div" ); div = document.createElement( "div" ); container.style.cssText = containerStyles; body.appendChild( container ).appendChild( div ); div.style.cssText = "-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;" + "position:absolute;display:block;padding:1px;border:1px;width:4px;" + "margin-top:1%;top:1%"; // Workaround failing boxSizing test due to offsetWidth returning wrong value // with some non-1 values of body zoom, ticket #13543 jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { boxSizingVal = div.offsetWidth === 4; }); // Will be changed later if needed. boxSizingReliableVal = true; pixelPositionVal = false; reliableMarginRightVal = true; // Use window.getComputedStyle because jsdom on node.js will break without it. if ( window.getComputedStyle ) { pixelPositionVal = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; boxSizingReliableVal = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; } body.removeChild( container ); // Null elements to avoid leaks in IE. div = body = null; } })(); // A method for quickly swapping in/out CSS properties to get correct calculations. jQuery.swap = function( elem, options, callback, args ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.apply( elem, args || [] ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; }; var ralpha = /alpha\([^)]*\)/i, ropacity = /opacity\s*=\s*([^)]*)/, // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rnumsplit = new RegExp( "^(" + pnum + ")(.*)$", "i" ), rrelNum = new RegExp( "^([+-])=(" + pnum + ")", "i" ), cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: 0, fontWeight: 400 }, cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; // return a css property mapped to a potentially vendor prefixed property function vendorPropName( style, name ) { // shortcut for names that are not vendor prefixed if ( name in style ) { return name; } // check for vendor prefixed names var capName = name.charAt(0).toUpperCase() + name.slice(1), origName = name, i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in style ) { return name; } } return origName; } function showHide( elements, show ) { var display, elem, hidden, values = [], index = 0, length = elements.length; for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } values[ index ] = jQuery._data( elem, "olddisplay" ); display = elem.style.display; if ( show ) { // Reset the inline display of this element to learn if it is // being hidden by cascaded rules or not if ( !values[ index ] && display === "none" ) { elem.style.display = ""; } // Set elements which have been overridden with display: none // in a stylesheet to whatever the default browser style is // for such an element if ( elem.style.display === "" && isHidden( elem ) ) { values[ index ] = jQuery._data( elem, "olddisplay", defaultDisplay(elem.nodeName) ); } } else { if ( !values[ index ] ) { hidden = isHidden( elem ); if ( display && display !== "none" || !hidden ) { jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); } } } } // Set the display of most of the elements in a second loop // to avoid the constant reflow for ( index = 0; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } if ( !show || elem.style.display === "none" || elem.style.display === "" ) { elem.style.display = show ? values[ index ] || "" : "none"; } } return elements; } function setPositiveNumber( elem, value, subtract ) { var matches = rnumsplit.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : value; } function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { var i = extra === ( isBorderBox ? "border" : "content" ) ? // If we already have the right measurement, avoid augmentation 4 : // Otherwise initialize for horizontal or vertical properties name === "width" ? 1 : 0, val = 0; for ( ; i < 4; i += 2 ) { // both box models exclude margin, so add it if we want it if ( extra === "margin" ) { val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); } if ( isBorderBox ) { // border-box includes padding, so remove it if we want content if ( extra === "content" ) { val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // at this point, extra isn't border nor margin, so remove border if ( extra !== "margin" ) { val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } else { // at this point, extra isn't content, so add padding val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // at this point, extra isn't content nor padding, so add border if ( extra !== "padding" ) { val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } return val; } function getWidthOrHeight( elem, name, extra ) { // Start with offset property, which is equivalent to the border-box value var valueIsBorderBox = true, val = name === "width" ? elem.offsetWidth : elem.offsetHeight, styles = getStyles( elem ), isBorderBox = support.boxSizing() && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // some non-html elements return undefined for offsetWidth, so check for null/undefined // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 if ( val <= 0 || val == null ) { // Fall back to computed then uncomputed css if necessary val = curCSS( elem, name, styles ); if ( val < 0 || val == null ) { val = elem.style[ name ]; } // Computed unit is not pixels. Stop here and return. if ( rnumnonpx.test(val) ) { return val; } // we need the check for style in case a browser which returns unreliable values // for getComputedStyle silently falls back to the reliable elem.style valueIsBorderBox = isBorderBox && ( support.boxSizingReliable() || val === elem.style[ name ] ); // Normalize "", auto, and prepare for extra val = parseFloat( val ) || 0; } // use the active box-sizing model to add/subtract irrelevant styles return ( val + augmentWidthOrHeight( elem, name, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles ) ) + "px"; } jQuery.extend({ // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Don't automatically add "px" to these possibly-unitless properties cssNumber: { "columnCount": true, "fillOpacity": true, "fontWeight": true, "lineHeight": true, "opacity": true, "order": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: { // normalize float css property "float": support.cssFloat ? "cssFloat" : "styleFloat" }, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = jQuery.camelCase( name ), style = elem.style; name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // convert relative number strings (+= or -=) to relative numbers. #7345 if ( type === "string" && (ret = rrelNum.exec( value )) ) { value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); // Fixes bug #9237 type = "number"; } // Make sure that null and NaN values aren't set. See: #7116 if ( value == null || value !== value ) { return; } // If a number was passed in, add 'px' to the (except for certain CSS properties) if ( type === "number" && !jQuery.cssNumber[ origName ] ) { value += "px"; } // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, // but it would mean to define eight (for every problematic property) identical functions if ( !support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { // Support: IE // Swallow errors from 'invalid' CSS values (#5509) try { // Support: Chrome, Safari // Setting style to blank string required to delete "style: x !important;" style[ name ] = ""; style[ name ] = value; } catch(e) {} } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var num, val, hooks, origName = jQuery.camelCase( name ); // Make sure that we're working with the right name name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); // gets hook for the prefixed version // followed by the unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } //convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Return, converting to number if forced or a qualifier was provided and val looks numeric if ( extra === "" || extra ) { num = parseFloat( val ); return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; } return val; } }); jQuery.each([ "height", "width" ], function( i, name ) { jQuery.cssHooks[ name ] = { get: function( elem, computed, extra ) { if ( computed ) { // certain elements can have dimension info if we invisibly show them // however, it must have a current display style that would benefit from this return elem.offsetWidth === 0 && rdisplayswap.test( jQuery.css( elem, "display" ) ) ? jQuery.swap( elem, cssShow, function() { return getWidthOrHeight( elem, name, extra ); }) : getWidthOrHeight( elem, name, extra ); } }, set: function( elem, value, extra ) { var styles = extra && getStyles( elem ); return setPositiveNumber( elem, value, extra ? augmentWidthOrHeight( elem, name, extra, support.boxSizing() && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", styles ) : 0 ); } }; }); if ( !support.opacity ) { jQuery.cssHooks.opacity = { get: function( elem, computed ) { // IE uses filters for opacity return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : computed ? "1" : ""; }, set: function( elem, value ) { var style = elem.style, currentStyle = elem.currentStyle, opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", filter = currentStyle && currentStyle.filter || style.filter || ""; // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level style.zoom = 1; // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 // if value === "", then remove inline opacity #12685 if ( ( value >= 1 || value === "" ) && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && style.removeAttribute ) { // Setting style.filter to null, "" & " " still leave "filter:" in the cssText // if "filter:" is present at all, clearType is disabled, we want to avoid this // style.removeAttribute is IE Only, but so apparently is this code path... style.removeAttribute( "filter" ); // if there is no filter style applied in a css rule or unset inline opacity, we are done if ( value === "" || currentStyle && !currentStyle.filter ) { return; } } // otherwise, set new filter values style.filter = ralpha.test( filter ) ? filter.replace( ralpha, opacity ) : filter + " " + opacity; } }; } jQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight, function( elem, computed ) { if ( computed ) { // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right // Work around by temporarily setting element display to inline-block return jQuery.swap( elem, { "display": "inline-block" }, curCSS, [ elem, "marginRight" ] ); } } ); // These hooks are used by animate to expand properties jQuery.each({ margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // assumes a single number if not a string parts = typeof value === "string" ? value.split(" ") : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( !rmargin.test( prefix ) ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } }); jQuery.fn.extend({ css: function( name, value ) { return access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( jQuery.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); }, show: function() { return showHide( this, true ); }, hide: function() { return showHide( this ); }, toggle: function( state ) { if ( typeof state === "boolean" ) { return state ? this.show() : this.hide(); } return this.each(function() { if ( isHidden( this ) ) { jQuery( this ).show(); } else { jQuery( this ).hide(); } }); } }); function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || "swing"; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; if ( tween.elem[ tween.prop ] != null && (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { return tween.elem[ tween.prop ]; } // passing an empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails // so, simple values such as "10px" are parsed to Float. // complex values such as "rotate(1rad)" are returned as is. result = jQuery.css( tween.elem, tween.prop, "" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // use step hook for back compat - use cssHook if its there - use .style if its // available and use plain properties where available if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Support: IE <=9 // Panic based approach to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p * Math.PI ) / 2; } }; jQuery.fx = Tween.prototype.init; // Back Compat <1.8 extension point jQuery.fx.step = {}; var fxNow, timerId, rfxtypes = /^(?:toggle|show|hide)$/, rfxnum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ), rrun = /queueHooks$/, animationPrefilters = [ defaultPrefilter ], tweeners = { "*": [ function( prop, value ) { var tween = this.createTween( prop, value ), target = tween.cur(), parts = rfxnum.exec( value ), unit = parts && parts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), // Starting value computation is required for potential unit mismatches start = ( jQuery.cssNumber[ prop ] || unit !== "px" && +target ) && rfxnum.exec( jQuery.css( tween.elem, prop ) ), scale = 1, maxIterations = 20; if ( start && start[ 3 ] !== unit ) { // Trust units reported by jQuery.css unit = unit || start[ 3 ]; // Make sure we update the tween properties later on parts = parts || []; // Iteratively approximate from a nonzero starting point start = +target || 1; do { // If previous iteration zeroed out, double until we get *something* // Use a string for doubling factor so we don't accidentally see scale as unchanged below scale = scale || ".5"; // Adjust and apply start = start / scale; jQuery.style( tween.elem, prop, start + unit ); // Update scale, tolerating zero or NaN from tween.cur() // And breaking the loop if scale is unchanged or perfect, or if we've just had enough } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations ); } // Update tween properties if ( parts ) { start = tween.start = +start || +target || 0; tween.unit = unit; // If a +=/-= token was provided, we're doing a relative animation tween.end = parts[ 1 ] ? start + ( parts[ 1 ] + 1 ) * parts[ 2 ] : +parts[ 2 ]; } return tween; } ] }; // Animations created synchronously will run synchronously function createFxNow() { setTimeout(function() { fxNow = undefined; }); return ( fxNow = jQuery.now() ); } // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, attrs = { height: type }, i = 0; // if we include width, step value is 1 to do all cssExpand values, // if we don't include width, step value is 2 to skip over Left and Right includeWidth = includeWidth ? 1 : 0; for ( ; i < 4 ; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } function createTween( value, prop, animation ) { var tween, collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( (tween = collection[ index ].call( animation, prop, value )) ) { // we're done with this property return tween; } } } function defaultPrefilter( elem, props, opts ) { /* jshint validthis: true */ var prop, value, toggle, tween, hooks, oldfire, display, dDisplay, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHidden( elem ), dataShow = jQuery._data( elem, "fxshow" ); // handle queue: false promises if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always(function() { // doing this makes sure that the complete handler will be called // before this completes anim.always(function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } }); }); } // height/width overflow pass if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { // Make sure that nothing sneaks out // Record all 3 overflow attributes because IE does not // change the overflow attribute when overflowX and // overflowY are set to the same value opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Set display property to inline-block for height/width // animations on inline elements that are having width/height animated display = jQuery.css( elem, "display" ); dDisplay = defaultDisplay( elem.nodeName ); if ( display === "none" ) { display = dDisplay; } if ( display === "inline" && jQuery.css( elem, "float" ) === "none" ) { // inline-level elements accept inline-block; // block-level elements need to be inline with layout if ( !support.inlineBlockNeedsLayout || dDisplay === "inline" ) { style.display = "inline-block"; } else { style.zoom = 1; } } } if ( opts.overflow ) { style.overflow = "hidden"; if ( !support.shrinkWrapBlocks() ) { anim.always(function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; }); } } // show/hide pass for ( prop in props ) { value = props[ prop ]; if ( rfxtypes.exec( value ) ) { delete props[ prop ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { // If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { hidden = true; } else { continue; } } orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); } } if ( !jQuery.isEmptyObject( orig ) ) { if ( dataShow ) { if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } } else { dataShow = jQuery._data( elem, "fxshow", {} ); } // store state if its toggle - enables .stop().toggle() to "reverse" if ( toggle ) { dataShow.hidden = !hidden; } if ( hidden ) { jQuery( elem ).show(); } else { anim.done(function() { jQuery( elem ).hide(); }); } anim.done(function() { var prop; jQuery._removeData( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } }); for ( prop in orig ) { tween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = tween.start; if ( hidden ) { tween.end = tween.start; tween.start = prop === "width" || prop === "height" ? 1 : 0; } } } } } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = jQuery.camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( jQuery.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // not quite $.extend, this wont overwrite keys already present. // also - reusing 'index' from above because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = animationPrefilters.length, deferred = jQuery.Deferred().always( function() { // don't match elem in the :animated selector delete tick.elem; }), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ]); if ( percent < 1 && length ) { return remaining; } else { deferred.resolveWith( elem, [ animation ] ); return false; } }, animation = deferred.promise({ elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {} }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // if we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length ; index++ ) { animation.tweens[ index ].run( 1 ); } // resolve when we played the last frame // otherwise, reject if ( gotoEnd ) { deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } }), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length ; index++ ) { result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { return result; } } jQuery.map( props, createTween, animation ); if ( jQuery.isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue }) ); // attach callbacks from options return animation.progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); } jQuery.Animation = jQuery.extend( Animation, { tweener: function( props, callback ) { if ( jQuery.isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.split(" "); } var prop, index = 0, length = props.length; for ( ; index < length ; index++ ) { prop = props[ index ]; tweeners[ prop ] = tweeners[ prop ] || []; tweeners[ prop ].unshift( callback ); } }, prefilter: function( callback, prepend ) { if ( prepend ) { animationPrefilters.unshift( callback ); } else { animationPrefilters.push( callback ); } } }); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || jQuery.isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing }; opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; // normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( jQuery.isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.fn.extend({ fadeTo: function( speed, to, easing, callback ) { // show any hidden elements after setting opacity to 0 return this.filter( isHidden ).css( "opacity", 0 ).show() // animate to the value specified .end().animate({ opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); // Empty animations, or finishing resolves immediately if ( empty || jQuery._data( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue && type !== false ) { this.queue( type || "fx", [] ); } return this.each(function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = jQuery._data( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // start the next in the queue if the last step wasn't forced // timers currently will call their complete callbacks, which will dequeue // but only if they were gotoEnd if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } }); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each(function() { var index, data = jQuery._data( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // enable finishing flag on private data data.finish = true; // empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.stop ) { hooks.stop.call( this, true ); } // look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // turn off finishing flag delete data.finish; }); } }); jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; }); // Generate shortcuts for custom animations jQuery.each({ slideDown: genFx("show"), slideUp: genFx("hide"), slideToggle: genFx("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; }); jQuery.timers = []; jQuery.fx.tick = function() { var timer, timers = jQuery.timers, i = 0; fxNow = jQuery.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Checks the timer has not already been removed if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { jQuery.timers.push( timer ); if ( timer() ) { jQuery.fx.start(); } else { jQuery.timers.pop(); } }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( !timerId ) { timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); } }; jQuery.fx.stop = function() { clearInterval( timerId ); timerId = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Based off of the plugin by Clint Helfers, with permission. // http://blindsignals.com/index.php/2009/07/jquery-delay/ jQuery.fn.delay = function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = setTimeout( next, time ); hooks.stop = function() { clearTimeout( timeout ); }; }); }; (function() { var a, input, select, opt, div = document.createElement("div" ); // Setup div.setAttribute( "className", "t" ); div.innerHTML = " <link/><table></table><a href='/a'>a</a><input type='checkbox'/>"; a = div.getElementsByTagName("a")[ 0 ]; // First batch of tests. select = document.createElement("select"); opt = select.appendChild( document.createElement("option") ); input = div.getElementsByTagName("input")[ 0 ]; a.style.cssText = "top:1px"; // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) support.getSetAttribute = div.className !== "t"; // Get the style information from getAttribute // (IE uses .cssText instead) support.style = /top/.test( a.getAttribute("style") ); // Make sure that URLs aren't manipulated // (IE normalizes it by default) support.hrefNormalized = a.getAttribute("href") === "/a"; // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) support.checkOn = !!input.value; // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) support.optSelected = opt.selected; // Tests for enctype support on a form (#6743) support.enctype = !!document.createElement("form").enctype; // Make sure that the options inside disabled selects aren't marked as disabled // (WebKit marks them as disabled) select.disabled = true; support.optDisabled = !opt.disabled; // Support: IE8 only // Check if we can trust getAttribute("value") input = document.createElement( "input" ); input.setAttribute( "value", "" ); support.input = input.getAttribute( "value" ) === ""; // Check if an input maintains its value after becoming a radio input.value = "t"; input.setAttribute( "type", "radio" ); support.radioValue = input.value === "t"; // Null elements to avoid leaks in IE. a = input = select = opt = div = null; })(); var rreturn = /\r/g; jQuery.fn.extend({ val: function( value ) { var hooks, ret, isFunction, elem = this[0]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { return ret; } ret = elem.value; return typeof ret === "string" ? // handle most common string cases ret.replace(rreturn, "") : // handle cases where value is null/undef or number ret == null ? "" : ret; } return; } isFunction = jQuery.isFunction( value ); return this.each(function( i ) { var val; if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call( this, i, jQuery( this ).val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( jQuery.isArray( val ) ) { val = jQuery.map( val, function( value ) { return value == null ? "" : value + ""; }); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } }); } }); jQuery.extend({ valHooks: { option: { get: function( elem ) { var val = jQuery.find.attr( elem, "value" ); return val != null ? val : jQuery.text( elem ); } }, select: { get: function( elem ) { var value, option, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one" || index < 0, values = one ? null : [], max = one ? index + 1 : options.length, i = index < 0 ? max : one ? index : 0; // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // oldIE doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup ( support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var optionSet, option, options = elem.options, values = jQuery.makeArray( value ), i = options.length; while ( i-- ) { option = options[ i ]; if ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) >= 0 ) { // Support: IE6 // When new option element is added to select box we need to // force reflow of newly added node in order to workaround delay // of initialization properties try { option.selected = optionSet = true; } catch ( _ ) { // Will be executed only in IE6 option.scrollHeight; } } else { option.selected = false; } } // Force browsers to behave consistently when non-matching value is set if ( !optionSet ) { elem.selectedIndex = -1; } return options; } } } }); // Radios and checkboxes getter/setter jQuery.each([ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { set: function( elem, value ) { if ( jQuery.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); } } }; if ( !support.checkOn ) { jQuery.valHooks[ this ].get = function( elem ) { // Support: Webkit // "" is returned instead of "on" if a value isn't specified return elem.getAttribute("value") === null ? "on" : elem.value; }; } }); var nodeHook, boolHook, attrHandle = jQuery.expr.attrHandle, ruseDefault = /^(?:checked|selected)$/i, getSetAttribute = support.getSetAttribute, getSetInput = support.input; jQuery.fn.extend({ attr: function( name, value ) { return access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each(function() { jQuery.removeAttr( this, name ); }); } }); jQuery.extend({ attr: function( elem, name, value ) { var hooks, ret, nType = elem.nodeType; // don't get/set attributes on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === strundefined ) { return jQuery.prop( elem, name, value ); } // All attributes are lowercase // Grab necessary hook if one is defined if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { return ret; } else { elem.setAttribute( name, value + "" ); return value; } } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { return ret; } else { ret = jQuery.find.attr( elem, name ); // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; } }, removeAttr: function( elem, value ) { var name, propName, i = 0, attrNames = value && value.match( rnotwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( (name = attrNames[i++]) ) { propName = jQuery.propFix[ name ] || name; // Boolean attributes get special treatment (#10870) if ( jQuery.expr.match.bool.test( name ) ) { // Set corresponding property to false if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { elem[ propName ] = false; // Support: IE<9 // Also clear defaultChecked/defaultSelected (if appropriate) } else { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ propName ] = false; } // See #9699 for explanation of this approach (setting first, then removal) } else { jQuery.attr( elem, name, "" ); } elem.removeAttribute( getSetAttribute ? name : propName ); } } }, attrHooks: { type: { set: function( elem, value ) { if ( !support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { // Setting the type on a radio button after the value resets the value in IE6-9 // Reset value to default in case type is set after value during creation var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } } }); // Hook for boolean attributes boolHook = { set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { // IE<8 needs the *property* name elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); // Use defaultChecked and defaultSelected for oldIE } else { elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; } return name; } }; // Retrieve booleans specially jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { var getter = attrHandle[ name ] || jQuery.find.attr; attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? function( elem, name, isXML ) { var ret, handle; if ( !isXML ) { // Avoid an infinite loop by temporarily removing this function from the getter handle = attrHandle[ name ]; attrHandle[ name ] = ret; ret = getter( elem, name, isXML ) != null ? name.toLowerCase() : null; attrHandle[ name ] = handle; } return ret; } : function( elem, name, isXML ) { if ( !isXML ) { return elem[ jQuery.camelCase( "default-" + name ) ] ? name.toLowerCase() : null; } }; }); // fix oldIE attroperties if ( !getSetInput || !getSetAttribute ) { jQuery.attrHooks.value = { set: function( elem, value, name ) { if ( jQuery.nodeName( elem, "input" ) ) { // Does not return so that setAttribute is also used elem.defaultValue = value; } else { // Use nodeHook if defined (#1954); otherwise setAttribute is fine return nodeHook && nodeHook.set( elem, value, name ); } } }; } // IE6/7 do not support getting/setting some attributes with get/setAttribute if ( !getSetAttribute ) { // Use this for any attribute in IE6/7 // This fixes almost every IE6/7 issue nodeHook = { set: function( elem, value, name ) { // Set the existing or create a new attribute node var ret = elem.getAttributeNode( name ); if ( !ret ) { elem.setAttributeNode( (ret = elem.ownerDocument.createAttribute( name )) ); } ret.value = value += ""; // Break association with cloned elements by also using setAttribute (#9646) if ( name === "value" || value === elem.getAttribute( name ) ) { return value; } } }; // Some attributes are constructed with empty-string values when not defined attrHandle.id = attrHandle.name = attrHandle.coords = function( elem, name, isXML ) { var ret; if ( !isXML ) { return (ret = elem.getAttributeNode( name )) && ret.value !== "" ? ret.value : null; } }; // Fixing value retrieval on a button requires this module jQuery.valHooks.button = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); if ( ret && ret.specified ) { return ret.value; } }, set: nodeHook.set }; // Set contenteditable to false on removals(#10429) // Setting to empty string throws an error as an invalid value jQuery.attrHooks.contenteditable = { set: function( elem, value, name ) { nodeHook.set( elem, value === "" ? false : value, name ); } }; // Set width and height to auto instead of 0 on empty string( Bug #8150 ) // This is for removals jQuery.each([ "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = { set: function( elem, value ) { if ( value === "" ) { elem.setAttribute( name, "auto" ); return value; } } }; }); } if ( !support.style ) { jQuery.attrHooks.style = { get: function( elem ) { // Return undefined in the case of empty string // Note: IE uppercases css property names, but if we were to .toLowerCase() // .cssText, that would destroy case senstitivity in URL's, like in "background" return elem.style.cssText || undefined; }, set: function( elem, value ) { return ( elem.style.cssText = value + "" ); } }; } var rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i; jQuery.fn.extend({ prop: function( name, value ) { return access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { name = jQuery.propFix[ name ] || name; return this.each(function() { // try/catch handles cases where IE balks (such as removing a property on window) try { this[ name ] = undefined; delete this[ name ]; } catch( e ) {} }); } }); jQuery.extend({ propFix: { "for": "htmlFor", "class": "className" }, prop: function( elem, name, value ) { var ret, hooks, notxml, nType = elem.nodeType; // don't get/set properties on text, comment and attribute nodes if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { return; } notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); if ( notxml ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? ret : ( elem[ name ] = value ); } else { return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? ret : elem[ name ]; } }, propHooks: { tabIndex: { get: function( elem ) { // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ // Use proper attribute retrieval(#12072) var tabindex = jQuery.find.attr( elem, "tabindex" ); return tabindex ? parseInt( tabindex, 10 ) : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : -1; } } } }); // Some attributes require a special call on IE // http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !support.hrefNormalized ) { // href/src property should get the full normalized URL (#10299/#12915) jQuery.each([ "href", "src" ], function( i, name ) { jQuery.propHooks[ name ] = { get: function( elem ) { return elem.getAttribute( name, 4 ); } }; }); } // Support: Safari, IE9+ // mis-reports the default selected property of an option // Accessing the parent's selectedIndex property fixes it if ( !support.optSelected ) { jQuery.propHooks.selected = { get: function( elem ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } return null; } }; } jQuery.each([ "tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable" ], function() { jQuery.propFix[ this.toLowerCase() ] = this; }); // IE6/7 call enctype encoding if ( !support.enctype ) { jQuery.propFix.enctype = "encoding"; } var rclass = /[\t\r\n\f]/g; jQuery.fn.extend({ addClass: function( value ) { var classes, elem, cur, clazz, j, finalValue, i = 0, len = this.length, proceed = typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).addClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { // The disjunction here is for better compressibility (see removeClass) classes = ( value || "" ).match( rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : " " ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } // only assign if different to avoid unneeded rendering. finalValue = jQuery.trim( cur ); if ( elem.className !== finalValue ) { elem.className = finalValue; } } } } return this; }, removeClass: function( value ) { var classes, elem, cur, clazz, j, finalValue, i = 0, len = this.length, proceed = arguments.length === 0 || typeof value === "string" && value; if ( jQuery.isFunction( value ) ) { return this.each(function( j ) { jQuery( this ).removeClass( value.call( this, j, this.className ) ); }); } if ( proceed ) { classes = ( value || "" ).match( rnotwhite ) || []; for ( ; i < len; i++ ) { elem = this[ i ]; // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( elem.className ? ( " " + elem.className + " " ).replace( rclass, " " ) : "" ); if ( cur ) { j = 0; while ( (clazz = classes[j++]) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { cur = cur.replace( " " + clazz + " ", " " ); } } // only assign if different to avoid unneeded rendering. finalValue = value ? jQuery.trim( cur ) : ""; if ( elem.className !== finalValue ) { elem.className = finalValue; } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value; if ( typeof stateVal === "boolean" && type === "string" ) { return stateVal ? this.addClass( value ) : this.removeClass( value ); } if ( jQuery.isFunction( value ) ) { return this.each(function( i ) { jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); }); } return this.each(function() { if ( type === "string" ) { // toggle individual class names var className, i = 0, self = jQuery( this ), classNames = value.match( rnotwhite ) || []; while ( (className = classNames[ i++ ]) ) { // check each className given, space separated list if ( self.hasClass( className ) ) { self.removeClass( className ); } else { self.addClass( className ); } } // Toggle whole class name } else if ( type === strundefined || type === "boolean" ) { if ( this.className ) { // store className if set jQuery._data( this, "__className__", this.className ); } // If the element has a class name or if we're passed "false", // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; } }); }, hasClass: function( selector ) { var className = " " + selector + " ", i = 0, l = this.length; for ( ; i < l; i++ ) { if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { return true; } } return false; } }); // Return jQuery for attributes-only inclusion jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( data, fn ) { return arguments.length > 0 ? this.on( name, null, data, fn ) : this.trigger( name ); }; }); jQuery.fn.extend({ hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); }, bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); } }); var nonce = jQuery.now(); var rquery = (/\?/); var rvalidtokens = /(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g; jQuery.parseJSON = function( data ) { // Attempt to parse using the native JSON parser first if ( window.JSON && window.JSON.parse ) { // Support: Android 2.3 // Workaround failure to string-cast null input return window.JSON.parse( data + "" ); } var requireNonComma, depth = null, str = jQuery.trim( data + "" ); // Guard against invalid (and possibly dangerous) input by ensuring that nothing remains // after removing valid tokens return str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) { // Force termination if we see a misplaced comma if ( requireNonComma && comma ) { depth = 0; } // Perform no more replacements after returning to outermost depth if ( depth === 0 ) { return token; } // Commas must not follow "[", "{", or "," requireNonComma = open || comma; // Determine new depth // array/object open ("[" or "{"): depth += true - false (increment) // array/object close ("]" or "}"): depth += false - true (decrement) // other cases ("," or primitive): depth += true - true (numeric cast) depth += !close - !open; // Remove this token return ""; }) ) ? ( Function( "return " + str ) )() : jQuery.error( "Invalid JSON: " + data ); }; // Cross-browser xml parsing jQuery.parseXML = function( data ) { var xml, tmp; if ( !data || typeof data !== "string" ) { return null; } try { if ( window.DOMParser ) { // Standard tmp = new DOMParser(); xml = tmp.parseFromString( data, "text/xml" ); } else { // IE xml = new ActiveXObject( "Microsoft.XMLDOM" ); xml.async = "false"; xml.loadXML( data ); } } catch( e ) { xml = undefined; } if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }; var // Document location ajaxLocParts, ajaxLocation, rhash = /#.*$/, rts = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat("*"); // #8138, IE may throw an exception when accessing // a field from window.location if document.domain has been set try { ajaxLocation = location.href; } catch( e ) { // Use the href attribute of an A element // since IE will modify it given document.location ajaxLocation = document.createElement( "a" ); ajaxLocation.href = ""; ajaxLocation = ajaxLocation.href; } // Segment location into parts ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || []; if ( jQuery.isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( (dataType = dataTypes[i++]) ) { // Prepend if requested if ( dataType.charAt( 0 ) === "+" ) { dataType = dataType.slice( 1 ) || "*"; (structure[ dataType ] = structure[ dataType ] || []).unshift( func ); // Otherwise append } else { (structure[ dataType ] = structure[ dataType ] || []).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } }); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var deep, key, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } /* Handles responses to an ajax request: * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var firstDataType, ct, finalDataType, type, contents = s.contents, dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process while ( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader("Content-Type"); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } /* Chain conversions given the request and the original response * Also sets the responseXXX fields on the jqXHR instance */ function ajaxConvert( s, response, jqXHR, isSuccess ) { var conv2, current, conv, tmp, prev, converters = {}, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } current = dataTypes.shift(); // Convert to each sequential dataType while ( current ) { if ( s.responseFields[ current ] ) { jqXHR[ s.responseFields[ current ] ] = response; } // Apply the dataFilter if provided if ( !prev && isSuccess && s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } prev = current; current = dataTypes.shift(); if ( current ) { // There's only work to do if current dataType is non-auto if ( current === "*" ) { current = prev; // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split( " " ); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.unshift( tmp[ 1 ] ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s[ "throws" ] ) { response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } } } return { state: "success", data: response }; } jQuery.extend({ // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: ajaxLocation, type: "GET", isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /xml/, html: /html/, json: /json/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": jQuery.parseJSON, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var // Cross-domain detection vars parts, // Loop variable i, // URL without anti-cache param cacheURL, // Response headers as string responseHeadersString, // timeout handle timeoutTimer, // To know if global events are to be dispatched fireGlobals, transport, // Response headers responseHeaders, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks("once memory"), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // The jqXHR state state = 0, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( state === 2 ) { if ( !responseHeaders ) { responseHeaders = {}; while ( (match = rheaders.exec( responseHeadersString )) ) { responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; } } match = responseHeaders[ key.toLowerCase() ]; } return match == null ? null : match; }, // Raw string getAllResponseHeaders: function() { return state === 2 ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { var lname = name.toLowerCase(); if ( !state ) { name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( !state ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( state < 2 ) { for ( code in map ) { // Lazy-add the new callback in a way that preserves old ones statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } else { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ).complete = completeDeferred.add; jqXHR.success = jqXHR.done; jqXHR.error = jqXHR.fail; // Remove hash character (#7531: and string promotion) // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ]; // A cross-domain request is in order when we have a protocol:host:port mismatch if ( s.crossDomain == null ) { parts = rurl.exec( s.url.toLowerCase() ); s.crossDomain = !!( parts && ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !== ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) ) ); } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( state === 2 ) { return jqXHR; } // We can fire global events as of now if asked to fireGlobals = s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger("ajaxStart"); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on cacheURL = s.url; // More options handling for requests with no content if ( !s.hasContent ) { // If data is available, append data to url if ( s.data ) { cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data ); // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add anti-cache in url if needed if ( s.cache === false ) { s.url = rts.test( cacheURL ) ? // If there is already a '_' parameter, set its value cacheURL.replace( rts, "$1_=" + nonce++ ) : // Otherwise add one to the end cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++; } } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { // Abort if not done already and return return jqXHR.abort(); } // aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds for ( i in { success: 1, error: 1, complete: 1 } ) { jqXHR[ i ]( s[ i ] ); } // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = setTimeout(function() { jqXHR.abort("timeout"); }, s.timeout ); } try { state = 1; transport.send( requestHeaders, done ); } catch ( e ) { // Propagate exception as error if not done if ( state < 2 ) { done( -1, e ); // Simply rethrow otherwise } else { throw e; } } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Called once if ( state === 2 ) { return; } // State is "done" now state = 2; // Clear timeout if it exists if ( timeoutTimer ) { clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Determine if successful isSuccess = status >= 200 && status < 300 || status === 304; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // Convert no matter what (that way responseXXX fields are always set) response = ajaxConvert( s, response, jqXHR, isSuccess ); // If successful, handle type chaining if ( isSuccess ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader("Last-Modified"); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader("etag"); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // if no content if ( status === 204 || s.type === "HEAD" ) { statusText = "nocontent"; // if not modified } else if ( status === 304 ) { statusText = "notmodified"; // If we have data, let's convert it } else { statusText = response.state; success = response.data; error = response.error; isSuccess = !error; } } else { // We extract error from statusText // then normalize statusText and status for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger("ajaxStop"); } } } return jqXHR; }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); } }); jQuery.each( [ "get", "post" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // shift arguments if data argument was omitted if ( jQuery.isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } return jQuery.ajax({ url: url, type: method, dataType: type, data: data, success: callback }); }; }); // Attach a bunch of functions for handling common AJAX events jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { jQuery.fn[ type ] = function( fn ) { return this.on( type, fn ); }; }); jQuery._evalUrl = function( url ) { return jQuery.ajax({ url: url, type: "GET", dataType: "script", async: false, global: false, "throws": true }); }; jQuery.fn.extend({ wrapAll: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapAll( html.call(this, i) ); }); } if ( this[0] ) { // The elements to wrap the target around var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); if ( this[0].parentNode ) { wrap.insertBefore( this[0] ); } wrap.map(function() { var elem = this; while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { elem = elem.firstChild; } return elem; }).append( this ); } return this; }, wrapInner: function( html ) { if ( jQuery.isFunction( html ) ) { return this.each(function(i) { jQuery(this).wrapInner( html.call(this, i) ); }); } return this.each(function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } }); }, wrap: function( html ) { var isFunction = jQuery.isFunction( html ); return this.each(function(i) { jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); }); }, unwrap: function() { return this.parent().each(function() { if ( !jQuery.nodeName( this, "body" ) ) { jQuery( this ).replaceWith( this.childNodes ); } }).end(); } }); jQuery.expr.filters.hidden = function( elem ) { // Support: Opera <= 12.12 // Opera reports offsetWidths and offsetHeights less than zero on some elements return elem.offsetWidth <= 0 && elem.offsetHeight <= 0 || (!support.reliableHiddenOffsets() && ((elem.style && elem.style.display) || jQuery.css( elem, "display" )) === "none"); }; jQuery.expr.filters.visible = function( elem ) { return !jQuery.expr.filters.hidden( elem ); }; var r20 = /%20/g, rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; function buildParams( prefix, obj, traditional, add ) { var name; if ( jQuery.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); } }); } else if ( !traditional && jQuery.type( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } // Serialize an array of form elements or a set of // key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, value ) { // If value is a function, invoke it and return its value value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); }; // Set traditional to true for jQuery <= 1.3.2 behavior. if ( traditional === undefined ) { traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; } // If an array was passed in, assume that it is an array of form elements. if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); }); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ).replace( r20, "+" ); }; jQuery.fn.extend({ serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map(function() { // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; }) .filter(function() { var type = this.type; // Use .is(":disabled") so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); }) .map(function( i, elem ) { var val = jQuery( this ).val(); return val == null ? null : jQuery.isArray( val ) ? jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }) : { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; }).get(); } }); // Create the request object // (This is still attached to ajaxSettings for backward compatibility) jQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ? // Support: IE6+ function() { // XHR cannot access local files, always use ActiveX for that case return !this.isLocal && // Support: IE7-8 // oldIE XHR does not support non-RFC2616 methods (#13240) // See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx // and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9 // Although this check for six methods instead of eight // since IE also does not support "trace" and "connect" /^(get|post|head|put|delete|options)$/i.test( this.type ) && createStandardXHR() || createActiveXHR(); } : // For all other browsers, use the standard XMLHttpRequest object createStandardXHR; var xhrId = 0, xhrCallbacks = {}, xhrSupported = jQuery.ajaxSettings.xhr(); // Support: IE<10 // Open requests must be manually aborted on unload (#5280) if ( window.ActiveXObject ) { jQuery( window ).on( "unload", function() { for ( var key in xhrCallbacks ) { xhrCallbacks[ key ]( undefined, true ); } }); } // Determine support properties support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); xhrSupported = support.ajax = !!xhrSupported; // Create transport if the browser can provide an xhr if ( xhrSupported ) { jQuery.ajaxTransport(function( options ) { // Cross domain only allowed if supported through XMLHttpRequest if ( !options.crossDomain || support.cors ) { var callback; return { send: function( headers, complete ) { var i, xhr = options.xhr(), id = ++xhrId; // Open the socket xhr.open( options.type, options.url, options.async, options.username, options.password ); // Apply custom fields if provided if ( options.xhrFields ) { for ( i in options.xhrFields ) { xhr[ i ] = options.xhrFields[ i ]; } } // Override mime type if needed if ( options.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( options.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !options.crossDomain && !headers["X-Requested-With"] ) { headers["X-Requested-With"] = "XMLHttpRequest"; } // Set headers for ( i in headers ) { // Support: IE<9 // IE's ActiveXObject throws a 'Type Mismatch' exception when setting // request header to a null-value. // // To keep consistent with other XHR implementations, cast the value // to string and ignore `undefined`. if ( headers[ i ] !== undefined ) { xhr.setRequestHeader( i, headers[ i ] + "" ); } } // Do send the request // This may raise an exception which is actually // handled in jQuery.ajax (so no try/catch here) xhr.send( ( options.hasContent && options.data ) || null ); // Listener callback = function( _, isAbort ) { var status, statusText, responses; // Was never called and is aborted or complete if ( callback && ( isAbort || xhr.readyState === 4 ) ) { // Clean up delete xhrCallbacks[ id ]; callback = undefined; xhr.onreadystatechange = jQuery.noop; // Abort manually if needed if ( isAbort ) { if ( xhr.readyState !== 4 ) { xhr.abort(); } } else { responses = {}; status = xhr.status; // Support: IE<10 // Accessing binary-data responseText throws an exception // (#11426) if ( typeof xhr.responseText === "string" ) { responses.text = xhr.responseText; } // Firefox throws an exception when accessing // statusText for faulty cross-domain requests try { statusText = xhr.statusText; } catch( e ) { // We normalize with Webkit giving an empty statusText statusText = ""; } // Filter status for non standard behaviors // If the request is local and we have data: assume a success // (success with no data won't get notified, that's the best we // can do given current implementations) if ( !status && options.isLocal && !options.crossDomain ) { status = responses.text ? 200 : 404; // IE - #1450: sometimes returns 1223 when it should be 204 } else if ( status === 1223 ) { status = 204; } } } // Call complete if needed if ( responses ) { complete( status, statusText, responses, xhr.getAllResponseHeaders() ); } }; if ( !options.async ) { // if we're in sync mode we fire the callback callback(); } else if ( xhr.readyState === 4 ) { // (IE6 & IE7) if it's in cache and has been // retrieved directly we need to fire the callback setTimeout( callback ); } else { // Add to the list of active xhr callbacks xhr.onreadystatechange = xhrCallbacks[ id ] = callback; } }, abort: function() { if ( callback ) { callback( undefined, true ); } } }; } }); } // Functions to create xhrs function createStandardXHR() { try { return new window.XMLHttpRequest(); } catch( e ) {} } function createActiveXHR() { try { return new window.ActiveXObject( "Microsoft.XMLHTTP" ); } catch( e ) {} } // Install script dataType jQuery.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /(?:java|ecma)script/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } }); // Handle cache's special case and global jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; s.global = false; } }); // Bind script tag hack transport jQuery.ajaxTransport( "script", function(s) { // This transport only deals with cross domain requests if ( s.crossDomain ) { var script, head = document.head || jQuery("head")[0] || document.documentElement; return { send: function( _, callback ) { script = document.createElement("script"); script.async = true; if ( s.scriptCharset ) { script.charset = s.scriptCharset; } script.src = s.url; // Attach handlers for all browsers script.onload = script.onreadystatechange = function( _, isAbort ) { if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { // Handle memory leak in IE script.onload = script.onreadystatechange = null; // Remove the script if ( script.parentNode ) { script.parentNode.removeChild( script ); } // Dereference the script script = null; // Callback if not abort if ( !isAbort ) { callback( 200, "success" ); } } }; // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending // Use native DOM manipulation to avoid our domManip AJAX trickery head.insertBefore( script, head.firstChild ); }, abort: function() { if ( script ) { script.onload( undefined, true ); } } }; } }); var oldCallbacks = [], rjsonp = /(=)\?(?=&|$)|\?\?/; // Default jsonp settings jQuery.ajaxSetup({ jsonp: "callback", jsonpCallback: function() { var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); this[ callback ] = true; return callback; } }); // Detect, normalize options and install callbacks for jsonp requests jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { var callbackName, overwritten, responseContainer, jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ? "url" : typeof s.data === "string" && !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && rjsonp.test( s.data ) && "data" ); // Handle iff the expected data type is "jsonp" or we have a parameter to set if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) { // Get callback name, remembering preexisting value associated with it callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? s.jsonpCallback() : s.jsonpCallback; // Insert callback into url or form data if ( jsonProp ) { s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName ); } else if ( s.jsonp !== false ) { s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; } // Use data converter to retrieve json after script execution s.converters["script json"] = function() { if ( !responseContainer ) { jQuery.error( callbackName + " was not called" ); } return responseContainer[ 0 ]; }; // force json dataType s.dataTypes[ 0 ] = "json"; // Install callback overwritten = window[ callbackName ]; window[ callbackName ] = function() { responseContainer = arguments; }; // Clean-up function (fires after converters) jqXHR.always(function() { // Restore preexisting value window[ callbackName ] = overwritten; // Save back as free if ( s[ callbackName ] ) { // make sure that re-using the options doesn't screw things around s.jsonpCallback = originalSettings.jsonpCallback; // save the callback name for future use oldCallbacks.push( callbackName ); } // Call if it was a function and we have a response if ( responseContainer && jQuery.isFunction( overwritten ) ) { overwritten( responseContainer[ 0 ] ); } responseContainer = overwritten = undefined; }); // Delegate to script return "script"; } }); // data: string of html // context (optional): If specified, the fragment will be created in this context, defaults to document // keepScripts (optional): If true, will include scripts passed in the html string jQuery.parseHTML = function( data, context, keepScripts ) { if ( !data || typeof data !== "string" ) { return null; } if ( typeof context === "boolean" ) { keepScripts = context; context = false; } context = context || document; var parsed = rsingleTag.exec( data ), scripts = !keepScripts && []; // Single tag if ( parsed ) { return [ context.createElement( parsed[1] ) ]; } parsed = jQuery.buildFragment( [ data ], context, scripts ); if ( scripts && scripts.length ) { jQuery( scripts ).remove(); } return jQuery.merge( [], parsed.childNodes ); }; // Keep a copy of the old load method var _load = jQuery.fn.load; /** * Load a url into a page */ jQuery.fn.load = function( url, params, callback ) { if ( typeof url !== "string" && _load ) { return _load.apply( this, arguments ); } var selector, response, type, self = this, off = url.indexOf(" "); if ( off >= 0 ) { selector = url.slice( off, url.length ); url = url.slice( 0, off ); } // If it's a function if ( jQuery.isFunction( params ) ) { // We assume that it's the callback callback = params; params = undefined; // Otherwise, build a param string } else if ( params && typeof params === "object" ) { type = "POST"; } // If we have elements to modify, make the request if ( self.length > 0 ) { jQuery.ajax({ url: url, // if "type" variable is undefined, then "GET" method will be used type: type, dataType: "html", data: params }).done(function( responseText ) { // Save response for use in complete callback response = arguments; self.html( selector ? // If a selector was specified, locate the right elements in a dummy div // Exclude scripts to avoid IE 'Permission Denied' errors jQuery("<div>").append( jQuery.parseHTML( responseText ) ).find( selector ) : // Otherwise use the full result responseText ); }).complete( callback && function( jqXHR, status ) { self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); }); } return this; }; jQuery.expr.filters.animated = function( elem ) { return jQuery.grep(jQuery.timers, function( fn ) { return elem === fn.elem; }).length; }; var docElem = window.document.documentElement; /** * Gets a window from an element */ function getWindow( elem ) { return jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 ? elem.defaultView || elem.parentWindow : false; } jQuery.offset = { setOffset: function( elem, options, i ) { var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition, position = jQuery.css( elem, "position" ), curElem = jQuery( elem ), props = {}; // set position first, in-case top/left are set even on static elem if ( position === "static" ) { elem.style.position = "relative"; } curOffset = curElem.offset(); curCSSTop = jQuery.css( elem, "top" ); curCSSLeft = jQuery.css( elem, "left" ); calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [ curCSSTop, curCSSLeft ] ) > -1; // need to be able to calculate position if either top or left is auto and position is either absolute or fixed if ( calculatePosition ) { curPosition = curElem.position(); curTop = curPosition.top; curLeft = curPosition.left; } else { curTop = parseFloat( curCSSTop ) || 0; curLeft = parseFloat( curCSSLeft ) || 0; } if ( jQuery.isFunction( options ) ) { options = options.call( elem, i, curOffset ); } if ( options.top != null ) { props.top = ( options.top - curOffset.top ) + curTop; } if ( options.left != null ) { props.left = ( options.left - curOffset.left ) + curLeft; } if ( "using" in options ) { options.using.call( elem, props ); } else { curElem.css( props ); } } }; jQuery.fn.extend({ offset: function( options ) { if ( arguments.length ) { return options === undefined ? this : this.each(function( i ) { jQuery.offset.setOffset( this, options, i ); }); } var docElem, win, box = { top: 0, left: 0 }, elem = this[ 0 ], doc = elem && elem.ownerDocument; if ( !doc ) { return; } docElem = doc.documentElement; // Make sure it's not a disconnected DOM node if ( !jQuery.contains( docElem, elem ) ) { return box; } // If we don't have gBCR, just use 0,0 rather than error // BlackBerry 5, iOS 3 (original iPhone) if ( typeof elem.getBoundingClientRect !== strundefined ) { box = elem.getBoundingClientRect(); } win = getWindow( doc ); return { top: box.top + ( win.pageYOffset || docElem.scrollTop ) - ( docElem.clientTop || 0 ), left: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 ) }; }, position: function() { if ( !this[ 0 ] ) { return; } var offsetParent, offset, parentOffset = { top: 0, left: 0 }, elem = this[ 0 ]; // fixed elements are offset from window (parentOffset = {top:0, left: 0}, because it is its only offset parent if ( jQuery.css( elem, "position" ) === "fixed" ) { // we assume that getBoundingClientRect is available when computed position is fixed offset = elem.getBoundingClientRect(); } else { // Get *real* offsetParent offsetParent = this.offsetParent(); // Get correct offsets offset = this.offset(); if ( !jQuery.nodeName( offsetParent[ 0 ], "html" ) ) { parentOffset = offsetParent.offset(); } // Add offsetParent borders parentOffset.top += jQuery.css( offsetParent[ 0 ], "borderTopWidth", true ); parentOffset.left += jQuery.css( offsetParent[ 0 ], "borderLeftWidth", true ); } // Subtract parent offsets and element margins // note: when an element has margin: auto the offsetLeft and marginLeft // are the same in Safari causing offset.left to incorrectly be 0 return { top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ), left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true) }; }, offsetParent: function() { return this.map(function() { var offsetParent = this.offsetParent || docElem; while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) && jQuery.css( offsetParent, "position" ) === "static" ) ) { offsetParent = offsetParent.offsetParent; } return offsetParent || docElem; }); } }); // Create scrollLeft and scrollTop methods jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) { var top = /Y/.test( prop ); jQuery.fn[ method ] = function( val ) { return access( this, function( elem, method, val ) { var win = getWindow( elem ); if ( val === undefined ) { return win ? (prop in win) ? win[ prop ] : win.document.documentElement[ method ] : elem[ method ]; } if ( win ) { win.scrollTo( !top ? val : jQuery( win ).scrollLeft(), top ? val : jQuery( win ).scrollTop() ); } else { elem[ method ] = val; } }, method, val, arguments.length, null ); }; }); // Add the top/left cssHooks using jQuery.fn.position // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 // getComputedStyle returns percent when specified for top/left/bottom/right // rather than make the css module depend on the offset module, we just check for it here jQuery.each( [ "top", "left" ], function( i, prop ) { jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition, function( elem, computed ) { if ( computed ) { computed = curCSS( elem, prop ); // if curCSS returns percentage, fallback to offset return rnumnonpx.test( computed ) ? jQuery( elem ).position()[ prop ] + "px" : computed; } } ); }); // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { // margin is only for outerHeight, outerWidth jQuery.fn[ funcName ] = function( margin, value ) { var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); return access( this, function( elem, type, value ) { var doc; if ( jQuery.isWindow( elem ) ) { // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there // isn't a whole lot we can do. See pull request at this URL for discussion: // https://github.com/jquery/jquery/pull/764 return elem.document.documentElement[ "client" + name ]; } // Get document width or height if ( elem.nodeType === 9 ) { doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. return Math.max( elem.body[ "scroll" + name ], doc[ "scroll" + name ], elem.body[ "offset" + name ], doc[ "offset" + name ], doc[ "client" + name ] ); } return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat jQuery.css( elem, type, extra ) : // Set width or height on the element jQuery.style( elem, type, value, extra ); }, type, chainable ? margin : undefined, chainable, null ); }; }); }); // The number of elements contained in the matched element set jQuery.fn.size = function() { return this.length; }; jQuery.fn.andSelf = jQuery.fn.addBack; // Register as a named AMD module, since jQuery can be concatenated with other // files that may use define, but not via a proper concatenation script that // understands anonymous AMD modules. A named AMD is safest and most robust // way to register. Lowercase jquery is used because AMD module names are // derived from file names, and jQuery is normally delivered in a lowercase // file name. Do this after creating the global so that if an AMD module wants // to call noConflict to hide this version of jQuery, it will work. if ( typeof define === "function" && define.amd ) { define( "jquery", [], function() { return jQuery; }); } var // Map over jQuery in case of overwrite _jQuery = window.jQuery, // Map over the $ in case of overwrite _$ = window.$; jQuery.noConflict = function( deep ) { if ( window.$ === jQuery ) { window.$ = _$; } if ( deep && window.jQuery === jQuery ) { window.jQuery = _jQuery; } return jQuery; }; // Expose jQuery and $ identifiers, even in // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) // and CommonJS for browser emulators (#13566) if ( typeof noGlobal === strundefined ) { window.jQuery = window.$ = jQuery; } return jQuery; }));
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
/*! * Bootstrap v3.1.1 (http://getbootstrap.com) * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ .btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger { text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); } .btn-default:active, .btn-primary:active, .btn-success:active, .btn-info:active, .btn-warning:active, .btn-danger:active, .btn-default.active, .btn-primary.active, .btn-success.active, .btn-info.active, .btn-warning.active, .btn-danger.active { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn:active, .btn.active { background-image: none; } .btn-default { text-shadow: 0 1px 0 #fff; background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #dbdbdb; border-color: #ccc; } .btn-default:hover, .btn-default:focus { background-color: #e0e0e0; background-position: 0 -15px; } .btn-default:active, .btn-default.active { background-color: #e0e0e0; border-color: #dbdbdb; } .btn-primary { background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%); background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #2b669a; } .btn-primary:hover, .btn-primary:focus { background-color: #2d6ca2; background-position: 0 -15px; } .btn-primary:active, .btn-primary.active { background-color: #2d6ca2; border-color: #2b669a; } .btn-success { background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #3e8f3e; } .btn-success:hover, .btn-success:focus { background-color: #419641; background-position: 0 -15px; } .btn-success:active, .btn-success.active { background-color: #419641; border-color: #3e8f3e; } .btn-info { background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #28a4c9; } .btn-info:hover, .btn-info:focus { background-color: #2aabd2; background-position: 0 -15px; } .btn-info:active, .btn-info.active { background-color: #2aabd2; border-color: #28a4c9; } .btn-warning { background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #e38d13; } .btn-warning:hover, .btn-warning:focus { background-color: #eb9316; background-position: 0 -15px; } .btn-warning:active, .btn-warning.active { background-color: #eb9316; border-color: #e38d13; } .btn-danger { background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-color: #b92c28; } .btn-danger:hover, .btn-danger:focus { background-color: #c12e2a; background-position: 0 -15px; } .btn-danger:active, .btn-danger.active { background-color: #c12e2a; border-color: #b92c28; } .thumbnail, .img-thumbnail { -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); box-shadow: 0 1px 2px rgba(0, 0, 0, .075); } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { background-color: #e8e8e8; background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); background-repeat: repeat-x; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { background-color: #357ebd; background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); background-repeat: repeat-x; } .navbar-default { background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; border-radius: 4px; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); } .navbar-default .navbar-nav > .active > a { background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f3f3f3 100%); background-image: linear-gradient(to bottom, #ebebeb 0%, #f3f3f3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0); background-repeat: repeat-x; -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); } .navbar-brand, .navbar-nav > li > a { text-shadow: 0 1px 0 rgba(255, 255, 255, .25); } .navbar-inverse { background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background-repeat: repeat-x; } .navbar-inverse .navbar-nav > .active > a { background-image: -webkit-linear-gradient(top, #222 0%, #282828 100%); background-image: linear-gradient(to bottom, #222 0%, #282828 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0); background-repeat: repeat-x; -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); } .navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > li > a { text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); } .navbar-static-top, .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } .alert { text-shadow: 0 1px 0 rgba(255, 255, 255, .2); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); } .alert-success { background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); background-repeat: repeat-x; border-color: #b2dba1; } .alert-info { background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); background-repeat: repeat-x; border-color: #9acfea; } .alert-warning { background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); background-repeat: repeat-x; border-color: #f5e79e; } .alert-danger { background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); background-repeat: repeat-x; border-color: #dca7a7; } .progress { background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); background-repeat: repeat-x; } .progress-bar { background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%); background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0); background-repeat: repeat-x; } .progress-bar-success { background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); background-repeat: repeat-x; } .progress-bar-info { background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); background-repeat: repeat-x; } .progress-bar-warning { background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); background-repeat: repeat-x; } .progress-bar-danger { background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); background-repeat: repeat-x; } .list-group { border-radius: 4px; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); box-shadow: 0 1px 2px rgba(0, 0, 0, .075); } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { text-shadow: 0 -1px 0 #3071a9; background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%); background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0); background-repeat: repeat-x; border-color: #3278b3; } .panel { -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); box-shadow: 0 1px 2px rgba(0, 0, 0, .05); } .panel-default > .panel-heading { background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); background-repeat: repeat-x; } .panel-primary > .panel-heading { background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%); background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0); background-repeat: repeat-x; } .panel-success > .panel-heading { background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); background-repeat: repeat-x; } .panel-info > .panel-heading { background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); background-repeat: repeat-x; } .panel-warning > .panel-heading { background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); background-repeat: repeat-x; } .panel-danger > .panel-heading { background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); background-repeat: repeat-x; } .well { background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); background-repeat: repeat-x; border-color: #dcdcdc; -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); } /*# sourceMappingURL=bootstrap-theme.css.map */
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
/*! * Bootstrap v3.1.1 (http://getbootstrap.com) * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.0 | MIT License | git.io/normalize */ html { font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { margin: .67em 0; font-size: 2em; } mark { color: #000; background: #ff0; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { height: 0; -moz-box-sizing: content-box; box-sizing: content-box; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { margin: 0; font: inherit; color: inherit; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { padding: .35em .625em .75em; margin: 0 2px; border: 1px solid #c0c0c0; } legend { padding: 0; border: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-spacing: 0; border-collapse: collapse; } td, th { padding: 0; } @media print { * { color: #000 !important; text-shadow: none !important; background: transparent !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } select { background: #fff !important; } .navbar { display: none; } .table td, .table th { background-color: #fff !important; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #428bca; text-decoration: none; } a:hover, a:focus { color: #2a6496; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { display: inline-block; max-width: 100%; height: auto; padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #999; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 200; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } cite { font-style: normal; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-muted { color: #999; } .text-primary { color: #428bca; } a.text-primary:hover { color: #3071a9; } .text-success { color: #3c763d; } a.text-success:hover { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover { color: #843534; } .bg-primary { color: #fff; background-color: #428bca; } a.bg-primary:hover { background-color: #3071a9; } .bg-success { background-color: #dff0d8; } a.bg-success:hover { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; margin-left: -5px; list-style: none; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #999; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #999; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } blockquote:before, blockquote:after { content: ""; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; white-space: nowrap; background-color: #f9f2f4; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #fff; background-color: #333; border-radius: 3px; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { margin-right: -15px; margin-left: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: 0; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: 0; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: 0; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: 0; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: 0; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: 0; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: 0; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: 0; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } table { max-width: 100%; background-color: transparent; } th { text-align: left; } .table { width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #ddd; } .table .table { background-color: #fff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { background-color: #f5f5f5; } table col[class*="col-"] { position: static; display: table-column; float: none; } table td[class*="col-"], table th[class*="col-"] { position: static; display: table-cell; float: none; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } @media (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-x: scroll; overflow-y: hidden; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; /* IE8-9 */ line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.42857143; color: #555; } .form-control { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); } .form-control::-moz-placeholder { color: #999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999; } .form-control::-webkit-input-placeholder { color: #999; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { cursor: not-allowed; background-color: #eee; opacity: 1; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } input[type="date"] { line-height: 34px; } .form-group { margin-bottom: 15px; } .radio, .checkbox { display: block; min-height: 20px; padding-left: 20px; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { display: inline; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { float: left; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } select.input-lg { height: 46px; line-height: 46px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 42.5px; } .has-feedback .form-control-feedback { position: absolute; top: 25px; right: 0; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .form-control-static { margin-bottom: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; padding-left: 0; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { float: none; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } .form-horizontal .form-control-static { padding-top: 7px; } @media (min-width: 768px) { .form-horizontal .control-label { text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { top: 0; right: 15px; } .btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn:focus, .btn:active:focus, .btn.active:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus { color: #333; text-decoration: none; } .btn:active, .btn.active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { pointer-events: none; cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { color: #333; background-color: #ebebeb; border-color: #adadad; } .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-primary { color: #fff; background-color: #428bca; border-color: #357ebd; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { color: #fff; background-color: #3276b1; border-color: #285e8e; } .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #428bca; border-color: #357ebd; } .btn-primary .badge { color: #428bca; background-color: #fff; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { color: #fff; background-color: #47a447; border-color: #398439; } .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } .btn-success .badge { color: #5cb85c; background-color: #fff; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { color: #fff; background-color: #39b3d7; border-color: #269abc; } .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } .btn-info .badge { color: #5bc0de; background-color: #fff; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { color: #fff; background-color: #ed9c28; border-color: #d58512; } .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } .btn-warning .badge { color: #f0ad4e; background-color: #fff; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { color: #fff; background-color: #d2322d; border-color: #ac2925; } .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } .btn-danger .badge { color: #d9534f; background-color: #fff; } .btn-link { font-weight: normal; color: #428bca; cursor: pointer; border-radius: 0; } .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #2a6496; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #999; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; padding-right: 0; padding-left: 0; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height .35s ease; transition: height .35s ease; } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px solid; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); box-shadow: 0 6px 12px rgba(0, 0, 0, .175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #428bca; outline: 0; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #999; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #999; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px solid; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 1px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group > .btn:focus, .btn-group-vertical > .btn:focus { outline: none; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn-group:last-child > .btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] { display: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 46px; line-height: 46px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eee; } .nav > li.disabled > a { color: #999; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #999; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eee; border-color: #428bca; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eee #eee #ddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555; cursor: default; background-color: #fff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #fff; background-color: #428bca; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { max-height: 340px; padding-right: 15px; padding-left: 15px; overflow-x: visible; -webkit-overflow-scrolling: touch; border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; line-height: 20px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-top: 8px; margin-right: 15px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: none; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } .navbar-nav.navbar-right:last-child { margin-right: -15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; } } .navbar-form { padding: 10px 15px; margin-top: 8px; margin-right: -15px; margin-bottom: 8px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; padding-left: 0; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { float: none; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } } @media (min-width: 768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-form.navbar-right:last-child { margin-right: -15px; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 8px; margin-bottom: 8px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } .navbar-text.navbar-right:last-child { margin-right: 0; } } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav > li > a { color: #777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #ccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #555; background-color: #e7e7e7; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-inverse { background-color: #222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #999; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-text { color: #999; } .navbar-inverse .navbar-nav > li > a { color: #999; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #fff; background-color: #080808; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #999; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #999; } .navbar-inverse .navbar-link:hover { color: #fff; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "/\00a0"; } .breadcrumb > .active { color: #999; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; color: #428bca; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { color: #2a6496; background-color: #eee; border-color: #ddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; background-color: #428bca; border-color: #428bca; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #999; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; text-align: center; list-style: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #999; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } .label[href]:hover, .label[href]:focus { color: #fff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #999; } .label-default[href]:hover, .label-default[href]:focus { background-color: #808080; } .label-primary { background-color: #428bca; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #3071a9; } .label-success { background-color: #5cb85c; } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44; } .label-info { background-color: #5bc0de; } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5; } .label-warning { background-color: #f0ad4e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f; } .label-danger { background-color: #d9534f; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; background-color: #999; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; cursor: pointer; } a.list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #428bca; background-color: #fff; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding: 30px; margin-bottom: 30px; color: inherit; background-color: #eee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .container .jumbotron { border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #428bca; } .thumbnail .caption { padding: 9px; color: #333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable { padding-right: 35px; } .alert-dismissable .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #428bca; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; transition: width .6s ease; } .progress-striped .progress-bar { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-size: 40px 40px; } .progress.active .progress-bar { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #5cb85c; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #5bc0de; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #f0ad4e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #d9534f; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .media, .media-body { overflow: hidden; zoom: 1; } .media, .media .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media-object { display: block; } .media-heading { margin: 0 0 5px; } .media > .pull-left { margin-right: 10px; } .media > .pull-right { margin-left: 10px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } a.list-group-item { color: #555; } a.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:hover, a.list-group-item:focus { text-decoration: none; background-color: #f5f5f5; } a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { z-index: 2; color: #fff; background-color: #428bca; border-color: #428bca; } a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading { color: inherit; } a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { color: #e1edf7; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, a.list-group-item-success:focus { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, a.list-group-item-info:focus { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, a.list-group-item-warning:focus { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, a.list-group-item-danger:focus { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, .05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table { margin-bottom: 0; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; overflow: hidden; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse .panel-body { border-top: 1px solid #ddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #ddd; } .panel-default { border-color: #ddd; } .panel-default > .panel-heading { color: #333; background-color: #f5f5f5; border-color: #ddd; } .panel-default > .panel-heading + .panel-collapse .panel-body { border-top-color: #ddd; } .panel-default > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #ddd; } .panel-primary { border-color: #428bca; } .panel-primary > .panel-heading { color: #fff; background-color: #428bca; border-color: #428bca; } .panel-primary > .panel-heading + .panel-collapse .panel-body { border-top-color: #428bca; } .panel-primary > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #428bca; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #ebccd1; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, .15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: auto; overflow-y: scroll; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; -moz-transition: -moz-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; outline: none; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); box-shadow: 0 3px 9px rgba(0, 0, 0, .5); } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { min-height: 16.42857143px; padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 20px; } .modal-footer { padding: 19px 20px 20px; margin-top: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); box-shadow: 0 5px 15px rgba(0, 0, 0, .5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1030; display: block; font-size: 12px; line-height: 1.4; visibility: visible; filter: alpha(opacity=0); opacity: 0; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; text-decoration: none; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { bottom: 0; left: 5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { right: 5px; bottom: 0; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; left: 5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; right: 5px; border-width: 0 5px 5px; border-bottom-color: #000; } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; max-width: 276px; padding: 1px; text-align: left; white-space: normal; background-color: #fff; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); box-shadow: 0 5px 10px rgba(0, 0, 0, .2); } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; font-weight: normal; line-height: 18px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0, 0, 0, .25); border-bottom-width: 0; } .popover.top > .arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0, 0, 0, .25); border-left-width: 0; } .popover.right > .arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25); } .popover.bottom > .arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, .25); } .popover.left > .arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; -webkit-transition: .6s ease-in-out left; transition: .6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .5) 0%), color-stop(rgba(0, 0, 0, .0001) 100%)); background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(0, 0, 0, .5) 100%)); background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); background-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: #fff; text-decoration: none; filter: alpha(opacity=90); outline: none; opacity: .9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; margin-top: -10px; margin-left: -10px; font-family: serif; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; margin-left: -15px; font-size: 30px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { display: table; content: " "; } .clearfix:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; visibility: hidden !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } @media print { .hidden-print { display: none !important; } } /*# sourceMappingURL=bootstrap.css.map */
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
/*! * Bootstrap v3.1.1 (http://getbootstrap.com) * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') } /* ======================================================================== * Bootstrap: transition.js v3.1.1 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) // ============================================================ function transitionEnd() { var el = document.createElement('bootstrap') var transEndEventNames = { 'WebkitTransition' : 'webkitTransitionEnd', 'MozTransition' : 'transitionend', 'OTransition' : 'oTransitionEnd otransitionend', 'transition' : 'transitionend' } for (var name in transEndEventNames) { if (el.style[name] !== undefined) { return { end: transEndEventNames[name] } } } return false // explicit for ie8 ( ._.) } // http://blog.alexmaccaw.com/css-transitions $.fn.emulateTransitionEnd = function (duration) { var called = false, $el = this $(this).one($.support.transition.end, function () { called = true }) var callback = function () { if (!called) $($el).trigger($.support.transition.end) } setTimeout(callback, duration) return this } $(function () { $.support.transition = transitionEnd() }) }(jQuery); /* ======================================================================== * Bootstrap: alert.js v3.1.1 * http://getbootstrap.com/javascript/#alerts * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // ALERT CLASS DEFINITION // ====================== var dismiss = '[data-dismiss="alert"]' var Alert = function (el) { $(el).on('click', dismiss, this.close) } Alert.prototype.close = function (e) { var $this = $(this) var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 } var $parent = $(selector) if (e) e.preventDefault() if (!$parent.length) { $parent = $this.hasClass('alert') ? $this : $this.parent() } $parent.trigger(e = $.Event('close.bs.alert')) if (e.isDefaultPrevented()) return $parent.removeClass('in') function removeElement() { $parent.trigger('closed.bs.alert').remove() } $.support.transition && $parent.hasClass('fade') ? $parent .one($.support.transition.end, removeElement) .emulateTransitionEnd(150) : removeElement() } // ALERT PLUGIN DEFINITION // ======================= var old = $.fn.alert $.fn.alert = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.alert') if (!data) $this.data('bs.alert', (data = new Alert(this))) if (typeof option == 'string') data[option].call($this) }) } $.fn.alert.Constructor = Alert // ALERT NO CONFLICT // ================= $.fn.alert.noConflict = function () { $.fn.alert = old return this } // ALERT DATA-API // ============== $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) }(jQuery); /* ======================================================================== * Bootstrap: button.js v3.1.1 * http://getbootstrap.com/javascript/#buttons * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // BUTTON PUBLIC CLASS DEFINITION // ============================== var Button = function (element, options) { this.$element = $(element) this.options = $.extend({}, Button.DEFAULTS, options) this.isLoading = false } Button.DEFAULTS = { loadingText: 'loading...' } Button.prototype.setState = function (state) { var d = 'disabled' var $el = this.$element var val = $el.is('input') ? 'val' : 'html' var data = $el.data() state = state + 'Text' if (!data.resetText) $el.data('resetText', $el[val]()) $el[val](data[state] || this.options[state]) // push to event loop to allow forms to submit setTimeout($.proxy(function () { if (state == 'loadingText') { this.isLoading = true $el.addClass(d).attr(d, d) } else if (this.isLoading) { this.isLoading = false $el.removeClass(d).removeAttr(d) } }, this), 0) } Button.prototype.toggle = function () { var changed = true var $parent = this.$element.closest('[data-toggle="buttons"]') if ($parent.length) { var $input = this.$element.find('input') if ($input.prop('type') == 'radio') { if ($input.prop('checked') && this.$element.hasClass('active')) changed = false else $parent.find('.active').removeClass('active') } if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change') } if (changed) this.$element.toggleClass('active') } // BUTTON PLUGIN DEFINITION // ======================== var old = $.fn.button $.fn.button = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.button') var options = typeof option == 'object' && option if (!data) $this.data('bs.button', (data = new Button(this, options))) if (option == 'toggle') data.toggle() else if (option) data.setState(option) }) } $.fn.button.Constructor = Button // BUTTON NO CONFLICT // ================== $.fn.button.noConflict = function () { $.fn.button = old return this } // BUTTON DATA-API // =============== $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) { var $btn = $(e.target) if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') $btn.button('toggle') e.preventDefault() }) }(jQuery); /* ======================================================================== * Bootstrap: carousel.js v3.1.1 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // CAROUSEL CLASS DEFINITION // ========================= var Carousel = function (element, options) { this.$element = $(element) this.$indicators = this.$element.find('.carousel-indicators') this.options = options this.paused = this.sliding = this.interval = this.$active = this.$items = null this.options.pause == 'hover' && this.$element .on('mouseenter', $.proxy(this.pause, this)) .on('mouseleave', $.proxy(this.cycle, this)) } Carousel.DEFAULTS = { interval: 5000, pause: 'hover', wrap: true } Carousel.prototype.cycle = function (e) { e || (this.paused = false) this.interval && clearInterval(this.interval) this.options.interval && !this.paused && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) return this } Carousel.prototype.getActiveIndex = function () { this.$active = this.$element.find('.item.active') this.$items = this.$active.parent().children() return this.$items.index(this.$active) } Carousel.prototype.to = function (pos) { var that = this var activeIndex = this.getActiveIndex() if (pos > (this.$items.length - 1) || pos < 0) return if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) if (activeIndex == pos) return this.pause().cycle() return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos])) } Carousel.prototype.pause = function (e) { e || (this.paused = true) if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end) this.cycle(true) } this.interval = clearInterval(this.interval) return this } Carousel.prototype.next = function () { if (this.sliding) return return this.slide('next') } Carousel.prototype.prev = function () { if (this.sliding) return return this.slide('prev') } Carousel.prototype.slide = function (type, next) { var $active = this.$element.find('.item.active') var $next = next || $active[type]() var isCycling = this.interval var direction = type == 'next' ? 'left' : 'right' var fallback = type == 'next' ? 'first' : 'last' var that = this if (!$next.length) { if (!this.options.wrap) return $next = this.$element.find('.item')[fallback]() } if ($next.hasClass('active')) return this.sliding = false var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction }) this.$element.trigger(e) if (e.isDefaultPrevented()) return this.sliding = true isCycling && this.pause() if (this.$indicators.length) { this.$indicators.find('.active').removeClass('active') this.$element.one('slid.bs.carousel', function () { var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()]) $nextIndicator && $nextIndicator.addClass('active') }) } if ($.support.transition && this.$element.hasClass('slide')) { $next.addClass(type) $next[0].offsetWidth // force reflow $active.addClass(direction) $next.addClass(direction) $active .one($.support.transition.end, function () { $next.removeClass([type, direction].join(' ')).addClass('active') $active.removeClass(['active', direction].join(' ')) that.sliding = false setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0) }) .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000) } else { $active.removeClass('active') $next.addClass('active') this.sliding = false this.$element.trigger('slid.bs.carousel') } isCycling && this.cycle() return this } // CAROUSEL PLUGIN DEFINITION // ========================== var old = $.fn.carousel $.fn.carousel = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.carousel') var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) var action = typeof option == 'string' ? option : options.slide if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) if (typeof option == 'number') data.to(option) else if (action) data[action]() else if (options.interval) data.pause().cycle() }) } $.fn.carousel.Constructor = Carousel // CAROUSEL NO CONFLICT // ==================== $.fn.carousel.noConflict = function () { $.fn.carousel = old return this } // CAROUSEL DATA-API // ================= $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) { var $this = $(this), href var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 var options = $.extend({}, $target.data(), $this.data()) var slideIndex = $this.attr('data-slide-to') if (slideIndex) options.interval = false $target.carousel(options) if (slideIndex = $this.attr('data-slide-to')) { $target.data('bs.carousel').to(slideIndex) } e.preventDefault() }) $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this) $carousel.carousel($carousel.data()) }) }) }(jQuery); /* ======================================================================== * Bootstrap: collapse.js v3.1.1 * http://getbootstrap.com/javascript/#collapse * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // COLLAPSE PUBLIC CLASS DEFINITION // ================================ var Collapse = function (element, options) { this.$element = $(element) this.options = $.extend({}, Collapse.DEFAULTS, options) this.transitioning = null if (this.options.parent) this.$parent = $(this.options.parent) if (this.options.toggle) this.toggle() } Collapse.DEFAULTS = { toggle: true } Collapse.prototype.dimension = function () { var hasWidth = this.$element.hasClass('width') return hasWidth ? 'width' : 'height' } Collapse.prototype.show = function () { if (this.transitioning || this.$element.hasClass('in')) return var startEvent = $.Event('show.bs.collapse') this.$element.trigger(startEvent) if (startEvent.isDefaultPrevented()) return var actives = this.$parent && this.$parent.find('> .panel > .in') if (actives && actives.length) { var hasData = actives.data('bs.collapse') if (hasData && hasData.transitioning) return actives.collapse('hide') hasData || actives.data('bs.collapse', null) } var dimension = this.dimension() this.$element .removeClass('collapse') .addClass('collapsing') [dimension](0) this.transitioning = 1 var complete = function () { this.$element .removeClass('collapsing') .addClass('collapse in') [dimension]('auto') this.transitioning = 0 this.$element.trigger('shown.bs.collapse') } if (!$.support.transition) return complete.call(this) var scrollSize = $.camelCase(['scroll', dimension].join('-')) this.$element .one($.support.transition.end, $.proxy(complete, this)) .emulateTransitionEnd(350) [dimension](this.$element[0][scrollSize]) } Collapse.prototype.hide = function () { if (this.transitioning || !this.$element.hasClass('in')) return var startEvent = $.Event('hide.bs.collapse') this.$element.trigger(startEvent) if (startEvent.isDefaultPrevented()) return var dimension = this.dimension() this.$element [dimension](this.$element[dimension]()) [0].offsetHeight this.$element .addClass('collapsing') .removeClass('collapse') .removeClass('in') this.transitioning = 1 var complete = function () { this.transitioning = 0 this.$element .trigger('hidden.bs.collapse') .removeClass('collapsing') .addClass('collapse') } if (!$.support.transition) return complete.call(this) this.$element [dimension](0) .one($.support.transition.end, $.proxy(complete, this)) .emulateTransitionEnd(350) } Collapse.prototype.toggle = function () { this[this.$element.hasClass('in') ? 'hide' : 'show']() } // COLLAPSE PLUGIN DEFINITION // ========================== var old = $.fn.collapse $.fn.collapse = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.collapse') var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) if (!data && options.toggle && option == 'show') option = !option if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.collapse.Constructor = Collapse // COLLAPSE NO CONFLICT // ==================== $.fn.collapse.noConflict = function () { $.fn.collapse = old return this } // COLLAPSE DATA-API // ================= $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) { var $this = $(this), href var target = $this.attr('data-target') || e.preventDefault() || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 var $target = $(target) var data = $target.data('bs.collapse') var option = data ? 'toggle' : $this.data() var parent = $this.attr('data-parent') var $parent = parent && $(parent) if (!data || !data.transitioning) { if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed') $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed') } $target.collapse(option) }) }(jQuery); /* ======================================================================== * Bootstrap: dropdown.js v3.1.1 * http://getbootstrap.com/javascript/#dropdowns * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // DROPDOWN CLASS DEFINITION // ========================= var backdrop = '.dropdown-backdrop' var toggle = '[data-toggle=dropdown]' var Dropdown = function (element) { $(element).on('click.bs.dropdown', this.toggle) } Dropdown.prototype.toggle = function (e) { var $this = $(this) if ($this.is('.disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('open') clearMenus() if (!isActive) { if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { // if mobile we use a backdrop because click events don't delegate $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus) } var relatedTarget = { relatedTarget: this } $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $parent .toggleClass('open') .trigger('shown.bs.dropdown', relatedTarget) $this.focus() } return false } Dropdown.prototype.keydown = function (e) { if (!/(38|40|27)/.test(e.keyCode)) return var $this = $(this) e.preventDefault() e.stopPropagation() if ($this.is('.disabled, :disabled')) return var $parent = getParent($this) var isActive = $parent.hasClass('open') if (!isActive || (isActive && e.keyCode == 27)) { if (e.which == 27) $parent.find(toggle).focus() return $this.click() } var desc = ' li:not(.divider):visible a' var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc) if (!$items.length) return var index = $items.index($items.filter(':focus')) if (e.keyCode == 38 && index > 0) index-- // up if (e.keyCode == 40 && index < $items.length - 1) index++ // down if (!~index) index = 0 $items.eq(index).focus() } function clearMenus(e) { $(backdrop).remove() $(toggle).each(function () { var $parent = getParent($(this)) var relatedTarget = { relatedTarget: this } if (!$parent.hasClass('open')) return $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) if (e.isDefaultPrevented()) return $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget) }) } function getParent($this) { var selector = $this.attr('data-target') if (!selector) { selector = $this.attr('href') selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 } var $parent = selector && $(selector) return $parent && $parent.length ? $parent : $this.parent() } // DROPDOWN PLUGIN DEFINITION // ========================== var old = $.fn.dropdown $.fn.dropdown = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.dropdown') if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) if (typeof option == 'string') data[option].call($this) }) } $.fn.dropdown.Constructor = Dropdown // DROPDOWN NO CONFLICT // ==================== $.fn.dropdown.noConflict = function () { $.fn.dropdown = old return this } // APPLY TO STANDARD DROPDOWN ELEMENTS // =================================== $(document) .on('click.bs.dropdown.data-api', clearMenus) .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown) }(jQuery); /* ======================================================================== * Bootstrap: modal.js v3.1.1 * http://getbootstrap.com/javascript/#modals * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // MODAL CLASS DEFINITION // ====================== var Modal = function (element, options) { this.options = options this.$element = $(element) this.$backdrop = this.isShown = null if (this.options.remote) { this.$element .find('.modal-content') .load(this.options.remote, $.proxy(function () { this.$element.trigger('loaded.bs.modal') }, this)) } } Modal.DEFAULTS = { backdrop: true, keyboard: true, show: true } Modal.prototype.toggle = function (_relatedTarget) { return this[!this.isShown ? 'show' : 'hide'](_relatedTarget) } Modal.prototype.show = function (_relatedTarget) { var that = this var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) this.$element.trigger(e) if (this.isShown || e.isDefaultPrevented()) return this.isShown = true this.escape() this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) this.backdrop(function () { var transition = $.support.transition && that.$element.hasClass('fade') if (!that.$element.parent().length) { that.$element.appendTo(document.body) // don't move modals dom position } that.$element .show() .scrollTop(0) if (transition) { that.$element[0].offsetWidth // force reflow } that.$element .addClass('in') .attr('aria-hidden', false) that.enforceFocus() var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) transition ? that.$element.find('.modal-dialog') // wait for modal to slide in .one($.support.transition.end, function () { that.$element.focus().trigger(e) }) .emulateTransitionEnd(300) : that.$element.focus().trigger(e) }) } Modal.prototype.hide = function (e) { if (e) e.preventDefault() e = $.Event('hide.bs.modal') this.$element.trigger(e) if (!this.isShown || e.isDefaultPrevented()) return this.isShown = false this.escape() $(document).off('focusin.bs.modal') this.$element .removeClass('in') .attr('aria-hidden', true) .off('click.dismiss.bs.modal') $.support.transition && this.$element.hasClass('fade') ? this.$element .one($.support.transition.end, $.proxy(this.hideModal, this)) .emulateTransitionEnd(300) : this.hideModal() } Modal.prototype.enforceFocus = function () { $(document) .off('focusin.bs.modal') // guard against infinite focus loop .on('focusin.bs.modal', $.proxy(function (e) { if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { this.$element.focus() } }, this)) } Modal.prototype.escape = function () { if (this.isShown && this.options.keyboard) { this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) { e.which == 27 && this.hide() }, this)) } else if (!this.isShown) { this.$element.off('keyup.dismiss.bs.modal') } } Modal.prototype.hideModal = function () { var that = this this.$element.hide() this.backdrop(function () { that.removeBackdrop() that.$element.trigger('hidden.bs.modal') }) } Modal.prototype.removeBackdrop = function () { this.$backdrop && this.$backdrop.remove() this.$backdrop = null } Modal.prototype.backdrop = function (callback) { var animate = this.$element.hasClass('fade') ? 'fade' : '' if (this.isShown && this.options.backdrop) { var doAnimate = $.support.transition && animate this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') .appendTo(document.body) this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { if (e.target !== e.currentTarget) return this.options.backdrop == 'static' ? this.$element[0].focus.call(this.$element[0]) : this.hide.call(this) }, this)) if (doAnimate) this.$backdrop[0].offsetWidth // force reflow this.$backdrop.addClass('in') if (!callback) return doAnimate ? this.$backdrop .one($.support.transition.end, callback) .emulateTransitionEnd(150) : callback() } else if (!this.isShown && this.$backdrop) { this.$backdrop.removeClass('in') $.support.transition && this.$element.hasClass('fade') ? this.$backdrop .one($.support.transition.end, callback) .emulateTransitionEnd(150) : callback() } else if (callback) { callback() } } // MODAL PLUGIN DEFINITION // ======================= var old = $.fn.modal $.fn.modal = function (option, _relatedTarget) { return this.each(function () { var $this = $(this) var data = $this.data('bs.modal') var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) if (!data) $this.data('bs.modal', (data = new Modal(this, options))) if (typeof option == 'string') data[option](_relatedTarget) else if (options.show) data.show(_relatedTarget) }) } $.fn.modal.Constructor = Modal // MODAL NO CONFLICT // ================= $.fn.modal.noConflict = function () { $.fn.modal = old return this } // MODAL DATA-API // ============== $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { var $this = $(this) var href = $this.attr('href') var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7 var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) if ($this.is('a')) e.preventDefault() $target .modal(option, this) .one('hide', function () { $this.is(':visible') && $this.focus() }) }) $(document) .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') }) .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') }) }(jQuery); /* ======================================================================== * Bootstrap: tooltip.js v3.1.1 * http://getbootstrap.com/javascript/#tooltip * Inspired by the original jQuery.tipsy by Jason Frame * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // TOOLTIP PUBLIC CLASS DEFINITION // =============================== var Tooltip = function (element, options) { this.type = this.options = this.enabled = this.timeout = this.hoverState = this.$element = null this.init('tooltip', element, options) } Tooltip.DEFAULTS = { animation: true, placement: 'top', selector: false, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', trigger: 'hover focus', title: '', delay: 0, html: false, container: false } Tooltip.prototype.init = function (type, element, options) { this.enabled = true this.type = type this.$element = $(element) this.options = this.getOptions(options) var triggers = this.options.trigger.split(' ') for (var i = triggers.length; i--;) { var trigger = triggers[i] if (trigger == 'click') { this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) } else if (trigger != 'manual') { var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) } } this.options.selector ? (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : this.fixTitle() } Tooltip.prototype.getDefaults = function () { return Tooltip.DEFAULTS } Tooltip.prototype.getOptions = function (options) { options = $.extend({}, this.getDefaults(), this.$element.data(), options) if (options.delay && typeof options.delay == 'number') { options.delay = { show: options.delay, hide: options.delay } } return options } Tooltip.prototype.getDelegateOptions = function () { var options = {} var defaults = this.getDefaults() this._options && $.each(this._options, function (key, value) { if (defaults[key] != value) options[key] = value }) return options } Tooltip.prototype.enter = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) clearTimeout(self.timeout) self.hoverState = 'in' if (!self.options.delay || !self.options.delay.show) return self.show() self.timeout = setTimeout(function () { if (self.hoverState == 'in') self.show() }, self.options.delay.show) } Tooltip.prototype.leave = function (obj) { var self = obj instanceof this.constructor ? obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) clearTimeout(self.timeout) self.hoverState = 'out' if (!self.options.delay || !self.options.delay.hide) return self.hide() self.timeout = setTimeout(function () { if (self.hoverState == 'out') self.hide() }, self.options.delay.hide) } Tooltip.prototype.show = function () { var e = $.Event('show.bs.' + this.type) if (this.hasContent() && this.enabled) { this.$element.trigger(e) if (e.isDefaultPrevented()) return var that = this; var $tip = this.tip() this.setContent() if (this.options.animation) $tip.addClass('fade') var placement = typeof this.options.placement == 'function' ? this.options.placement.call(this, $tip[0], this.$element[0]) : this.options.placement var autoToken = /\s?auto?\s?/i var autoPlace = autoToken.test(placement) if (autoPlace) placement = placement.replace(autoToken, '') || 'top' $tip .detach() .css({ top: 0, left: 0, display: 'block' }) .addClass(placement) this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) var pos = this.getPosition() var actualWidth = $tip[0].offsetWidth var actualHeight = $tip[0].offsetHeight if (autoPlace) { var $parent = this.$element.parent() var orgPlacement = placement var docScroll = document.documentElement.scrollTop || document.body.scrollTop var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth() var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight() var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' : placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' : placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' : placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' : placement $tip .removeClass(orgPlacement) .addClass(placement) } var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) this.applyPlacement(calculatedOffset, placement) this.hoverState = null var complete = function() { that.$element.trigger('shown.bs.' + that.type) } $.support.transition && this.$tip.hasClass('fade') ? $tip .one($.support.transition.end, complete) .emulateTransitionEnd(150) : complete() } } Tooltip.prototype.applyPlacement = function (offset, placement) { var replace var $tip = this.tip() var width = $tip[0].offsetWidth var height = $tip[0].offsetHeight // manually read margins because getBoundingClientRect includes difference var marginTop = parseInt($tip.css('margin-top'), 10) var marginLeft = parseInt($tip.css('margin-left'), 10) // we must check for NaN for ie 8/9 if (isNaN(marginTop)) marginTop = 0 if (isNaN(marginLeft)) marginLeft = 0 offset.top = offset.top + marginTop offset.left = offset.left + marginLeft // $.fn.offset doesn't round pixel values // so we use setOffset directly with our own function B-0 $.offset.setOffset($tip[0], $.extend({ using: function (props) { $tip.css({ top: Math.round(props.top), left: Math.round(props.left) }) } }, offset), 0) $tip.addClass('in') // check to see if placing tip in new offset caused the tip to resize itself var actualWidth = $tip[0].offsetWidth var actualHeight = $tip[0].offsetHeight if (placement == 'top' && actualHeight != height) { replace = true offset.top = offset.top + height - actualHeight } if (/bottom|top/.test(placement)) { var delta = 0 if (offset.left < 0) { delta = offset.left * -2 offset.left = 0 $tip.offset(offset) actualWidth = $tip[0].offsetWidth actualHeight = $tip[0].offsetHeight } this.replaceArrow(delta - width + actualWidth, actualWidth, 'left') } else { this.replaceArrow(actualHeight - height, actualHeight, 'top') } if (replace) $tip.offset(offset) } Tooltip.prototype.replaceArrow = function (delta, dimension, position) { this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '') } Tooltip.prototype.setContent = function () { var $tip = this.tip() var title = this.getTitle() $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) $tip.removeClass('fade in top bottom left right') } Tooltip.prototype.hide = function () { var that = this var $tip = this.tip() var e = $.Event('hide.bs.' + this.type) function complete() { if (that.hoverState != 'in') $tip.detach() that.$element.trigger('hidden.bs.' + that.type) } this.$element.trigger(e) if (e.isDefaultPrevented()) return $tip.removeClass('in') $.support.transition && this.$tip.hasClass('fade') ? $tip .one($.support.transition.end, complete) .emulateTransitionEnd(150) : complete() this.hoverState = null return this } Tooltip.prototype.fixTitle = function () { var $e = this.$element if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') { $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') } } Tooltip.prototype.hasContent = function () { return this.getTitle() } Tooltip.prototype.getPosition = function () { var el = this.$element[0] return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : { width: el.offsetWidth, height: el.offsetHeight }, this.$element.offset()) } Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } } Tooltip.prototype.getTitle = function () { var title var $e = this.$element var o = this.options title = $e.attr('data-original-title') || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) return title } Tooltip.prototype.tip = function () { return this.$tip = this.$tip || $(this.options.template) } Tooltip.prototype.arrow = function () { return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow') } Tooltip.prototype.validate = function () { if (!this.$element[0].parentNode) { this.hide() this.$element = null this.options = null } } Tooltip.prototype.enable = function () { this.enabled = true } Tooltip.prototype.disable = function () { this.enabled = false } Tooltip.prototype.toggleEnabled = function () { this.enabled = !this.enabled } Tooltip.prototype.toggle = function (e) { var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this self.tip().hasClass('in') ? self.leave(self) : self.enter(self) } Tooltip.prototype.destroy = function () { clearTimeout(this.timeout) this.hide().$element.off('.' + this.type).removeData('bs.' + this.type) } // TOOLTIP PLUGIN DEFINITION // ========================= var old = $.fn.tooltip $.fn.tooltip = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.tooltip') var options = typeof option == 'object' && option if (!data && option == 'destroy') return if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.tooltip.Constructor = Tooltip // TOOLTIP NO CONFLICT // =================== $.fn.tooltip.noConflict = function () { $.fn.tooltip = old return this } }(jQuery); /* ======================================================================== * Bootstrap: popover.js v3.1.1 * http://getbootstrap.com/javascript/#popovers * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // POPOVER PUBLIC CLASS DEFINITION // =============================== var Popover = function (element, options) { this.init('popover', element, options) } if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { placement: 'right', trigger: 'click', content: '', template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' }) // NOTE: POPOVER EXTENDS tooltip.js // ================================ Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) Popover.prototype.constructor = Popover Popover.prototype.getDefaults = function () { return Popover.DEFAULTS } Popover.prototype.setContent = function () { var $tip = this.tip() var title = this.getTitle() var content = this.getContent() $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) $tip.find('.popover-content')[ // we use append for html objects to maintain js events this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' ](content) $tip.removeClass('fade top bottom left right in') // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do // this manually by checking the contents. if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() } Popover.prototype.hasContent = function () { return this.getTitle() || this.getContent() } Popover.prototype.getContent = function () { var $e = this.$element var o = this.options return $e.attr('data-content') || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content) } Popover.prototype.arrow = function () { return this.$arrow = this.$arrow || this.tip().find('.arrow') } Popover.prototype.tip = function () { if (!this.$tip) this.$tip = $(this.options.template) return this.$tip } // POPOVER PLUGIN DEFINITION // ========================= var old = $.fn.popover $.fn.popover = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.popover') var options = typeof option == 'object' && option if (!data && option == 'destroy') return if (!data) $this.data('bs.popover', (data = new Popover(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.popover.Constructor = Popover // POPOVER NO CONFLICT // =================== $.fn.popover.noConflict = function () { $.fn.popover = old return this } }(jQuery); /* ======================================================================== * Bootstrap: scrollspy.js v3.1.1 * http://getbootstrap.com/javascript/#scrollspy * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // SCROLLSPY CLASS DEFINITION // ========================== function ScrollSpy(element, options) { var href var process = $.proxy(this.process, this) this.$element = $(element).is('body') ? $(window) : $(element) this.$body = $('body') this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process) this.options = $.extend({}, ScrollSpy.DEFAULTS, options) this.selector = (this.options.target || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 || '') + ' .nav li > a' this.offsets = $([]) this.targets = $([]) this.activeTarget = null this.refresh() this.process() } ScrollSpy.DEFAULTS = { offset: 10 } ScrollSpy.prototype.refresh = function () { var offsetMethod = this.$element[0] == window ? 'offset' : 'position' this.offsets = $([]) this.targets = $([]) var self = this var $targets = this.$body .find(this.selector) .map(function () { var $el = $(this) var href = $el.data('target') || $el.attr('href') var $href = /^#./.test(href) && $(href) return ($href && $href.length && $href.is(':visible') && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null }) .sort(function (a, b) { return a[0] - b[0] }) .each(function () { self.offsets.push(this[0]) self.targets.push(this[1]) }) } ScrollSpy.prototype.process = function () { var scrollTop = this.$scrollElement.scrollTop() + this.options.offset var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight var maxScroll = scrollHeight - this.$scrollElement.height() var offsets = this.offsets var targets = this.targets var activeTarget = this.activeTarget var i if (scrollTop >= maxScroll) { return activeTarget != (i = targets.last()[0]) && this.activate(i) } if (activeTarget && scrollTop <= offsets[0]) { return activeTarget != (i = targets[0]) && this.activate(i) } for (i = offsets.length; i--;) { activeTarget != targets[i] && scrollTop >= offsets[i] && (!offsets[i + 1] || scrollTop <= offsets[i + 1]) && this.activate( targets[i] ) } } ScrollSpy.prototype.activate = function (target) { this.activeTarget = target $(this.selector) .parentsUntil(this.options.target, '.active') .removeClass('active') var selector = this.selector + '[data-target="' + target + '"],' + this.selector + '[href="' + target + '"]' var active = $(selector) .parents('li') .addClass('active') if (active.parent('.dropdown-menu').length) { active = active .closest('li.dropdown') .addClass('active') } active.trigger('activate.bs.scrollspy') } // SCROLLSPY PLUGIN DEFINITION // =========================== var old = $.fn.scrollspy $.fn.scrollspy = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.scrollspy') var options = typeof option == 'object' && option if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.scrollspy.Constructor = ScrollSpy // SCROLLSPY NO CONFLICT // ===================== $.fn.scrollspy.noConflict = function () { $.fn.scrollspy = old return this } // SCROLLSPY DATA-API // ================== $(window).on('load', function () { $('[data-spy="scroll"]').each(function () { var $spy = $(this) $spy.scrollspy($spy.data()) }) }) }(jQuery); /* ======================================================================== * Bootstrap: tab.js v3.1.1 * http://getbootstrap.com/javascript/#tabs * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // TAB CLASS DEFINITION // ==================== var Tab = function (element) { this.element = $(element) } Tab.prototype.show = function () { var $this = this.element var $ul = $this.closest('ul:not(.dropdown-menu)') var selector = $this.data('target') if (!selector) { selector = $this.attr('href') selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 } if ($this.parent('li').hasClass('active')) return var previous = $ul.find('.active:last a')[0] var e = $.Event('show.bs.tab', { relatedTarget: previous }) $this.trigger(e) if (e.isDefaultPrevented()) return var $target = $(selector) this.activate($this.parent('li'), $ul) this.activate($target, $target.parent(), function () { $this.trigger({ type: 'shown.bs.tab', relatedTarget: previous }) }) } Tab.prototype.activate = function (element, container, callback) { var $active = container.find('> .active') var transition = callback && $.support.transition && $active.hasClass('fade') function next() { $active .removeClass('active') .find('> .dropdown-menu > .active') .removeClass('active') element.addClass('active') if (transition) { element[0].offsetWidth // reflow for transition element.addClass('in') } else { element.removeClass('fade') } if (element.parent('.dropdown-menu')) { element.closest('li.dropdown').addClass('active') } callback && callback() } transition ? $active .one($.support.transition.end, next) .emulateTransitionEnd(150) : next() $active.removeClass('in') } // TAB PLUGIN DEFINITION // ===================== var old = $.fn.tab $.fn.tab = function ( option ) { return this.each(function () { var $this = $(this) var data = $this.data('bs.tab') if (!data) $this.data('bs.tab', (data = new Tab(this))) if (typeof option == 'string') data[option]() }) } $.fn.tab.Constructor = Tab // TAB NO CONFLICT // =============== $.fn.tab.noConflict = function () { $.fn.tab = old return this } // TAB DATA-API // ============ $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { e.preventDefault() $(this).tab('show') }) }(jQuery); /* ======================================================================== * Bootstrap: affix.js v3.1.1 * http://getbootstrap.com/javascript/#affix * ======================================================================== * Copyright 2011-2014 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // AFFIX CLASS DEFINITION // ====================== var Affix = function (element, options) { this.options = $.extend({}, Affix.DEFAULTS, options) this.$window = $(window) .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) this.$element = $(element) this.affixed = this.unpin = this.pinnedOffset = null this.checkPosition() } Affix.RESET = 'affix affix-top affix-bottom' Affix.DEFAULTS = { offset: 0 } Affix.prototype.getPinnedOffset = function () { if (this.pinnedOffset) return this.pinnedOffset this.$element.removeClass(Affix.RESET).addClass('affix') var scrollTop = this.$window.scrollTop() var position = this.$element.offset() return (this.pinnedOffset = position.top - scrollTop) } Affix.prototype.checkPositionWithEventLoop = function () { setTimeout($.proxy(this.checkPosition, this), 1) } Affix.prototype.checkPosition = function () { if (!this.$element.is(':visible')) return var scrollHeight = $(document).height() var scrollTop = this.$window.scrollTop() var position = this.$element.offset() var offset = this.options.offset var offsetTop = offset.top var offsetBottom = offset.bottom if (this.affixed == 'top') position.top += scrollTop if (typeof offset != 'object') offsetBottom = offsetTop = offset if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false : offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' : offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false if (this.affixed === affix) return if (this.unpin) this.$element.css('top', '') var affixType = 'affix' + (affix ? '-' + affix : '') var e = $.Event(affixType + '.bs.affix') this.$element.trigger(e) if (e.isDefaultPrevented()) return this.affixed = affix this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null this.$element .removeClass(Affix.RESET) .addClass(affixType) .trigger($.Event(affixType.replace('affix', 'affixed'))) if (affix == 'bottom') { this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() }) } } // AFFIX PLUGIN DEFINITION // ======================= var old = $.fn.affix $.fn.affix = function (option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.affix') var options = typeof option == 'object' && option if (!data) $this.data('bs.affix', (data = new Affix(this, options))) if (typeof option == 'string') data[option]() }) } $.fn.affix.Constructor = Affix // AFFIX NO CONFLICT // ================= $.fn.affix.noConflict = function () { $.fn.affix = old return this } // AFFIX DATA-API // ============== $(window).on('load', function () { $('[data-spy="affix"]').each(function () { var $spy = $(this) var data = $spy.data() data.offset = data.offset || {} if (data.offsetBottom) data.offset.bottom = data.offsetBottom if (data.offsetTop) data.offset.top = data.offsetTop $spy.affix(data) }) }) }(jQuery);
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
d3 = function() { var d3 = { version: "3.1.5" }; if (!Date.now) Date.now = function() { return +new Date(); }; var d3_document = document, d3_window = window; try { d3_document.createElement("div").style.setProperty("opacity", 0, ""); } catch (error) { var d3_style_prototype = d3_window.CSSStyleDeclaration.prototype, d3_style_setProperty = d3_style_prototype.setProperty; d3_style_prototype.setProperty = function(name, value, priority) { d3_style_setProperty.call(this, name, value + "", priority); }; } d3.ascending = function(a, b) { return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN; }; d3.descending = function(a, b) { return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN; }; d3.min = function(array, f) { var i = -1, n = array.length, a, b; if (arguments.length === 1) { while (++i < n && ((a = array[i]) == null || a != a)) a = undefined; while (++i < n) if ((b = array[i]) != null && a > b) a = b; } else { while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined; while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b; } return a; }; d3.max = function(array, f) { var i = -1, n = array.length, a, b; if (arguments.length === 1) { while (++i < n && ((a = array[i]) == null || a != a)) a = undefined; while (++i < n) if ((b = array[i]) != null && b > a) a = b; } else { while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined; while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b; } return a; }; d3.extent = function(array, f) { var i = -1, n = array.length, a, b, c; if (arguments.length === 1) { while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined; while (++i < n) if ((b = array[i]) != null) { if (a > b) a = b; if (c < b) c = b; } } else { while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined; while (++i < n) if ((b = f.call(array, array[i], i)) != null) { if (a > b) a = b; if (c < b) c = b; } } return [ a, c ]; }; d3.sum = function(array, f) { var s = 0, n = array.length, a, i = -1; if (arguments.length === 1) { while (++i < n) if (!isNaN(a = +array[i])) s += a; } else { while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a; } return s; }; function d3_number(x) { return x != null && !isNaN(x); } d3.mean = function(array, f) { var n = array.length, a, m = 0, i = -1, j = 0; if (arguments.length === 1) { while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j; } else { while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j; } return j ? m : undefined; }; d3.quantile = function(values, p) { var H = (values.length - 1) * p + 1, h = Math.floor(H), v = +values[h - 1], e = H - h; return e ? v + e * (values[h] - v) : v; }; d3.median = function(array, f) { if (arguments.length > 1) array = array.map(f); array = array.filter(d3_number); return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined; }; d3.bisector = function(f) { return { left: function(a, x, lo, hi) { if (arguments.length < 3) lo = 0; if (arguments.length < 4) hi = a.length; while (lo < hi) { var mid = lo + hi >>> 1; if (f.call(a, a[mid], mid) < x) lo = mid + 1; else hi = mid; } return lo; }, right: function(a, x, lo, hi) { if (arguments.length < 3) lo = 0; if (arguments.length < 4) hi = a.length; while (lo < hi) { var mid = lo + hi >>> 1; if (x < f.call(a, a[mid], mid)) hi = mid; else lo = mid + 1; } return lo; } }; }; var d3_bisector = d3.bisector(function(d) { return d; }); d3.bisectLeft = d3_bisector.left; d3.bisect = d3.bisectRight = d3_bisector.right; d3.shuffle = function(array) { var m = array.length, t, i; while (m) { i = Math.random() * m-- | 0; t = array[m], array[m] = array[i], array[i] = t; } return array; }; d3.permute = function(array, indexes) { var permutes = [], i = -1, n = indexes.length; while (++i < n) permutes[i] = array[indexes[i]]; return permutes; }; d3.zip = function() { if (!(n = arguments.length)) return []; for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m; ) { for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n; ) { zip[j] = arguments[j][i]; } } return zips; }; function d3_zipLength(d) { return d.length; } d3.transpose = function(matrix) { return d3.zip.apply(d3, matrix); }; d3.keys = function(map) { var keys = []; for (var key in map) keys.push(key); return keys; }; d3.values = function(map) { var values = []; for (var key in map) values.push(map[key]); return values; }; d3.entries = function(map) { var entries = []; for (var key in map) entries.push({ key: key, value: map[key] }); return entries; }; d3.merge = function(arrays) { return Array.prototype.concat.apply([], arrays); }; d3.range = function(start, stop, step) { if (arguments.length < 3) { step = 1; if (arguments.length < 2) { stop = start; start = 0; } } if ((stop - start) / step === Infinity) throw new Error("infinite range"); var range = [], k = d3_range_integerScale(Math.abs(step)), i = -1, j; start *= k, stop *= k, step *= k; if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k); else while ((j = start + step * ++i) < stop) range.push(j / k); return range; }; function d3_range_integerScale(x) { var k = 1; while (x * k % 1) k *= 10; return k; } function d3_class(ctor, properties) { try { for (var key in properties) { Object.defineProperty(ctor.prototype, key, { value: properties[key], enumerable: false }); } } catch (e) { ctor.prototype = properties; } } d3.map = function(object) { var map = new d3_Map(); for (var key in object) map.set(key, object[key]); return map; }; function d3_Map() {} d3_class(d3_Map, { has: function(key) { return d3_map_prefix + key in this; }, get: function(key) { return this[d3_map_prefix + key]; }, set: function(key, value) { return this[d3_map_prefix + key] = value; }, remove: function(key) { key = d3_map_prefix + key; return key in this && delete this[key]; }, keys: function() { var keys = []; this.forEach(function(key) { keys.push(key); }); return keys; }, values: function() { var values = []; this.forEach(function(key, value) { values.push(value); }); return values; }, entries: function() { var entries = []; this.forEach(function(key, value) { entries.push({ key: key, value: value }); }); return entries; }, forEach: function(f) { for (var key in this) { if (key.charCodeAt(0) === d3_map_prefixCode) { f.call(this, key.substring(1), this[key]); } } } }); var d3_map_prefix = "\0", d3_map_prefixCode = d3_map_prefix.charCodeAt(0); d3.nest = function() { var nest = {}, keys = [], sortKeys = [], sortValues, rollup; function map(mapType, array, depth) { if (depth >= keys.length) return rollup ? rollup.call(nest, array) : sortValues ? array.sort(sortValues) : array; var i = -1, n = array.length, key = keys[depth++], keyValue, object, setter, valuesByKey = new d3_Map(), values; while (++i < n) { if (values = valuesByKey.get(keyValue = key(object = array[i]))) { values.push(object); } else { valuesByKey.set(keyValue, [ object ]); } } if (mapType) { object = mapType(); setter = function(keyValue, values) { object.set(keyValue, map(mapType, values, depth)); }; } else { object = {}; setter = function(keyValue, values) { object[keyValue] = map(mapType, values, depth); }; } valuesByKey.forEach(setter); return object; } function entries(map, depth) { if (depth >= keys.length) return map; var array = [], sortKey = sortKeys[depth++]; map.forEach(function(key, keyMap) { array.push({ key: key, values: entries(keyMap, depth) }); }); return sortKey ? array.sort(function(a, b) { return sortKey(a.key, b.key); }) : array; } nest.map = function(array, mapType) { return map(mapType, array, 0); }; nest.entries = function(array) { return entries(map(d3.map, array, 0), 0); }; nest.key = function(d) { keys.push(d); return nest; }; nest.sortKeys = function(order) { sortKeys[keys.length - 1] = order; return nest; }; nest.sortValues = function(order) { sortValues = order; return nest; }; nest.rollup = function(f) { rollup = f; return nest; }; return nest; }; d3.set = function(array) { var set = new d3_Set(); if (array) for (var i = 0; i < array.length; i++) set.add(array[i]); return set; }; function d3_Set() {} d3_class(d3_Set, { has: function(value) { return d3_map_prefix + value in this; }, add: function(value) { this[d3_map_prefix + value] = true; return value; }, remove: function(value) { value = d3_map_prefix + value; return value in this && delete this[value]; }, values: function() { var values = []; this.forEach(function(value) { values.push(value); }); return values; }, forEach: function(f) { for (var value in this) { if (value.charCodeAt(0) === d3_map_prefixCode) { f.call(this, value.substring(1)); } } } }); d3.behavior = {}; d3.rebind = function(target, source) { var i = 1, n = arguments.length, method; while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]); return target; }; function d3_rebind(target, source, method) { return function() { var value = method.apply(source, arguments); return value === source ? target : value; }; } d3.dispatch = function() { var dispatch = new d3_dispatch(), i = -1, n = arguments.length; while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch); return dispatch; }; function d3_dispatch() {} d3_dispatch.prototype.on = function(type, listener) { var i = type.indexOf("."), name = ""; if (i >= 0) { name = type.substring(i + 1); type = type.substring(0, i); } if (type) return arguments.length < 2 ? this[type].on(name) : this[type].on(name, listener); if (arguments.length === 2) { if (listener == null) for (type in this) { if (this.hasOwnProperty(type)) this[type].on(name, null); } return this; } }; function d3_dispatch_event(dispatch) { var listeners = [], listenerByName = new d3_Map(); function event() { var z = listeners, i = -1, n = z.length, l; while (++i < n) if (l = z[i].on) l.apply(this, arguments); return dispatch; } event.on = function(name, listener) { var l = listenerByName.get(name), i; if (arguments.length < 2) return l && l.on; if (l) { l.on = null; listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1)); listenerByName.remove(name); } if (listener) listeners.push(listenerByName.set(name, { on: listener })); return dispatch; }; return event; } d3.event = null; function d3_eventCancel() { d3.event.stopPropagation(); d3.event.preventDefault(); } function d3_eventSource() { var e = d3.event, s; while (s = e.sourceEvent) e = s; return e; } function d3_eventSuppress(target, type) { function off() { target.on(type, null); } target.on(type, function() { d3_eventCancel(); off(); }, true); setTimeout(off, 0); } function d3_eventDispatch(target) { var dispatch = new d3_dispatch(), i = 0, n = arguments.length; while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch); dispatch.of = function(thiz, argumentz) { return function(e1) { try { var e0 = e1.sourceEvent = d3.event; e1.target = target; d3.event = e1; dispatch[e1.type].apply(thiz, argumentz); } finally { d3.event = e0; } }; }; return dispatch; } d3.mouse = function(container) { return d3_mousePoint(container, d3_eventSource()); }; var d3_mouse_bug44083 = /WebKit/.test(d3_window.navigator.userAgent) ? -1 : 0; function d3_mousePoint(container, e) { var svg = container.ownerSVGElement || container; if (svg.createSVGPoint) { var point = svg.createSVGPoint(); if (d3_mouse_bug44083 < 0 && (d3_window.scrollX || d3_window.scrollY)) { svg = d3.select(d3_document.body).append("svg").style("position", "absolute").style("top", 0).style("left", 0); var ctm = svg[0][0].getScreenCTM(); d3_mouse_bug44083 = !(ctm.f || ctm.e); svg.remove(); } if (d3_mouse_bug44083) { point.x = e.pageX; point.y = e.pageY; } else { point.x = e.clientX; point.y = e.clientY; } point = point.matrixTransform(container.getScreenCTM().inverse()); return [ point.x, point.y ]; } var rect = container.getBoundingClientRect(); return [ e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop ]; } var d3_array = d3_arraySlice; function d3_arrayCopy(pseudoarray) { var i = -1, n = pseudoarray.length, array = []; while (++i < n) array.push(pseudoarray[i]); return array; } function d3_arraySlice(pseudoarray) { return Array.prototype.slice.call(pseudoarray); } try { d3_array(d3_document.documentElement.childNodes)[0].nodeType; } catch (e) { d3_array = d3_arrayCopy; } var d3_arraySubclass = [].__proto__ ? function(array, prototype) { array.__proto__ = prototype; } : function(array, prototype) { for (var property in prototype) array[property] = prototype[property]; }; d3.touches = function(container, touches) { if (arguments.length < 2) touches = d3_eventSource().touches; return touches ? d3_array(touches).map(function(touch) { var point = d3_mousePoint(container, touch); point.identifier = touch.identifier; return point; }) : []; }; d3.behavior.drag = function() { var event = d3_eventDispatch(drag, "drag", "dragstart", "dragend"), origin = null; function drag() { this.on("mousedown.drag", mousedown).on("touchstart.drag", mousedown); } function mousedown() { var target = this, event_ = event.of(target, arguments), eventTarget = d3.event.target, touchId = d3.event.touches ? d3.event.changedTouches[0].identifier : null, offset, origin_ = point(), moved = 0; var w = d3.select(d3_window).on(touchId != null ? "touchmove.drag-" + touchId : "mousemove.drag", dragmove).on(touchId != null ? "touchend.drag-" + touchId : "mouseup.drag", dragend, true); if (origin) { offset = origin.apply(target, arguments); offset = [ offset.x - origin_[0], offset.y - origin_[1] ]; } else { offset = [ 0, 0 ]; } if (touchId == null) d3_eventCancel(); event_({ type: "dragstart" }); function point() { var p = target.parentNode; return touchId != null ? d3.touches(p).filter(function(p) { return p.identifier === touchId; })[0] : d3.mouse(p); } function dragmove() { if (!target.parentNode) return dragend(); var p = point(), dx = p[0] - origin_[0], dy = p[1] - origin_[1]; moved |= dx | dy; origin_ = p; d3_eventCancel(); event_({ type: "drag", x: p[0] + offset[0], y: p[1] + offset[1], dx: dx, dy: dy }); } function dragend() { event_({ type: "dragend" }); if (moved) { d3_eventCancel(); if (d3.event.target === eventTarget) d3_eventSuppress(w, "click"); } w.on(touchId != null ? "touchmove.drag-" + touchId : "mousemove.drag", null).on(touchId != null ? "touchend.drag-" + touchId : "mouseup.drag", null); } } drag.origin = function(x) { if (!arguments.length) return origin; origin = x; return drag; }; return d3.rebind(drag, event, "on"); }; function d3_selection(groups) { d3_arraySubclass(groups, d3_selectionPrototype); return groups; } var d3_select = function(s, n) { return n.querySelector(s); }, d3_selectAll = function(s, n) { return n.querySelectorAll(s); }, d3_selectRoot = d3_document.documentElement, d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector, d3_selectMatches = function(n, s) { return d3_selectMatcher.call(n, s); }; if (typeof Sizzle === "function") { d3_select = function(s, n) { return Sizzle(s, n)[0] || null; }; d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); }; d3_selectMatches = Sizzle.matchesSelector; } var d3_selectionPrototype = []; d3.selection = function() { return d3_selectionRoot; }; d3.selection.prototype = d3_selectionPrototype; d3_selectionPrototype.select = function(selector) { var subgroups = [], subgroup, subnode, group, node; if (typeof selector !== "function") selector = d3_selection_selector(selector); for (var j = -1, m = this.length; ++j < m; ) { subgroups.push(subgroup = []); subgroup.parentNode = (group = this[j]).parentNode; for (var i = -1, n = group.length; ++i < n; ) { if (node = group[i]) { subgroup.push(subnode = selector.call(node, node.__data__, i)); if (subnode && "__data__" in node) subnode.__data__ = node.__data__; } else { subgroup.push(null); } } } return d3_selection(subgroups); }; function d3_selection_selector(selector) { return function() { return d3_select(selector, this); }; } d3_selectionPrototype.selectAll = function(selector) { var subgroups = [], subgroup, node; if (typeof selector !== "function") selector = d3_selection_selectorAll(selector); for (var j = -1, m = this.length; ++j < m; ) { for (var group = this[j], i = -1, n = group.length; ++i < n; ) { if (node = group[i]) { subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i))); subgroup.parentNode = node; } } } return d3_selection(subgroups); }; function d3_selection_selectorAll(selector) { return function() { return d3_selectAll(selector, this); }; } var d3_nsPrefix = { svg: "http://www.w3.org/2000/svg", xhtml: "http://www.w3.org/1999/xhtml", xlink: "http://www.w3.org/1999/xlink", xml: "http://www.w3.org/XML/1998/namespace", xmlns: "http://www.w3.org/2000/xmlns/" }; d3.ns = { prefix: d3_nsPrefix, qualify: function(name) { var i = name.indexOf(":"), prefix = name; if (i >= 0) { prefix = name.substring(0, i); name = name.substring(i + 1); } return d3_nsPrefix.hasOwnProperty(prefix) ? { space: d3_nsPrefix[prefix], local: name } : name; } }; d3_selectionPrototype.attr = function(name, value) { if (arguments.length < 2) { if (typeof name === "string") { var node = this.node(); name = d3.ns.qualify(name); return name.local ? node.getAttributeNS(name.space, name.local) : node.getAttribute(name); } for (value in name) this.each(d3_selection_attr(value, name[value])); return this; } return this.each(d3_selection_attr(name, value)); }; function d3_selection_attr(name, value) { name = d3.ns.qualify(name); function attrNull() { this.removeAttribute(name); } function attrNullNS() { this.removeAttributeNS(name.space, name.local); } function attrConstant() { this.setAttribute(name, value); } function attrConstantNS() { this.setAttributeNS(name.space, name.local, value); } function attrFunction() { var x = value.apply(this, arguments); if (x == null) this.removeAttribute(name); else this.setAttribute(name, x); } function attrFunctionNS() { var x = value.apply(this, arguments); if (x == null) this.removeAttributeNS(name.space, name.local); else this.setAttributeNS(name.space, name.local, x); } return value == null ? name.local ? attrNullNS : attrNull : typeof value === "function" ? name.local ? attrFunctionNS : attrFunction : name.local ? attrConstantNS : attrConstant; } function d3_collapse(s) { return s.trim().replace(/\s+/g, " "); } d3.requote = function(s) { return s.replace(d3_requote_re, "\\$&"); }; var d3_requote_re = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g; d3_selectionPrototype.classed = function(name, value) { if (arguments.length < 2) { if (typeof name === "string") { var node = this.node(), n = (name = name.trim().split(/^|\s+/g)).length, i = -1; if (value = node.classList) { while (++i < n) if (!value.contains(name[i])) return false; } else { value = node.getAttribute("class"); while (++i < n) if (!d3_selection_classedRe(name[i]).test(value)) return false; } return true; } for (value in name) this.each(d3_selection_classed(value, name[value])); return this; } return this.each(d3_selection_classed(name, value)); }; function d3_selection_classedRe(name) { return new RegExp("(?:^|\\s+)" + d3.requote(name) + "(?:\\s+|$)", "g"); } function d3_selection_classed(name, value) { name = name.trim().split(/\s+/).map(d3_selection_classedName); var n = name.length; function classedConstant() { var i = -1; while (++i < n) name[i](this, value); } function classedFunction() { var i = -1, x = value.apply(this, arguments); while (++i < n) name[i](this, x); } return typeof value === "function" ? classedFunction : classedConstant; } function d3_selection_classedName(name) { var re = d3_selection_classedRe(name); return function(node, value) { if (c = node.classList) return value ? c.add(name) : c.remove(name); var c = node.getAttribute("class") || ""; if (value) { re.lastIndex = 0; if (!re.test(c)) node.setAttribute("class", d3_collapse(c + " " + name)); } else { node.setAttribute("class", d3_collapse(c.replace(re, " "))); } }; } d3_selectionPrototype.style = function(name, value, priority) { var n = arguments.length; if (n < 3) { if (typeof name !== "string") { if (n < 2) value = ""; for (priority in name) this.each(d3_selection_style(priority, name[priority], value)); return this; } if (n < 2) return d3_window.getComputedStyle(this.node(), null).getPropertyValue(name); priority = ""; } return this.each(d3_selection_style(name, value, priority)); }; function d3_selection_style(name, value, priority) { function styleNull() { this.style.removeProperty(name); } function styleConstant() { this.style.setProperty(name, value, priority); } function styleFunction() { var x = value.apply(this, arguments); if (x == null) this.style.removeProperty(name); else this.style.setProperty(name, x, priority); } return value == null ? styleNull : typeof value === "function" ? styleFunction : styleConstant; } d3_selectionPrototype.property = function(name, value) { if (arguments.length < 2) { if (typeof name === "string") return this.node()[name]; for (value in name) this.each(d3_selection_property(value, name[value])); return this; } return this.each(d3_selection_property(name, value)); }; function d3_selection_property(name, value) { function propertyNull() { delete this[name]; } function propertyConstant() { this[name] = value; } function propertyFunction() { var x = value.apply(this, arguments); if (x == null) delete this[name]; else this[name] = x; } return value == null ? propertyNull : typeof value === "function" ? propertyFunction : propertyConstant; } d3_selectionPrototype.text = function(value) { return arguments.length ? this.each(typeof value === "function" ? function() { var v = value.apply(this, arguments); this.textContent = v == null ? "" : v; } : value == null ? function() { this.textContent = ""; } : function() { this.textContent = value; }) : this.node().textContent; }; d3_selectionPrototype.html = function(value) { return arguments.length ? this.each(typeof value === "function" ? function() { var v = value.apply(this, arguments); this.innerHTML = v == null ? "" : v; } : value == null ? function() { this.innerHTML = ""; } : function() { this.innerHTML = value; }) : this.node().innerHTML; }; d3_selectionPrototype.append = function(name) { name = d3.ns.qualify(name); function append() { return this.appendChild(d3_document.createElementNS(this.namespaceURI, name)); } function appendNS() { return this.appendChild(d3_document.createElementNS(name.space, name.local)); } return this.select(name.local ? appendNS : append); }; d3_selectionPrototype.insert = function(name, before) { name = d3.ns.qualify(name); if (typeof before !== "function") before = d3_selection_selector(before); function insert(d, i) { return this.insertBefore(d3_document.createElementNS(this.namespaceURI, name), before.call(this, d, i)); } function insertNS(d, i) { return this.insertBefore(d3_document.createElementNS(name.space, name.local), before.call(this, d, i)); } return this.select(name.local ? insertNS : insert); }; d3_selectionPrototype.remove = function() { return this.each(function() { var parent = this.parentNode; if (parent) parent.removeChild(this); }); }; d3_selectionPrototype.data = function(value, key) { var i = -1, n = this.length, group, node; if (!arguments.length) { value = new Array(n = (group = this[0]).length); while (++i < n) { if (node = group[i]) { value[i] = node.__data__; } } return value; } function bind(group, groupData) { var i, n = group.length, m = groupData.length, n0 = Math.min(n, m), updateNodes = new Array(m), enterNodes = new Array(m), exitNodes = new Array(n), node, nodeData; if (key) { var nodeByKeyValue = new d3_Map(), dataByKeyValue = new d3_Map(), keyValues = [], keyValue; for (i = -1; ++i < n; ) { keyValue = key.call(node = group[i], node.__data__, i); if (nodeByKeyValue.has(keyValue)) { exitNodes[i] = node; } else { nodeByKeyValue.set(keyValue, node); } keyValues.push(keyValue); } for (i = -1; ++i < m; ) { keyValue = key.call(groupData, nodeData = groupData[i], i); if (node = nodeByKeyValue.get(keyValue)) { updateNodes[i] = node; node.__data__ = nodeData; } else if (!dataByKeyValue.has(keyValue)) { enterNodes[i] = d3_selection_dataNode(nodeData); } dataByKeyValue.set(keyValue, nodeData); nodeByKeyValue.remove(keyValue); } for (i = -1; ++i < n; ) { if (nodeByKeyValue.has(keyValues[i])) { exitNodes[i] = group[i]; } } } else { for (i = -1; ++i < n0; ) { node = group[i]; nodeData = groupData[i]; if (node) { node.__data__ = nodeData; updateNodes[i] = node; } else { enterNodes[i] = d3_selection_dataNode(nodeData); } } for (;i < m; ++i) { enterNodes[i] = d3_selection_dataNode(groupData[i]); } for (;i < n; ++i) { exitNodes[i] = group[i]; } } enterNodes.update = updateNodes; enterNodes.parentNode = updateNodes.parentNode = exitNodes.parentNode = group.parentNode; enter.push(enterNodes); update.push(updateNodes); exit.push(exitNodes); } var enter = d3_selection_enter([]), update = d3_selection([]), exit = d3_selection([]); if (typeof value === "function") { while (++i < n) { bind(group = this[i], value.call(group, group.parentNode.__data__, i)); } } else { while (++i < n) { bind(group = this[i], value); } } update.enter = function() { return enter; }; update.exit = function() { return exit; }; return update; }; function d3_selection_dataNode(data) { return { __data__: data }; } d3_selectionPrototype.datum = function(value) { return arguments.length ? this.property("__data__", value) : this.property("__data__"); }; d3_selectionPrototype.filter = function(filter) { var subgroups = [], subgroup, group, node; if (typeof filter !== "function") filter = d3_selection_filter(filter); for (var j = 0, m = this.length; j < m; j++) { subgroups.push(subgroup = []); subgroup.parentNode = (group = this[j]).parentNode; for (var i = 0, n = group.length; i < n; i++) { if ((node = group[i]) && filter.call(node, node.__data__, i)) { subgroup.push(node); } } } return d3_selection(subgroups); }; function d3_selection_filter(selector) { return function() { return d3_selectMatches(this, selector); }; } d3_selectionPrototype.order = function() { for (var j = -1, m = this.length; ++j < m; ) { for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0; ) { if (node = group[i]) { if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next); next = node; } } } return this; }; d3_selectionPrototype.sort = function(comparator) { comparator = d3_selection_sortComparator.apply(this, arguments); for (var j = -1, m = this.length; ++j < m; ) this[j].sort(comparator); return this.order(); }; function d3_selection_sortComparator(comparator) { if (!arguments.length) comparator = d3.ascending; return function(a, b) { return !a - !b || comparator(a.__data__, b.__data__); }; } function d3_noop() {} d3_selectionPrototype.on = function(type, listener, capture) { var n = arguments.length; if (n < 3) { if (typeof type !== "string") { if (n < 2) listener = false; for (capture in type) this.each(d3_selection_on(capture, type[capture], listener)); return this; } if (n < 2) return (n = this.node()["__on" + type]) && n._; capture = false; } return this.each(d3_selection_on(type, listener, capture)); }; function d3_selection_on(type, listener, capture) { var name = "__on" + type, i = type.indexOf("."), wrap = d3_selection_onListener; if (i > 0) type = type.substring(0, i); var filter = d3_selection_onFilters.get(type); if (filter) type = filter, wrap = d3_selection_onFilter; function onRemove() { var l = this[name]; if (l) { this.removeEventListener(type, l, l.$); delete this[name]; } } function onAdd() { var l = wrap(listener, d3_array(arguments)); onRemove.call(this); this.addEventListener(type, this[name] = l, l.$ = capture); l._ = listener; } function removeAll() { var re = new RegExp("^__on([^.]+)" + d3.requote(type) + "$"), match; for (var name in this) { if (match = name.match(re)) { var l = this[name]; this.removeEventListener(match[1], l, l.$); delete this[name]; } } } return i ? listener ? onAdd : onRemove : listener ? d3_noop : removeAll; } var d3_selection_onFilters = d3.map({ mouseenter: "mouseover", mouseleave: "mouseout" }); d3_selection_onFilters.forEach(function(k) { if ("on" + k in d3_document) d3_selection_onFilters.remove(k); }); function d3_selection_onListener(listener, argumentz) { return function(e) { var o = d3.event; d3.event = e; argumentz[0] = this.__data__; try { listener.apply(this, argumentz); } finally { d3.event = o; } }; } function d3_selection_onFilter(listener, argumentz) { var l = d3_selection_onListener(listener, argumentz); return function(e) { var target = this, related = e.relatedTarget; if (!related || related !== target && !(related.compareDocumentPosition(target) & 8)) { l.call(target, e); } }; } d3_selectionPrototype.each = function(callback) { return d3_selection_each(this, function(node, i, j) { callback.call(node, node.__data__, i, j); }); }; function d3_selection_each(groups, callback) { for (var j = 0, m = groups.length; j < m; j++) { for (var group = groups[j], i = 0, n = group.length, node; i < n; i++) { if (node = group[i]) callback(node, i, j); } } return groups; } d3_selectionPrototype.call = function(callback) { var args = d3_array(arguments); callback.apply(args[0] = this, args); return this; }; d3_selectionPrototype.empty = function() { return !this.node(); }; d3_selectionPrototype.node = function() { for (var j = 0, m = this.length; j < m; j++) { for (var group = this[j], i = 0, n = group.length; i < n; i++) { var node = group[i]; if (node) return node; } } return null; }; function d3_selection_enter(selection) { d3_arraySubclass(selection, d3_selection_enterPrototype); return selection; } var d3_selection_enterPrototype = []; d3.selection.enter = d3_selection_enter; d3.selection.enter.prototype = d3_selection_enterPrototype; d3_selection_enterPrototype.append = d3_selectionPrototype.append; d3_selection_enterPrototype.insert = d3_selectionPrototype.insert; d3_selection_enterPrototype.empty = d3_selectionPrototype.empty; d3_selection_enterPrototype.node = d3_selectionPrototype.node; d3_selection_enterPrototype.select = function(selector) { var subgroups = [], subgroup, subnode, upgroup, group, node; for (var j = -1, m = this.length; ++j < m; ) { upgroup = (group = this[j]).update; subgroups.push(subgroup = []); subgroup.parentNode = group.parentNode; for (var i = -1, n = group.length; ++i < n; ) { if (node = group[i]) { subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i)); subnode.__data__ = node.__data__; } else { subgroup.push(null); } } } return d3_selection(subgroups); }; d3_selectionPrototype.transition = function() { var id = d3_transitionInheritId || ++d3_transitionId, subgroups = [], subgroup, node, transition = Object.create(d3_transitionInherit); transition.time = Date.now(); for (var j = -1, m = this.length; ++j < m; ) { subgroups.push(subgroup = []); for (var group = this[j], i = -1, n = group.length; ++i < n; ) { if (node = group[i]) d3_transitionNode(node, i, id, transition); subgroup.push(node); } } return d3_transition(subgroups, id); }; var d3_selectionRoot = d3_selection([ [ d3_document ] ]); d3_selectionRoot[0].parentNode = d3_selectRoot; d3.select = function(selector) { return typeof selector === "string" ? d3_selectionRoot.select(selector) : d3_selection([ [ selector ] ]); }; d3.selectAll = function(selector) { return typeof selector === "string" ? d3_selectionRoot.selectAll(selector) : d3_selection([ d3_array(selector) ]); }; d3.behavior.zoom = function() { var translate = [ 0, 0 ], translate0, scale = 1, scale0, scaleExtent = d3_behavior_zoomInfinity, event = d3_eventDispatch(zoom, "zoom"), x0, x1, y0, y1, touchtime; function zoom() { this.on("mousedown.zoom", mousedown).on("mousemove.zoom", mousemove).on(d3_behavior_zoomWheel + ".zoom", mousewheel).on("dblclick.zoom", dblclick).on("touchstart.zoom", touchstart).on("touchmove.zoom", touchmove).on("touchend.zoom", touchstart); } zoom.translate = function(x) { if (!arguments.length) return translate; translate = x.map(Number); rescale(); return zoom; }; zoom.scale = function(x) { if (!arguments.length) return scale; scale = +x; rescale(); return zoom; }; zoom.scaleExtent = function(x) { if (!arguments.length) return scaleExtent; scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number); return zoom; }; zoom.x = function(z) { if (!arguments.length) return x1; x1 = z; x0 = z.copy(); translate = [ 0, 0 ]; scale = 1; return zoom; }; zoom.y = function(z) { if (!arguments.length) return y1; y1 = z; y0 = z.copy(); translate = [ 0, 0 ]; scale = 1; return zoom; }; function location(p) { return [ (p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale ]; } function point(l) { return [ l[0] * scale + translate[0], l[1] * scale + translate[1] ]; } function scaleTo(s) { scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s)); } function translateTo(p, l) { l = point(l); translate[0] += p[0] - l[0]; translate[1] += p[1] - l[1]; } function rescale() { if (x1) x1.domain(x0.range().map(function(x) { return (x - translate[0]) / scale; }).map(x0.invert)); if (y1) y1.domain(y0.range().map(function(y) { return (y - translate[1]) / scale; }).map(y0.invert)); } function dispatch(event) { rescale(); d3.event.preventDefault(); event({ type: "zoom", scale: scale, translate: translate }); } function mousedown() { var target = this, event_ = event.of(target, arguments), eventTarget = d3.event.target, moved = 0, w = d3.select(d3_window).on("mousemove.zoom", mousemove).on("mouseup.zoom", mouseup), l = location(d3.mouse(target)); d3_window.focus(); d3_eventCancel(); function mousemove() { moved = 1; translateTo(d3.mouse(target), l); dispatch(event_); } function mouseup() { if (moved) d3_eventCancel(); w.on("mousemove.zoom", null).on("mouseup.zoom", null); if (moved && d3.event.target === eventTarget) d3_eventSuppress(w, "click.zoom"); } } function mousewheel() { if (!translate0) translate0 = location(d3.mouse(this)); scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale); translateTo(d3.mouse(this), translate0); dispatch(event.of(this, arguments)); } function mousemove() { translate0 = null; } function dblclick() { var p = d3.mouse(this), l = location(p), k = Math.log(scale) / Math.LN2; scaleTo(Math.pow(2, d3.event.shiftKey ? Math.ceil(k) - 1 : Math.floor(k) + 1)); translateTo(p, l); dispatch(event.of(this, arguments)); } function touchstart() { var touches = d3.touches(this), now = Date.now(); scale0 = scale; translate0 = {}; touches.forEach(function(t) { translate0[t.identifier] = location(t); }); d3_eventCancel(); if (touches.length === 1) { if (now - touchtime < 500) { var p = touches[0], l = location(touches[0]); scaleTo(scale * 2); translateTo(p, l); dispatch(event.of(this, arguments)); } touchtime = now; } } function touchmove() { var touches = d3.touches(this), p0 = touches[0], l0 = translate0[p0.identifier]; if (p1 = touches[1]) { var p1, l1 = translate0[p1.identifier]; p0 = [ (p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2 ]; l0 = [ (l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2 ]; scaleTo(d3.event.scale * scale0); } translateTo(p0, l0); touchtime = null; dispatch(event.of(this, arguments)); } return d3.rebind(zoom, event, "on"); }; var d3_behavior_zoomInfinity = [ 0, Infinity ]; var d3_behavior_zoomDelta, d3_behavior_zoomWheel = "onwheel" in d3_document ? (d3_behavior_zoomDelta = function() { return -d3.event.deltaY * (d3.event.deltaMode ? 120 : 1); }, "wheel") : "onmousewheel" in d3_document ? (d3_behavior_zoomDelta = function() { return d3.event.wheelDelta; }, "mousewheel") : (d3_behavior_zoomDelta = function() { return -d3.event.detail; }, "MozMousePixelScroll"); function d3_Color() {} d3_Color.prototype.toString = function() { return this.rgb() + ""; }; d3.hsl = function(h, s, l) { return arguments.length === 1 ? h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l) : d3_rgb_parse("" + h, d3_rgb_hsl, d3_hsl) : d3_hsl(+h, +s, +l); }; function d3_hsl(h, s, l) { return new d3_Hsl(h, s, l); } function d3_Hsl(h, s, l) { this.h = h; this.s = s; this.l = l; } var d3_hslPrototype = d3_Hsl.prototype = new d3_Color(); d3_hslPrototype.brighter = function(k) { k = Math.pow(.7, arguments.length ? k : 1); return d3_hsl(this.h, this.s, this.l / k); }; d3_hslPrototype.darker = function(k) { k = Math.pow(.7, arguments.length ? k : 1); return d3_hsl(this.h, this.s, k * this.l); }; d3_hslPrototype.rgb = function() { return d3_hsl_rgb(this.h, this.s, this.l); }; function d3_hsl_rgb(h, s, l) { var m1, m2; h = h % 360; if (h < 0) h += 360; s = s < 0 ? 0 : s > 1 ? 1 : s; l = l < 0 ? 0 : l > 1 ? 1 : l; m2 = l <= .5 ? l * (1 + s) : l + s - l * s; m1 = 2 * l - m2; function v(h) { if (h > 360) h -= 360; else if (h < 0) h += 360; if (h < 60) return m1 + (m2 - m1) * h / 60; if (h < 180) return m2; if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60; return m1; } function vv(h) { return Math.round(v(h) * 255); } return d3_rgb(vv(h + 120), vv(h), vv(h - 120)); } var π = Math.PI, ε = 1e-6, d3_radians = π / 180, d3_degrees = 180 / π; function d3_sgn(x) { return x > 0 ? 1 : x < 0 ? -1 : 0; } function d3_acos(x) { return Math.acos(Math.max(-1, Math.min(1, x))); } function d3_asin(x) { return x > 1 ? π / 2 : x < -1 ? -π / 2 : Math.asin(x); } function d3_sinh(x) { return (Math.exp(x) - Math.exp(-x)) / 2; } function d3_cosh(x) { return (Math.exp(x) + Math.exp(-x)) / 2; } function d3_haversin(x) { return (x = Math.sin(x / 2)) * x; } d3.hcl = function(h, c, l) { return arguments.length === 1 ? h instanceof d3_Hcl ? d3_hcl(h.h, h.c, h.l) : h instanceof d3_Lab ? d3_lab_hcl(h.l, h.a, h.b) : d3_lab_hcl((h = d3_rgb_lab((h = d3.rgb(h)).r, h.g, h.b)).l, h.a, h.b) : d3_hcl(+h, +c, +l); }; function d3_hcl(h, c, l) { return new d3_Hcl(h, c, l); } function d3_Hcl(h, c, l) { this.h = h; this.c = c; this.l = l; } var d3_hclPrototype = d3_Hcl.prototype = new d3_Color(); d3_hclPrototype.brighter = function(k) { return d3_hcl(this.h, this.c, Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1))); }; d3_hclPrototype.darker = function(k) { return d3_hcl(this.h, this.c, Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1))); }; d3_hclPrototype.rgb = function() { return d3_hcl_lab(this.h, this.c, this.l).rgb(); }; function d3_hcl_lab(h, c, l) { return d3_lab(l, Math.cos(h *= d3_radians) * c, Math.sin(h) * c); } d3.lab = function(l, a, b) { return arguments.length === 1 ? l instanceof d3_Lab ? d3_lab(l.l, l.a, l.b) : l instanceof d3_Hcl ? d3_hcl_lab(l.l, l.c, l.h) : d3_rgb_lab((l = d3.rgb(l)).r, l.g, l.b) : d3_lab(+l, +a, +b); }; function d3_lab(l, a, b) { return new d3_Lab(l, a, b); } function d3_Lab(l, a, b) { this.l = l; this.a = a; this.b = b; } var d3_lab_K = 18; var d3_lab_X = .95047, d3_lab_Y = 1, d3_lab_Z = 1.08883; var d3_labPrototype = d3_Lab.prototype = new d3_Color(); d3_labPrototype.brighter = function(k) { return d3_lab(Math.min(100, this.l + d3_lab_K * (arguments.length ? k : 1)), this.a, this.b); }; d3_labPrototype.darker = function(k) { return d3_lab(Math.max(0, this.l - d3_lab_K * (arguments.length ? k : 1)), this.a, this.b); }; d3_labPrototype.rgb = function() { return d3_lab_rgb(this.l, this.a, this.b); }; function d3_lab_rgb(l, a, b) { var y = (l + 16) / 116, x = y + a / 500, z = y - b / 200; x = d3_lab_xyz(x) * d3_lab_X; y = d3_lab_xyz(y) * d3_lab_Y; z = d3_lab_xyz(z) * d3_lab_Z; return d3_rgb(d3_xyz_rgb(3.2404542 * x - 1.5371385 * y - .4985314 * z), d3_xyz_rgb(-.969266 * x + 1.8760108 * y + .041556 * z), d3_xyz_rgb(.0556434 * x - .2040259 * y + 1.0572252 * z)); } function d3_lab_hcl(l, a, b) { return d3_hcl(Math.atan2(b, a) * d3_degrees, Math.sqrt(a * a + b * b), l); } function d3_lab_xyz(x) { return x > .206893034 ? x * x * x : (x - 4 / 29) / 7.787037; } function d3_xyz_lab(x) { return x > .008856 ? Math.pow(x, 1 / 3) : 7.787037 * x + 4 / 29; } function d3_xyz_rgb(r) { return Math.round(255 * (r <= .00304 ? 12.92 * r : 1.055 * Math.pow(r, 1 / 2.4) - .055)); } d3.rgb = function(r, g, b) { return arguments.length === 1 ? r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b) : d3_rgb_parse("" + r, d3_rgb, d3_hsl_rgb) : d3_rgb(~~r, ~~g, ~~b); }; function d3_rgb(r, g, b) { return new d3_Rgb(r, g, b); } function d3_Rgb(r, g, b) { this.r = r; this.g = g; this.b = b; } var d3_rgbPrototype = d3_Rgb.prototype = new d3_Color(); d3_rgbPrototype.brighter = function(k) { k = Math.pow(.7, arguments.length ? k : 1); var r = this.r, g = this.g, b = this.b, i = 30; if (!r && !g && !b) return d3_rgb(i, i, i); if (r && r < i) r = i; if (g && g < i) g = i; if (b && b < i) b = i; return d3_rgb(Math.min(255, Math.floor(r / k)), Math.min(255, Math.floor(g / k)), Math.min(255, Math.floor(b / k))); }; d3_rgbPrototype.darker = function(k) { k = Math.pow(.7, arguments.length ? k : 1); return d3_rgb(Math.floor(k * this.r), Math.floor(k * this.g), Math.floor(k * this.b)); }; d3_rgbPrototype.hsl = function() { return d3_rgb_hsl(this.r, this.g, this.b); }; d3_rgbPrototype.toString = function() { return "#" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b); }; function d3_rgb_hex(v) { return v < 16 ? "0" + Math.max(0, v).toString(16) : Math.min(255, v).toString(16); } function d3_rgb_parse(format, rgb, hsl) { var r = 0, g = 0, b = 0, m1, m2, name; m1 = /([a-z]+)\((.*)\)/i.exec(format); if (m1) { m2 = m1[2].split(","); switch (m1[1]) { case "hsl": { return hsl(parseFloat(m2[0]), parseFloat(m2[1]) / 100, parseFloat(m2[2]) / 100); } case "rgb": { return rgb(d3_rgb_parseNumber(m2[0]), d3_rgb_parseNumber(m2[1]), d3_rgb_parseNumber(m2[2])); } } } if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b); if (format != null && format.charAt(0) === "#") { if (format.length === 4) { r = format.charAt(1); r += r; g = format.charAt(2); g += g; b = format.charAt(3); b += b; } else if (format.length === 7) { r = format.substring(1, 3); g = format.substring(3, 5); b = format.substring(5, 7); } r = parseInt(r, 16); g = parseInt(g, 16); b = parseInt(b, 16); } return rgb(r, g, b); } function d3_rgb_hsl(r, g, b) { var min = Math.min(r /= 255, g /= 255, b /= 255), max = Math.max(r, g, b), d = max - min, h, s, l = (max + min) / 2; if (d) { s = l < .5 ? d / (max + min) : d / (2 - max - min); if (r == max) h = (g - b) / d + (g < b ? 6 : 0); else if (g == max) h = (b - r) / d + 2; else h = (r - g) / d + 4; h *= 60; } else { s = h = 0; } return d3_hsl(h, s, l); } function d3_rgb_lab(r, g, b) { r = d3_rgb_xyz(r); g = d3_rgb_xyz(g); b = d3_rgb_xyz(b); var x = d3_xyz_lab((.4124564 * r + .3575761 * g + .1804375 * b) / d3_lab_X), y = d3_xyz_lab((.2126729 * r + .7151522 * g + .072175 * b) / d3_lab_Y), z = d3_xyz_lab((.0193339 * r + .119192 * g + .9503041 * b) / d3_lab_Z); return d3_lab(116 * y - 16, 500 * (x - y), 200 * (y - z)); } function d3_rgb_xyz(r) { return (r /= 255) <= .04045 ? r / 12.92 : Math.pow((r + .055) / 1.055, 2.4); } function d3_rgb_parseNumber(c) { var f = parseFloat(c); return c.charAt(c.length - 1) === "%" ? Math.round(f * 2.55) : f; } var d3_rgb_names = d3.map({ aliceblue: "#f0f8ff", antiquewhite: "#faebd7", aqua: "#00ffff", aquamarine: "#7fffd4", azure: "#f0ffff", beige: "#f5f5dc", bisque: "#ffe4c4", black: "#000000", blanchedalmond: "#ffebcd", blue: "#0000ff", blueviolet: "#8a2be2", brown: "#a52a2a", burlywood: "#deb887", cadetblue: "#5f9ea0", chartreuse: "#7fff00", chocolate: "#d2691e", coral: "#ff7f50", cornflowerblue: "#6495ed", cornsilk: "#fff8dc", crimson: "#dc143c", cyan: "#00ffff", darkblue: "#00008b", darkcyan: "#008b8b", darkgoldenrod: "#b8860b", darkgray: "#a9a9a9", darkgreen: "#006400", darkgrey: "#a9a9a9", darkkhaki: "#bdb76b", darkmagenta: "#8b008b", darkolivegreen: "#556b2f", darkorange: "#ff8c00", darkorchid: "#9932cc", darkred: "#8b0000", darksalmon: "#e9967a", darkseagreen: "#8fbc8f", darkslateblue: "#483d8b", darkslategray: "#2f4f4f", darkslategrey: "#2f4f4f", darkturquoise: "#00ced1", darkviolet: "#9400d3", deeppink: "#ff1493", deepskyblue: "#00bfff", dimgray: "#696969", dimgrey: "#696969", dodgerblue: "#1e90ff", firebrick: "#b22222", floralwhite: "#fffaf0", forestgreen: "#228b22", fuchsia: "#ff00ff", gainsboro: "#dcdcdc", ghostwhite: "#f8f8ff", gold: "#ffd700", goldenrod: "#daa520", gray: "#808080", green: "#008000", greenyellow: "#adff2f", grey: "#808080", honeydew: "#f0fff0", hotpink: "#ff69b4", indianred: "#cd5c5c", indigo: "#4b0082", ivory: "#fffff0", khaki: "#f0e68c", lavender: "#e6e6fa", lavenderblush: "#fff0f5", lawngreen: "#7cfc00", lemonchiffon: "#fffacd", lightblue: "#add8e6", lightcoral: "#f08080", lightcyan: "#e0ffff", lightgoldenrodyellow: "#fafad2", lightgray: "#d3d3d3", lightgreen: "#90ee90", lightgrey: "#d3d3d3", lightpink: "#ffb6c1", lightsalmon: "#ffa07a", lightseagreen: "#20b2aa", lightskyblue: "#87cefa", lightslategray: "#778899", lightslategrey: "#778899", lightsteelblue: "#b0c4de", lightyellow: "#ffffe0", lime: "#00ff00", limegreen: "#32cd32", linen: "#faf0e6", magenta: "#ff00ff", maroon: "#800000", mediumaquamarine: "#66cdaa", mediumblue: "#0000cd", mediumorchid: "#ba55d3", mediumpurple: "#9370db", mediumseagreen: "#3cb371", mediumslateblue: "#7b68ee", mediumspringgreen: "#00fa9a", mediumturquoise: "#48d1cc", mediumvioletred: "#c71585", midnightblue: "#191970", mintcream: "#f5fffa", mistyrose: "#ffe4e1", moccasin: "#ffe4b5", navajowhite: "#ffdead", navy: "#000080", oldlace: "#fdf5e6", olive: "#808000", olivedrab: "#6b8e23", orange: "#ffa500", orangered: "#ff4500", orchid: "#da70d6", palegoldenrod: "#eee8aa", palegreen: "#98fb98", paleturquoise: "#afeeee", palevioletred: "#db7093", papayawhip: "#ffefd5", peachpuff: "#ffdab9", peru: "#cd853f", pink: "#ffc0cb", plum: "#dda0dd", powderblue: "#b0e0e6", purple: "#800080", red: "#ff0000", rosybrown: "#bc8f8f", royalblue: "#4169e1", saddlebrown: "#8b4513", salmon: "#fa8072", sandybrown: "#f4a460", seagreen: "#2e8b57", seashell: "#fff5ee", sienna: "#a0522d", silver: "#c0c0c0", skyblue: "#87ceeb", slateblue: "#6a5acd", slategray: "#708090", slategrey: "#708090", snow: "#fffafa", springgreen: "#00ff7f", steelblue: "#4682b4", tan: "#d2b48c", teal: "#008080", thistle: "#d8bfd8", tomato: "#ff6347", turquoise: "#40e0d0", violet: "#ee82ee", wheat: "#f5deb3", white: "#ffffff", whitesmoke: "#f5f5f5", yellow: "#ffff00", yellowgreen: "#9acd32" }); d3_rgb_names.forEach(function(key, value) { d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb)); }); function d3_functor(v) { return typeof v === "function" ? v : function() { return v; }; } d3.functor = d3_functor; function d3_identity(d) { return d; } d3.xhr = function(url, mimeType, callback) { var xhr = {}, dispatch = d3.dispatch("progress", "load", "error"), headers = {}, response = d3_identity, request = new (d3_window.XDomainRequest && /^(http(s)?:)?\/\//.test(url) ? XDomainRequest : XMLHttpRequest)(); "onload" in request ? request.onload = request.onerror = respond : request.onreadystatechange = function() { request.readyState > 3 && respond(); }; function respond() { var s = request.status; !s && request.responseText || s >= 200 && s < 300 || s === 304 ? dispatch.load.call(xhr, response.call(xhr, request)) : dispatch.error.call(xhr, request); } request.onprogress = function(event) { var o = d3.event; d3.event = event; try { dispatch.progress.call(xhr, request); } finally { d3.event = o; } }; xhr.header = function(name, value) { name = (name + "").toLowerCase(); if (arguments.length < 2) return headers[name]; if (value == null) delete headers[name]; else headers[name] = value + ""; return xhr; }; xhr.mimeType = function(value) { if (!arguments.length) return mimeType; mimeType = value == null ? null : value + ""; return xhr; }; xhr.response = function(value) { response = value; return xhr; }; [ "get", "post" ].forEach(function(method) { xhr[method] = function() { return xhr.send.apply(xhr, [ method ].concat(d3_array(arguments))); }; }); xhr.send = function(method, data, callback) { if (arguments.length === 2 && typeof data === "function") callback = data, data = null; request.open(method, url, true); if (mimeType != null && !("accept" in headers)) headers["accept"] = mimeType + ",*/*"; if (request.setRequestHeader) for (var name in headers) request.setRequestHeader(name, headers[name]); if (mimeType != null && request.overrideMimeType) request.overrideMimeType(mimeType); if (callback != null) xhr.on("error", callback).on("load", function(request) { callback(null, request); }); request.send(data == null ? null : data); return xhr; }; xhr.abort = function() { request.abort(); return xhr; }; d3.rebind(xhr, dispatch, "on"); if (arguments.length === 2 && typeof mimeType === "function") callback = mimeType, mimeType = null; return callback == null ? xhr : xhr.get(d3_xhr_fixCallback(callback)); }; function d3_xhr_fixCallback(callback) { return callback.length === 1 ? function(error, request) { callback(error == null ? request : null); } : callback; } function d3_dsv(delimiter, mimeType) { var reFormat = new RegExp('["' + delimiter + "\n]"), delimiterCode = delimiter.charCodeAt(0); function dsv(url, row, callback) { if (arguments.length < 3) callback = row, row = null; var xhr = d3.xhr(url, mimeType, callback); xhr.row = function(_) { return arguments.length ? xhr.response((row = _) == null ? response : typedResponse(_)) : row; }; return xhr.row(row); } function response(request) { return dsv.parse(request.responseText); } function typedResponse(f) { return function(request) { return dsv.parse(request.responseText, f); }; } dsv.parse = function(text, f) { var o; return dsv.parseRows(text, function(row, i) { if (o) return o(row, i - 1); var a = new Function("d", "return {" + row.map(function(name, i) { return JSON.stringify(name) + ": d[" + i + "]"; }).join(",") + "}"); o = f ? function(row, i) { return f(a(row), i); } : a; }); }; dsv.parseRows = function(text, f) { var EOL = {}, EOF = {}, rows = [], N = text.length, I = 0, n = 0, t, eol; function token() { if (I >= N) return EOF; if (eol) return eol = false, EOL; var j = I; if (text.charCodeAt(j) === 34) { var i = j; while (i++ < N) { if (text.charCodeAt(i) === 34) { if (text.charCodeAt(i + 1) !== 34) break; ++i; } } I = i + 2; var c = text.charCodeAt(i + 1); if (c === 13) { eol = true; if (text.charCodeAt(i + 2) === 10) ++I; } else if (c === 10) { eol = true; } return text.substring(j + 1, i).replace(/""/g, '"'); } while (I < N) { var c = text.charCodeAt(I++), k = 1; if (c === 10) eol = true; else if (c === 13) { eol = true; if (text.charCodeAt(I) === 10) ++I, ++k; } else if (c !== delimiterCode) continue; return text.substring(j, I - k); } return text.substring(j); } while ((t = token()) !== EOF) { var a = []; while (t !== EOL && t !== EOF) { a.push(t); t = token(); } if (f && !(a = f(a, n++))) continue; rows.push(a); } return rows; }; dsv.format = function(rows) { if (Array.isArray(rows[0])) return dsv.formatRows(rows); var fieldSet = new d3_Set(), fields = []; rows.forEach(function(row) { for (var field in row) { if (!fieldSet.has(field)) { fields.push(fieldSet.add(field)); } } }); return [ fields.map(formatValue).join(delimiter) ].concat(rows.map(function(row) { return fields.map(function(field) { return formatValue(row[field]); }).join(delimiter); })).join("\n"); }; dsv.formatRows = function(rows) { return rows.map(formatRow).join("\n"); }; function formatRow(row) { return row.map(formatValue).join(delimiter); } function formatValue(text) { return reFormat.test(text) ? '"' + text.replace(/\"/g, '""') + '"' : text; } return dsv; } d3.csv = d3_dsv(",", "text/csv"); d3.tsv = d3_dsv(" ", "text/tab-separated-values"); var d3_timer_id = 0, d3_timer_byId = {}, d3_timer_queue = null, d3_timer_interval, d3_timer_timeout; d3.timer = function(callback, delay, then) { if (arguments.length < 3) { if (arguments.length < 2) delay = 0; else if (!isFinite(delay)) return; then = Date.now(); } var timer = d3_timer_byId[callback.id]; if (timer && timer.callback === callback) { timer.then = then; timer.delay = delay; } else d3_timer_byId[callback.id = ++d3_timer_id] = d3_timer_queue = { callback: callback, then: then, delay: delay, next: d3_timer_queue }; if (!d3_timer_interval) { d3_timer_timeout = clearTimeout(d3_timer_timeout); d3_timer_interval = 1; d3_timer_frame(d3_timer_step); } }; function d3_timer_step() { var elapsed, now = Date.now(), t1 = d3_timer_queue; while (t1) { elapsed = now - t1.then; if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed); t1 = t1.next; } var delay = d3_timer_flush() - now; if (delay > 24) { if (isFinite(delay)) { clearTimeout(d3_timer_timeout); d3_timer_timeout = setTimeout(d3_timer_step, delay); } d3_timer_interval = 0; } else { d3_timer_interval = 1; d3_timer_frame(d3_timer_step); } } d3.timer.flush = function() { var elapsed, now = Date.now(), t1 = d3_timer_queue; while (t1) { elapsed = now - t1.then; if (!t1.delay) t1.flush = t1.callback(elapsed); t1 = t1.next; } d3_timer_flush(); }; function d3_timer_flush() { var t0 = null, t1 = d3_timer_queue, then = Infinity; while (t1) { if (t1.flush) { delete d3_timer_byId[t1.callback.id]; t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next; } else { then = Math.min(then, t1.then + t1.delay); t1 = (t0 = t1).next; } } return then; } var d3_timer_frame = d3_window.requestAnimationFrame || d3_window.webkitRequestAnimationFrame || d3_window.mozRequestAnimationFrame || d3_window.oRequestAnimationFrame || d3_window.msRequestAnimationFrame || function(callback) { setTimeout(callback, 17); }; var d3_format_decimalPoint = ".", d3_format_thousandsSeparator = ",", d3_format_grouping = [ 3, 3 ]; var d3_formatPrefixes = [ "y", "z", "a", "f", "p", "n", "µ", "m", "", "k", "M", "G", "T", "P", "E", "Z", "Y" ].map(d3_formatPrefix); d3.formatPrefix = function(value, precision) { var i = 0; if (value) { if (value < 0) value *= -1; if (precision) value = d3.round(value, d3_format_precision(value, precision)); i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10); i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3)); } return d3_formatPrefixes[8 + i / 3]; }; function d3_formatPrefix(d, i) { var k = Math.pow(10, Math.abs(8 - i) * 3); return { scale: i > 8 ? function(d) { return d / k; } : function(d) { return d * k; }, symbol: d }; } d3.round = function(x, n) { return n ? Math.round(x * (n = Math.pow(10, n))) / n : Math.round(x); }; d3.format = function(specifier) { var match = d3_format_re.exec(specifier), fill = match[1] || " ", align = match[2] || ">", sign = match[3] || "", basePrefix = match[4] || "", zfill = match[5], width = +match[6], comma = match[7], precision = match[8], type = match[9], scale = 1, suffix = "", integer = false; if (precision) precision = +precision.substring(1); if (zfill || fill === "0" && align === "=") { zfill = fill = "0"; align = "="; if (comma) width -= Math.floor((width - 1) / 4); } switch (type) { case "n": comma = true; type = "g"; break; case "%": scale = 100; suffix = "%"; type = "f"; break; case "p": scale = 100; suffix = "%"; type = "r"; break; case "b": case "o": case "x": case "X": if (basePrefix) basePrefix = "0" + type.toLowerCase(); case "c": case "d": integer = true; precision = 0; break; case "s": scale = -1; type = "r"; break; } if (basePrefix === "#") basePrefix = ""; if (type == "r" && !precision) type = "g"; if (precision != null) { if (type == "g") precision = Math.max(1, Math.min(21, precision)); else if (type == "e" || type == "f") precision = Math.max(0, Math.min(20, precision)); } type = d3_format_types.get(type) || d3_format_typeDefault; var zcomma = zfill && comma; return function(value) { if (integer && value % 1) return ""; var negative = value < 0 || value === 0 && 1 / value < 0 ? (value = -value, "-") : sign; if (scale < 0) { var prefix = d3.formatPrefix(value, precision); value = prefix.scale(value); suffix = prefix.symbol; } else { value *= scale; } value = type(value, precision); if (!zfill && comma) value = d3_format_group(value); var length = basePrefix.length + value.length + (zcomma ? 0 : negative.length), padding = length < width ? new Array(length = width - length + 1).join(fill) : ""; if (zcomma) value = d3_format_group(padding + value); if (d3_format_decimalPoint) value.replace(".", d3_format_decimalPoint); negative += basePrefix; return (align === "<" ? negative + value + padding : align === ">" ? padding + negative + value : align === "^" ? padding.substring(0, length >>= 1) + negative + value + padding.substring(length) : negative + (zcomma ? value : padding + value)) + suffix; }; }; var d3_format_re = /(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i; var d3_format_types = d3.map({ b: function(x) { return x.toString(2); }, c: function(x) { return String.fromCharCode(x); }, o: function(x) { return x.toString(8); }, x: function(x) { return x.toString(16); }, X: function(x) { return x.toString(16).toUpperCase(); }, g: function(x, p) { return x.toPrecision(p); }, e: function(x, p) { return x.toExponential(p); }, f: function(x, p) { return x.toFixed(p); }, r: function(x, p) { return (x = d3.round(x, d3_format_precision(x, p))).toFixed(Math.max(0, Math.min(20, d3_format_precision(x * (1 + 1e-15), p)))); } }); function d3_format_precision(x, p) { return p - (x ? Math.ceil(Math.log(x) / Math.LN10) : 1); } function d3_format_typeDefault(x) { return x + ""; } var d3_format_group = d3_identity; if (d3_format_grouping) { var d3_format_groupingLength = d3_format_grouping.length; d3_format_group = function(value) { var i = value.lastIndexOf("."), f = i >= 0 ? "." + value.substring(i + 1) : (i = value.length, ""), t = [], j = 0, g = d3_format_grouping[0]; while (i > 0 && g > 0) { t.push(value.substring(i -= g, i + g)); g = d3_format_grouping[j = (j + 1) % d3_format_groupingLength]; } return t.reverse().join(d3_format_thousandsSeparator || "") + f; }; } d3.geo = {}; d3.geo.stream = function(object, listener) { if (object && d3_geo_streamObjectType.hasOwnProperty(object.type)) { d3_geo_streamObjectType[object.type](object, listener); } else { d3_geo_streamGeometry(object, listener); } }; function d3_geo_streamGeometry(geometry, listener) { if (geometry && d3_geo_streamGeometryType.hasOwnProperty(geometry.type)) { d3_geo_streamGeometryType[geometry.type](geometry, listener); } } var d3_geo_streamObjectType = { Feature: function(feature, listener) { d3_geo_streamGeometry(feature.geometry, listener); }, FeatureCollection: function(object, listener) { var features = object.features, i = -1, n = features.length; while (++i < n) d3_geo_streamGeometry(features[i].geometry, listener); } }; var d3_geo_streamGeometryType = { Sphere: function(object, listener) { listener.sphere(); }, Point: function(object, listener) { var coordinate = object.coordinates; listener.point(coordinate[0], coordinate[1]); }, MultiPoint: function(object, listener) { var coordinates = object.coordinates, i = -1, n = coordinates.length, coordinate; while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]); }, LineString: function(object, listener) { d3_geo_streamLine(object.coordinates, listener, 0); }, MultiLineString: function(object, listener) { var coordinates = object.coordinates, i = -1, n = coordinates.length; while (++i < n) d3_geo_streamLine(coordinates[i], listener, 0); }, Polygon: function(object, listener) { d3_geo_streamPolygon(object.coordinates, listener); }, MultiPolygon: function(object, listener) { var coordinates = object.coordinates, i = -1, n = coordinates.length; while (++i < n) d3_geo_streamPolygon(coordinates[i], listener); }, GeometryCollection: function(object, listener) { var geometries = object.geometries, i = -1, n = geometries.length; while (++i < n) d3_geo_streamGeometry(geometries[i], listener); } }; function d3_geo_streamLine(coordinates, listener, closed) { var i = -1, n = coordinates.length - closed, coordinate; listener.lineStart(); while (++i < n) coordinate = coordinates[i], listener.point(coordinate[0], coordinate[1]); listener.lineEnd(); } function d3_geo_streamPolygon(coordinates, listener) { var i = -1, n = coordinates.length; listener.polygonStart(); while (++i < n) d3_geo_streamLine(coordinates[i], listener, 1); listener.polygonEnd(); } d3.geo.area = function(object) { d3_geo_areaSum = 0; d3.geo.stream(object, d3_geo_area); return d3_geo_areaSum; }; var d3_geo_areaSum, d3_geo_areaRingU, d3_geo_areaRingV; var d3_geo_area = { sphere: function() { d3_geo_areaSum += 4 * π; }, point: d3_noop, lineStart: d3_noop, lineEnd: d3_noop, polygonStart: function() { d3_geo_areaRingU = 1, d3_geo_areaRingV = 0; d3_geo_area.lineStart = d3_geo_areaRingStart; }, polygonEnd: function() { var area = 2 * Math.atan2(d3_geo_areaRingV, d3_geo_areaRingU); d3_geo_areaSum += area < 0 ? 4 * π + area : area; d3_geo_area.lineStart = d3_geo_area.lineEnd = d3_geo_area.point = d3_noop; } }; function d3_geo_areaRingStart() { var λ00, φ00, λ0, cosφ0, sinφ0; d3_geo_area.point = function(λ, φ) { d3_geo_area.point = nextPoint; λ0 = (λ00 = λ) * d3_radians, cosφ0 = Math.cos(φ = (φ00 = φ) * d3_radians / 2 + π / 4), sinφ0 = Math.sin(φ); }; function nextPoint(λ, φ) { λ *= d3_radians; φ = φ * d3_radians / 2 + π / 4; var dλ = λ - λ0, cosφ = Math.cos(φ), sinφ = Math.sin(φ), k = sinφ0 * sinφ, u0 = d3_geo_areaRingU, v0 = d3_geo_areaRingV, u = cosφ0 * cosφ + k * Math.cos(dλ), v = k * Math.sin(dλ); d3_geo_areaRingU = u0 * u - v0 * v; d3_geo_areaRingV = v0 * u + u0 * v; λ0 = λ, cosφ0 = cosφ, sinφ0 = sinφ; } d3_geo_area.lineEnd = function() { nextPoint(λ00, φ00); }; } d3.geo.bounds = d3_geo_bounds(d3_identity); function d3_geo_bounds(projectStream) { var x0, y0, x1, y1; var bound = { point: boundPoint, lineStart: d3_noop, lineEnd: d3_noop, polygonStart: function() { bound.lineEnd = boundPolygonLineEnd; }, polygonEnd: function() { bound.point = boundPoint; } }; function boundPoint(x, y) { if (x < x0) x0 = x; if (x > x1) x1 = x; if (y < y0) y0 = y; if (y > y1) y1 = y; } function boundPolygonLineEnd() { bound.point = bound.lineEnd = d3_noop; } return function(feature) { y1 = x1 = -(x0 = y0 = Infinity); d3.geo.stream(feature, projectStream(bound)); return [ [ x0, y0 ], [ x1, y1 ] ]; }; } d3.geo.centroid = function(object) { d3_geo_centroidDimension = d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; d3.geo.stream(object, d3_geo_centroid); var m; if (d3_geo_centroidW && Math.abs(m = Math.sqrt(d3_geo_centroidX * d3_geo_centroidX + d3_geo_centroidY * d3_geo_centroidY + d3_geo_centroidZ * d3_geo_centroidZ)) > ε) { return [ Math.atan2(d3_geo_centroidY, d3_geo_centroidX) * d3_degrees, Math.asin(Math.max(-1, Math.min(1, d3_geo_centroidZ / m))) * d3_degrees ]; } }; var d3_geo_centroidDimension, d3_geo_centroidW, d3_geo_centroidX, d3_geo_centroidY, d3_geo_centroidZ; var d3_geo_centroid = { sphere: function() { if (d3_geo_centroidDimension < 2) { d3_geo_centroidDimension = 2; d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; } }, point: d3_geo_centroidPoint, lineStart: d3_geo_centroidLineStart, lineEnd: d3_geo_centroidLineEnd, polygonStart: function() { if (d3_geo_centroidDimension < 2) { d3_geo_centroidDimension = 2; d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; } d3_geo_centroid.lineStart = d3_geo_centroidRingStart; }, polygonEnd: function() { d3_geo_centroid.lineStart = d3_geo_centroidLineStart; } }; function d3_geo_centroidPoint(λ, φ) { if (d3_geo_centroidDimension) return; ++d3_geo_centroidW; λ *= d3_radians; var cosφ = Math.cos(φ *= d3_radians); d3_geo_centroidX += (cosφ * Math.cos(λ) - d3_geo_centroidX) / d3_geo_centroidW; d3_geo_centroidY += (cosφ * Math.sin(λ) - d3_geo_centroidY) / d3_geo_centroidW; d3_geo_centroidZ += (Math.sin(φ) - d3_geo_centroidZ) / d3_geo_centroidW; } function d3_geo_centroidRingStart() { var λ00, φ00; d3_geo_centroidDimension = 1; d3_geo_centroidLineStart(); d3_geo_centroidDimension = 2; var linePoint = d3_geo_centroid.point; d3_geo_centroid.point = function(λ, φ) { linePoint(λ00 = λ, φ00 = φ); }; d3_geo_centroid.lineEnd = function() { d3_geo_centroid.point(λ00, φ00); d3_geo_centroidLineEnd(); d3_geo_centroid.lineEnd = d3_geo_centroidLineEnd; }; } function d3_geo_centroidLineStart() { var x0, y0, z0; if (d3_geo_centroidDimension > 1) return; if (d3_geo_centroidDimension < 1) { d3_geo_centroidDimension = 1; d3_geo_centroidW = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; } d3_geo_centroid.point = function(λ, φ) { λ *= d3_radians; var cosφ = Math.cos(φ *= d3_radians); x0 = cosφ * Math.cos(λ); y0 = cosφ * Math.sin(λ); z0 = Math.sin(φ); d3_geo_centroid.point = nextPoint; }; function nextPoint(λ, φ) { λ *= d3_radians; var cosφ = Math.cos(φ *= d3_radians), x = cosφ * Math.cos(λ), y = cosφ * Math.sin(λ), z = Math.sin(φ), w = Math.atan2(Math.sqrt((w = y0 * z - z0 * y) * w + (w = z0 * x - x0 * z) * w + (w = x0 * y - y0 * x) * w), x0 * x + y0 * y + z0 * z); d3_geo_centroidW += w; d3_geo_centroidX += w * (x0 + (x0 = x)); d3_geo_centroidY += w * (y0 + (y0 = y)); d3_geo_centroidZ += w * (z0 + (z0 = z)); } } function d3_geo_centroidLineEnd() { d3_geo_centroid.point = d3_geo_centroidPoint; } function d3_geo_cartesian(spherical) { var λ = spherical[0], φ = spherical[1], cosφ = Math.cos(φ); return [ cosφ * Math.cos(λ), cosφ * Math.sin(λ), Math.sin(φ) ]; } function d3_geo_cartesianDot(a, b) { return a[0] * b[0] + a[1] * b[1] + a[2] * b[2]; } function d3_geo_cartesianCross(a, b) { return [ a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], a[0] * b[1] - a[1] * b[0] ]; } function d3_geo_cartesianAdd(a, b) { a[0] += b[0]; a[1] += b[1]; a[2] += b[2]; } function d3_geo_cartesianScale(vector, k) { return [ vector[0] * k, vector[1] * k, vector[2] * k ]; } function d3_geo_cartesianNormalize(d) { var l = Math.sqrt(d[0] * d[0] + d[1] * d[1] + d[2] * d[2]); d[0] /= l; d[1] /= l; d[2] /= l; } function d3_true() { return true; } function d3_geo_spherical(cartesian) { return [ Math.atan2(cartesian[1], cartesian[0]), Math.asin(Math.max(-1, Math.min(1, cartesian[2]))) ]; } function d3_geo_sphericalEqual(a, b) { return Math.abs(a[0] - b[0]) < ε && Math.abs(a[1] - b[1]) < ε; } function d3_geo_clipPolygon(segments, compare, inside, interpolate, listener) { var subject = [], clip = []; segments.forEach(function(segment) { if ((n = segment.length - 1) <= 0) return; var n, p0 = segment[0], p1 = segment[n]; if (d3_geo_sphericalEqual(p0, p1)) { listener.lineStart(); for (var i = 0; i < n; ++i) listener.point((p0 = segment[i])[0], p0[1]); listener.lineEnd(); return; } var a = { point: p0, points: segment, other: null, visited: false, entry: true, subject: true }, b = { point: p0, points: [ p0 ], other: a, visited: false, entry: false, subject: false }; a.other = b; subject.push(a); clip.push(b); a = { point: p1, points: [ p1 ], other: null, visited: false, entry: false, subject: true }; b = { point: p1, points: [ p1 ], other: a, visited: false, entry: true, subject: false }; a.other = b; subject.push(a); clip.push(b); }); clip.sort(compare); d3_geo_clipPolygonLinkCircular(subject); d3_geo_clipPolygonLinkCircular(clip); if (!subject.length) return; if (inside) for (var i = 1, e = !inside(clip[0].point), n = clip.length; i < n; ++i) { clip[i].entry = e = !e; } var start = subject[0], current, points, point; while (1) { current = start; while (current.visited) if ((current = current.next) === start) return; points = current.points; listener.lineStart(); do { current.visited = current.other.visited = true; if (current.entry) { if (current.subject) { for (var i = 0; i < points.length; i++) listener.point((point = points[i])[0], point[1]); } else { interpolate(current.point, current.next.point, 1, listener); } current = current.next; } else { if (current.subject) { points = current.prev.points; for (var i = points.length; --i >= 0; ) listener.point((point = points[i])[0], point[1]); } else { interpolate(current.point, current.prev.point, -1, listener); } current = current.prev; } current = current.other; points = current.points; } while (!current.visited); listener.lineEnd(); } } function d3_geo_clipPolygonLinkCircular(array) { if (!(n = array.length)) return; var n, i = 0, a = array[0], b; while (++i < n) { a.next = b = array[i]; b.prev = a; a = b; } a.next = b = array[0]; b.prev = a; } function d3_geo_clip(pointVisible, clipLine, interpolate) { return function(listener) { var line = clipLine(listener); var clip = { point: point, lineStart: lineStart, lineEnd: lineEnd, polygonStart: function() { clip.point = pointRing; clip.lineStart = ringStart; clip.lineEnd = ringEnd; invisible = false; invisibleArea = visibleArea = 0; segments = []; listener.polygonStart(); }, polygonEnd: function() { clip.point = point; clip.lineStart = lineStart; clip.lineEnd = lineEnd; segments = d3.merge(segments); if (segments.length) { d3_geo_clipPolygon(segments, d3_geo_clipSort, null, interpolate, listener); } else if (visibleArea < -ε || invisible && invisibleArea < -ε) { listener.lineStart(); interpolate(null, null, 1, listener); listener.lineEnd(); } listener.polygonEnd(); segments = null; }, sphere: function() { listener.polygonStart(); listener.lineStart(); interpolate(null, null, 1, listener); listener.lineEnd(); listener.polygonEnd(); } }; function point(λ, φ) { if (pointVisible(λ, φ)) listener.point(λ, φ); } function pointLine(λ, φ) { line.point(λ, φ); } function lineStart() { clip.point = pointLine; line.lineStart(); } function lineEnd() { clip.point = point; line.lineEnd(); } var segments, visibleArea, invisibleArea, invisible; var buffer = d3_geo_clipBufferListener(), ringListener = clipLine(buffer), ring; function pointRing(λ, φ) { ringListener.point(λ, φ); ring.push([ λ, φ ]); } function ringStart() { ringListener.lineStart(); ring = []; } function ringEnd() { pointRing(ring[0][0], ring[0][1]); ringListener.lineEnd(); var clean = ringListener.clean(), ringSegments = buffer.buffer(), segment, n = ringSegments.length; if (!n) { invisible = true; invisibleArea += d3_geo_clipAreaRing(ring, -1); ring = null; return; } ring = null; if (clean & 1) { segment = ringSegments[0]; visibleArea += d3_geo_clipAreaRing(segment, 1); var n = segment.length - 1, i = -1, point; listener.lineStart(); while (++i < n) listener.point((point = segment[i])[0], point[1]); listener.lineEnd(); return; } if (n > 1 && clean & 2) ringSegments.push(ringSegments.pop().concat(ringSegments.shift())); segments.push(ringSegments.filter(d3_geo_clipSegmentLength1)); } return clip; }; } function d3_geo_clipSegmentLength1(segment) { return segment.length > 1; } function d3_geo_clipBufferListener() { var lines = [], line; return { lineStart: function() { lines.push(line = []); }, point: function(λ, φ) { line.push([ λ, φ ]); }, lineEnd: d3_noop, buffer: function() { var buffer = lines; lines = []; line = null; return buffer; }, rejoin: function() { if (lines.length > 1) lines.push(lines.pop().concat(lines.shift())); } }; } function d3_geo_clipAreaRing(ring, invisible) { if (!(n = ring.length)) return 0; var n, i = 0, area = 0, p = ring[0], λ = p[0], φ = p[1], cosφ = Math.cos(φ), x0 = Math.atan2(invisible * Math.sin(λ) * cosφ, Math.sin(φ)), y0 = 1 - invisible * Math.cos(λ) * cosφ, x1 = x0, x, y; while (++i < n) { p = ring[i]; cosφ = Math.cos(φ = p[1]); x = Math.atan2(invisible * Math.sin(λ = p[0]) * cosφ, Math.sin(φ)); y = 1 - invisible * Math.cos(λ) * cosφ; if (Math.abs(y0 - 2) < ε && Math.abs(y - 2) < ε) continue; if (Math.abs(y) < ε || Math.abs(y0) < ε) {} else if (Math.abs(Math.abs(x - x0) - π) < ε) { if (y + y0 > 2) area += 4 * (x - x0); } else if (Math.abs(y0 - 2) < ε) area += 4 * (x - x1); else area += ((3 * π + x - x0) % (2 * π) - π) * (y0 + y); x1 = x0, x0 = x, y0 = y; } return area; } function d3_geo_clipSort(a, b) { return ((a = a.point)[0] < 0 ? a[1] - π / 2 - ε : π / 2 - a[1]) - ((b = b.point)[0] < 0 ? b[1] - π / 2 - ε : π / 2 - b[1]); } var d3_geo_clipAntimeridian = d3_geo_clip(d3_true, d3_geo_clipAntimeridianLine, d3_geo_clipAntimeridianInterpolate); function d3_geo_clipAntimeridianLine(listener) { var λ0 = NaN, φ0 = NaN, sλ0 = NaN, clean; return { lineStart: function() { listener.lineStart(); clean = 1; }, point: function(λ1, φ1) { var sλ1 = λ1 > 0 ? π : -π, dλ = Math.abs(λ1 - λ0); if (Math.abs(dλ - π) < ε) { listener.point(λ0, φ0 = (φ0 + φ1) / 2 > 0 ? π / 2 : -π / 2); listener.point(sλ0, φ0); listener.lineEnd(); listener.lineStart(); listener.point(sλ1, φ0); listener.point(λ1, φ0); clean = 0; } else if (sλ0 !== sλ1 && dλ >= π) { if (Math.abs(λ0 - sλ0) < ε) λ0 -= sλ0 * ε; if (Math.abs(λ1 - sλ1) < ε) λ1 -= sλ1 * ε; φ0 = d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1); listener.point(sλ0, φ0); listener.lineEnd(); listener.lineStart(); listener.point(sλ1, φ0); clean = 0; } listener.point(λ0 = λ1, φ0 = φ1); sλ0 = sλ1; }, lineEnd: function() { listener.lineEnd(); λ0 = φ0 = NaN; }, clean: function() { return 2 - clean; } }; } function d3_geo_clipAntimeridianIntersect(λ0, φ0, λ1, φ1) { var cosφ0, cosφ1, sinλ0_λ1 = Math.sin(λ0 - λ1); return Math.abs(sinλ0_λ1) > ε ? Math.atan((Math.sin(φ0) * (cosφ1 = Math.cos(φ1)) * Math.sin(λ1) - Math.sin(φ1) * (cosφ0 = Math.cos(φ0)) * Math.sin(λ0)) / (cosφ0 * cosφ1 * sinλ0_λ1)) : (φ0 + φ1) / 2; } function d3_geo_clipAntimeridianInterpolate(from, to, direction, listener) { var φ; if (from == null) { φ = direction * π / 2; listener.point(-π, φ); listener.point(0, φ); listener.point(π, φ); listener.point(π, 0); listener.point(π, -φ); listener.point(0, -φ); listener.point(-π, -φ); listener.point(-π, 0); listener.point(-π, φ); } else if (Math.abs(from[0] - to[0]) > ε) { var s = (from[0] < to[0] ? 1 : -1) * π; φ = direction * s / 2; listener.point(-s, φ); listener.point(0, φ); listener.point(s, φ); } else { listener.point(to[0], to[1]); } } function d3_geo_clipCircle(radius) { var cr = Math.cos(radius), smallRadius = cr > 0, notHemisphere = Math.abs(cr) > ε, interpolate = d3_geo_circleInterpolate(radius, 6 * d3_radians); return d3_geo_clip(visible, clipLine, interpolate); function visible(λ, φ) { return Math.cos(λ) * Math.cos(φ) > cr; } function clipLine(listener) { var point0, c0, v0, v00, clean; return { lineStart: function() { v00 = v0 = false; clean = 1; }, point: function(λ, φ) { var point1 = [ λ, φ ], point2, v = visible(λ, φ), c = smallRadius ? v ? 0 : code(λ, φ) : v ? code(λ + (λ < 0 ? π : -π), φ) : 0; if (!point0 && (v00 = v0 = v)) listener.lineStart(); if (v !== v0) { point2 = intersect(point0, point1); if (d3_geo_sphericalEqual(point0, point2) || d3_geo_sphericalEqual(point1, point2)) { point1[0] += ε; point1[1] += ε; v = visible(point1[0], point1[1]); } } if (v !== v0) { clean = 0; if (v) { listener.lineStart(); point2 = intersect(point1, point0); listener.point(point2[0], point2[1]); } else { point2 = intersect(point0, point1); listener.point(point2[0], point2[1]); listener.lineEnd(); } point0 = point2; } else if (notHemisphere && point0 && smallRadius ^ v) { var t; if (!(c & c0) && (t = intersect(point1, point0, true))) { clean = 0; if (smallRadius) { listener.lineStart(); listener.point(t[0][0], t[0][1]); listener.point(t[1][0], t[1][1]); listener.lineEnd(); } else { listener.point(t[1][0], t[1][1]); listener.lineEnd(); listener.lineStart(); listener.point(t[0][0], t[0][1]); } } } if (v && (!point0 || !d3_geo_sphericalEqual(point0, point1))) { listener.point(point1[0], point1[1]); } point0 = point1, v0 = v, c0 = c; }, lineEnd: function() { if (v0) listener.lineEnd(); point0 = null; }, clean: function() { return clean | (v00 && v0) << 1; } }; } function intersect(a, b, two) { var pa = d3_geo_cartesian(a), pb = d3_geo_cartesian(b); var n1 = [ 1, 0, 0 ], n2 = d3_geo_cartesianCross(pa, pb), n2n2 = d3_geo_cartesianDot(n2, n2), n1n2 = n2[0], determinant = n2n2 - n1n2 * n1n2; if (!determinant) return !two && a; var c1 = cr * n2n2 / determinant, c2 = -cr * n1n2 / determinant, n1xn2 = d3_geo_cartesianCross(n1, n2), A = d3_geo_cartesianScale(n1, c1), B = d3_geo_cartesianScale(n2, c2); d3_geo_cartesianAdd(A, B); var u = n1xn2, w = d3_geo_cartesianDot(A, u), uu = d3_geo_cartesianDot(u, u), t2 = w * w - uu * (d3_geo_cartesianDot(A, A) - 1); if (t2 < 0) return; var t = Math.sqrt(t2), q = d3_geo_cartesianScale(u, (-w - t) / uu); d3_geo_cartesianAdd(q, A); q = d3_geo_spherical(q); if (!two) return q; var λ0 = a[0], λ1 = b[0], φ0 = a[1], φ1 = b[1], z; if (λ1 < λ0) z = λ0, λ0 = λ1, λ1 = z; var δλ = λ1 - λ0, polar = Math.abs(δλ - π) < ε, meridian = polar || δλ < ε; if (!polar && φ1 < φ0) z = φ0, φ0 = φ1, φ1 = z; if (meridian ? polar ? φ0 + φ1 > 0 ^ q[1] < (Math.abs(q[0] - λ0) < ε ? φ0 : φ1) : φ0 <= q[1] && q[1] <= φ1 : δλ > π ^ (λ0 <= q[0] && q[0] <= λ1)) { var q1 = d3_geo_cartesianScale(u, (-w + t) / uu); d3_geo_cartesianAdd(q1, A); return [ q, d3_geo_spherical(q1) ]; } } function code(λ, φ) { var r = smallRadius ? radius : π - radius, code = 0; if (λ < -r) code |= 1; else if (λ > r) code |= 2; if (φ < -r) code |= 4; else if (φ > r) code |= 8; return code; } } var d3_geo_clipViewMAX = 1e9; function d3_geo_clipView(x0, y0, x1, y1) { return function(listener) { var listener_ = listener, bufferListener = d3_geo_clipBufferListener(), segments, polygon, ring; var clip = { point: point, lineStart: lineStart, lineEnd: lineEnd, polygonStart: function() { listener = bufferListener; segments = []; polygon = []; }, polygonEnd: function() { listener = listener_; if ((segments = d3.merge(segments)).length) { listener.polygonStart(); d3_geo_clipPolygon(segments, compare, inside, interpolate, listener); listener.polygonEnd(); } else if (insidePolygon([ x0, y0 ])) { listener.polygonStart(), listener.lineStart(); interpolate(null, null, 1, listener); listener.lineEnd(), listener.polygonEnd(); } segments = polygon = ring = null; } }; function inside(point) { var a = corner(point, -1), i = insidePolygon([ a === 0 || a === 3 ? x0 : x1, a > 1 ? y1 : y0 ]); return i; } function insidePolygon(p) { var wn = 0, n = polygon.length, y = p[1]; for (var i = 0; i < n; ++i) { for (var j = 1, v = polygon[i], m = v.length, a = v[0]; j < m; ++j) { b = v[j]; if (a[1] <= y) { if (b[1] > y && isLeft(a, b, p) > 0) ++wn; } else { if (b[1] <= y && isLeft(a, b, p) < 0) --wn; } a = b; } } return wn !== 0; } function isLeft(a, b, c) { return (b[0] - a[0]) * (c[1] - a[1]) - (c[0] - a[0]) * (b[1] - a[1]); } function interpolate(from, to, direction, listener) { var a = 0, a1 = 0; if (from == null || (a = corner(from, direction)) !== (a1 = corner(to, direction)) || comparePoints(from, to) < 0 ^ direction > 0) { do { listener.point(a === 0 || a === 3 ? x0 : x1, a > 1 ? y1 : y0); } while ((a = (a + direction + 4) % 4) !== a1); } else { listener.point(to[0], to[1]); } } function visible(x, y) { return x0 <= x && x <= x1 && y0 <= y && y <= y1; } function point(x, y) { if (visible(x, y)) listener.point(x, y); } var x__, y__, v__, x_, y_, v_, first; function lineStart() { clip.point = linePoint; if (polygon) polygon.push(ring = []); first = true; v_ = false; x_ = y_ = NaN; } function lineEnd() { if (segments) { linePoint(x__, y__); if (v__ && v_) bufferListener.rejoin(); segments.push(bufferListener.buffer()); } clip.point = point; if (v_) listener.lineEnd(); } function linePoint(x, y) { x = Math.max(-d3_geo_clipViewMAX, Math.min(d3_geo_clipViewMAX, x)); y = Math.max(-d3_geo_clipViewMAX, Math.min(d3_geo_clipViewMAX, y)); var v = visible(x, y); if (polygon) ring.push([ x, y ]); if (first) { x__ = x, y__ = y, v__ = v; first = false; if (v) { listener.lineStart(); listener.point(x, y); } } else { if (v && v_) listener.point(x, y); else { var a = [ x_, y_ ], b = [ x, y ]; if (clipLine(a, b)) { if (!v_) { listener.lineStart(); listener.point(a[0], a[1]); } listener.point(b[0], b[1]); if (!v) listener.lineEnd(); } else { listener.lineStart(); listener.point(x, y); } } } x_ = x, y_ = y, v_ = v; } return clip; }; function corner(p, direction) { return Math.abs(p[0] - x0) < ε ? direction > 0 ? 0 : 3 : Math.abs(p[0] - x1) < ε ? direction > 0 ? 2 : 1 : Math.abs(p[1] - y0) < ε ? direction > 0 ? 1 : 0 : direction > 0 ? 3 : 2; } function compare(a, b) { return comparePoints(a.point, b.point); } function comparePoints(a, b) { var ca = corner(a, 1), cb = corner(b, 1); return ca !== cb ? ca - cb : ca === 0 ? b[1] - a[1] : ca === 1 ? a[0] - b[0] : ca === 2 ? a[1] - b[1] : b[0] - a[0]; } function clipLine(a, b) { var dx = b[0] - a[0], dy = b[1] - a[1], t = [ 0, 1 ]; if (Math.abs(dx) < ε && Math.abs(dy) < ε) return x0 <= a[0] && a[0] <= x1 && y0 <= a[1] && a[1] <= y1; if (d3_geo_clipViewT(x0 - a[0], dx, t) && d3_geo_clipViewT(a[0] - x1, -dx, t) && d3_geo_clipViewT(y0 - a[1], dy, t) && d3_geo_clipViewT(a[1] - y1, -dy, t)) { if (t[1] < 1) { b[0] = a[0] + t[1] * dx; b[1] = a[1] + t[1] * dy; } if (t[0] > 0) { a[0] += t[0] * dx; a[1] += t[0] * dy; } return true; } return false; } } function d3_geo_clipViewT(num, denominator, t) { if (Math.abs(denominator) < ε) return num <= 0; var u = num / denominator; if (denominator > 0) { if (u > t[1]) return false; if (u > t[0]) t[0] = u; } else { if (u < t[0]) return false; if (u < t[1]) t[1] = u; } return true; } function d3_geo_compose(a, b) { function compose(x, y) { return x = a(x, y), b(x[0], x[1]); } if (a.invert && b.invert) compose.invert = function(x, y) { return x = b.invert(x, y), x && a.invert(x[0], x[1]); }; return compose; } function d3_geo_resample(project) { var δ2 = .5, maxDepth = 16; function resample(stream) { var λ0, x0, y0, a0, b0, c0; var resample = { point: point, lineStart: lineStart, lineEnd: lineEnd, polygonStart: function() { stream.polygonStart(); resample.lineStart = polygonLineStart; }, polygonEnd: function() { stream.polygonEnd(); resample.lineStart = lineStart; } }; function point(x, y) { x = project(x, y); stream.point(x[0], x[1]); } function lineStart() { x0 = NaN; resample.point = linePoint; stream.lineStart(); } function linePoint(λ, φ) { var c = d3_geo_cartesian([ λ, φ ]), p = project(λ, φ); resampleLineTo(x0, y0, λ0, a0, b0, c0, x0 = p[0], y0 = p[1], λ0 = λ, a0 = c[0], b0 = c[1], c0 = c[2], maxDepth, stream); stream.point(x0, y0); } function lineEnd() { resample.point = point; stream.lineEnd(); } function polygonLineStart() { var λ00, φ00, x00, y00, a00, b00, c00; lineStart(); resample.point = function(λ, φ) { linePoint(λ00 = λ, φ00 = φ), x00 = x0, y00 = y0, a00 = a0, b00 = b0, c00 = c0; resample.point = linePoint; }; resample.lineEnd = function() { resampleLineTo(x0, y0, λ0, a0, b0, c0, x00, y00, λ00, a00, b00, c00, maxDepth, stream); resample.lineEnd = lineEnd; lineEnd(); }; } return resample; } function resampleLineTo(x0, y0, λ0, a0, b0, c0, x1, y1, λ1, a1, b1, c1, depth, stream) { var dx = x1 - x0, dy = y1 - y0, d2 = dx * dx + dy * dy; if (d2 > 4 * δ2 && depth--) { var a = a0 + a1, b = b0 + b1, c = c0 + c1, m = Math.sqrt(a * a + b * b + c * c), φ2 = Math.asin(c /= m), λ2 = Math.abs(Math.abs(c) - 1) < ε ? (λ0 + λ1) / 2 : Math.atan2(b, a), p = project(λ2, φ2), x2 = p[0], y2 = p[1], dx2 = x2 - x0, dy2 = y2 - y0, dz = dy * dx2 - dx * dy2; if (dz * dz / d2 > δ2 || Math.abs((dx * dx2 + dy * dy2) / d2 - .5) > .3) { resampleLineTo(x0, y0, λ0, a0, b0, c0, x2, y2, λ2, a /= m, b /= m, c, depth, stream); stream.point(x2, y2); resampleLineTo(x2, y2, λ2, a, b, c, x1, y1, λ1, a1, b1, c1, depth, stream); } } } resample.precision = function(_) { if (!arguments.length) return Math.sqrt(δ2); maxDepth = (δ2 = _ * _) > 0 && 16; return resample; }; return resample; } d3.geo.projection = d3_geo_projection; d3.geo.projectionMutator = d3_geo_projectionMutator; function d3_geo_projection(project) { return d3_geo_projectionMutator(function() { return project; })(); } function d3_geo_projectionMutator(projectAt) { var project, rotate, projectRotate, projectResample = d3_geo_resample(function(x, y) { x = project(x, y); return [ x[0] * k + δx, δy - x[1] * k ]; }), k = 150, x = 480, y = 250, λ = 0, φ = 0, δλ = 0, δφ = 0, δγ = 0, δx, δy, preclip = d3_geo_clipAntimeridian, postclip = d3_identity, clipAngle = null, clipExtent = null; function projection(point) { point = projectRotate(point[0] * d3_radians, point[1] * d3_radians); return [ point[0] * k + δx, δy - point[1] * k ]; } function invert(point) { point = projectRotate.invert((point[0] - δx) / k, (δy - point[1]) / k); return point && [ point[0] * d3_degrees, point[1] * d3_degrees ]; } projection.stream = function(stream) { return d3_geo_projectionRadiansRotate(rotate, preclip(projectResample(postclip(stream)))); }; projection.clipAngle = function(_) { if (!arguments.length) return clipAngle; preclip = _ == null ? (clipAngle = _, d3_geo_clipAntimeridian) : d3_geo_clipCircle((clipAngle = +_) * d3_radians); return projection; }; projection.clipExtent = function(_) { if (!arguments.length) return clipExtent; clipExtent = _; postclip = _ == null ? d3_identity : d3_geo_clipView(_[0][0], _[0][1], _[1][0], _[1][1]); return projection; }; projection.scale = function(_) { if (!arguments.length) return k; k = +_; return reset(); }; projection.translate = function(_) { if (!arguments.length) return [ x, y ]; x = +_[0]; y = +_[1]; return reset(); }; projection.center = function(_) { if (!arguments.length) return [ λ * d3_degrees, φ * d3_degrees ]; λ = _[0] % 360 * d3_radians; φ = _[1] % 360 * d3_radians; return reset(); }; projection.rotate = function(_) { if (!arguments.length) return [ δλ * d3_degrees, δφ * d3_degrees, δγ * d3_degrees ]; δλ = _[0] % 360 * d3_radians; δφ = _[1] % 360 * d3_radians; δγ = _.length > 2 ? _[2] % 360 * d3_radians : 0; return reset(); }; d3.rebind(projection, projectResample, "precision"); function reset() { projectRotate = d3_geo_compose(rotate = d3_geo_rotation(δλ, δφ, δγ), project); var center = project(λ, φ); δx = x - center[0] * k; δy = y + center[1] * k; return projection; } return function() { project = projectAt.apply(this, arguments); projection.invert = project.invert && invert; return reset(); }; } function d3_geo_projectionRadiansRotate(rotate, stream) { return { point: function(x, y) { y = rotate(x * d3_radians, y * d3_radians), x = y[0]; stream.point(x > π ? x - 2 * π : x < -π ? x + 2 * π : x, y[1]); }, sphere: function() { stream.sphere(); }, lineStart: function() { stream.lineStart(); }, lineEnd: function() { stream.lineEnd(); }, polygonStart: function() { stream.polygonStart(); }, polygonEnd: function() { stream.polygonEnd(); } }; } function d3_geo_equirectangular(λ, φ) { return [ λ, φ ]; } (d3.geo.equirectangular = function() { return d3_geo_projection(d3_geo_equirectangular); }).raw = d3_geo_equirectangular.invert = d3_geo_equirectangular; d3.geo.rotation = function(rotate) { rotate = d3_geo_rotation(rotate[0] % 360 * d3_radians, rotate[1] * d3_radians, rotate.length > 2 ? rotate[2] * d3_radians : 0); function forward(coordinates) { coordinates = rotate(coordinates[0] * d3_radians, coordinates[1] * d3_radians); return coordinates[0] *= d3_degrees, coordinates[1] *= d3_degrees, coordinates; } forward.invert = function(coordinates) { coordinates = rotate.invert(coordinates[0] * d3_radians, coordinates[1] * d3_radians); return coordinates[0] *= d3_degrees, coordinates[1] *= d3_degrees, coordinates; }; return forward; }; function d3_geo_rotation(δλ, δφ, δγ) { return δλ ? δφ || δγ ? d3_geo_compose(d3_geo_rotationλ(δλ), d3_geo_rotationφγ(δφ, δγ)) : d3_geo_rotationλ(δλ) : δφ || δγ ? d3_geo_rotationφγ(δφ, δγ) : d3_geo_equirectangular; } function d3_geo_forwardRotationλ(δλ) { return function(λ, φ) { return λ += δλ, [ λ > π ? λ - 2 * π : λ < -π ? λ + 2 * π : λ, φ ]; }; } function d3_geo_rotationλ(δλ) { var rotation = d3_geo_forwardRotationλ(δλ); rotation.invert = d3_geo_forwardRotationλ(-δλ); return rotation; } function d3_geo_rotationφγ(δφ, δγ) { var cosδφ = Math.cos(δφ), sinδφ = Math.sin(δφ), cosδγ = Math.cos(δγ), sinδγ = Math.sin(δγ); function rotation(λ, φ) { var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδφ + x * sinδφ; return [ Math.atan2(y * cosδγ - k * sinδγ, x * cosδφ - z * sinδφ), Math.asin(Math.max(-1, Math.min(1, k * cosδγ + y * sinδγ))) ]; } rotation.invert = function(λ, φ) { var cosφ = Math.cos(φ), x = Math.cos(λ) * cosφ, y = Math.sin(λ) * cosφ, z = Math.sin(φ), k = z * cosδγ - y * sinδγ; return [ Math.atan2(y * cosδγ + z * sinδγ, x * cosδφ + k * sinδφ), Math.asin(Math.max(-1, Math.min(1, k * cosδφ - x * sinδφ))) ]; }; return rotation; } d3.geo.circle = function() { var origin = [ 0, 0 ], angle, precision = 6, interpolate; function circle() { var center = typeof origin === "function" ? origin.apply(this, arguments) : origin, rotate = d3_geo_rotation(-center[0] * d3_radians, -center[1] * d3_radians, 0).invert, ring = []; interpolate(null, null, 1, { point: function(x, y) { ring.push(x = rotate(x, y)); x[0] *= d3_degrees, x[1] *= d3_degrees; } }); return { type: "Polygon", coordinates: [ ring ] }; } circle.origin = function(x) { if (!arguments.length) return origin; origin = x; return circle; }; circle.angle = function(x) { if (!arguments.length) return angle; interpolate = d3_geo_circleInterpolate((angle = +x) * d3_radians, precision * d3_radians); return circle; }; circle.precision = function(_) { if (!arguments.length) return precision; interpolate = d3_geo_circleInterpolate(angle * d3_radians, (precision = +_) * d3_radians); return circle; }; return circle.angle(90); }; function d3_geo_circleInterpolate(radius, precision) { var cr = Math.cos(radius), sr = Math.sin(radius); return function(from, to, direction, listener) { if (from != null) { from = d3_geo_circleAngle(cr, from); to = d3_geo_circleAngle(cr, to); if (direction > 0 ? from < to : from > to) from += direction * 2 * π; } else { from = radius + direction * 2 * π; to = radius; } var point; for (var step = direction * precision, t = from; direction > 0 ? t > to : t < to; t -= step) { listener.point((point = d3_geo_spherical([ cr, -sr * Math.cos(t), -sr * Math.sin(t) ]))[0], point[1]); } }; } function d3_geo_circleAngle(cr, point) { var a = d3_geo_cartesian(point); a[0] -= cr; d3_geo_cartesianNormalize(a); var angle = d3_acos(-a[1]); return ((-a[2] < 0 ? -angle : angle) + 2 * Math.PI - ε) % (2 * Math.PI); } d3.geo.distance = function(a, b) { var Δλ = (b[0] - a[0]) * d3_radians, φ0 = a[1] * d3_radians, φ1 = b[1] * d3_radians, sinΔλ = Math.sin(Δλ), cosΔλ = Math.cos(Δλ), sinφ0 = Math.sin(φ0), cosφ0 = Math.cos(φ0), sinφ1 = Math.sin(φ1), cosφ1 = Math.cos(φ1), t; return Math.atan2(Math.sqrt((t = cosφ1 * sinΔλ) * t + (t = cosφ0 * sinφ1 - sinφ0 * cosφ1 * cosΔλ) * t), sinφ0 * sinφ1 + cosφ0 * cosφ1 * cosΔλ); }; d3.geo.graticule = function() { var x1, x0, X1, X0, y1, y0, Y1, Y0, dx = 10, dy = dx, DX = 90, DY = 360, x, y, X, Y, precision = 2.5; function graticule() { return { type: "MultiLineString", coordinates: lines() }; } function lines() { return d3.range(Math.ceil(X0 / DX) * DX, X1, DX).map(X).concat(d3.range(Math.ceil(Y0 / DY) * DY, Y1, DY).map(Y)).concat(d3.range(Math.ceil(x0 / dx) * dx, x1, dx).filter(function(x) { return Math.abs(x % DX) > ε; }).map(x)).concat(d3.range(Math.ceil(y0 / dy) * dy, y1, dy).filter(function(y) { return Math.abs(y % DY) > ε; }).map(y)); } graticule.lines = function() { return lines().map(function(coordinates) { return { type: "LineString", coordinates: coordinates }; }); }; graticule.outline = function() { return { type: "Polygon", coordinates: [ X(X0).concat(Y(Y1).slice(1), X(X1).reverse().slice(1), Y(Y0).reverse().slice(1)) ] }; }; graticule.extent = function(_) { if (!arguments.length) return graticule.minorExtent(); return graticule.majorExtent(_).minorExtent(_); }; graticule.majorExtent = function(_) { if (!arguments.length) return [ [ X0, Y0 ], [ X1, Y1 ] ]; X0 = +_[0][0], X1 = +_[1][0]; Y0 = +_[0][1], Y1 = +_[1][1]; if (X0 > X1) _ = X0, X0 = X1, X1 = _; if (Y0 > Y1) _ = Y0, Y0 = Y1, Y1 = _; return graticule.precision(precision); }; graticule.minorExtent = function(_) { if (!arguments.length) return [ [ x0, y0 ], [ x1, y1 ] ]; x0 = +_[0][0], x1 = +_[1][0]; y0 = +_[0][1], y1 = +_[1][1]; if (x0 > x1) _ = x0, x0 = x1, x1 = _; if (y0 > y1) _ = y0, y0 = y1, y1 = _; return graticule.precision(precision); }; graticule.step = function(_) { if (!arguments.length) return graticule.minorStep(); return graticule.majorStep(_).minorStep(_); }; graticule.majorStep = function(_) { if (!arguments.length) return [ DX, DY ]; DX = +_[0], DY = +_[1]; return graticule; }; graticule.minorStep = function(_) { if (!arguments.length) return [ dx, dy ]; dx = +_[0], dy = +_[1]; return graticule; }; graticule.precision = function(_) { if (!arguments.length) return precision; precision = +_; x = d3_geo_graticuleX(y0, y1, 90); y = d3_geo_graticuleY(x0, x1, precision); X = d3_geo_graticuleX(Y0, Y1, 90); Y = d3_geo_graticuleY(X0, X1, precision); return graticule; }; return graticule.majorExtent([ [ -180, -90 + ε ], [ 180, 90 - ε ] ]).minorExtent([ [ -180, -80 - ε ], [ 180, 80 + ε ] ]); }; function d3_geo_graticuleX(y0, y1, dy) { var y = d3.range(y0, y1 - ε, dy).concat(y1); return function(x) { return y.map(function(y) { return [ x, y ]; }); }; } function d3_geo_graticuleY(x0, x1, dx) { var x = d3.range(x0, x1 - ε, dx).concat(x1); return function(y) { return x.map(function(x) { return [ x, y ]; }); }; } function d3_source(d) { return d.source; } function d3_target(d) { return d.target; } d3.geo.greatArc = function() { var source = d3_source, source_, target = d3_target, target_; function greatArc() { return { type: "LineString", coordinates: [ source_ || source.apply(this, arguments), target_ || target.apply(this, arguments) ] }; } greatArc.distance = function() { return d3.geo.distance(source_ || source.apply(this, arguments), target_ || target.apply(this, arguments)); }; greatArc.source = function(_) { if (!arguments.length) return source; source = _, source_ = typeof _ === "function" ? null : _; return greatArc; }; greatArc.target = function(_) { if (!arguments.length) return target; target = _, target_ = typeof _ === "function" ? null : _; return greatArc; }; greatArc.precision = function() { return arguments.length ? greatArc : 0; }; return greatArc; }; d3.geo.interpolate = function(source, target) { return d3_geo_interpolate(source[0] * d3_radians, source[1] * d3_radians, target[0] * d3_radians, target[1] * d3_radians); }; function d3_geo_interpolate(x0, y0, x1, y1) { var cy0 = Math.cos(y0), sy0 = Math.sin(y0), cy1 = Math.cos(y1), sy1 = Math.sin(y1), kx0 = cy0 * Math.cos(x0), ky0 = cy0 * Math.sin(x0), kx1 = cy1 * Math.cos(x1), ky1 = cy1 * Math.sin(x1), d = 2 * Math.asin(Math.sqrt(d3_haversin(y1 - y0) + cy0 * cy1 * d3_haversin(x1 - x0))), k = 1 / Math.sin(d); var interpolate = d ? function(t) { var B = Math.sin(t *= d) * k, A = Math.sin(d - t) * k, x = A * kx0 + B * kx1, y = A * ky0 + B * ky1, z = A * sy0 + B * sy1; return [ Math.atan2(y, x) * d3_degrees, Math.atan2(z, Math.sqrt(x * x + y * y)) * d3_degrees ]; } : function() { return [ x0 * d3_degrees, y0 * d3_degrees ]; }; interpolate.distance = d; return interpolate; } d3.geo.length = function(object) { d3_geo_lengthSum = 0; d3.geo.stream(object, d3_geo_length); return d3_geo_lengthSum; }; var d3_geo_lengthSum; var d3_geo_length = { sphere: d3_noop, point: d3_noop, lineStart: d3_geo_lengthLineStart, lineEnd: d3_noop, polygonStart: d3_noop, polygonEnd: d3_noop }; function d3_geo_lengthLineStart() { var λ0, sinφ0, cosφ0; d3_geo_length.point = function(λ, φ) { λ0 = λ * d3_radians, sinφ0 = Math.sin(φ *= d3_radians), cosφ0 = Math.cos(φ); d3_geo_length.point = nextPoint; }; d3_geo_length.lineEnd = function() { d3_geo_length.point = d3_geo_length.lineEnd = d3_noop; }; function nextPoint(λ, φ) { var sinφ = Math.sin(φ *= d3_radians), cosφ = Math.cos(φ), t = Math.abs((λ *= d3_radians) - λ0), cosΔλ = Math.cos(t); d3_geo_lengthSum += Math.atan2(Math.sqrt((t = cosφ * Math.sin(t)) * t + (t = cosφ0 * sinφ - sinφ0 * cosφ * cosΔλ) * t), sinφ0 * sinφ + cosφ0 * cosφ * cosΔλ); λ0 = λ, sinφ0 = sinφ, cosφ0 = cosφ; } } function d3_geo_conic(projectAt) { var φ0 = 0, φ1 = π / 3, m = d3_geo_projectionMutator(projectAt), p = m(φ0, φ1); p.parallels = function(_) { if (!arguments.length) return [ φ0 / π * 180, φ1 / π * 180 ]; return m(φ0 = _[0] * π / 180, φ1 = _[1] * π / 180); }; return p; } function d3_geo_conicEqualArea(φ0, φ1) { var sinφ0 = Math.sin(φ0), n = (sinφ0 + Math.sin(φ1)) / 2, C = 1 + sinφ0 * (2 * n - sinφ0), ρ0 = Math.sqrt(C) / n; function forward(λ, φ) { var ρ = Math.sqrt(C - 2 * n * Math.sin(φ)) / n; return [ ρ * Math.sin(λ *= n), ρ0 - ρ * Math.cos(λ) ]; } forward.invert = function(x, y) { var ρ0_y = ρ0 - y; return [ Math.atan2(x, ρ0_y) / n, Math.asin((C - (x * x + ρ0_y * ρ0_y) * n * n) / (2 * n)) ]; }; return forward; } (d3.geo.conicEqualArea = function() { return d3_geo_conic(d3_geo_conicEqualArea); }).raw = d3_geo_conicEqualArea; d3.geo.albersUsa = function() { var lower48 = d3.geo.conicEqualArea().rotate([ 98, 0 ]).center([ 0, 38 ]).parallels([ 29.5, 45.5 ]); var alaska = d3.geo.conicEqualArea().rotate([ 160, 0 ]).center([ 0, 60 ]).parallels([ 55, 65 ]); var hawaii = d3.geo.conicEqualArea().rotate([ 160, 0 ]).center([ 0, 20 ]).parallels([ 8, 18 ]); var puertoRico = d3.geo.conicEqualArea().rotate([ 60, 0 ]).center([ 0, 10 ]).parallels([ 8, 18 ]); var alaskaInvert, hawaiiInvert, puertoRicoInvert; function albersUsa(coordinates) { return projection(coordinates)(coordinates); } function projection(point) { var lon = point[0], lat = point[1]; return lat > 50 ? alaska : lon < -140 ? hawaii : lat < 21 ? puertoRico : lower48; } albersUsa.invert = function(coordinates) { return alaskaInvert(coordinates) || hawaiiInvert(coordinates) || puertoRicoInvert(coordinates) || lower48.invert(coordinates); }; albersUsa.scale = function(x) { if (!arguments.length) return lower48.scale(); lower48.scale(x); alaska.scale(x * .6); hawaii.scale(x); puertoRico.scale(x * 1.5); return albersUsa.translate(lower48.translate()); }; albersUsa.translate = function(x) { if (!arguments.length) return lower48.translate(); var dz = lower48.scale(), dx = x[0], dy = x[1]; lower48.translate(x); alaska.translate([ dx - .4 * dz, dy + .17 * dz ]); hawaii.translate([ dx - .19 * dz, dy + .2 * dz ]); puertoRico.translate([ dx + .58 * dz, dy + .43 * dz ]); alaskaInvert = d3_geo_albersUsaInvert(alaska, [ [ -180, 50 ], [ -130, 72 ] ]); hawaiiInvert = d3_geo_albersUsaInvert(hawaii, [ [ -164, 18 ], [ -154, 24 ] ]); puertoRicoInvert = d3_geo_albersUsaInvert(puertoRico, [ [ -67.5, 17.5 ], [ -65, 19 ] ]); return albersUsa; }; return albersUsa.scale(1e3); }; function d3_geo_albersUsaInvert(projection, extent) { var a = projection(extent[0]), b = projection([ .5 * (extent[0][0] + extent[1][0]), extent[0][1] ]), c = projection([ extent[1][0], extent[0][1] ]), d = projection(extent[1]); var dya = b[1] - a[1], dxa = b[0] - a[0], dyb = c[1] - b[1], dxb = c[0] - b[0]; var ma = dya / dxa, mb = dyb / dxb; var cx = .5 * (ma * mb * (a[1] - c[1]) + mb * (a[0] + b[0]) - ma * (b[0] + c[0])) / (mb - ma), cy = (.5 * (a[0] + b[0]) - cx) / ma + .5 * (a[1] + b[1]); var dx0 = d[0] - cx, dy0 = d[1] - cy, dx1 = a[0] - cx, dy1 = a[1] - cy, r0 = dx0 * dx0 + dy0 * dy0, r1 = dx1 * dx1 + dy1 * dy1; var a0 = Math.atan2(dy0, dx0), a1 = Math.atan2(dy1, dx1); return function(coordinates) { var dx = coordinates[0] - cx, dy = coordinates[1] - cy, r = dx * dx + dy * dy, a = Math.atan2(dy, dx); if (r0 < r && r < r1 && a0 < a && a < a1) return projection.invert(coordinates); }; } var d3_geo_pathAreaSum, d3_geo_pathAreaPolygon, d3_geo_pathArea = { point: d3_noop, lineStart: d3_noop, lineEnd: d3_noop, polygonStart: function() { d3_geo_pathAreaPolygon = 0; d3_geo_pathArea.lineStart = d3_geo_pathAreaRingStart; }, polygonEnd: function() { d3_geo_pathArea.lineStart = d3_geo_pathArea.lineEnd = d3_geo_pathArea.point = d3_noop; d3_geo_pathAreaSum += Math.abs(d3_geo_pathAreaPolygon / 2); } }; function d3_geo_pathAreaRingStart() { var x00, y00, x0, y0; d3_geo_pathArea.point = function(x, y) { d3_geo_pathArea.point = nextPoint; x00 = x0 = x, y00 = y0 = y; }; function nextPoint(x, y) { d3_geo_pathAreaPolygon += y0 * x - x0 * y; x0 = x, y0 = y; } d3_geo_pathArea.lineEnd = function() { nextPoint(x00, y00); }; } function d3_geo_pathBuffer() { var pointCircle = d3_geo_pathCircle(4.5), buffer = []; var stream = { point: point, lineStart: function() { stream.point = pointLineStart; }, lineEnd: lineEnd, polygonStart: function() { stream.lineEnd = lineEndPolygon; }, polygonEnd: function() { stream.lineEnd = lineEnd; stream.point = point; }, pointRadius: function(_) { pointCircle = d3_geo_pathCircle(_); return stream; }, result: function() { if (buffer.length) { var result = buffer.join(""); buffer = []; return result; } } }; function point(x, y) { buffer.push("M", x, ",", y, pointCircle); } function pointLineStart(x, y) { buffer.push("M", x, ",", y); stream.point = pointLine; } function pointLine(x, y) { buffer.push("L", x, ",", y); } function lineEnd() { stream.point = point; } function lineEndPolygon() { buffer.push("Z"); } return stream; } var d3_geo_pathCentroid = { point: d3_geo_pathCentroidPoint, lineStart: d3_geo_pathCentroidLineStart, lineEnd: d3_geo_pathCentroidLineEnd, polygonStart: function() { d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidRingStart; }, polygonEnd: function() { d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint; d3_geo_pathCentroid.lineStart = d3_geo_pathCentroidLineStart; d3_geo_pathCentroid.lineEnd = d3_geo_pathCentroidLineEnd; } }; function d3_geo_pathCentroidPoint(x, y) { if (d3_geo_centroidDimension) return; d3_geo_centroidX += x; d3_geo_centroidY += y; ++d3_geo_centroidZ; } function d3_geo_pathCentroidLineStart() { var x0, y0; if (d3_geo_centroidDimension !== 1) { if (d3_geo_centroidDimension < 1) { d3_geo_centroidDimension = 1; d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; } else return; } d3_geo_pathCentroid.point = function(x, y) { d3_geo_pathCentroid.point = nextPoint; x0 = x, y0 = y; }; function nextPoint(x, y) { var dx = x - x0, dy = y - y0, z = Math.sqrt(dx * dx + dy * dy); d3_geo_centroidX += z * (x0 + x) / 2; d3_geo_centroidY += z * (y0 + y) / 2; d3_geo_centroidZ += z; x0 = x, y0 = y; } } function d3_geo_pathCentroidLineEnd() { d3_geo_pathCentroid.point = d3_geo_pathCentroidPoint; } function d3_geo_pathCentroidRingStart() { var x00, y00, x0, y0; if (d3_geo_centroidDimension < 2) { d3_geo_centroidDimension = 2; d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; } d3_geo_pathCentroid.point = function(x, y) { d3_geo_pathCentroid.point = nextPoint; x00 = x0 = x, y00 = y0 = y; }; function nextPoint(x, y) { var z = y0 * x - x0 * y; d3_geo_centroidX += z * (x0 + x); d3_geo_centroidY += z * (y0 + y); d3_geo_centroidZ += z * 3; x0 = x, y0 = y; } d3_geo_pathCentroid.lineEnd = function() { nextPoint(x00, y00); }; } function d3_geo_pathContext(context) { var pointRadius = 4.5; var stream = { point: point, lineStart: function() { stream.point = pointLineStart; }, lineEnd: lineEnd, polygonStart: function() { stream.lineEnd = lineEndPolygon; }, polygonEnd: function() { stream.lineEnd = lineEnd; stream.point = point; }, pointRadius: function(_) { pointRadius = _; return stream; }, result: d3_noop }; function point(x, y) { context.moveTo(x, y); context.arc(x, y, pointRadius, 0, 2 * π); } function pointLineStart(x, y) { context.moveTo(x, y); stream.point = pointLine; } function pointLine(x, y) { context.lineTo(x, y); } function lineEnd() { stream.point = point; } function lineEndPolygon() { context.closePath(); } return stream; } d3.geo.path = function() { var pointRadius = 4.5, projection, context, projectStream, contextStream; function path(object) { if (object) d3.geo.stream(object, projectStream(contextStream.pointRadius(typeof pointRadius === "function" ? +pointRadius.apply(this, arguments) : pointRadius))); return contextStream.result(); } path.area = function(object) { d3_geo_pathAreaSum = 0; d3.geo.stream(object, projectStream(d3_geo_pathArea)); return d3_geo_pathAreaSum; }; path.centroid = function(object) { d3_geo_centroidDimension = d3_geo_centroidX = d3_geo_centroidY = d3_geo_centroidZ = 0; d3.geo.stream(object, projectStream(d3_geo_pathCentroid)); return d3_geo_centroidZ ? [ d3_geo_centroidX / d3_geo_centroidZ, d3_geo_centroidY / d3_geo_centroidZ ] : undefined; }; path.bounds = function(object) { return d3_geo_bounds(projectStream)(object); }; path.projection = function(_) { if (!arguments.length) return projection; projectStream = (projection = _) ? _.stream || d3_geo_pathProjectStream(_) : d3_identity; return path; }; path.context = function(_) { if (!arguments.length) return context; contextStream = (context = _) == null ? new d3_geo_pathBuffer() : new d3_geo_pathContext(_); return path; }; path.pointRadius = function(_) { if (!arguments.length) return pointRadius; pointRadius = typeof _ === "function" ? _ : +_; return path; }; return path.projection(d3.geo.albersUsa()).context(null); }; function d3_geo_pathCircle(radius) { return "m0," + radius + "a" + radius + "," + radius + " 0 1,1 0," + -2 * radius + "a" + radius + "," + radius + " 0 1,1 0," + +2 * radius + "z"; } function d3_geo_pathProjectStream(project) { var resample = d3_geo_resample(function(λ, φ) { return project([ λ * d3_degrees, φ * d3_degrees ]); }); return function(stream) { stream = resample(stream); return { point: function(λ, φ) { stream.point(λ * d3_radians, φ * d3_radians); }, sphere: function() { stream.sphere(); }, lineStart: function() { stream.lineStart(); }, lineEnd: function() { stream.lineEnd(); }, polygonStart: function() { stream.polygonStart(); }, polygonEnd: function() { stream.polygonEnd(); } }; }; } d3.geo.albers = function() { return d3.geo.conicEqualArea().parallels([ 29.5, 45.5 ]).rotate([ 98, 0 ]).center([ 0, 38 ]).scale(1e3); }; function d3_geo_azimuthal(scale, angle) { function azimuthal(λ, φ) { var cosλ = Math.cos(λ), cosφ = Math.cos(φ), k = scale(cosλ * cosφ); return [ k * cosφ * Math.sin(λ), k * Math.sin(φ) ]; } azimuthal.invert = function(x, y) { var ρ = Math.sqrt(x * x + y * y), c = angle(ρ), sinc = Math.sin(c), cosc = Math.cos(c); return [ Math.atan2(x * sinc, ρ * cosc), Math.asin(ρ && y * sinc / ρ) ]; }; return azimuthal; } var d3_geo_azimuthalEqualArea = d3_geo_azimuthal(function(cosλcosφ) { return Math.sqrt(2 / (1 + cosλcosφ)); }, function(ρ) { return 2 * Math.asin(ρ / 2); }); (d3.geo.azimuthalEqualArea = function() { return d3_geo_projection(d3_geo_azimuthalEqualArea); }).raw = d3_geo_azimuthalEqualArea; var d3_geo_azimuthalEquidistant = d3_geo_azimuthal(function(cosλcosφ) { var c = Math.acos(cosλcosφ); return c && c / Math.sin(c); }, d3_identity); (d3.geo.azimuthalEquidistant = function() { return d3_geo_projection(d3_geo_azimuthalEquidistant); }).raw = d3_geo_azimuthalEquidistant; function d3_geo_conicConformal(φ0, φ1) { var cosφ0 = Math.cos(φ0), t = function(φ) { return Math.tan(π / 4 + φ / 2); }, n = φ0 === φ1 ? Math.sin(φ0) : Math.log(cosφ0 / Math.cos(φ1)) / Math.log(t(φ1) / t(φ0)), F = cosφ0 * Math.pow(t(φ0), n) / n; if (!n) return d3_geo_mercator; function forward(λ, φ) { var ρ = Math.abs(Math.abs(φ) - π / 2) < ε ? 0 : F / Math.pow(t(φ), n); return [ ρ * Math.sin(n * λ), F - ρ * Math.cos(n * λ) ]; } forward.invert = function(x, y) { var ρ0_y = F - y, ρ = d3_sgn(n) * Math.sqrt(x * x + ρ0_y * ρ0_y); return [ Math.atan2(x, ρ0_y) / n, 2 * Math.atan(Math.pow(F / ρ, 1 / n)) - π / 2 ]; }; return forward; } (d3.geo.conicConformal = function() { return d3_geo_conic(d3_geo_conicConformal); }).raw = d3_geo_conicConformal; function d3_geo_conicEquidistant(φ0, φ1) { var cosφ0 = Math.cos(φ0), n = φ0 === φ1 ? Math.sin(φ0) : (cosφ0 - Math.cos(φ1)) / (φ1 - φ0), G = cosφ0 / n + φ0; if (Math.abs(n) < ε) return d3_geo_equirectangular; function forward(λ, φ) { var ρ = G - φ; return [ ρ * Math.sin(n * λ), G - ρ * Math.cos(n * λ) ]; } forward.invert = function(x, y) { var ρ0_y = G - y; return [ Math.atan2(x, ρ0_y) / n, G - d3_sgn(n) * Math.sqrt(x * x + ρ0_y * ρ0_y) ]; }; return forward; } (d3.geo.conicEquidistant = function() { return d3_geo_conic(d3_geo_conicEquidistant); }).raw = d3_geo_conicEquidistant; var d3_geo_gnomonic = d3_geo_azimuthal(function(cosλcosφ) { return 1 / cosλcosφ; }, Math.atan); (d3.geo.gnomonic = function() { return d3_geo_projection(d3_geo_gnomonic); }).raw = d3_geo_gnomonic; function d3_geo_mercator(λ, φ) { return [ λ, Math.log(Math.tan(π / 4 + φ / 2)) ]; } d3_geo_mercator.invert = function(x, y) { return [ x, 2 * Math.atan(Math.exp(y)) - π / 2 ]; }; function d3_geo_mercatorProjection(project) { var m = d3_geo_projection(project), scale = m.scale, translate = m.translate, clipExtent = m.clipExtent, clipAuto; m.scale = function() { var v = scale.apply(m, arguments); return v === m ? clipAuto ? m.clipExtent(null) : m : v; }; m.translate = function() { var v = translate.apply(m, arguments); return v === m ? clipAuto ? m.clipExtent(null) : m : v; }; m.clipExtent = function(_) { var v = clipExtent.apply(m, arguments); if (v === m) { if (clipAuto = _ == null) { var k = π * scale(), t = translate(); clipExtent([ [ t[0] - k, t[1] - k ], [ t[0] + k, t[1] + k ] ]); } } else if (clipAuto) { v = null; } return v; }; return m.clipExtent(null); } (d3.geo.mercator = function() { return d3_geo_mercatorProjection(d3_geo_mercator); }).raw = d3_geo_mercator; var d3_geo_orthographic = d3_geo_azimuthal(function() { return 1; }, Math.asin); (d3.geo.orthographic = function() { return d3_geo_projection(d3_geo_orthographic); }).raw = d3_geo_orthographic; var d3_geo_stereographic = d3_geo_azimuthal(function(cosλcosφ) { return 1 / (1 + cosλcosφ); }, function(ρ) { return 2 * Math.atan(ρ); }); (d3.geo.stereographic = function() { return d3_geo_projection(d3_geo_stereographic); }).raw = d3_geo_stereographic; function d3_geo_transverseMercator(λ, φ) { var B = Math.cos(φ) * Math.sin(λ); return [ Math.log((1 + B) / (1 - B)) / 2, Math.atan2(Math.tan(φ), Math.cos(λ)) ]; } d3_geo_transverseMercator.invert = function(x, y) { return [ Math.atan2(d3_sinh(x), Math.cos(y)), d3_asin(Math.sin(y) / d3_cosh(x)) ]; }; (d3.geo.transverseMercator = function() { return d3_geo_mercatorProjection(d3_geo_transverseMercator); }).raw = d3_geo_transverseMercator; d3.geom = {}; d3.svg = {}; function d3_svg_line(projection) { var x = d3_svg_lineX, y = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, tension = .7; function line(data) { var segments = [], points = [], i = -1, n = data.length, d, fx = d3_functor(x), fy = d3_functor(y); function segment() { segments.push("M", interpolate(projection(points), tension)); } while (++i < n) { if (defined.call(this, d = data[i], i)) { points.push([ +fx.call(this, d, i), +fy.call(this, d, i) ]); } else if (points.length) { segment(); points = []; } } if (points.length) segment(); return segments.length ? segments.join("") : null; } line.x = function(_) { if (!arguments.length) return x; x = _; return line; }; line.y = function(_) { if (!arguments.length) return y; y = _; return line; }; line.defined = function(_) { if (!arguments.length) return defined; defined = _; return line; }; line.interpolate = function(_) { if (!arguments.length) return interpolateKey; if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key; return line; }; line.tension = function(_) { if (!arguments.length) return tension; tension = _; return line; }; return line; } d3.svg.line = function() { return d3_svg_line(d3_identity); }; function d3_svg_lineX(d) { return d[0]; } function d3_svg_lineY(d) { return d[1]; } var d3_svg_lineInterpolators = d3.map({ linear: d3_svg_lineLinear, "linear-closed": d3_svg_lineLinearClosed, "step-before": d3_svg_lineStepBefore, "step-after": d3_svg_lineStepAfter, basis: d3_svg_lineBasis, "basis-open": d3_svg_lineBasisOpen, "basis-closed": d3_svg_lineBasisClosed, bundle: d3_svg_lineBundle, cardinal: d3_svg_lineCardinal, "cardinal-open": d3_svg_lineCardinalOpen, "cardinal-closed": d3_svg_lineCardinalClosed, monotone: d3_svg_lineMonotone }); d3_svg_lineInterpolators.forEach(function(key, value) { value.key = key; value.closed = /-closed$/.test(key); }); function d3_svg_lineLinear(points) { return points.join("L"); } function d3_svg_lineLinearClosed(points) { return d3_svg_lineLinear(points) + "Z"; } function d3_svg_lineStepBefore(points) { var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ]; while (++i < n) path.push("V", (p = points[i])[1], "H", p[0]); return path.join(""); } function d3_svg_lineStepAfter(points) { var i = 0, n = points.length, p = points[0], path = [ p[0], ",", p[1] ]; while (++i < n) path.push("H", (p = points[i])[0], "V", p[1]); return path.join(""); } function d3_svg_lineCardinalOpen(points, tension) { return points.length < 4 ? d3_svg_lineLinear(points) : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1), d3_svg_lineCardinalTangents(points, tension)); } function d3_svg_lineCardinalClosed(points, tension) { return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite((points.push(points[0]), points), d3_svg_lineCardinalTangents([ points[points.length - 2] ].concat(points, [ points[1] ]), tension)); } function d3_svg_lineCardinal(points, tension) { return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineCardinalTangents(points, tension)); } function d3_svg_lineHermite(points, tangents) { if (tangents.length < 1 || points.length != tangents.length && points.length != tangents.length + 2) { return d3_svg_lineLinear(points); } var quad = points.length != tangents.length, path = "", p0 = points[0], p = points[1], t0 = tangents[0], t = t0, pi = 1; if (quad) { path += "Q" + (p[0] - t0[0] * 2 / 3) + "," + (p[1] - t0[1] * 2 / 3) + "," + p[0] + "," + p[1]; p0 = points[1]; pi = 2; } if (tangents.length > 1) { t = tangents[1]; p = points[pi]; pi++; path += "C" + (p0[0] + t0[0]) + "," + (p0[1] + t0[1]) + "," + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1]; for (var i = 2; i < tangents.length; i++, pi++) { p = points[pi]; t = tangents[i]; path += "S" + (p[0] - t[0]) + "," + (p[1] - t[1]) + "," + p[0] + "," + p[1]; } } if (quad) { var lp = points[pi]; path += "Q" + (p[0] + t[0] * 2 / 3) + "," + (p[1] + t[1] * 2 / 3) + "," + lp[0] + "," + lp[1]; } return path; } function d3_svg_lineCardinalTangents(points, tension) { var tangents = [], a = (1 - tension) / 2, p0, p1 = points[0], p2 = points[1], i = 1, n = points.length; while (++i < n) { p0 = p1; p1 = p2; p2 = points[i]; tangents.push([ a * (p2[0] - p0[0]), a * (p2[1] - p0[1]) ]); } return tangents; } function d3_svg_lineBasis(points) { if (points.length < 3) return d3_svg_lineLinear(points); var i = 1, n = points.length, pi = points[0], x0 = pi[0], y0 = pi[1], px = [ x0, x0, x0, (pi = points[1])[0] ], py = [ y0, y0, y0, pi[1] ], path = [ x0, ",", y0 ]; d3_svg_lineBasisBezier(path, px, py); while (++i < n) { pi = points[i]; px.shift(); px.push(pi[0]); py.shift(); py.push(pi[1]); d3_svg_lineBasisBezier(path, px, py); } i = -1; while (++i < 2) { px.shift(); px.push(pi[0]); py.shift(); py.push(pi[1]); d3_svg_lineBasisBezier(path, px, py); } return path.join(""); } function d3_svg_lineBasisOpen(points) { if (points.length < 4) return d3_svg_lineLinear(points); var path = [], i = -1, n = points.length, pi, px = [ 0 ], py = [ 0 ]; while (++i < 3) { pi = points[i]; px.push(pi[0]); py.push(pi[1]); } path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px) + "," + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)); --i; while (++i < n) { pi = points[i]; px.shift(); px.push(pi[0]); py.shift(); py.push(pi[1]); d3_svg_lineBasisBezier(path, px, py); } return path.join(""); } function d3_svg_lineBasisClosed(points) { var path, i = -1, n = points.length, m = n + 4, pi, px = [], py = []; while (++i < 4) { pi = points[i % n]; px.push(pi[0]); py.push(pi[1]); } path = [ d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, py) ]; --i; while (++i < m) { pi = points[i % n]; px.shift(); px.push(pi[0]); py.shift(); py.push(pi[1]); d3_svg_lineBasisBezier(path, px, py); } return path.join(""); } function d3_svg_lineBundle(points, tension) { var n = points.length - 1; if (n) { var x0 = points[0][0], y0 = points[0][1], dx = points[n][0] - x0, dy = points[n][1] - y0, i = -1, p, t; while (++i <= n) { p = points[i]; t = i / n; p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx); p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy); } } return d3_svg_lineBasis(points); } function d3_svg_lineDot4(a, b) { return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3]; } var d3_svg_lineBasisBezier1 = [ 0, 2 / 3, 1 / 3, 0 ], d3_svg_lineBasisBezier2 = [ 0, 1 / 3, 2 / 3, 0 ], d3_svg_lineBasisBezier3 = [ 0, 1 / 6, 2 / 3, 1 / 6 ]; function d3_svg_lineBasisBezier(path, x, y) { path.push("C", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x), ",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y)); } function d3_svg_lineSlope(p0, p1) { return (p1[1] - p0[1]) / (p1[0] - p0[0]); } function d3_svg_lineFiniteDifferences(points) { var i = 0, j = points.length - 1, m = [], p0 = points[0], p1 = points[1], d = m[0] = d3_svg_lineSlope(p0, p1); while (++i < j) { m[i] = (d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]))) / 2; } m[i] = d; return m; } function d3_svg_lineMonotoneTangents(points) { var tangents = [], d, a, b, s, m = d3_svg_lineFiniteDifferences(points), i = -1, j = points.length - 1; while (++i < j) { d = d3_svg_lineSlope(points[i], points[i + 1]); if (Math.abs(d) < 1e-6) { m[i] = m[i + 1] = 0; } else { a = m[i] / d; b = m[i + 1] / d; s = a * a + b * b; if (s > 9) { s = d * 3 / Math.sqrt(s); m[i] = s * a; m[i + 1] = s * b; } } } i = -1; while (++i <= j) { s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0]) / (6 * (1 + m[i] * m[i])); tangents.push([ s || 0, m[i] * s || 0 ]); } return tangents; } function d3_svg_lineMonotone(points) { return points.length < 3 ? d3_svg_lineLinear(points) : points[0] + d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points)); } d3.geom.hull = function(vertices) { var x = d3_svg_lineX, y = d3_svg_lineY; if (arguments.length) return hull(vertices); function hull(data) { if (data.length < 3) return []; var fx = d3_functor(x), fy = d3_functor(y), n = data.length, vertices, plen = n - 1, points = [], stack = [], d, i, j, h = 0, x1, y1, x2, y2, u, v, a, sp; if (fx === d3_svg_lineX && y === d3_svg_lineY) vertices = data; else for (i = 0, vertices = []; i < n; ++i) { vertices.push([ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]); } for (i = 1; i < n; ++i) { if (vertices[i][1] < vertices[h][1]) { h = i; } else if (vertices[i][1] == vertices[h][1]) { h = vertices[i][0] < vertices[h][0] ? i : h; } } for (i = 0; i < n; ++i) { if (i === h) continue; y1 = vertices[i][1] - vertices[h][1]; x1 = vertices[i][0] - vertices[h][0]; points.push({ angle: Math.atan2(y1, x1), index: i }); } points.sort(function(a, b) { return a.angle - b.angle; }); a = points[0].angle; v = points[0].index; u = 0; for (i = 1; i < plen; ++i) { j = points[i].index; if (a == points[i].angle) { x1 = vertices[v][0] - vertices[h][0]; y1 = vertices[v][1] - vertices[h][1]; x2 = vertices[j][0] - vertices[h][0]; y2 = vertices[j][1] - vertices[h][1]; if (x1 * x1 + y1 * y1 >= x2 * x2 + y2 * y2) { points[i].index = -1; } else { points[u].index = -1; a = points[i].angle; u = i; v = j; } } else { a = points[i].angle; u = i; v = j; } } stack.push(h); for (i = 0, j = 0; i < 2; ++j) { if (points[j].index !== -1) { stack.push(points[j].index); i++; } } sp = stack.length; for (;j < plen; ++j) { if (points[j].index === -1) continue; while (!d3_geom_hullCCW(stack[sp - 2], stack[sp - 1], points[j].index, vertices)) { --sp; } stack[sp++] = points[j].index; } var poly = []; for (i = 0; i < sp; ++i) { poly.push(data[stack[i]]); } return poly; } hull.x = function(_) { return arguments.length ? (x = _, hull) : x; }; hull.y = function(_) { return arguments.length ? (y = _, hull) : y; }; return hull; }; function d3_geom_hullCCW(i1, i2, i3, v) { var t, a, b, c, d, e, f; t = v[i1]; a = t[0]; b = t[1]; t = v[i2]; c = t[0]; d = t[1]; t = v[i3]; e = t[0]; f = t[1]; return (f - b) * (c - a) - (d - b) * (e - a) > 0; } d3.geom.polygon = function(coordinates) { coordinates.area = function() { var i = 0, n = coordinates.length, area = coordinates[n - 1][1] * coordinates[0][0] - coordinates[n - 1][0] * coordinates[0][1]; while (++i < n) { area += coordinates[i - 1][1] * coordinates[i][0] - coordinates[i - 1][0] * coordinates[i][1]; } return area * .5; }; coordinates.centroid = function(k) { var i = -1, n = coordinates.length, x = 0, y = 0, a, b = coordinates[n - 1], c; if (!arguments.length) k = -1 / (6 * coordinates.area()); while (++i < n) { a = b; b = coordinates[i]; c = a[0] * b[1] - b[0] * a[1]; x += (a[0] + b[0]) * c; y += (a[1] + b[1]) * c; } return [ x * k, y * k ]; }; coordinates.clip = function(subject) { var input, i = -1, n = coordinates.length, j, m, a = coordinates[n - 1], b, c, d; while (++i < n) { input = subject.slice(); subject.length = 0; b = coordinates[i]; c = input[(m = input.length) - 1]; j = -1; while (++j < m) { d = input[j]; if (d3_geom_polygonInside(d, a, b)) { if (!d3_geom_polygonInside(c, a, b)) { subject.push(d3_geom_polygonIntersect(c, d, a, b)); } subject.push(d); } else if (d3_geom_polygonInside(c, a, b)) { subject.push(d3_geom_polygonIntersect(c, d, a, b)); } c = d; } a = b; } return subject; }; return coordinates; }; function d3_geom_polygonInside(p, a, b) { return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]); } function d3_geom_polygonIntersect(c, d, a, b) { var x1 = c[0], x3 = a[0], x21 = d[0] - x1, x43 = b[0] - x3, y1 = c[1], y3 = a[1], y21 = d[1] - y1, y43 = b[1] - y3, ua = (x43 * (y1 - y3) - y43 * (x1 - x3)) / (y43 * x21 - x43 * y21); return [ x1 + ua * x21, y1 + ua * y21 ]; } d3.geom.delaunay = function(vertices) { var edges = vertices.map(function() { return []; }), triangles = []; d3_geom_voronoiTessellate(vertices, function(e) { edges[e.region.l.index].push(vertices[e.region.r.index]); }); edges.forEach(function(edge, i) { var v = vertices[i], cx = v[0], cy = v[1]; edge.forEach(function(v) { v.angle = Math.atan2(v[0] - cx, v[1] - cy); }); edge.sort(function(a, b) { return a.angle - b.angle; }); for (var j = 0, m = edge.length - 1; j < m; j++) { triangles.push([ v, edge[j], edge[j + 1] ]); } }); return triangles; }; d3.geom.voronoi = function(points) { var size = null, x = d3_svg_lineX, y = d3_svg_lineY, clip; if (arguments.length) return voronoi(points); function voronoi(data) { var points, polygons = data.map(function() { return []; }), fx = d3_functor(x), fy = d3_functor(y), d, i, n = data.length, Z = 1e6; if (fx === d3_svg_lineX && fy === d3_svg_lineY) points = data; else for (points = [], i = 0; i < n; ++i) { points.push([ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]); } d3_geom_voronoiTessellate(points, function(e) { var s1, s2, x1, x2, y1, y2; if (e.a === 1 && e.b >= 0) { s1 = e.ep.r; s2 = e.ep.l; } else { s1 = e.ep.l; s2 = e.ep.r; } if (e.a === 1) { y1 = s1 ? s1.y : -Z; x1 = e.c - e.b * y1; y2 = s2 ? s2.y : Z; x2 = e.c - e.b * y2; } else { x1 = s1 ? s1.x : -Z; y1 = e.c - e.a * x1; x2 = s2 ? s2.x : Z; y2 = e.c - e.a * x2; } var v1 = [ x1, y1 ], v2 = [ x2, y2 ]; polygons[e.region.l.index].push(v1, v2); polygons[e.region.r.index].push(v1, v2); }); polygons = polygons.map(function(polygon, i) { var cx = points[i][0], cy = points[i][1], angle = polygon.map(function(v) { return Math.atan2(v[0] - cx, v[1] - cy); }), order = d3.range(polygon.length).sort(function(a, b) { return angle[a] - angle[b]; }); return order.filter(function(d, i) { return !i || angle[d] - angle[order[i - 1]] > ε; }).map(function(d) { return polygon[d]; }); }); polygons.forEach(function(polygon, i) { var n = polygon.length; if (!n) return polygon.push([ -Z, -Z ], [ -Z, Z ], [ Z, Z ], [ Z, -Z ]); if (n > 2) return; var p0 = points[i], p1 = polygon[0], p2 = polygon[1], x0 = p0[0], y0 = p0[1], x1 = p1[0], y1 = p1[1], x2 = p2[0], y2 = p2[1], dx = Math.abs(x2 - x1), dy = y2 - y1; if (Math.abs(dy) < ε) { var y = y0 < y1 ? -Z : Z; polygon.push([ -Z, y ], [ Z, y ]); } else if (dx < ε) { var x = x0 < x1 ? -Z : Z; polygon.push([ x, -Z ], [ x, Z ]); } else { var y = (x2 - x1) * (y1 - y0) < (x1 - x0) * (y2 - y1) ? Z : -Z, z = Math.abs(dy) - dx; if (Math.abs(z) < ε) { polygon.push([ dy < 0 ? y : -y, y ]); } else { if (z > 0) y *= -1; polygon.push([ -Z, y ], [ Z, y ]); } } }); if (clip) for (i = 0; i < n; ++i) clip(polygons[i]); for (i = 0; i < n; ++i) polygons[i].point = data[i]; return polygons; } voronoi.x = function(_) { return arguments.length ? (x = _, voronoi) : x; }; voronoi.y = function(_) { return arguments.length ? (y = _, voronoi) : y; }; voronoi.size = function(_) { if (!arguments.length) return size; if (_ == null) { clip = null; } else { size = [ +_[0], +_[1] ]; clip = d3.geom.polygon([ [ 0, 0 ], [ 0, size[1] ], size, [ size[0], 0 ] ]).clip; } return voronoi; }; voronoi.links = function(data) { var points, graph = data.map(function() { return []; }), links = [], fx = d3_functor(x), fy = d3_functor(y), d, i, n = data.length; if (fx === d3_svg_lineX && fy === d3_svg_lineY) points = data; else for (i = 0; i < n; ++i) { points.push([ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]); } d3_geom_voronoiTessellate(points, function(e) { var l = e.region.l.index, r = e.region.r.index; if (graph[l][r]) return; graph[l][r] = graph[r][l] = true; links.push({ source: data[l], target: data[r] }); }); return links; }; voronoi.triangles = function(data) { if (x === d3_svg_lineX && y === d3_svg_lineY) return d3.geom.delaunay(data); var points, point, fx = d3_functor(x), fy = d3_functor(y), d, i, n; for (i = 0, points = [], n = data.length; i < n; ++i) { point = [ +fx.call(this, d = data[i], i), +fy.call(this, d, i) ]; point.data = d; points.push(point); } return d3.geom.delaunay(points).map(function(triangle) { return triangle.map(function(point) { return point.data; }); }); }; return voronoi; }; var d3_geom_voronoiOpposite = { l: "r", r: "l" }; function d3_geom_voronoiTessellate(points, callback) { var Sites = { list: points.map(function(v, i) { return { index: i, x: v[0], y: v[1] }; }).sort(function(a, b) { return a.y < b.y ? -1 : a.y > b.y ? 1 : a.x < b.x ? -1 : a.x > b.x ? 1 : 0; }), bottomSite: null }; var EdgeList = { list: [], leftEnd: null, rightEnd: null, init: function() { EdgeList.leftEnd = EdgeList.createHalfEdge(null, "l"); EdgeList.rightEnd = EdgeList.createHalfEdge(null, "l"); EdgeList.leftEnd.r = EdgeList.rightEnd; EdgeList.rightEnd.l = EdgeList.leftEnd; EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd); }, createHalfEdge: function(edge, side) { return { edge: edge, side: side, vertex: null, l: null, r: null }; }, insert: function(lb, he) { he.l = lb; he.r = lb.r; lb.r.l = he; lb.r = he; }, leftBound: function(p) { var he = EdgeList.leftEnd; do { he = he.r; } while (he != EdgeList.rightEnd && Geom.rightOf(he, p)); he = he.l; return he; }, del: function(he) { he.l.r = he.r; he.r.l = he.l; he.edge = null; }, right: function(he) { return he.r; }, left: function(he) { return he.l; }, leftRegion: function(he) { return he.edge == null ? Sites.bottomSite : he.edge.region[he.side]; }, rightRegion: function(he) { return he.edge == null ? Sites.bottomSite : he.edge.region[d3_geom_voronoiOpposite[he.side]]; } }; var Geom = { bisect: function(s1, s2) { var newEdge = { region: { l: s1, r: s2 }, ep: { l: null, r: null } }; var dx = s2.x - s1.x, dy = s2.y - s1.y, adx = dx > 0 ? dx : -dx, ady = dy > 0 ? dy : -dy; newEdge.c = s1.x * dx + s1.y * dy + (dx * dx + dy * dy) * .5; if (adx > ady) { newEdge.a = 1; newEdge.b = dy / dx; newEdge.c /= dx; } else { newEdge.b = 1; newEdge.a = dx / dy; newEdge.c /= dy; } return newEdge; }, intersect: function(el1, el2) { var e1 = el1.edge, e2 = el2.edge; if (!e1 || !e2 || e1.region.r == e2.region.r) { return null; } var d = e1.a * e2.b - e1.b * e2.a; if (Math.abs(d) < 1e-10) { return null; } var xint = (e1.c * e2.b - e2.c * e1.b) / d, yint = (e2.c * e1.a - e1.c * e2.a) / d, e1r = e1.region.r, e2r = e2.region.r, el, e; if (e1r.y < e2r.y || e1r.y == e2r.y && e1r.x < e2r.x) { el = el1; e = e1; } else { el = el2; e = e2; } var rightOfSite = xint >= e.region.r.x; if (rightOfSite && el.side === "l" || !rightOfSite && el.side === "r") { return null; } return { x: xint, y: yint }; }, rightOf: function(he, p) { var e = he.edge, topsite = e.region.r, rightOfSite = p.x > topsite.x; if (rightOfSite && he.side === "l") { return 1; } if (!rightOfSite && he.side === "r") { return 0; } if (e.a === 1) { var dyp = p.y - topsite.y, dxp = p.x - topsite.x, fast = 0, above = 0; if (!rightOfSite && e.b < 0 || rightOfSite && e.b >= 0) { above = fast = dyp >= e.b * dxp; } else { above = p.x + p.y * e.b > e.c; if (e.b < 0) { above = !above; } if (!above) { fast = 1; } } if (!fast) { var dxs = topsite.x - e.region.l.x; above = e.b * (dxp * dxp - dyp * dyp) < dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b); if (e.b < 0) { above = !above; } } } else { var yl = e.c - e.a * p.x, t1 = p.y - yl, t2 = p.x - topsite.x, t3 = yl - topsite.y; above = t1 * t1 > t2 * t2 + t3 * t3; } return he.side === "l" ? above : !above; }, endPoint: function(edge, side, site) { edge.ep[side] = site; if (!edge.ep[d3_geom_voronoiOpposite[side]]) return; callback(edge); }, distance: function(s, t) { var dx = s.x - t.x, dy = s.y - t.y; return Math.sqrt(dx * dx + dy * dy); } }; var EventQueue = { list: [], insert: function(he, site, offset) { he.vertex = site; he.ystar = site.y + offset; for (var i = 0, list = EventQueue.list, l = list.length; i < l; i++) { var next = list[i]; if (he.ystar > next.ystar || he.ystar == next.ystar && site.x > next.vertex.x) { continue; } else { break; } } list.splice(i, 0, he); }, del: function(he) { for (var i = 0, ls = EventQueue.list, l = ls.length; i < l && ls[i] != he; ++i) {} ls.splice(i, 1); }, empty: function() { return EventQueue.list.length === 0; }, nextEvent: function(he) { for (var i = 0, ls = EventQueue.list, l = ls.length; i < l; ++i) { if (ls[i] == he) return ls[i + 1]; } return null; }, min: function() { var elem = EventQueue.list[0]; return { x: elem.vertex.x, y: elem.ystar }; }, extractMin: function() { return EventQueue.list.shift(); } }; EdgeList.init(); Sites.bottomSite = Sites.list.shift(); var newSite = Sites.list.shift(), newIntStar; var lbnd, rbnd, llbnd, rrbnd, bisector; var bot, top, temp, p, v; var e, pm; while (true) { if (!EventQueue.empty()) { newIntStar = EventQueue.min(); } if (newSite && (EventQueue.empty() || newSite.y < newIntStar.y || newSite.y == newIntStar.y && newSite.x < newIntStar.x)) { lbnd = EdgeList.leftBound(newSite); rbnd = EdgeList.right(lbnd); bot = EdgeList.rightRegion(lbnd); e = Geom.bisect(bot, newSite); bisector = EdgeList.createHalfEdge(e, "l"); EdgeList.insert(lbnd, bisector); p = Geom.intersect(lbnd, bisector); if (p) { EventQueue.del(lbnd); EventQueue.insert(lbnd, p, Geom.distance(p, newSite)); } lbnd = bisector; bisector = EdgeList.createHalfEdge(e, "r"); EdgeList.insert(lbnd, bisector); p = Geom.intersect(bisector, rbnd); if (p) { EventQueue.insert(bisector, p, Geom.distance(p, newSite)); } newSite = Sites.list.shift(); } else if (!EventQueue.empty()) { lbnd = EventQueue.extractMin(); llbnd = EdgeList.left(lbnd); rbnd = EdgeList.right(lbnd); rrbnd = EdgeList.right(rbnd); bot = EdgeList.leftRegion(lbnd); top = EdgeList.rightRegion(rbnd); v = lbnd.vertex; Geom.endPoint(lbnd.edge, lbnd.side, v); Geom.endPoint(rbnd.edge, rbnd.side, v); EdgeList.del(lbnd); EventQueue.del(rbnd); EdgeList.del(rbnd); pm = "l"; if (bot.y > top.y) { temp = bot; bot = top; top = temp; pm = "r"; } e = Geom.bisect(bot, top); bisector = EdgeList.createHalfEdge(e, pm); EdgeList.insert(llbnd, bisector); Geom.endPoint(e, d3_geom_voronoiOpposite[pm], v); p = Geom.intersect(llbnd, bisector); if (p) { EventQueue.del(llbnd); EventQueue.insert(llbnd, p, Geom.distance(p, bot)); } p = Geom.intersect(bisector, rrbnd); if (p) { EventQueue.insert(bisector, p, Geom.distance(p, bot)); } } else { break; } } for (lbnd = EdgeList.right(EdgeList.leftEnd); lbnd != EdgeList.rightEnd; lbnd = EdgeList.right(lbnd)) { callback(lbnd.edge); } } d3.geom.quadtree = function(points, x1, y1, x2, y2) { var x = d3_svg_lineX, y = d3_svg_lineY, compat; if (compat = arguments.length) { x = d3_geom_quadtreeCompatX; y = d3_geom_quadtreeCompatY; if (compat === 3) { y2 = y1; x2 = x1; y1 = x1 = 0; } return quadtree(points); } function quadtree(data) { var d, fx = d3_functor(x), fy = d3_functor(y), xs, ys, i, n, x1_, y1_, x2_, y2_; if (x1 != null) { x1_ = x1, y1_ = y1, x2_ = x2, y2_ = y2; } else { x2_ = y2_ = -(x1_ = y1_ = Infinity); xs = [], ys = []; n = data.length; if (compat) for (i = 0; i < n; ++i) { d = data[i]; if (d.x < x1_) x1_ = d.x; if (d.y < y1_) y1_ = d.y; if (d.x > x2_) x2_ = d.x; if (d.y > y2_) y2_ = d.y; xs.push(d.x); ys.push(d.y); } else for (i = 0; i < n; ++i) { var x_ = +fx(d = data[i], i), y_ = +fy(d, i); if (x_ < x1_) x1_ = x_; if (y_ < y1_) y1_ = y_; if (x_ > x2_) x2_ = x_; if (y_ > y2_) y2_ = y_; xs.push(x_); ys.push(y_); } } var dx = x2_ - x1_, dy = y2_ - y1_; if (dx > dy) y2_ = y1_ + dx; else x2_ = x1_ + dy; function insert(n, d, x, y, x1, y1, x2, y2) { if (isNaN(x) || isNaN(y)) return; if (n.leaf) { var nx = n.x, ny = n.y; if (nx != null) { if (Math.abs(nx - x) + Math.abs(ny - y) < .01) { insertChild(n, d, x, y, x1, y1, x2, y2); } else { var nPoint = n.point; n.x = n.y = n.point = null; insertChild(n, nPoint, nx, ny, x1, y1, x2, y2); insertChild(n, d, x, y, x1, y1, x2, y2); } } else { n.x = x, n.y = y, n.point = d; } } else { insertChild(n, d, x, y, x1, y1, x2, y2); } } function insertChild(n, d, x, y, x1, y1, x2, y2) { var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, right = x >= sx, bottom = y >= sy, i = (bottom << 1) + right; n.leaf = false; n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode()); if (right) x1 = sx; else x2 = sx; if (bottom) y1 = sy; else y2 = sy; insert(n, d, x, y, x1, y1, x2, y2); } var root = d3_geom_quadtreeNode(); root.add = function(d) { insert(root, d, +fx(d, ++i), +fy(d, i), x1_, y1_, x2_, y2_); }; root.visit = function(f) { d3_geom_quadtreeVisit(f, root, x1_, y1_, x2_, y2_); }; i = -1; if (x1 == null) { while (++i < n) { insert(root, data[i], xs[i], ys[i], x1_, y1_, x2_, y2_); } --i; } else data.forEach(root.add); xs = ys = data = d = null; return root; } quadtree.x = function(_) { return arguments.length ? (x = _, quadtree) : x; }; quadtree.y = function(_) { return arguments.length ? (y = _, quadtree) : y; }; quadtree.size = function(_) { if (!arguments.length) return x1 == null ? null : [ x2, y2 ]; if (_ == null) { x1 = y1 = x2 = y2 = null; } else { x1 = y1 = 0; x2 = +_[0], y2 = +_[1]; } return quadtree; }; return quadtree; }; function d3_geom_quadtreeCompatX(d) { return d.x; } function d3_geom_quadtreeCompatY(d) { return d.y; } function d3_geom_quadtreeNode() { return { leaf: true, nodes: [], point: null, x: null, y: null }; } function d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) { if (!f(node, x1, y1, x2, y2)) { var sx = (x1 + x2) * .5, sy = (y1 + y2) * .5, children = node.nodes; if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy); if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy); if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2); if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2); } } d3.interpolateRgb = d3_interpolateRgb; function d3_interpolateRgb(a, b) { a = d3.rgb(a); b = d3.rgb(b); var ar = a.r, ag = a.g, ab = a.b, br = b.r - ar, bg = b.g - ag, bb = b.b - ab; return function(t) { return "#" + d3_rgb_hex(Math.round(ar + br * t)) + d3_rgb_hex(Math.round(ag + bg * t)) + d3_rgb_hex(Math.round(ab + bb * t)); }; } d3.transform = function(string) { var g = d3_document.createElementNS(d3.ns.prefix.svg, "g"); return (d3.transform = function(string) { g.setAttribute("transform", string); var t = g.transform.baseVal.consolidate(); return new d3_transform(t ? t.matrix : d3_transformIdentity); })(string); }; function d3_transform(m) { var r0 = [ m.a, m.b ], r1 = [ m.c, m.d ], kx = d3_transformNormalize(r0), kz = d3_transformDot(r0, r1), ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0; if (r0[0] * r1[1] < r1[0] * r0[1]) { r0[0] *= -1; r0[1] *= -1; kx *= -1; kz *= -1; } this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_degrees; this.translate = [ m.e, m.f ]; this.scale = [ kx, ky ]; this.skew = ky ? Math.atan2(kz, ky) * d3_degrees : 0; } d3_transform.prototype.toString = function() { return "translate(" + this.translate + ")rotate(" + this.rotate + ")skewX(" + this.skew + ")scale(" + this.scale + ")"; }; function d3_transformDot(a, b) { return a[0] * b[0] + a[1] * b[1]; } function d3_transformNormalize(a) { var k = Math.sqrt(d3_transformDot(a, a)); if (k) { a[0] /= k; a[1] /= k; } return k; } function d3_transformCombine(a, b, k) { a[0] += k * b[0]; a[1] += k * b[1]; return a; } var d3_transformIdentity = { a: 1, b: 0, c: 0, d: 1, e: 0, f: 0 }; d3.interpolateNumber = d3_interpolateNumber; function d3_interpolateNumber(a, b) { b -= a = +a; return function(t) { return a + b * t; }; } d3.interpolateTransform = d3_interpolateTransform; function d3_interpolateTransform(a, b) { var s = [], q = [], n, A = d3.transform(a), B = d3.transform(b), ta = A.translate, tb = B.translate, ra = A.rotate, rb = B.rotate, wa = A.skew, wb = B.skew, ka = A.scale, kb = B.scale; if (ta[0] != tb[0] || ta[1] != tb[1]) { s.push("translate(", null, ",", null, ")"); q.push({ i: 1, x: d3_interpolateNumber(ta[0], tb[0]) }, { i: 3, x: d3_interpolateNumber(ta[1], tb[1]) }); } else if (tb[0] || tb[1]) { s.push("translate(" + tb + ")"); } else { s.push(""); } if (ra != rb) { if (ra - rb > 180) rb += 360; else if (rb - ra > 180) ra += 360; q.push({ i: s.push(s.pop() + "rotate(", null, ")") - 2, x: d3_interpolateNumber(ra, rb) }); } else if (rb) { s.push(s.pop() + "rotate(" + rb + ")"); } if (wa != wb) { q.push({ i: s.push(s.pop() + "skewX(", null, ")") - 2, x: d3_interpolateNumber(wa, wb) }); } else if (wb) { s.push(s.pop() + "skewX(" + wb + ")"); } if (ka[0] != kb[0] || ka[1] != kb[1]) { n = s.push(s.pop() + "scale(", null, ",", null, ")"); q.push({ i: n - 4, x: d3_interpolateNumber(ka[0], kb[0]) }, { i: n - 2, x: d3_interpolateNumber(ka[1], kb[1]) }); } else if (kb[0] != 1 || kb[1] != 1) { s.push(s.pop() + "scale(" + kb + ")"); } n = q.length; return function(t) { var i = -1, o; while (++i < n) s[(o = q[i]).i] = o.x(t); return s.join(""); }; } d3.interpolateObject = d3_interpolateObject; function d3_interpolateObject(a, b) { var i = {}, c = {}, k; for (k in a) { if (k in b) { i[k] = d3_interpolateByName(k)(a[k], b[k]); } else { c[k] = a[k]; } } for (k in b) { if (!(k in a)) { c[k] = b[k]; } } return function(t) { for (k in i) c[k] = i[k](t); return c; }; } d3.interpolateString = d3_interpolateString; function d3_interpolateString(a, b) { var m, i, j, s0 = 0, s1 = 0, s = [], q = [], n, o; a = a + "", b = b + ""; d3_interpolate_number.lastIndex = 0; for (i = 0; m = d3_interpolate_number.exec(b); ++i) { if (m.index) s.push(b.substring(s0, s1 = m.index)); q.push({ i: s.length, x: m[0] }); s.push(null); s0 = d3_interpolate_number.lastIndex; } if (s0 < b.length) s.push(b.substring(s0)); for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) { o = q[i]; if (o.x == m[0]) { if (o.i) { if (s[o.i + 1] == null) { s[o.i - 1] += o.x; s.splice(o.i, 1); for (j = i + 1; j < n; ++j) q[j].i--; } else { s[o.i - 1] += o.x + s[o.i + 1]; s.splice(o.i, 2); for (j = i + 1; j < n; ++j) q[j].i -= 2; } } else { if (s[o.i + 1] == null) { s[o.i] = o.x; } else { s[o.i] = o.x + s[o.i + 1]; s.splice(o.i + 1, 1); for (j = i + 1; j < n; ++j) q[j].i--; } } q.splice(i, 1); n--; i--; } else { o.x = d3_interpolateNumber(parseFloat(m[0]), parseFloat(o.x)); } } while (i < n) { o = q.pop(); if (s[o.i + 1] == null) { s[o.i] = o.x; } else { s[o.i] = o.x + s[o.i + 1]; s.splice(o.i + 1, 1); } n--; } if (s.length === 1) { return s[0] == null ? q[0].x : function() { return b; }; } return function(t) { for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t); return s.join(""); }; } var d3_interpolate_number = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g; d3.interpolate = d3_interpolate; function d3_interpolate(a, b) { var i = d3.interpolators.length, f; while (--i >= 0 && !(f = d3.interpolators[i](a, b))) ; return f; } function d3_interpolateByName(name) { return name == "transform" ? d3_interpolateTransform : d3_interpolate; } d3.interpolators = [ function(a, b) { var t = typeof b; return (t === "string" || t !== typeof a ? d3_rgb_names.has(b) || /^(#|rgb\(|hsl\()/.test(b) ? d3_interpolateRgb : d3_interpolateString : b instanceof d3_Color ? d3_interpolateRgb : t === "object" ? Array.isArray(b) ? d3_interpolateArray : d3_interpolateObject : d3_interpolateNumber)(a, b); } ]; d3.interpolateArray = d3_interpolateArray; function d3_interpolateArray(a, b) { var x = [], c = [], na = a.length, nb = b.length, n0 = Math.min(a.length, b.length), i; for (i = 0; i < n0; ++i) x.push(d3_interpolate(a[i], b[i])); for (;i < na; ++i) c[i] = a[i]; for (;i < nb; ++i) c[i] = b[i]; return function(t) { for (i = 0; i < n0; ++i) c[i] = x[i](t); return c; }; } var d3_ease_default = function() { return d3_identity; }; var d3_ease = d3.map({ linear: d3_ease_default, poly: d3_ease_poly, quad: function() { return d3_ease_quad; }, cubic: function() { return d3_ease_cubic; }, sin: function() { return d3_ease_sin; }, exp: function() { return d3_ease_exp; }, circle: function() { return d3_ease_circle; }, elastic: d3_ease_elastic, back: d3_ease_back, bounce: function() { return d3_ease_bounce; } }); var d3_ease_mode = d3.map({ "in": d3_identity, out: d3_ease_reverse, "in-out": d3_ease_reflect, "out-in": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); } }); d3.ease = function(name) { var i = name.indexOf("-"), t = i >= 0 ? name.substring(0, i) : name, m = i >= 0 ? name.substring(i + 1) : "in"; t = d3_ease.get(t) || d3_ease_default; m = d3_ease_mode.get(m) || d3_identity; return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1)))); }; function d3_ease_clamp(f) { return function(t) { return t <= 0 ? 0 : t >= 1 ? 1 : f(t); }; } function d3_ease_reverse(f) { return function(t) { return 1 - f(1 - t); }; } function d3_ease_reflect(f) { return function(t) { return .5 * (t < .5 ? f(2 * t) : 2 - f(2 - 2 * t)); }; } function d3_ease_quad(t) { return t * t; } function d3_ease_cubic(t) { return t * t * t; } function d3_ease_cubicInOut(t) { if (t <= 0) return 0; if (t >= 1) return 1; var t2 = t * t, t3 = t2 * t; return 4 * (t < .5 ? t3 : 3 * (t - t2) + t3 - .75); } function d3_ease_poly(e) { return function(t) { return Math.pow(t, e); }; } function d3_ease_sin(t) { return 1 - Math.cos(t * π / 2); } function d3_ease_exp(t) { return Math.pow(2, 10 * (t - 1)); } function d3_ease_circle(t) { return 1 - Math.sqrt(1 - t * t); } function d3_ease_elastic(a, p) { var s; if (arguments.length < 2) p = .45; if (arguments.length) s = p / (2 * π) * Math.asin(1 / a); else a = 1, s = p / 4; return function(t) { return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * π / p); }; } function d3_ease_back(s) { if (!s) s = 1.70158; return function(t) { return t * t * ((s + 1) * t - s); }; } function d3_ease_bounce(t) { return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375; } d3.interpolateHcl = d3_interpolateHcl; function d3_interpolateHcl(a, b) { a = d3.hcl(a); b = d3.hcl(b); var ah = a.h, ac = a.c, al = a.l, bh = b.h - ah, bc = b.c - ac, bl = b.l - al; if (bh > 180) bh -= 360; else if (bh < -180) bh += 360; return function(t) { return d3_hcl_lab(ah + bh * t, ac + bc * t, al + bl * t) + ""; }; } d3.interpolateHsl = d3_interpolateHsl; function d3_interpolateHsl(a, b) { a = d3.hsl(a); b = d3.hsl(b); var h0 = a.h, s0 = a.s, l0 = a.l, h1 = b.h - h0, s1 = b.s - s0, l1 = b.l - l0; if (h1 > 180) h1 -= 360; else if (h1 < -180) h1 += 360; return function(t) { return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t) + ""; }; } d3.interpolateLab = d3_interpolateLab; function d3_interpolateLab(a, b) { a = d3.lab(a); b = d3.lab(b); var al = a.l, aa = a.a, ab = a.b, bl = b.l - al, ba = b.a - aa, bb = b.b - ab; return function(t) { return d3_lab_rgb(al + bl * t, aa + ba * t, ab + bb * t) + ""; }; } d3.interpolateRound = d3_interpolateRound; function d3_interpolateRound(a, b) { b -= a; return function(t) { return Math.round(a + b * t); }; } function d3_uninterpolateNumber(a, b) { b = b - (a = +a) ? 1 / (b - a) : 0; return function(x) { return (x - a) * b; }; } function d3_uninterpolateClamp(a, b) { b = b - (a = +a) ? 1 / (b - a) : 0; return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); }; } d3.layout = {}; d3.layout.bundle = function() { return function(links) { var paths = [], i = -1, n = links.length; while (++i < n) paths.push(d3_layout_bundlePath(links[i])); return paths; }; }; function d3_layout_bundlePath(link) { var start = link.source, end = link.target, lca = d3_layout_bundleLeastCommonAncestor(start, end), points = [ start ]; while (start !== lca) { start = start.parent; points.push(start); } var k = points.length; while (end !== lca) { points.splice(k, 0, end); end = end.parent; } return points; } function d3_layout_bundleAncestors(node) { var ancestors = [], parent = node.parent; while (parent != null) { ancestors.push(node); node = parent; parent = parent.parent; } ancestors.push(node); return ancestors; } function d3_layout_bundleLeastCommonAncestor(a, b) { if (a === b) return a; var aNodes = d3_layout_bundleAncestors(a), bNodes = d3_layout_bundleAncestors(b), aNode = aNodes.pop(), bNode = bNodes.pop(), sharedNode = null; while (aNode === bNode) { sharedNode = aNode; aNode = aNodes.pop(); bNode = bNodes.pop(); } return sharedNode; } d3.layout.chord = function() { var chord = {}, chords, groups, matrix, n, padding = 0, sortGroups, sortSubgroups, sortChords; function relayout() { var subgroups = {}, groupSums = [], groupIndex = d3.range(n), subgroupIndex = [], k, x, x0, i, j; chords = []; groups = []; k = 0, i = -1; while (++i < n) { x = 0, j = -1; while (++j < n) { x += matrix[i][j]; } groupSums.push(x); subgroupIndex.push(d3.range(n)); k += x; } if (sortGroups) { groupIndex.sort(function(a, b) { return sortGroups(groupSums[a], groupSums[b]); }); } if (sortSubgroups) { subgroupIndex.forEach(function(d, i) { d.sort(function(a, b) { return sortSubgroups(matrix[i][a], matrix[i][b]); }); }); } k = (2 * π - padding * n) / k; x = 0, i = -1; while (++i < n) { x0 = x, j = -1; while (++j < n) { var di = groupIndex[i], dj = subgroupIndex[di][j], v = matrix[di][dj], a0 = x, a1 = x += v * k; subgroups[di + "-" + dj] = { index: di, subindex: dj, startAngle: a0, endAngle: a1, value: v }; } groups[di] = { index: di, startAngle: x0, endAngle: x, value: (x - x0) / k }; x += padding; } i = -1; while (++i < n) { j = i - 1; while (++j < n) { var source = subgroups[i + "-" + j], target = subgroups[j + "-" + i]; if (source.value || target.value) { chords.push(source.value < target.value ? { source: target, target: source } : { source: source, target: target }); } } } if (sortChords) resort(); } function resort() { chords.sort(function(a, b) { return sortChords((a.source.value + a.target.value) / 2, (b.source.value + b.target.value) / 2); }); } chord.matrix = function(x) { if (!arguments.length) return matrix; n = (matrix = x) && matrix.length; chords = groups = null; return chord; }; chord.padding = function(x) { if (!arguments.length) return padding; padding = x; chords = groups = null; return chord; }; chord.sortGroups = function(x) { if (!arguments.length) return sortGroups; sortGroups = x; chords = groups = null; return chord; }; chord.sortSubgroups = function(x) { if (!arguments.length) return sortSubgroups; sortSubgroups = x; chords = null; return chord; }; chord.sortChords = function(x) { if (!arguments.length) return sortChords; sortChords = x; if (chords) resort(); return chord; }; chord.chords = function() { if (!chords) relayout(); return chords; }; chord.groups = function() { if (!groups) relayout(); return groups; }; return chord; }; d3.layout.force = function() { var force = {}, event = d3.dispatch("start", "tick", "end"), size = [ 1, 1 ], drag, alpha, friction = .9, linkDistance = d3_layout_forceLinkDistance, linkStrength = d3_layout_forceLinkStrength, charge = -30, gravity = .1, theta = .8, nodes = [], links = [], distances, strengths, charges; function repulse(node) { return function(quad, x1, _, x2) { if (quad.point !== node) { var dx = quad.cx - node.x, dy = quad.cy - node.y, dn = 1 / Math.sqrt(dx * dx + dy * dy); if ((x2 - x1) * dn < theta) { var k = quad.charge * dn * dn; node.px -= dx * k; node.py -= dy * k; return true; } if (quad.point && isFinite(dn)) { var k = quad.pointCharge * dn * dn; node.px -= dx * k; node.py -= dy * k; } } return !quad.charge; }; } force.tick = function() { if ((alpha *= .99) < .005) { event.end({ type: "end", alpha: alpha = 0 }); return true; } var n = nodes.length, m = links.length, q, i, o, s, t, l, k, x, y; for (i = 0; i < m; ++i) { o = links[i]; s = o.source; t = o.target; x = t.x - s.x; y = t.y - s.y; if (l = x * x + y * y) { l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l; x *= l; y *= l; t.x -= x * (k = s.weight / (t.weight + s.weight)); t.y -= y * k; s.x += x * (k = 1 - k); s.y += y * k; } } if (k = alpha * gravity) { x = size[0] / 2; y = size[1] / 2; i = -1; if (k) while (++i < n) { o = nodes[i]; o.x += (x - o.x) * k; o.y += (y - o.y) * k; } } if (charge) { d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges); i = -1; while (++i < n) { if (!(o = nodes[i]).fixed) { q.visit(repulse(o)); } } } i = -1; while (++i < n) { o = nodes[i]; if (o.fixed) { o.x = o.px; o.y = o.py; } else { o.x -= (o.px - (o.px = o.x)) * friction; o.y -= (o.py - (o.py = o.y)) * friction; } } event.tick({ type: "tick", alpha: alpha }); }; force.nodes = function(x) { if (!arguments.length) return nodes; nodes = x; return force; }; force.links = function(x) { if (!arguments.length) return links; links = x; return force; }; force.size = function(x) { if (!arguments.length) return size; size = x; return force; }; force.linkDistance = function(x) { if (!arguments.length) return linkDistance; linkDistance = typeof x === "function" ? x : +x; return force; }; force.distance = force.linkDistance; force.linkStrength = function(x) { if (!arguments.length) return linkStrength; linkStrength = typeof x === "function" ? x : +x; return force; }; force.friction = function(x) { if (!arguments.length) return friction; friction = +x; return force; }; force.charge = function(x) { if (!arguments.length) return charge; charge = typeof x === "function" ? x : +x; return force; }; force.gravity = function(x) { if (!arguments.length) return gravity; gravity = +x; return force; }; force.theta = function(x) { if (!arguments.length) return theta; theta = +x; return force; }; force.alpha = function(x) { if (!arguments.length) return alpha; x = +x; if (alpha) { if (x > 0) alpha = x; else alpha = 0; } else if (x > 0) { event.start({ type: "start", alpha: alpha = x }); d3.timer(force.tick); } return force; }; force.start = function() { var i, j, n = nodes.length, m = links.length, w = size[0], h = size[1], neighbors, o; for (i = 0; i < n; ++i) { (o = nodes[i]).index = i; o.weight = 0; } for (i = 0; i < m; ++i) { o = links[i]; if (typeof o.source == "number") o.source = nodes[o.source]; if (typeof o.target == "number") o.target = nodes[o.target]; ++o.source.weight; ++o.target.weight; } for (i = 0; i < n; ++i) { o = nodes[i]; if (isNaN(o.x)) o.x = position("x", w); if (isNaN(o.y)) o.y = position("y", h); if (isNaN(o.px)) o.px = o.x; if (isNaN(o.py)) o.py = o.y; } distances = []; if (typeof linkDistance === "function") for (i = 0; i < m; ++i) distances[i] = +linkDistance.call(this, links[i], i); else for (i = 0; i < m; ++i) distances[i] = linkDistance; strengths = []; if (typeof linkStrength === "function") for (i = 0; i < m; ++i) strengths[i] = +linkStrength.call(this, links[i], i); else for (i = 0; i < m; ++i) strengths[i] = linkStrength; charges = []; if (typeof charge === "function") for (i = 0; i < n; ++i) charges[i] = +charge.call(this, nodes[i], i); else for (i = 0; i < n; ++i) charges[i] = charge; function position(dimension, size) { var neighbors = neighbor(i), j = -1, m = neighbors.length, x; while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x; return Math.random() * size; } function neighbor() { if (!neighbors) { neighbors = []; for (j = 0; j < n; ++j) { neighbors[j] = []; } for (j = 0; j < m; ++j) { var o = links[j]; neighbors[o.source.index].push(o.target); neighbors[o.target.index].push(o.source); } } return neighbors[i]; } return force.resume(); }; force.resume = function() { return force.alpha(.1); }; force.stop = function() { return force.alpha(0); }; force.drag = function() { if (!drag) drag = d3.behavior.drag().origin(d3_identity).on("dragstart.force", d3_layout_forceDragstart).on("drag.force", dragmove).on("dragend.force", d3_layout_forceDragend); if (!arguments.length) return drag; this.on("mouseover.force", d3_layout_forceMouseover).on("mouseout.force", d3_layout_forceMouseout).call(drag); }; function dragmove(d) { d.px = d3.event.x, d.py = d3.event.y; force.resume(); } return d3.rebind(force, event, "on"); }; function d3_layout_forceDragstart(d) { d.fixed |= 2; } function d3_layout_forceDragend(d) { d.fixed &= ~6; } function d3_layout_forceMouseover(d) { d.fixed |= 4; d.px = d.x, d.py = d.y; } function d3_layout_forceMouseout(d) { d.fixed &= ~4; } function d3_layout_forceAccumulate(quad, alpha, charges) { var cx = 0, cy = 0; quad.charge = 0; if (!quad.leaf) { var nodes = quad.nodes, n = nodes.length, i = -1, c; while (++i < n) { c = nodes[i]; if (c == null) continue; d3_layout_forceAccumulate(c, alpha, charges); quad.charge += c.charge; cx += c.charge * c.cx; cy += c.charge * c.cy; } } if (quad.point) { if (!quad.leaf) { quad.point.x += Math.random() - .5; quad.point.y += Math.random() - .5; } var k = alpha * charges[quad.point.index]; quad.charge += quad.pointCharge = k; cx += k * quad.point.x; cy += k * quad.point.y; } quad.cx = cx / quad.charge; quad.cy = cy / quad.charge; } var d3_layout_forceLinkDistance = 20, d3_layout_forceLinkStrength = 1; d3.layout.hierarchy = function() { var sort = d3_layout_hierarchySort, children = d3_layout_hierarchyChildren, value = d3_layout_hierarchyValue; function recurse(node, depth, nodes) { var childs = children.call(hierarchy, node, depth); node.depth = depth; nodes.push(node); if (childs && (n = childs.length)) { var i = -1, n, c = node.children = [], v = 0, j = depth + 1, d; while (++i < n) { d = recurse(childs[i], j, nodes); d.parent = node; c.push(d); v += d.value; } if (sort) c.sort(sort); if (value) node.value = v; } else if (value) { node.value = +value.call(hierarchy, node, depth) || 0; } return node; } function revalue(node, depth) { var children = node.children, v = 0; if (children && (n = children.length)) { var i = -1, n, j = depth + 1; while (++i < n) v += revalue(children[i], j); } else if (value) { v = +value.call(hierarchy, node, depth) || 0; } if (value) node.value = v; return v; } function hierarchy(d) { var nodes = []; recurse(d, 0, nodes); return nodes; } hierarchy.sort = function(x) { if (!arguments.length) return sort; sort = x; return hierarchy; }; hierarchy.children = function(x) { if (!arguments.length) return children; children = x; return hierarchy; }; hierarchy.value = function(x) { if (!arguments.length) return value; value = x; return hierarchy; }; hierarchy.revalue = function(root) { revalue(root, 0); return root; }; return hierarchy; }; function d3_layout_hierarchyRebind(object, hierarchy) { d3.rebind(object, hierarchy, "sort", "children", "value"); object.nodes = object; object.links = d3_layout_hierarchyLinks; return object; } function d3_layout_hierarchyChildren(d) { return d.children; } function d3_layout_hierarchyValue(d) { return d.value; } function d3_layout_hierarchySort(a, b) { return b.value - a.value; } function d3_layout_hierarchyLinks(nodes) { return d3.merge(nodes.map(function(parent) { return (parent.children || []).map(function(child) { return { source: parent, target: child }; }); })); } d3.layout.partition = function() { var hierarchy = d3.layout.hierarchy(), size = [ 1, 1 ]; function position(node, x, dx, dy) { var children = node.children; node.x = x; node.y = node.depth * dy; node.dx = dx; node.dy = dy; if (children && (n = children.length)) { var i = -1, n, c, d; dx = node.value ? dx / node.value : 0; while (++i < n) { position(c = children[i], x, d = c.value * dx, dy); x += d; } } } function depth(node) { var children = node.children, d = 0; if (children && (n = children.length)) { var i = -1, n; while (++i < n) d = Math.max(d, depth(children[i])); } return 1 + d; } function partition(d, i) { var nodes = hierarchy.call(this, d, i); position(nodes[0], 0, size[0], size[1] / depth(nodes[0])); return nodes; } partition.size = function(x) { if (!arguments.length) return size; size = x; return partition; }; return d3_layout_hierarchyRebind(partition, hierarchy); }; d3.layout.pie = function() { var value = Number, sort = d3_layout_pieSortByValue, startAngle = 0, endAngle = 2 * π; function pie(data) { var values = data.map(function(d, i) { return +value.call(pie, d, i); }); var a = +(typeof startAngle === "function" ? startAngle.apply(this, arguments) : startAngle); var k = ((typeof endAngle === "function" ? endAngle.apply(this, arguments) : endAngle) - a) / d3.sum(values); var index = d3.range(data.length); if (sort != null) index.sort(sort === d3_layout_pieSortByValue ? function(i, j) { return values[j] - values[i]; } : function(i, j) { return sort(data[i], data[j]); }); var arcs = []; index.forEach(function(i) { var d; arcs[i] = { data: data[i], value: d = values[i], startAngle: a, endAngle: a += d * k }; }); return arcs; } pie.value = function(x) { if (!arguments.length) return value; value = x; return pie; }; pie.sort = function(x) { if (!arguments.length) return sort; sort = x; return pie; }; pie.startAngle = function(x) { if (!arguments.length) return startAngle; startAngle = x; return pie; }; pie.endAngle = function(x) { if (!arguments.length) return endAngle; endAngle = x; return pie; }; return pie; }; var d3_layout_pieSortByValue = {}; d3.layout.stack = function() { var values = d3_identity, order = d3_layout_stackOrderDefault, offset = d3_layout_stackOffsetZero, out = d3_layout_stackOut, x = d3_layout_stackX, y = d3_layout_stackY; function stack(data, index) { var series = data.map(function(d, i) { return values.call(stack, d, i); }); var points = series.map(function(d) { return d.map(function(v, i) { return [ x.call(stack, v, i), y.call(stack, v, i) ]; }); }); var orders = order.call(stack, points, index); series = d3.permute(series, orders); points = d3.permute(points, orders); var offsets = offset.call(stack, points, index); var n = series.length, m = series[0].length, i, j, o; for (j = 0; j < m; ++j) { out.call(stack, series[0][j], o = offsets[j], points[0][j][1]); for (i = 1; i < n; ++i) { out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]); } } return data; } stack.values = function(x) { if (!arguments.length) return values; values = x; return stack; }; stack.order = function(x) { if (!arguments.length) return order; order = typeof x === "function" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault; return stack; }; stack.offset = function(x) { if (!arguments.length) return offset; offset = typeof x === "function" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero; return stack; }; stack.x = function(z) { if (!arguments.length) return x; x = z; return stack; }; stack.y = function(z) { if (!arguments.length) return y; y = z; return stack; }; stack.out = function(z) { if (!arguments.length) return out; out = z; return stack; }; return stack; }; function d3_layout_stackX(d) { return d.x; } function d3_layout_stackY(d) { return d.y; } function d3_layout_stackOut(d, y0, y) { d.y0 = y0; d.y = y; } var d3_layout_stackOrders = d3.map({ "inside-out": function(data) { var n = data.length, i, j, max = data.map(d3_layout_stackMaxIndex), sums = data.map(d3_layout_stackReduceSum), index = d3.range(n).sort(function(a, b) { return max[a] - max[b]; }), top = 0, bottom = 0, tops = [], bottoms = []; for (i = 0; i < n; ++i) { j = index[i]; if (top < bottom) { top += sums[j]; tops.push(j); } else { bottom += sums[j]; bottoms.push(j); } } return bottoms.reverse().concat(tops); }, reverse: function(data) { return d3.range(data.length).reverse(); }, "default": d3_layout_stackOrderDefault }); var d3_layout_stackOffsets = d3.map({ silhouette: function(data) { var n = data.length, m = data[0].length, sums = [], max = 0, i, j, o, y0 = []; for (j = 0; j < m; ++j) { for (i = 0, o = 0; i < n; i++) o += data[i][j][1]; if (o > max) max = o; sums.push(o); } for (j = 0; j < m; ++j) { y0[j] = (max - sums[j]) / 2; } return y0; }, wiggle: function(data) { var n = data.length, x = data[0], m = x.length, i, j, k, s1, s2, s3, dx, o, o0, y0 = []; y0[0] = o = o0 = 0; for (j = 1; j < m; ++j) { for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1]; for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) { for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) { s3 += (data[k][j][1] - data[k][j - 1][1]) / dx; } s2 += s3 * data[i][j][1]; } y0[j] = o -= s1 ? s2 / s1 * dx : 0; if (o < o0) o0 = o; } for (j = 0; j < m; ++j) y0[j] -= o0; return y0; }, expand: function(data) { var n = data.length, m = data[0].length, k = 1 / n, i, j, o, y0 = []; for (j = 0; j < m; ++j) { for (i = 0, o = 0; i < n; i++) o += data[i][j][1]; if (o) for (i = 0; i < n; i++) data[i][j][1] /= o; else for (i = 0; i < n; i++) data[i][j][1] = k; } for (j = 0; j < m; ++j) y0[j] = 0; return y0; }, zero: d3_layout_stackOffsetZero }); function d3_layout_stackOrderDefault(data) { return d3.range(data.length); } function d3_layout_stackOffsetZero(data) { var j = -1, m = data[0].length, y0 = []; while (++j < m) y0[j] = 0; return y0; } function d3_layout_stackMaxIndex(array) { var i = 1, j = 0, v = array[0][1], k, n = array.length; for (;i < n; ++i) { if ((k = array[i][1]) > v) { j = i; v = k; } } return j; } function d3_layout_stackReduceSum(d) { return d.reduce(d3_layout_stackSum, 0); } function d3_layout_stackSum(p, d) { return p + d[1]; } d3.layout.histogram = function() { var frequency = true, valuer = Number, ranger = d3_layout_histogramRange, binner = d3_layout_histogramBinSturges; function histogram(data, i) { var bins = [], values = data.map(valuer, this), range = ranger.call(this, values, i), thresholds = binner.call(this, range, values, i), bin, i = -1, n = values.length, m = thresholds.length - 1, k = frequency ? 1 : 1 / n, x; while (++i < m) { bin = bins[i] = []; bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]); bin.y = 0; } if (m > 0) { i = -1; while (++i < n) { x = values[i]; if (x >= range[0] && x <= range[1]) { bin = bins[d3.bisect(thresholds, x, 1, m) - 1]; bin.y += k; bin.push(data[i]); } } } return bins; } histogram.value = function(x) { if (!arguments.length) return valuer; valuer = x; return histogram; }; histogram.range = function(x) { if (!arguments.length) return ranger; ranger = d3_functor(x); return histogram; }; histogram.bins = function(x) { if (!arguments.length) return binner; binner = typeof x === "number" ? function(range) { return d3_layout_histogramBinFixed(range, x); } : d3_functor(x); return histogram; }; histogram.frequency = function(x) { if (!arguments.length) return frequency; frequency = !!x; return histogram; }; return histogram; }; function d3_layout_histogramBinSturges(range, values) { return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1)); } function d3_layout_histogramBinFixed(range, n) { var x = -1, b = +range[0], m = (range[1] - b) / n, f = []; while (++x <= n) f[x] = m * x + b; return f; } function d3_layout_histogramRange(values) { return [ d3.min(values), d3.max(values) ]; } d3.layout.tree = function() { var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ]; function tree(d, i) { var nodes = hierarchy.call(this, d, i), root = nodes[0]; function firstWalk(node, previousSibling) { var children = node.children, layout = node._tree; if (children && (n = children.length)) { var n, firstChild = children[0], previousChild, ancestor = firstChild, child, i = -1; while (++i < n) { child = children[i]; firstWalk(child, previousChild); ancestor = apportion(child, previousChild, ancestor); previousChild = child; } d3_layout_treeShift(node); var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim); if (previousSibling) { layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling); layout.mod = layout.prelim - midpoint; } else { layout.prelim = midpoint; } } else { if (previousSibling) { layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling); } } } function secondWalk(node, x) { node.x = node._tree.prelim + x; var children = node.children; if (children && (n = children.length)) { var i = -1, n; x += node._tree.mod; while (++i < n) { secondWalk(children[i], x); } } } function apportion(node, previousSibling, ancestor) { if (previousSibling) { var vip = node, vop = node, vim = previousSibling, vom = node.parent.children[0], sip = vip._tree.mod, sop = vop._tree.mod, sim = vim._tree.mod, som = vom._tree.mod, shift; while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) { vom = d3_layout_treeLeft(vom); vop = d3_layout_treeRight(vop); vop._tree.ancestor = node; shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip); if (shift > 0) { d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift); sip += shift; sop += shift; } sim += vim._tree.mod; sip += vip._tree.mod; som += vom._tree.mod; sop += vop._tree.mod; } if (vim && !d3_layout_treeRight(vop)) { vop._tree.thread = vim; vop._tree.mod += sim - sop; } if (vip && !d3_layout_treeLeft(vom)) { vom._tree.thread = vip; vom._tree.mod += sip - som; ancestor = node; } } return ancestor; } d3_layout_treeVisitAfter(root, function(node, previousSibling) { node._tree = { ancestor: node, prelim: 0, mod: 0, change: 0, shift: 0, number: previousSibling ? previousSibling._tree.number + 1 : 0 }; }); firstWalk(root); secondWalk(root, -root._tree.prelim); var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost), right = d3_layout_treeSearch(root, d3_layout_treeRightmost), deep = d3_layout_treeSearch(root, d3_layout_treeDeepest), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2, y1 = deep.depth || 1; d3_layout_treeVisitAfter(root, function(node) { node.x = (node.x - x0) / (x1 - x0) * size[0]; node.y = node.depth / y1 * size[1]; delete node._tree; }); return nodes; } tree.separation = function(x) { if (!arguments.length) return separation; separation = x; return tree; }; tree.size = function(x) { if (!arguments.length) return size; size = x; return tree; }; return d3_layout_hierarchyRebind(tree, hierarchy); }; function d3_layout_treeSeparation(a, b) { return a.parent == b.parent ? 1 : 2; } function d3_layout_treeLeft(node) { var children = node.children; return children && children.length ? children[0] : node._tree.thread; } function d3_layout_treeRight(node) { var children = node.children, n; return children && (n = children.length) ? children[n - 1] : node._tree.thread; } function d3_layout_treeSearch(node, compare) { var children = node.children; if (children && (n = children.length)) { var child, n, i = -1; while (++i < n) { if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) { node = child; } } } return node; } function d3_layout_treeRightmost(a, b) { return a.x - b.x; } function d3_layout_treeLeftmost(a, b) { return b.x - a.x; } function d3_layout_treeDeepest(a, b) { return a.depth - b.depth; } function d3_layout_treeVisitAfter(node, callback) { function visit(node, previousSibling) { var children = node.children; if (children && (n = children.length)) { var child, previousChild = null, i = -1, n; while (++i < n) { child = children[i]; visit(child, previousChild); previousChild = child; } } callback(node, previousSibling); } visit(node, null); } function d3_layout_treeShift(node) { var shift = 0, change = 0, children = node.children, i = children.length, child; while (--i >= 0) { child = children[i]._tree; child.prelim += shift; child.mod += shift; shift += child.shift + (change += child.change); } } function d3_layout_treeMove(ancestor, node, shift) { ancestor = ancestor._tree; node = node._tree; var change = shift / (node.number - ancestor.number); ancestor.change += change; node.change -= change; node.shift += shift; node.prelim += shift; node.mod += shift; } function d3_layout_treeAncestor(vim, node, ancestor) { return vim._tree.ancestor.parent == node.parent ? vim._tree.ancestor : ancestor; } d3.layout.pack = function() { var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort), padding = 0, size = [ 1, 1 ]; function pack(d, i) { var nodes = hierarchy.call(this, d, i), root = nodes[0]; root.x = 0; root.y = 0; d3_layout_treeVisitAfter(root, function(d) { d.r = Math.sqrt(d.value); }); d3_layout_treeVisitAfter(root, d3_layout_packSiblings); var w = size[0], h = size[1], k = Math.max(2 * root.r / w, 2 * root.r / h); if (padding > 0) { var dr = padding * k / 2; d3_layout_treeVisitAfter(root, function(d) { d.r += dr; }); d3_layout_treeVisitAfter(root, d3_layout_packSiblings); d3_layout_treeVisitAfter(root, function(d) { d.r -= dr; }); k = Math.max(2 * root.r / w, 2 * root.r / h); } d3_layout_packTransform(root, w / 2, h / 2, 1 / k); return nodes; } pack.size = function(x) { if (!arguments.length) return size; size = x; return pack; }; pack.padding = function(_) { if (!arguments.length) return padding; padding = +_; return pack; }; return d3_layout_hierarchyRebind(pack, hierarchy); }; function d3_layout_packSort(a, b) { return a.value - b.value; } function d3_layout_packInsert(a, b) { var c = a._pack_next; a._pack_next = b; b._pack_prev = a; b._pack_next = c; c._pack_prev = b; } function d3_layout_packSplice(a, b) { a._pack_next = b; b._pack_prev = a; } function d3_layout_packIntersects(a, b) { var dx = b.x - a.x, dy = b.y - a.y, dr = a.r + b.r; return dr * dr - dx * dx - dy * dy > .001; } function d3_layout_packSiblings(node) { if (!(nodes = node.children) || !(n = nodes.length)) return; var nodes, xMin = Infinity, xMax = -Infinity, yMin = Infinity, yMax = -Infinity, a, b, c, i, j, k, n; function bound(node) { xMin = Math.min(node.x - node.r, xMin); xMax = Math.max(node.x + node.r, xMax); yMin = Math.min(node.y - node.r, yMin); yMax = Math.max(node.y + node.r, yMax); } nodes.forEach(d3_layout_packLink); a = nodes[0]; a.x = -a.r; a.y = 0; bound(a); if (n > 1) { b = nodes[1]; b.x = b.r; b.y = 0; bound(b); if (n > 2) { c = nodes[2]; d3_layout_packPlace(a, b, c); bound(c); d3_layout_packInsert(a, c); a._pack_prev = c; d3_layout_packInsert(c, b); b = a._pack_next; for (i = 3; i < n; i++) { d3_layout_packPlace(a, b, c = nodes[i]); var isect = 0, s1 = 1, s2 = 1; for (j = b._pack_next; j !== b; j = j._pack_next, s1++) { if (d3_layout_packIntersects(j, c)) { isect = 1; break; } } if (isect == 1) { for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) { if (d3_layout_packIntersects(k, c)) { break; } } } if (isect) { if (s1 < s2 || s1 == s2 && b.r < a.r) d3_layout_packSplice(a, b = j); else d3_layout_packSplice(a = k, b); i--; } else { d3_layout_packInsert(a, c); b = c; bound(c); } } } } var cx = (xMin + xMax) / 2, cy = (yMin + yMax) / 2, cr = 0; for (i = 0; i < n; i++) { c = nodes[i]; c.x -= cx; c.y -= cy; cr = Math.max(cr, c.r + Math.sqrt(c.x * c.x + c.y * c.y)); } node.r = cr; nodes.forEach(d3_layout_packUnlink); } function d3_layout_packLink(node) { node._pack_next = node._pack_prev = node; } function d3_layout_packUnlink(node) { delete node._pack_next; delete node._pack_prev; } function d3_layout_packTransform(node, x, y, k) { var children = node.children; node.x = x += k * node.x; node.y = y += k * node.y; node.r *= k; if (children) { var i = -1, n = children.length; while (++i < n) d3_layout_packTransform(children[i], x, y, k); } } function d3_layout_packPlace(a, b, c) { var db = a.r + c.r, dx = b.x - a.x, dy = b.y - a.y; if (db && (dx || dy)) { var da = b.r + c.r, dc = dx * dx + dy * dy; da *= da; db *= db; var x = .5 + (db - da) / (2 * dc), y = Math.sqrt(Math.max(0, 2 * da * (db + dc) - (db -= dc) * db - da * da)) / (2 * dc); c.x = a.x + x * dx + y * dy; c.y = a.y + x * dy - y * dx; } else { c.x = a.x + db; c.y = a.y; } } d3.layout.cluster = function() { var hierarchy = d3.layout.hierarchy().sort(null).value(null), separation = d3_layout_treeSeparation, size = [ 1, 1 ]; function cluster(d, i) { var nodes = hierarchy.call(this, d, i), root = nodes[0], previousNode, x = 0; d3_layout_treeVisitAfter(root, function(node) { var children = node.children; if (children && children.length) { node.x = d3_layout_clusterX(children); node.y = d3_layout_clusterY(children); } else { node.x = previousNode ? x += separation(node, previousNode) : 0; node.y = 0; previousNode = node; } }); var left = d3_layout_clusterLeft(root), right = d3_layout_clusterRight(root), x0 = left.x - separation(left, right) / 2, x1 = right.x + separation(right, left) / 2; d3_layout_treeVisitAfter(root, function(node) { node.x = (node.x - x0) / (x1 - x0) * size[0]; node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1]; }); return nodes; } cluster.separation = function(x) { if (!arguments.length) return separation; separation = x; return cluster; }; cluster.size = function(x) { if (!arguments.length) return size; size = x; return cluster; }; return d3_layout_hierarchyRebind(cluster, hierarchy); }; function d3_layout_clusterY(children) { return 1 + d3.max(children, function(child) { return child.y; }); } function d3_layout_clusterX(children) { return children.reduce(function(x, child) { return x + child.x; }, 0) / children.length; } function d3_layout_clusterLeft(node) { var children = node.children; return children && children.length ? d3_layout_clusterLeft(children[0]) : node; } function d3_layout_clusterRight(node) { var children = node.children, n; return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node; } d3.layout.treemap = function() { var hierarchy = d3.layout.hierarchy(), round = Math.round, size = [ 1, 1 ], padding = null, pad = d3_layout_treemapPadNull, sticky = false, stickies, mode = "squarify", ratio = .5 * (1 + Math.sqrt(5)); function scale(children, k) { var i = -1, n = children.length, child, area; while (++i < n) { area = (child = children[i]).value * (k < 0 ? 0 : k); child.area = isNaN(area) || area <= 0 ? 0 : area; } } function squarify(node) { var children = node.children; if (children && children.length) { var rect = pad(node), row = [], remaining = children.slice(), child, best = Infinity, score, u = mode === "slice" ? rect.dx : mode === "dice" ? rect.dy : mode === "slice-dice" ? node.depth & 1 ? rect.dy : rect.dx : Math.min(rect.dx, rect.dy), n; scale(remaining, rect.dx * rect.dy / node.value); row.area = 0; while ((n = remaining.length) > 0) { row.push(child = remaining[n - 1]); row.area += child.area; if (mode !== "squarify" || (score = worst(row, u)) <= best) { remaining.pop(); best = score; } else { row.area -= row.pop().area; position(row, u, rect, false); u = Math.min(rect.dx, rect.dy); row.length = row.area = 0; best = Infinity; } } if (row.length) { position(row, u, rect, true); row.length = row.area = 0; } children.forEach(squarify); } } function stickify(node) { var children = node.children; if (children && children.length) { var rect = pad(node), remaining = children.slice(), child, row = []; scale(remaining, rect.dx * rect.dy / node.value); row.area = 0; while (child = remaining.pop()) { row.push(child); row.area += child.area; if (child.z != null) { position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length); row.length = row.area = 0; } } children.forEach(stickify); } } function worst(row, u) { var s = row.area, r, rmax = 0, rmin = Infinity, i = -1, n = row.length; while (++i < n) { if (!(r = row[i].area)) continue; if (r < rmin) rmin = r; if (r > rmax) rmax = r; } s *= s; u *= u; return s ? Math.max(u * rmax * ratio / s, s / (u * rmin * ratio)) : Infinity; } function position(row, u, rect, flush) { var i = -1, n = row.length, x = rect.x, y = rect.y, v = u ? round(row.area / u) : 0, o; if (u == rect.dx) { if (flush || v > rect.dy) v = rect.dy; while (++i < n) { o = row[i]; o.x = x; o.y = y; o.dy = v; x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0); } o.z = true; o.dx += rect.x + rect.dx - x; rect.y += v; rect.dy -= v; } else { if (flush || v > rect.dx) v = rect.dx; while (++i < n) { o = row[i]; o.x = x; o.y = y; o.dx = v; y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0); } o.z = false; o.dy += rect.y + rect.dy - y; rect.x += v; rect.dx -= v; } } function treemap(d) { var nodes = stickies || hierarchy(d), root = nodes[0]; root.x = 0; root.y = 0; root.dx = size[0]; root.dy = size[1]; if (stickies) hierarchy.revalue(root); scale([ root ], root.dx * root.dy / root.value); (stickies ? stickify : squarify)(root); if (sticky) stickies = nodes; return nodes; } treemap.size = function(x) { if (!arguments.length) return size; size = x; return treemap; }; treemap.padding = function(x) { if (!arguments.length) return padding; function padFunction(node) { var p = x.call(treemap, node, node.depth); return p == null ? d3_layout_treemapPadNull(node) : d3_layout_treemapPad(node, typeof p === "number" ? [ p, p, p, p ] : p); } function padConstant(node) { return d3_layout_treemapPad(node, x); } var type; pad = (padding = x) == null ? d3_layout_treemapPadNull : (type = typeof x) === "function" ? padFunction : type === "number" ? (x = [ x, x, x, x ], padConstant) : padConstant; return treemap; }; treemap.round = function(x) { if (!arguments.length) return round != Number; round = x ? Math.round : Number; return treemap; }; treemap.sticky = function(x) { if (!arguments.length) return sticky; sticky = x; stickies = null; return treemap; }; treemap.ratio = function(x) { if (!arguments.length) return ratio; ratio = x; return treemap; }; treemap.mode = function(x) { if (!arguments.length) return mode; mode = x + ""; return treemap; }; return d3_layout_hierarchyRebind(treemap, hierarchy); }; function d3_layout_treemapPadNull(node) { return { x: node.x, y: node.y, dx: node.dx, dy: node.dy }; } function d3_layout_treemapPad(node, padding) { var x = node.x + padding[3], y = node.y + padding[0], dx = node.dx - padding[1] - padding[3], dy = node.dy - padding[0] - padding[2]; if (dx < 0) { x += dx / 2; dx = 0; } if (dy < 0) { y += dy / 2; dy = 0; } return { x: x, y: y, dx: dx, dy: dy }; } d3.random = { normal: function(µ, σ) { var n = arguments.length; if (n < 2) σ = 1; if (n < 1) µ = 0; return function() { var x, y, r; do { x = Math.random() * 2 - 1; y = Math.random() * 2 - 1; r = x * x + y * y; } while (!r || r > 1); return µ + σ * x * Math.sqrt(-2 * Math.log(r) / r); }; }, logNormal: function() { var random = d3.random.normal.apply(d3, arguments); return function() { return Math.exp(random()); }; }, irwinHall: function(m) { return function() { for (var s = 0, j = 0; j < m; j++) s += Math.random(); return s / m; }; } }; d3.scale = {}; function d3_scaleExtent(domain) { var start = domain[0], stop = domain[domain.length - 1]; return start < stop ? [ start, stop ] : [ stop, start ]; } function d3_scaleRange(scale) { return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range()); } function d3_scale_bilinear(domain, range, uninterpolate, interpolate) { var u = uninterpolate(domain[0], domain[1]), i = interpolate(range[0], range[1]); return function(x) { return i(u(x)); }; } function d3_scale_nice(domain, nice) { var i0 = 0, i1 = domain.length - 1, x0 = domain[i0], x1 = domain[i1], dx; if (x1 < x0) { dx = i0, i0 = i1, i1 = dx; dx = x0, x0 = x1, x1 = dx; } if (nice = nice(x1 - x0)) { domain[i0] = nice.floor(x0); domain[i1] = nice.ceil(x1); } return domain; } function d3_scale_polylinear(domain, range, uninterpolate, interpolate) { var u = [], i = [], j = 0, k = Math.min(domain.length, range.length) - 1; if (domain[k] < domain[0]) { domain = domain.slice().reverse(); range = range.slice().reverse(); } while (++j <= k) { u.push(uninterpolate(domain[j - 1], domain[j])); i.push(interpolate(range[j - 1], range[j])); } return function(x) { var j = d3.bisect(domain, x, 1, k) - 1; return i[j](u[j](x)); }; } d3.scale.linear = function() { return d3_scale_linear([ 0, 1 ], [ 0, 1 ], d3_interpolate, false); }; function d3_scale_linear(domain, range, interpolate, clamp) { var output, input; function rescale() { var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear, uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber; output = linear(domain, range, uninterpolate, interpolate); input = linear(range, domain, uninterpolate, d3_interpolate); return scale; } function scale(x) { return output(x); } scale.invert = function(y) { return input(y); }; scale.domain = function(x) { if (!arguments.length) return domain; domain = x.map(Number); return rescale(); }; scale.range = function(x) { if (!arguments.length) return range; range = x; return rescale(); }; scale.rangeRound = function(x) { return scale.range(x).interpolate(d3_interpolateRound); }; scale.clamp = function(x) { if (!arguments.length) return clamp; clamp = x; return rescale(); }; scale.interpolate = function(x) { if (!arguments.length) return interpolate; interpolate = x; return rescale(); }; scale.ticks = function(m) { return d3_scale_linearTicks(domain, m); }; scale.tickFormat = function(m, format) { return d3_scale_linearTickFormat(domain, m, format); }; scale.nice = function() { d3_scale_nice(domain, d3_scale_linearNice); return rescale(); }; scale.copy = function() { return d3_scale_linear(domain, range, interpolate, clamp); }; return rescale(); } function d3_scale_linearRebind(scale, linear) { return d3.rebind(scale, linear, "range", "rangeRound", "interpolate", "clamp"); } function d3_scale_linearNice(dx) { dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1); return dx && { floor: function(x) { return Math.floor(x / dx) * dx; }, ceil: function(x) { return Math.ceil(x / dx) * dx; } }; } function d3_scale_linearTickRange(domain, m) { var extent = d3_scaleExtent(domain), span = extent[1] - extent[0], step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)), err = m / span * step; if (err <= .15) step *= 10; else if (err <= .35) step *= 5; else if (err <= .75) step *= 2; extent[0] = Math.ceil(extent[0] / step) * step; extent[1] = Math.floor(extent[1] / step) * step + step * .5; extent[2] = step; return extent; } function d3_scale_linearTicks(domain, m) { return d3.range.apply(d3, d3_scale_linearTickRange(domain, m)); } function d3_scale_linearTickFormat(domain, m, format) { var precision = -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01); return d3.format(format ? format.replace(d3_format_re, function(a, b, c, d, e, f, g, h, i, j) { return [ b, c, d, e, f, g, h, i || "." + (precision - (j === "%") * 2), j ].join(""); }) : ",." + precision + "f"); } d3.scale.log = function() { return d3_scale_log(d3.scale.linear().domain([ 0, Math.LN10 ]), 10, d3_scale_logp, d3_scale_powp); }; function d3_scale_log(linear, base, log, pow) { function scale(x) { return linear(log(x)); } scale.invert = function(x) { return pow(linear.invert(x)); }; scale.domain = function(x) { if (!arguments.length) return linear.domain().map(pow); if (x[0] < 0) log = d3_scale_logn, pow = d3_scale_pown; else log = d3_scale_logp, pow = d3_scale_powp; linear.domain(x.map(log)); return scale; }; scale.base = function(_) { if (!arguments.length) return base; base = +_; return scale; }; scale.nice = function() { linear.domain(d3_scale_nice(linear.domain(), d3_scale_logNice(base))); return scale; }; scale.ticks = function() { var extent = d3_scaleExtent(linear.domain()), ticks = []; if (extent.every(isFinite)) { var b = Math.log(base), i = Math.floor(extent[0] / b), j = Math.ceil(extent[1] / b), u = pow(extent[0]), v = pow(extent[1]), n = base % 1 ? 2 : base; if (log === d3_scale_logn) { ticks.push(-Math.pow(base, -i)); for (;i++ < j; ) for (var k = n - 1; k > 0; k--) ticks.push(-Math.pow(base, -i) * k); } else { for (;i < j; i++) for (var k = 1; k < n; k++) ticks.push(Math.pow(base, i) * k); ticks.push(Math.pow(base, i)); } for (i = 0; ticks[i] < u; i++) {} for (j = ticks.length; ticks[j - 1] > v; j--) {} ticks = ticks.slice(i, j); } return ticks; }; scale.tickFormat = function(n, format) { if (arguments.length < 2) format = d3_scale_logFormat; if (!arguments.length) return format; var b = Math.log(base), k = Math.max(.1, n / scale.ticks().length), f = log === d3_scale_logn ? (e = -1e-12, Math.floor) : (e = 1e-12, Math.ceil), e; return function(d) { return d / pow(b * f(log(d) / b + e)) <= k ? format(d) : ""; }; }; scale.copy = function() { return d3_scale_log(linear.copy(), base, log, pow); }; return d3_scale_linearRebind(scale, linear); } var d3_scale_logFormat = d3.format(".0e"); function d3_scale_logp(x) { return Math.log(x < 0 ? 0 : x); } function d3_scale_powp(x) { return Math.exp(x); } function d3_scale_logn(x) { return -Math.log(x > 0 ? 0 : -x); } function d3_scale_pown(x) { return -Math.exp(-x); } function d3_scale_logNice(base) { base = Math.log(base); var nice = { floor: function(x) { return Math.floor(x / base) * base; }, ceil: function(x) { return Math.ceil(x / base) * base; } }; return function() { return nice; }; } d3.scale.pow = function() { return d3_scale_pow(d3.scale.linear(), 1); }; function d3_scale_pow(linear, exponent) { var powp = d3_scale_powPow(exponent), powb = d3_scale_powPow(1 / exponent); function scale(x) { return linear(powp(x)); } scale.invert = function(x) { return powb(linear.invert(x)); }; scale.domain = function(x) { if (!arguments.length) return linear.domain().map(powb); linear.domain(x.map(powp)); return scale; }; scale.ticks = function(m) { return d3_scale_linearTicks(scale.domain(), m); }; scale.tickFormat = function(m, format) { return d3_scale_linearTickFormat(scale.domain(), m, format); }; scale.nice = function() { return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice)); }; scale.exponent = function(x) { if (!arguments.length) return exponent; var domain = scale.domain(); powp = d3_scale_powPow(exponent = x); powb = d3_scale_powPow(1 / exponent); return scale.domain(domain); }; scale.copy = function() { return d3_scale_pow(linear.copy(), exponent); }; return d3_scale_linearRebind(scale, linear); } function d3_scale_powPow(e) { return function(x) { return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e); }; } d3.scale.sqrt = function() { return d3.scale.pow().exponent(.5); }; d3.scale.ordinal = function() { return d3_scale_ordinal([], { t: "range", a: [ [] ] }); }; function d3_scale_ordinal(domain, ranger) { var index, range, rangeBand; function scale(x) { return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length]; } function steps(start, step) { return d3.range(domain.length).map(function(i) { return start + step * i; }); } scale.domain = function(x) { if (!arguments.length) return domain; domain = []; index = new d3_Map(); var i = -1, n = x.length, xi; while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi)); return scale[ranger.t].apply(scale, ranger.a); }; scale.range = function(x) { if (!arguments.length) return range; range = x; rangeBand = 0; ranger = { t: "range", a: arguments }; return scale; }; scale.rangePoints = function(x, padding) { if (arguments.length < 2) padding = 0; var start = x[0], stop = x[1], step = (stop - start) / (Math.max(1, domain.length - 1) + padding); range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step); rangeBand = 0; ranger = { t: "rangePoints", a: arguments }; return scale; }; scale.rangeBands = function(x, padding, outerPadding) { if (arguments.length < 2) padding = 0; if (arguments.length < 3) outerPadding = padding; var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = (stop - start) / (domain.length - padding + 2 * outerPadding); range = steps(start + step * outerPadding, step); if (reverse) range.reverse(); rangeBand = step * (1 - padding); ranger = { t: "rangeBands", a: arguments }; return scale; }; scale.rangeRoundBands = function(x, padding, outerPadding) { if (arguments.length < 2) padding = 0; if (arguments.length < 3) outerPadding = padding; var reverse = x[1] < x[0], start = x[reverse - 0], stop = x[1 - reverse], step = Math.floor((stop - start) / (domain.length - padding + 2 * outerPadding)), error = stop - start - (domain.length - padding) * step; range = steps(start + Math.round(error / 2), step); if (reverse) range.reverse(); rangeBand = Math.round(step * (1 - padding)); ranger = { t: "rangeRoundBands", a: arguments }; return scale; }; scale.rangeBand = function() { return rangeBand; }; scale.rangeExtent = function() { return d3_scaleExtent(ranger.a[0]); }; scale.copy = function() { return d3_scale_ordinal(domain, ranger); }; return scale.domain(domain); } d3.scale.category10 = function() { return d3.scale.ordinal().range(d3_category10); }; d3.scale.category20 = function() { return d3.scale.ordinal().range(d3_category20); }; d3.scale.category20b = function() { return d3.scale.ordinal().range(d3_category20b); }; d3.scale.category20c = function() { return d3.scale.ordinal().range(d3_category20c); }; var d3_category10 = [ "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf" ]; var d3_category20 = [ "#1f77b4", "#aec7e8", "#ff7f0e", "#ffbb78", "#2ca02c", "#98df8a", "#d62728", "#ff9896", "#9467bd", "#c5b0d5", "#8c564b", "#c49c94", "#e377c2", "#f7b6d2", "#7f7f7f", "#c7c7c7", "#bcbd22", "#dbdb8d", "#17becf", "#9edae5" ]; var d3_category20b = [ "#393b79", "#5254a3", "#6b6ecf", "#9c9ede", "#637939", "#8ca252", "#b5cf6b", "#cedb9c", "#8c6d31", "#bd9e39", "#e7ba52", "#e7cb94", "#843c39", "#ad494a", "#d6616b", "#e7969c", "#7b4173", "#a55194", "#ce6dbd", "#de9ed6" ]; var d3_category20c = [ "#3182bd", "#6baed6", "#9ecae1", "#c6dbef", "#e6550d", "#fd8d3c", "#fdae6b", "#fdd0a2", "#31a354", "#74c476", "#a1d99b", "#c7e9c0", "#756bb1", "#9e9ac8", "#bcbddc", "#dadaeb", "#636363", "#969696", "#bdbdbd", "#d9d9d9" ]; d3.scale.quantile = function() { return d3_scale_quantile([], []); }; function d3_scale_quantile(domain, range) { var thresholds; function rescale() { var k = 0, q = range.length; thresholds = []; while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q); return scale; } function scale(x) { if (isNaN(x = +x)) return NaN; return range[d3.bisect(thresholds, x)]; } scale.domain = function(x) { if (!arguments.length) return domain; domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending); return rescale(); }; scale.range = function(x) { if (!arguments.length) return range; range = x; return rescale(); }; scale.quantiles = function() { return thresholds; }; scale.copy = function() { return d3_scale_quantile(domain, range); }; return rescale(); } d3.scale.quantize = function() { return d3_scale_quantize(0, 1, [ 0, 1 ]); }; function d3_scale_quantize(x0, x1, range) { var kx, i; function scale(x) { return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))]; } function rescale() { kx = range.length / (x1 - x0); i = range.length - 1; return scale; } scale.domain = function(x) { if (!arguments.length) return [ x0, x1 ]; x0 = +x[0]; x1 = +x[x.length - 1]; return rescale(); }; scale.range = function(x) { if (!arguments.length) return range; range = x; return rescale(); }; scale.copy = function() { return d3_scale_quantize(x0, x1, range); }; return rescale(); } d3.scale.threshold = function() { return d3_scale_threshold([ .5 ], [ 0, 1 ]); }; function d3_scale_threshold(domain, range) { function scale(x) { return range[d3.bisect(domain, x)]; } scale.domain = function(_) { if (!arguments.length) return domain; domain = _; return scale; }; scale.range = function(_) { if (!arguments.length) return range; range = _; return scale; }; scale.copy = function() { return d3_scale_threshold(domain, range); }; return scale; } d3.scale.identity = function() { return d3_scale_identity([ 0, 1 ]); }; function d3_scale_identity(domain) { function identity(x) { return +x; } identity.invert = identity; identity.domain = identity.range = function(x) { if (!arguments.length) return domain; domain = x.map(identity); return identity; }; identity.ticks = function(m) { return d3_scale_linearTicks(domain, m); }; identity.tickFormat = function(m, format) { return d3_scale_linearTickFormat(domain, m, format); }; identity.copy = function() { return d3_scale_identity(domain); }; return identity; } d3.svg.arc = function() { var innerRadius = d3_svg_arcInnerRadius, outerRadius = d3_svg_arcOuterRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle; function arc() { var r0 = innerRadius.apply(this, arguments), r1 = outerRadius.apply(this, arguments), a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset, a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset, da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0), df = da < π ? "0" : "1", c0 = Math.cos(a0), s0 = Math.sin(a0), c1 = Math.cos(a1), s1 = Math.sin(a1); return da >= d3_svg_arcMax ? r0 ? "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "M0," + r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + -r0 + "A" + r0 + "," + r0 + " 0 1,0 0," + r0 + "Z" : "M0," + r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + -r1 + "A" + r1 + "," + r1 + " 0 1,1 0," + r1 + "Z" : r0 ? "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L" + r0 * c1 + "," + r0 * s1 + "A" + r0 + "," + r0 + " 0 " + df + ",0 " + r0 * c0 + "," + r0 * s0 + "Z" : "M" + r1 * c0 + "," + r1 * s0 + "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1 + "L0,0" + "Z"; } arc.innerRadius = function(v) { if (!arguments.length) return innerRadius; innerRadius = d3_functor(v); return arc; }; arc.outerRadius = function(v) { if (!arguments.length) return outerRadius; outerRadius = d3_functor(v); return arc; }; arc.startAngle = function(v) { if (!arguments.length) return startAngle; startAngle = d3_functor(v); return arc; }; arc.endAngle = function(v) { if (!arguments.length) return endAngle; endAngle = d3_functor(v); return arc; }; arc.centroid = function() { var r = (innerRadius.apply(this, arguments) + outerRadius.apply(this, arguments)) / 2, a = (startAngle.apply(this, arguments) + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset; return [ Math.cos(a) * r, Math.sin(a) * r ]; }; return arc; }; var d3_svg_arcOffset = -π / 2, d3_svg_arcMax = 2 * π - 1e-6; function d3_svg_arcInnerRadius(d) { return d.innerRadius; } function d3_svg_arcOuterRadius(d) { return d.outerRadius; } function d3_svg_arcStartAngle(d) { return d.startAngle; } function d3_svg_arcEndAngle(d) { return d.endAngle; } d3.svg.line.radial = function() { var line = d3_svg_line(d3_svg_lineRadial); line.radius = line.x, delete line.x; line.angle = line.y, delete line.y; return line; }; function d3_svg_lineRadial(points) { var point, i = -1, n = points.length, r, a; while (++i < n) { point = points[i]; r = point[0]; a = point[1] + d3_svg_arcOffset; point[0] = r * Math.cos(a); point[1] = r * Math.sin(a); } return points; } function d3_svg_area(projection) { var x0 = d3_svg_lineX, x1 = d3_svg_lineX, y0 = 0, y1 = d3_svg_lineY, defined = d3_true, interpolate = d3_svg_lineLinear, interpolateKey = interpolate.key, interpolateReverse = interpolate, L = "L", tension = .7; function area(data) { var segments = [], points0 = [], points1 = [], i = -1, n = data.length, d, fx0 = d3_functor(x0), fy0 = d3_functor(y0), fx1 = x0 === x1 ? function() { return x; } : d3_functor(x1), fy1 = y0 === y1 ? function() { return y; } : d3_functor(y1), x, y; function segment() { segments.push("M", interpolate(projection(points1), tension), L, interpolateReverse(projection(points0.reverse()), tension), "Z"); } while (++i < n) { if (defined.call(this, d = data[i], i)) { points0.push([ x = +fx0.call(this, d, i), y = +fy0.call(this, d, i) ]); points1.push([ +fx1.call(this, d, i), +fy1.call(this, d, i) ]); } else if (points0.length) { segment(); points0 = []; points1 = []; } } if (points0.length) segment(); return segments.length ? segments.join("") : null; } area.x = function(_) { if (!arguments.length) return x1; x0 = x1 = _; return area; }; area.x0 = function(_) { if (!arguments.length) return x0; x0 = _; return area; }; area.x1 = function(_) { if (!arguments.length) return x1; x1 = _; return area; }; area.y = function(_) { if (!arguments.length) return y1; y0 = y1 = _; return area; }; area.y0 = function(_) { if (!arguments.length) return y0; y0 = _; return area; }; area.y1 = function(_) { if (!arguments.length) return y1; y1 = _; return area; }; area.defined = function(_) { if (!arguments.length) return defined; defined = _; return area; }; area.interpolate = function(_) { if (!arguments.length) return interpolateKey; if (typeof _ === "function") interpolateKey = interpolate = _; else interpolateKey = (interpolate = d3_svg_lineInterpolators.get(_) || d3_svg_lineLinear).key; interpolateReverse = interpolate.reverse || interpolate; L = interpolate.closed ? "M" : "L"; return area; }; area.tension = function(_) { if (!arguments.length) return tension; tension = _; return area; }; return area; } d3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter; d3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore; d3.svg.area = function() { return d3_svg_area(d3_identity); }; d3.svg.area.radial = function() { var area = d3_svg_area(d3_svg_lineRadial); area.radius = area.x, delete area.x; area.innerRadius = area.x0, delete area.x0; area.outerRadius = area.x1, delete area.x1; area.angle = area.y, delete area.y; area.startAngle = area.y0, delete area.y0; area.endAngle = area.y1, delete area.y1; return area; }; d3.svg.chord = function() { var source = d3_source, target = d3_target, radius = d3_svg_chordRadius, startAngle = d3_svg_arcStartAngle, endAngle = d3_svg_arcEndAngle; function chord(d, i) { var s = subgroup(this, source, d, i), t = subgroup(this, target, d, i); return "M" + s.p0 + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t) ? curve(s.r, s.p1, s.r, s.p0) : curve(s.r, s.p1, t.r, t.p0) + arc(t.r, t.p1, t.a1 - t.a0) + curve(t.r, t.p1, s.r, s.p0)) + "Z"; } function subgroup(self, f, d, i) { var subgroup = f.call(self, d, i), r = radius.call(self, subgroup, i), a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset, a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset; return { r: r, a0: a0, a1: a1, p0: [ r * Math.cos(a0), r * Math.sin(a0) ], p1: [ r * Math.cos(a1), r * Math.sin(a1) ] }; } function equals(a, b) { return a.a0 == b.a0 && a.a1 == b.a1; } function arc(r, p, a) { return "A" + r + "," + r + " 0 " + +(a > π) + ",1 " + p; } function curve(r0, p0, r1, p1) { return "Q 0,0 " + p1; } chord.radius = function(v) { if (!arguments.length) return radius; radius = d3_functor(v); return chord; }; chord.source = function(v) { if (!arguments.length) return source; source = d3_functor(v); return chord; }; chord.target = function(v) { if (!arguments.length) return target; target = d3_functor(v); return chord; }; chord.startAngle = function(v) { if (!arguments.length) return startAngle; startAngle = d3_functor(v); return chord; }; chord.endAngle = function(v) { if (!arguments.length) return endAngle; endAngle = d3_functor(v); return chord; }; return chord; }; function d3_svg_chordRadius(d) { return d.radius; } d3.svg.diagonal = function() { var source = d3_source, target = d3_target, projection = d3_svg_diagonalProjection; function diagonal(d, i) { var p0 = source.call(this, d, i), p3 = target.call(this, d, i), m = (p0.y + p3.y) / 2, p = [ p0, { x: p0.x, y: m }, { x: p3.x, y: m }, p3 ]; p = p.map(projection); return "M" + p[0] + "C" + p[1] + " " + p[2] + " " + p[3]; } diagonal.source = function(x) { if (!arguments.length) return source; source = d3_functor(x); return diagonal; }; diagonal.target = function(x) { if (!arguments.length) return target; target = d3_functor(x); return diagonal; }; diagonal.projection = function(x) { if (!arguments.length) return projection; projection = x; return diagonal; }; return diagonal; }; function d3_svg_diagonalProjection(d) { return [ d.x, d.y ]; } d3.svg.diagonal.radial = function() { var diagonal = d3.svg.diagonal(), projection = d3_svg_diagonalProjection, projection_ = diagonal.projection; diagonal.projection = function(x) { return arguments.length ? projection_(d3_svg_diagonalRadialProjection(projection = x)) : projection; }; return diagonal; }; function d3_svg_diagonalRadialProjection(projection) { return function() { var d = projection.apply(this, arguments), r = d[0], a = d[1] + d3_svg_arcOffset; return [ r * Math.cos(a), r * Math.sin(a) ]; }; } d3.svg.symbol = function() { var type = d3_svg_symbolType, size = d3_svg_symbolSize; function symbol(d, i) { return (d3_svg_symbols.get(type.call(this, d, i)) || d3_svg_symbolCircle)(size.call(this, d, i)); } symbol.type = function(x) { if (!arguments.length) return type; type = d3_functor(x); return symbol; }; symbol.size = function(x) { if (!arguments.length) return size; size = d3_functor(x); return symbol; }; return symbol; }; function d3_svg_symbolSize() { return 64; } function d3_svg_symbolType() { return "circle"; } function d3_svg_symbolCircle(size) { var r = Math.sqrt(size / π); return "M0," + r + "A" + r + "," + r + " 0 1,1 0," + -r + "A" + r + "," + r + " 0 1,1 0," + r + "Z"; } var d3_svg_symbols = d3.map({ circle: d3_svg_symbolCircle, cross: function(size) { var r = Math.sqrt(size / 5) / 2; return "M" + -3 * r + "," + -r + "H" + -r + "V" + -3 * r + "H" + r + "V" + -r + "H" + 3 * r + "V" + r + "H" + r + "V" + 3 * r + "H" + -r + "V" + r + "H" + -3 * r + "Z"; }, diamond: function(size) { var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)), rx = ry * d3_svg_symbolTan30; return "M0," + -ry + "L" + rx + ",0" + " 0," + ry + " " + -rx + ",0" + "Z"; }, square: function(size) { var r = Math.sqrt(size) / 2; return "M" + -r + "," + -r + "L" + r + "," + -r + " " + r + "," + r + " " + -r + "," + r + "Z"; }, "triangle-down": function(size) { var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2; return "M0," + ry + "L" + rx + "," + -ry + " " + -rx + "," + -ry + "Z"; }, "triangle-up": function(size) { var rx = Math.sqrt(size / d3_svg_symbolSqrt3), ry = rx * d3_svg_symbolSqrt3 / 2; return "M0," + -ry + "L" + rx + "," + ry + " " + -rx + "," + ry + "Z"; } }); d3.svg.symbolTypes = d3_svg_symbols.keys(); var d3_svg_symbolSqrt3 = Math.sqrt(3), d3_svg_symbolTan30 = Math.tan(30 * d3_radians); function d3_transition(groups, id) { d3_arraySubclass(groups, d3_transitionPrototype); groups.id = id; return groups; } var d3_transitionPrototype = [], d3_transitionId = 0, d3_transitionInheritId, d3_transitionInherit = { ease: d3_ease_cubicInOut, delay: 0, duration: 250 }; d3_transitionPrototype.call = d3_selectionPrototype.call; d3_transitionPrototype.empty = d3_selectionPrototype.empty; d3_transitionPrototype.node = d3_selectionPrototype.node; d3.transition = function(selection) { return arguments.length ? d3_transitionInheritId ? selection.transition() : selection : d3_selectionRoot.transition(); }; d3.transition.prototype = d3_transitionPrototype; d3_transitionPrototype.select = function(selector) { var id = this.id, subgroups = [], subgroup, subnode, node; if (typeof selector !== "function") selector = d3_selection_selector(selector); for (var j = -1, m = this.length; ++j < m; ) { subgroups.push(subgroup = []); for (var group = this[j], i = -1, n = group.length; ++i < n; ) { if ((node = group[i]) && (subnode = selector.call(node, node.__data__, i))) { if ("__data__" in node) subnode.__data__ = node.__data__; d3_transitionNode(subnode, i, id, node.__transition__[id]); subgroup.push(subnode); } else { subgroup.push(null); } } } return d3_transition(subgroups, id); }; d3_transitionPrototype.selectAll = function(selector) { var id = this.id, subgroups = [], subgroup, subnodes, node, subnode, transition; if (typeof selector !== "function") selector = d3_selection_selectorAll(selector); for (var j = -1, m = this.length; ++j < m; ) { for (var group = this[j], i = -1, n = group.length; ++i < n; ) { if (node = group[i]) { transition = node.__transition__[id]; subnodes = selector.call(node, node.__data__, i); subgroups.push(subgroup = []); for (var k = -1, o = subnodes.length; ++k < o; ) { d3_transitionNode(subnode = subnodes[k], k, id, transition); subgroup.push(subnode); } } } } return d3_transition(subgroups, id); }; d3_transitionPrototype.filter = function(filter) { var subgroups = [], subgroup, group, node; if (typeof filter !== "function") filter = d3_selection_filter(filter); for (var j = 0, m = this.length; j < m; j++) { subgroups.push(subgroup = []); for (var group = this[j], i = 0, n = group.length; i < n; i++) { if ((node = group[i]) && filter.call(node, node.__data__, i)) { subgroup.push(node); } } } return d3_transition(subgroups, this.id, this.time).ease(this.ease()); }; d3_transitionPrototype.tween = function(name, tween) { var id = this.id; if (arguments.length < 2) return this.node().__transition__[id].tween.get(name); return d3_selection_each(this, tween == null ? function(node) { node.__transition__[id].tween.remove(name); } : function(node) { node.__transition__[id].tween.set(name, tween); }); }; function d3_transition_tween(groups, name, value, tween) { var id = groups.id; return d3_selection_each(groups, typeof value === "function" ? function(node, i, j) { node.__transition__[id].tween.set(name, tween(value.call(node, node.__data__, i, j))); } : (value = tween(value), function(node) { node.__transition__[id].tween.set(name, value); })); } d3_transitionPrototype.attr = function(nameNS, value) { if (arguments.length < 2) { for (value in nameNS) this.attr(value, nameNS[value]); return this; } var interpolate = d3_interpolateByName(nameNS), name = d3.ns.qualify(nameNS); function attrNull() { this.removeAttribute(name); } function attrNullNS() { this.removeAttributeNS(name.space, name.local); } return d3_transition_tween(this, "attr." + nameNS, value, function(b) { function attrString() { var a = this.getAttribute(name), i; return a !== b && (i = interpolate(a, b), function(t) { this.setAttribute(name, i(t)); }); } function attrStringNS() { var a = this.getAttributeNS(name.space, name.local), i; return a !== b && (i = interpolate(a, b), function(t) { this.setAttributeNS(name.space, name.local, i(t)); }); } return b == null ? name.local ? attrNullNS : attrNull : (b += "", name.local ? attrStringNS : attrString); }); }; d3_transitionPrototype.attrTween = function(nameNS, tween) { var name = d3.ns.qualify(nameNS); function attrTween(d, i) { var f = tween.call(this, d, i, this.getAttribute(name)); return f && function(t) { this.setAttribute(name, f(t)); }; } function attrTweenNS(d, i) { var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local)); return f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); }; } return this.tween("attr." + nameNS, name.local ? attrTweenNS : attrTween); }; d3_transitionPrototype.style = function(name, value, priority) { var n = arguments.length; if (n < 3) { if (typeof name !== "string") { if (n < 2) value = ""; for (priority in name) this.style(priority, name[priority], value); return this; } priority = ""; } var interpolate = d3_interpolateByName(name); function styleNull() { this.style.removeProperty(name); } return d3_transition_tween(this, "style." + name, value, function(b) { function styleString() { var a = d3_window.getComputedStyle(this, null).getPropertyValue(name), i; return a !== b && (i = interpolate(a, b), function(t) { this.style.setProperty(name, i(t), priority); }); } return b == null ? styleNull : (b += "", styleString); }); }; d3_transitionPrototype.styleTween = function(name, tween, priority) { if (arguments.length < 3) priority = ""; return this.tween("style." + name, function(d, i) { var f = tween.call(this, d, i, d3_window.getComputedStyle(this, null).getPropertyValue(name)); return f && function(t) { this.style.setProperty(name, f(t), priority); }; }); }; d3_transitionPrototype.text = function(value) { return d3_transition_tween(this, "text", value, d3_transition_text); }; function d3_transition_text(b) { if (b == null) b = ""; return function() { this.textContent = b; }; } d3_transitionPrototype.remove = function() { return this.each("end.transition", function() { var p; if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this); }); }; d3_transitionPrototype.ease = function(value) { var id = this.id; if (arguments.length < 1) return this.node().__transition__[id].ease; if (typeof value !== "function") value = d3.ease.apply(d3, arguments); return d3_selection_each(this, function(node) { node.__transition__[id].ease = value; }); }; d3_transitionPrototype.delay = function(value) { var id = this.id; return d3_selection_each(this, typeof value === "function" ? function(node, i, j) { node.__transition__[id].delay = value.call(node, node.__data__, i, j) | 0; } : (value |= 0, function(node) { node.__transition__[id].delay = value; })); }; d3_transitionPrototype.duration = function(value) { var id = this.id; return d3_selection_each(this, typeof value === "function" ? function(node, i, j) { node.__transition__[id].duration = Math.max(1, value.call(node, node.__data__, i, j) | 0); } : (value = Math.max(1, value | 0), function(node) { node.__transition__[id].duration = value; })); }; d3_transitionPrototype.each = function(type, listener) { var id = this.id; if (arguments.length < 2) { var inherit = d3_transitionInherit, inheritId = d3_transitionInheritId; d3_transitionInheritId = id; d3_selection_each(this, function(node, i, j) { d3_transitionInherit = node.__transition__[id]; type.call(node, node.__data__, i, j); }); d3_transitionInherit = inherit; d3_transitionInheritId = inheritId; } else { d3_selection_each(this, function(node) { node.__transition__[id].event.on(type, listener); }); } return this; }; d3_transitionPrototype.transition = function() { var id0 = this.id, id1 = ++d3_transitionId, subgroups = [], subgroup, group, node, transition; for (var j = 0, m = this.length; j < m; j++) { subgroups.push(subgroup = []); for (var group = this[j], i = 0, n = group.length; i < n; i++) { if (node = group[i]) { transition = Object.create(node.__transition__[id0]); transition.delay += transition.duration; d3_transitionNode(node, i, id1, transition); } subgroup.push(node); } } return d3_transition(subgroups, id1); }; function d3_transitionNode(node, i, id, inherit) { var lock = node.__transition__ || (node.__transition__ = { active: 0, count: 0 }), transition = lock[id]; if (!transition) { var time = inherit.time; transition = lock[id] = { tween: new d3_Map(), event: d3.dispatch("start", "end"), time: time, ease: inherit.ease, delay: inherit.delay, duration: inherit.duration }; ++lock.count; d3.timer(function(elapsed) { var d = node.__data__, ease = transition.ease, event = transition.event, delay = transition.delay, duration = transition.duration, tweened = []; return delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time), 1; function start(elapsed) { if (lock.active > id) return stop(); lock.active = id; event.start.call(node, d, i); transition.tween.forEach(function(key, value) { if (value = value.call(node, d, i)) { tweened.push(value); } }); if (!tick(elapsed)) d3.timer(tick, 0, time); return 1; } function tick(elapsed) { if (lock.active !== id) return stop(); var t = (elapsed - delay) / duration, e = ease(t), n = tweened.length; while (n > 0) { tweened[--n].call(node, e); } if (t >= 1) { stop(); event.end.call(node, d, i); return 1; } } function stop() { if (--lock.count) delete lock[id]; else delete node.__transition__; return 1; } }, 0, time); return transition; } } d3.svg.axis = function() { var scale = d3.scale.linear(), orient = d3_svg_axisDefaultOrient, tickMajorSize = 6, tickMinorSize = 6, tickEndSize = 6, tickPadding = 3, tickArguments_ = [ 10 ], tickValues = null, tickFormat_, tickSubdivide = 0; function axis(g) { g.each(function() { var g = d3.select(this); var ticks = tickValues == null ? scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain() : tickValues, tickFormat = tickFormat_ == null ? scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String : tickFormat_; var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide), subtick = g.selectAll(".tick.minor").data(subticks, String), subtickEnter = subtick.enter().insert("line", ".tick").attr("class", "tick minor").style("opacity", 1e-6), subtickExit = d3.transition(subtick.exit()).style("opacity", 1e-6).remove(), subtickUpdate = d3.transition(subtick).style("opacity", 1); var tick = g.selectAll(".tick.major").data(ticks, String), tickEnter = tick.enter().insert("g", "path").attr("class", "tick major").style("opacity", 1e-6), tickExit = d3.transition(tick.exit()).style("opacity", 1e-6).remove(), tickUpdate = d3.transition(tick).style("opacity", 1), tickTransform; var range = d3_scaleRange(scale), path = g.selectAll(".domain").data([ 0 ]), pathUpdate = (path.enter().append("path").attr("class", "domain"), d3.transition(path)); var scale1 = scale.copy(), scale0 = this.__chart__ || scale1; this.__chart__ = scale1; tickEnter.append("line"); tickEnter.append("text"); var lineEnter = tickEnter.select("line"), lineUpdate = tickUpdate.select("line"), text = tick.select("text").text(tickFormat), textEnter = tickEnter.select("text"), textUpdate = tickUpdate.select("text"); switch (orient) { case "bottom": { tickTransform = d3_svg_axisX; subtickEnter.attr("y2", tickMinorSize); subtickUpdate.attr("x2", 0).attr("y2", tickMinorSize); lineEnter.attr("y2", tickMajorSize); textEnter.attr("y", Math.max(tickMajorSize, 0) + tickPadding); lineUpdate.attr("x2", 0).attr("y2", tickMajorSize); textUpdate.attr("x", 0).attr("y", Math.max(tickMajorSize, 0) + tickPadding); text.attr("dy", ".71em").style("text-anchor", "middle"); pathUpdate.attr("d", "M" + range[0] + "," + tickEndSize + "V0H" + range[1] + "V" + tickEndSize); break; } case "top": { tickTransform = d3_svg_axisX; subtickEnter.attr("y2", -tickMinorSize); subtickUpdate.attr("x2", 0).attr("y2", -tickMinorSize); lineEnter.attr("y2", -tickMajorSize); textEnter.attr("y", -(Math.max(tickMajorSize, 0) + tickPadding)); lineUpdate.attr("x2", 0).attr("y2", -tickMajorSize); textUpdate.attr("x", 0).attr("y", -(Math.max(tickMajorSize, 0) + tickPadding)); text.attr("dy", "0em").style("text-anchor", "middle"); pathUpdate.attr("d", "M" + range[0] + "," + -tickEndSize + "V0H" + range[1] + "V" + -tickEndSize); break; } case "left": { tickTransform = d3_svg_axisY; subtickEnter.attr("x2", -tickMinorSize); subtickUpdate.attr("x2", -tickMinorSize).attr("y2", 0); lineEnter.attr("x2", -tickMajorSize); textEnter.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)); lineUpdate.attr("x2", -tickMajorSize).attr("y2", 0); textUpdate.attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("y", 0); text.attr("dy", ".32em").style("text-anchor", "end"); pathUpdate.attr("d", "M" + -tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + -tickEndSize); break; } case "right": { tickTransform = d3_svg_axisY; subtickEnter.attr("x2", tickMinorSize); subtickUpdate.attr("x2", tickMinorSize).attr("y2", 0); lineEnter.attr("x2", tickMajorSize); textEnter.attr("x", Math.max(tickMajorSize, 0) + tickPadding); lineUpdate.attr("x2", tickMajorSize).attr("y2", 0); textUpdate.attr("x", Math.max(tickMajorSize, 0) + tickPadding).attr("y", 0); text.attr("dy", ".32em").style("text-anchor", "start"); pathUpdate.attr("d", "M" + tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + tickEndSize); break; } } if (scale.ticks) { tickEnter.call(tickTransform, scale0); tickUpdate.call(tickTransform, scale1); tickExit.call(tickTransform, scale1); subtickEnter.call(tickTransform, scale0); subtickUpdate.call(tickTransform, scale1); subtickExit.call(tickTransform, scale1); } else { var dx = scale1.rangeBand() / 2, x = function(d) { return scale1(d) + dx; }; tickEnter.call(tickTransform, x); tickUpdate.call(tickTransform, x); } }); } axis.scale = function(x) { if (!arguments.length) return scale; scale = x; return axis; }; axis.orient = function(x) { if (!arguments.length) return orient; orient = x in d3_svg_axisOrients ? x + "" : d3_svg_axisDefaultOrient; return axis; }; axis.ticks = function() { if (!arguments.length) return tickArguments_; tickArguments_ = arguments; return axis; }; axis.tickValues = function(x) { if (!arguments.length) return tickValues; tickValues = x; return axis; }; axis.tickFormat = function(x) { if (!arguments.length) return tickFormat_; tickFormat_ = x; return axis; }; axis.tickSize = function(x, y) { if (!arguments.length) return tickMajorSize; var n = arguments.length - 1; tickMajorSize = +x; tickMinorSize = n > 1 ? +y : tickMajorSize; tickEndSize = n > 0 ? +arguments[n] : tickMajorSize; return axis; }; axis.tickPadding = function(x) { if (!arguments.length) return tickPadding; tickPadding = +x; return axis; }; axis.tickSubdivide = function(x) { if (!arguments.length) return tickSubdivide; tickSubdivide = +x; return axis; }; return axis; }; var d3_svg_axisDefaultOrient = "bottom", d3_svg_axisOrients = { top: 1, right: 1, bottom: 1, left: 1 }; function d3_svg_axisX(selection, x) { selection.attr("transform", function(d) { return "translate(" + x(d) + ",0)"; }); } function d3_svg_axisY(selection, y) { selection.attr("transform", function(d) { return "translate(0," + y(d) + ")"; }); } function d3_svg_axisSubdivide(scale, ticks, m) { subticks = []; if (m && ticks.length > 1) { var extent = d3_scaleExtent(scale.domain()), subticks, i = -1, n = ticks.length, d = (ticks[1] - ticks[0]) / ++m, j, v; while (++i < n) { for (j = m; --j > 0; ) { if ((v = +ticks[i] - j * d) >= extent[0]) { subticks.push(v); } } } for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1]; ) { subticks.push(v); } } return subticks; } d3.svg.brush = function() { var event = d3_eventDispatch(brush, "brushstart", "brush", "brushend"), x = null, y = null, resizes = d3_svg_brushResizes[0], extent = [ [ 0, 0 ], [ 0, 0 ] ], extentDomain; function brush(g) { g.each(function() { var g = d3.select(this), bg = g.selectAll(".background").data([ 0 ]), fg = g.selectAll(".extent").data([ 0 ]), tz = g.selectAll(".resize").data(resizes, String), e; g.style("pointer-events", "all").on("mousedown.brush", brushstart).on("touchstart.brush", brushstart); bg.enter().append("rect").attr("class", "background").style("visibility", "hidden").style("cursor", "crosshair"); fg.enter().append("rect").attr("class", "extent").style("cursor", "move"); tz.enter().append("g").attr("class", function(d) { return "resize " + d; }).style("cursor", function(d) { return d3_svg_brushCursor[d]; }).append("rect").attr("x", function(d) { return /[ew]$/.test(d) ? -3 : null; }).attr("y", function(d) { return /^[ns]/.test(d) ? -3 : null; }).attr("width", 6).attr("height", 6).style("visibility", "hidden"); tz.style("display", brush.empty() ? "none" : null); tz.exit().remove(); if (x) { e = d3_scaleRange(x); bg.attr("x", e[0]).attr("width", e[1] - e[0]); redrawX(g); } if (y) { e = d3_scaleRange(y); bg.attr("y", e[0]).attr("height", e[1] - e[0]); redrawY(g); } redraw(g); }); } function redraw(g) { g.selectAll(".resize").attr("transform", function(d) { return "translate(" + extent[+/e$/.test(d)][0] + "," + extent[+/^s/.test(d)][1] + ")"; }); } function redrawX(g) { g.select(".extent").attr("x", extent[0][0]); g.selectAll(".extent,.n>rect,.s>rect").attr("width", extent[1][0] - extent[0][0]); } function redrawY(g) { g.select(".extent").attr("y", extent[0][1]); g.selectAll(".extent,.e>rect,.w>rect").attr("height", extent[1][1] - extent[0][1]); } function brushstart() { var target = this, eventTarget = d3.select(d3.event.target), event_ = event.of(target, arguments), g = d3.select(target), resizing = eventTarget.datum(), resizingX = !/^(n|s)$/.test(resizing) && x, resizingY = !/^(e|w)$/.test(resizing) && y, dragging = eventTarget.classed("extent"), center, origin = mouse(), offset; var w = d3.select(d3_window).on("mousemove.brush", brushmove).on("mouseup.brush", brushend).on("touchmove.brush", brushmove).on("touchend.brush", brushend).on("keydown.brush", keydown).on("keyup.brush", keyup); if (dragging) { origin[0] = extent[0][0] - origin[0]; origin[1] = extent[0][1] - origin[1]; } else if (resizing) { var ex = +/w$/.test(resizing), ey = +/^n/.test(resizing); offset = [ extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1] ]; origin[0] = extent[ex][0]; origin[1] = extent[ey][1]; } else if (d3.event.altKey) center = origin.slice(); g.style("pointer-events", "none").selectAll(".resize").style("display", null); d3.select("body").style("cursor", eventTarget.style("cursor")); event_({ type: "brushstart" }); brushmove(); d3_eventCancel(); function mouse() { var touches = d3.event.changedTouches; return touches ? d3.touches(target, touches)[0] : d3.mouse(target); } function keydown() { if (d3.event.keyCode == 32) { if (!dragging) { center = null; origin[0] -= extent[1][0]; origin[1] -= extent[1][1]; dragging = 2; } d3_eventCancel(); } } function keyup() { if (d3.event.keyCode == 32 && dragging == 2) { origin[0] += extent[1][0]; origin[1] += extent[1][1]; dragging = 0; d3_eventCancel(); } } function brushmove() { var point = mouse(), moved = false; if (offset) { point[0] += offset[0]; point[1] += offset[1]; } if (!dragging) { if (d3.event.altKey) { if (!center) center = [ (extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2 ]; origin[0] = extent[+(point[0] < center[0])][0]; origin[1] = extent[+(point[1] < center[1])][1]; } else center = null; } if (resizingX && move1(point, x, 0)) { redrawX(g); moved = true; } if (resizingY && move1(point, y, 1)) { redrawY(g); moved = true; } if (moved) { redraw(g); event_({ type: "brush", mode: dragging ? "move" : "resize" }); } } function move1(point, scale, i) { var range = d3_scaleRange(scale), r0 = range[0], r1 = range[1], position = origin[i], size = extent[1][i] - extent[0][i], min, max; if (dragging) { r0 -= position; r1 -= size + position; } min = Math.max(r0, Math.min(r1, point[i])); if (dragging) { max = (min += position) + size; } else { if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min)); if (position < min) { max = min; min = position; } else { max = position; } } if (extent[0][i] !== min || extent[1][i] !== max) { extentDomain = null; extent[0][i] = min; extent[1][i] = max; return true; } } function brushend() { brushmove(); g.style("pointer-events", "all").selectAll(".resize").style("display", brush.empty() ? "none" : null); d3.select("body").style("cursor", null); w.on("mousemove.brush", null).on("mouseup.brush", null).on("touchmove.brush", null).on("touchend.brush", null).on("keydown.brush", null).on("keyup.brush", null); event_({ type: "brushend" }); d3_eventCancel(); } } brush.x = function(z) { if (!arguments.length) return x; x = z; resizes = d3_svg_brushResizes[!x << 1 | !y]; return brush; }; brush.y = function(z) { if (!arguments.length) return y; y = z; resizes = d3_svg_brushResizes[!x << 1 | !y]; return brush; }; brush.extent = function(z) { var x0, x1, y0, y1, t; if (!arguments.length) { z = extentDomain || extent; if (x) { x0 = z[0][0], x1 = z[1][0]; if (!extentDomain) { x0 = extent[0][0], x1 = extent[1][0]; if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1); if (x1 < x0) t = x0, x0 = x1, x1 = t; } } if (y) { y0 = z[0][1], y1 = z[1][1]; if (!extentDomain) { y0 = extent[0][1], y1 = extent[1][1]; if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1); if (y1 < y0) t = y0, y0 = y1, y1 = t; } } return x && y ? [ [ x0, y0 ], [ x1, y1 ] ] : x ? [ x0, x1 ] : y && [ y0, y1 ]; } extentDomain = [ [ 0, 0 ], [ 0, 0 ] ]; if (x) { x0 = z[0], x1 = z[1]; if (y) x0 = x0[0], x1 = x1[0]; extentDomain[0][0] = x0, extentDomain[1][0] = x1; if (x.invert) x0 = x(x0), x1 = x(x1); if (x1 < x0) t = x0, x0 = x1, x1 = t; extent[0][0] = x0 | 0, extent[1][0] = x1 | 0; } if (y) { y0 = z[0], y1 = z[1]; if (x) y0 = y0[1], y1 = y1[1]; extentDomain[0][1] = y0, extentDomain[1][1] = y1; if (y.invert) y0 = y(y0), y1 = y(y1); if (y1 < y0) t = y0, y0 = y1, y1 = t; extent[0][1] = y0 | 0, extent[1][1] = y1 | 0; } return brush; }; brush.clear = function() { extentDomain = null; extent[0][0] = extent[0][1] = extent[1][0] = extent[1][1] = 0; return brush; }; brush.empty = function() { return x && extent[0][0] === extent[1][0] || y && extent[0][1] === extent[1][1]; }; return d3.rebind(brush, event, "on"); }; var d3_svg_brushCursor = { n: "ns-resize", e: "ew-resize", s: "ns-resize", w: "ew-resize", nw: "nwse-resize", ne: "nesw-resize", se: "nwse-resize", sw: "nesw-resize" }; var d3_svg_brushResizes = [ [ "n", "e", "s", "w", "nw", "ne", "se", "sw" ], [ "e", "w" ], [ "n", "s" ], [] ]; d3.time = {}; var d3_time = Date, d3_time_daySymbols = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]; function d3_time_utc() { this._ = new Date(arguments.length > 1 ? Date.UTC.apply(this, arguments) : arguments[0]); } d3_time_utc.prototype = { getDate: function() { return this._.getUTCDate(); }, getDay: function() { return this._.getUTCDay(); }, getFullYear: function() { return this._.getUTCFullYear(); }, getHours: function() { return this._.getUTCHours(); }, getMilliseconds: function() { return this._.getUTCMilliseconds(); }, getMinutes: function() { return this._.getUTCMinutes(); }, getMonth: function() { return this._.getUTCMonth(); }, getSeconds: function() { return this._.getUTCSeconds(); }, getTime: function() { return this._.getTime(); }, getTimezoneOffset: function() { return 0; }, valueOf: function() { return this._.valueOf(); }, setDate: function() { d3_time_prototype.setUTCDate.apply(this._, arguments); }, setDay: function() { d3_time_prototype.setUTCDay.apply(this._, arguments); }, setFullYear: function() { d3_time_prototype.setUTCFullYear.apply(this._, arguments); }, setHours: function() { d3_time_prototype.setUTCHours.apply(this._, arguments); }, setMilliseconds: function() { d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); }, setMinutes: function() { d3_time_prototype.setUTCMinutes.apply(this._, arguments); }, setMonth: function() { d3_time_prototype.setUTCMonth.apply(this._, arguments); }, setSeconds: function() { d3_time_prototype.setUTCSeconds.apply(this._, arguments); }, setTime: function() { d3_time_prototype.setTime.apply(this._, arguments); } }; var d3_time_prototype = Date.prototype; var d3_time_formatDateTime = "%a %b %e %X %Y", d3_time_formatDate = "%m/%d/%Y", d3_time_formatTime = "%H:%M:%S"; var d3_time_days = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ], d3_time_dayAbbreviations = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ], d3_time_months = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ], d3_time_monthAbbreviations = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]; function d3_time_interval(local, step, number) { function round(date) { var d0 = local(date), d1 = offset(d0, 1); return date - d0 < d1 - date ? d0 : d1; } function ceil(date) { step(date = local(new d3_time(date - 1)), 1); return date; } function offset(date, k) { step(date = new d3_time(+date), k); return date; } function range(t0, t1, dt) { var time = ceil(t0), times = []; if (dt > 1) { while (time < t1) { if (!(number(time) % dt)) times.push(new Date(+time)); step(time, 1); } } else { while (time < t1) times.push(new Date(+time)), step(time, 1); } return times; } function range_utc(t0, t1, dt) { try { d3_time = d3_time_utc; var utc = new d3_time_utc(); utc._ = t0; return range(utc, t1, dt); } finally { d3_time = Date; } } local.floor = local; local.round = round; local.ceil = ceil; local.offset = offset; local.range = range; var utc = local.utc = d3_time_interval_utc(local); utc.floor = utc; utc.round = d3_time_interval_utc(round); utc.ceil = d3_time_interval_utc(ceil); utc.offset = d3_time_interval_utc(offset); utc.range = range_utc; return local; } function d3_time_interval_utc(method) { return function(date, k) { try { d3_time = d3_time_utc; var utc = new d3_time_utc(); utc._ = date; return method(utc, k)._; } finally { d3_time = Date; } }; } d3.time.year = d3_time_interval(function(date) { date = d3.time.day(date); date.setMonth(0, 1); return date; }, function(date, offset) { date.setFullYear(date.getFullYear() + offset); }, function(date) { return date.getFullYear(); }); d3.time.years = d3.time.year.range; d3.time.years.utc = d3.time.year.utc.range; d3.time.day = d3_time_interval(function(date) { var day = new d3_time(1970, 0); day.setFullYear(date.getFullYear(), date.getMonth(), date.getDate()); return day; }, function(date, offset) { date.setDate(date.getDate() + offset); }, function(date) { return date.getDate() - 1; }); d3.time.days = d3.time.day.range; d3.time.days.utc = d3.time.day.utc.range; d3.time.dayOfYear = function(date) { var year = d3.time.year(date); return Math.floor((date - year - (date.getTimezoneOffset() - year.getTimezoneOffset()) * 6e4) / 864e5); }; d3_time_daySymbols.forEach(function(day, i) { day = day.toLowerCase(); i = 7 - i; var interval = d3.time[day] = d3_time_interval(function(date) { (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7); return date; }, function(date, offset) { date.setDate(date.getDate() + Math.floor(offset) * 7); }, function(date) { var day = d3.time.year(date).getDay(); return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i); }); d3.time[day + "s"] = interval.range; d3.time[day + "s"].utc = interval.utc.range; d3.time[day + "OfYear"] = function(date) { var day = d3.time.year(date).getDay(); return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7); }; }); d3.time.week = d3.time.sunday; d3.time.weeks = d3.time.sunday.range; d3.time.weeks.utc = d3.time.sunday.utc.range; d3.time.weekOfYear = d3.time.sundayOfYear; d3.time.format = function(template) { var n = template.length; function format(date) { var string = [], i = -1, j = 0, c, p, f; while (++i < n) { if (template.charCodeAt(i) === 37) { string.push(template.substring(j, i)); if ((p = d3_time_formatPads[c = template.charAt(++i)]) != null) c = template.charAt(++i); if (f = d3_time_formats[c]) c = f(date, p == null ? c === "e" ? " " : "0" : p); string.push(c); j = i + 1; } } string.push(template.substring(j, i)); return string.join(""); } format.parse = function(string) { var d = { y: 1900, m: 0, d: 1, H: 0, M: 0, S: 0, L: 0 }, i = d3_time_parse(d, template, string, 0); if (i != string.length) return null; if ("p" in d) d.H = d.H % 12 + d.p * 12; var date = new d3_time(); date.setFullYear(d.y, d.m, d.d); date.setHours(d.H, d.M, d.S, d.L); return date; }; format.toString = function() { return template; }; return format; }; function d3_time_parse(date, template, string, j) { var c, p, i = 0, n = template.length, m = string.length; while (i < n) { if (j >= m) return -1; c = template.charCodeAt(i++); if (c === 37) { p = d3_time_parsers[template.charAt(i++)]; if (!p || (j = p(date, string, j)) < 0) return -1; } else if (c != string.charCodeAt(j++)) { return -1; } } return j; } function d3_time_formatRe(names) { return new RegExp("^(?:" + names.map(d3.requote).join("|") + ")", "i"); } function d3_time_formatLookup(names) { var map = new d3_Map(), i = -1, n = names.length; while (++i < n) map.set(names[i].toLowerCase(), i); return map; } function d3_time_formatPad(value, fill, width) { value += ""; var length = value.length; return length < width ? new Array(width - length + 1).join(fill) + value : value; } var d3_time_dayRe = d3_time_formatRe(d3_time_days), d3_time_dayAbbrevRe = d3_time_formatRe(d3_time_dayAbbreviations), d3_time_monthRe = d3_time_formatRe(d3_time_months), d3_time_monthLookup = d3_time_formatLookup(d3_time_months), d3_time_monthAbbrevRe = d3_time_formatRe(d3_time_monthAbbreviations), d3_time_monthAbbrevLookup = d3_time_formatLookup(d3_time_monthAbbreviations); var d3_time_formatPads = { "-": "", _: " ", "0": "0" }; var d3_time_formats = { a: function(d) { return d3_time_dayAbbreviations[d.getDay()]; }, A: function(d) { return d3_time_days[d.getDay()]; }, b: function(d) { return d3_time_monthAbbreviations[d.getMonth()]; }, B: function(d) { return d3_time_months[d.getMonth()]; }, c: d3.time.format(d3_time_formatDateTime), d: function(d, p) { return d3_time_formatPad(d.getDate(), p, 2); }, e: function(d, p) { return d3_time_formatPad(d.getDate(), p, 2); }, H: function(d, p) { return d3_time_formatPad(d.getHours(), p, 2); }, I: function(d, p) { return d3_time_formatPad(d.getHours() % 12 || 12, p, 2); }, j: function(d, p) { return d3_time_formatPad(1 + d3.time.dayOfYear(d), p, 3); }, L: function(d, p) { return d3_time_formatPad(d.getMilliseconds(), p, 3); }, m: function(d, p) { return d3_time_formatPad(d.getMonth() + 1, p, 2); }, M: function(d, p) { return d3_time_formatPad(d.getMinutes(), p, 2); }, p: function(d) { return d.getHours() >= 12 ? "PM" : "AM"; }, S: function(d, p) { return d3_time_formatPad(d.getSeconds(), p, 2); }, U: function(d, p) { return d3_time_formatPad(d3.time.sundayOfYear(d), p, 2); }, w: function(d) { return d.getDay(); }, W: function(d, p) { return d3_time_formatPad(d3.time.mondayOfYear(d), p, 2); }, x: d3.time.format(d3_time_formatDate), X: d3.time.format(d3_time_formatTime), y: function(d, p) { return d3_time_formatPad(d.getFullYear() % 100, p, 2); }, Y: function(d, p) { return d3_time_formatPad(d.getFullYear() % 1e4, p, 4); }, Z: d3_time_zone, "%": function() { return "%"; } }; var d3_time_parsers = { a: d3_time_parseWeekdayAbbrev, A: d3_time_parseWeekday, b: d3_time_parseMonthAbbrev, B: d3_time_parseMonth, c: d3_time_parseLocaleFull, d: d3_time_parseDay, e: d3_time_parseDay, H: d3_time_parseHour24, I: d3_time_parseHour24, L: d3_time_parseMilliseconds, m: d3_time_parseMonthNumber, M: d3_time_parseMinutes, p: d3_time_parseAmPm, S: d3_time_parseSeconds, x: d3_time_parseLocaleDate, X: d3_time_parseLocaleTime, y: d3_time_parseYear, Y: d3_time_parseFullYear }; function d3_time_parseWeekdayAbbrev(date, string, i) { d3_time_dayAbbrevRe.lastIndex = 0; var n = d3_time_dayAbbrevRe.exec(string.substring(i)); return n ? i += n[0].length : -1; } function d3_time_parseWeekday(date, string, i) { d3_time_dayRe.lastIndex = 0; var n = d3_time_dayRe.exec(string.substring(i)); return n ? i += n[0].length : -1; } function d3_time_parseMonthAbbrev(date, string, i) { d3_time_monthAbbrevRe.lastIndex = 0; var n = d3_time_monthAbbrevRe.exec(string.substring(i)); return n ? (date.m = d3_time_monthAbbrevLookup.get(n[0].toLowerCase()), i += n[0].length) : -1; } function d3_time_parseMonth(date, string, i) { d3_time_monthRe.lastIndex = 0; var n = d3_time_monthRe.exec(string.substring(i)); return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1; } function d3_time_parseLocaleFull(date, string, i) { return d3_time_parse(date, d3_time_formats.c.toString(), string, i); } function d3_time_parseLocaleDate(date, string, i) { return d3_time_parse(date, d3_time_formats.x.toString(), string, i); } function d3_time_parseLocaleTime(date, string, i) { return d3_time_parse(date, d3_time_formats.X.toString(), string, i); } function d3_time_parseFullYear(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 4)); return n ? (date.y = +n[0], i += n[0].length) : -1; } function d3_time_parseYear(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.y = d3_time_expandYear(+n[0]), i += n[0].length) : -1; } function d3_time_expandYear(d) { return d + (d > 68 ? 1900 : 2e3); } function d3_time_parseMonthNumber(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.m = n[0] - 1, i += n[0].length) : -1; } function d3_time_parseDay(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.d = +n[0], i += n[0].length) : -1; } function d3_time_parseHour24(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.H = +n[0], i += n[0].length) : -1; } function d3_time_parseMinutes(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.M = +n[0], i += n[0].length) : -1; } function d3_time_parseSeconds(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 2)); return n ? (date.S = +n[0], i += n[0].length) : -1; } function d3_time_parseMilliseconds(date, string, i) { d3_time_numberRe.lastIndex = 0; var n = d3_time_numberRe.exec(string.substring(i, i + 3)); return n ? (date.L = +n[0], i += n[0].length) : -1; } var d3_time_numberRe = /^\s*\d+/; function d3_time_parseAmPm(date, string, i) { var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase()); return n == null ? -1 : (date.p = n, i); } var d3_time_amPmLookup = d3.map({ am: 0, pm: 1 }); function d3_time_zone(d) { var z = d.getTimezoneOffset(), zs = z > 0 ? "-" : "+", zh = ~~(Math.abs(z) / 60), zm = Math.abs(z) % 60; return zs + d3_time_formatPad(zh, "0", 2) + d3_time_formatPad(zm, "0", 2); } d3.time.format.utc = function(template) { var local = d3.time.format(template); function format(date) { try { d3_time = d3_time_utc; var utc = new d3_time(); utc._ = date; return local(utc); } finally { d3_time = Date; } } format.parse = function(string) { try { d3_time = d3_time_utc; var date = local.parse(string); return date && date._; } finally { d3_time = Date; } }; format.toString = local.toString; return format; }; var d3_time_formatIso = d3.time.format.utc("%Y-%m-%dT%H:%M:%S.%LZ"); d3.time.format.iso = Date.prototype.toISOString && +new Date("2000-01-01T00:00:00.000Z") ? d3_time_formatIsoNative : d3_time_formatIso; function d3_time_formatIsoNative(date) { return date.toISOString(); } d3_time_formatIsoNative.parse = function(string) { var date = new Date(string); return isNaN(date) ? null : date; }; d3_time_formatIsoNative.toString = d3_time_formatIso.toString; d3.time.second = d3_time_interval(function(date) { return new d3_time(Math.floor(date / 1e3) * 1e3); }, function(date, offset) { date.setTime(date.getTime() + Math.floor(offset) * 1e3); }, function(date) { return date.getSeconds(); }); d3.time.seconds = d3.time.second.range; d3.time.seconds.utc = d3.time.second.utc.range; d3.time.minute = d3_time_interval(function(date) { return new d3_time(Math.floor(date / 6e4) * 6e4); }, function(date, offset) { date.setTime(date.getTime() + Math.floor(offset) * 6e4); }, function(date) { return date.getMinutes(); }); d3.time.minutes = d3.time.minute.range; d3.time.minutes.utc = d3.time.minute.utc.range; d3.time.hour = d3_time_interval(function(date) { var timezone = date.getTimezoneOffset() / 60; return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5); }, function(date, offset) { date.setTime(date.getTime() + Math.floor(offset) * 36e5); }, function(date) { return date.getHours(); }); d3.time.hours = d3.time.hour.range; d3.time.hours.utc = d3.time.hour.utc.range; d3.time.month = d3_time_interval(function(date) { date = d3.time.day(date); date.setDate(1); return date; }, function(date, offset) { date.setMonth(date.getMonth() + offset); }, function(date) { return date.getMonth(); }); d3.time.months = d3.time.month.range; d3.time.months.utc = d3.time.month.utc.range; function d3_time_scale(linear, methods, format) { function scale(x) { return linear(x); } scale.invert = function(x) { return d3_time_scaleDate(linear.invert(x)); }; scale.domain = function(x) { if (!arguments.length) return linear.domain().map(d3_time_scaleDate); linear.domain(x); return scale; }; scale.nice = function(m) { return scale.domain(d3_scale_nice(scale.domain(), function() { return m; })); }; scale.ticks = function(m, k) { var extent = d3_time_scaleExtent(scale.domain()); if (typeof m !== "function") { var span = extent[1] - extent[0], target = span / m, i = d3.bisect(d3_time_scaleSteps, target); if (i == d3_time_scaleSteps.length) return methods.year(extent, m); if (!i) return linear.ticks(m).map(d3_time_scaleDate); if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i; m = methods[i]; k = m[1]; m = m[0].range; } return m(extent[0], new Date(+extent[1] + 1), k); }; scale.tickFormat = function() { return format; }; scale.copy = function() { return d3_time_scale(linear.copy(), methods, format); }; return d3.rebind(scale, linear, "range", "rangeRound", "interpolate", "clamp"); } function d3_time_scaleExtent(domain) { var start = domain[0], stop = domain[domain.length - 1]; return start < stop ? [ start, stop ] : [ stop, start ]; } function d3_time_scaleDate(t) { return new Date(t); } function d3_time_scaleFormat(formats) { return function(date) { var i = formats.length - 1, f = formats[i]; while (!f[1](date)) f = formats[--i]; return f[0](date); }; } function d3_time_scaleSetYear(y) { var d = new Date(y, 0, 1); d.setFullYear(y); return d; } function d3_time_scaleGetYear(d) { var y = d.getFullYear(), d0 = d3_time_scaleSetYear(y), d1 = d3_time_scaleSetYear(y + 1); return y + (d - d0) / (d1 - d0); } var d3_time_scaleSteps = [ 1e3, 5e3, 15e3, 3e4, 6e4, 3e5, 9e5, 18e5, 36e5, 108e5, 216e5, 432e5, 864e5, 1728e5, 6048e5, 2592e6, 7776e6, 31536e6 ]; var d3_time_scaleLocalMethods = [ [ d3.time.second, 1 ], [ d3.time.second, 5 ], [ d3.time.second, 15 ], [ d3.time.second, 30 ], [ d3.time.minute, 1 ], [ d3.time.minute, 5 ], [ d3.time.minute, 15 ], [ d3.time.minute, 30 ], [ d3.time.hour, 1 ], [ d3.time.hour, 3 ], [ d3.time.hour, 6 ], [ d3.time.hour, 12 ], [ d3.time.day, 1 ], [ d3.time.day, 2 ], [ d3.time.week, 1 ], [ d3.time.month, 1 ], [ d3.time.month, 3 ], [ d3.time.year, 1 ] ]; var d3_time_scaleLocalFormats = [ [ d3.time.format("%Y"), d3_true ], [ d3.time.format("%B"), function(d) { return d.getMonth(); } ], [ d3.time.format("%b %d"), function(d) { return d.getDate() != 1; } ], [ d3.time.format("%a %d"), function(d) { return d.getDay() && d.getDate() != 1; } ], [ d3.time.format("%I %p"), function(d) { return d.getHours(); } ], [ d3.time.format("%I:%M"), function(d) { return d.getMinutes(); } ], [ d3.time.format(":%S"), function(d) { return d.getSeconds(); } ], [ d3.time.format(".%L"), function(d) { return d.getMilliseconds(); } ] ]; var d3_time_scaleLinear = d3.scale.linear(), d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats); d3_time_scaleLocalMethods.year = function(extent, m) { return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear); }; d3.time.scale = function() { return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat); }; var d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) { return [ m[0].utc, m[1] ]; }); var d3_time_scaleUTCFormats = [ [ d3.time.format.utc("%Y"), d3_true ], [ d3.time.format.utc("%B"), function(d) { return d.getUTCMonth(); } ], [ d3.time.format.utc("%b %d"), function(d) { return d.getUTCDate() != 1; } ], [ d3.time.format.utc("%a %d"), function(d) { return d.getUTCDay() && d.getUTCDate() != 1; } ], [ d3.time.format.utc("%I %p"), function(d) { return d.getUTCHours(); } ], [ d3.time.format.utc("%I:%M"), function(d) { return d.getUTCMinutes(); } ], [ d3.time.format.utc(":%S"), function(d) { return d.getUTCSeconds(); } ], [ d3.time.format.utc(".%L"), function(d) { return d.getUTCMilliseconds(); } ] ]; var d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats); function d3_time_scaleUTCSetYear(y) { var d = new Date(Date.UTC(y, 0, 1)); d.setUTCFullYear(y); return d; } function d3_time_scaleUTCGetYear(d) { var y = d.getUTCFullYear(), d0 = d3_time_scaleUTCSetYear(y), d1 = d3_time_scaleUTCSetYear(y + 1); return y + (d - d0) / (d1 - d0); } d3_time_scaleUTCMethods.year = function(extent, m) { return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear); }; d3.time.scale.utc = function() { return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat); }; d3.text = function() { return d3.xhr.apply(d3, arguments).response(d3_text); }; function d3_text(request) { return request.responseText; } d3.json = function(url, callback) { return d3.xhr(url, "application/json", callback).response(d3_json); }; function d3_json(request) { return JSON.parse(request.responseText); } d3.html = function(url, callback) { return d3.xhr(url, "text/html", callback).response(d3_html); }; function d3_html(request) { var range = d3_document.createRange(); range.selectNode(d3_document.body); return range.createContextualFragment(request.responseText); } d3.xml = function() { return d3.xhr.apply(d3, arguments).response(d3_xml); }; function d3_xml(request) { return request.responseXML; } return d3; }();
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
/******************** * HTML CSS */ .chartWrap { margin: 0; padding: 0; overflow: hidden; } /******************** Box shadow and border radius styling */ .nvtooltip.with-3d-shadow, .with-3d-shadow .nvtooltip { -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); box-shadow: 0 5px 10px rgba(0,0,0,.2); -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } /******************** * TOOLTIP CSS */ .nvtooltip { position: absolute; background-color: rgba(255,255,255,1.0); padding: 1px; border: 1px solid rgba(0,0,0,.2); z-index: 10000; font-family: Arial; font-size: 13px; text-align: left; pointer-events: none; white-space: nowrap; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /*Give tooltips that old fade in transition by putting a "with-transitions" class on the container div. */ .nvtooltip.with-transitions, .with-transitions .nvtooltip { transition: opacity 250ms linear; -moz-transition: opacity 250ms linear; -webkit-transition: opacity 250ms linear; transition-delay: 250ms; -moz-transition-delay: 250ms; -webkit-transition-delay: 250ms; } .nvtooltip.x-nvtooltip, .nvtooltip.y-nvtooltip { padding: 8px; } .nvtooltip h3 { margin: 0; padding: 4px 14px; line-height: 18px; font-weight: normal; background-color: rgba(247,247,247,0.75); text-align: center; border-bottom: 1px solid #ebebeb; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; } .nvtooltip p { margin: 0; padding: 5px 14px; text-align: center; } .nvtooltip span { display: inline-block; margin: 2px 0; } .nvtooltip table { margin: 6px; border-spacing:0; } .nvtooltip table td { padding: 2px 9px 2px 0; vertical-align: middle; } .nvtooltip table td.key { font-weight:normal; } .nvtooltip table td.value { text-align: right; font-weight: bold; } .nvtooltip table tr.highlight td { padding: 1px 9px 1px 0; border-bottom-style: solid; border-bottom-width: 1px; border-top-style: solid; border-top-width: 1px; } .nvtooltip table td.legend-color-guide div { width: 8px; height: 8px; vertical-align: middle; } .nvtooltip .footer { padding: 3px; text-align: center; } .nvtooltip-pending-removal { position: absolute; pointer-events: none; } /******************** * SVG CSS */ svg { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; /* Trying to get SVG to act like a greedy block in all browsers */ display: block; width:100%; height:100%; } svg text { font: normal 12px Arial; } svg .title { font: bold 14px Arial; } .nvd3 .nv-background { fill: white; fill-opacity: 0; /* pointer-events: none; */ } .nvd3.nv-noData { font-size: 18px; font-weight: bold; } /********** * Brush */ .nv-brush .extent { fill-opacity: .125; shape-rendering: crispEdges; } /********** * Legend */ .nvd3 .nv-legend .nv-series { cursor: pointer; } .nvd3 .nv-legend .disabled circle { fill-opacity: 0; } /********** * Axes */ .nvd3 .nv-axis { pointer-events:none; } .nvd3 .nv-axis path { fill: none; stroke: #000; stroke-opacity: .75; shape-rendering: crispEdges; } .nvd3 .nv-axis path.domain { stroke-opacity: .75; } .nvd3 .nv-axis.nv-x path.domain { stroke-opacity: 0; } .nvd3 .nv-axis line { fill: none; stroke: #e5e5e5; shape-rendering: crispEdges; } .nvd3 .nv-axis .zero line, /*this selector may not be necessary*/ .nvd3 .nv-axis line.zero { stroke-opacity: .75; } .nvd3 .nv-axis .nv-axisMaxMin text { font-weight: bold; } .nvd3 .x .nv-axis .nv-axisMaxMin text, .nvd3 .x2 .nv-axis .nv-axisMaxMin text, .nvd3 .x3 .nv-axis .nv-axisMaxMin text { text-anchor: middle } /********** * Brush */ .nv-brush .resize path { fill: #eee; stroke: #666; } /********** * Bars */ .nvd3 .nv-bars .negative rect { zfill: brown; } .nvd3 .nv-bars rect { zfill: steelblue; fill-opacity: .75; transition: fill-opacity 250ms linear; -moz-transition: fill-opacity 250ms linear; -webkit-transition: fill-opacity 250ms linear; } .nvd3 .nv-bars rect.hover { fill-opacity: 1; } .nvd3 .nv-bars .hover rect { fill: lightblue; } .nvd3 .nv-bars text { fill: rgba(0,0,0,0); } .nvd3 .nv-bars .hover text { fill: rgba(0,0,0,1); } /********** * Bars */ .nvd3 .nv-multibar .nv-groups rect, .nvd3 .nv-multibarHorizontal .nv-groups rect, .nvd3 .nv-discretebar .nv-groups rect { stroke-opacity: 0; transition: fill-opacity 250ms linear; -moz-transition: fill-opacity 250ms linear; -webkit-transition: fill-opacity 250ms linear; } .nvd3 .nv-multibar .nv-groups rect:hover, .nvd3 .nv-multibarHorizontal .nv-groups rect:hover, .nvd3 .nv-discretebar .nv-groups rect:hover { fill-opacity: 1; } .nvd3 .nv-discretebar .nv-groups text, .nvd3 .nv-multibarHorizontal .nv-groups text { font-weight: bold; fill: rgba(0,0,0,1); stroke: rgba(0,0,0,0); } /*********** * Pie Chart */ .nvd3.nv-pie path { stroke-opacity: 0; transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear; -moz-transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear; -webkit-transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear; } .nvd3.nv-pie .nv-slice text { stroke: #000; stroke-width: 0; } .nvd3.nv-pie path { stroke: #fff; stroke-width: 1px; stroke-opacity: 1; } .nvd3.nv-pie .hover path { fill-opacity: .7; } .nvd3.nv-pie .nv-label { pointer-events: none; } .nvd3.nv-pie .nv-label rect { fill-opacity: 0; stroke-opacity: 0; } /********** * Lines */ .nvd3 .nv-groups path.nv-line { fill: none; stroke-width: 1.5px; /* stroke-linecap: round; shape-rendering: geometricPrecision; transition: stroke-width 250ms linear; -moz-transition: stroke-width 250ms linear; -webkit-transition: stroke-width 250ms linear; transition-delay: 250ms -moz-transition-delay: 250ms; -webkit-transition-delay: 250ms; */ } .nvd3 .nv-groups path.nv-line.nv-thin-line { stroke-width: 1px; } .nvd3 .nv-groups path.nv-area { stroke: none; /* stroke-linecap: round; shape-rendering: geometricPrecision; stroke-width: 2.5px; transition: stroke-width 250ms linear; -moz-transition: stroke-width 250ms linear; -webkit-transition: stroke-width 250ms linear; transition-delay: 250ms -moz-transition-delay: 250ms; -webkit-transition-delay: 250ms; */ } .nvd3 .nv-line.hover path { stroke-width: 6px; } /* .nvd3.scatter .groups .point { fill-opacity: 0.1; stroke-opacity: 0.1; } */ .nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point { fill-opacity: 0; stroke-opacity: 0; } .nvd3.nv-scatter.nv-single-point .nv-groups .nv-point { fill-opacity: .5 !important; stroke-opacity: .5 !important; } .with-transitions .nvd3 .nv-groups .nv-point { transition: stroke-width 250ms linear, stroke-opacity 250ms linear; -moz-transition: stroke-width 250ms linear, stroke-opacity 250ms linear; -webkit-transition: stroke-width 250ms linear, stroke-opacity 250ms linear; } .nvd3.nv-scatter .nv-groups .nv-point.hover, .nvd3 .nv-groups .nv-point.hover { stroke-width: 7px; fill-opacity: .95 !important; stroke-opacity: .95 !important; } .nvd3 .nv-point-paths path { stroke: #aaa; stroke-opacity: 0; fill: #eee; fill-opacity: 0; } .nvd3 .nv-indexLine { cursor: ew-resize; } /********** * Distribution */ .nvd3 .nv-distribution { pointer-events: none; } /********** * Scatter */ /* **Attempting to remove this for useVoronoi(false), need to see if it's required anywhere .nvd3 .nv-groups .nv-point { pointer-events: none; } */ .nvd3 .nv-groups .nv-point.hover { stroke-width: 20px; stroke-opacity: .5; } .nvd3 .nv-scatter .nv-point.hover { fill-opacity: 1; } /* .nv-group.hover .nv-point { fill-opacity: 1; } */ /********** * Stacked Area */ .nvd3.nv-stackedarea path.nv-area { fill-opacity: .7; /* stroke-opacity: .65; fill-opacity: 1; */ stroke-opacity: 0; transition: fill-opacity 250ms linear, stroke-opacity 250ms linear; -moz-transition: fill-opacity 250ms linear, stroke-opacity 250ms linear; -webkit-transition: fill-opacity 250ms linear, stroke-opacity 250ms linear; /* transition-delay: 500ms; -moz-transition-delay: 500ms; -webkit-transition-delay: 500ms; */ } .nvd3.nv-stackedarea path.nv-area.hover { fill-opacity: .9; /* stroke-opacity: .85; */ } /* .d3stackedarea .groups path { stroke-opacity: 0; } */ .nvd3.nv-stackedarea .nv-groups .nv-point { stroke-opacity: 0; fill-opacity: 0; } /* .nvd3.nv-stackedarea .nv-groups .nv-point.hover { stroke-width: 20px; stroke-opacity: .75; fill-opacity: 1; }*/ /********** * Line Plus Bar */ .nvd3.nv-linePlusBar .nv-bar rect { fill-opacity: .75; } .nvd3.nv-linePlusBar .nv-bar rect:hover { fill-opacity: 1; } /********** * Bullet */ .nvd3.nv-bullet { font: 10px sans-serif; } .nvd3.nv-bullet .nv-measure { fill-opacity: .8; } .nvd3.nv-bullet .nv-measure:hover { fill-opacity: 1; } .nvd3.nv-bullet .nv-marker { stroke: #000; stroke-width: 2px; } .nvd3.nv-bullet .nv-markerTriangle { stroke: #000; fill: #fff; stroke-width: 1.5px; } .nvd3.nv-bullet .nv-tick line { stroke: #666; stroke-width: .5px; } .nvd3.nv-bullet .nv-range.nv-s0 { fill: #eee; } .nvd3.nv-bullet .nv-range.nv-s1 { fill: #ddd; } .nvd3.nv-bullet .nv-range.nv-s2 { fill: #ccc; } .nvd3.nv-bullet .nv-title { font-size: 14px; font-weight: bold; } .nvd3.nv-bullet .nv-subtitle { fill: #999; } .nvd3.nv-bullet .nv-range { fill: #bababa; fill-opacity: .4; } .nvd3.nv-bullet .nv-range:hover { fill-opacity: .7; } /********** * Sparkline */ .nvd3.nv-sparkline path { fill: none; } .nvd3.nv-sparklineplus g.nv-hoverValue { pointer-events: none; } .nvd3.nv-sparklineplus .nv-hoverValue line { stroke: #333; stroke-width: 1.5px; } .nvd3.nv-sparklineplus, .nvd3.nv-sparklineplus g { pointer-events: all; } .nvd3 .nv-hoverArea { fill-opacity: 0; stroke-opacity: 0; } .nvd3.nv-sparklineplus .nv-xValue, .nvd3.nv-sparklineplus .nv-yValue { /* stroke: #666; */ stroke-width: 0; font-size: .9em; font-weight: normal; } .nvd3.nv-sparklineplus .nv-yValue { stroke: #f66; } .nvd3.nv-sparklineplus .nv-maxValue { stroke: #2ca02c; fill: #2ca02c; } .nvd3.nv-sparklineplus .nv-minValue { stroke: #d62728; fill: #d62728; } .nvd3.nv-sparklineplus .nv-currentValue { /* stroke: #444; fill: #000; */ font-weight: bold; font-size: 1.1em; } /********** * historical stock */ .nvd3.nv-ohlcBar .nv-ticks .nv-tick { stroke-width: 2px; } .nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover { stroke-width: 4px; } .nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive { stroke: #2ca02c; } .nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative { stroke: #d62728; } .nvd3.nv-historicalStockChart .nv-axis .nv-axislabel { font-weight: bold; } .nvd3.nv-historicalStockChart .nv-dragTarget { fill-opacity: 0; stroke: none; cursor: move; } .nvd3 .nv-brush .extent { /* cursor: ew-resize !important; */ fill-opacity: 0 !important; } .nvd3 .nv-brushBackground rect { stroke: #000; stroke-width: .4; fill: #fff; fill-opacity: .7; } /********** * Indented Tree */ /** * TODO: the following 3 selectors are based on classes used in the example. I should either make them standard and leave them here, or move to a CSS file not included in the library */ .nvd3.nv-indentedtree .name { margin-left: 5px; } .nvd3.nv-indentedtree .clickable { color: #08C; cursor: pointer; } .nvd3.nv-indentedtree span.clickable:hover { color: #005580; text-decoration: underline; } .nvd3.nv-indentedtree .nv-childrenCount { display: inline-block; margin-left: 5px; } .nvd3.nv-indentedtree .nv-treeicon { cursor: pointer; /* cursor: n-resize; */ } .nvd3.nv-indentedtree .nv-treeicon.nv-folded { cursor: pointer; /* cursor: s-resize; */ } /********** * Parallel Coordinates */ .nvd3 .background path { fill: none; stroke: #ccc; stroke-opacity: .4; shape-rendering: crispEdges; } .nvd3 .foreground path { fill: none; stroke: steelblue; stroke-opacity: .7; } .nvd3 .brush .extent { fill-opacity: .3; stroke: #fff; shape-rendering: crispEdges; } .nvd3 .axis line, .axis path { fill: none; stroke: #000; shape-rendering: crispEdges; } .nvd3 .axis text { text-shadow: 0 1px 0 #fff; } /**** Interactive Layer */ .nvd3 .nv-interactiveGuideLine { pointer-events:none; } .nvd3 line.nv-guideline { stroke: #ccc; }
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
(function(){ var nv = window.nv || {}; nv.version = '1.1.15b'; nv.dev = true //set false when in production window.nv = nv; nv.tooltip = nv.tooltip || {}; // For the tooltip system nv.utils = nv.utils || {}; // Utility subsystem nv.models = nv.models || {}; //stores all the possible models/components nv.charts = {}; //stores all the ready to use charts nv.graphs = []; //stores all the graphs currently on the page nv.logs = {}; //stores some statistics and potential error messages nv.dispatch = d3.dispatch('render_start', 'render_end'); // ************************************************************************* // Development render timers - disabled if dev = false if (nv.dev) { nv.dispatch.on('render_start', function(e) { nv.logs.startTime = +new Date(); }); nv.dispatch.on('render_end', function(e) { nv.logs.endTime = +new Date(); nv.logs.totalTime = nv.logs.endTime - nv.logs.startTime; nv.log('total', nv.logs.totalTime); // used for development, to keep track of graph generation times }); } // ******************************************** // Public Core NV functions // Logs all arguments, and returns the last so you can test things in place // Note: in IE8 console.log is an object not a function, and if modernizr is used // then calling Function.prototype.bind with with anything other than a function // causes a TypeError to be thrown. nv.log = function() { if (nv.dev && console.log && console.log.apply) console.log.apply(console, arguments) else if (nv.dev && typeof console.log == "function" && Function.prototype.bind) { var log = Function.prototype.bind.call(console.log, console); log.apply(console, arguments); } return arguments[arguments.length - 1]; }; nv.render = function render(step) { step = step || 1; // number of graphs to generate in each timeout loop nv.render.active = true; nv.dispatch.render_start(); setTimeout(function() { var chart, graph; for (var i = 0; i < step && (graph = nv.render.queue[i]); i++) { chart = graph.generate(); if (typeof graph.callback == typeof(Function)) graph.callback(chart); nv.graphs.push(chart); } nv.render.queue.splice(0, i); if (nv.render.queue.length) setTimeout(arguments.callee, 0); else { nv.dispatch.render_end(); nv.render.active = false; } }, 0); }; nv.render.active = false; nv.render.queue = []; nv.addGraph = function(obj) { if (typeof arguments[0] === typeof(Function)) obj = {generate: arguments[0], callback: arguments[1]}; nv.render.queue.push(obj); if (!nv.render.active) nv.render(); }; nv.identity = function(d) { return d; }; nv.strip = function(s) { return s.replace(/(\s|&)/g,''); }; function daysInMonth(month,year) { return (new Date(year, month+1, 0)).getDate(); } function d3_time_range(floor, step, number) { return function(t0, t1, dt) { var time = floor(t0), times = []; if (time < t0) step(time); if (dt > 1) { while (time < t1) { var date = new Date(+time); if ((number(date) % dt === 0)) times.push(date); step(time); } } else { while (time < t1) { times.push(new Date(+time)); step(time); } } return times; }; } d3.time.monthEnd = function(date) { return new Date(date.getFullYear(), date.getMonth(), 0); }; d3.time.monthEnds = d3_time_range(d3.time.monthEnd, function(date) { date.setUTCDate(date.getUTCDate() + 1); date.setDate(daysInMonth(date.getMonth() + 1, date.getFullYear())); }, function(date) { return date.getMonth(); } ); /* Utility class to handle creation of an interactive layer. This places a rectangle on top of the chart. When you mouse move over it, it sends a dispatch containing the X-coordinate. It can also render a vertical line where the mouse is located. dispatch.elementMousemove is the important event to latch onto. It is fired whenever the mouse moves over the rectangle. The dispatch is given one object which contains the mouseX/Y location. It also has 'pointXValue', which is the conversion of mouseX to the x-axis scale. */ nv.interactiveGuideline = function() { "use strict"; var tooltip = nv.models.tooltip(); //Public settings var width = null , height = null //Please pass in the bounding chart's top and left margins //This is important for calculating the correct mouseX/Y positions. , margin = {left: 0, top: 0} , xScale = d3.scale.linear() , yScale = d3.scale.linear() , dispatch = d3.dispatch('elementMousemove', 'elementMouseout','elementDblclick') , showGuideLine = true , svgContainer = null //Must pass in the bounding chart's <svg> container. //The mousemove event is attached to this container. ; //Private variables var isMSIE = navigator.userAgent.indexOf("MSIE") !== -1 //Check user-agent for Microsoft Internet Explorer. ; function layer(selection) { selection.each(function(data) { var container = d3.select(this); var availableWidth = (width || 960), availableHeight = (height || 400); var wrap = container.selectAll("g.nv-wrap.nv-interactiveLineLayer").data([data]); var wrapEnter = wrap.enter() .append("g").attr("class", " nv-wrap nv-interactiveLineLayer"); wrapEnter.append("g").attr("class","nv-interactiveGuideLine"); if (!svgContainer) { return; } function mouseHandler() { var d3mouse = d3.mouse(this); var mouseX = d3mouse[0]; var mouseY = d3mouse[1]; var subtractMargin = true; var mouseOutAnyReason = false; if (isMSIE) { /* D3.js (or maybe SVG.getScreenCTM) has a nasty bug in Internet Explorer 10. d3.mouse() returns incorrect X,Y mouse coordinates when mouse moving over a rect in IE 10. However, d3.event.offsetX/Y also returns the mouse coordinates relative to the triggering <rect>. So we use offsetX/Y on IE. */ mouseX = d3.event.offsetX; mouseY = d3.event.offsetY; /* On IE, if you attach a mouse event listener to the <svg> container, it will actually trigger it for all the child elements (like <path>, <circle>, etc). When this happens on IE, the offsetX/Y is set to where ever the child element is located. As a result, we do NOT need to subtract margins to figure out the mouse X/Y position under this scenario. Removing the line below *will* cause the interactive layer to not work right on IE. */ if(d3.event.target.tagName !== "svg") subtractMargin = false; if (d3.event.target.className.baseVal.match("nv-legend")) mouseOutAnyReason = true; } if(subtractMargin) { mouseX -= margin.left; mouseY -= margin.top; } /* If mouseX/Y is outside of the chart's bounds, trigger a mouseOut event. */ if (mouseX < 0 || mouseY < 0 || mouseX > availableWidth || mouseY > availableHeight || (d3.event.relatedTarget && d3.event.relatedTarget.ownerSVGElement === undefined) || mouseOutAnyReason ) { if (isMSIE) { if (d3.event.relatedTarget && d3.event.relatedTarget.ownerSVGElement === undefined && d3.event.relatedTarget.className.match(tooltip.nvPointerEventsClass)) { return; } } dispatch.elementMouseout({ mouseX: mouseX, mouseY: mouseY }); layer.renderGuideLine(null); //hide the guideline return; } var pointXValue = xScale.invert(mouseX); dispatch.elementMousemove({ mouseX: mouseX, mouseY: mouseY, pointXValue: pointXValue }); //If user double clicks the layer, fire a elementDblclick dispatch. if (d3.event.type === "dblclick") { dispatch.elementDblclick({ mouseX: mouseX, mouseY: mouseY, pointXValue: pointXValue }); } } svgContainer .on("mousemove",mouseHandler, true) .on("mouseout" ,mouseHandler,true) .on("dblclick" ,mouseHandler) ; //Draws a vertical guideline at the given X postion. layer.renderGuideLine = function(x) { if (!showGuideLine) return; var line = wrap.select(".nv-interactiveGuideLine") .selectAll("line") .data((x != null) ? [nv.utils.NaNtoZero(x)] : [], String); line.enter() .append("line") .attr("class", "nv-guideline") .attr("x1", function(d) { return d;}) .attr("x2", function(d) { return d;}) .attr("y1", availableHeight) .attr("y2",0) ; line.exit().remove(); } }); } layer.dispatch = dispatch; layer.tooltip = tooltip; layer.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return layer; }; layer.width = function(_) { if (!arguments.length) return width; width = _; return layer; }; layer.height = function(_) { if (!arguments.length) return height; height = _; return layer; }; layer.xScale = function(_) { if (!arguments.length) return xScale; xScale = _; return layer; }; layer.showGuideLine = function(_) { if (!arguments.length) return showGuideLine; showGuideLine = _; return layer; }; layer.svgContainer = function(_) { if (!arguments.length) return svgContainer; svgContainer = _; return layer; }; return layer; }; /* Utility class that uses d3.bisect to find the index in a given array, where a search value can be inserted. This is different from normal bisectLeft; this function finds the nearest index to insert the search value. For instance, lets say your array is [1,2,3,5,10,30], and you search for 28. Normal d3.bisectLeft will return 4, because 28 is inserted after the number 10. But interactiveBisect will return 5 because 28 is closer to 30 than 10. Unit tests can be found in: interactiveBisectTest.html Has the following known issues: * Will not work if the data points move backwards (ie, 10,9,8,7, etc) or if the data points are in random order. * Won't work if there are duplicate x coordinate values. */ nv.interactiveBisect = function (values, searchVal, xAccessor) { "use strict"; if (! values instanceof Array) return null; if (typeof xAccessor !== 'function') xAccessor = function(d,i) { return d.x;} var bisect = d3.bisector(xAccessor).left; var index = d3.max([0, bisect(values,searchVal) - 1]); var currentValue = xAccessor(values[index], index); if (typeof currentValue === 'undefined') currentValue = index; if (currentValue === searchVal) return index; //found exact match var nextIndex = d3.min([index+1, values.length - 1]); var nextValue = xAccessor(values[nextIndex], nextIndex); if (typeof nextValue === 'undefined') nextValue = nextIndex; if (Math.abs(nextValue - searchVal) >= Math.abs(currentValue - searchVal)) return index; else return nextIndex }; /* Returns the index in the array "values" that is closest to searchVal. Only returns an index if searchVal is within some "threshold". Otherwise, returns null. */ nv.nearestValueIndex = function (values, searchVal, threshold) { "use strict"; var yDistMax = Infinity, indexToHighlight = null; values.forEach(function(d,i) { var delta = Math.abs(searchVal - d); if ( delta <= yDistMax && delta < threshold) { yDistMax = delta; indexToHighlight = i; } }); return indexToHighlight; };/* Tooltip rendering model for nvd3 charts. window.nv.models.tooltip is the updated,new way to render tooltips. window.nv.tooltip.show is the old tooltip code. window.nv.tooltip.* also has various helper methods. */ (function() { "use strict"; window.nv.tooltip = {}; /* Model which can be instantiated to handle tooltip rendering. Example usage: var tip = nv.models.tooltip().gravity('w').distance(23) .data(myDataObject); tip(); //just invoke the returned function to render tooltip. */ window.nv.models.tooltip = function() { var content = null //HTML contents of the tooltip. If null, the content is generated via the data variable. , data = null /* Tooltip data. If data is given in the proper format, a consistent tooltip is generated. Format of data: { key: "Date", value: "August 2009", series: [ { key: "Series 1", value: "Value 1", color: "#000" }, { key: "Series 2", value: "Value 2", color: "#00f" } ] } */ , gravity = 'w' //Can be 'n','s','e','w'. Determines how tooltip is positioned. , distance = 50 //Distance to offset tooltip from the mouse location. , snapDistance = 25 //Tolerance allowed before tooltip is moved from its current position (creates 'snapping' effect) , fixedTop = null //If not null, this fixes the top position of the tooltip. , classes = null //Attaches additional CSS classes to the tooltip DIV that is created. , chartContainer = null //Parent DIV, of the SVG Container that holds the chart. , tooltipElem = null //actual DOM element representing the tooltip. , position = {left: null, top: null} //Relative position of the tooltip inside chartContainer. , enabled = true //True -> tooltips are rendered. False -> don't render tooltips. //Generates a unique id when you create a new tooltip() object , id = "nvtooltip-" + Math.floor(Math.random() * 100000) ; //CSS class to specify whether element should not have mouse events. var nvPointerEventsClass = "nv-pointer-events-none"; //Format function for the tooltip values column var valueFormatter = function(d,i) { return d; }; //Format function for the tooltip header value. var headerFormatter = function(d) { return d; }; //By default, the tooltip model renders a beautiful table inside a DIV. //You can override this function if a custom tooltip is desired. var contentGenerator = function(d) { if (content != null) return content; if (d == null) return ''; var table = d3.select(document.createElement("table")); var theadEnter = table.selectAll("thead") .data([d]) .enter().append("thead"); theadEnter.append("tr") .append("td") .attr("colspan",3) .append("strong") .classed("x-value",true) .html(headerFormatter(d.value)); var tbodyEnter = table.selectAll("tbody") .data([d]) .enter().append("tbody"); var trowEnter = tbodyEnter.selectAll("tr") .data(function(p) { return p.series}) .enter() .append("tr") .classed("highlight", function(p) { return p.highlight}) ; trowEnter.append("td") .classed("legend-color-guide",true) .append("div") .style("background-color", function(p) { return p.color}); trowEnter.append("td") .classed("key",true) .html(function(p) {return p.key}); trowEnter.append("td") .classed("value",true) .html(function(p,i) { return valueFormatter(p.value,i) }); trowEnter.selectAll("td").each(function(p) { if (p.highlight) { var opacityScale = d3.scale.linear().domain([0,1]).range(["#fff",p.color]); var opacity = 0.6; d3.select(this) .style("border-bottom-color", opacityScale(opacity)) .style("border-top-color", opacityScale(opacity)) ; } }); var html = table.node().outerHTML; if (d.footer !== undefined) html += "<div class='footer'>" + d.footer + "</div>"; return html; }; var dataSeriesExists = function(d) { if (d && d.series && d.series.length > 0) return true; return false; }; //In situations where the chart is in a 'viewBox', re-position the tooltip based on how far chart is zoomed. function convertViewBoxRatio() { if (chartContainer) { var svg = d3.select(chartContainer); if (svg.node().tagName !== "svg") { svg = svg.select("svg"); } var viewBox = (svg.node()) ? svg.attr('viewBox') : null; if (viewBox) { viewBox = viewBox.split(' '); var ratio = parseInt(svg.style('width')) / viewBox[2]; position.left = position.left * ratio; position.top = position.top * ratio; } } } //Creates new tooltip container, or uses existing one on DOM. function getTooltipContainer(newContent) { var body; if (chartContainer) body = d3.select(chartContainer); else body = d3.select("body"); var container = body.select(".nvtooltip"); if (container.node() === null) { //Create new tooltip div if it doesn't exist on DOM. container = body.append("div") .attr("class", "nvtooltip " + (classes? classes: "xy-tooltip")) .attr("id",id) ; } container.node().innerHTML = newContent; container.style("top",0).style("left",0).style("opacity",0); container.selectAll("div, table, td, tr").classed(nvPointerEventsClass,true) container.classed(nvPointerEventsClass,true); return container.node(); } //Draw the tooltip onto the DOM. function nvtooltip() { if (!enabled) return; if (!dataSeriesExists(data)) return; convertViewBoxRatio(); var left = position.left; var top = (fixedTop != null) ? fixedTop : position.top; var container = getTooltipContainer(contentGenerator(data)); tooltipElem = container; if (chartContainer) { var svgComp = chartContainer.getElementsByTagName("svg")[0]; var boundRect = (svgComp) ? svgComp.getBoundingClientRect() : chartContainer.getBoundingClientRect(); var svgOffset = {left:0,top:0}; if (svgComp) { var svgBound = svgComp.getBoundingClientRect(); var chartBound = chartContainer.getBoundingClientRect(); var svgBoundTop = svgBound.top; //Defensive code. Sometimes, svgBoundTop can be a really negative // number, like -134254. That's a bug. // If such a number is found, use zero instead. FireFox bug only if (svgBoundTop < 0) { var containerBound = chartContainer.getBoundingClientRect(); svgBoundTop = (Math.abs(svgBoundTop) > containerBound.height) ? 0 : svgBoundTop; } svgOffset.top = Math.abs(svgBoundTop - chartBound.top); svgOffset.left = Math.abs(svgBound.left - chartBound.left); } //If the parent container is an overflow <div> with scrollbars, subtract the scroll offsets. //You need to also add any offset between the <svg> element and its containing <div> //Finally, add any offset of the containing <div> on the whole page. left += chartContainer.offsetLeft + svgOffset.left - 2*chartContainer.scrollLeft; top += chartContainer.offsetTop + svgOffset.top - 2*chartContainer.scrollTop; } if (snapDistance && snapDistance > 0) { top = Math.floor(top/snapDistance) * snapDistance; } nv.tooltip.calcTooltipPosition([left,top], gravity, distance, container); return nvtooltip; }; nvtooltip.nvPointerEventsClass = nvPointerEventsClass; nvtooltip.content = function(_) { if (!arguments.length) return content; content = _; return nvtooltip; }; //Returns tooltipElem...not able to set it. nvtooltip.tooltipElem = function() { return tooltipElem; }; nvtooltip.contentGenerator = function(_) { if (!arguments.length) return contentGenerator; if (typeof _ === 'function') { contentGenerator = _; } return nvtooltip; }; nvtooltip.data = function(_) { if (!arguments.length) return data; data = _; return nvtooltip; }; nvtooltip.gravity = function(_) { if (!arguments.length) return gravity; gravity = _; return nvtooltip; }; nvtooltip.distance = function(_) { if (!arguments.length) return distance; distance = _; return nvtooltip; }; nvtooltip.snapDistance = function(_) { if (!arguments.length) return snapDistance; snapDistance = _; return nvtooltip; }; nvtooltip.classes = function(_) { if (!arguments.length) return classes; classes = _; return nvtooltip; }; nvtooltip.chartContainer = function(_) { if (!arguments.length) return chartContainer; chartContainer = _; return nvtooltip; }; nvtooltip.position = function(_) { if (!arguments.length) return position; position.left = (typeof _.left !== 'undefined') ? _.left : position.left; position.top = (typeof _.top !== 'undefined') ? _.top : position.top; return nvtooltip; }; nvtooltip.fixedTop = function(_) { if (!arguments.length) return fixedTop; fixedTop = _; return nvtooltip; }; nvtooltip.enabled = function(_) { if (!arguments.length) return enabled; enabled = _; return nvtooltip; }; nvtooltip.valueFormatter = function(_) { if (!arguments.length) return valueFormatter; if (typeof _ === 'function') { valueFormatter = _; } return nvtooltip; }; nvtooltip.headerFormatter = function(_) { if (!arguments.length) return headerFormatter; if (typeof _ === 'function') { headerFormatter = _; } return nvtooltip; }; //id() is a read-only function. You can't use it to set the id. nvtooltip.id = function() { return id; }; return nvtooltip; }; //Original tooltip.show function. Kept for backward compatibility. // pos = [left,top] nv.tooltip.show = function(pos, content, gravity, dist, parentContainer, classes) { //Create new tooltip div if it doesn't exist on DOM. var container = document.createElement('div'); container.className = 'nvtooltip ' + (classes ? classes : 'xy-tooltip'); var body = parentContainer; if ( !parentContainer || parentContainer.tagName.match(/g|svg/i)) { //If the parent element is an SVG element, place tooltip in the <body> element. body = document.getElementsByTagName('body')[0]; } container.style.left = 0; container.style.top = 0; container.style.opacity = 0; container.innerHTML = content; body.appendChild(container); //If the parent container is an overflow <div> with scrollbars, subtract the scroll offsets. if (parentContainer) { pos[0] = pos[0] - parentContainer.scrollLeft; pos[1] = pos[1] - parentContainer.scrollTop; } nv.tooltip.calcTooltipPosition(pos, gravity, dist, container); }; //Looks up the ancestry of a DOM element, and returns the first NON-svg node. nv.tooltip.findFirstNonSVGParent = function(Elem) { while(Elem.tagName.match(/^g|svg$/i) !== null) { Elem = Elem.parentNode; } return Elem; }; //Finds the total offsetTop of a given DOM element. //Looks up the entire ancestry of an element, up to the first relatively positioned element. nv.tooltip.findTotalOffsetTop = function ( Elem, initialTop ) { var offsetTop = initialTop; do { if( !isNaN( Elem.offsetTop ) ) { offsetTop += (Elem.offsetTop); } } while( Elem = Elem.offsetParent ); return offsetTop; }; //Finds the total offsetLeft of a given DOM element. //Looks up the entire ancestry of an element, up to the first relatively positioned element. nv.tooltip.findTotalOffsetLeft = function ( Elem, initialLeft) { var offsetLeft = initialLeft; do { if( !isNaN( Elem.offsetLeft ) ) { offsetLeft += (Elem.offsetLeft); } } while( Elem = Elem.offsetParent ); return offsetLeft; }; //Global utility function to render a tooltip on the DOM. //pos = [left,top] coordinates of where to place the tooltip, relative to the SVG chart container. //gravity = how to orient the tooltip //dist = how far away from the mouse to place tooltip //container = tooltip DIV nv.tooltip.calcTooltipPosition = function(pos, gravity, dist, container) { var height = parseInt(container.offsetHeight), width = parseInt(container.offsetWidth), windowWidth = nv.utils.windowSize().width, windowHeight = nv.utils.windowSize().height, scrollTop = window.pageYOffset, scrollLeft = window.pageXOffset, left, top; windowHeight = window.innerWidth >= document.body.scrollWidth ? windowHeight : windowHeight - 16; windowWidth = window.innerHeight >= document.body.scrollHeight ? windowWidth : windowWidth - 16; gravity = gravity || 's'; dist = dist || 20; var tooltipTop = function ( Elem ) { return nv.tooltip.findTotalOffsetTop(Elem, top); }; var tooltipLeft = function ( Elem ) { return nv.tooltip.findTotalOffsetLeft(Elem,left); }; switch (gravity) { case 'e': left = pos[0] - width - dist; top = pos[1] - (height / 2); var tLeft = tooltipLeft(container); var tTop = tooltipTop(container); if (tLeft < scrollLeft) left = pos[0] + dist > scrollLeft ? pos[0] + dist : scrollLeft - tLeft + left; if (tTop < scrollTop) top = scrollTop - tTop + top; if (tTop + height > scrollTop + windowHeight) top = scrollTop + windowHeight - tTop + top - height; break; case 'w': left = pos[0] + dist; top = pos[1] - (height / 2); var tLeft = tooltipLeft(container); var tTop = tooltipTop(container); if (tLeft + width > windowWidth) left = pos[0] - width - dist; if (tTop < scrollTop) top = scrollTop + 5; if (tTop + height > scrollTop + windowHeight) top = scrollTop + windowHeight - tTop + top - height; break; case 'n': left = pos[0] - (width / 2) - 5; top = pos[1] + dist; var tLeft = tooltipLeft(container); var tTop = tooltipTop(container); if (tLeft < scrollLeft) left = scrollLeft + 5; if (tLeft + width > windowWidth) left = left - width/2 + 5; if (tTop + height > scrollTop + windowHeight) top = scrollTop + windowHeight - tTop + top - height; break; case 's': left = pos[0] - (width / 2); top = pos[1] - height - dist; var tLeft = tooltipLeft(container); var tTop = tooltipTop(container); if (tLeft < scrollLeft) left = scrollLeft + 5; if (tLeft + width > windowWidth) left = left - width/2 + 5; if (scrollTop > tTop) top = scrollTop; break; case 'none': left = pos[0]; top = pos[1] - dist; var tLeft = tooltipLeft(container); var tTop = tooltipTop(container); break; } container.style.left = left+'px'; container.style.top = top+'px'; container.style.opacity = 1; container.style.position = 'absolute'; return container; }; //Global utility function to remove tooltips from the DOM. nv.tooltip.cleanup = function() { // Find the tooltips, mark them for removal by this class (so others cleanups won't find it) var tooltips = document.getElementsByClassName('nvtooltip'); var purging = []; while(tooltips.length) { purging.push(tooltips[0]); tooltips[0].style.transitionDelay = '0 !important'; tooltips[0].style.opacity = 0; tooltips[0].className = 'nvtooltip-pending-removal'; } setTimeout(function() { while (purging.length) { var removeMe = purging.pop(); removeMe.parentNode.removeChild(removeMe); } }, 500); }; })(); nv.utils.windowSize = function() { // Sane defaults var size = {width: 640, height: 480}; // Earlier IE uses Doc.body if (document.body && document.body.offsetWidth) { size.width = document.body.offsetWidth; size.height = document.body.offsetHeight; } // IE can use depending on mode it is in if (document.compatMode=='CSS1Compat' && document.documentElement && document.documentElement.offsetWidth ) { size.width = document.documentElement.offsetWidth; size.height = document.documentElement.offsetHeight; } // Most recent browsers use if (window.innerWidth && window.innerHeight) { size.width = window.innerWidth; size.height = window.innerHeight; } return (size); }; // Easy way to bind multiple functions to window.onresize // TODO: give a way to remove a function after its bound, other than removing all of them nv.utils.windowResize = function(fun){ if (fun === undefined) return; var oldresize = window.onresize; window.onresize = function(e) { if (typeof oldresize == 'function') oldresize(e); fun(e); } } // Backwards compatible way to implement more d3-like coloring of graphs. // If passed an array, wrap it in a function which implements the old default // behavior nv.utils.getColor = function(color) { if (!arguments.length) return nv.utils.defaultColor(); //if you pass in nothing, get default colors back if( Object.prototype.toString.call( color ) === '[object Array]' ) return function(d, i) { return d.color || color[i % color.length]; }; else return color; //can't really help it if someone passes rubbish as color } // Default color chooser uses the index of an object as before. nv.utils.defaultColor = function() { var colors = d3.scale.category20().range(); return function(d, i) { return d.color || colors[i % colors.length] }; } // Returns a color function that takes the result of 'getKey' for each series and // looks for a corresponding color from the dictionary, nv.utils.customTheme = function(dictionary, getKey, defaultColors) { getKey = getKey || function(series) { return series.key }; // use default series.key if getKey is undefined defaultColors = defaultColors || d3.scale.category20().range(); //default color function var defIndex = defaultColors.length; //current default color (going in reverse) return function(series, index) { var key = getKey(series); if (!defIndex) defIndex = defaultColors.length; //used all the default colors, start over if (typeof dictionary[key] !== "undefined") return (typeof dictionary[key] === "function") ? dictionary[key]() : dictionary[key]; else return defaultColors[--defIndex]; // no match in dictionary, use default color } } // From the PJAX example on d3js.org, while this is not really directly needed // it's a very cool method for doing pjax, I may expand upon it a little bit, // open to suggestions on anything that may be useful nv.utils.pjax = function(links, content) { d3.selectAll(links).on("click", function() { history.pushState(this.href, this.textContent, this.href); load(this.href); d3.event.preventDefault(); }); function load(href) { d3.html(href, function(fragment) { var target = d3.select(content).node(); target.parentNode.replaceChild(d3.select(fragment).select(content).node(), target); nv.utils.pjax(links, content); }); } d3.select(window).on("popstate", function() { if (d3.event.state) load(d3.event.state); }); } /* For situations where we want to approximate the width in pixels for an SVG:text element. Most common instance is when the element is in a display:none; container. Forumla is : text.length * font-size * constant_factor */ nv.utils.calcApproxTextWidth = function (svgTextElem) { if (typeof svgTextElem.style === 'function' && typeof svgTextElem.text === 'function') { var fontSize = parseInt(svgTextElem.style("font-size").replace("px","")); var textLength = svgTextElem.text().length; return textLength * fontSize * 0.5; } return 0; }; /* Numbers that are undefined, null or NaN, convert them to zeros. */ nv.utils.NaNtoZero = function(n) { if (typeof n !== 'number' || isNaN(n) || n === null || n === Infinity) return 0; return n; }; /* Snippet of code you can insert into each nv.models.* to give you the ability to do things like: chart.options({ showXAxis: true, tooltips: true }); To enable in the chart: chart.options = nv.utils.optionsFunc.bind(chart); */ nv.utils.optionsFunc = function(args) { if (args) { d3.map(args).forEach((function(key,value) { if (typeof this[key] === "function") { this[key](value); } }).bind(this)); } return this; };nv.models.axis = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var axis = d3.svg.axis() ; var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 75 //only used for tickLabel currently , height = 60 //only used for tickLabel currently , scale = d3.scale.linear() , axisLabelText = null , showMaxMin = true //TODO: showMaxMin should be disabled on all ordinal scaled axes , highlightZero = true , rotateLabels = 0 , rotateYLabel = true , staggerLabels = false , isOrdinal = false , ticks = null , axisLabelDistance = 12 //The larger this number is, the closer the axis label is to the axis. ; axis .scale(scale) .orient('bottom') .tickFormat(function(d) { return d }) ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var scale0; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this); //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-axis').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-axis'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g') //------------------------------------------------------------ if (ticks !== null) axis.ticks(ticks); else if (axis.orient() == 'top' || axis.orient() == 'bottom') axis.ticks(Math.abs(scale.range()[1] - scale.range()[0]) / 100); //TODO: consider calculating width/height based on whether or not label is added, for reference in charts using this component g.transition().call(axis); scale0 = scale0 || axis.scale(); var fmt = axis.tickFormat(); if (fmt == null) { fmt = scale0.tickFormat(); } var axisLabel = g.selectAll('text.nv-axislabel') .data([axisLabelText || null]); axisLabel.exit().remove(); switch (axis.orient()) { case 'top': axisLabel.enter().append('text').attr('class', 'nv-axislabel'); var w = (scale.range().length==2) ? scale.range()[1] : (scale.range()[scale.range().length-1]+(scale.range()[1]-scale.range()[0])); axisLabel .attr('text-anchor', 'middle') .attr('y', 0) .attr('x', w/2); if (showMaxMin) { var axisMaxMin = wrap.selectAll('g.nv-axisMaxMin') .data(scale.domain()); axisMaxMin.enter().append('g').attr('class', 'nv-axisMaxMin').append('text'); axisMaxMin.exit().remove(); axisMaxMin .attr('transform', function(d,i) { return 'translate(' + scale(d) + ',0)' }) .select('text') .attr('dy', '-0.5em') .attr('y', -axis.tickPadding()) .attr('text-anchor', 'middle') .text(function(d,i) { var v = fmt(d); return ('' + v).match('NaN') ? '' : v; }); axisMaxMin.transition() .attr('transform', function(d,i) { return 'translate(' + scale.range()[i] + ',0)' }); } break; case 'bottom': var xLabelMargin = 36; var maxTextWidth = 30; var xTicks = g.selectAll('g').select("text"); if (rotateLabels%360) { //Calculate the longest xTick width xTicks.each(function(d,i){ var width = this.getBBox().width; if(width > maxTextWidth) maxTextWidth = width; }); //Convert to radians before calculating sin. Add 30 to margin for healthy padding. var sin = Math.abs(Math.sin(rotateLabels*Math.PI/180)); var xLabelMargin = (sin ? sin*maxTextWidth : maxTextWidth)+30; //Rotate all xTicks xTicks .attr('transform', function(d,i,j) { return 'rotate(' + rotateLabels + ' 0,0)' }) .style('text-anchor', rotateLabels%360 > 0 ? 'start' : 'end'); } axisLabel.enter().append('text').attr('class', 'nv-axislabel'); var w = (scale.range().length==2) ? scale.range()[1] : (scale.range()[scale.range().length-1]+(scale.range()[1]-scale.range()[0])); axisLabel .attr('text-anchor', 'middle') .attr('y', xLabelMargin) .attr('x', w/2); if (showMaxMin) { //if (showMaxMin && !isOrdinal) { var axisMaxMin = wrap.selectAll('g.nv-axisMaxMin') //.data(scale.domain()) .data([scale.domain()[0], scale.domain()[scale.domain().length - 1]]); axisMaxMin.enter().append('g').attr('class', 'nv-axisMaxMin').append('text'); axisMaxMin.exit().remove(); axisMaxMin .attr('transform', function(d,i) { return 'translate(' + (scale(d) + (isOrdinal ? scale.rangeBand() / 2 : 0)) + ',0)' }) .select('text') .attr('dy', '.71em') .attr('y', axis.tickPadding()) .attr('transform', function(d,i,j) { return 'rotate(' + rotateLabels + ' 0,0)' }) .style('text-anchor', rotateLabels ? (rotateLabels%360 > 0 ? 'start' : 'end') : 'middle') .text(function(d,i) { var v = fmt(d); return ('' + v).match('NaN') ? '' : v; }); axisMaxMin.transition() .attr('transform', function(d,i) { //return 'translate(' + scale.range()[i] + ',0)' //return 'translate(' + scale(d) + ',0)' return 'translate(' + (scale(d) + (isOrdinal ? scale.rangeBand() / 2 : 0)) + ',0)' }); } if (staggerLabels) xTicks .attr('transform', function(d,i) { return 'translate(0,' + (i % 2 == 0 ? '0' : '12') + ')' }); break; case 'right': axisLabel.enter().append('text').attr('class', 'nv-axislabel'); axisLabel .style('text-anchor', rotateYLabel ? 'middle' : 'begin') .attr('transform', rotateYLabel ? 'rotate(90)' : '') .attr('y', rotateYLabel ? (-Math.max(margin.right,width) + 12) : -10) //TODO: consider calculating this based on largest tick width... OR at least expose this on chart .attr('x', rotateYLabel ? (scale.range()[0] / 2) : axis.tickPadding()); if (showMaxMin) { var axisMaxMin = wrap.selectAll('g.nv-axisMaxMin') .data(scale.domain()); axisMaxMin.enter().append('g').attr('class', 'nv-axisMaxMin').append('text') .style('opacity', 0); axisMaxMin.exit().remove(); axisMaxMin .attr('transform', function(d,i) { return 'translate(0,' + scale(d) + ')' }) .select('text') .attr('dy', '.32em') .attr('y', 0) .attr('x', axis.tickPadding()) .style('text-anchor', 'start') .text(function(d,i) { var v = fmt(d); return ('' + v).match('NaN') ? '' : v; }); axisMaxMin.transition() .attr('transform', function(d,i) { return 'translate(0,' + scale.range()[i] + ')' }) .select('text') .style('opacity', 1); } break; case 'left': /* //For dynamically placing the label. Can be used with dynamically-sized chart axis margins var yTicks = g.selectAll('g').select("text"); yTicks.each(function(d,i){ var labelPadding = this.getBBox().width + axis.tickPadding() + 16; if(labelPadding > width) width = labelPadding; }); */ axisLabel.enter().append('text').attr('class', 'nv-axislabel'); axisLabel .style('text-anchor', rotateYLabel ? 'middle' : 'end') .attr('transform', rotateYLabel ? 'rotate(-90)' : '') .attr('y', rotateYLabel ? (-Math.max(margin.left,width) + axisLabelDistance) : -10) //TODO: consider calculating this based on largest tick width... OR at least expose this on chart .attr('x', rotateYLabel ? (-scale.range()[0] / 2) : -axis.tickPadding()); if (showMaxMin) { var axisMaxMin = wrap.selectAll('g.nv-axisMaxMin') .data(scale.domain()); axisMaxMin.enter().append('g').attr('class', 'nv-axisMaxMin').append('text') .style('opacity', 0); axisMaxMin.exit().remove(); axisMaxMin .attr('transform', function(d,i) { return 'translate(0,' + scale0(d) + ')' }) .select('text') .attr('dy', '.32em') .attr('y', 0) .attr('x', -axis.tickPadding()) .attr('text-anchor', 'end') .text(function(d,i) { var v = fmt(d); return ('' + v).match('NaN') ? '' : v; }); axisMaxMin.transition() .attr('transform', function(d,i) { return 'translate(0,' + scale.range()[i] + ')' }) .select('text') .style('opacity', 1); } break; } axisLabel .text(function(d) { return d }); if (showMaxMin && (axis.orient() === 'left' || axis.orient() === 'right')) { //check if max and min overlap other values, if so, hide the values that overlap g.selectAll('g') // the g's wrapping each tick .each(function(d,i) { d3.select(this).select('text').attr('opacity', 1); if (scale(d) < scale.range()[1] + 10 || scale(d) > scale.range()[0] - 10) { // 10 is assuming text height is 16... if d is 0, leave it! if (d > 1e-10 || d < -1e-10) // accounts for minor floating point errors... though could be problematic if the scale is EXTREMELY SMALL d3.select(this).attr('opacity', 0); d3.select(this).select('text').attr('opacity', 0); // Don't remove the ZERO line!! } }); //if Max and Min = 0 only show min, Issue #281 if (scale.domain()[0] == scale.domain()[1] && scale.domain()[0] == 0) wrap.selectAll('g.nv-axisMaxMin') .style('opacity', function(d,i) { return !i ? 1 : 0 }); } if (showMaxMin && (axis.orient() === 'top' || axis.orient() === 'bottom')) { var maxMinRange = []; wrap.selectAll('g.nv-axisMaxMin') .each(function(d,i) { try { if (i) // i== 1, max position maxMinRange.push(scale(d) - this.getBBox().width - 4) //assuming the max and min labels are as wide as the next tick (with an extra 4 pixels just in case) else // i==0, min position maxMinRange.push(scale(d) + this.getBBox().width + 4) }catch (err) { if (i) // i== 1, max position maxMinRange.push(scale(d) - 4) //assuming the max and min labels are as wide as the next tick (with an extra 4 pixels just in case) else // i==0, min position maxMinRange.push(scale(d) + 4) } }); g.selectAll('g') // the g's wrapping each tick .each(function(d,i) { if (scale(d) < maxMinRange[0] || scale(d) > maxMinRange[1]) { if (d > 1e-10 || d < -1e-10) // accounts for minor floating point errors... though could be problematic if the scale is EXTREMELY SMALL d3.select(this).remove(); else d3.select(this).select('text').remove(); // Don't remove the ZERO line!! } }); } //highlight zero line ... Maybe should not be an option and should just be in CSS? if (highlightZero) g.selectAll('.tick') .filter(function(d) { return !parseFloat(Math.round(d.__data__*100000)/1000000) && (d.__data__ !== undefined) }) //this is because sometimes the 0 tick is a very small fraction, TODO: think of cleaner technique .classed('zero', true); //store old scales for use in transitions on update scale0 = scale.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.axis = axis; d3.rebind(chart, axis, 'orient', 'tickValues', 'tickSubdivide', 'tickSize', 'tickPadding', 'tickFormat'); d3.rebind(chart, scale, 'domain', 'range', 'rangeBand', 'rangeBands'); //these are also accessible by chart.scale(), but added common ones directly for ease of use chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if(!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; } chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.ticks = function(_) { if (!arguments.length) return ticks; ticks = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.axisLabel = function(_) { if (!arguments.length) return axisLabelText; axisLabelText = _; return chart; } chart.showMaxMin = function(_) { if (!arguments.length) return showMaxMin; showMaxMin = _; return chart; } chart.highlightZero = function(_) { if (!arguments.length) return highlightZero; highlightZero = _; return chart; } chart.scale = function(_) { if (!arguments.length) return scale; scale = _; axis.scale(scale); isOrdinal = typeof scale.rangeBands === 'function'; d3.rebind(chart, scale, 'domain', 'range', 'rangeBand', 'rangeBands'); return chart; } chart.rotateYLabel = function(_) { if(!arguments.length) return rotateYLabel; rotateYLabel = _; return chart; } chart.rotateLabels = function(_) { if(!arguments.length) return rotateLabels; rotateLabels = _; return chart; } chart.staggerLabels = function(_) { if (!arguments.length) return staggerLabels; staggerLabels = _; return chart; }; chart.axisLabelDistance = function(_) { if (!arguments.length) return axisLabelDistance; axisLabelDistance = _; return chart; }; //============================================================ return chart; } //TODO: consider deprecating and using multibar with single series for this nv.models.historicalBar = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , x = d3.scale.linear() , y = d3.scale.linear() , getX = function(d) { return d.x } , getY = function(d) { return d.y } , forceX = [] , forceY = [0] , padData = false , clipEdge = true , color = nv.utils.defaultColor() , xDomain , yDomain , xRange , yRange , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') , interactive = true ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //------------------------------------------------------------ // Setup Scales x .domain(xDomain || d3.extent(data[0].values.map(getX).concat(forceX) )) if (padData) x.range(xRange || [availableWidth * .5 / data[0].values.length, availableWidth * (data[0].values.length - .5) / data[0].values.length ]); else x.range(xRange || [0, availableWidth]); y .domain(yDomain || d3.extent(data[0].values.map(getY).concat(forceY) )) .range(yRange || [availableHeight, 0]); // If scale's domain don't have a range, slightly adjust to make one... so a chart can show a single data point if (x.domain()[0] === x.domain()[1]) x.domain()[0] ? x.domain([x.domain()[0] - x.domain()[0] * 0.01, x.domain()[1] + x.domain()[1] * 0.01]) : x.domain([-1,1]); if (y.domain()[0] === y.domain()[1]) y.domain()[0] ? y.domain([y.domain()[0] + y.domain()[0] * 0.01, y.domain()[1] - y.domain()[1] * 0.01]) : y.domain([-1,1]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-historicalBar-' + id).data([data[0].values]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-historicalBar-' + id); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-bars'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ container .on('click', function(d,i) { dispatch.chartClick({ data: d, index: i, pos: d3.event, id: id }); }); defsEnter.append('clipPath') .attr('id', 'nv-chart-clip-path-' + id) .append('rect'); wrap.select('#nv-chart-clip-path-' + id + ' rect') .attr('width', availableWidth) .attr('height', availableHeight); g .attr('clip-path', clipEdge ? 'url(#nv-chart-clip-path-' + id + ')' : ''); var bars = wrap.select('.nv-bars').selectAll('.nv-bar') .data(function(d) { return d }, function(d,i) {return getX(d,i)}); bars.exit().remove(); var barsEnter = bars.enter().append('rect') //.attr('class', function(d,i,j) { return (getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive') + ' nv-bar-' + j + '-' + i }) .attr('x', 0 ) .attr('y', function(d,i) { return nv.utils.NaNtoZero(y(Math.max(0, getY(d,i)))) }) .attr('height', function(d,i) { return nv.utils.NaNtoZero(Math.abs(y(getY(d,i)) - y(0))) }) .attr('transform', function(d,i) { return 'translate(' + (x(getX(d,i)) - availableWidth / data[0].values.length * .45) + ',0)'; }) .on('mouseover', function(d,i) { if (!interactive) return; d3.select(this).classed('hover', true); dispatch.elementMouseover({ point: d, series: data[0], pos: [x(getX(d,i)), y(getY(d,i))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: 0, e: d3.event }); }) .on('mouseout', function(d,i) { if (!interactive) return; d3.select(this).classed('hover', false); dispatch.elementMouseout({ point: d, series: data[0], pointIndex: i, seriesIndex: 0, e: d3.event }); }) .on('click', function(d,i) { if (!interactive) return; dispatch.elementClick({ //label: d[label], value: getY(d,i), data: d, index: i, pos: [x(getX(d,i)), y(getY(d,i))], e: d3.event, id: id }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { if (!interactive) return; dispatch.elementDblClick({ //label: d[label], value: getY(d,i), data: d, index: i, pos: [x(getX(d,i)), y(getY(d,i))], e: d3.event, id: id }); d3.event.stopPropagation(); }); bars .attr('fill', function(d,i) { return color(d, i); }) .attr('class', function(d,i,j) { return (getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive') + ' nv-bar-' + j + '-' + i }) .transition() .attr('transform', function(d,i) { return 'translate(' + (x(getX(d,i)) - availableWidth / data[0].values.length * .45) + ',0)'; }) //TODO: better width calculations that don't assume always uniform data spacing;w .attr('width', (availableWidth / data[0].values.length) * .9 ); bars.transition() .attr('y', function(d,i) { var rval = getY(d,i) < 0 ? y(0) : y(0) - y(getY(d,i)) < 1 ? y(0) - 1 : y(getY(d,i)); return nv.utils.NaNtoZero(rval); }) .attr('height', function(d,i) { return nv.utils.NaNtoZero(Math.max(Math.abs(y(getY(d,i)) - y(0)),1)) }); }); return chart; } //Create methods to allow outside functions to highlight a specific bar. chart.highlightPoint = function(pointIndex, isHoverOver) { d3.select(".nv-historicalBar-" + id) .select(".nv-bars .nv-bar-0-" + pointIndex) .classed("hover", isHoverOver) ; }; chart.clearHighlights = function() { d3.select(".nv-historicalBar-" + id) .select(".nv-bars .nv-bar.hover") .classed("hover", false) ; }; //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.forceX = function(_) { if (!arguments.length) return forceX; forceX = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.padData = function(_) { if (!arguments.length) return padData; padData = _; return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.interactive = function(_) { if(!arguments.length) return interactive; interactive = false; return chart; }; //============================================================ return chart; } // Chart design based on the recommendations of Stephen Few. Implementation // based on the work of Clint Ivy, Jamie Love, and Jason Davies. // http://projects.instantcognition.com/protovis/bulletchart/ nv.models.bullet = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , orient = 'left' // TODO top & bottom , reverse = false , ranges = function(d) { return d.ranges } , markers = function(d) { return d.markers } , measures = function(d) { return d.measures } , rangeLabels = function(d) { return d.rangeLabels ? d.rangeLabels : [] } , markerLabels = function(d) { return d.markerLabels ? d.markerLabels : [] } , measureLabels = function(d) { return d.measureLabels ? d.measureLabels : [] } , forceX = [0] // List of numbers to Force into the X scale (ie. 0, or a max / min, etc.) , width = 380 , height = 30 , tickFormat = null , color = nv.utils.getColor(['#1f77b4']) , dispatch = d3.dispatch('elementMouseover', 'elementMouseout') ; //============================================================ function chart(selection) { selection.each(function(d, i) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); var rangez = ranges.call(this, d, i).slice().sort(d3.descending), markerz = markers.call(this, d, i).slice().sort(d3.descending), measurez = measures.call(this, d, i).slice().sort(d3.descending), rangeLabelz = rangeLabels.call(this, d, i).slice(), markerLabelz = markerLabels.call(this, d, i).slice(), measureLabelz = measureLabels.call(this, d, i).slice(); //------------------------------------------------------------ // Setup Scales // Compute the new x-scale. var x1 = d3.scale.linear() .domain( d3.extent(d3.merge([forceX, rangez])) ) .range(reverse ? [availableWidth, 0] : [0, availableWidth]); // Retrieve the old x-scale, if this is an update. var x0 = this.__chart__ || d3.scale.linear() .domain([0, Infinity]) .range(x1.range()); // Stash the new scale. this.__chart__ = x1; var rangeMin = d3.min(rangez), //rangez[2] rangeMax = d3.max(rangez), //rangez[0] rangeAvg = rangez[1]; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-bullet').data([d]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-bullet'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('rect').attr('class', 'nv-range nv-rangeMax'); gEnter.append('rect').attr('class', 'nv-range nv-rangeAvg'); gEnter.append('rect').attr('class', 'nv-range nv-rangeMin'); gEnter.append('rect').attr('class', 'nv-measure'); gEnter.append('path').attr('class', 'nv-markerTriangle'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ var w0 = function(d) { return Math.abs(x0(d) - x0(0)) }, // TODO: could optimize by precalculating x0(0) and x1(0) w1 = function(d) { return Math.abs(x1(d) - x1(0)) }; var xp0 = function(d) { return d < 0 ? x0(d) : x0(0) }, xp1 = function(d) { return d < 0 ? x1(d) : x1(0) }; g.select('rect.nv-rangeMax') .attr('height', availableHeight) .attr('width', w1(rangeMax > 0 ? rangeMax : rangeMin)) .attr('x', xp1(rangeMax > 0 ? rangeMax : rangeMin)) .datum(rangeMax > 0 ? rangeMax : rangeMin) /* .attr('x', rangeMin < 0 ? rangeMax > 0 ? x1(rangeMin) : x1(rangeMax) : x1(0)) */ g.select('rect.nv-rangeAvg') .attr('height', availableHeight) .attr('width', w1(rangeAvg)) .attr('x', xp1(rangeAvg)) .datum(rangeAvg) /* .attr('width', rangeMax <= 0 ? x1(rangeMax) - x1(rangeAvg) : x1(rangeAvg) - x1(rangeMin)) .attr('x', rangeMax <= 0 ? x1(rangeAvg) : x1(rangeMin)) */ g.select('rect.nv-rangeMin') .attr('height', availableHeight) .attr('width', w1(rangeMax)) .attr('x', xp1(rangeMax)) .attr('width', w1(rangeMax > 0 ? rangeMin : rangeMax)) .attr('x', xp1(rangeMax > 0 ? rangeMin : rangeMax)) .datum(rangeMax > 0 ? rangeMin : rangeMax) /* .attr('width', rangeMax <= 0 ? x1(rangeAvg) - x1(rangeMin) : x1(rangeMax) - x1(rangeAvg)) .attr('x', rangeMax <= 0 ? x1(rangeMin) : x1(rangeAvg)) */ g.select('rect.nv-measure') .style('fill', color) .attr('height', availableHeight / 3) .attr('y', availableHeight / 3) .attr('width', measurez < 0 ? x1(0) - x1(measurez[0]) : x1(measurez[0]) - x1(0)) .attr('x', xp1(measurez)) .on('mouseover', function() { dispatch.elementMouseover({ value: measurez[0], label: measureLabelz[0] || 'Current', pos: [x1(measurez[0]), availableHeight/2] }) }) .on('mouseout', function() { dispatch.elementMouseout({ value: measurez[0], label: measureLabelz[0] || 'Current' }) }) var h3 = availableHeight / 6; if (markerz[0]) { g.selectAll('path.nv-markerTriangle') .attr('transform', function(d) { return 'translate(' + x1(markerz[0]) + ',' + (availableHeight / 2) + ')' }) .attr('d', 'M0,' + h3 + 'L' + h3 + ',' + (-h3) + ' ' + (-h3) + ',' + (-h3) + 'Z') .on('mouseover', function() { dispatch.elementMouseover({ value: markerz[0], label: markerLabelz[0] || 'Previous', pos: [x1(markerz[0]), availableHeight/2] }) }) .on('mouseout', function() { dispatch.elementMouseout({ value: markerz[0], label: markerLabelz[0] || 'Previous' }) }); } else { g.selectAll('path.nv-markerTriangle').remove(); } wrap.selectAll('.nv-range') .on('mouseover', function(d,i) { var label = rangeLabelz[i] || (!i ? "Maximum" : i == 1 ? "Mean" : "Minimum"); dispatch.elementMouseover({ value: d, label: label, pos: [x1(d), availableHeight/2] }) }) .on('mouseout', function(d,i) { var label = rangeLabelz[i] || (!i ? "Maximum" : i == 1 ? "Mean" : "Minimum"); dispatch.elementMouseout({ value: d, label: label }) }) /* // THIS IS THE PREVIOUS BULLET IMPLEMENTATION, WILL REMOVE SHORTLY // Update the range rects. var range = g.selectAll('rect.nv-range') .data(rangez); range.enter().append('rect') .attr('class', function(d, i) { return 'nv-range nv-s' + i; }) .attr('width', w0) .attr('height', availableHeight) .attr('x', reverse ? x0 : 0) .on('mouseover', function(d,i) { dispatch.elementMouseover({ value: d, label: (i <= 0) ? 'Maximum' : (i > 1) ? 'Minimum' : 'Mean', //TODO: make these labels a variable pos: [x1(d), availableHeight/2] }) }) .on('mouseout', function(d,i) { dispatch.elementMouseout({ value: d, label: (i <= 0) ? 'Minimum' : (i >=1) ? 'Maximum' : 'Mean' //TODO: make these labels a variable }) }) d3.transition(range) .attr('x', reverse ? x1 : 0) .attr('width', w1) .attr('height', availableHeight); // Update the measure rects. var measure = g.selectAll('rect.nv-measure') .data(measurez); measure.enter().append('rect') .attr('class', function(d, i) { return 'nv-measure nv-s' + i; }) .style('fill', function(d,i) { return color(d,i ) }) .attr('width', w0) .attr('height', availableHeight / 3) .attr('x', reverse ? x0 : 0) .attr('y', availableHeight / 3) .on('mouseover', function(d) { dispatch.elementMouseover({ value: d, label: 'Current', //TODO: make these labels a variable pos: [x1(d), availableHeight/2] }) }) .on('mouseout', function(d) { dispatch.elementMouseout({ value: d, label: 'Current' //TODO: make these labels a variable }) }) d3.transition(measure) .attr('width', w1) .attr('height', availableHeight / 3) .attr('x', reverse ? x1 : 0) .attr('y', availableHeight / 3); // Update the marker lines. var marker = g.selectAll('path.nv-markerTriangle') .data(markerz); var h3 = availableHeight / 6; marker.enter().append('path') .attr('class', 'nv-markerTriangle') .attr('transform', function(d) { return 'translate(' + x0(d) + ',' + (availableHeight / 2) + ')' }) .attr('d', 'M0,' + h3 + 'L' + h3 + ',' + (-h3) + ' ' + (-h3) + ',' + (-h3) + 'Z') .on('mouseover', function(d,i) { dispatch.elementMouseover({ value: d, label: 'Previous', pos: [x1(d), availableHeight/2] }) }) .on('mouseout', function(d,i) { dispatch.elementMouseout({ value: d, label: 'Previous' }) }); d3.transition(marker) .attr('transform', function(d) { return 'translate(' + (x1(d) - x1(0)) + ',' + (availableHeight / 2) + ')' }); marker.exit().remove(); */ }); // d3.timer.flush(); // Not needed? return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); // left, right, top, bottom chart.orient = function(_) { if (!arguments.length) return orient; orient = _; reverse = orient == 'right' || orient == 'bottom'; return chart; }; // ranges (bad, satisfactory, good) chart.ranges = function(_) { if (!arguments.length) return ranges; ranges = _; return chart; }; // markers (previous, goal) chart.markers = function(_) { if (!arguments.length) return markers; markers = _; return chart; }; // measures (actual, forecast) chart.measures = function(_) { if (!arguments.length) return measures; measures = _; return chart; }; chart.forceX = function(_) { if (!arguments.length) return forceX; forceX = _; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.tickFormat = function(_) { if (!arguments.length) return tickFormat; tickFormat = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; //============================================================ return chart; }; // Chart design based on the recommendations of Stephen Few. Implementation // based on the work of Clint Ivy, Jamie Love, and Jason Davies. // http://projects.instantcognition.com/protovis/bulletchart/ nv.models.bulletChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var bullet = nv.models.bullet() ; var orient = 'left' // TODO top & bottom , reverse = false , margin = {top: 5, right: 40, bottom: 20, left: 120} , ranges = function(d) { return d.ranges } , markers = function(d) { return d.markers } , measures = function(d) { return d.measures } , width = null , height = 55 , tickFormat = null , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + x + '</h3>' + '<p>' + y + '</p>' } , noData = 'No Data Available.' , dispatch = d3.dispatch('tooltipShow', 'tooltipHide') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ) + margin.left, top = e.pos[1] + ( offsetElement.offsetTop || 0) + margin.top, content = tooltip(e.key, e.label, e.value, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'e' : 'w', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(d, i) { var container = d3.select(this); var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, that = this; chart.update = function() { chart(selection) }; chart.container = this; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!d || !ranges.call(this, d, i)) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', 18 + margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ var rangez = ranges.call(this, d, i).slice().sort(d3.descending), markerz = markers.call(this, d, i).slice().sort(d3.descending), measurez = measures.call(this, d, i).slice().sort(d3.descending); //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-bulletChart').data([d]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-bulletChart'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-bulletWrap'); gEnter.append('g').attr('class', 'nv-titles'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Compute the new x-scale. var x1 = d3.scale.linear() .domain([0, Math.max(rangez[0], markerz[0], measurez[0])]) // TODO: need to allow forceX and forceY, and xDomain, yDomain .range(reverse ? [availableWidth, 0] : [0, availableWidth]); // Retrieve the old x-scale, if this is an update. var x0 = this.__chart__ || d3.scale.linear() .domain([0, Infinity]) .range(x1.range()); // Stash the new scale. this.__chart__ = x1; /* // Derive width-scales from the x-scales. var w0 = bulletWidth(x0), w1 = bulletWidth(x1); function bulletWidth(x) { var x0 = x(0); return function(d) { return Math.abs(x(d) - x(0)); }; } function bulletTranslate(x) { return function(d) { return 'translate(' + x(d) + ',0)'; }; } */ var w0 = function(d) { return Math.abs(x0(d) - x0(0)) }, // TODO: could optimize by precalculating x0(0) and x1(0) w1 = function(d) { return Math.abs(x1(d) - x1(0)) }; var title = gEnter.select('.nv-titles').append('g') .attr('text-anchor', 'end') .attr('transform', 'translate(-6,' + (height - margin.top - margin.bottom) / 2 + ')'); title.append('text') .attr('class', 'nv-title') .text(function(d) { return d.title; }); title.append('text') .attr('class', 'nv-subtitle') .attr('dy', '1em') .text(function(d) { return d.subtitle; }); bullet .width(availableWidth) .height(availableHeight) var bulletWrap = g.select('.nv-bulletWrap'); d3.transition(bulletWrap).call(bullet); // Compute the tick format. var format = tickFormat || x1.tickFormat( availableWidth / 100 ); // Update the tick groups. var tick = g.selectAll('g.nv-tick') .data(x1.ticks( availableWidth / 50 ), function(d) { return this.textContent || format(d); }); // Initialize the ticks with the old scale, x0. var tickEnter = tick.enter().append('g') .attr('class', 'nv-tick') .attr('transform', function(d) { return 'translate(' + x0(d) + ',0)' }) .style('opacity', 1e-6); tickEnter.append('line') .attr('y1', availableHeight) .attr('y2', availableHeight * 7 / 6); tickEnter.append('text') .attr('text-anchor', 'middle') .attr('dy', '1em') .attr('y', availableHeight * 7 / 6) .text(format); // Transition the updating ticks to the new scale, x1. var tickUpdate = d3.transition(tick) .attr('transform', function(d) { return 'translate(' + x1(d) + ',0)' }) .style('opacity', 1); tickUpdate.select('line') .attr('y1', availableHeight) .attr('y2', availableHeight * 7 / 6); tickUpdate.select('text') .attr('y', availableHeight * 7 / 6); // Transition the exiting ticks to the new scale, x1. d3.transition(tick.exit()) .attr('transform', function(d) { return 'translate(' + x1(d) + ',0)' }) .style('opacity', 1e-6) .remove(); //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ dispatch.on('tooltipShow', function(e) { e.key = d.title; if (tooltips) showTooltip(e, that.parentNode); }); //============================================================ }); d3.timer.flush(); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ bullet.dispatch.on('elementMouseover.tooltip', function(e) { dispatch.tooltipShow(e); }); bullet.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.bullet = bullet; d3.rebind(chart, bullet, 'color'); chart.options = nv.utils.optionsFunc.bind(chart); // left, right, top, bottom chart.orient = function(x) { if (!arguments.length) return orient; orient = x; reverse = orient == 'right' || orient == 'bottom'; return chart; }; // ranges (bad, satisfactory, good) chart.ranges = function(x) { if (!arguments.length) return ranges; ranges = x; return chart; }; // markers (previous, goal) chart.markers = function(x) { if (!arguments.length) return markers; markers = x; return chart; }; // measures (actual, forecast) chart.measures = function(x) { if (!arguments.length) return measures; measures = x; return chart; }; chart.width = function(x) { if (!arguments.length) return width; width = x; return chart; }; chart.height = function(x) { if (!arguments.length) return height; height = x; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.tickFormat = function(x) { if (!arguments.length) return tickFormat; tickFormat = x; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; //============================================================ return chart; }; nv.models.cumulativeLineChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var lines = nv.models.line() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , controls = nv.models.legend() , interactiveLayer = nv.interactiveGuideline() ; var margin = {top: 30, right: 30, bottom: 50, left: 60} , color = nv.utils.defaultColor() , width = null , height = null , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , tooltips = true , showControls = true , useInteractiveGuideline = false , rescaleY = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>' } , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , id = lines.id() , state = { index: 0, rescaleY: rescaleY } , defaultState = null , noData = 'No Data Available.' , average = function(d) { return d.average } , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , transitionDuration = 250 , noErrorCheck = false //if set to TRUE, will bypass an error check in the indexify function. ; xAxis .orient('bottom') .tickPadding(7) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') ; //============================================================ controls.updateState(false); //============================================================ // Private Variables //------------------------------------------------------------ var dx = d3.scale.linear() , index = {i: 0, x: 0} ; var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(lines.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, null, null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this).classed('nv-chart-' + id, true), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } var indexDrag = d3.behavior.drag() .on('dragstart', dragStart) .on('drag', dragMove) .on('dragend', dragEnd); function dragStart(d,i) { d3.select(chart.container) .style('cursor', 'ew-resize'); } function dragMove(d,i) { index.x = d3.event.x; index.i = Math.round(dx.invert(index.x)); updateZero(); } function dragEnd(d,i) { d3.select(chart.container) .style('cursor', 'auto'); // update state and send stateChange with new index state.index = index.i; dispatch.stateChange(state); } //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = lines.xScale(); y = lines.yScale(); if (!rescaleY) { var seriesDomains = data .filter(function(series) { return !series.disabled }) .map(function(series,i) { var initialDomain = d3.extent(series.values, lines.y()); //account for series being disabled when losing 95% or more if (initialDomain[0] < -.95) initialDomain[0] = -.95; return [ (initialDomain[0] - initialDomain[1]) / (1 + initialDomain[1]), (initialDomain[1] - initialDomain[0]) / (1 + initialDomain[0]) ]; }); var completeDomain = [ d3.min(seriesDomains, function(d) { return d[0] }), d3.max(seriesDomains, function(d) { return d[1] }) ] lines.yDomain(completeDomain); } else { lines.yDomain(null); } dx .domain([0, data[0].values.length - 1]) //Assumes all series have same length .range([0, availableWidth]) .clamp(true); //------------------------------------------------------------ var data = indexify(index.i, data); //------------------------------------------------------------ // Setup containers and skeleton of chart var interactivePointerEvents = (useInteractiveGuideline) ? "none" : "all"; var wrap = container.selectAll('g.nv-wrap.nv-cumulativeLine').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-cumulativeLine').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-interactive'); gEnter.append('g').attr('class', 'nv-x nv-axis').style("pointer-events","none"); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-background'); gEnter.append('g').attr('class', 'nv-linesWrap').style("pointer-events",interactivePointerEvents); gEnter.append('g').attr('class', 'nv-avgLinesWrap').style("pointer-events","none"); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth); g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-legendWrap') .attr('transform', 'translate(0,' + (-margin.top) +')') } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { var controlsData = [ { key: 'Re-scale y-axis', disabled: !rescaleY } ]; controls .width(140) .color(['#444', '#444', '#444']) .rightAlign(false) .margin({top: 5, right: 0, bottom: 5, left: 20}) ; g.select('.nv-controlsWrap') .datum(controlsData) .attr('transform', 'translate(0,' + (-margin.top) +')') .call(controls); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } // Show error if series goes below 100% var tempDisabled = data.filter(function(d) { return d.tempDisabled }); wrap.select('.tempDisabled').remove(); //clean-up and prevent duplicates if (tempDisabled.length) { wrap.append('text').attr('class', 'tempDisabled') .attr('x', availableWidth / 2) .attr('y', '-.71em') .style('text-anchor', 'end') .text(tempDisabled.map(function(d) { return d.key }).join(', ') + ' values cannot be calculated for this time period.'); } //------------------------------------------------------------ // Main Chart Component(s) //------------------------------------------------------------ //Set up interactive layer if (useInteractiveGuideline) { interactiveLayer .width(availableWidth) .height(availableHeight) .margin({left:margin.left,top:margin.top}) .svgContainer(container) .xScale(x); wrap.select(".nv-interactive").call(interactiveLayer); } gEnter.select('.nv-background') .append('rect'); g.select('.nv-background rect') .attr('width', availableWidth) .attr('height', availableHeight); lines //.x(function(d) { return d.x }) .y(function(d) { return d.display.y }) .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && !data[i].tempDisabled; })); var linesWrap = g.select('.nv-linesWrap') .datum(data.filter(function(d) { return !d.disabled && !d.tempDisabled })); //d3.transition(linesWrap).call(lines); linesWrap.call(lines); /*Handle average lines [AN-612] ----------------------------*/ //Store a series index number in the data array. data.forEach(function(d,i) { d.seriesIndex = i; }); var avgLineData = data.filter(function(d) { return !d.disabled && !!average(d); }); var avgLines = g.select(".nv-avgLinesWrap").selectAll("line") .data(avgLineData, function(d) { return d.key; }); var getAvgLineY = function(d) { //If average lines go off the svg element, clamp them to the svg bounds. var yVal = y(average(d)); if (yVal < 0) return 0; if (yVal > availableHeight) return availableHeight; return yVal; }; avgLines.enter() .append('line') .style('stroke-width',2) .style('stroke-dasharray','10,10') .style('stroke',function (d,i) { return lines.color()(d,d.seriesIndex); }) .attr('x1',0) .attr('x2',availableWidth) .attr('y1', getAvgLineY) .attr('y2', getAvgLineY); avgLines .style('stroke-opacity',function(d){ //If average lines go offscreen, make them transparent var yVal = y(average(d)); if (yVal < 0 || yVal > availableHeight) return 0; return 1; }) .attr('x1',0) .attr('x2',availableWidth) .attr('y1', getAvgLineY) .attr('y2', getAvgLineY); avgLines.exit().remove(); //Create index line ----------------------------------------- var indexLine = linesWrap.selectAll('.nv-indexLine') .data([index]); indexLine.enter().append('rect').attr('class', 'nv-indexLine') .attr('width', 3) .attr('x', -2) .attr('fill', 'red') .attr('fill-opacity', .5) .style("pointer-events","all") .call(indexDrag) indexLine .attr('transform', function(d) { return 'translate(' + dx(d.i) + ',0)' }) .attr('height', availableHeight) //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) //Suggest how many ticks based on the chart width and D3 should listen (70 is the optimal number for MM/DD/YY dates) .ticks( Math.min(data[0].values.length,availableWidth/70) ) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')'); d3.transition(g.select('.nv-x.nv-axis')) .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); d3.transition(g.select('.nv-y.nv-axis')) .call(yAxis); } //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ function updateZero() { indexLine .data([index]); //When dragging the index line, turn off line transitions. // Then turn them back on when done dragging. var oldDuration = chart.transitionDuration(); chart.transitionDuration(0); chart.update(); chart.transitionDuration(oldDuration); } g.select('.nv-background rect') .on('click', function() { index.x = d3.mouse(this)[0]; index.i = Math.round(dx.invert(index.x)); // update state and send stateChange with new index state.index = index.i; dispatch.stateChange(state); updateZero(); }); lines.dispatch.on('elementClick', function(e) { index.i = e.pointIndex; index.x = dx(index.i); // update state and send stateChange with new index state.index = index.i; dispatch.stateChange(state); updateZero(); }); controls.dispatch.on('legendClick', function(d,i) { d.disabled = !d.disabled; rescaleY = !d.disabled; state.rescaleY = rescaleY; dispatch.stateChange(state); chart.update(); }); legend.dispatch.on('stateChange', function(newState) { state.disabled = newState.disabled; dispatch.stateChange(state); chart.update(); }); interactiveLayer.dispatch.on('elementMousemove', function(e) { lines.clearHighlights(); var singlePoint, pointIndex, pointXLocation, allData = []; data .filter(function(series, i) { series.seriesIndex = i; return !series.disabled; }) .forEach(function(series,i) { pointIndex = nv.interactiveBisect(series.values, e.pointXValue, chart.x()); lines.highlightPoint(i, pointIndex, true); var point = series.values[pointIndex]; if (typeof point === 'undefined') return; if (typeof singlePoint === 'undefined') singlePoint = point; if (typeof pointXLocation === 'undefined') pointXLocation = chart.xScale()(chart.x()(point,pointIndex)); allData.push({ key: series.key, value: chart.y()(point, pointIndex), color: color(series,series.seriesIndex) }); }); //Highlight the tooltip entry based on which point the mouse is closest to. if (allData.length > 2) { var yValue = chart.yScale().invert(e.mouseY); var domainExtent = Math.abs(chart.yScale().domain()[0] - chart.yScale().domain()[1]); var threshold = 0.03 * domainExtent; var indexToHighlight = nv.nearestValueIndex(allData.map(function(d){return d.value}),yValue,threshold); if (indexToHighlight !== null) allData[indexToHighlight].highlight = true; } var xValue = xAxis.tickFormat()(chart.x()(singlePoint,pointIndex), pointIndex); interactiveLayer.tooltip .position({left: pointXLocation + margin.left, top: e.mouseY + margin.top}) .chartContainer(that.parentNode) .enabled(tooltips) .valueFormatter(function(d,i) { return yAxis.tickFormat()(d); }) .data( { value: xValue, series: allData } )(); interactiveLayer.renderGuideLine(pointXLocation); }); interactiveLayer.dispatch.on("elementMouseout",function(e) { dispatch.tooltipHide(); lines.clearHighlights(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } if (typeof e.index !== 'undefined') { index.i = e.index; index.x = dx(index.i); state.index = e.index; indexLine .data([index]); } if (typeof e.rescaleY !== 'undefined') { rescaleY = e.rescaleY; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.lines = lines; chart.legend = legend; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.interactiveLayer = interactiveLayer; d3.rebind(chart, lines, 'defined', 'isArea', 'x', 'y', 'xScale','yScale', 'size', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi','useVoronoi', 'id'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.rescaleY = function(_) { if (!arguments.length) return rescaleY; rescaleY = _; return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.useInteractiveGuideline = function(_) { if(!arguments.length) return useInteractiveGuideline; useInteractiveGuideline = _; if (_ === true) { chart.interactive(false); chart.useVoronoi(false); } return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.average = function(_) { if(!arguments.length) return average; average = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; chart.noErrorCheck = function(_) { if (!arguments.length) return noErrorCheck; noErrorCheck = _; return chart; }; //============================================================ //============================================================ // Functions //------------------------------------------------------------ /* Normalize the data according to an index point. */ function indexify(idx, data) { return data.map(function(line, i) { if (!line.values) { return line; } var v = lines.y()(line.values[idx], idx); //TODO: implement check below, and disable series if series loses 100% or more cause divide by 0 issue if (v < -.95 && !noErrorCheck) { //if a series loses more than 100%, calculations fail.. anything close can cause major distortion (but is mathematically correct till it hits 100) line.tempDisabled = true; return line; } line.tempDisabled = false; line.values = line.values.map(function(point, pointIndex) { point.display = {'y': (lines.y()(point, pointIndex) - v) / (1 + v) }; return point; }) return line; }) } //============================================================ return chart; } //TODO: consider deprecating by adding necessary features to multiBar model nv.models.discreteBar = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , x = d3.scale.ordinal() , y = d3.scale.linear() , getX = function(d) { return d.x } , getY = function(d) { return d.y } , forceY = [0] // 0 is forced by default.. this makes sense for the majority of bar graphs... user can always do chart.forceY([]) to remove , color = nv.utils.defaultColor() , showValues = false , valueFormat = d3.format(',.2f') , xDomain , yDomain , xRange , yRange , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') , rectClass = 'discreteBar' ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //add series index to each data point for reference data.forEach(function(series, i) { series.values.forEach(function(point) { point.series = i; }); }); //------------------------------------------------------------ // Setup Scales // remap and flatten the data for use in calculating the scales' domains var seriesData = (xDomain && yDomain) ? [] : // if we know xDomain and yDomain, no need to calculate data.map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i), y0: d.y0 } }) }); x .domain(xDomain || d3.merge(seriesData).map(function(d) { return d.x })) .rangeBands(xRange || [0, availableWidth], .1); y .domain(yDomain || d3.extent(d3.merge(seriesData).map(function(d) { return d.y }).concat(forceY))); // If showValues, pad the Y axis range to account for label height if (showValues) y.range(yRange || [availableHeight - (y.domain()[0] < 0 ? 12 : 0), y.domain()[1] > 0 ? 12 : 0]); else y.range(yRange || [availableHeight, 0]); //store old scales if they exist x0 = x0 || x; y0 = y0 || y.copy().range([y(0),y(0)]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-discretebar').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-discretebar'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-groups'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ //TODO: by definition, the discrete bar should not have multiple groups, will modify/remove later var groups = wrap.select('.nv-groups').selectAll('.nv-group') .data(function(d) { return d }, function(d) { return d.key }); groups.enter().append('g') .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6); groups.exit() .transition() .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6) .remove(); groups .attr('class', function(d,i) { return 'nv-group nv-series-' + i }) .classed('hover', function(d) { return d.hover }); groups .transition() .style('stroke-opacity', 1) .style('fill-opacity', .75); var bars = groups.selectAll('g.nv-bar') .data(function(d) { return d.values }); bars.exit().remove(); var barsEnter = bars.enter().append('g') .attr('transform', function(d,i,j) { return 'translate(' + (x(getX(d,i)) + x.rangeBand() * .05 ) + ', ' + y(0) + ')' }) .on('mouseover', function(d,i) { //TODO: figure out why j works above, but not here d3.select(this).classed('hover', true); dispatch.elementMouseover({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (d.series + .5) / data.length), y(getY(d,i))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('mouseout', function(d,i) { d3.select(this).classed('hover', false); dispatch.elementMouseout({ value: getY(d,i), point: d, series: data[d.series], pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('click', function(d,i) { dispatch.elementClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (d.series + .5) / data.length), y(getY(d,i))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { dispatch.elementDblClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (d.series + .5) / data.length), y(getY(d,i))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }); barsEnter.append('rect') .attr('height', 0) .attr('width', x.rangeBand() * .9 / data.length ) if (showValues) { barsEnter.append('text') .attr('text-anchor', 'middle') ; bars.select('text') .text(function(d,i) { return valueFormat(getY(d,i)) }) .transition() .attr('x', x.rangeBand() * .9 / 2) .attr('y', function(d,i) { return getY(d,i) < 0 ? y(getY(d,i)) - y(0) + 12 : -4 }) ; } else { bars.selectAll('text').remove(); } bars .attr('class', function(d,i) { return getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive' }) .style('fill', function(d,i) { return d.color || color(d,i) }) .style('stroke', function(d,i) { return d.color || color(d,i) }) .select('rect') .attr('class', rectClass) .transition() .attr('width', x.rangeBand() * .9 / data.length); bars.transition() //.delay(function(d,i) { return i * 1200 / data[0].values.length }) .attr('transform', function(d,i) { var left = x(getX(d,i)) + x.rangeBand() * .05, top = getY(d,i) < 0 ? y(0) : y(0) - y(getY(d,i)) < 1 ? y(0) - 1 : //make 1 px positive bars show up above y=0 y(getY(d,i)); return 'translate(' + left + ', ' + top + ')' }) .select('rect') .attr('height', function(d,i) { return Math.max(Math.abs(y(getY(d,i)) - y((yDomain && yDomain[0]) || 0)) || 1) }); //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.showValues = function(_) { if (!arguments.length) return showValues; showValues = _; return chart; }; chart.valueFormat= function(_) { if (!arguments.length) return valueFormat; valueFormat = _; return chart; }; chart.rectClass= function(_) { if (!arguments.length) return rectClass; rectClass = _; return chart; }; //============================================================ return chart; } nv.models.discreteBarChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var discretebar = nv.models.discreteBar() , xAxis = nv.models.axis() , yAxis = nv.models.axis() ; var margin = {top: 15, right: 10, bottom: 50, left: 60} , width = null , height = null , color = nv.utils.getColor() , showXAxis = true , showYAxis = true , rightAlignYAxis = false , staggerLabels = false , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + x + '</h3>' + '<p>' + y + '</p>' } , x , y , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'beforeUpdate') , transitionDuration = 250 ; xAxis .orient('bottom') .highlightZero(false) .showMaxMin(false) .tickFormat(function(d) { return d }) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') .tickFormat(d3.format(',.1f')) ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(discretebar.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(discretebar.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { dispatch.beforeUpdate(); container.transition().duration(transitionDuration).call(chart); }; chart.container = this; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = discretebar.xScale(); y = discretebar.yScale().clamp(true); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-discreteBarWithAxes').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-discreteBarWithAxes').append('g'); var defsEnter = gEnter.append('defs'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis') .append('g').attr('class', 'nv-zeroLine') .append('line'); gEnter.append('g').attr('class', 'nv-barsWrap'); g.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ //------------------------------------------------------------ // Main Chart Component(s) discretebar .width(availableWidth) .height(availableHeight); var barsWrap = g.select('.nv-barsWrap') .datum(data.filter(function(d) { return !d.disabled })) barsWrap.transition().call(discretebar); //------------------------------------------------------------ defsEnter.append('clipPath') .attr('id', 'nv-x-label-clip-' + discretebar.id()) .append('rect'); g.select('#nv-x-label-clip-' + discretebar.id() + ' rect') .attr('width', x.rangeBand() * (staggerLabels ? 2 : 1)) .attr('height', 16) .attr('x', -x.rangeBand() / (staggerLabels ? 1 : 2 )); //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + (y.range()[0] + ((discretebar.showValues() && y.domain()[0] < 0) ? 16 : 0)) + ')'); //d3.transition(g.select('.nv-x.nv-axis')) g.select('.nv-x.nv-axis').transition() .call(xAxis); var xTicks = g.select('.nv-x.nv-axis').selectAll('g'); if (staggerLabels) { xTicks .selectAll('text') .attr('transform', function(d,i,j) { return 'translate(0,' + (j % 2 == 0 ? '5' : '17') + ')' }) } } if (showYAxis) { yAxis .scale(y) .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis').transition() .call(yAxis); } // Zero line g.select(".nv-zeroLine line") .attr("x1",0) .attr("x2",availableWidth) .attr("y1", y(0)) .attr("y2", y(0)) ; //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ discretebar.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); discretebar.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.discretebar = discretebar; chart.xAxis = xAxis; chart.yAxis = yAxis; d3.rebind(chart, discretebar, 'x', 'y', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'id', 'showValues', 'valueFormat'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); discretebar.color(color); return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.staggerLabels = function(_) { if (!arguments.length) return staggerLabels; staggerLabels = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.distribution = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 400 //technically width or height depending on x or y.... , size = 8 , axis = 'x' // 'x' or 'y'... horizontal or vertical , getData = function(d) { return d[axis] } // defaults d.x or d.y , color = nv.utils.defaultColor() , scale = d3.scale.linear() , domain ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var scale0; //============================================================ function chart(selection) { selection.each(function(data) { var availableLength = width - (axis === 'x' ? margin.left + margin.right : margin.top + margin.bottom), naxis = axis == 'x' ? 'y' : 'x', container = d3.select(this); //------------------------------------------------------------ // Setup Scales scale0 = scale0 || scale; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-distribution').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-distribution'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')') //------------------------------------------------------------ var distWrap = g.selectAll('g.nv-dist') .data(function(d) { return d }, function(d) { return d.key }); distWrap.enter().append('g'); distWrap .attr('class', function(d,i) { return 'nv-dist nv-series-' + i }) .style('stroke', function(d,i) { return color(d, i) }); var dist = distWrap.selectAll('line.nv-dist' + axis) .data(function(d) { return d.values }) dist.enter().append('line') .attr(axis + '1', function(d,i) { return scale0(getData(d,i)) }) .attr(axis + '2', function(d,i) { return scale0(getData(d,i)) }) distWrap.exit().selectAll('line.nv-dist' + axis) .transition() .attr(axis + '1', function(d,i) { return scale(getData(d,i)) }) .attr(axis + '2', function(d,i) { return scale(getData(d,i)) }) .style('stroke-opacity', 0) .remove(); dist .attr('class', function(d,i) { return 'nv-dist' + axis + ' nv-dist' + axis + '-' + i }) .attr(naxis + '1', 0) .attr(naxis + '2', size); dist .transition() .attr(axis + '1', function(d,i) { return scale(getData(d,i)) }) .attr(axis + '2', function(d,i) { return scale(getData(d,i)) }) scale0 = scale.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.axis = function(_) { if (!arguments.length) return axis; axis = _; return chart; }; chart.size = function(_) { if (!arguments.length) return size; size = _; return chart; }; chart.getData = function(_) { if (!arguments.length) return getData; getData = d3.functor(_); return chart; }; chart.scale = function(_) { if (!arguments.length) return scale; scale = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; //============================================================ return chart; } nv.models.historicalBarChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var bars = nv.models.historicalBar() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() ; var margin = {top: 30, right: 90, bottom: 50, left: 90} , color = nv.utils.defaultColor() , width = null , height = null , showLegend = false , showXAxis = true , showYAxis = true , rightAlignYAxis = false , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>' } , x , y , state = {} , defaultState = null , noData = 'No Data Available.' , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , transitionDuration = 250 ; xAxis .orient('bottom') .tickPadding(7) ; yAxis .orient( (rightAlignYAxis) ? 'right' : 'left') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { // New addition to calculate position if SVG is scaled with viewBox, may move TODO: consider implementing everywhere else if (offsetElement) { var svg = d3.select(offsetElement).select('svg'); var viewBox = (svg.node()) ? svg.attr('viewBox') : null; if (viewBox) { viewBox = viewBox.split(' '); var ratio = parseInt(svg.style('width')) / viewBox[2]; e.pos[0] = e.pos[0] * ratio; e.pos[1] = e.pos[1] * ratio; } } var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(bars.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(bars.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, null, null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display noData message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = bars.xScale(); y = bars.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-historicalBarChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-historicalBarChart').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-barsWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth); g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } wrap.select('.nv-legendWrap') .attr('transform', 'translate(0,' + (-margin.top) +')') } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ // Main Chart Component(s) bars .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); var barsWrap = g.select('.nv-barsWrap') .datum(data.filter(function(d) { return !d.disabled })) barsWrap.transition().call(bars); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')'); g.select('.nv-x.nv-axis') .transition() .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis') .transition() .call(yAxis); } //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('legendClick', function(d,i) { d.disabled = !d.disabled; if (!data.filter(function(d) { return !d.disabled }).length) { data.map(function(d) { d.disabled = false; wrap.selectAll('.nv-series').classed('disabled', false); return d; }); } state.disabled = data.map(function(d) { return !!d.disabled }); dispatch.stateChange(state); selection.transition().call(chart); }); legend.dispatch.on('legendDblclick', function(d) { //Double clicking should always enable current series, and disabled all others. data.forEach(function(d) { d.disabled = true; }); d.disabled = false; state.disabled = data.map(function(d) { return !!d.disabled }); dispatch.stateChange(state); chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ bars.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); bars.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.bars = bars; chart.legend = legend; chart.xAxis = xAxis; chart.yAxis = yAxis; d3.rebind(chart, bars, 'defined', 'isArea', 'x', 'y', 'size', 'xScale', 'yScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id', 'interpolate','highlightPoint','clearHighlights', 'interactive'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.indentedTree = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} //TODO: implement, maybe as margin on the containing div , width = 960 , height = 500 , color = nv.utils.defaultColor() , id = Math.floor(Math.random() * 10000) , header = true , filterZero = false , noData = "No Data Available." , childIndent = 20 , columns = [{key:'key', label: 'Name', type:'text'}] //TODO: consider functions like chart.addColumn, chart.removeColumn, instead of a block like this , tableClass = null , iconOpen = 'images/grey-plus.png' //TODO: consider removing this and replacing with a '+' or '-' unless user defines images , iconClose = 'images/grey-minus.png' , dispatch = d3.dispatch('elementClick', 'elementDblclick', 'elementMouseover', 'elementMouseout') , getUrl = function(d) { return d.url } ; //============================================================ var idx = 0; function chart(selection) { selection.each(function(data) { var depth = 1, container = d3.select(this); var tree = d3.layout.tree() .children(function(d) { return d.values }) .size([height, childIndent]); //Not sure if this is needed now that the result is HTML chart.update = function() { container.transition().duration(600).call(chart) }; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data[0]) data[0] = {key: noData}; //------------------------------------------------------------ var nodes = tree.nodes(data[0]); // nodes.map(function(d) { // d.id = i++; // }) //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = d3.select(this).selectAll('div').data([[nodes]]); var wrapEnter = wrap.enter().append('div').attr('class', 'nvd3 nv-wrap nv-indentedtree'); var tableEnter = wrapEnter.append('table'); var table = wrap.select('table').attr('width', '100%').attr('class', tableClass); //------------------------------------------------------------ if (header) { var thead = tableEnter.append('thead'); var theadRow1 = thead.append('tr'); columns.forEach(function(column) { theadRow1 .append('th') .attr('width', column.width ? column.width : '10%') .style('text-align', column.type == 'numeric' ? 'right' : 'left') .append('span') .text(column.label); }); } var tbody = table.selectAll('tbody') .data(function(d) { return d }); tbody.enter().append('tbody'); //compute max generations depth = d3.max(nodes, function(node) { return node.depth }); tree.size([height, depth * childIndent]); //TODO: see if this is necessary at all // Update the nodes… var node = tbody.selectAll('tr') // .data(function(d) { return d; }, function(d) { return d.id || (d.id == ++i)}); .data(function(d) { return d.filter(function(d) { return (filterZero && !d.children) ? filterZero(d) : true; } )}, function(d,i) { return d.id || (d.id || ++idx)}); //.style('display', 'table-row'); //TODO: see if this does anything node.exit().remove(); node.select('img.nv-treeicon') .attr('src', icon) .classed('folded', folded); var nodeEnter = node.enter().append('tr'); columns.forEach(function(column, index) { var nodeName = nodeEnter.append('td') .style('padding-left', function(d) { return (index ? 0 : d.depth * childIndent + 12 + (icon(d) ? 0 : 16)) + 'px' }, 'important') //TODO: check why I did the ternary here .style('text-align', column.type == 'numeric' ? 'right' : 'left'); if (index == 0) { nodeName.append('img') .classed('nv-treeicon', true) .classed('nv-folded', folded) .attr('src', icon) .style('width', '14px') .style('height', '14px') .style('padding', '0 1px') .style('display', function(d) { return icon(d) ? 'inline-block' : 'none'; }) .on('click', click); } nodeName.each(function(d) { if (!index && getUrl(d)) d3.select(this) .append('a') .attr('href',getUrl) .attr('class', d3.functor(column.classes)) .append('span') else d3.select(this) .append('span') d3.select(this).select('span') .attr('class', d3.functor(column.classes) ) .text(function(d) { return column.format ? column.format(d) : (d[column.key] || '-') }); }); if (column.showCount) { nodeName.append('span') .attr('class', 'nv-childrenCount'); node.selectAll('span.nv-childrenCount').text(function(d) { return ((d.values && d.values.length) || (d._values && d._values.length)) ? //If this is a parent '(' + ((d.values && (d.values.filter(function(d) { return filterZero ? filterZero(d) : true; }).length)) //If children are in values check its children and filter || (d._values && d._values.filter(function(d) { return filterZero ? filterZero(d) : true; }).length) //Otherwise, do the same, but with the other name, _values... || 0) + ')' //This is the catch-all in case there are no children after a filter : '' //If this is not a parent, just give an empty string }); } // if (column.click) // nodeName.select('span').on('click', column.click); }); node .order() .on('click', function(d) { dispatch.elementClick({ row: this, //TODO: decide whether or not this should be consistent with scatter/line events or should be an html link (a href) data: d, pos: [d.x, d.y] }); }) .on('dblclick', function(d) { dispatch.elementDblclick({ row: this, data: d, pos: [d.x, d.y] }); }) .on('mouseover', function(d) { dispatch.elementMouseover({ row: this, data: d, pos: [d.x, d.y] }); }) .on('mouseout', function(d) { dispatch.elementMouseout({ row: this, data: d, pos: [d.x, d.y] }); }); // Toggle children on click. function click(d, _, unshift) { d3.event.stopPropagation(); if(d3.event.shiftKey && !unshift) { //If you shift-click, it'll toggle fold all the children, instead of itself d3.event.shiftKey = false; d.values && d.values.forEach(function(node){ if (node.values || node._values) { click(node, 0, true); } }); return true; } if(!hasChildren(d)) { //download file //window.location.href = d.url; return true; } if (d.values) { d._values = d.values; d.values = null; } else { d.values = d._values; d._values = null; } chart.update(); } function icon(d) { return (d._values && d._values.length) ? iconOpen : (d.values && d.values.length) ? iconClose : ''; } function folded(d) { return (d._values && d._values.length); } function hasChildren(d) { var values = d.values || d._values; return (values && values.length); } }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); scatter.color(color); return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.header = function(_) { if (!arguments.length) return header; header = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.filterZero = function(_) { if (!arguments.length) return filterZero; filterZero = _; return chart; }; chart.columns = function(_) { if (!arguments.length) return columns; columns = _; return chart; }; chart.tableClass = function(_) { if (!arguments.length) return tableClass; tableClass = _; return chart; }; chart.iconOpen = function(_){ if (!arguments.length) return iconOpen; iconOpen = _; return chart; } chart.iconClose = function(_){ if (!arguments.length) return iconClose; iconClose = _; return chart; } chart.getUrl = function(_){ if (!arguments.length) return getUrl; getUrl = _; return chart; } //============================================================ return chart; };nv.models.legend = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 5, right: 0, bottom: 5, left: 0} , width = 400 , height = 20 , getKey = function(d) { return d.key } , color = nv.utils.defaultColor() , align = true , rightAlign = true , updateState = true //If true, legend will update data.disabled and trigger a 'stateChange' dispatch. , radioButtonMode = false //If true, clicking legend items will cause it to behave like a radio button. (only one can be selected at a time) , dispatch = d3.dispatch('legendClick', 'legendDblclick', 'legendMouseover', 'legendMouseout', 'stateChange') ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, container = d3.select(this); //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-legend').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-legend').append('g'); var g = wrap.select('g'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ var series = g.selectAll('.nv-series') .data(function(d) { return d }); var seriesEnter = series.enter().append('g').attr('class', 'nv-series') .on('mouseover', function(d,i) { dispatch.legendMouseover(d,i); //TODO: Make consistent with other event objects }) .on('mouseout', function(d,i) { dispatch.legendMouseout(d,i); }) .on('click', function(d,i) { dispatch.legendClick(d,i); if (updateState) { if (radioButtonMode) { //Radio button mode: set every series to disabled, // and enable the clicked series. data.forEach(function(series) { series.disabled = true}); d.disabled = false; } else { d.disabled = !d.disabled; if (data.every(function(series) { return series.disabled})) { //the default behavior of NVD3 legends is, if every single series // is disabled, turn all series' back on. data.forEach(function(series) { series.disabled = false}); } } dispatch.stateChange({ disabled: data.map(function(d) { return !!d.disabled }) }); } }) .on('dblclick', function(d,i) { dispatch.legendDblclick(d,i); if (updateState) { //the default behavior of NVD3 legends, when double clicking one, // is to set all other series' to false, and make the double clicked series enabled. data.forEach(function(series) { series.disabled = true; }); d.disabled = false; dispatch.stateChange({ disabled: data.map(function(d) { return !!d.disabled }) }); } }); seriesEnter.append('circle') .style('stroke-width', 2) .attr('class','nv-legend-symbol') .attr('r', 5); seriesEnter.append('text') .attr('text-anchor', 'start') .attr('class','nv-legend-text') .attr('dy', '.32em') .attr('dx', '8'); series.classed('disabled', function(d) { return d.disabled }); series.exit().remove(); series.select('circle') .style('fill', function(d,i) { return d.color || color(d,i)}) .style('stroke', function(d,i) { return d.color || color(d, i) }); series.select('text').text(getKey); //TODO: implement fixed-width and max-width options (max-width is especially useful with the align option) // NEW ALIGNING CODE, TODO: clean up if (align) { var seriesWidths = []; series.each(function(d,i) { var legendText = d3.select(this).select('text'); var nodeTextLength; try { nodeTextLength = legendText.getComputedTextLength(); // If the legendText is display:none'd (nodeTextLength == 0), simulate an error so we approximate, instead if(nodeTextLength <= 0) throw Error(); } catch(e) { nodeTextLength = nv.utils.calcApproxTextWidth(legendText); } seriesWidths.push(nodeTextLength + 28); // 28 is ~ the width of the circle plus some padding }); var seriesPerRow = 0; var legendWidth = 0; var columnWidths = []; while ( legendWidth < availableWidth && seriesPerRow < seriesWidths.length) { columnWidths[seriesPerRow] = seriesWidths[seriesPerRow]; legendWidth += seriesWidths[seriesPerRow++]; } if (seriesPerRow === 0) seriesPerRow = 1; //minimum of one series per row while ( legendWidth > availableWidth && seriesPerRow > 1 ) { columnWidths = []; seriesPerRow--; for (var k = 0; k < seriesWidths.length; k++) { if (seriesWidths[k] > (columnWidths[k % seriesPerRow] || 0) ) columnWidths[k % seriesPerRow] = seriesWidths[k]; } legendWidth = columnWidths.reduce(function(prev, cur, index, array) { return prev + cur; }); } var xPositions = []; for (var i = 0, curX = 0; i < seriesPerRow; i++) { xPositions[i] = curX; curX += columnWidths[i]; } series .attr('transform', function(d, i) { return 'translate(' + xPositions[i % seriesPerRow] + ',' + (5 + Math.floor(i / seriesPerRow) * 20) + ')'; }); //position legend as far right as possible within the total width if (rightAlign) { g.attr('transform', 'translate(' + (width - margin.right - legendWidth) + ',' + margin.top + ')'); } else { g.attr('transform', 'translate(0' + ',' + margin.top + ')'); } height = margin.top + margin.bottom + (Math.ceil(seriesWidths.length / seriesPerRow) * 20); } else { var ypos = 5, newxpos = 5, maxwidth = 0, xpos; series .attr('transform', function(d, i) { var length = d3.select(this).select('text').node().getComputedTextLength() + 28; xpos = newxpos; if (width < margin.left + margin.right + xpos + length) { newxpos = xpos = 5; ypos += 20; } newxpos += length; if (newxpos > maxwidth) maxwidth = newxpos; return 'translate(' + xpos + ',' + ypos + ')'; }); //position legend as far right as possible within the total width g.attr('transform', 'translate(' + (width - margin.right - maxwidth) + ',' + margin.top + ')'); height = margin.top + margin.bottom + ypos + 15; } }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.key = function(_) { if (!arguments.length) return getKey; getKey = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.align = function(_) { if (!arguments.length) return align; align = _; return chart; }; chart.rightAlign = function(_) { if (!arguments.length) return rightAlign; rightAlign = _; return chart; }; chart.updateState = function(_) { if (!arguments.length) return updateState; updateState = _; return chart; }; chart.radioButtonMode = function(_) { if (!arguments.length) return radioButtonMode; radioButtonMode = _; return chart; }; //============================================================ return chart; } nv.models.line = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var scatter = nv.models.scatter() ; var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , color = nv.utils.defaultColor() // a function that returns a color , getX = function(d) { return d.x } // accessor to get the x value from a data point , getY = function(d) { return d.y } // accessor to get the y value from a data point , defined = function(d,i) { return !isNaN(getY(d,i)) && getY(d,i) !== null } // allows a line to be not continuous when it is not defined , isArea = function(d) { return d.area } // decides if a line is an area or just a line , clipEdge = false // if true, masks lines within x and y scale , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , interpolate = "linear" // controls the line interpolation ; scatter .size(16) // default size .sizeDomain([16,256]) //set to speed up calculation, needs to be unset if there is a custom size accessor ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0 //used to store previous scales ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //------------------------------------------------------------ // Setup Scales x = scatter.xScale(); y = scatter.yScale(); x0 = x0 || x; y0 = y0 || y; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-line').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-line'); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g') gEnter.append('g').attr('class', 'nv-groups'); gEnter.append('g').attr('class', 'nv-scatterWrap'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ scatter .width(availableWidth) .height(availableHeight) var scatterWrap = wrap.select('.nv-scatterWrap'); //.datum(data); // Data automatically trickles down from the wrap scatterWrap.transition().call(scatter); defsEnter.append('clipPath') .attr('id', 'nv-edge-clip-' + scatter.id()) .append('rect'); wrap.select('#nv-edge-clip-' + scatter.id() + ' rect') .attr('width', availableWidth) .attr('height', (availableHeight > 0) ? availableHeight : 0); g .attr('clip-path', clipEdge ? 'url(#nv-edge-clip-' + scatter.id() + ')' : ''); scatterWrap .attr('clip-path', clipEdge ? 'url(#nv-edge-clip-' + scatter.id() + ')' : ''); var groups = wrap.select('.nv-groups').selectAll('.nv-group') .data(function(d) { return d }, function(d) { return d.key }); groups.enter().append('g') .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6); groups.exit().remove(); groups .attr('class', function(d,i) { return 'nv-group nv-series-' + i }) .classed('hover', function(d) { return d.hover }) .style('fill', function(d,i){ return color(d, i) }) .style('stroke', function(d,i){ return color(d, i)}); groups .transition() .style('stroke-opacity', 1) .style('fill-opacity', .5); var areaPaths = groups.selectAll('path.nv-area') .data(function(d) { return isArea(d) ? [d] : [] }); // this is done differently than lines because I need to check if series is an area areaPaths.enter().append('path') .attr('class', 'nv-area') .attr('d', function(d) { return d3.svg.area() .interpolate(interpolate) .defined(defined) .x(function(d,i) { return nv.utils.NaNtoZero(x0(getX(d,i))) }) .y0(function(d,i) { return nv.utils.NaNtoZero(y0(getY(d,i))) }) .y1(function(d,i) { return y0( y.domain()[0] <= 0 ? y.domain()[1] >= 0 ? 0 : y.domain()[1] : y.domain()[0] ) }) //.y1(function(d,i) { return y0(0) }) //assuming 0 is within y domain.. may need to tweak this .apply(this, [d.values]) }); groups.exit().selectAll('path.nv-area') .remove(); areaPaths .transition() .attr('d', function(d) { return d3.svg.area() .interpolate(interpolate) .defined(defined) .x(function(d,i) { return nv.utils.NaNtoZero(x(getX(d,i))) }) .y0(function(d,i) { return nv.utils.NaNtoZero(y(getY(d,i))) }) .y1(function(d,i) { return y( y.domain()[0] <= 0 ? y.domain()[1] >= 0 ? 0 : y.domain()[1] : y.domain()[0] ) }) //.y1(function(d,i) { return y0(0) }) //assuming 0 is within y domain.. may need to tweak this .apply(this, [d.values]) }); var linePaths = groups.selectAll('path.nv-line') .data(function(d) { return [d.values] }); linePaths.enter().append('path') .attr('class', 'nv-line') .attr('d', d3.svg.line() .interpolate(interpolate) .defined(defined) .x(function(d,i) { return nv.utils.NaNtoZero(x0(getX(d,i))) }) .y(function(d,i) { return nv.utils.NaNtoZero(y0(getY(d,i))) }) ); linePaths .transition() .attr('d', d3.svg.line() .interpolate(interpolate) .defined(defined) .x(function(d,i) { return nv.utils.NaNtoZero(x(getX(d,i))) }) .y(function(d,i) { return nv.utils.NaNtoZero(y(getY(d,i))) }) ); //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = scatter.dispatch; chart.scatter = scatter; d3.rebind(chart, scatter, 'id', 'interactive', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'sizeDomain', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'useVoronoi', 'clipRadius', 'padData','highlightPoint','clearHighlights'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.x = function(_) { if (!arguments.length) return getX; getX = _; scatter.x(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; scatter.y(_); return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); scatter.color(color); return chart; }; chart.interpolate = function(_) { if (!arguments.length) return interpolate; interpolate = _; return chart; }; chart.defined = function(_) { if (!arguments.length) return defined; defined = _; return chart; }; chart.isArea = function(_) { if (!arguments.length) return isArea; isArea = d3.functor(_); return chart; }; //============================================================ return chart; } nv.models.lineChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var lines = nv.models.line() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , interactiveLayer = nv.interactiveGuideline() ; var margin = {top: 30, right: 20, bottom: 50, left: 60} , color = nv.utils.defaultColor() , width = null , height = null , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , useInteractiveGuideline = false , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>' } , x , y , state = {} , defaultState = null , noData = 'No Data Available.' , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , transitionDuration = 250 ; xAxis .orient('bottom') .tickPadding(7) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(lines.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, null, null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display noData message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = lines.xScale(); y = lines.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-lineChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-lineChart').append('g'); var g = wrap.select('g'); gEnter.append("rect").style("opacity",0); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-linesWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-interactive'); g.select("rect") .attr("width",availableWidth) .attr("height",(availableHeight > 0) ? availableHeight : 0); //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth); g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } wrap.select('.nv-legendWrap') .attr('transform', 'translate(0,' + (-margin.top) +')') } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ // Main Chart Component(s) //------------------------------------------------------------ //Set up interactive layer if (useInteractiveGuideline) { interactiveLayer .width(availableWidth) .height(availableHeight) .margin({left:margin.left, top:margin.top}) .svgContainer(container) .xScale(x); wrap.select(".nv-interactive").call(interactiveLayer); } lines .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); var linesWrap = g.select('.nv-linesWrap') .datum(data.filter(function(d) { return !d.disabled })) linesWrap.transition().call(lines); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')'); g.select('.nv-x.nv-axis') .transition() .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis') .transition() .call(yAxis); } //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); interactiveLayer.dispatch.on('elementMousemove', function(e) { lines.clearHighlights(); var singlePoint, pointIndex, pointXLocation, allData = []; data .filter(function(series, i) { series.seriesIndex = i; return !series.disabled; }) .forEach(function(series,i) { pointIndex = nv.interactiveBisect(series.values, e.pointXValue, chart.x()); lines.highlightPoint(i, pointIndex, true); var point = series.values[pointIndex]; if (typeof point === 'undefined') return; if (typeof singlePoint === 'undefined') singlePoint = point; if (typeof pointXLocation === 'undefined') pointXLocation = chart.xScale()(chart.x()(point,pointIndex)); allData.push({ key: series.key, value: chart.y()(point, pointIndex), color: color(series,series.seriesIndex) }); }); //Highlight the tooltip entry based on which point the mouse is closest to. if (allData.length > 2) { var yValue = chart.yScale().invert(e.mouseY); var domainExtent = Math.abs(chart.yScale().domain()[0] - chart.yScale().domain()[1]); var threshold = 0.03 * domainExtent; var indexToHighlight = nv.nearestValueIndex(allData.map(function(d){return d.value}),yValue,threshold); if (indexToHighlight !== null) allData[indexToHighlight].highlight = true; } var xValue = xAxis.tickFormat()(chart.x()(singlePoint,pointIndex)); interactiveLayer.tooltip .position({left: pointXLocation + margin.left, top: e.mouseY + margin.top}) .chartContainer(that.parentNode) .enabled(tooltips) .valueFormatter(function(d,i) { return yAxis.tickFormat()(d); }) .data( { value: xValue, series: allData } )(); interactiveLayer.renderGuideLine(pointXLocation); }); interactiveLayer.dispatch.on("elementMouseout",function(e) { dispatch.tooltipHide(); lines.clearHighlights(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined' && data.length === e.disabled.length) { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.lines = lines; chart.legend = legend; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.interactiveLayer = interactiveLayer; d3.rebind(chart, lines, 'defined', 'isArea', 'x', 'y', 'size', 'xScale', 'yScale', 'xDomain', 'yDomain', 'xRange', 'yRange' , 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'useVoronoi','id', 'interpolate'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.useInteractiveGuideline = function(_) { if(!arguments.length) return useInteractiveGuideline; useInteractiveGuideline = _; if (_ === true) { chart.interactive(false); chart.useVoronoi(false); } return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.linePlusBarChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var lines = nv.models.line() , bars = nv.models.historicalBar() , xAxis = nv.models.axis() , y1Axis = nv.models.axis() , y2Axis = nv.models.axis() , legend = nv.models.legend() ; var margin = {top: 30, right: 60, bottom: 50, left: 60} , width = null , height = null , getX = function(d) { return d.x } , getY = function(d) { return d.y } , color = nv.utils.defaultColor() , showLegend = true , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>'; } , x , y1 , y2 , state = {} , defaultState = null , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') ; bars .padData(true) ; lines .clipEdge(false) .padData(true) ; xAxis .orient('bottom') .tickPadding(7) .highlightZero(false) ; y1Axis .orient('left') ; y2Axis .orient('right') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines.x()(e.point, e.pointIndex)), y = (e.series.bar ? y1Axis : y2Axis).tickFormat()(lines.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); } ; //------------------------------------------------------------ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().call(chart); }; // chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales var dataBars = data.filter(function(d) { return !d.disabled && d.bar }); var dataLines = data.filter(function(d) { return !d.bar }); // removed the !d.disabled clause here to fix Issue #240 //x = xAxis.scale(); x = dataLines.filter(function(d) { return !d.disabled; }).length && dataLines.filter(function(d) { return !d.disabled; })[0].values.length ? lines.xScale() : bars.xScale(); //x = dataLines.filter(function(d) { return !d.disabled; }).length ? lines.xScale() : bars.xScale(); //old code before change above y1 = bars.yScale(); y2 = lines.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = d3.select(this).selectAll('g.nv-wrap.nv-linePlusBar').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-linePlusBar').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y1 nv-axis'); gEnter.append('g').attr('class', 'nv-y2 nv-axis'); gEnter.append('g').attr('class', 'nv-barsWrap'); gEnter.append('g').attr('class', 'nv-linesWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width( availableWidth / 2 ); g.select('.nv-legendWrap') .datum(data.map(function(series) { series.originalKey = series.originalKey === undefined ? series.key : series.originalKey; series.key = series.originalKey + (series.bar ? ' (left axis)' : ' (right axis)'); return series; })) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-legendWrap') .attr('transform', 'translate(' + ( availableWidth / 2 ) + ',' + (-margin.top) +')'); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Main Chart Component(s) lines .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && !data[i].bar })) bars .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && data[i].bar })) var barsWrap = g.select('.nv-barsWrap') .datum(dataBars.length ? dataBars : [{values:[]}]) var linesWrap = g.select('.nv-linesWrap') .datum(dataLines[0] && !dataLines[0].disabled ? dataLines : [{values:[]}] ); //.datum(!dataLines[0].disabled ? dataLines : [{values:dataLines[0].values.map(function(d) { return [d[0], null] }) }] ); d3.transition(barsWrap).call(bars); d3.transition(linesWrap).call(lines); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y1.range()[0] + ')'); d3.transition(g.select('.nv-x.nv-axis')) .call(xAxis); y1Axis .scale(y1) .ticks( availableHeight / 36 ) .tickSize(-availableWidth, 0); d3.transition(g.select('.nv-y1.nv-axis')) .style('opacity', dataBars.length ? 1 : 0) .call(y1Axis); y2Axis .scale(y2) .ticks( availableHeight / 36 ) .tickSize(dataBars.length ? 0 : -availableWidth, 0); // Show the y2 rules only if y1 has none g.select('.nv-y2.nv-axis') .style('opacity', dataLines.length ? 1 : 0) .attr('transform', 'translate(' + availableWidth + ',0)'); //.attr('transform', 'translate(' + x.range()[1] + ',0)'); d3.transition(g.select('.nv-y2.nv-axis')) .call(y2Axis); //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); bars.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); bars.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.legend = legend; chart.lines = lines; chart.bars = bars; chart.xAxis = xAxis; chart.y1Axis = y1Axis; chart.y2Axis = y2Axis; d3.rebind(chart, lines, 'defined', 'size', 'clipVoronoi', 'interpolate'); //TODO: consider rebinding x, y and some other stuff, and simply do soemthign lile bars.x(lines.x()), etc. //d3.rebind(chart, lines, 'x', 'y', 'size', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id'); chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; lines.x(_); bars.x(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; lines.y(_); bars.y(_); return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; //============================================================ return chart; } nv.models.lineWithFocusChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var lines = nv.models.line() , lines2 = nv.models.line() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , x2Axis = nv.models.axis() , y2Axis = nv.models.axis() , legend = nv.models.legend() , brush = d3.svg.brush() ; var margin = {top: 30, right: 30, bottom: 30, left: 60} , margin2 = {top: 0, right: 30, bottom: 20, left: 60} , color = nv.utils.defaultColor() , width = null , height = null , height2 = 100 , x , y , x2 , y2 , showLegend = true , brushExtent = null , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>' } , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'brush') , transitionDuration = 250 ; lines .clipEdge(true) ; lines2 .interactive(false) ; xAxis .orient('bottom') .tickPadding(5) ; yAxis .orient('left') ; x2Axis .orient('bottom') .tickPadding(5) ; y2Axis .orient('left') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(lines.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, null, null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight1 = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom - height2, availableHeight2 = height2 - margin2.top - margin2.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight1 / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = lines.xScale(); y = lines.yScale(); x2 = lines2.xScale(); y2 = lines2.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-lineWithFocusChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-lineWithFocusChart').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-legendWrap'); var focusEnter = gEnter.append('g').attr('class', 'nv-focus'); focusEnter.append('g').attr('class', 'nv-x nv-axis'); focusEnter.append('g').attr('class', 'nv-y nv-axis'); focusEnter.append('g').attr('class', 'nv-linesWrap'); var contextEnter = gEnter.append('g').attr('class', 'nv-context'); contextEnter.append('g').attr('class', 'nv-x nv-axis'); contextEnter.append('g').attr('class', 'nv-y nv-axis'); contextEnter.append('g').attr('class', 'nv-linesWrap'); contextEnter.append('g').attr('class', 'nv-brushBackground'); contextEnter.append('g').attr('class', 'nv-x nv-brush'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth); g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight1 = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom - height2; } g.select('.nv-legendWrap') .attr('transform', 'translate(0,' + (-margin.top) +')') } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Main Chart Component(s) lines .width(availableWidth) .height(availableHeight1) .color( data .map(function(d,i) { return d.color || color(d, i); }) .filter(function(d,i) { return !data[i].disabled; }) ); lines2 .defined(lines.defined()) .width(availableWidth) .height(availableHeight2) .color( data .map(function(d,i) { return d.color || color(d, i); }) .filter(function(d,i) { return !data[i].disabled; }) ); g.select('.nv-context') .attr('transform', 'translate(0,' + ( availableHeight1 + margin.bottom + margin2.top) + ')') var contextLinesWrap = g.select('.nv-context .nv-linesWrap') .datum(data.filter(function(d) { return !d.disabled })) d3.transition(contextLinesWrap).call(lines2); //------------------------------------------------------------ /* var focusLinesWrap = g.select('.nv-focus .nv-linesWrap') .datum(data.filter(function(d) { return !d.disabled })) d3.transition(focusLinesWrap).call(lines); */ //------------------------------------------------------------ // Setup Main (Focus) Axes xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight1, 0); yAxis .scale(y) .ticks( availableHeight1 / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-focus .nv-x.nv-axis') .attr('transform', 'translate(0,' + availableHeight1 + ')'); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Brush brush .x(x2) .on('brush', function() { //When brushing, turn off transitions because chart needs to change immediately. var oldTransition = chart.transitionDuration(); chart.transitionDuration(0); onBrush(); chart.transitionDuration(oldTransition); }); if (brushExtent) brush.extent(brushExtent); var brushBG = g.select('.nv-brushBackground').selectAll('g') .data([brushExtent || brush.extent()]) var brushBGenter = brushBG.enter() .append('g'); brushBGenter.append('rect') .attr('class', 'left') .attr('x', 0) .attr('y', 0) .attr('height', availableHeight2); brushBGenter.append('rect') .attr('class', 'right') .attr('x', 0) .attr('y', 0) .attr('height', availableHeight2); var gBrush = g.select('.nv-x.nv-brush') .call(brush); gBrush.selectAll('rect') //.attr('y', -5) .attr('height', availableHeight2); gBrush.selectAll('.resize').append('path').attr('d', resizePath); onBrush(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Secondary (Context) Axes x2Axis .scale(x2) .ticks( availableWidth / 100 ) .tickSize(-availableHeight2, 0); g.select('.nv-context .nv-x.nv-axis') .attr('transform', 'translate(0,' + y2.range()[0] + ')'); d3.transition(g.select('.nv-context .nv-x.nv-axis')) .call(x2Axis); y2Axis .scale(y2) .ticks( availableHeight2 / 36 ) .tickSize( -availableWidth, 0); d3.transition(g.select('.nv-context .nv-y.nv-axis')) .call(y2Axis); g.select('.nv-context .nv-x.nv-axis') .attr('transform', 'translate(0,' + y2.range()[0] + ')'); //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); //============================================================ //============================================================ // Functions //------------------------------------------------------------ // Taken from crossfilter (http://square.github.com/crossfilter/) function resizePath(d) { var e = +(d == 'e'), x = e ? 1 : -1, y = availableHeight2 / 3; return 'M' + (.5 * x) + ',' + y + 'A6,6 0 0 ' + e + ' ' + (6.5 * x) + ',' + (y + 6) + 'V' + (2 * y - 6) + 'A6,6 0 0 ' + e + ' ' + (.5 * x) + ',' + (2 * y) + 'Z' + 'M' + (2.5 * x) + ',' + (y + 8) + 'V' + (2 * y - 8) + 'M' + (4.5 * x) + ',' + (y + 8) + 'V' + (2 * y - 8); } function updateBrushBG() { if (!brush.empty()) brush.extent(brushExtent); brushBG .data([brush.empty() ? x2.domain() : brushExtent]) .each(function(d,i) { var leftWidth = x2(d[0]) - x.range()[0], rightWidth = x.range()[1] - x2(d[1]); d3.select(this).select('.left') .attr('width', leftWidth < 0 ? 0 : leftWidth); d3.select(this).select('.right') .attr('x', x2(d[1])) .attr('width', rightWidth < 0 ? 0 : rightWidth); }); } function onBrush() { brushExtent = brush.empty() ? null : brush.extent(); var extent = brush.empty() ? x2.domain() : brush.extent(); //The brush extent cannot be less than one. If it is, don't update the line chart. if (Math.abs(extent[0] - extent[1]) <= 1) { return; } dispatch.brush({extent: extent, brush: brush}); updateBrushBG(); // Update Main (Focus) var focusLinesWrap = g.select('.nv-focus .nv-linesWrap') .datum( data .filter(function(d) { return !d.disabled }) .map(function(d,i) { return { key: d.key, values: d.values.filter(function(d,i) { return lines.x()(d,i) >= extent[0] && lines.x()(d,i) <= extent[1]; }) } }) ); focusLinesWrap.transition().duration(transitionDuration).call(lines); // Update Main (Focus) Axes g.select('.nv-focus .nv-x.nv-axis').transition().duration(transitionDuration) .call(xAxis); g.select('.nv-focus .nv-y.nv-axis').transition().duration(transitionDuration) .call(yAxis); } //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.legend = legend; chart.lines = lines; chart.lines2 = lines2; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.x2Axis = x2Axis; chart.y2Axis = y2Axis; d3.rebind(chart, lines, 'defined', 'isArea', 'size', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id'); chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return lines.x; lines.x(_); lines2.x(_); return chart; }; chart.y = function(_) { if (!arguments.length) return lines.y; lines.y(_); lines2.y(_); return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.margin2 = function(_) { if (!arguments.length) return margin2; margin2 = _; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.height2 = function(_) { if (!arguments.length) return height2; height2 = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color =nv.utils.getColor(_); legend.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.interpolate = function(_) { if (!arguments.length) return lines.interpolate(); lines.interpolate(_); lines2.interpolate(_); return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; // Chart has multiple similar Axes, to prevent code duplication, probably need to link all axis functions manually like below chart.xTickFormat = function(_) { if (!arguments.length) return xAxis.tickFormat(); xAxis.tickFormat(_); x2Axis.tickFormat(_); return chart; }; chart.yTickFormat = function(_) { if (!arguments.length) return yAxis.tickFormat(); yAxis.tickFormat(_); y2Axis.tickFormat(_); return chart; }; chart.brushExtent = function(_) { if (!arguments.length) return brushExtent; brushExtent = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.linePlusBarWithFocusChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var lines = nv.models.line() , lines2 = nv.models.line() , bars = nv.models.historicalBar() , bars2 = nv.models.historicalBar() , xAxis = nv.models.axis() , x2Axis = nv.models.axis() , y1Axis = nv.models.axis() , y2Axis = nv.models.axis() , y3Axis = nv.models.axis() , y4Axis = nv.models.axis() , legend = nv.models.legend() , brush = d3.svg.brush() ; var margin = {top: 30, right: 30, bottom: 30, left: 60} , margin2 = {top: 0, right: 30, bottom: 20, left: 60} , width = null , height = null , height2 = 100 , getX = function(d) { return d.x } , getY = function(d) { return d.y } , color = nv.utils.defaultColor() , showLegend = true , extent , brushExtent = null , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>'; } , x , x2 , y1 , y2 , y3 , y4 , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'brush') , transitionDuration = 0 ; lines .clipEdge(true) ; lines2 .interactive(false) ; xAxis .orient('bottom') .tickPadding(5) ; y1Axis .orient('left') ; y2Axis .orient('right') ; x2Axis .orient('bottom') .tickPadding(5) ; y3Axis .orient('left') ; y4Axis .orient('right') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { if (extent) { e.pointIndex += Math.ceil(extent[0]); } var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines.x()(e.point, e.pointIndex)), y = (e.series.bar ? y1Axis : y2Axis).tickFormat()(lines.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); }; //------------------------------------------------------------ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight1 = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom - height2, availableHeight2 = height2 - margin2.top - margin2.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart); }; chart.container = this; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight1 / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales var dataBars = data.filter(function(d) { return !d.disabled && d.bar }); var dataLines = data.filter(function(d) { return !d.bar }); // removed the !d.disabled clause here to fix Issue #240 x = bars.xScale(); x2 = x2Axis.scale(); y1 = bars.yScale(); y2 = lines.yScale(); y3 = bars2.yScale(); y4 = lines2.yScale(); var series1 = data .filter(function(d) { return !d.disabled && d.bar }) .map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i) } }) }); var series2 = data .filter(function(d) { return !d.disabled && !d.bar }) .map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i) } }) }); x .range([0, availableWidth]); x2 .domain(d3.extent(d3.merge(series1.concat(series2)), function(d) { return d.x } )) .range([0, availableWidth]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-linePlusBar').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-linePlusBar').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-legendWrap'); var focusEnter = gEnter.append('g').attr('class', 'nv-focus'); focusEnter.append('g').attr('class', 'nv-x nv-axis'); focusEnter.append('g').attr('class', 'nv-y1 nv-axis'); focusEnter.append('g').attr('class', 'nv-y2 nv-axis'); focusEnter.append('g').attr('class', 'nv-barsWrap'); focusEnter.append('g').attr('class', 'nv-linesWrap'); var contextEnter = gEnter.append('g').attr('class', 'nv-context'); contextEnter.append('g').attr('class', 'nv-x nv-axis'); contextEnter.append('g').attr('class', 'nv-y1 nv-axis'); contextEnter.append('g').attr('class', 'nv-y2 nv-axis'); contextEnter.append('g').attr('class', 'nv-barsWrap'); contextEnter.append('g').attr('class', 'nv-linesWrap'); contextEnter.append('g').attr('class', 'nv-brushBackground'); contextEnter.append('g').attr('class', 'nv-x nv-brush'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width( availableWidth / 2 ); g.select('.nv-legendWrap') .datum(data.map(function(series) { series.originalKey = series.originalKey === undefined ? series.key : series.originalKey; series.key = series.originalKey + (series.bar ? ' (left axis)' : ' (right axis)'); return series; })) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight1 = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom - height2; } g.select('.nv-legendWrap') .attr('transform', 'translate(' + ( availableWidth / 2 ) + ',' + (-margin.top) +')'); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Context Components bars2 .width(availableWidth) .height(availableHeight2) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && data[i].bar })); lines2 .width(availableWidth) .height(availableHeight2) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && !data[i].bar })); var bars2Wrap = g.select('.nv-context .nv-barsWrap') .datum(dataBars.length ? dataBars : [{values:[]}]); var lines2Wrap = g.select('.nv-context .nv-linesWrap') .datum(!dataLines[0].disabled ? dataLines : [{values:[]}]); g.select('.nv-context') .attr('transform', 'translate(0,' + ( availableHeight1 + margin.bottom + margin2.top) + ')') bars2Wrap.transition().call(bars2); lines2Wrap.transition().call(lines2); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Brush brush .x(x2) .on('brush', onBrush); if (brushExtent) brush.extent(brushExtent); var brushBG = g.select('.nv-brushBackground').selectAll('g') .data([brushExtent || brush.extent()]) var brushBGenter = brushBG.enter() .append('g'); brushBGenter.append('rect') .attr('class', 'left') .attr('x', 0) .attr('y', 0) .attr('height', availableHeight2); brushBGenter.append('rect') .attr('class', 'right') .attr('x', 0) .attr('y', 0) .attr('height', availableHeight2); var gBrush = g.select('.nv-x.nv-brush') .call(brush); gBrush.selectAll('rect') //.attr('y', -5) .attr('height', availableHeight2); gBrush.selectAll('.resize').append('path').attr('d', resizePath); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Secondary (Context) Axes x2Axis .ticks( availableWidth / 100 ) .tickSize(-availableHeight2, 0); g.select('.nv-context .nv-x.nv-axis') .attr('transform', 'translate(0,' + y3.range()[0] + ')'); g.select('.nv-context .nv-x.nv-axis').transition() .call(x2Axis); y3Axis .scale(y3) .ticks( availableHeight2 / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-context .nv-y1.nv-axis') .style('opacity', dataBars.length ? 1 : 0) .attr('transform', 'translate(0,' + x2.range()[0] + ')'); g.select('.nv-context .nv-y1.nv-axis').transition() .call(y3Axis); y4Axis .scale(y4) .ticks( availableHeight2 / 36 ) .tickSize(dataBars.length ? 0 : -availableWidth, 0); // Show the y2 rules only if y1 has none g.select('.nv-context .nv-y2.nv-axis') .style('opacity', dataLines.length ? 1 : 0) .attr('transform', 'translate(' + x2.range()[1] + ',0)'); g.select('.nv-context .nv-y2.nv-axis').transition() .call(y4Axis); //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); //============================================================ //============================================================ // Functions //------------------------------------------------------------ // Taken from crossfilter (http://square.github.com/crossfilter/) function resizePath(d) { var e = +(d == 'e'), x = e ? 1 : -1, y = availableHeight2 / 3; return 'M' + (.5 * x) + ',' + y + 'A6,6 0 0 ' + e + ' ' + (6.5 * x) + ',' + (y + 6) + 'V' + (2 * y - 6) + 'A6,6 0 0 ' + e + ' ' + (.5 * x) + ',' + (2 * y) + 'Z' + 'M' + (2.5 * x) + ',' + (y + 8) + 'V' + (2 * y - 8) + 'M' + (4.5 * x) + ',' + (y + 8) + 'V' + (2 * y - 8); } function updateBrushBG() { if (!brush.empty()) brush.extent(brushExtent); brushBG .data([brush.empty() ? x2.domain() : brushExtent]) .each(function(d,i) { var leftWidth = x2(d[0]) - x2.range()[0], rightWidth = x2.range()[1] - x2(d[1]); d3.select(this).select('.left') .attr('width', leftWidth < 0 ? 0 : leftWidth); d3.select(this).select('.right') .attr('x', x2(d[1])) .attr('width', rightWidth < 0 ? 0 : rightWidth); }); } function onBrush() { brushExtent = brush.empty() ? null : brush.extent(); extent = brush.empty() ? x2.domain() : brush.extent(); dispatch.brush({extent: extent, brush: brush}); updateBrushBG(); //------------------------------------------------------------ // Prepare Main (Focus) Bars and Lines bars .width(availableWidth) .height(availableHeight1) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && data[i].bar })); lines .width(availableWidth) .height(availableHeight1) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled && !data[i].bar })); var focusBarsWrap = g.select('.nv-focus .nv-barsWrap') .datum(!dataBars.length ? [{values:[]}] : dataBars .map(function(d,i) { return { key: d.key, values: d.values.filter(function(d,i) { return bars.x()(d,i) >= extent[0] && bars.x()(d,i) <= extent[1]; }) } }) ); var focusLinesWrap = g.select('.nv-focus .nv-linesWrap') .datum(dataLines[0].disabled ? [{values:[]}] : dataLines .map(function(d,i) { return { key: d.key, values: d.values.filter(function(d,i) { return lines.x()(d,i) >= extent[0] && lines.x()(d,i) <= extent[1]; }) } }) ); //------------------------------------------------------------ //------------------------------------------------------------ // Update Main (Focus) X Axis if (dataBars.length) { x = bars.xScale(); } else { x = lines.xScale(); } xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight1, 0); xAxis.domain([Math.ceil(extent[0]), Math.floor(extent[1])]); g.select('.nv-x.nv-axis').transition().duration(transitionDuration) .call(xAxis); //------------------------------------------------------------ //------------------------------------------------------------ // Update Main (Focus) Bars and Lines focusBarsWrap.transition().duration(transitionDuration).call(bars); focusLinesWrap.transition().duration(transitionDuration).call(lines); //------------------------------------------------------------ //------------------------------------------------------------ // Setup and Update Main (Focus) Y Axes g.select('.nv-focus .nv-x.nv-axis') .attr('transform', 'translate(0,' + y1.range()[0] + ')'); y1Axis .scale(y1) .ticks( availableHeight1 / 36 ) .tickSize(-availableWidth, 0); g.select('.nv-focus .nv-y1.nv-axis') .style('opacity', dataBars.length ? 1 : 0); y2Axis .scale(y2) .ticks( availableHeight1 / 36 ) .tickSize(dataBars.length ? 0 : -availableWidth, 0); // Show the y2 rules only if y1 has none g.select('.nv-focus .nv-y2.nv-axis') .style('opacity', dataLines.length ? 1 : 0) .attr('transform', 'translate(' + x.range()[1] + ',0)'); g.select('.nv-focus .nv-y1.nv-axis').transition().duration(transitionDuration) .call(y1Axis); g.select('.nv-focus .nv-y2.nv-axis').transition().duration(transitionDuration) .call(y2Axis); } //============================================================ onBrush(); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); bars.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); bars.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.legend = legend; chart.lines = lines; chart.lines2 = lines2; chart.bars = bars; chart.bars2 = bars2; chart.xAxis = xAxis; chart.x2Axis = x2Axis; chart.y1Axis = y1Axis; chart.y2Axis = y2Axis; chart.y3Axis = y3Axis; chart.y4Axis = y4Axis; d3.rebind(chart, lines, 'defined', 'size', 'clipVoronoi', 'interpolate'); //TODO: consider rebinding x, y and some other stuff, and simply do soemthign lile bars.x(lines.x()), etc. //d3.rebind(chart, lines, 'x', 'y', 'size', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id'); chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; lines.x(_); bars.x(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; lines.y(_); bars.y(_); return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.brushExtent = function(_) { if (!arguments.length) return brushExtent; brushExtent = _; return chart; }; //============================================================ return chart; } nv.models.multiBar = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , x = d3.scale.ordinal() , y = d3.scale.linear() , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , getX = function(d) { return d.x } , getY = function(d) { return d.y } , forceY = [0] // 0 is forced by default.. this makes sense for the majority of bar graphs... user can always do chart.forceY([]) to remove , clipEdge = true , stacked = false , stackOffset = 'zero' // options include 'silhouette', 'wiggle', 'expand', 'zero', or a custom function , color = nv.utils.defaultColor() , hideable = false , barColor = null // adding the ability to set the color for each rather than the whole group , disabled // used in conjunction with barColor to communicate from multiBarHorizontalChart what series are disabled , delay = 1200 , xDomain , yDomain , xRange , yRange , groupSpacing = 0.1 , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0 //used to store previous scales ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); if(hideable && data.length) hideable = [{ values: data[0].values.map(function(d) { return { x: d.x, y: 0, series: d.series, size: 0.01 };} )}]; if (stacked) data = d3.layout.stack() .offset(stackOffset) .values(function(d){ return d.values }) .y(getY) (!data.length && hideable ? hideable : data); //add series index to each data point for reference data.forEach(function(series, i) { series.values.forEach(function(point) { point.series = i; }); }); //------------------------------------------------------------ // HACK for negative value stacking if (stacked) data[0].values.map(function(d,i) { var posBase = 0, negBase = 0; data.map(function(d) { var f = d.values[i] f.size = Math.abs(f.y); if (f.y<0) { f.y1 = negBase; negBase = negBase - f.size; } else { f.y1 = f.size + posBase; posBase = posBase + f.size; } }); }); //------------------------------------------------------------ // Setup Scales // remap and flatten the data for use in calculating the scales' domains var seriesData = (xDomain && yDomain) ? [] : // if we know xDomain and yDomain, no need to calculate data.map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i), y0: d.y0, y1: d.y1 } }) }); x .domain(xDomain || d3.merge(seriesData).map(function(d) { return d.x })) .rangeBands(xRange || [0, availableWidth], groupSpacing); //y .domain(yDomain || d3.extent(d3.merge(seriesData).map(function(d) { return d.y + (stacked ? d.y1 : 0) }).concat(forceY))) y .domain(yDomain || d3.extent(d3.merge(seriesData).map(function(d) { return stacked ? (d.y > 0 ? d.y1 : d.y1 + d.y ) : d.y }).concat(forceY))) .range(yRange || [availableHeight, 0]); // If scale's domain don't have a range, slightly adjust to make one... so a chart can show a single data point if (x.domain()[0] === x.domain()[1]) x.domain()[0] ? x.domain([x.domain()[0] - x.domain()[0] * 0.01, x.domain()[1] + x.domain()[1] * 0.01]) : x.domain([-1,1]); if (y.domain()[0] === y.domain()[1]) y.domain()[0] ? y.domain([y.domain()[0] + y.domain()[0] * 0.01, y.domain()[1] - y.domain()[1] * 0.01]) : y.domain([-1,1]); x0 = x0 || x; y0 = y0 || y; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-multibar').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-multibar'); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g') gEnter.append('g').attr('class', 'nv-groups'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ defsEnter.append('clipPath') .attr('id', 'nv-edge-clip-' + id) .append('rect'); wrap.select('#nv-edge-clip-' + id + ' rect') .attr('width', availableWidth) .attr('height', availableHeight); g .attr('clip-path', clipEdge ? 'url(#nv-edge-clip-' + id + ')' : ''); var groups = wrap.select('.nv-groups').selectAll('.nv-group') .data(function(d) { return d }, function(d,i) { return i }); groups.enter().append('g') .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6); groups.exit() .transition() .selectAll('rect.nv-bar') .delay(function(d,i) { return i * delay/ data[0].values.length; }) .attr('y', function(d) { return stacked ? y0(d.y0) : y0(0) }) .attr('height', 0) .remove(); groups .attr('class', function(d,i) { return 'nv-group nv-series-' + i }) .classed('hover', function(d) { return d.hover }) .style('fill', function(d,i){ return color(d, i) }) .style('stroke', function(d,i){ return color(d, i) }); groups .transition() .style('stroke-opacity', 1) .style('fill-opacity', .75); var bars = groups.selectAll('rect.nv-bar') .data(function(d) { return (hideable && !data.length) ? hideable.values : d.values }); bars.exit().remove(); var barsEnter = bars.enter().append('rect') .attr('class', function(d,i) { return getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive'}) .attr('x', function(d,i,j) { return stacked ? 0 : (j * x.rangeBand() / data.length ) }) .attr('y', function(d) { return y0(stacked ? d.y0 : 0) }) .attr('height', 0) .attr('width', x.rangeBand() / (stacked ? 1 : data.length) ) .attr('transform', function(d,i) { return 'translate(' + x(getX(d,i)) + ',0)'; }) ; bars .style('fill', function(d,i,j){ return color(d, j, i); }) .style('stroke', function(d,i,j){ return color(d, j, i); }) .on('mouseover', function(d,i) { //TODO: figure out why j works above, but not here d3.select(this).classed('hover', true); dispatch.elementMouseover({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length), y(getY(d,i) + (stacked ? d.y0 : 0))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('mouseout', function(d,i) { d3.select(this).classed('hover', false); dispatch.elementMouseout({ value: getY(d,i), point: d, series: data[d.series], pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('click', function(d,i) { dispatch.elementClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length), y(getY(d,i) + (stacked ? d.y0 : 0))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { dispatch.elementDblClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length), y(getY(d,i) + (stacked ? d.y0 : 0))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }); bars .attr('class', function(d,i) { return getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive'}) .transition() .attr('transform', function(d,i) { return 'translate(' + x(getX(d,i)) + ',0)'; }) if (barColor) { if (!disabled) disabled = data.map(function() { return true }); bars .style('fill', function(d,i,j) { return d3.rgb(barColor(d,i)).darker( disabled.map(function(d,i) { return i }).filter(function(d,i){ return !disabled[i] })[j] ).toString(); }) .style('stroke', function(d,i,j) { return d3.rgb(barColor(d,i)).darker( disabled.map(function(d,i) { return i }).filter(function(d,i){ return !disabled[i] })[j] ).toString(); }); } if (stacked) bars.transition() .delay(function(d,i) { return i * delay / data[0].values.length; }) .attr('y', function(d,i) { return y((stacked ? d.y1 : 0)); }) .attr('height', function(d,i) { return Math.max(Math.abs(y(d.y + (stacked ? d.y0 : 0)) - y((stacked ? d.y0 : 0))),1); }) .attr('x', function(d,i) { return stacked ? 0 : (d.series * x.rangeBand() / data.length ) }) .attr('width', x.rangeBand() / (stacked ? 1 : data.length) ); else bars.transition() .delay(function(d,i) { return i * delay/ data[0].values.length; }) .attr('x', function(d,i) { return d.series * x.rangeBand() / data.length }) .attr('width', x.rangeBand() / data.length) .attr('y', function(d,i) { return getY(d,i) < 0 ? y(0) : y(0) - y(getY(d,i)) < 1 ? y(0) - 1 : y(getY(d,i)) || 0; }) .attr('height', function(d,i) { return Math.max(Math.abs(y(getY(d,i)) - y(0)),1) || 0; }); //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.stacked = function(_) { if (!arguments.length) return stacked; stacked = _; return chart; }; chart.stackOffset = function(_) { if (!arguments.length) return stackOffset; stackOffset = _; return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.barColor = function(_) { if (!arguments.length) return barColor; barColor = nv.utils.getColor(_); return chart; }; chart.disabled = function(_) { if (!arguments.length) return disabled; disabled = _; return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.hideable = function(_) { if (!arguments.length) return hideable; hideable = _; return chart; }; chart.delay = function(_) { if (!arguments.length) return delay; delay = _; return chart; }; chart.groupSpacing = function(_) { if (!arguments.length) return groupSpacing; groupSpacing = _; return chart; }; //============================================================ return chart; } nv.models.multiBarChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var multibar = nv.models.multiBar() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , controls = nv.models.legend() ; var margin = {top: 30, right: 20, bottom: 50, left: 60} , width = null , height = null , color = nv.utils.defaultColor() , showControls = true , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , reduceXTicks = true // if false a tick will show for every data point , staggerLabels = false , rotateLabels = 0 , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' on ' + x + '</p>' } , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , state = { stacked: false } , defaultState = null , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , controlWidth = function() { return showControls ? 180 : 0 } , transitionDuration = 250 ; multibar .stacked(false) ; xAxis .orient('bottom') .tickPadding(7) .highlightZero(true) .showMaxMin(false) .tickFormat(function(d) { return d }) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') .tickFormat(d3.format(',.1f')) ; controls.updateState(false); //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(multibar.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(multibar.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display noData message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = multibar.xScale(); y = multibar.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-multiBarWithLegend').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-multiBarWithLegend').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-barsWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth - controlWidth()); if (multibar.barColor()) data.forEach(function(series,i) { series.color = d3.rgb('#ccc').darker(i * 1.5).toString(); }) g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-legendWrap') .attr('transform', 'translate(' + controlWidth() + ',' + (-margin.top) +')'); } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { var controlsData = [ { key: 'Grouped', disabled: multibar.stacked() }, { key: 'Stacked', disabled: !multibar.stacked() } ]; controls.width(controlWidth()).color(['#444', '#444', '#444']); g.select('.nv-controlsWrap') .datum(controlsData) .attr('transform', 'translate(0,' + (-margin.top) +')') .call(controls); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ // Main Chart Component(s) multibar .disabled(data.map(function(series) { return series.disabled })) .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })) var barsWrap = g.select('.nv-barsWrap') .datum(data.filter(function(d) { return !d.disabled })) barsWrap.transition().call(multibar); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize(-availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')'); g.select('.nv-x.nv-axis').transition() .call(xAxis); var xTicks = g.select('.nv-x.nv-axis > g').selectAll('g'); xTicks .selectAll('line, text') .style('opacity', 1) if (staggerLabels) { var getTranslate = function(x,y) { return "translate(" + x + "," + y + ")"; }; var staggerUp = 5, staggerDown = 17; //pixels to stagger by // Issue #140 xTicks .selectAll("text") .attr('transform', function(d,i,j) { return getTranslate(0, (j % 2 == 0 ? staggerUp : staggerDown)); }); var totalInBetweenTicks = d3.selectAll(".nv-x.nv-axis .nv-wrap g g text")[0].length; g.selectAll(".nv-x.nv-axis .nv-axisMaxMin text") .attr("transform", function(d,i) { return getTranslate(0, (i === 0 || totalInBetweenTicks % 2 !== 0) ? staggerDown : staggerUp); }); } if (reduceXTicks) xTicks .filter(function(d,i) { return i % Math.ceil(data[0].values.length / (availableWidth / 100)) !== 0; }) .selectAll('text, line') .style('opacity', 0); if(rotateLabels) xTicks .selectAll('.tick text') .attr('transform', 'rotate(' + rotateLabels + ' 0,0)') .style('text-anchor', rotateLabels > 0 ? 'start' : 'end'); g.select('.nv-x.nv-axis').selectAll('g.nv-axisMaxMin text') .style('opacity', 1); } if (showYAxis) { yAxis .scale(y) .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis').transition() .call(yAxis); } //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); controls.dispatch.on('legendClick', function(d,i) { if (!d.disabled) return; controlsData = controlsData.map(function(s) { s.disabled = true; return s; }); d.disabled = false; switch (d.key) { case 'Grouped': multibar.stacked(false); break; case 'Stacked': multibar.stacked(true); break; } state.stacked = multibar.stacked(); dispatch.stateChange(state); chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode) }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } if (typeof e.stacked !== 'undefined') { multibar.stacked(e.stacked); state.stacked = e.stacked; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ multibar.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); multibar.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.multibar = multibar; chart.legend = legend; chart.xAxis = xAxis; chart.yAxis = yAxis; d3.rebind(chart, multibar, 'x', 'y', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'clipEdge', 'id', 'stacked', 'stackOffset', 'delay', 'barColor','groupSpacing'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.reduceXTicks= function(_) { if (!arguments.length) return reduceXTicks; reduceXTicks = _; return chart; }; chart.rotateLabels = function(_) { if (!arguments.length) return rotateLabels; rotateLabels = _; return chart; } chart.staggerLabels = function(_) { if (!arguments.length) return staggerLabels; staggerLabels = _; return chart; }; chart.tooltip = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.multiBarHorizontal = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , x = d3.scale.ordinal() , y = d3.scale.linear() , getX = function(d) { return d.x } , getY = function(d) { return d.y } , forceY = [0] // 0 is forced by default.. this makes sense for the majority of bar graphs... user can always do chart.forceY([]) to remove , color = nv.utils.defaultColor() , barColor = null // adding the ability to set the color for each rather than the whole group , disabled // used in conjunction with barColor to communicate from multiBarHorizontalChart what series are disabled , stacked = false , showValues = false , showBarLabels = false , valuePadding = 60 , valueFormat = d3.format(',.2f') , delay = 1200 , xDomain , yDomain , xRange , yRange , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0 //used to store previous scales ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); if (stacked) data = d3.layout.stack() .offset('zero') .values(function(d){ return d.values }) .y(getY) (data); //add series index to each data point for reference data.forEach(function(series, i) { series.values.forEach(function(point) { point.series = i; }); }); //------------------------------------------------------------ // HACK for negative value stacking if (stacked) data[0].values.map(function(d,i) { var posBase = 0, negBase = 0; data.map(function(d) { var f = d.values[i] f.size = Math.abs(f.y); if (f.y<0) { f.y1 = negBase - f.size; negBase = negBase - f.size; } else { f.y1 = posBase; posBase = posBase + f.size; } }); }); //------------------------------------------------------------ // Setup Scales // remap and flatten the data for use in calculating the scales' domains var seriesData = (xDomain && yDomain) ? [] : // if we know xDomain and yDomain, no need to calculate data.map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i), y0: d.y0, y1: d.y1 } }) }); x .domain(xDomain || d3.merge(seriesData).map(function(d) { return d.x })) .rangeBands(xRange || [0, availableHeight], .1); //y .domain(yDomain || d3.extent(d3.merge(seriesData).map(function(d) { return d.y + (stacked ? d.y0 : 0) }).concat(forceY))) y .domain(yDomain || d3.extent(d3.merge(seriesData).map(function(d) { return stacked ? (d.y > 0 ? d.y1 + d.y : d.y1 ) : d.y }).concat(forceY))) if (showValues && !stacked) y.range(yRange || [(y.domain()[0] < 0 ? valuePadding : 0), availableWidth - (y.domain()[1] > 0 ? valuePadding : 0) ]); else y.range(yRange || [0, availableWidth]); x0 = x0 || x; y0 = y0 || d3.scale.linear().domain(y.domain()).range([y(0),y(0)]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = d3.select(this).selectAll('g.nv-wrap.nv-multibarHorizontal').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-multibarHorizontal'); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-groups'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ var groups = wrap.select('.nv-groups').selectAll('.nv-group') .data(function(d) { return d }, function(d,i) { return i }); groups.enter().append('g') .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6); groups.exit().transition() .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6) .remove(); groups .attr('class', function(d,i) { return 'nv-group nv-series-' + i }) .classed('hover', function(d) { return d.hover }) .style('fill', function(d,i){ return color(d, i) }) .style('stroke', function(d,i){ return color(d, i) }); groups.transition() .style('stroke-opacity', 1) .style('fill-opacity', .75); var bars = groups.selectAll('g.nv-bar') .data(function(d) { return d.values }); bars.exit().remove(); var barsEnter = bars.enter().append('g') .attr('transform', function(d,i,j) { return 'translate(' + y0(stacked ? d.y0 : 0) + ',' + (stacked ? 0 : (j * x.rangeBand() / data.length ) + x(getX(d,i))) + ')' }); barsEnter.append('rect') .attr('width', 0) .attr('height', x.rangeBand() / (stacked ? 1 : data.length) ) bars .on('mouseover', function(d,i) { //TODO: figure out why j works above, but not here d3.select(this).classed('hover', true); dispatch.elementMouseover({ value: getY(d,i), point: d, series: data[d.series], pos: [ y(getY(d,i) + (stacked ? d.y0 : 0)), x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length) ], pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('mouseout', function(d,i) { d3.select(this).classed('hover', false); dispatch.elementMouseout({ value: getY(d,i), point: d, series: data[d.series], pointIndex: i, seriesIndex: d.series, e: d3.event }); }) .on('click', function(d,i) { dispatch.elementClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length), y(getY(d,i) + (stacked ? d.y0 : 0))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { dispatch.elementDblClick({ value: getY(d,i), point: d, series: data[d.series], pos: [x(getX(d,i)) + (x.rangeBand() * (stacked ? data.length / 2 : d.series + .5) / data.length), y(getY(d,i) + (stacked ? d.y0 : 0))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: d.series, e: d3.event }); d3.event.stopPropagation(); }); barsEnter.append('text'); if (showValues && !stacked) { bars.select('text') .attr('text-anchor', function(d,i) { return getY(d,i) < 0 ? 'end' : 'start' }) .attr('y', x.rangeBand() / (data.length * 2)) .attr('dy', '.32em') .text(function(d,i) { return valueFormat(getY(d,i)) }) bars.transition() .select('text') .attr('x', function(d,i) { return getY(d,i) < 0 ? -4 : y(getY(d,i)) - y(0) + 4 }) } else { bars.selectAll('text').text(''); } if (showBarLabels && !stacked) { barsEnter.append('text').classed('nv-bar-label',true); bars.select('text.nv-bar-label') .attr('text-anchor', function(d,i) { return getY(d,i) < 0 ? 'start' : 'end' }) .attr('y', x.rangeBand() / (data.length * 2)) .attr('dy', '.32em') .text(function(d,i) { return getX(d,i) }); bars.transition() .select('text.nv-bar-label') .attr('x', function(d,i) { return getY(d,i) < 0 ? y(0) - y(getY(d,i)) + 4 : -4 }); } else { bars.selectAll('text.nv-bar-label').text(''); } bars .attr('class', function(d,i) { return getY(d,i) < 0 ? 'nv-bar negative' : 'nv-bar positive'}) if (barColor) { if (!disabled) disabled = data.map(function() { return true }); bars .style('fill', function(d,i,j) { return d3.rgb(barColor(d,i)).darker( disabled.map(function(d,i) { return i }).filter(function(d,i){ return !disabled[i] })[j] ).toString(); }) .style('stroke', function(d,i,j) { return d3.rgb(barColor(d,i)).darker( disabled.map(function(d,i) { return i }).filter(function(d,i){ return !disabled[i] })[j] ).toString(); }); } if (stacked) bars.transition() .attr('transform', function(d,i) { return 'translate(' + y(d.y1) + ',' + x(getX(d,i)) + ')' }) .select('rect') .attr('width', function(d,i) { return Math.abs(y(getY(d,i) + d.y0) - y(d.y0)) }) .attr('height', x.rangeBand() ); else bars.transition() .attr('transform', function(d,i) { //TODO: stacked must be all positive or all negative, not both? return 'translate(' + (getY(d,i) < 0 ? y(getY(d,i)) : y(0)) + ',' + (d.series * x.rangeBand() / data.length + x(getX(d,i)) ) + ')' }) .select('rect') .attr('height', x.rangeBand() / data.length ) .attr('width', function(d,i) { return Math.max(Math.abs(y(getY(d,i)) - y(0)),1) }); //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.stacked = function(_) { if (!arguments.length) return stacked; stacked = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.barColor = function(_) { if (!arguments.length) return barColor; barColor = nv.utils.getColor(_); return chart; }; chart.disabled = function(_) { if (!arguments.length) return disabled; disabled = _; return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.delay = function(_) { if (!arguments.length) return delay; delay = _; return chart; }; chart.showValues = function(_) { if (!arguments.length) return showValues; showValues = _; return chart; }; chart.showBarLabels = function(_) { if (!arguments.length) return showBarLabels; showBarLabels = _; return chart; }; chart.valueFormat= function(_) { if (!arguments.length) return valueFormat; valueFormat = _; return chart; }; chart.valuePadding = function(_) { if (!arguments.length) return valuePadding; valuePadding = _; return chart; }; //============================================================ return chart; } nv.models.multiBarHorizontalChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var multibar = nv.models.multiBarHorizontal() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend().height(30) , controls = nv.models.legend().height(30) ; var margin = {top: 30, right: 20, bottom: 50, left: 60} , width = null , height = null , color = nv.utils.defaultColor() , showControls = true , showLegend = true , showXAxis = true , showYAxis = true , stacked = false , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + ' - ' + x + '</h3>' + '<p>' + y + '</p>' } , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , state = { stacked: stacked } , defaultState = null , noData = 'No Data Available.' , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , controlWidth = function() { return showControls ? 180 : 0 } , transitionDuration = 250 ; multibar .stacked(stacked) ; xAxis .orient('left') .tickPadding(5) .highlightZero(false) .showMaxMin(false) .tickFormat(function(d) { return d }) ; yAxis .orient('bottom') .tickFormat(d3.format(',.1f')) ; controls.updateState(false); //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(multibar.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(multibar.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'e' : 'w', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart) }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = multibar.xScale(); y = multibar.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-multiBarHorizontalChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-multiBarHorizontalChart').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis') .append('g').attr('class', 'nv-zeroLine') .append('line'); gEnter.append('g').attr('class', 'nv-barsWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width(availableWidth - controlWidth()); if (multibar.barColor()) data.forEach(function(series,i) { series.color = d3.rgb('#ccc').darker(i * 1.5).toString(); }) g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-legendWrap') .attr('transform', 'translate(' + controlWidth() + ',' + (-margin.top) +')'); } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { var controlsData = [ { key: 'Grouped', disabled: multibar.stacked() }, { key: 'Stacked', disabled: !multibar.stacked() } ]; controls.width(controlWidth()).color(['#444', '#444', '#444']); g.select('.nv-controlsWrap') .datum(controlsData) .attr('transform', 'translate(0,' + (-margin.top) +')') .call(controls); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Main Chart Component(s) multibar .disabled(data.map(function(series) { return series.disabled })) .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })) var barsWrap = g.select('.nv-barsWrap') .datum(data.filter(function(d) { return !d.disabled })) barsWrap.transition().call(multibar); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( availableHeight / 24 ) .tickSize(-availableWidth, 0); g.select('.nv-x.nv-axis').transition() .call(xAxis); var xTicks = g.select('.nv-x.nv-axis').selectAll('g'); xTicks .selectAll('line, text'); } if (showYAxis) { yAxis .scale(y) .ticks( availableWidth / 100 ) .tickSize( -availableHeight, 0); g.select('.nv-y.nv-axis') .attr('transform', 'translate(0,' + availableHeight + ')'); g.select('.nv-y.nv-axis').transition() .call(yAxis); } // Zero line g.select(".nv-zeroLine line") .attr("x1", y(0)) .attr("x2", y(0)) .attr("y1", 0) .attr("y2", -availableHeight) ; //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); controls.dispatch.on('legendClick', function(d,i) { if (!d.disabled) return; controlsData = controlsData.map(function(s) { s.disabled = true; return s; }); d.disabled = false; switch (d.key) { case 'Grouped': multibar.stacked(false); break; case 'Stacked': multibar.stacked(true); break; } state.stacked = multibar.stacked(); dispatch.stateChange(state); chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } if (typeof e.stacked !== 'undefined') { multibar.stacked(e.stacked); state.stacked = e.stacked; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ multibar.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); multibar.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.multibar = multibar; chart.legend = legend; chart.xAxis = xAxis; chart.yAxis = yAxis; d3.rebind(chart, multibar, 'x', 'y', 'xDomain', 'yDomain', 'xRange', 'yRange', 'forceX', 'forceY', 'clipEdge', 'id', 'delay', 'showValues','showBarLabels', 'valueFormat', 'stacked', 'barColor'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.tooltip = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.multiChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 30, right: 20, bottom: 50, left: 60}, color = d3.scale.category20().range(), width = null, height = null, showLegend = true, tooltips = true, tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' at ' + x + '</p>' }, x, y, yDomain1, yDomain2 ; //can be accessed via chart.lines.[x/y]Scale() //============================================================ // Private Variables //------------------------------------------------------------ var x = d3.scale.linear(), yScale1 = d3.scale.linear(), yScale2 = d3.scale.linear(), lines1 = nv.models.line().yScale(yScale1), lines2 = nv.models.line().yScale(yScale2), bars1 = nv.models.multiBar().stacked(false).yScale(yScale1), bars2 = nv.models.multiBar().stacked(false).yScale(yScale2), stack1 = nv.models.stackedArea().yScale(yScale1), stack2 = nv.models.stackedArea().yScale(yScale2), xAxis = nv.models.axis().scale(x).orient('bottom').tickPadding(5), yAxis1 = nv.models.axis().scale(yScale1).orient('left'), yAxis2 = nv.models.axis().scale(yScale2).orient('right'), legend = nv.models.legend().height(30), dispatch = d3.dispatch('tooltipShow', 'tooltipHide'); var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(lines1.x()(e.point, e.pointIndex)), y = ((e.series.yAxis == 2) ? yAxis2 : yAxis1).tickFormat()(lines1.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, undefined, undefined, offsetElement.offsetParent); }; function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; chart.update = function() { container.transition().call(chart); }; chart.container = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; var dataLines1 = data.filter(function(d) {return !d.disabled && d.type == 'line' && d.yAxis == 1}) var dataLines2 = data.filter(function(d) {return !d.disabled && d.type == 'line' && d.yAxis == 2}) var dataBars1 = data.filter(function(d) {return !d.disabled && d.type == 'bar' && d.yAxis == 1}) var dataBars2 = data.filter(function(d) {return !d.disabled && d.type == 'bar' && d.yAxis == 2}) var dataStack1 = data.filter(function(d) {return !d.disabled && d.type == 'area' && d.yAxis == 1}) var dataStack2 = data.filter(function(d) {return !d.disabled && d.type == 'area' && d.yAxis == 2}) var series1 = data.filter(function(d) {return !d.disabled && d.yAxis == 1}) .map(function(d) { return d.values.map(function(d,i) { return { x: d.x, y: d.y } }) }) var series2 = data.filter(function(d) {return !d.disabled && d.yAxis == 2}) .map(function(d) { return d.values.map(function(d,i) { return { x: d.x, y: d.y } }) }) x .domain(d3.extent(d3.merge(series1.concat(series2)), function(d) { return d.x } )) .range([0, availableWidth]); var wrap = container.selectAll('g.wrap.multiChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'wrap nvd3 multiChart').append('g'); gEnter.append('g').attr('class', 'x axis'); gEnter.append('g').attr('class', 'y1 axis'); gEnter.append('g').attr('class', 'y2 axis'); gEnter.append('g').attr('class', 'lines1Wrap'); gEnter.append('g').attr('class', 'lines2Wrap'); gEnter.append('g').attr('class', 'bars1Wrap'); gEnter.append('g').attr('class', 'bars2Wrap'); gEnter.append('g').attr('class', 'stack1Wrap'); gEnter.append('g').attr('class', 'stack2Wrap'); gEnter.append('g').attr('class', 'legendWrap'); var g = wrap.select('g'); if (showLegend) { legend.width( availableWidth / 2 ); g.select('.legendWrap') .datum(data.map(function(series) { series.originalKey = series.originalKey === undefined ? series.key : series.originalKey; series.key = series.originalKey + (series.yAxis == 1 ? '' : ' (right axis)'); return series; })) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.legendWrap') .attr('transform', 'translate(' + ( availableWidth / 2 ) + ',' + (-margin.top) +')'); } lines1 .width(availableWidth) .height(availableHeight) .interpolate("monotone") .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 1 && data[i].type == 'line'})); lines2 .width(availableWidth) .height(availableHeight) .interpolate("monotone") .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 2 && data[i].type == 'line'})); bars1 .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 1 && data[i].type == 'bar'})); bars2 .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 2 && data[i].type == 'bar'})); stack1 .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 1 && data[i].type == 'area'})); stack2 .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color[i % color.length]; }).filter(function(d,i) { return !data[i].disabled && data[i].yAxis == 2 && data[i].type == 'area'})); g.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); var lines1Wrap = g.select('.lines1Wrap') .datum(dataLines1) var bars1Wrap = g.select('.bars1Wrap') .datum(dataBars1) var stack1Wrap = g.select('.stack1Wrap') .datum(dataStack1) var lines2Wrap = g.select('.lines2Wrap') .datum(dataLines2) var bars2Wrap = g.select('.bars2Wrap') .datum(dataBars2) var stack2Wrap = g.select('.stack2Wrap') .datum(dataStack2) var extraValue1 = dataStack1.length ? dataStack1.map(function(a){return a.values}).reduce(function(a,b){ return a.map(function(aVal,i){return {x: aVal.x, y: aVal.y + b[i].y}}) }).concat([{x:0, y:0}]) : [] var extraValue2 = dataStack2.length ? dataStack2.map(function(a){return a.values}).reduce(function(a,b){ return a.map(function(aVal,i){return {x: aVal.x, y: aVal.y + b[i].y}}) }).concat([{x:0, y:0}]) : [] yScale1 .domain(yDomain1 || d3.extent(d3.merge(series1).concat(extraValue1), function(d) { return d.y } )) .range([0, availableHeight]) yScale2 .domain(yDomain2 || d3.extent(d3.merge(series2).concat(extraValue2), function(d) { return d.y } )) .range([0, availableHeight]) lines1.yDomain(yScale1.domain()) bars1.yDomain(yScale1.domain()) stack1.yDomain(yScale1.domain()) lines2.yDomain(yScale2.domain()) bars2.yDomain(yScale2.domain()) stack2.yDomain(yScale2.domain()) if(dataStack1.length){d3.transition(stack1Wrap).call(stack1);} if(dataStack2.length){d3.transition(stack2Wrap).call(stack2);} if(dataBars1.length){d3.transition(bars1Wrap).call(bars1);} if(dataBars2.length){d3.transition(bars2Wrap).call(bars2);} if(dataLines1.length){d3.transition(lines1Wrap).call(lines1);} if(dataLines2.length){d3.transition(lines2Wrap).call(lines2);} xAxis .ticks( availableWidth / 100 ) .tickSize(-availableHeight, 0); g.select('.x.axis') .attr('transform', 'translate(0,' + availableHeight + ')'); d3.transition(g.select('.x.axis')) .call(xAxis); yAxis1 .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); d3.transition(g.select('.y1.axis')) .call(yAxis1); yAxis2 .ticks( availableHeight / 36 ) .tickSize( -availableWidth, 0); d3.transition(g.select('.y2.axis')) .call(yAxis2); g.select('.y2.axis') .style('opacity', series2.length ? 1 : 0) .attr('transform', 'translate(' + x.range()[1] + ',0)'); legend.dispatch.on('stateChange', function(newState) { chart.update(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ lines1.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines1.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); lines2.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines2.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); bars1.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); bars1.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); bars2.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); bars2.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); stack1.dispatch.on('tooltipShow', function(e) { //disable tooltips when value ~= 0 //// TODO: consider removing points from voronoi that have 0 value instead of this hack if (!Math.round(stack1.y()(e.point) * 100)) { // 100 will not be good for very small numbers... will have to think about making this valu dynamic, based on data range setTimeout(function() { d3.selectAll('.point.hover').classed('hover', false) }, 0); return false; } e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top], dispatch.tooltipShow(e); }); stack1.dispatch.on('tooltipHide', function(e) { dispatch.tooltipHide(e); }); stack2.dispatch.on('tooltipShow', function(e) { //disable tooltips when value ~= 0 //// TODO: consider removing points from voronoi that have 0 value instead of this hack if (!Math.round(stack2.y()(e.point) * 100)) { // 100 will not be good for very small numbers... will have to think about making this valu dynamic, based on data range setTimeout(function() { d3.selectAll('.point.hover').classed('hover', false) }, 0); return false; } e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top], dispatch.tooltipShow(e); }); stack2.dispatch.on('tooltipHide', function(e) { dispatch.tooltipHide(e); }); lines1.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines1.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); lines2.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); lines2.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ // Global getters and setters //------------------------------------------------------------ chart.dispatch = dispatch; chart.lines1 = lines1; chart.lines2 = lines2; chart.bars1 = bars1; chart.bars2 = bars2; chart.stack1 = stack1; chart.stack2 = stack2; chart.xAxis = xAxis; chart.yAxis1 = yAxis1; chart.yAxis2 = yAxis2; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; lines1.x(_); bars1.x(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; lines1.y(_); bars1.y(_); return chart; }; chart.yDomain1 = function(_) { if (!arguments.length) return yDomain1; yDomain1 = _; return chart; }; chart.yDomain2 = function(_) { if (!arguments.length) return yDomain2; yDomain2 = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin = _; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = _; legend.color(_); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; return chart; } nv.models.ohlcBar = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , x = d3.scale.linear() , y = d3.scale.linear() , getX = function(d) { return d.x } , getY = function(d) { return d.y } , getOpen = function(d) { return d.open } , getClose = function(d) { return d.close } , getHigh = function(d) { return d.high } , getLow = function(d) { return d.low } , forceX = [] , forceY = [] , padData = false // If true, adds half a data points width to front and back, for lining up a line chart with a bar chart , clipEdge = true , color = nv.utils.defaultColor() , xDomain , yDomain , xRange , yRange , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ //TODO: store old scales for transitions //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //------------------------------------------------------------ // Setup Scales x .domain(xDomain || d3.extent(data[0].values.map(getX).concat(forceX) )); if (padData) x.range(xRange || [availableWidth * .5 / data[0].values.length, availableWidth * (data[0].values.length - .5) / data[0].values.length ]); else x.range(xRange || [0, availableWidth]); y .domain(yDomain || [ d3.min(data[0].values.map(getLow).concat(forceY)), d3.max(data[0].values.map(getHigh).concat(forceY)) ]) .range(yRange || [availableHeight, 0]); // If scale's domain don't have a range, slightly adjust to make one... so a chart can show a single data point if (x.domain()[0] === x.domain()[1]) x.domain()[0] ? x.domain([x.domain()[0] - x.domain()[0] * 0.01, x.domain()[1] + x.domain()[1] * 0.01]) : x.domain([-1,1]); if (y.domain()[0] === y.domain()[1]) y.domain()[0] ? y.domain([y.domain()[0] + y.domain()[0] * 0.01, y.domain()[1] - y.domain()[1] * 0.01]) : y.domain([-1,1]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = d3.select(this).selectAll('g.nv-wrap.nv-ohlcBar').data([data[0].values]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-ohlcBar'); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-ticks'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ container .on('click', function(d,i) { dispatch.chartClick({ data: d, index: i, pos: d3.event, id: id }); }); defsEnter.append('clipPath') .attr('id', 'nv-chart-clip-path-' + id) .append('rect'); wrap.select('#nv-chart-clip-path-' + id + ' rect') .attr('width', availableWidth) .attr('height', availableHeight); g .attr('clip-path', clipEdge ? 'url(#nv-chart-clip-path-' + id + ')' : ''); var ticks = wrap.select('.nv-ticks').selectAll('.nv-tick') .data(function(d) { return d }); ticks.exit().remove(); var ticksEnter = ticks.enter().append('path') .attr('class', function(d,i,j) { return (getOpen(d,i) > getClose(d,i) ? 'nv-tick negative' : 'nv-tick positive') + ' nv-tick-' + j + '-' + i }) .attr('d', function(d,i) { var w = (availableWidth / data[0].values.length) * .9; return 'm0,0l0,' + (y(getOpen(d,i)) - y(getHigh(d,i))) + 'l' + (-w/2) + ',0l' + (w/2) + ',0l0,' + (y(getLow(d,i)) - y(getOpen(d,i))) + 'l0,' + (y(getClose(d,i)) - y(getLow(d,i))) + 'l' + (w/2) + ',0l' + (-w/2) + ',0z'; }) .attr('transform', function(d,i) { return 'translate(' + x(getX(d,i)) + ',' + y(getHigh(d,i)) + ')'; }) //.attr('fill', function(d,i) { return color[0]; }) //.attr('stroke', function(d,i) { return color[0]; }) //.attr('x', 0 ) //.attr('y', function(d,i) { return y(Math.max(0, getY(d,i))) }) //.attr('height', function(d,i) { return Math.abs(y(getY(d,i)) - y(0)) }) .on('mouseover', function(d,i) { d3.select(this).classed('hover', true); dispatch.elementMouseover({ point: d, series: data[0], pos: [x(getX(d,i)), y(getY(d,i))], // TODO: Figure out why the value appears to be shifted pointIndex: i, seriesIndex: 0, e: d3.event }); }) .on('mouseout', function(d,i) { d3.select(this).classed('hover', false); dispatch.elementMouseout({ point: d, series: data[0], pointIndex: i, seriesIndex: 0, e: d3.event }); }) .on('click', function(d,i) { dispatch.elementClick({ //label: d[label], value: getY(d,i), data: d, index: i, pos: [x(getX(d,i)), y(getY(d,i))], e: d3.event, id: id }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { dispatch.elementDblClick({ //label: d[label], value: getY(d,i), data: d, index: i, pos: [x(getX(d,i)), y(getY(d,i))], e: d3.event, id: id }); d3.event.stopPropagation(); }); ticks .attr('class', function(d,i,j) { return (getOpen(d,i) > getClose(d,i) ? 'nv-tick negative' : 'nv-tick positive') + ' nv-tick-' + j + '-' + i }) d3.transition(ticks) .attr('transform', function(d,i) { return 'translate(' + x(getX(d,i)) + ',' + y(getHigh(d,i)) + ')'; }) .attr('d', function(d,i) { var w = (availableWidth / data[0].values.length) * .9; return 'm0,0l0,' + (y(getOpen(d,i)) - y(getHigh(d,i))) + 'l' + (-w/2) + ',0l' + (w/2) + ',0l0,' + (y(getLow(d,i)) - y(getOpen(d,i))) + 'l0,' + (y(getClose(d,i)) - y(getLow(d,i))) + 'l' + (w/2) + ',0l' + (-w/2) + ',0z'; }) //.attr('width', (availableWidth / data[0].values.length) * .9 ) //d3.transition(ticks) //.attr('y', function(d,i) { return y(Math.max(0, getY(d,i))) }) //.attr('height', function(d,i) { return Math.abs(y(getY(d,i)) - y(0)) }); //.order(); // not sure if this makes any sense for this model }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = _; return chart; }; chart.open = function(_) { if (!arguments.length) return getOpen; getOpen = _; return chart; }; chart.close = function(_) { if (!arguments.length) return getClose; getClose = _; return chart; }; chart.high = function(_) { if (!arguments.length) return getHigh; getHigh = _; return chart; }; chart.low = function(_) { if (!arguments.length) return getLow; getLow = _; return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.forceX = function(_) { if (!arguments.length) return forceX; forceX = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.padData = function(_) { if (!arguments.length) return padData; padData = _; return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; //============================================================ return chart; } nv.models.pie = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 500 , height = 500 , getX = function(d) { return d.x } , getY = function(d) { return d.y } , getDescription = function(d) { return d.description } , id = Math.floor(Math.random() * 10000) //Create semi-unique ID in case user doesn't select one , color = nv.utils.defaultColor() , valueFormat = d3.format(',.2f') , showLabels = true , pieLabelsOutside = true , donutLabelsOutside = false , labelType = "key" , labelThreshold = .02 //if slice percentage is under this, don't show label , donut = false , labelSunbeamLayout = false , startAngle = false , endAngle = false , donutRatio = 0.5 , dispatch = d3.dispatch('chartClick', 'elementClick', 'elementDblClick', 'elementMouseover', 'elementMouseout') ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, radius = Math.min(availableWidth, availableHeight) / 2, arcRadius = radius-(radius / 5), container = d3.select(this); //------------------------------------------------------------ // Setup containers and skeleton of chart //var wrap = container.selectAll('.nv-wrap.nv-pie').data([data]); var wrap = container.selectAll('.nv-wrap.nv-pie').data(data); var wrapEnter = wrap.enter().append('g').attr('class','nvd3 nv-wrap nv-pie nv-chart-' + id); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-pie'); gEnter.append('g').attr('class', 'nv-pieLabels'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); g.select('.nv-pie').attr('transform', 'translate(' + availableWidth / 2 + ',' + availableHeight / 2 + ')'); g.select('.nv-pieLabels').attr('transform', 'translate(' + availableWidth / 2 + ',' + availableHeight / 2 + ')'); //------------------------------------------------------------ container .on('click', function(d,i) { dispatch.chartClick({ data: d, index: i, pos: d3.event, id: id }); }); var arc = d3.svg.arc() .outerRadius(arcRadius); if (startAngle) arc.startAngle(startAngle) if (endAngle) arc.endAngle(endAngle); if (donut) arc.innerRadius(radius * donutRatio); // Setup the Pie chart and choose the data element var pie = d3.layout.pie() .sort(null) .value(function(d) { return d.disabled ? 0 : getY(d) }); var slices = wrap.select('.nv-pie').selectAll('.nv-slice') .data(pie); var pieLabels = wrap.select('.nv-pieLabels').selectAll('.nv-label') .data(pie); slices.exit().remove(); pieLabels.exit().remove(); var ae = slices.enter().append('g') .attr('class', 'nv-slice') .on('mouseover', function(d,i){ d3.select(this).classed('hover', true); dispatch.elementMouseover({ label: getX(d.data), value: getY(d.data), point: d.data, pointIndex: i, pos: [d3.event.pageX, d3.event.pageY], id: id }); }) .on('mouseout', function(d,i){ d3.select(this).classed('hover', false); dispatch.elementMouseout({ label: getX(d.data), value: getY(d.data), point: d.data, index: i, id: id }); }) .on('click', function(d,i) { dispatch.elementClick({ label: getX(d.data), value: getY(d.data), point: d.data, index: i, pos: d3.event, id: id }); d3.event.stopPropagation(); }) .on('dblclick', function(d,i) { dispatch.elementDblClick({ label: getX(d.data), value: getY(d.data), point: d.data, index: i, pos: d3.event, id: id }); d3.event.stopPropagation(); }); slices .attr('fill', function(d,i) { return color(d, i); }) .attr('stroke', function(d,i) { return color(d, i); }); var paths = ae.append('path') .each(function(d) { this._current = d; }); //.attr('d', arc); slices.select('path') .transition() .attr('d', arc) .attrTween('d', arcTween); if (showLabels) { // This does the normal label var labelsArc = d3.svg.arc().innerRadius(0); if (pieLabelsOutside){ labelsArc = arc; } if (donutLabelsOutside) { labelsArc = d3.svg.arc().outerRadius(arc.outerRadius()); } pieLabels.enter().append("g").classed("nv-label",true) .each(function(d,i) { var group = d3.select(this); group .attr('transform', function(d) { if (labelSunbeamLayout) { d.outerRadius = arcRadius + 10; // Set Outer Coordinate d.innerRadius = arcRadius + 15; // Set Inner Coordinate var rotateAngle = (d.startAngle + d.endAngle) / 2 * (180 / Math.PI); if ((d.startAngle+d.endAngle)/2 < Math.PI) { rotateAngle -= 90; } else { rotateAngle += 90; } return 'translate(' + labelsArc.centroid(d) + ') rotate(' + rotateAngle + ')'; } else { d.outerRadius = radius + 10; // Set Outer Coordinate d.innerRadius = radius + 15; // Set Inner Coordinate return 'translate(' + labelsArc.centroid(d) + ')' } }); group.append('rect') .style('stroke', '#fff') .style('fill', '#fff') .attr("rx", 3) .attr("ry", 3); group.append('text') .style('text-anchor', labelSunbeamLayout ? ((d.startAngle + d.endAngle) / 2 < Math.PI ? 'start' : 'end') : 'middle') //center the text on it's origin or begin/end if orthogonal aligned .style('fill', '#000') }); var labelLocationHash = {}; var avgHeight = 14; var avgWidth = 140; var createHashKey = function(coordinates) { return Math.floor(coordinates[0]/avgWidth) * avgWidth + ',' + Math.floor(coordinates[1]/avgHeight) * avgHeight; }; pieLabels.transition() .attr('transform', function(d) { if (labelSunbeamLayout) { d.outerRadius = arcRadius + 10; // Set Outer Coordinate d.innerRadius = arcRadius + 15; // Set Inner Coordinate var rotateAngle = (d.startAngle + d.endAngle) / 2 * (180 / Math.PI); if ((d.startAngle+d.endAngle)/2 < Math.PI) { rotateAngle -= 90; } else { rotateAngle += 90; } return 'translate(' + labelsArc.centroid(d) + ') rotate(' + rotateAngle + ')'; } else { d.outerRadius = radius + 10; // Set Outer Coordinate d.innerRadius = radius + 15; // Set Inner Coordinate /* Overlapping pie labels are not good. What this attempts to do is, prevent overlapping. Each label location is hashed, and if a hash collision occurs, we assume an overlap. Adjust the label's y-position to remove the overlap. */ var center = labelsArc.centroid(d); var hashKey = createHashKey(center); if (labelLocationHash[hashKey]) { center[1] -= avgHeight; } labelLocationHash[createHashKey(center)] = true; return 'translate(' + center + ')' } }); pieLabels.select(".nv-label text") .style('text-anchor', labelSunbeamLayout ? ((d.startAngle + d.endAngle) / 2 < Math.PI ? 'start' : 'end') : 'middle') //center the text on it's origin or begin/end if orthogonal aligned .text(function(d, i) { var percent = (d.endAngle - d.startAngle) / (2 * Math.PI); var labelTypes = { "key" : getX(d.data), "value": getY(d.data), "percent": d3.format('%')(percent) }; return (d.value && percent > labelThreshold) ? labelTypes[labelType] : ''; }); } // Computes the angle of an arc, converting from radians to degrees. function angle(d) { var a = (d.startAngle + d.endAngle) * 90 / Math.PI - 90; return a > 90 ? a - 180 : a; } function arcTween(a) { a.endAngle = isNaN(a.endAngle) ? 0 : a.endAngle; a.startAngle = isNaN(a.startAngle) ? 0 : a.startAngle; if (!donut) a.innerRadius = 0; var i = d3.interpolate(this._current, a); this._current = i(0); return function(t) { return arc(i(t)); }; } function tweenPie(b) { b.innerRadius = 0; var i = d3.interpolate({startAngle: 0, endAngle: 0}, b); return function(t) { return arc(i(t)); }; } }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.values = function(_) { nv.log("pie.values() is no longer supported."); return chart; }; chart.x = function(_) { if (!arguments.length) return getX; getX = _; return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = d3.functor(_); return chart; }; chart.description = function(_) { if (!arguments.length) return getDescription; getDescription = _; return chart; }; chart.showLabels = function(_) { if (!arguments.length) return showLabels; showLabels = _; return chart; }; chart.labelSunbeamLayout = function(_) { if (!arguments.length) return labelSunbeamLayout; labelSunbeamLayout = _; return chart; }; chart.donutLabelsOutside = function(_) { if (!arguments.length) return donutLabelsOutside; donutLabelsOutside = _; return chart; }; chart.pieLabelsOutside = function(_) { if (!arguments.length) return pieLabelsOutside; pieLabelsOutside = _; return chart; }; chart.labelType = function(_) { if (!arguments.length) return labelType; labelType = _; labelType = labelType || "key"; return chart; }; chart.donut = function(_) { if (!arguments.length) return donut; donut = _; return chart; }; chart.donutRatio = function(_) { if (!arguments.length) return donutRatio; donutRatio = _; return chart; }; chart.startAngle = function(_) { if (!arguments.length) return startAngle; startAngle = _; return chart; }; chart.endAngle = function(_) { if (!arguments.length) return endAngle; endAngle = _; return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.valueFormat = function(_) { if (!arguments.length) return valueFormat; valueFormat = _; return chart; }; chart.labelThreshold = function(_) { if (!arguments.length) return labelThreshold; labelThreshold = _; return chart; }; //============================================================ return chart; } nv.models.pieChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var pie = nv.models.pie() , legend = nv.models.legend() ; var margin = {top: 30, right: 20, bottom: 20, left: 20} , width = null , height = null , showLegend = true , color = nv.utils.defaultColor() , tooltips = true , tooltip = function(key, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + '</p>' } , state = {} , defaultState = null , noData = "No Data Available." , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var tooltipLabel = pie.description()(e.point) || pie.x()(e.point) var left = e.pos[0] + ( (offsetElement && offsetElement.offsetLeft) || 0 ), top = e.pos[1] + ( (offsetElement && offsetElement.offsetTop) || 0), y = pie.valueFormat()(pie.y()(e.point)), content = tooltip(tooltipLabel, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().call(chart); }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-pieChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-pieChart').append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-pieWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend .width( availableWidth ) .key(pie.x()); wrap.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } wrap.select('.nv-legendWrap') .attr('transform', 'translate(0,' + (-margin.top) +')'); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ // Main Chart Component(s) pie .width(availableWidth) .height(availableHeight); var pieWrap = g.select('.nv-pieWrap') .datum([data]); d3.transition(pieWrap).call(pie); //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); pie.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ pie.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.legend = legend; chart.dispatch = dispatch; chart.pie = pie; d3.rebind(chart, pie, 'valueFormat', 'values', 'x', 'y', 'description', 'id', 'showLabels', 'donutLabelsOutside', 'pieLabelsOutside', 'labelType', 'donut', 'donutRatio', 'labelThreshold'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); pie.color(color); return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; //============================================================ return chart; } nv.models.scatter = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , color = nv.utils.defaultColor() // chooses color , id = Math.floor(Math.random() * 100000) //Create semi-unique ID incase user doesn't select one , x = d3.scale.linear() , y = d3.scale.linear() , z = d3.scale.linear() //linear because d3.svg.shape.size is treated as area , getX = function(d) { return d.x } // accessor to get the x value , getY = function(d) { return d.y } // accessor to get the y value , getSize = function(d) { return d.size || 1} // accessor to get the point size , getShape = function(d) { return d.shape || 'circle' } // accessor to get point shape , onlyCircles = true // Set to false to use shapes , forceX = [] // List of numbers to Force into the X scale (ie. 0, or a max / min, etc.) , forceY = [] // List of numbers to Force into the Y scale , forceSize = [] // List of numbers to Force into the Size scale , interactive = true // If true, plots a voronoi overlay for advanced point intersection , pointKey = null , pointActive = function(d) { return !d.notActive } // any points that return false will be filtered out , padData = false // If true, adds half a data points width to front and back, for lining up a line chart with a bar chart , padDataOuter = .1 //outerPadding to imitate ordinal scale outer padding , clipEdge = false // if true, masks points within x and y scale , clipVoronoi = true // if true, masks each point with a circle... can turn off to slightly increase performance , clipRadius = function() { return 25 } // function to get the radius for voronoi point clips , xDomain = null // Override x domain (skips the calculation from data) , yDomain = null // Override y domain , xRange = null // Override x range , yRange = null // Override y range , sizeDomain = null // Override point size domain , sizeRange = null , singlePoint = false , dispatch = d3.dispatch('elementClick', 'elementMouseover', 'elementMouseout') , useVoronoi = true ; //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0, z0 // used to store previous scales , timeoutID , needsUpdate = false // Flag for when the points are visually updating, but the interactive layer is behind, to disable tooltips ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //add series index to each data point for reference data.forEach(function(series, i) { series.values.forEach(function(point) { point.series = i; }); }); //------------------------------------------------------------ // Setup Scales // remap and flatten the data for use in calculating the scales' domains var seriesData = (xDomain && yDomain && sizeDomain) ? [] : // if we know xDomain and yDomain and sizeDomain, no need to calculate.... if Size is constant remember to set sizeDomain to speed up performance d3.merge( data.map(function(d) { return d.values.map(function(d,i) { return { x: getX(d,i), y: getY(d,i), size: getSize(d,i) } }) }) ); x .domain(xDomain || d3.extent(seriesData.map(function(d) { return d.x; }).concat(forceX))) if (padData && data[0]) x.range(xRange || [(availableWidth * padDataOuter + availableWidth) / (2 *data[0].values.length), availableWidth - availableWidth * (1 + padDataOuter) / (2 * data[0].values.length) ]); //x.range([availableWidth * .5 / data[0].values.length, availableWidth * (data[0].values.length - .5) / data[0].values.length ]); else x.range(xRange || [0, availableWidth]); y .domain(yDomain || d3.extent(seriesData.map(function(d) { return d.y }).concat(forceY))) .range(yRange || [availableHeight, 0]); z .domain(sizeDomain || d3.extent(seriesData.map(function(d) { return d.size }).concat(forceSize))) .range(sizeRange || [16, 256]); // If scale's domain don't have a range, slightly adjust to make one... so a chart can show a single data point if (x.domain()[0] === x.domain()[1] || y.domain()[0] === y.domain()[1]) singlePoint = true; if (x.domain()[0] === x.domain()[1]) x.domain()[0] ? x.domain([x.domain()[0] - x.domain()[0] * 0.01, x.domain()[1] + x.domain()[1] * 0.01]) : x.domain([-1,1]); if (y.domain()[0] === y.domain()[1]) y.domain()[0] ? y.domain([y.domain()[0] - y.domain()[0] * 0.01, y.domain()[1] + y.domain()[1] * 0.01]) : y.domain([-1,1]); if ( isNaN(x.domain()[0])) { x.domain([-1,1]); } if ( isNaN(y.domain()[0])) { y.domain([-1,1]); } x0 = x0 || x; y0 = y0 || y; z0 = z0 || z; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-scatter').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-scatter nv-chart-' + id + (singlePoint ? ' nv-single-point' : '')); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-groups'); gEnter.append('g').attr('class', 'nv-point-paths'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ defsEnter.append('clipPath') .attr('id', 'nv-edge-clip-' + id) .append('rect'); wrap.select('#nv-edge-clip-' + id + ' rect') .attr('width', availableWidth) .attr('height', (availableHeight > 0) ? availableHeight : 0); g .attr('clip-path', clipEdge ? 'url(#nv-edge-clip-' + id + ')' : ''); function updateInteractiveLayer() { if (!interactive) return false; var eventElements; var vertices = d3.merge(data.map(function(group, groupIndex) { return group.values .map(function(point, pointIndex) { // *Adding noise to make duplicates very unlikely // *Injecting series and point index for reference /* *Adding a 'jitter' to the points, because there's an issue in d3.geom.voronoi. */ var pX = getX(point,pointIndex); var pY = getY(point,pointIndex); return [x(pX)+ Math.random() * 1e-7, y(pY)+ Math.random() * 1e-7, groupIndex, pointIndex, point]; //temp hack to add noise untill I think of a better way so there are no duplicates }) .filter(function(pointArray, pointIndex) { return pointActive(pointArray[4], pointIndex); // Issue #237.. move filter to after map, so pointIndex is correct! }) }) ); //inject series and point index for reference into voronoi if (useVoronoi === true) { if (clipVoronoi) { var pointClipsEnter = wrap.select('defs').selectAll('.nv-point-clips') .data([id]) .enter(); pointClipsEnter.append('clipPath') .attr('class', 'nv-point-clips') .attr('id', 'nv-points-clip-' + id); var pointClips = wrap.select('#nv-points-clip-' + id).selectAll('circle') .data(vertices); pointClips.enter().append('circle') .attr('r', clipRadius); pointClips.exit().remove(); pointClips .attr('cx', function(d) { return d[0] }) .attr('cy', function(d) { return d[1] }); wrap.select('.nv-point-paths') .attr('clip-path', 'url(#nv-points-clip-' + id + ')'); } if(vertices.length) { // Issue #283 - Adding 2 dummy points to the voronoi b/c voronoi requires min 3 points to work vertices.push([x.range()[0] - 20, y.range()[0] - 20, null, null]); vertices.push([x.range()[1] + 20, y.range()[1] + 20, null, null]); vertices.push([x.range()[0] - 20, y.range()[0] + 20, null, null]); vertices.push([x.range()[1] + 20, y.range()[1] - 20, null, null]); } var bounds = d3.geom.polygon([ [-10,-10], [-10,height + 10], [width + 10,height + 10], [width + 10,-10] ]); var voronoi = d3.geom.voronoi(vertices).map(function(d, i) { return { 'data': bounds.clip(d), 'series': vertices[i][2], 'point': vertices[i][3] } }); var pointPaths = wrap.select('.nv-point-paths').selectAll('path') .data(voronoi); pointPaths.enter().append('path') .attr('class', function(d,i) { return 'nv-path-'+i; }); pointPaths.exit().remove(); pointPaths .attr('d', function(d) { if (d.data.length === 0) return 'M 0 0' else return 'M' + d.data.join('L') + 'Z'; }); var mouseEventCallback = function(d,mDispatch) { if (needsUpdate) return 0; var series = data[d.series]; if (typeof series === 'undefined') return; var point = series.values[d.point]; mDispatch({ point: point, series: series, pos: [x(getX(point, d.point)) + margin.left, y(getY(point, d.point)) + margin.top], seriesIndex: d.series, pointIndex: d.point }); }; pointPaths .on('click', function(d) { mouseEventCallback(d, dispatch.elementClick); }) .on('mouseover', function(d) { mouseEventCallback(d, dispatch.elementMouseover); }) .on('mouseout', function(d, i) { mouseEventCallback(d, dispatch.elementMouseout); }); } else { /* // bring data in form needed for click handlers var dataWithPoints = vertices.map(function(d, i) { return { 'data': d, 'series': vertices[i][2], 'point': vertices[i][3] } }); */ // add event handlers to points instead voronoi paths wrap.select('.nv-groups').selectAll('.nv-group') .selectAll('.nv-point') //.data(dataWithPoints) //.style('pointer-events', 'auto') // recativate events, disabled by css .on('click', function(d,i) { //nv.log('test', d, i); if (needsUpdate || !data[d.series]) return 0; //check if this is a dummy point var series = data[d.series], point = series.values[i]; dispatch.elementClick({ point: point, series: series, pos: [x(getX(point, i)) + margin.left, y(getY(point, i)) + margin.top], seriesIndex: d.series, pointIndex: i }); }) .on('mouseover', function(d,i) { if (needsUpdate || !data[d.series]) return 0; //check if this is a dummy point var series = data[d.series], point = series.values[i]; dispatch.elementMouseover({ point: point, series: series, pos: [x(getX(point, i)) + margin.left, y(getY(point, i)) + margin.top], seriesIndex: d.series, pointIndex: i }); }) .on('mouseout', function(d,i) { if (needsUpdate || !data[d.series]) return 0; //check if this is a dummy point var series = data[d.series], point = series.values[i]; dispatch.elementMouseout({ point: point, series: series, seriesIndex: d.series, pointIndex: i }); }); } needsUpdate = false; } needsUpdate = true; var groups = wrap.select('.nv-groups').selectAll('.nv-group') .data(function(d) { return d }, function(d) { return d.key }); groups.enter().append('g') .style('stroke-opacity', 1e-6) .style('fill-opacity', 1e-6); groups.exit() .remove(); groups .attr('class', function(d,i) { return 'nv-group nv-series-' + i }) .classed('hover', function(d) { return d.hover }); groups .transition() .style('fill', function(d,i) { return color(d, i) }) .style('stroke', function(d,i) { return color(d, i) }) .style('stroke-opacity', 1) .style('fill-opacity', .5); if (onlyCircles) { var points = groups.selectAll('circle.nv-point') .data(function(d) { return d.values }, pointKey); points.enter().append('circle') .style('fill', function (d,i) { return d.color }) .style('stroke', function (d,i) { return d.color }) .attr('cx', function(d,i) { return nv.utils.NaNtoZero(x0(getX(d,i))) }) .attr('cy', function(d,i) { return nv.utils.NaNtoZero(y0(getY(d,i))) }) .attr('r', function(d,i) { return Math.sqrt(z(getSize(d,i))/Math.PI) }); points.exit().remove(); groups.exit().selectAll('path.nv-point').transition() .attr('cx', function(d,i) { return nv.utils.NaNtoZero(x(getX(d,i))) }) .attr('cy', function(d,i) { return nv.utils.NaNtoZero(y(getY(d,i))) }) .remove(); points.each(function(d,i) { d3.select(this) .classed('nv-point', true) .classed('nv-point-' + i, true) .classed('hover',false) ; }); points.transition() .attr('cx', function(d,i) { return nv.utils.NaNtoZero(x(getX(d,i))) }) .attr('cy', function(d,i) { return nv.utils.NaNtoZero(y(getY(d,i))) }) .attr('r', function(d,i) { return Math.sqrt(z(getSize(d,i))/Math.PI) }); } else { var points = groups.selectAll('path.nv-point') .data(function(d) { return d.values }); points.enter().append('path') .style('fill', function (d,i) { return d.color }) .style('stroke', function (d,i) { return d.color }) .attr('transform', function(d,i) { return 'translate(' + x0(getX(d,i)) + ',' + y0(getY(d,i)) + ')' }) .attr('d', d3.svg.symbol() .type(getShape) .size(function(d,i) { return z(getSize(d,i)) }) ); points.exit().remove(); groups.exit().selectAll('path.nv-point') .transition() .attr('transform', function(d,i) { return 'translate(' + x(getX(d,i)) + ',' + y(getY(d,i)) + ')' }) .remove(); points.each(function(d,i) { d3.select(this) .classed('nv-point', true) .classed('nv-point-' + i, true) .classed('hover',false) ; }); points.transition() .attr('transform', function(d,i) { //nv.log(d,i,getX(d,i), x(getX(d,i))); return 'translate(' + x(getX(d,i)) + ',' + y(getY(d,i)) + ')' }) .attr('d', d3.svg.symbol() .type(getShape) .size(function(d,i) { return z(getSize(d,i)) }) ); } // Delay updating the invisible interactive layer for smoother animation clearTimeout(timeoutID); // stop repeat calls to updateInteractiveLayer timeoutID = setTimeout(updateInteractiveLayer, 300); //updateInteractiveLayer(); //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); z0 = z.copy(); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ chart.clearHighlights = function() { //Remove the 'hover' class from all highlighted points. d3.selectAll(".nv-chart-" + id + " .nv-point.hover").classed("hover",false); }; chart.highlightPoint = function(seriesIndex,pointIndex,isHoverOver) { d3.select(".nv-chart-" + id + " .nv-series-" + seriesIndex + " .nv-point-" + pointIndex) .classed("hover",isHoverOver); }; dispatch.on('elementMouseover.point', function(d) { if (interactive) chart.highlightPoint(d.seriesIndex,d.pointIndex,true); }); dispatch.on('elementMouseout.point', function(d) { if (interactive) chart.highlightPoint(d.seriesIndex,d.pointIndex,false); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.dispatch = dispatch; chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = d3.functor(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = d3.functor(_); return chart; }; chart.size = function(_) { if (!arguments.length) return getSize; getSize = d3.functor(_); return chart; }; chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.zScale = function(_) { if (!arguments.length) return z; z = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.sizeDomain = function(_) { if (!arguments.length) return sizeDomain; sizeDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.sizeRange = function(_) { if (!arguments.length) return sizeRange; sizeRange = _; return chart; }; chart.forceX = function(_) { if (!arguments.length) return forceX; forceX = _; return chart; }; chart.forceY = function(_) { if (!arguments.length) return forceY; forceY = _; return chart; }; chart.forceSize = function(_) { if (!arguments.length) return forceSize; forceSize = _; return chart; }; chart.interactive = function(_) { if (!arguments.length) return interactive; interactive = _; return chart; }; chart.pointKey = function(_) { if (!arguments.length) return pointKey; pointKey = _; return chart; }; chart.pointActive = function(_) { if (!arguments.length) return pointActive; pointActive = _; return chart; }; chart.padData = function(_) { if (!arguments.length) return padData; padData = _; return chart; }; chart.padDataOuter = function(_) { if (!arguments.length) return padDataOuter; padDataOuter = _; return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.clipVoronoi= function(_) { if (!arguments.length) return clipVoronoi; clipVoronoi = _; return chart; }; chart.useVoronoi= function(_) { if (!arguments.length) return useVoronoi; useVoronoi = _; if (useVoronoi === false) { clipVoronoi = false; } return chart; }; chart.clipRadius = function(_) { if (!arguments.length) return clipRadius; clipRadius = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.shape = function(_) { if (!arguments.length) return getShape; getShape = _; return chart; }; chart.onlyCircles = function(_) { if (!arguments.length) return onlyCircles; onlyCircles = _; return chart; }; chart.id = function(_) { if (!arguments.length) return id; id = _; return chart; }; chart.singlePoint = function(_) { if (!arguments.length) return singlePoint; singlePoint = _; return chart; }; //============================================================ return chart; } nv.models.scatterChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var scatter = nv.models.scatter() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , controls = nv.models.legend() , distX = nv.models.distribution() , distY = nv.models.distribution() ; var margin = {top: 30, right: 20, bottom: 50, left: 75} , width = null , height = null , color = nv.utils.defaultColor() , x = d3.fisheye ? d3.fisheye.scale(d3.scale.linear).distortion(0) : scatter.xScale() , y = d3.fisheye ? d3.fisheye.scale(d3.scale.linear).distortion(0) : scatter.yScale() , xPadding = 0 , yPadding = 0 , showDistX = false , showDistY = false , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , showControls = !!d3.fisheye , fisheye = 0 , pauseFisheye = false , tooltips = true , tooltipX = function(key, x, y) { return '<strong>' + x + '</strong>' } , tooltipY = function(key, x, y) { return '<strong>' + y + '</strong>' } , tooltip = null , state = {} , defaultState = null , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , noData = "No Data Available." , transitionDuration = 250 ; scatter .xScale(x) .yScale(y) ; xAxis .orient('bottom') .tickPadding(10) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') .tickPadding(10) ; distX .axis('x') ; distY .axis('y') ; controls.updateState(false); //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0; var showTooltip = function(e, offsetElement) { //TODO: make tooltip style an option between single or dual on axes (maybe on all charts with axes?) var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), leftX = e.pos[0] + ( offsetElement.offsetLeft || 0 ), topX = y.range()[0] + margin.top + ( offsetElement.offsetTop || 0), leftY = x.range()[0] + margin.left + ( offsetElement.offsetLeft || 0 ), topY = e.pos[1] + ( offsetElement.offsetTop || 0), xVal = xAxis.tickFormat()(scatter.x()(e.point, e.pointIndex)), yVal = yAxis.tickFormat()(scatter.y()(e.point, e.pointIndex)); if( tooltipX != null ) nv.tooltip.show([leftX, topX], tooltipX(e.series.key, xVal, yVal, e, chart), 'n', 1, offsetElement, 'x-nvtooltip'); if( tooltipY != null ) nv.tooltip.show([leftY, topY], tooltipY(e.series.key, xVal, yVal, e, chart), 'e', 1, offsetElement, 'y-nvtooltip'); if( tooltip != null ) nv.tooltip.show([left, top], tooltip(e.series.key, xVal, yVal, e, chart), e.value < 0 ? 'n' : 's', null, offsetElement); }; var controlsData = [ { key: 'Magnify', disabled: true } ]; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart); }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display noData message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x0 = x0 || x; y0 = y0 || y; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-scatterChart').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-scatterChart nv-chart-' + scatter.id()); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); // background for pointer events gEnter.append('rect').attr('class', 'nvd3 nv-background'); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-scatterWrap'); gEnter.append('g').attr('class', 'nv-distWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { var legendWidth = (showControls) ? availableWidth / 2 : availableWidth; legend.width(legendWidth); wrap.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } wrap.select('.nv-legendWrap') .attr('transform', 'translate(' + (availableWidth - legendWidth) + ',' + (-margin.top) +')'); } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { controls.width(180).color(['#444']); g.select('.nv-controlsWrap') .datum(controlsData) .attr('transform', 'translate(0,' + (-margin.top) +')') .call(controls); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ // Main Chart Component(s) scatter .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); if (xPadding !== 0) scatter.xDomain(null); if (yPadding !== 0) scatter.yDomain(null); wrap.select('.nv-scatterWrap') .datum(data.filter(function(d) { return !d.disabled })) .call(scatter); //Adjust for x and y padding if (xPadding !== 0) { var xRange = x.domain()[1] - x.domain()[0]; scatter.xDomain([x.domain()[0] - (xPadding * xRange), x.domain()[1] + (xPadding * xRange)]); } if (yPadding !== 0) { var yRange = y.domain()[1] - y.domain()[0]; scatter.yDomain([y.domain()[0] - (yPadding * yRange), y.domain()[1] + (yPadding * yRange)]); } //Only need to update the scatter again if x/yPadding changed the domain. if (yPadding !== 0 || xPadding !== 0) { wrap.select('.nv-scatterWrap') .datum(data.filter(function(d) { return !d.disabled })) .call(scatter); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( xAxis.ticks() && xAxis.ticks().length ? xAxis.ticks() : availableWidth / 100 ) .tickSize( -availableHeight , 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')') .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks( yAxis.ticks() && yAxis.ticks().length ? yAxis.ticks() : availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis') .call(yAxis); } if (showDistX) { distX .getData(scatter.x()) .scale(x) .width(availableWidth) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); gEnter.select('.nv-distWrap').append('g') .attr('class', 'nv-distributionX'); g.select('.nv-distributionX') .attr('transform', 'translate(0,' + y.range()[0] + ')') .datum(data.filter(function(d) { return !d.disabled })) .call(distX); } if (showDistY) { distY .getData(scatter.y()) .scale(y) .width(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); gEnter.select('.nv-distWrap').append('g') .attr('class', 'nv-distributionY'); g.select('.nv-distributionY') .attr('transform', 'translate(' + (rightAlignYAxis ? availableWidth : -distY.size() ) + ',0)') .datum(data.filter(function(d) { return !d.disabled })) .call(distY); } //------------------------------------------------------------ if (d3.fisheye) { g.select('.nv-background') .attr('width', availableWidth) .attr('height', availableHeight); g.select('.nv-background').on('mousemove', updateFisheye); g.select('.nv-background').on('click', function() { pauseFisheye = !pauseFisheye;}); scatter.dispatch.on('elementClick.freezeFisheye', function() { pauseFisheye = !pauseFisheye; }); } function updateFisheye() { if (pauseFisheye) { g.select('.nv-point-paths').style('pointer-events', 'all'); return false; } g.select('.nv-point-paths').style('pointer-events', 'none' ); var mouse = d3.mouse(this); x.distortion(fisheye).focus(mouse[0]); y.distortion(fisheye).focus(mouse[1]); g.select('.nv-scatterWrap') .call(scatter); if (showXAxis) g.select('.nv-x.nv-axis').call(xAxis); if (showYAxis) g.select('.nv-y.nv-axis').call(yAxis); g.select('.nv-distributionX') .datum(data.filter(function(d) { return !d.disabled })) .call(distX); g.select('.nv-distributionY') .datum(data.filter(function(d) { return !d.disabled })) .call(distY); } //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ controls.dispatch.on('legendClick', function(d,i) { d.disabled = !d.disabled; fisheye = d.disabled ? 0 : 2.5; g.select('.nv-background') .style('pointer-events', d.disabled ? 'none' : 'all'); g.select('.nv-point-paths').style('pointer-events', d.disabled ? 'all' : 'none' ); if (d.disabled) { x.distortion(fisheye).focus(0); y.distortion(fisheye).focus(0); g.select('.nv-scatterWrap').call(scatter); g.select('.nv-x.nv-axis').call(xAxis); g.select('.nv-y.nv-axis').call(yAxis); } else { pauseFisheye = false; } chart.update(); }); legend.dispatch.on('stateChange', function(newState) { state.disabled = newState.disabled; dispatch.stateChange(state); chart.update(); }); scatter.dispatch.on('elementMouseover.tooltip', function(e) { d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-distx-' + e.pointIndex) .attr('y1', function(d,i) { return e.pos[1] - availableHeight;}); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-disty-' + e.pointIndex) .attr('x2', e.pos[0] + distX.size()); e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ scatter.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-distx-' + e.pointIndex) .attr('y1', 0); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-disty-' + e.pointIndex) .attr('x2', distY.size()); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.scatter = scatter; chart.legend = legend; chart.controls = controls; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.distX = distX; chart.distY = distY; d3.rebind(chart, scatter, 'id', 'interactive', 'pointActive', 'x', 'y', 'shape', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'sizeDomain', 'sizeRange', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'clipRadius', 'useVoronoi'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); distX.color(color); distY.color(color); return chart; }; chart.showDistX = function(_) { if (!arguments.length) return showDistX; showDistX = _; return chart; }; chart.showDistY = function(_) { if (!arguments.length) return showDistY; showDistY = _; return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.fisheye = function(_) { if (!arguments.length) return fisheye; fisheye = _; return chart; }; chart.xPadding = function(_) { if (!arguments.length) return xPadding; xPadding = _; return chart; }; chart.yPadding = function(_) { if (!arguments.length) return yPadding; yPadding = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.tooltipXContent = function(_) { if (!arguments.length) return tooltipX; tooltipX = _; return chart; }; chart.tooltipYContent = function(_) { if (!arguments.length) return tooltipY; tooltipY = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.scatterPlusLineChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var scatter = nv.models.scatter() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , controls = nv.models.legend() , distX = nv.models.distribution() , distY = nv.models.distribution() ; var margin = {top: 30, right: 20, bottom: 50, left: 75} , width = null , height = null , color = nv.utils.defaultColor() , x = d3.fisheye ? d3.fisheye.scale(d3.scale.linear).distortion(0) : scatter.xScale() , y = d3.fisheye ? d3.fisheye.scale(d3.scale.linear).distortion(0) : scatter.yScale() , showDistX = false , showDistY = false , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , showControls = !!d3.fisheye , fisheye = 0 , pauseFisheye = false , tooltips = true , tooltipX = function(key, x, y) { return '<strong>' + x + '</strong>' } , tooltipY = function(key, x, y) { return '<strong>' + y + '</strong>' } , tooltip = function(key, x, y, date) { return '<h3>' + key + '</h3>' + '<p>' + date + '</p>' } , state = {} , defaultState = null , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , noData = "No Data Available." , transitionDuration = 250 ; scatter .xScale(x) .yScale(y) ; xAxis .orient('bottom') .tickPadding(10) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') .tickPadding(10) ; distX .axis('x') ; distY .axis('y') ; controls.updateState(false); //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var x0, y0; var showTooltip = function(e, offsetElement) { //TODO: make tooltip style an option between single or dual on axes (maybe on all charts with axes?) var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), leftX = e.pos[0] + ( offsetElement.offsetLeft || 0 ), topX = y.range()[0] + margin.top + ( offsetElement.offsetTop || 0), leftY = x.range()[0] + margin.left + ( offsetElement.offsetLeft || 0 ), topY = e.pos[1] + ( offsetElement.offsetTop || 0), xVal = xAxis.tickFormat()(scatter.x()(e.point, e.pointIndex)), yVal = yAxis.tickFormat()(scatter.y()(e.point, e.pointIndex)); if( tooltipX != null ) nv.tooltip.show([leftX, topX], tooltipX(e.series.key, xVal, yVal, e, chart), 'n', 1, offsetElement, 'x-nvtooltip'); if( tooltipY != null ) nv.tooltip.show([leftY, topY], tooltipY(e.series.key, xVal, yVal, e, chart), 'e', 1, offsetElement, 'y-nvtooltip'); if( tooltip != null ) nv.tooltip.show([left, top], tooltip(e.series.key, xVal, yVal, e.point.tooltip, e, chart), e.value < 0 ? 'n' : 's', null, offsetElement); }; var controlsData = [ { key: 'Magnify', disabled: true } ]; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart); }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display noData message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = scatter.xScale(); y = scatter.yScale(); x0 = x0 || x; y0 = y0 || y; //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-scatterChart').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-scatterChart nv-chart-' + scatter.id()); var gEnter = wrapEnter.append('g'); var g = wrap.select('g') // background for pointer events gEnter.append('rect').attr('class', 'nvd3 nv-background').style("pointer-events","none"); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-scatterWrap'); gEnter.append('g').attr('class', 'nv-regressionLinesWrap'); gEnter.append('g').attr('class', 'nv-distWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ //------------------------------------------------------------ // Legend if (showLegend) { legend.width( availableWidth / 2 ); wrap.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } wrap.select('.nv-legendWrap') .attr('transform', 'translate(' + (availableWidth / 2) + ',' + (-margin.top) +')'); } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { controls.width(180).color(['#444']); g.select('.nv-controlsWrap') .datum(controlsData) .attr('transform', 'translate(0,' + (-margin.top) +')') .call(controls); } //------------------------------------------------------------ //------------------------------------------------------------ // Main Chart Component(s) scatter .width(availableWidth) .height(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })) wrap.select('.nv-scatterWrap') .datum(data.filter(function(d) { return !d.disabled })) .call(scatter); wrap.select('.nv-regressionLinesWrap') .attr('clip-path', 'url(#nv-edge-clip-' + scatter.id() + ')'); var regWrap = wrap.select('.nv-regressionLinesWrap').selectAll('.nv-regLines') .data(function(d) {return d }); regWrap.enter().append('g').attr('class', 'nv-regLines'); var regLine = regWrap.selectAll('.nv-regLine').data(function(d){return [d]}); var regLineEnter = regLine.enter() .append('line').attr('class', 'nv-regLine') .style('stroke-opacity', 0); regLine .transition() .attr('x1', x.range()[0]) .attr('x2', x.range()[1]) .attr('y1', function(d,i) {return y(x.domain()[0] * d.slope + d.intercept) }) .attr('y2', function(d,i) { return y(x.domain()[1] * d.slope + d.intercept) }) .style('stroke', function(d,i,j) { return color(d,j) }) .style('stroke-opacity', function(d,i) { return (d.disabled || typeof d.slope === 'undefined' || typeof d.intercept === 'undefined') ? 0 : 1 }); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( xAxis.ticks() ? xAxis.ticks() : availableWidth / 100 ) .tickSize( -availableHeight , 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + y.range()[0] + ')') .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks( yAxis.ticks() ? yAxis.ticks() : availableHeight / 36 ) .tickSize( -availableWidth, 0); g.select('.nv-y.nv-axis') .call(yAxis); } if (showDistX) { distX .getData(scatter.x()) .scale(x) .width(availableWidth) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); gEnter.select('.nv-distWrap').append('g') .attr('class', 'nv-distributionX'); g.select('.nv-distributionX') .attr('transform', 'translate(0,' + y.range()[0] + ')') .datum(data.filter(function(d) { return !d.disabled })) .call(distX); } if (showDistY) { distY .getData(scatter.y()) .scale(y) .width(availableHeight) .color(data.map(function(d,i) { return d.color || color(d, i); }).filter(function(d,i) { return !data[i].disabled })); gEnter.select('.nv-distWrap').append('g') .attr('class', 'nv-distributionY'); g.select('.nv-distributionY') .attr('transform', 'translate(' + (rightAlignYAxis ? availableWidth : -distY.size() ) + ',0)') .datum(data.filter(function(d) { return !d.disabled })) .call(distY); } //------------------------------------------------------------ if (d3.fisheye) { g.select('.nv-background') .attr('width', availableWidth) .attr('height', availableHeight) ; g.select('.nv-background').on('mousemove', updateFisheye); g.select('.nv-background').on('click', function() { pauseFisheye = !pauseFisheye;}); scatter.dispatch.on('elementClick.freezeFisheye', function() { pauseFisheye = !pauseFisheye; }); } function updateFisheye() { if (pauseFisheye) { g.select('.nv-point-paths').style('pointer-events', 'all'); return false; } g.select('.nv-point-paths').style('pointer-events', 'none' ); var mouse = d3.mouse(this); x.distortion(fisheye).focus(mouse[0]); y.distortion(fisheye).focus(mouse[1]); g.select('.nv-scatterWrap') .datum(data.filter(function(d) { return !d.disabled })) .call(scatter); if (showXAxis) g.select('.nv-x.nv-axis').call(xAxis); if (showYAxis) g.select('.nv-y.nv-axis').call(yAxis); g.select('.nv-distributionX') .datum(data.filter(function(d) { return !d.disabled })) .call(distX); g.select('.nv-distributionY') .datum(data.filter(function(d) { return !d.disabled })) .call(distY); } //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ controls.dispatch.on('legendClick', function(d,i) { d.disabled = !d.disabled; fisheye = d.disabled ? 0 : 2.5; g.select('.nv-background') .style('pointer-events', d.disabled ? 'none' : 'all'); g.select('.nv-point-paths').style('pointer-events', d.disabled ? 'all' : 'none' ); if (d.disabled) { x.distortion(fisheye).focus(0); y.distortion(fisheye).focus(0); g.select('.nv-scatterWrap').call(scatter); g.select('.nv-x.nv-axis').call(xAxis); g.select('.nv-y.nv-axis').call(yAxis); } else { pauseFisheye = false; } chart.update(); }); legend.dispatch.on('stateChange', function(newState) { state = newState; dispatch.stateChange(state); chart.update(); }); scatter.dispatch.on('elementMouseover.tooltip', function(e) { d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-distx-' + e.pointIndex) .attr('y1', e.pos[1] - availableHeight); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-disty-' + e.pointIndex) .attr('x2', e.pos[0] + distX.size()); e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top]; dispatch.tooltipShow(e); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined') { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } chart.update(); }); //============================================================ //store old scales for use in transitions on update x0 = x.copy(); y0 = y.copy(); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ scatter.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-distx-' + e.pointIndex) .attr('y1', 0); d3.select('.nv-chart-' + scatter.id() + ' .nv-series-' + e.seriesIndex + ' .nv-disty-' + e.pointIndex) .attr('x2', distY.size()); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.scatter = scatter; chart.legend = legend; chart.controls = controls; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.distX = distX; chart.distY = distY; d3.rebind(chart, scatter, 'id', 'interactive', 'pointActive', 'x', 'y', 'shape', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'sizeDomain', 'sizeRange', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'clipRadius', 'useVoronoi'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); distX.color(color); distY.color(color); return chart; }; chart.showDistX = function(_) { if (!arguments.length) return showDistX; showDistX = _; return chart; }; chart.showDistY = function(_) { if (!arguments.length) return showDistY; showDistY = _; return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.fisheye = function(_) { if (!arguments.length) return fisheye; fisheye = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.tooltipXContent = function(_) { if (!arguments.length) return tooltipX; tooltipX = _; return chart; }; chart.tooltipYContent = function(_) { if (!arguments.length) return tooltipY; tooltipY = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; //============================================================ return chart; } nv.models.sparkline = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 2, right: 0, bottom: 2, left: 0} , width = 400 , height = 32 , animate = true , x = d3.scale.linear() , y = d3.scale.linear() , getX = function(d) { return d.x } , getY = function(d) { return d.y } , color = nv.utils.getColor(['#000']) , xDomain , yDomain , xRange , yRange ; //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //------------------------------------------------------------ // Setup Scales x .domain(xDomain || d3.extent(data, getX )) .range(xRange || [0, availableWidth]); y .domain(yDomain || d3.extent(data, getY )) .range(yRange || [availableHeight, 0]); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-sparkline').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-sparkline'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')') //------------------------------------------------------------ var paths = wrap.selectAll('path') .data(function(d) { return [d] }); paths.enter().append('path'); paths.exit().remove(); paths .style('stroke', function(d,i) { return d.color || color(d, i) }) .attr('d', d3.svg.line() .x(function(d,i) { return x(getX(d,i)) }) .y(function(d,i) { return y(getY(d,i)) }) ); // TODO: Add CURRENT data point (Need Min, Mac, Current / Most recent) var points = wrap.selectAll('circle.nv-point') .data(function(data) { var yValues = data.map(function(d, i) { return getY(d,i); }); function pointIndex(index) { if (index != -1) { var result = data[index]; result.pointIndex = index; return result; } else { return null; } } var maxPoint = pointIndex(yValues.lastIndexOf(y.domain()[1])), minPoint = pointIndex(yValues.indexOf(y.domain()[0])), currentPoint = pointIndex(yValues.length - 1); return [minPoint, maxPoint, currentPoint].filter(function (d) {return d != null;}); }); points.enter().append('circle'); points.exit().remove(); points .attr('cx', function(d,i) { return x(getX(d,d.pointIndex)) }) .attr('cy', function(d,i) { return y(getY(d,d.pointIndex)) }) .attr('r', 2) .attr('class', function(d,i) { return getX(d, d.pointIndex) == x.domain()[1] ? 'nv-point nv-currentValue' : getY(d, d.pointIndex) == y.domain()[0] ? 'nv-point nv-minValue' : 'nv-point nv-maxValue' }); }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.x = function(_) { if (!arguments.length) return getX; getX = d3.functor(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = d3.functor(_); return chart; }; chart.xScale = function(_) { if (!arguments.length) return x; x = _; return chart; }; chart.yScale = function(_) { if (!arguments.length) return y; y = _; return chart; }; chart.xDomain = function(_) { if (!arguments.length) return xDomain; xDomain = _; return chart; }; chart.yDomain = function(_) { if (!arguments.length) return yDomain; yDomain = _; return chart; }; chart.xRange = function(_) { if (!arguments.length) return xRange; xRange = _; return chart; }; chart.yRange = function(_) { if (!arguments.length) return yRange; yRange = _; return chart; }; chart.animate = function(_) { if (!arguments.length) return animate; animate = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; //============================================================ return chart; } nv.models.sparklinePlus = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var sparkline = nv.models.sparkline(); var margin = {top: 15, right: 100, bottom: 10, left: 50} , width = null , height = null , x , y , index = [] , paused = false , xTickFormat = d3.format(',r') , yTickFormat = d3.format(',.2f') , showValue = true , alignValue = true , rightAlignValue = false , noData = "No Data Available." ; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this); var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { chart(selection) }; chart.container = this; //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } var currentValue = sparkline.y()(data[data.length-1], data.length-1); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = sparkline.xScale(); y = sparkline.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-sparklineplus').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-sparklineplus'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-sparklineWrap'); gEnter.append('g').attr('class', 'nv-valueWrap'); gEnter.append('g').attr('class', 'nv-hoverArea'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ //------------------------------------------------------------ // Main Chart Component(s) var sparklineWrap = g.select('.nv-sparklineWrap'); sparkline .width(availableWidth) .height(availableHeight); sparklineWrap .call(sparkline); //------------------------------------------------------------ var valueWrap = g.select('.nv-valueWrap'); var value = valueWrap.selectAll('.nv-currentValue') .data([currentValue]); value.enter().append('text').attr('class', 'nv-currentValue') .attr('dx', rightAlignValue ? -8 : 8) .attr('dy', '.9em') .style('text-anchor', rightAlignValue ? 'end' : 'start'); value .attr('x', availableWidth + (rightAlignValue ? margin.right : 0)) .attr('y', alignValue ? function(d) { return y(d) } : 0) .style('fill', sparkline.color()(data[data.length-1], data.length-1)) .text(yTickFormat(currentValue)); gEnter.select('.nv-hoverArea').append('rect') .on('mousemove', sparklineHover) .on('click', function() { paused = !paused }) .on('mouseout', function() { index = []; updateValueLine(); }); //.on('mouseout', function() { index = null; updateValueLine(); }); g.select('.nv-hoverArea rect') .attr('transform', function(d) { return 'translate(' + -margin.left + ',' + -margin.top + ')' }) .attr('width', availableWidth + margin.left + margin.right) .attr('height', availableHeight + margin.top); function updateValueLine() { //index is currently global (within the chart), may or may not keep it that way if (paused) return; var hoverValue = g.selectAll('.nv-hoverValue').data(index) var hoverEnter = hoverValue.enter() .append('g').attr('class', 'nv-hoverValue') .style('stroke-opacity', 0) .style('fill-opacity', 0); hoverValue.exit() .transition().duration(250) .style('stroke-opacity', 0) .style('fill-opacity', 0) .remove(); hoverValue .attr('transform', function(d) { return 'translate(' + x(sparkline.x()(data[d],d)) + ',0)' }) .transition().duration(250) .style('stroke-opacity', 1) .style('fill-opacity', 1); if (!index.length) return; hoverEnter.append('line') .attr('x1', 0) .attr('y1', -margin.top) .attr('x2', 0) .attr('y2', availableHeight); hoverEnter.append('text').attr('class', 'nv-xValue') .attr('x', -6) .attr('y', -margin.top) .attr('text-anchor', 'end') .attr('dy', '.9em') g.select('.nv-hoverValue .nv-xValue') .text(xTickFormat(sparkline.x()(data[index[0]], index[0]))); hoverEnter.append('text').attr('class', 'nv-yValue') .attr('x', 6) .attr('y', -margin.top) .attr('text-anchor', 'start') .attr('dy', '.9em') g.select('.nv-hoverValue .nv-yValue') .text(yTickFormat(sparkline.y()(data[index[0]], index[0]))); } function sparklineHover() { if (paused) return; var pos = d3.mouse(this)[0] - margin.left; function getClosestIndex(data, x) { var distance = Math.abs(sparkline.x()(data[0], 0) - x); var closestIndex = 0; for (var i = 0; i < data.length; i++){ if (Math.abs(sparkline.x()(data[i], i) - x) < distance) { distance = Math.abs(sparkline.x()(data[i], i) - x); closestIndex = i; } } return closestIndex; } index = [getClosestIndex(data, Math.round(x.invert(pos)))]; updateValueLine(); } }); return chart; } //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.sparkline = sparkline; d3.rebind(chart, sparkline, 'x', 'y', 'xScale', 'yScale', 'color'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.xTickFormat = function(_) { if (!arguments.length) return xTickFormat; xTickFormat = _; return chart; }; chart.yTickFormat = function(_) { if (!arguments.length) return yTickFormat; yTickFormat = _; return chart; }; chart.showValue = function(_) { if (!arguments.length) return showValue; showValue = _; return chart; }; chart.alignValue = function(_) { if (!arguments.length) return alignValue; alignValue = _; return chart; }; chart.rightAlignValue = function(_) { if (!arguments.length) return rightAlignValue; rightAlignValue = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; //============================================================ return chart; } nv.models.stackedArea = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height = 500 , color = nv.utils.defaultColor() // a function that computes the color , id = Math.floor(Math.random() * 100000) //Create semi-unique ID incase user doesn't selet one , getX = function(d) { return d.x } // accessor to get the x value from a data point , getY = function(d) { return d.y } // accessor to get the y value from a data point , style = 'stack' , offset = 'zero' , order = 'default' , interpolate = 'linear' // controls the line interpolation , clipEdge = false // if true, masks lines within x and y scale , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , scatter = nv.models.scatter() , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'areaClick', 'areaMouseover', 'areaMouseout') ; scatter .size(2.2) // default size .sizeDomain([2.2,2.2]) // all the same size by default ; /************************************ * offset: * 'wiggle' (stream) * 'zero' (stacked) * 'expand' (normalize to 100%) * 'silhouette' (simple centered) * * order: * 'inside-out' (stream) * 'default' (input order) ************************************/ //============================================================ function chart(selection) { selection.each(function(data) { var availableWidth = width - margin.left - margin.right, availableHeight = height - margin.top - margin.bottom, container = d3.select(this); //------------------------------------------------------------ // Setup Scales x = scatter.xScale(); y = scatter.yScale(); //------------------------------------------------------------ var dataRaw = data; // Injecting point index into each point because d3.layout.stack().out does not give index data.forEach(function(aseries, i) { aseries.seriesIndex = i; aseries.values = aseries.values.map(function(d, j) { d.index = j; d.seriesIndex = i; return d; }); }); var dataFiltered = data.filter(function(series) { return !series.disabled; }); data = d3.layout.stack() .order(order) .offset(offset) .values(function(d) { return d.values }) //TODO: make values customizeable in EVERY model in this fashion .x(getX) .y(getY) .out(function(d, y0, y) { var yHeight = (getY(d) === 0) ? 0 : y; d.display = { y: yHeight, y0: y0 }; }) (dataFiltered); //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-stackedarea').data([data]); var wrapEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-stackedarea'); var defsEnter = wrapEnter.append('defs'); var gEnter = wrapEnter.append('g'); var g = wrap.select('g'); gEnter.append('g').attr('class', 'nv-areaWrap'); gEnter.append('g').attr('class', 'nv-scatterWrap'); wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); //------------------------------------------------------------ scatter .width(availableWidth) .height(availableHeight) .x(getX) .y(function(d) { return d.display.y + d.display.y0 }) .forceY([0]) .color(data.map(function(d,i) { return d.color || color(d, d.seriesIndex); })); var scatterWrap = g.select('.nv-scatterWrap') .datum(data); scatterWrap.call(scatter); defsEnter.append('clipPath') .attr('id', 'nv-edge-clip-' + id) .append('rect'); wrap.select('#nv-edge-clip-' + id + ' rect') .attr('width', availableWidth) .attr('height', availableHeight); g .attr('clip-path', clipEdge ? 'url(#nv-edge-clip-' + id + ')' : ''); var area = d3.svg.area() .x(function(d,i) { return x(getX(d,i)) }) .y0(function(d) { return y(d.display.y0) }) .y1(function(d) { return y(d.display.y + d.display.y0) }) .interpolate(interpolate); var zeroArea = d3.svg.area() .x(function(d,i) { return x(getX(d,i)) }) .y0(function(d) { return y(d.display.y0) }) .y1(function(d) { return y(d.display.y0) }); var path = g.select('.nv-areaWrap').selectAll('path.nv-area') .data(function(d) { return d }); path.enter().append('path').attr('class', function(d,i) { return 'nv-area nv-area-' + i }) .attr('d', function(d,i){ return zeroArea(d.values, d.seriesIndex); }) .on('mouseover', function(d,i) { d3.select(this).classed('hover', true); dispatch.areaMouseover({ point: d, series: d.key, pos: [d3.event.pageX, d3.event.pageY], seriesIndex: d.seriesIndex }); }) .on('mouseout', function(d,i) { d3.select(this).classed('hover', false); dispatch.areaMouseout({ point: d, series: d.key, pos: [d3.event.pageX, d3.event.pageY], seriesIndex: d.seriesIndex }); }) .on('click', function(d,i) { d3.select(this).classed('hover', false); dispatch.areaClick({ point: d, series: d.key, pos: [d3.event.pageX, d3.event.pageY], seriesIndex: d.seriesIndex }); }) path.exit().remove(); path .style('fill', function(d,i){ return d.color || color(d, d.seriesIndex) }) .style('stroke', function(d,i){ return d.color || color(d, d.seriesIndex) }); path.transition() .attr('d', function(d,i) { return area(d.values,i) }); //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ scatter.dispatch.on('elementMouseover.area', function(e) { g.select('.nv-chart-' + id + ' .nv-area-' + e.seriesIndex).classed('hover', true); }); scatter.dispatch.on('elementMouseout.area', function(e) { g.select('.nv-chart-' + id + ' .nv-area-' + e.seriesIndex).classed('hover', false); }); //============================================================ //Special offset functions chart.d3_stackedOffset_stackPercent = function(stackData) { var n = stackData.length, //How many series m = stackData[0].length, //how many points per series k = 1 / n, i, j, o, y0 = []; for (j = 0; j < m; ++j) { //Looping through all points for (i = 0, o = 0; i < dataRaw.length; i++) //looping through series' o += getY(dataRaw[i].values[j]) //total value of all points at a certian point in time. if (o) for (i = 0; i < n; i++) stackData[i][j][1] /= o; else for (i = 0; i < n; i++) stackData[i][j][1] = k; } for (j = 0; j < m; ++j) y0[j] = 0; return y0; }; }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ scatter.dispatch.on('elementClick.area', function(e) { dispatch.areaClick(e); }) scatter.dispatch.on('elementMouseover.tooltip', function(e) { e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top], dispatch.tooltipShow(e); }); scatter.dispatch.on('elementMouseout.tooltip', function(e) { dispatch.tooltipHide(e); }); //============================================================ //============================================================ // Global getters and setters //------------------------------------------------------------ chart.dispatch = dispatch; chart.scatter = scatter; d3.rebind(chart, scatter, 'interactive', 'size', 'xScale', 'yScale', 'zScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'sizeDomain', 'forceX', 'forceY', 'forceSize', 'clipVoronoi', 'useVoronoi','clipRadius','highlightPoint','clearHighlights'); chart.options = nv.utils.optionsFunc.bind(chart); chart.x = function(_) { if (!arguments.length) return getX; getX = d3.functor(_); return chart; }; chart.y = function(_) { if (!arguments.length) return getY; getY = d3.functor(_); return chart; } chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.clipEdge = function(_) { if (!arguments.length) return clipEdge; clipEdge = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); return chart; }; chart.offset = function(_) { if (!arguments.length) return offset; offset = _; return chart; }; chart.order = function(_) { if (!arguments.length) return order; order = _; return chart; }; //shortcut for offset + order chart.style = function(_) { if (!arguments.length) return style; style = _; switch (style) { case 'stack': chart.offset('zero'); chart.order('default'); break; case 'stream': chart.offset('wiggle'); chart.order('inside-out'); break; case 'stream-center': chart.offset('silhouette'); chart.order('inside-out'); break; case 'expand': chart.offset('expand'); chart.order('default'); break; case 'stack_percent': chart.offset(chart.d3_stackedOffset_stackPercent); chart.order('default'); break; } return chart; }; chart.interpolate = function(_) { if (!arguments.length) return interpolate; interpolate = _; return chart; }; //============================================================ return chart; } nv.models.stackedAreaChart = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var stacked = nv.models.stackedArea() , xAxis = nv.models.axis() , yAxis = nv.models.axis() , legend = nv.models.legend() , controls = nv.models.legend() , interactiveLayer = nv.interactiveGuideline() ; var margin = {top: 30, right: 25, bottom: 50, left: 60} , width = null , height = null , color = nv.utils.defaultColor() // a function that takes in d, i and returns color , showControls = true , showLegend = true , showXAxis = true , showYAxis = true , rightAlignYAxis = false , useInteractiveGuideline = false , tooltips = true , tooltip = function(key, x, y, e, graph) { return '<h3>' + key + '</h3>' + '<p>' + y + ' on ' + x + '</p>' } , x //can be accessed via chart.xScale() , y //can be accessed via chart.yScale() , yAxisTickFormat = d3.format(',.2f') , state = { style: stacked.style() } , defaultState = null , noData = 'No Data Available.' , dispatch = d3.dispatch('tooltipShow', 'tooltipHide', 'stateChange', 'changeState') , controlWidth = 250 , cData = ['Stacked','Stream','Expanded'] , controlLabels = {} , transitionDuration = 250 ; xAxis .orient('bottom') .tickPadding(7) ; yAxis .orient((rightAlignYAxis) ? 'right' : 'left') ; controls.updateState(false); //============================================================ //============================================================ // Private Variables //------------------------------------------------------------ var showTooltip = function(e, offsetElement) { var left = e.pos[0] + ( offsetElement.offsetLeft || 0 ), top = e.pos[1] + ( offsetElement.offsetTop || 0), x = xAxis.tickFormat()(stacked.x()(e.point, e.pointIndex)), y = yAxis.tickFormat()(stacked.y()(e.point, e.pointIndex)), content = tooltip(e.series.key, x, y, e, chart); nv.tooltip.show([left, top], content, e.value < 0 ? 'n' : 's', null, offsetElement); }; //============================================================ function chart(selection) { selection.each(function(data) { var container = d3.select(this), that = this; var availableWidth = (width || parseInt(container.style('width')) || 960) - margin.left - margin.right, availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; chart.update = function() { container.transition().duration(transitionDuration).call(chart); }; chart.container = this; //set state.disabled state.disabled = data.map(function(d) { return !!d.disabled }); if (!defaultState) { var key; defaultState = {}; for (key in state) { if (state[key] instanceof Array) defaultState[key] = state[key].slice(0); else defaultState[key] = state[key]; } } //------------------------------------------------------------ // Display No Data message if there's nothing to show. if (!data || !data.length || !data.filter(function(d) { return d.values.length }).length) { var noDataText = container.selectAll('.nv-noData').data([noData]); noDataText.enter().append('text') .attr('class', 'nvd3 nv-noData') .attr('dy', '-.7em') .style('text-anchor', 'middle'); noDataText .attr('x', margin.left + availableWidth / 2) .attr('y', margin.top + availableHeight / 2) .text(function(d) { return d }); return chart; } else { container.selectAll('.nv-noData').remove(); } //------------------------------------------------------------ //------------------------------------------------------------ // Setup Scales x = stacked.xScale(); y = stacked.yScale(); //------------------------------------------------------------ //------------------------------------------------------------ // Setup containers and skeleton of chart var wrap = container.selectAll('g.nv-wrap.nv-stackedAreaChart').data([data]); var gEnter = wrap.enter().append('g').attr('class', 'nvd3 nv-wrap nv-stackedAreaChart').append('g'); var g = wrap.select('g'); gEnter.append("rect").style("opacity",0); gEnter.append('g').attr('class', 'nv-x nv-axis'); gEnter.append('g').attr('class', 'nv-y nv-axis'); gEnter.append('g').attr('class', 'nv-stackedWrap'); gEnter.append('g').attr('class', 'nv-legendWrap'); gEnter.append('g').attr('class', 'nv-controlsWrap'); gEnter.append('g').attr('class', 'nv-interactive'); g.select("rect").attr("width",availableWidth).attr("height",availableHeight); //------------------------------------------------------------ // Legend if (showLegend) { var legendWidth = (showControls) ? availableWidth - controlWidth : availableWidth; legend .width(legendWidth); g.select('.nv-legendWrap') .datum(data) .call(legend); if ( margin.top != legend.height()) { margin.top = legend.height(); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-legendWrap') .attr('transform', 'translate(' + (availableWidth-legendWidth) + ',' + (-margin.top) +')'); } //------------------------------------------------------------ //------------------------------------------------------------ // Controls if (showControls) { var controlsData = [ { key: controlLabels.stacked || 'Stacked', metaKey: 'Stacked', disabled: stacked.style() != 'stack', style: 'stack' }, { key: controlLabels.stream || 'Stream', metaKey: 'Stream', disabled: stacked.style() != 'stream', style: 'stream' }, { key: controlLabels.expanded || 'Expanded', metaKey: 'Expanded', disabled: stacked.style() != 'expand', style: 'expand' }, { key: controlLabels.stack_percent || 'Stack %', metaKey: 'Stack_Percent', disabled: stacked.style() != 'stack_percent', style: 'stack_percent' } ]; controlWidth = (cData.length/3) * 260; controlsData = controlsData.filter(function(d) { return cData.indexOf(d.metaKey) !== -1; }) controls .width( controlWidth ) .color(['#444', '#444', '#444']); g.select('.nv-controlsWrap') .datum(controlsData) .call(controls); if ( margin.top != Math.max(controls.height(), legend.height()) ) { margin.top = Math.max(controls.height(), legend.height()); availableHeight = (height || parseInt(container.style('height')) || 400) - margin.top - margin.bottom; } g.select('.nv-controlsWrap') .attr('transform', 'translate(0,' + (-margin.top) +')'); } //------------------------------------------------------------ wrap.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')'); if (rightAlignYAxis) { g.select(".nv-y.nv-axis") .attr("transform", "translate(" + availableWidth + ",0)"); } //------------------------------------------------------------ // Main Chart Component(s) //------------------------------------------------------------ //Set up interactive layer if (useInteractiveGuideline) { interactiveLayer .width(availableWidth) .height(availableHeight) .margin({left: margin.left, top: margin.top}) .svgContainer(container) .xScale(x); wrap.select(".nv-interactive").call(interactiveLayer); } stacked .width(availableWidth) .height(availableHeight) var stackedWrap = g.select('.nv-stackedWrap') .datum(data); stackedWrap.transition().call(stacked); //------------------------------------------------------------ //------------------------------------------------------------ // Setup Axes if (showXAxis) { xAxis .scale(x) .ticks( availableWidth / 100 ) .tickSize( -availableHeight, 0); g.select('.nv-x.nv-axis') .attr('transform', 'translate(0,' + availableHeight + ')'); g.select('.nv-x.nv-axis') .transition().duration(0) .call(xAxis); } if (showYAxis) { yAxis .scale(y) .ticks(stacked.offset() == 'wiggle' ? 0 : availableHeight / 36) .tickSize(-availableWidth, 0) .setTickFormat( (stacked.style() == 'expand' || stacked.style() == 'stack_percent') ? d3.format('%') : yAxisTickFormat); g.select('.nv-y.nv-axis') .transition().duration(0) .call(yAxis); } //------------------------------------------------------------ //============================================================ // Event Handling/Dispatching (in chart's scope) //------------------------------------------------------------ stacked.dispatch.on('areaClick.toggle', function(e) { if (data.filter(function(d) { return !d.disabled }).length === 1) data.forEach(function(d) { d.disabled = false; }); else data.forEach(function(d,i) { d.disabled = (i != e.seriesIndex); }); state.disabled = data.map(function(d) { return !!d.disabled }); dispatch.stateChange(state); chart.update(); }); legend.dispatch.on('stateChange', function(newState) { state.disabled = newState.disabled; dispatch.stateChange(state); chart.update(); }); controls.dispatch.on('legendClick', function(d,i) { if (!d.disabled) return; controlsData = controlsData.map(function(s) { s.disabled = true; return s; }); d.disabled = false; stacked.style(d.style); state.style = stacked.style(); dispatch.stateChange(state); chart.update(); }); interactiveLayer.dispatch.on('elementMousemove', function(e) { stacked.clearHighlights(); var singlePoint, pointIndex, pointXLocation, allData = []; data .filter(function(series, i) { series.seriesIndex = i; return !series.disabled; }) .forEach(function(series,i) { pointIndex = nv.interactiveBisect(series.values, e.pointXValue, chart.x()); stacked.highlightPoint(i, pointIndex, true); var point = series.values[pointIndex]; if (typeof point === 'undefined') return; if (typeof singlePoint === 'undefined') singlePoint = point; if (typeof pointXLocation === 'undefined') pointXLocation = chart.xScale()(chart.x()(point,pointIndex)); //If we are in 'expand' mode, use the stacked percent value instead of raw value. var tooltipValue = (stacked.style() == 'expand') ? point.display.y : chart.y()(point,pointIndex); allData.push({ key: series.key, value: tooltipValue, color: color(series,series.seriesIndex), stackedValue: point.display }); }); allData.reverse(); //Highlight the tooltip entry based on which stack the mouse is closest to. if (allData.length > 2) { var yValue = chart.yScale().invert(e.mouseY); var yDistMax = Infinity, indexToHighlight = null; allData.forEach(function(series,i) { //To handle situation where the stacked area chart is negative, we need to use absolute values //when checking if the mouse Y value is within the stack area. yValue = Math.abs(yValue); var stackedY0 = Math.abs(series.stackedValue.y0); var stackedY = Math.abs(series.stackedValue.y); if ( yValue >= stackedY0 && yValue <= (stackedY + stackedY0)) { indexToHighlight = i; return; } }); if (indexToHighlight != null) allData[indexToHighlight].highlight = true; } var xValue = xAxis.tickFormat()(chart.x()(singlePoint,pointIndex)); //If we are in 'expand' mode, force the format to be a percentage. var valueFormatter = (stacked.style() == 'expand') ? function(d,i) {return d3.format(".1%")(d);} : function(d,i) {return yAxis.tickFormat()(d); }; interactiveLayer.tooltip .position({left: pointXLocation + margin.left, top: e.mouseY + margin.top}) .chartContainer(that.parentNode) .enabled(tooltips) .valueFormatter(valueFormatter) .data( { value: xValue, series: allData } )(); interactiveLayer.renderGuideLine(pointXLocation); }); interactiveLayer.dispatch.on("elementMouseout",function(e) { dispatch.tooltipHide(); stacked.clearHighlights(); }); dispatch.on('tooltipShow', function(e) { if (tooltips) showTooltip(e, that.parentNode); }); // Update chart from a state object passed to event handler dispatch.on('changeState', function(e) { if (typeof e.disabled !== 'undefined' && data.length === e.disabled.length) { data.forEach(function(series,i) { series.disabled = e.disabled[i]; }); state.disabled = e.disabled; } if (typeof e.style !== 'undefined') { stacked.style(e.style); } chart.update(); }); }); return chart; } //============================================================ // Event Handling/Dispatching (out of chart's scope) //------------------------------------------------------------ stacked.dispatch.on('tooltipShow', function(e) { //disable tooltips when value ~= 0 //// TODO: consider removing points from voronoi that have 0 value instead of this hack /* if (!Math.round(stacked.y()(e.point) * 100)) { // 100 will not be good for very small numbers... will have to think about making this valu dynamic, based on data range setTimeout(function() { d3.selectAll('.point.hover').classed('hover', false) }, 0); return false; } */ e.pos = [e.pos[0] + margin.left, e.pos[1] + margin.top], dispatch.tooltipShow(e); }); stacked.dispatch.on('tooltipHide', function(e) { dispatch.tooltipHide(e); }); dispatch.on('tooltipHide', function() { if (tooltips) nv.tooltip.cleanup(); }); //============================================================ //============================================================ // Expose Public Variables //------------------------------------------------------------ // expose chart's sub-components chart.dispatch = dispatch; chart.stacked = stacked; chart.legend = legend; chart.controls = controls; chart.xAxis = xAxis; chart.yAxis = yAxis; chart.interactiveLayer = interactiveLayer; d3.rebind(chart, stacked, 'x', 'y', 'size', 'xScale', 'yScale', 'xDomain', 'yDomain', 'xRange', 'yRange', 'sizeDomain', 'interactive', 'useVoronoi', 'offset', 'order', 'style', 'clipEdge', 'forceX', 'forceY', 'forceSize', 'interpolate'); chart.options = nv.utils.optionsFunc.bind(chart); chart.margin = function(_) { if (!arguments.length) return margin; margin.top = typeof _.top != 'undefined' ? _.top : margin.top; margin.right = typeof _.right != 'undefined' ? _.right : margin.right; margin.bottom = typeof _.bottom != 'undefined' ? _.bottom : margin.bottom; margin.left = typeof _.left != 'undefined' ? _.left : margin.left; return chart; }; chart.width = function(_) { if (!arguments.length) return width; width = _; return chart; }; chart.height = function(_) { if (!arguments.length) return height; height = _; return chart; }; chart.color = function(_) { if (!arguments.length) return color; color = nv.utils.getColor(_); legend.color(color); stacked.color(color); return chart; }; chart.showControls = function(_) { if (!arguments.length) return showControls; showControls = _; return chart; }; chart.showLegend = function(_) { if (!arguments.length) return showLegend; showLegend = _; return chart; }; chart.showXAxis = function(_) { if (!arguments.length) return showXAxis; showXAxis = _; return chart; }; chart.showYAxis = function(_) { if (!arguments.length) return showYAxis; showYAxis = _; return chart; }; chart.rightAlignYAxis = function(_) { if(!arguments.length) return rightAlignYAxis; rightAlignYAxis = _; yAxis.orient( (_) ? 'right' : 'left'); return chart; }; chart.useInteractiveGuideline = function(_) { if(!arguments.length) return useInteractiveGuideline; useInteractiveGuideline = _; if (_ === true) { chart.interactive(false); chart.useVoronoi(false); } return chart; }; chart.tooltip = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.tooltips = function(_) { if (!arguments.length) return tooltips; tooltips = _; return chart; }; chart.tooltipContent = function(_) { if (!arguments.length) return tooltip; tooltip = _; return chart; }; chart.state = function(_) { if (!arguments.length) return state; state = _; return chart; }; chart.defaultState = function(_) { if (!arguments.length) return defaultState; defaultState = _; return chart; }; chart.noData = function(_) { if (!arguments.length) return noData; noData = _; return chart; }; chart.transitionDuration = function(_) { if (!arguments.length) return transitionDuration; transitionDuration = _; return chart; }; chart.controlsData = function(_) { if (!arguments.length) return cData; cData = _; return chart; }; chart.controlLabels = function(_) { if (!arguments.length) return controlLabels; if (typeof _ !== 'object') return controlLabels; controlLabels = _; return chart; }; yAxis.setTickFormat = yAxis.tickFormat; yAxis.tickFormat = function(_) { if (!arguments.length) return yAxisTickFormat; yAxisTickFormat = _; return yAxis; }; //============================================================ return chart; } })();
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
insert into availability_zones (id, api_name) values ('3e64bccf-1624-4426-af3d-1d945c883f7c', 'us-east-1a'), ('2855e655-e06e-443c-98f8-3c24cf2e6349', 'us-east-1b'), ('b67a629c-c4f0-4574-934c-76983647f179', 'us-east-1c'), ('8f120c9f-d9c2-4a68-bb84-89d6166630ca', 'us-east-1d'), ('73b52c28-d6e1-4c1a-b56f-c8a8d9bdc7ea', 'us-east-1e'), ('0e260d6d-9437-4cb2-8bd2-50e581118557', 'us-west-1a'), ('a2201edf-64d1-4985-8ca7-1cd5fd97a270', 'us-west-1b'), ('ef66215f-ec2c-4781-a2f2-780922a92665', 'us-west-1c'), ('5a29ef9e-3c89-47fd-bc4a-f90518150adb', 'us-west-2a'), ('35108234-36c4-4893-a92e-10aac99f385b', 'us-west-2b'), ('dbfbb97d-5fe9-4529-a456-11a4b6fd82b0', 'us-west-2c'), ('8b969ede-84fb-47aa-af42-640a35ef9c6b', 'eu-west-1a'), ('c43ce7b1-27d5-46bd-81db-5a0befaad41f', 'eu-west-1b'), ('46d66afd-42da-4982-a8bc-a0958878bff1', 'eu-west-1c'), ('5a911212-84a5-447c-be56-fff24e341879', 'ap-southeast-1a'), ('33fe6805-37b4-4cb6-ba31-cea03235d28d', 'ap-southeast-1b'), ('6563eda2-2437-4580-9fd8-5696251f59b9', 'ap-northeast-1a'), ('352afd4c-508a-440b-83b5-b4211737d5c3', 'ap-northeast-1b'), ('43866c7c-2e57-4a79-a51a-6615e6e5e2ca', 'ap-northeast-1c'), ('f0af3c64-5cf1-429b-bf73-168b553310db', 'ap-southeast-2a'), ('54ad4a70-2c80-4066-ab12-ad789339ef8f', 'ap-southeast-2b'), ('68696c72-3211-40c2-9e3d-3013614ce294', 'sa-east-1a'), ('50932294-9c06-4a9e-980b-ba2198aa49a0', 'sa-east-1b'); insert into instance_types (id, api_name, display_name) values ('fa217149-584e-416f-9023-b99b373366b9', 'm1.small', 'M1 Small'), ('f5ee48b8-ec2c-4b76-8f5e-9c400a6c0145', 'm1.medium', 'M1 Medium'), ('bf4b073f-571f-421e-9759-1d54cf57b580', 'm1.large', 'M1 Large'), ('36ea806a-ff2a-437c-a36b-b0b894b5ebe3', 'm1.xlarge', 'M1 Extra Large'), ('d9dd3b2e-7d02-4aae-ac67-cd592104d158', 'm3.xlarge', 'M3 Extra Large'), ('32f4f19b-cc46-4759-ad7e-0c9f5f2f54f0', 'm3.2xlarge', 'M3 Double Extra Large'), ('22d11989-da8d-4bc0-adca-d483b8a5afde', 't1.micro', 'Micro'), ('2801a60e-4a37-42f9-8a57-35f4dd97c41a', 'm2.xlarge', 'High-Memory Extra Large'), ('e4aa2c02-c4c7-495f-940d-42fa71d69dae', 'm2.2xlarge', 'High-Memory Double Extra Large'), ('62646de8-d7c1-43dc-a320-2b4edf367733', 'm2.4xlarge', 'High-Memory Quadruple Extra Large'), ('5b06e645-8f4f-4346-80f9-66b4b2fcd0c1', 'c1.medium', 'High-CPU Medium'), ('d70c2875-c1f6-4794-b8b6-186f25db6ecb', 'c1.xlarge', 'High-CPU Extra Large'), ('d5ff55de-d360-4ea0-9b13-ac560c56f821', 'cc1.4xlarge', 'Cluster Compute Quadruple Extra Large'), ('69918c5c-bcf5-4f39-ab94-32c27fb67846', 'cc2.8xlarge', 'Cluster Compute Eight Extra Large'), ('d42f738f-bd21-4a31-9cc2-ad1493b243c2', 'cr1.8xlarge', 'High Memory Cluster Eight Extra Large'), ('e798b87d-60df-4cbe-abcf-e92b36dcd525', 'cg1.4xlarge', 'Cluster GPU Quadruple Extra Large'), ('890dca68-a23f-4d3d-83e7-3fafe7336932', 'hi1.4xlarge', 'High I/O Quadruple Extra Large'), ('8f2860c2-0175-4e0a-b675-67c75b676e4d', 'hs1.8xlarge', 'High Storage Eight Extra Large');
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
create table availability_zones ( id uuid not null, api_name text not null, primary key (id), unique (api_name) ); create table instance_types ( id uuid not null, api_name text not null, display_name text not null, primary key (id), unique (api_name), unique (display_name) ); create table spot_prices ( id uuid not null, availability_zone_id uuid not null, instance_type_id uuid not null, ts timestamptz not null, price decimal not null, primary key (id), unique (ts, availability_zone_id, instance_type_id), foreign key (availability_zone_id) references availability_zones (id), foreign key (instance_type_id) references instance_types (id) );
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
{% autoescape None %} {% extends "base.html" %} {% block content %} <div class="container"> <a href="https://github.com/grosskur/ec2price"> <img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ static_url("img/forkme.png") }}" alt="Fork me on GitHub"> </a> <div class="header"> <ul class="nav nav-pills pull-right"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> {{ product_description }} <b class="caret"></b> </a> <ul class="dropdown-menu"> {% for i in product_descriptions %} <li><a tabindex="-1" href="/?product={{ i }}&type={{ instance_type }}&region={{ region }}&window={{ window }}">{{ i }}</a></li> {% end %} </ul> </li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> {{ instance_type }} <b class="caret"></b> </a> <ul class="dropdown-menu"> {% for i in instance_types %} <li><a tabindex="-1" href="/?product={{ product_description }}&type={{ i }}&region={{ region }}&window={{ window }}">{{ i }}</a></li> {% end %} </ul> </li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> {{ region }} <b class="caret"></b> </a> <ul class="dropdown-menu"> {% for i in regions %} <li><a tabindex="-1" href="/?product={{ product_description }}&type={{ instance_type }}&region={{ i }}&window={{ window }}">{{ i }}</a></li> {% end %} </ul> </li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> {{ window }} day{% if window > 1 %}s{% end %} <b class="caret"></b> </a> <ul class="dropdown-menu"> {% for i in windows %} <li><a tabindex="-1" href="/?product={{ product_description }}&type={{ instance_type }}&region={{ region }}&window={{ i }}">{{ i }} day{% if i > 1 %}s{% end %}</a></li> {% end %} </ul> </li> </ul> <h3 class="brand"><a href="/">EC2 Spot Prices</a></h3> </div> </div> <div class="container"> <div id="chart"> <svg style="height: 500px;"></svg> </div> </div> {% end %} {% block scripts %} <script> function prices() { var result = []; $.each({{ data }}, function (api_name, i) { //console.log(api_name); //console.log(i); var values = []; $.each(i, function (index, j) { values.push({x: Date.parse(j[0]), y: j[1]}); }); result.push({ values: values, key: api_name, }); }); return result; } $(function() { nv.addGraph(function() { var chart = nv.models.scatterChart(); chart.xAxis .axisLabel('Date') .tickFormat(function (d) { return d3.time.format('%m/%d %H:%M')(new Date(d)); }); chart.yAxis .axisLabel('Price ($)') .tickFormat(d3.format('.03f')); d3.select('#chart svg') .datum(prices()) .transition().duration(500) .call(chart); nv.utils.windowResize(function () { d3.select('#chart svg').call(chart); }); return chart; }); }); </script> {% end %}
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
<!doctype html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="title" content="EC2 spot price graphs"> <meta name="description" content="Price graphs for Amazon EC2 spot instances."> <meta name="keywords" content="ec2 spot pricing, ec2 spot prices, ec2 prices, ec2 spot instance, spot price graphs, spot instance pricing"> {% if google_site_verification_id %} <meta name="google-site-verification" content="{{ google_site_verification_id }}"> {% end %} <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>EC2 spot price graphs</title> <link rel="shortcut icon" href="{{ static_url("favicon.ico") }}"> {% for u in asset_env['css_screen'].urls() %} <link href="{{ static_url(u) }}" rel="stylesheet"> {% end %} {% if ga_tracking_id is not None and ga_domain is not None %} <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '{{ ga_tracking_id }}', '{{ ga_domain }}'); ga('send', 'pageview'); </script> {% end %} </head> <body> {% block content %} {% end %} {% for u in asset_env['js_app'].urls() %} <script src="{{ static_url(u) }}"></script> {% end %} {% if gauges_site_id is not None %} <script> var _gauges = _gauges || []; (function() { var t = document.createElement('script'); t.type = 'text/javascript'; t.async = true; t.id = 'gauges-tracker'; t.setAttribute('data-site-id', '{{ gauges_site_id }}'); t.src = '//secure.gaug.es/track.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(t, s); })(); </script> {% end %} {% block scripts %} {% end %} </body> </html>
{ "repo_name": "grosskur/ec2price", "stars": "127", "repo_language": "Python", "file_name": "base.html", "mime_type": "text/html" }
#!/bin/bash if [ -z "$PORT" ] then PORT=3000 echo "running pisk on port $PORT" fi # Create a server that pipes its input (from client) to stdin of psql. Use # standard psql environment variables to configure database connection. nc -kl localhost "$PORT" | psql
{ "repo_name": "tamstrup/pisk", "stars": "89", "repo_language": "Shell", "file_name": "README.md", "mime_type": "text/html" }
# pisk The simplest way imaginable for talking to a Postgres session from Vim. <a href="https://asciinema.org/a/534589" target="_blank" style="text-decoration: none"> <img src="https://github.com/patrkris/pisk/blob/master/demo.gif"> </a> ## Requirements Bash, psql, and a working installation of netcat. ## Installation Just put the `pisk` executable bash script somewhere in your _PATH_. ## How The script `pisk` starts a netcat server and pipes its output to psql. To send a command to psql it's just a matter of using a netcat client, i.e., ```bash $ nc localhost 3000 select 1; ``` and hit _Enter_. To make this work in Vim, I suggest these two mappings in .vimrc (on macOS): ```viml augroup mine autocmd FileType sql nn <leader><Enter> \ vap:term ++close ++hidden nc localhost 3000<CR> autocmd FileType sql vn <leader><Enter> \ :term ++close ++hidden nc localhost 3000<CR> augroup END ``` The first mapping will send the current paragraph to psql. The second will send the visual selection to psql. To start `pisk`, use the Vim command `:term pisk`. ## Why It was already easy to execute text from Vim with psql by either using the `!` command or via `:term`. I often wanted to maintain a psql session for a longer period of time that I could send commands to, or start a transaction with. Pisk allows you to do this. ## Improvements There are many ways to improve pisk and the Vim integration mentioned above. For instance, there is currently no way of saying "execute this complete statement" like you do by default in tools like Postico or TablePlus. With the above Vim mappings you either say "pipe this paragraph to psql" or "pipe this visual selection to psql". <!-- vim: set tw=72: -->
{ "repo_name": "tamstrup/pisk", "stars": "89", "repo_language": "Shell", "file_name": "README.md", "mime_type": "text/html" }
# Project-wide Gradle settings. # IDE (e.g. Android Studio) users: # Gradle settings configured through the IDE *will override* # any settings specified in this file. # For more details on how to configure your build environment visit # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. # Default value: -Xmx10248m -XX:MaxPermSize=256m # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true # The Gradle daemon aims to improve the startup and execution time of Gradle. # When set to true the Gradle daemon is to run the build. org.gradle.daemon=true # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. # Default value: -Xmx10248m -XX:MaxPermSize=256m org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects org.gradle.parallel=true # Enables new incubating mode that makes Gradle selective when configuring projects. # Only relevant projects are configured which results in faster builds for large multi-projects. # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand org.gradle.configureondemand=true
{ "repo_name": "Samourai-Wallet/sentinel-android", "stars": "111", "repo_language": "Java", "file_name": "gradle-wrapper.properties", "mime_type": "text/plain" }
@if "%DEBUG%" == "" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS= set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if "%ERRORLEVEL%" == "0" goto init echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto init echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :init @rem Get command-line arguments, handling Windowz variants if not "%OS%" == "Windows_NT" goto win9xME_args if "%@eval[2+2]" == "4" goto 4NT_args :win9xME_args @rem Slurp the command line arguments. set CMD_LINE_ARGS= set _SKIP=2 :win9xME_args_slurp if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* goto execute :4NT_args @rem Get arguments from the 4NT Shell from JP Software set CMD_LINE_ARGS=%$ :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar @rem Execute Gradle "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% :end @rem End local scope for the variables with windows NT shell if "%ERRORLEVEL%"=="0" goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 exit /b 1 :mainEnd if "%OS%"=="Windows_NT" endlocal :omega
{ "repo_name": "Samourai-Wallet/sentinel-android", "stars": "111", "repo_language": "Java", "file_name": "gradle-wrapper.properties", "mime_type": "text/plain" }
#!/usr/bin/env bash ############################################################################## ## ## Gradle start up script for UN*X ## ############################################################################## # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. DEFAULT_JVM_OPTS="" APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" warn ( ) { echo "$*" } die ( ) { echo echo "$*" echo exit 1 } # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false case "`uname`" in CYGWIN* ) cygwin=true ;; Darwin* ) darwin=true ;; MINGW* ) msys=true ;; esac # For Cygwin, ensure paths are in UNIX format before anything is touched. if $cygwin ; then [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` fi # Attempt to set APP_HOME # Resolve links: $0 may be a link PRG="$0" # Need this for relative symlinks. while [ -h "$PRG" ] ; do ls=`ls -ld "$PRG"` link=`expr "$ls" : '.*-> \(.*\)$'` if expr "$link" : '/.*' > /dev/null; then PRG="$link" else PRG=`dirname "$PRG"`"/$link" fi done SAVED="`pwd`" cd "`dirname \"$PRG\"`/" >&- APP_HOME="`pwd -P`" cd "$SAVED" >&- CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables JAVACMD="$JAVA_HOME/jre/sh/java" else JAVACMD="$JAVA_HOME/bin/java" fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else JAVACMD="java" which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi # Increase the maximum file descriptors if we can. if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then MAX_FD_LIMIT=`ulimit -H -n` if [ $? -eq 0 ] ; then if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then MAX_FD="$MAX_FD_LIMIT" fi ulimit -n $MAX_FD if [ $? -ne 0 ] ; then warn "Could not set maximum file descriptor limit: $MAX_FD" fi else warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" fi fi # For Darwin, add options to specify how the application appears in the dock if $darwin; then GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" fi # For Cygwin, switch paths to Windows format before running java if $cygwin ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` # We build the pattern for arguments to be converted via cygpath ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` SEP="" for dir in $ROOTDIRSRAW ; do ROOTDIRS="$ROOTDIRS$SEP$dir" SEP="|" done OURCYGPATTERN="(^($ROOTDIRS))" # Add a user-defined pattern to the cygpath arguments if [ "$GRADLE_CYGPATTERN" != "" ] ; then OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" fi # Now convert the arguments - kludge to limit ourselves to /bin/sh i=0 for arg in "$@" ; do CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` else eval `echo args$i`="\"$arg\"" fi i=$((i+1)) done case $i in (0) set -- ;; (1) set -- "$args0" ;; (2) set -- "$args0" "$args1" ;; (3) set -- "$args0" "$args1" "$args2" ;; (4) set -- "$args0" "$args1" "$args2" "$args3" ;; (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; esac fi # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules function splitJvmOpts() { JVM_OPTS=("$@") } eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
{ "repo_name": "Samourai-Wallet/sentinel-android", "stars": "111", "repo_language": "Java", "file_name": "gradle-wrapper.properties", "mime_type": "text/plain" }
XOR_1=[Request API key] XOR_2=[from support@samouraiwallet.com]
{ "repo_name": "Samourai-Wallet/sentinel-android", "stars": "111", "repo_language": "Java", "file_name": "gradle-wrapper.properties", "mime_type": "text/plain" }
# Sentinel for Android # This repository is now maintained at https://code.samourai.io/wallet/sentinel-android ### Build: Import as Android Studio project. Should build "as is". ### BIP44: Sentinel implementation based on [original BIP](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) (https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) extends [bitcoinj](https://bitcoinj.github.io/). ### BIP49 (Segwit): Sentinel implementation based on [original BIP] (https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki) by Daniel Weigl and includes support for BIP49-specific XPUBs: [YPUB](https://github.com/Samourai-Wallet/sentinel-android/issues/16). ### BIP84 (Segwit): Sentinel implementation based on [original BIP](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki) by Pavol Rusnak. ### BIP141 (Segwit): Sentinel P2WPKH based on [original BIP](https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki) by Eric Lombrozo, Johnson Lau and Pieter Wuille. ### BIP173 (Segwit): Sentinel implementation based on [original BIP](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) by Pieter Wuille and Greg Maxwell. ### License: [Unlicense](https://github.com/Samourai-Wallet/samourai-wallet-android/blob/master/LICENSE) (https://github.com/Samourai-Wallet/samourai-wallet-android/blob/master/LICENSE) ### Contributing: All development goes in 'develop' branch - do not submit pull requests to 'master'. ### Contact: [PGP](http://pgp.mit.edu/pks/lookup?op=get&search=0x72B5BACDFEDF39D7)
{ "repo_name": "Samourai-Wallet/sentinel-android", "stars": "111", "repo_language": "Java", "file_name": "gradle-wrapper.properties", "mime_type": "text/plain" }